diff --git a/src/azure-cli/azure/cli/command_modules/acs/_completers.py b/src/azure-cli/azure/cli/command_modules/acs/_completers.py index 873fdbbbf48..e3f4deea94a 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/_completers.py +++ b/src/azure-cli/azure/cli/command_modules/acs/_completers.py @@ -31,12 +31,12 @@ def get_k8s_versions_completion_list(cmd, prefix, namespace, **kwargs): # pylin def get_k8s_versions(cli_ctx, location): """Return a list of Kubernetes versions available for a new cluster.""" - from azure.cli.command_modules.acs._client_factory import cf_container_services + from azure.cli.command_modules.acs._client_factory import cf_managed_clusters from jmespath import search - results = cf_container_services(cli_ctx).list_orchestrators(location, resource_type='managedClusters').as_dict() + results = cf_managed_clusters(cli_ctx).list_kubernetes_versions(location).as_dict() # Flatten all the "orchestrator_version" fields into one array - return search('orchestrators[*].orchestrator_version', results) + return search("values[*].patchVersions.keys(@)[]", results) @Completer diff --git a/src/azure-cli/azure/cli/command_modules/acs/_format.py b/src/azure-cli/azure/cli/command_modules/acs/_format.py index 2537dec3295..2d3a16b36d2 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/_format.py +++ b/src/azure-cli/azure/cli/command_modules/acs/_format.py @@ -100,23 +100,17 @@ def find_preview_versions(versions_bag): def aks_versions_table_format(result): """Format get-versions results as a summary for display with "-o table".""" - preview = {} - - def find_preview_versions(): - for orchestrator in result.get('orchestrators', []): - if orchestrator.get('isPreview', False): - preview[orchestrator['orchestratorVersion']] = True - find_preview_versions() + version_table = flatten_version_table(result.get("values", [])) - parsed = compile_jmes("""orchestrators[].{ - kubernetesVersion: orchestratorVersion | set_preview(@), - upgrades: upgrades[].orchestratorVersion || [`None available`] | sort_versions(@) | set_preview_array(@) | join(`, `, @) + parsed = compile_jmes("""[].{ + kubernetesVersion: version, + isPreview: isPreview, + upgrades: upgrades || [`None available`] | sort_versions(@) | join(`, `, @) }""") - # use ordered dicts so headers are predictable - results = parsed.search(result, Options( - dict_cls=OrderedDict, custom_functions=_custom_functions(preview))) - return sorted(results, key=lambda x: version_to_tuple(x.get('kubernetesVersion')), reverse=True) + results = parsed.search(version_table, Options( + dict_cls=OrderedDict, custom_functions=_custom_functions({}))) + return sorted(results, key=lambda x: version_to_tuple(x.get("kubernetesVersion")), reverse=True) def aks_list_nodepool_snapshot_table_format(results): @@ -150,6 +144,17 @@ def version_to_tuple(version): return tuple(map(int, (version.split('.')))) +def flatten_version_table(release_info): + """Flattens version table""" + flattened = [] + for release in release_info: + isPreview = release.get("isPreview", False) + for k, v in release.get("patchVersions", {}).items(): + item = {"version": k, "upgrades": v.get("upgrades", []), "isPreview": isPreview} + flattened.append(item) + return flattened + + def _custom_functions(preview_versions): class CustomFunctions(functions.Functions): # pylint: disable=too-few-public-methods diff --git a/src/azure-cli/azure/cli/command_modules/acs/commands.py b/src/azure-cli/azure/cli/command_modules/acs/commands.py index e4902274719..1140778f670 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/commands.py +++ b/src/azure-cli/azure/cli/command_modules/acs/commands.py @@ -5,7 +5,6 @@ from azure.cli.command_modules.acs._client_factory import ( cf_agent_pools, - cf_container_services, cf_managed_clusters, cf_snapshots, ) @@ -27,14 +26,6 @@ # pylint: disable=too-many-statements def load_command_table(self, _): - container_services_sdk = CliCommandType( - operations_tmpl='azure.mgmt.containerservice.operations.' - '_container_services_operations#ContainerServicesOperations.{}', - operation_group='container_services', - resource_type=ResourceType.MGMT_CONTAINERSERVICE, - client_factory=cf_container_services - ) - managed_clusters_sdk = CliCommandType( operations_tmpl='azure.mgmt.containerservice.operations.' '_managed_clusters_operations#ManagedClustersOperations.{}', @@ -86,8 +77,6 @@ def load_command_table(self, _): g.custom_command('use-dev-spaces', 'aks_use_dev_spaces', deprecate_info=g.deprecate()) g.custom_command('remove-dev-spaces', 'aks_remove_dev_spaces', deprecate_info=g.deprecate()) g.custom_command('operation-abort', 'aks_operation_abort', supports_no_wait=True) - - with self.command_group('aks', container_services_sdk, client_factory=cf_container_services) as g: g.custom_command('get-versions', 'aks_get_versions', table_transformer=aks_versions_table_format) diff --git a/src/azure-cli/azure/cli/command_modules/acs/custom.py b/src/azure-cli/azure/cli/command_modules/acs/custom.py index b527beb8cff..df57638ae1a 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/custom.py +++ b/src/azure-cli/azure/cli/command_modules/acs/custom.py @@ -1775,7 +1775,7 @@ def aks_rotate_certs(cmd, client, resource_group_name, name, no_wait=True): def aks_get_versions(cmd, client, location): - return client.list_orchestrators(location, resource_type='managedClusters') + return client.list_kubernetes_versions(location) def aks_runcommand(cmd, client, resource_group_name, name, command_string="", command_files=None, no_wait=False): diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/hybrid_2020_09_01/test_aks_commands.py b/src/azure-cli/azure/cli/command_modules/acs/tests/hybrid_2020_09_01/test_aks_commands.py index 333bba9cadf..79709f16a0c 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/hybrid_2020_09_01/test_aks_commands.py +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/hybrid_2020_09_01/test_aks_commands.py @@ -173,7 +173,7 @@ def test_aks_create_default_setting(self, resource_group, resource_group_locatio 'dns_name_prefix': self.create_random_name('cliaksdns', 16), 'ssh_key_value': self.generate_ssh_keys().replace('\\', '\\\\'), 'location': resource_group_location, - 'service_principal': _process_sp_name(sp_name), + 'service_principal': sp_name, 'client_secret': sp_password, 'resource_type': 'Microsoft.ContainerService/ManagedClusters' }) @@ -266,7 +266,7 @@ def test_aks_nodepool_create_scale_delete(self, resource_group, resource_group_l 'dns_name_prefix': self.create_random_name('cliaksdns', 16), 'ssh_key_value': self.generate_ssh_keys().replace('\\', '\\\\'), 'location': resource_group_location, - 'service_principal': _process_sp_name(sp_name), + 'service_principal': sp_name, 'client_secret': sp_password, 'resource_type': 'Microsoft.ContainerService/ManagedClusters', 'tags': tags, @@ -477,7 +477,7 @@ def generate_ppg_id(self, resource_group, location): def _get_versions(self, location): """Return the previous and current Kubernetes minor release versions, such as ("1.11.6", "1.12.4").""" versions = self.cmd( - "az aks get-versions -l westus2 --query 'orchestrators[].orchestratorVersion'").get_output_in_json() + "az aks get-versions -l westus2 --query 'values[*].patchVersions.keys(@)[]'").get_output_in_json() # sort by semantic version, from newest to oldest versions = sorted(versions, key=version_to_tuple, reverse=True) upgrade_version = versions[0] diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_abort.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_abort.yaml old mode 100755 new mode 100644 index 6f237de9518..7fe447eb0f4 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_abort.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_abort.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 20 Mar 2023 07:39:05 GMT + - Wed, 14 Jun 2023 17:24:02 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-20T07:39:04Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_abort","date":"2023-06-14T17:23:58Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '344' content-type: - application/json; charset=utf-8 date: - - Mon, 20 Mar 2023 07:39:05 GMT + - Wed, 14 Jun 2023 17:24:03 GMT expires: - '-1' pragma: @@ -88,19 +88,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestlg6xww6an-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestf4gkhnldd-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnnTfJTi8i08R/Ld57s7mASt0/KISN5/BKZjuKm4TSkCewOToNXYXW1suFe1BDHRUcbJ02v/8KYsU9DxT276qk+4EdhmIIBKGUKGz1tNDszF3lz5pvCi6dleBqUu5w8M7pddIBVqNFCx0jiUvbUQo8GS3nK6m4iLcjIecs+Y55GQksVyQAnu90uqV+DBcMOaM1a+J6tOY28ReimFk+PqKgLlujNLlwLd9bFRcVn+IBz2OviQU9z+Ffk6OGtIGFUAGNlCb4wNUMGJFmQarbgpZK7jj4yfirjiZXInJUzqmZsodnORHQJk0M+sGMrJI1CFWWka/NTDRc/2EyRIki/Nyb - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -111,67 +110,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1459' + - '1751' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestlg6xww6an-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlg6xww6an-8ecadf-vu99wz7b.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestlg6xww6an-8ecadf-vu99wz7b.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnnTfJTi8i08R/Ld57s7mASt0/KISN5/BKZjuKm4TSkCewOToNXYXW1suFe1BDHRUcbJ02v/8KYsU9DxT276qk+4EdhmIIBKGUKGz1tNDszF3lz5pvCi6dleBqUu5w8M7pddIBVqNFCx0jiUvbUQo8GS3nK6m4iLcjIecs+Y55GQksVyQAnu90uqV+DBcMOaM1a+J6tOY28ReimFk+PqKgLlujNLlwLd9bFRcVn+IBz2OviQU9z+Ffk6OGtIGFUAGNlCb4wNUMGJFmQarbgpZK7jj4yfirjiZXInJUzqmZsodnORHQJk0M+sGMrJI1CFWWka/NTDRc/2EyRIki/Nyb - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestf4gkhnldd-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestf4gkhnldd-8ecadf-laairjwj.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestf4gkhnldd-8ecadf-laairjwj.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fa9241f-bfcf-400e-b9f5-76887b5e4f8a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17fab46c-9401-48f3-944c-1b1c08d72239?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3268' + - '3596' content-type: - application/json date: - - Mon, 20 Mar 2023 07:39:10 GMT + - Wed, 14 Jun 2023 17:24:10 GMT expires: - '-1' pragma: @@ -201,59 +202,61 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestlg6xww6an-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlg6xww6an-8ecadf-vu99wz7b.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestlg6xww6an-8ecadf-vu99wz7b.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnnTfJTi8i08R/Ld57s7mASt0/KISN5/BKZjuKm4TSkCewOToNXYXW1suFe1BDHRUcbJ02v/8KYsU9DxT276qk+4EdhmIIBKGUKGz1tNDszF3lz5pvCi6dleBqUu5w8M7pddIBVqNFCx0jiUvbUQo8GS3nK6m4iLcjIecs+Y55GQksVyQAnu90uqV+DBcMOaM1a+J6tOY28ReimFk+PqKgLlujNLlwLd9bFRcVn+IBz2OviQU9z+Ffk6OGtIGFUAGNlCb4wNUMGJFmQarbgpZK7jj4yfirjiZXInJUzqmZsodnORHQJk0M+sGMrJI1CFWWka/NTDRc/2EyRIki/Nyb - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestf4gkhnldd-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestf4gkhnldd-8ecadf-laairjwj.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestf4gkhnldd-8ecadf-laairjwj.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3268' + - '3596' content-type: - application/json date: - - Mon, 20 Mar 2023 07:39:11 GMT + - Wed, 14 Jun 2023 17:24:11 GMT expires: - '-1' pragma: @@ -287,66 +290,69 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclusters/cliakstest000002/abort?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestlg6xww6an-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlg6xww6an-8ecadf-vu99wz7b.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestlg6xww6an-8ecadf-vu99wz7b.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnnTfJTi8i08R/Ld57s7mASt0/KISN5/BKZjuKm4TSkCewOToNXYXW1suFe1BDHRUcbJ02v/8KYsU9DxT276qk+4EdhmIIBKGUKGz1tNDszF3lz5pvCi6dleBqUu5w8M7pddIBVqNFCx0jiUvbUQo8GS3nK6m4iLcjIecs+Y55GQksVyQAnu90uqV+DBcMOaM1a+J6tOY28ReimFk+PqKgLlujNLlwLd9bFRcVn+IBz2OviQU9z+Ffk6OGtIGFUAGNlCb4wNUMGJFmQarbgpZK7jj4yfirjiZXInJUzqmZsodnORHQJk0M+sGMrJI1CFWWka/NTDRc/2EyRIki/Nyb - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"keda\": {\n \"enabled\": true,\n \"config\": {\n \"addonv2\": - \"true\"\n }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": - \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestf4gkhnldd-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestf4gkhnldd-8ecadf-laairjwj.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestf4gkhnldd-8ecadf-laairjwj.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"keda\": {\n \"enabled\": true,\n \"\ + config\": {\n \"addonv2\": \"true\"\n }\n }\n },\n \"nodeResourceGroup\"\ + : \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n\ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0730e9f-d2bb-4cfb-b847-c9eb8156bb98?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b434a39-8140-4da6-8ebd-7bb41eb10ad9?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3386' + - '3714' content-type: - application/json date: - - Mon, 20 Mar 2023 07:39:11 GMT + - Wed, 14 Jun 2023 17:24:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/e0730e9f-d2bb-4cfb-b847-c9eb8156bb98?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/5b434a39-8140-4da6-8ebd-7bb41eb10ad9?api-version=2016-03-30 pragma: - no-cache server: @@ -374,15 +380,63 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e0730e9f-d2bb-4cfb-b847-c9eb8156bb98?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b434a39-8140-4da6-8ebd-7bb41eb10ad9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9f0e73e0-bbd2-fb4c-b847-c9eb8156bb98\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-20T07:39:11.7557314Z\",\n \"endTime\": - \"2023-03-20T07:39:20.1478777Z\"\n }" + string: "{\n \"name\": \"394a435b-4081-a64d-8ebd-7bb41eb10ad9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:24:13.2926185Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 17:24:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks operation-abort + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b434a39-8140-4da6-8ebd-7bb41eb10ad9?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"394a435b-4081-a64d-8ebd-7bb41eb10ad9\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T17:24:13.2926185Z\",\n \"\ + endTime\": \"2023-06-14T17:24:20.3590202Z\"\n }" headers: cache-control: - no-cache @@ -391,7 +445,7 @@ interactions: content-type: - application/json date: - - Mon, 20 Mar 2023 07:39:41 GMT + - Wed, 14 Jun 2023 17:24:42 GMT expires: - '-1' pragma: @@ -423,10 +477,10 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/e0730e9f-d2bb-4cfb-b847-c9eb8156bb98?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/5b434a39-8140-4da6-8ebd-7bb41eb10ad9?api-version=2016-03-30 response: body: string: '' @@ -436,11 +490,11 @@ interactions: content-type: - application/json date: - - Mon, 20 Mar 2023 07:39:41 GMT + - Wed, 14 Jun 2023 17:24:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/e0730e9f-d2bb-4cfb-b847-c9eb8156bb98?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/5b434a39-8140-4da6-8ebd-7bb41eb10ad9?api-version=2016-03-30 pragma: - no-cache server: @@ -466,59 +520,61 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Canceled\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestlg6xww6an-8ecadf\",\n \"fqdn\": \"cliakstest-clitestlg6xww6an-8ecadf-vu99wz7b.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestlg6xww6an-8ecadf-vu99wz7b.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Canceled\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnnTfJTi8i08R/Ld57s7mASt0/KISN5/BKZjuKm4TSkCewOToNXYXW1suFe1BDHRUcbJ02v/8KYsU9DxT276qk+4EdhmIIBKGUKGz1tNDszF3lz5pvCi6dleBqUu5w8M7pddIBVqNFCx0jiUvbUQo8GS3nK6m4iLcjIecs+Y55GQksVyQAnu90uqV+DBcMOaM1a+J6tOY28ReimFk+PqKgLlujNLlwLd9bFRcVn+IBz2OviQU9z+Ffk6OGtIGFUAGNlCb4wNUMGJFmQarbgpZK7jj4yfirjiZXInJUzqmZsodnORHQJk0M+sGMrJI1CFWWka/NTDRc/2EyRIki/Nyb - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Canceled\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestf4gkhnldd-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestf4gkhnldd-8ecadf-laairjwj.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestf4gkhnldd-8ecadf-laairjwj.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Canceled\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3268' + - '3596' content-type: - application/json date: - - Mon, 20 Mar 2023 07:39:52 GMT + - Wed, 14 Jun 2023 17:24:54 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_api_server_authorized_ip_ranges.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_api_server_authorized_ip_ranges.yaml old mode 100755 new mode 100644 index f973c993282..df55ac32c52 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_api_server_authorized_ip_ranges.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_api_server_authorized_ip_ranges.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --api-server-authorized-ip-ranges User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 09:56:27 GMT + - Wed, 14 Jun 2023 17:24:59 GMT expires: - '-1' pragma: @@ -54,13 +54,12 @@ interactions: "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "apiServerAccessProfile": - {"authorizedIPRanges": ["1.2.3.4/32"]}, "disableLocalAccounts": false, "storageProfile": - {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "apiServerAccessProfile": {"authorizedIPRanges": ["1.2.3.4/32"]}, + "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -71,69 +70,70 @@ interactions: Connection: - keep-alive Content-Length: - - '1506' + - '1798' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --api-server-authorized-ip-ranges User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-qf3z1nf3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000003-qf3z1nf3.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"apiServerAccessProfile\": {\n \"authorizedIPRanges\": - [\n \"1.2.3.4/32\"\n ]\n },\n \"disableLocalAccounts\": false,\n - \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-fcrn6n3l.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000003-fcrn6n3l.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"apiServerAccessProfile\"\ + : {\n \"authorizedIPRanges\": [\n \"1.2.3.4/32\"\n ]\n },\n \ + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\"\ + : {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b1dd0a6-fc75-4812-877f-f9e592af0d06?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26c2b4d2-db9b-48a6-824c-c6a9c6e0ad21?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3300' + - '3628' content-type: - application/json date: - - Wed, 15 Mar 2023 09:56:31 GMT + - Wed, 14 Jun 2023 17:25:06 GMT expires: - '-1' pragma: @@ -164,14 +164,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --api-server-authorized-ip-ranges User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b1dd0a6-fc75-4812-877f-f9e592af0d06?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26c2b4d2-db9b-48a6-824c-c6a9c6e0ad21?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a6d01d7b-75fc-1248-877f-f9e592af0d06\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:31.3192117Z\"\n }" + string: "{\n \"name\": \"d2b4c226-9bdb-a648-824c-c6a9c6e0ad21\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:25:06.5427879Z\"\n }" headers: cache-control: - no-cache @@ -180,7 +180,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:57:01 GMT + - Wed, 14 Jun 2023 17:25:06 GMT expires: - '-1' pragma: @@ -213,14 +213,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --api-server-authorized-ip-ranges User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b1dd0a6-fc75-4812-877f-f9e592af0d06?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26c2b4d2-db9b-48a6-824c-c6a9c6e0ad21?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a6d01d7b-75fc-1248-877f-f9e592af0d06\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:31.3192117Z\"\n }" + string: "{\n \"name\": \"d2b4c226-9bdb-a648-824c-c6a9c6e0ad21\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:25:06.5427879Z\"\n }" headers: cache-control: - no-cache @@ -229,7 +229,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:57:31 GMT + - Wed, 14 Jun 2023 17:25:36 GMT expires: - '-1' pragma: @@ -262,14 +262,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --api-server-authorized-ip-ranges User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b1dd0a6-fc75-4812-877f-f9e592af0d06?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26c2b4d2-db9b-48a6-824c-c6a9c6e0ad21?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a6d01d7b-75fc-1248-877f-f9e592af0d06\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:31.3192117Z\"\n }" + string: "{\n \"name\": \"d2b4c226-9bdb-a648-824c-c6a9c6e0ad21\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:25:06.5427879Z\"\n }" headers: cache-control: - no-cache @@ -278,7 +278,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:58:00 GMT + - Wed, 14 Jun 2023 17:26:07 GMT expires: - '-1' pragma: @@ -311,14 +311,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --api-server-authorized-ip-ranges User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b1dd0a6-fc75-4812-877f-f9e592af0d06?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26c2b4d2-db9b-48a6-824c-c6a9c6e0ad21?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a6d01d7b-75fc-1248-877f-f9e592af0d06\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:31.3192117Z\"\n }" + string: "{\n \"name\": \"d2b4c226-9bdb-a648-824c-c6a9c6e0ad21\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:25:06.5427879Z\"\n }" headers: cache-control: - no-cache @@ -327,7 +327,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:58:31 GMT + - Wed, 14 Jun 2023 17:26:37 GMT expires: - '-1' pragma: @@ -360,14 +360,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --api-server-authorized-ip-ranges User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b1dd0a6-fc75-4812-877f-f9e592af0d06?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26c2b4d2-db9b-48a6-824c-c6a9c6e0ad21?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a6d01d7b-75fc-1248-877f-f9e592af0d06\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:31.3192117Z\"\n }" + string: "{\n \"name\": \"d2b4c226-9bdb-a648-824c-c6a9c6e0ad21\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:25:06.5427879Z\"\n }" headers: cache-control: - no-cache @@ -376,7 +376,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:59:01 GMT + - Wed, 14 Jun 2023 17:27:07 GMT expires: - '-1' pragma: @@ -409,14 +409,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --api-server-authorized-ip-ranges User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b1dd0a6-fc75-4812-877f-f9e592af0d06?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26c2b4d2-db9b-48a6-824c-c6a9c6e0ad21?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a6d01d7b-75fc-1248-877f-f9e592af0d06\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:31.3192117Z\"\n }" + string: "{\n \"name\": \"d2b4c226-9bdb-a648-824c-c6a9c6e0ad21\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:25:06.5427879Z\"\n }" headers: cache-control: - no-cache @@ -425,7 +425,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:59:31 GMT + - Wed, 14 Jun 2023 17:27:37 GMT expires: - '-1' pragma: @@ -458,14 +458,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --api-server-authorized-ip-ranges User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b1dd0a6-fc75-4812-877f-f9e592af0d06?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26c2b4d2-db9b-48a6-824c-c6a9c6e0ad21?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a6d01d7b-75fc-1248-877f-f9e592af0d06\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:31.3192117Z\"\n }" + string: "{\n \"name\": \"d2b4c226-9bdb-a648-824c-c6a9c6e0ad21\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:25:06.5427879Z\"\n }" headers: cache-control: - no-cache @@ -474,7 +474,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:01 GMT + - Wed, 14 Jun 2023 17:28:07 GMT expires: - '-1' pragma: @@ -507,15 +507,64 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --api-server-authorized-ip-ranges User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b1dd0a6-fc75-4812-877f-f9e592af0d06?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26c2b4d2-db9b-48a6-824c-c6a9c6e0ad21?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a6d01d7b-75fc-1248-877f-f9e592af0d06\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T09:56:31.3192117Z\",\n \"endTime\": - \"2023-03-15T10:00:10.0027613Z\"\n }" + string: "{\n \"name\": \"d2b4c226-9bdb-a648-824c-c6a9c6e0ad21\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:25:06.5427879Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 17:28:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --load-balancer-sku --api-server-authorized-ip-ranges + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26c2b4d2-db9b-48a6-824c-c6a9c6e0ad21?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d2b4c226-9bdb-a648-824c-c6a9c6e0ad21\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T17:25:06.5427879Z\",\n \"\ + endTime\": \"2023-06-14T17:28:57.6892175Z\"\n }" headers: cache-control: - no-cache @@ -524,7 +573,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:31 GMT + - Wed, 14 Jun 2023 17:29:08 GMT expires: - '-1' pragma: @@ -557,65 +606,67 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --api-server-authorized-ip-ranges User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-qf3z1nf3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000003-qf3z1nf3.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/70fd2fa4-74e1-4230-97ea-9f41d2049b3d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"apiServerAccessProfile\": {\n \"authorizedIPRanges\": [\n \"1.2.3.4/32\"\n - \ ]\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-fcrn6n3l.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000003-fcrn6n3l.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/f579f6a3-0186-44fd-922a-2b66373be77c\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"apiServerAccessProfile\"\ + : {\n \"authorizedIPRanges\": [\n \"1.2.3.4/32\"\n ]\n },\n \ + \ \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3953' + - '4281' content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:31 GMT + - Wed, 14 Jun 2023 17:29:09 GMT expires: - '-1' pragma: @@ -647,65 +698,67 @@ interactions: ParameterSetName: - -g -n --api-server-authorized-ip-ranges User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-qf3z1nf3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000003-qf3z1nf3.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/70fd2fa4-74e1-4230-97ea-9f41d2049b3d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"apiServerAccessProfile\": {\n \"authorizedIPRanges\": [\n \"1.2.3.4/32\"\n - \ ]\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-fcrn6n3l.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000003-fcrn6n3l.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/f579f6a3-0186-44fd-922a-2b66373be77c\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"apiServerAccessProfile\"\ + : {\n \"authorizedIPRanges\": [\n \"1.2.3.4/32\"\n ]\n },\n \ + \ \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3953' + - '4281' content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:33 GMT + - Wed, 14 Jun 2023 17:29:09 GMT expires: - '-1' pragma: @@ -724,23 +777,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000003", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": - "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.24.9", + "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/70fd2fa4-74e1-4230-97ea-9f41d2049b3d"}]}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/f579f6a3-0186-44fd-922a-2b66373be77c"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "apiServerAccessProfile": {"authorizedIPRanges": []}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", @@ -757,72 +810,73 @@ interactions: Connection: - keep-alive Content-Length: - - '2519' + - '2847' Content-Type: - application/json ParameterSetName: - -g -n --api-server-authorized-ip-ranges User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-qf3z1nf3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000003-qf3z1nf3.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/70fd2fa4-74e1-4230-97ea-9f41d2049b3d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-fcrn6n3l.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000003-fcrn6n3l.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/f579f6a3-0186-44fd-922a-2b66373be77c\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/df2a2b59-6a0b-4a4f-a5bd-0d858d9144ec?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/139d493f-492f-461c-9d84-79b15ad87443?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3862' + - '4190' content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:36 GMT + - Wed, 14 Jun 2023 17:29:15 GMT expires: - '-1' pragma: @@ -856,14 +910,110 @@ interactions: ParameterSetName: - -g -n --api-server-authorized-ip-ranges User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/139d493f-492f-461c-9d84-79b15ad87443?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"3f499d13-2f49-1c46-9d84-79b15ad87443\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:29:15.7153537Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 17:29:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - -g -n --api-server-authorized-ip-ranges + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/139d493f-492f-461c-9d84-79b15ad87443?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"3f499d13-2f49-1c46-9d84-79b15ad87443\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:29:15.7153537Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 17:29:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - -g -n --api-server-authorized-ip-ranges + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/df2a2b59-6a0b-4a4f-a5bd-0d858d9144ec?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/139d493f-492f-461c-9d84-79b15ad87443?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"592b2adf-0b6a-4f4a-a5bd-0d858d9144ec\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:00:35.9605492Z\"\n }" + string: "{\n \"name\": \"3f499d13-2f49-1c46-9d84-79b15ad87443\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:29:15.7153537Z\"\n }" headers: cache-control: - no-cache @@ -872,7 +1022,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:01:05 GMT + - Wed, 14 Jun 2023 17:30:17 GMT expires: - '-1' pragma: @@ -904,14 +1054,14 @@ interactions: ParameterSetName: - -g -n --api-server-authorized-ip-ranges User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/df2a2b59-6a0b-4a4f-a5bd-0d858d9144ec?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/139d493f-492f-461c-9d84-79b15ad87443?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"592b2adf-0b6a-4f4a-a5bd-0d858d9144ec\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:00:35.9605492Z\"\n }" + string: "{\n \"name\": \"3f499d13-2f49-1c46-9d84-79b15ad87443\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:29:15.7153537Z\"\n }" headers: cache-control: - no-cache @@ -920,7 +1070,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:01:36 GMT + - Wed, 14 Jun 2023 17:30:47 GMT expires: - '-1' pragma: @@ -952,15 +1102,15 @@ interactions: ParameterSetName: - -g -n --api-server-authorized-ip-ranges User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/df2a2b59-6a0b-4a4f-a5bd-0d858d9144ec?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/139d493f-492f-461c-9d84-79b15ad87443?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"592b2adf-0b6a-4f4a-a5bd-0d858d9144ec\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:00:35.9605492Z\",\n \"endTime\": - \"2023-03-15T10:01:57.5525127Z\"\n }" + string: "{\n \"name\": \"3f499d13-2f49-1c46-9d84-79b15ad87443\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T17:29:15.7153537Z\",\n \"\ + endTime\": \"2023-06-14T17:31:02.4592113Z\"\n }" headers: cache-control: - no-cache @@ -969,7 +1119,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:02:06 GMT + - Wed, 14 Jun 2023 17:31:17 GMT expires: - '-1' pragma: @@ -1001,64 +1151,65 @@ interactions: ParameterSetName: - -g -n --api-server-authorized-ip-ranges User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-qf3z1nf3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000003-qf3z1nf3.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/70fd2fa4-74e1-4230-97ea-9f41d2049b3d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-fcrn6n3l.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000003-fcrn6n3l.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/f579f6a3-0186-44fd-922a-2b66373be77c\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3864' + - '4192' content-type: - application/json date: - - Wed, 15 Mar 2023 10:02:06 GMT + - Wed, 14 Jun 2023 17:31:17 GMT expires: - '-1' pragma: @@ -1090,64 +1241,65 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-qf3z1nf3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000003-qf3z1nf3.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/70fd2fa4-74e1-4230-97ea-9f41d2049b3d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-fcrn6n3l.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000003-fcrn6n3l.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/f579f6a3-0186-44fd-922a-2b66373be77c\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3864' + - '4192' content-type: - application/json date: - - Wed, 15 Mar 2023 10:02:07 GMT + - Wed, 14 Jun 2023 17:31:20 GMT expires: - '-1' pragma: @@ -1166,23 +1318,22 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000003", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": - "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.24.9", + "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, - "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", - "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/70fd2fa4-74e1-4230-97ea-9f41d2049b3d"}]}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": + "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "supportPlan": + "KubernetesOfficial", "networkProfile": {"networkPlugin": "kubenet", "podCidr": + "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": + {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/f579f6a3-0186-44fd-922a-2b66373be77c"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -1199,72 +1350,73 @@ interactions: Connection: - keep-alive Content-Length: - - '2496' + - '2824' Content-Type: - application/json ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-qf3z1nf3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000003-qf3z1nf3.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/70fd2fa4-74e1-4230-97ea-9f41d2049b3d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-fcrn6n3l.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000003-fcrn6n3l.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/f579f6a3-0186-44fd-922a-2b66373be77c\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5bf5f9c7-6d79-4686-8239-6de75e2b675e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0cb398a0-c84d-47a7-8884-c51d23fa8d60?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3862' + - '4190' content-type: - application/json date: - - Wed, 15 Mar 2023 10:02:11 GMT + - Wed, 14 Jun 2023 17:31:27 GMT expires: - '-1' pragma: @@ -1298,14 +1450,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5bf5f9c7-6d79-4686-8239-6de75e2b675e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0cb398a0-c84d-47a7-8884-c51d23fa8d60?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c7f9f55b-796d-8646-8239-6de75e2b675e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:02:11.8971386Z\"\n }" + string: "{\n \"name\": \"a098b30c-4dc8-a747-8884-c51d23fa8d60\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:31:26.1218523Z\"\n }" headers: cache-control: - no-cache @@ -1314,7 +1466,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:02:42 GMT + - Wed, 14 Jun 2023 17:31:27 GMT expires: - '-1' pragma: @@ -1346,14 +1498,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5bf5f9c7-6d79-4686-8239-6de75e2b675e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0cb398a0-c84d-47a7-8884-c51d23fa8d60?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c7f9f55b-796d-8646-8239-6de75e2b675e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:02:11.8971386Z\"\n }" + string: "{\n \"name\": \"a098b30c-4dc8-a747-8884-c51d23fa8d60\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:31:26.1218523Z\"\n }" headers: cache-control: - no-cache @@ -1362,7 +1514,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:03:12 GMT + - Wed, 14 Jun 2023 17:31:57 GMT expires: - '-1' pragma: @@ -1394,14 +1546,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5bf5f9c7-6d79-4686-8239-6de75e2b675e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0cb398a0-c84d-47a7-8884-c51d23fa8d60?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c7f9f55b-796d-8646-8239-6de75e2b675e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:02:11.8971386Z\"\n }" + string: "{\n \"name\": \"a098b30c-4dc8-a747-8884-c51d23fa8d60\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:31:26.1218523Z\"\n }" headers: cache-control: - no-cache @@ -1410,7 +1562,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:03:42 GMT + - Wed, 14 Jun 2023 17:32:27 GMT expires: - '-1' pragma: @@ -1442,14 +1594,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5bf5f9c7-6d79-4686-8239-6de75e2b675e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0cb398a0-c84d-47a7-8884-c51d23fa8d60?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c7f9f55b-796d-8646-8239-6de75e2b675e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:02:11.8971386Z\"\n }" + string: "{\n \"name\": \"a098b30c-4dc8-a747-8884-c51d23fa8d60\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:31:26.1218523Z\"\n }" headers: cache-control: - no-cache @@ -1458,7 +1610,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:04:12 GMT + - Wed, 14 Jun 2023 17:32:57 GMT expires: - '-1' pragma: @@ -1490,24 +1642,168 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5bf5f9c7-6d79-4686-8239-6de75e2b675e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0cb398a0-c84d-47a7-8884-c51d23fa8d60?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c7f9f55b-796d-8646-8239-6de75e2b675e\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:02:11.8971386Z\",\n \"endTime\": - \"2023-03-15T10:04:33.0767245Z\"\n }" + string: "{\n \"name\": \"a098b30c-4dc8-a747-8884-c51d23fa8d60\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:31:26.1218523Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 17:33:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0cb398a0-c84d-47a7-8884-c51d23fa8d60?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a098b30c-4dc8-a747-8884-c51d23fa8d60\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:31:26.1218523Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 17:33:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0cb398a0-c84d-47a7-8884-c51d23fa8d60?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a098b30c-4dc8-a747-8884-c51d23fa8d60\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:31:26.1218523Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 17:34:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0cb398a0-c84d-47a7-8884-c51d23fa8d60?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a098b30c-4dc8-a747-8884-c51d23fa8d60\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T17:31:26.1218523Z\",\n \"\ + endTime\": \"2023-06-14T17:34:43.117693Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' content-type: - application/json date: - - Wed, 15 Mar 2023 10:04:42 GMT + - Wed, 14 Jun 2023 17:34:58 GMT expires: - '-1' pragma: @@ -1539,64 +1835,65 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-qf3z1nf3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000003-qf3z1nf3.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/70fd2fa4-74e1-4230-97ea-9f41d2049b3d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-fcrn6n3l.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000003-fcrn6n3l.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/f579f6a3-0186-44fd-922a-2b66373be77c\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3864' + - '4192' content-type: - application/json date: - - Wed, 15 Mar 2023 10:04:42 GMT + - Wed, 14 Jun 2023 17:34:58 GMT expires: - '-1' pragma: @@ -1628,64 +1925,65 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-qf3z1nf3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000003-qf3z1nf3.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/70fd2fa4-74e1-4230-97ea-9f41d2049b3d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-fcrn6n3l.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000003-fcrn6n3l.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/f579f6a3-0186-44fd-922a-2b66373be77c\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3864' + - '4192' content-type: - application/json date: - - Wed, 15 Mar 2023 10:04:42 GMT + - Wed, 14 Jun 2023 17:35:00 GMT expires: - '-1' pragma: @@ -1719,8 +2017,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -1728,17 +2026,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d9f119fa-6610-40f2-8d85-6bf6d26bf225?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d9067b43-b523-4b4b-8aba-6dd2ec922b76?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:04:43 GMT + - Wed, 14 Jun 2023 17:35:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/d9f119fa-6610-40f2-8d85-6bf6d26bf225?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/d9067b43-b523-4b4b-8aba-6dd2ec922b76?api-version=2016-03-30 pragma: - no-cache server: @@ -1748,7 +2046,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_availability_zones.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_availability_zones.yaml old mode 100755 new mode 100644 index 6f8267f1b7d..43541c75796 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_availability_zones.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_availability_zones.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:04:45 GMT + - Wed, 14 Jun 2023 17:35:10 GMT expires: - '-1' pragma: @@ -54,13 +54,12 @@ interactions: "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": - {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, - "storageProfile": {}}}' + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -71,67 +70,33 @@ interactions: Connection: - keep-alive Content-Length: - - '1541' + - '1833' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-ms16hzlw.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-ms16hzlw.portal.hcp.eastus.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"availabilityZones\": [\n - \ \"1\",\n \"2\",\n \"3\"\n ],\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_eastus\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"details\": null,\n\ + \ \"message\": \"Service principal clientID: 7a8931e3-f478-4ab7-9405-e8ba0eeb2e1d\ + \ not found in Active Directory tenant 72f988bf-86f1-41af-91ab-2d7cd011db47,\ + \ Please see https://aka.ms/aks-sp-help for more details.\",\n \"subcode\"\ + : \"ServicePrincipalNotFound\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/99e212f0-e530-4282-8a74-16c3035600c6?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3114' + - '313' content-type: - application/json date: - - Wed, 15 Mar 2023 10:04:52 GMT + - Wed, 14 Jun 2023 17:35:13 GMT expires: - '-1' pragma: @@ -145,40 +110,96 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' status: - code: 201 - message: Created + code: 404 + message: Not Found - request: - body: null + body: '{"location": "eastus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000002", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", + "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "availabilityZones": + ["1", "2", "3"], "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], + "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, + "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": + {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - aks create Connection: - keep-alive + Content-Length: + - '1833' + Content-Type: + - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/99e212f0-e530-4282-8a74-16c3035600c6?api-version=2017-08-31 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"f012e299-30e5-8242-8a74-16c3035600c6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:04:52.4826019Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-ohbtyjp7.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-ohbtyjp7.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n \ + \ ],\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ + \ \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ + ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n\ + \ \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ + : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/0207340f-8820-4b27-b267-8e7cc6504aa6?api-version=2017-08-31 cache-control: - no-cache content-length: - - '126' + - '3442' content-type: - application/json date: - - Wed, 15 Mar 2023 10:05:23 GMT + - Wed, 14 Jun 2023 17:35:22 GMT expires: - '-1' pragma: @@ -187,15 +208,13 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -211,14 +230,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/99e212f0-e530-4282-8a74-16c3035600c6?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/0207340f-8820-4b27-b267-8e7cc6504aa6?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f012e299-30e5-8242-8a74-16c3035600c6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:04:52.4826019Z\"\n }" + string: "{\n \"name\": \"0f340702-2088-274b-b267-8e7cc6504aa6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:35:23.2501125Z\"\n }" headers: cache-control: - no-cache @@ -227,7 +246,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:05:53 GMT + - Wed, 14 Jun 2023 17:35:22 GMT expires: - '-1' pragma: @@ -260,14 +279,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/99e212f0-e530-4282-8a74-16c3035600c6?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/0207340f-8820-4b27-b267-8e7cc6504aa6?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f012e299-30e5-8242-8a74-16c3035600c6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:04:52.4826019Z\"\n }" + string: "{\n \"name\": \"0f340702-2088-274b-b267-8e7cc6504aa6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:35:23.2501125Z\"\n }" headers: cache-control: - no-cache @@ -276,7 +295,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:06:23 GMT + - Wed, 14 Jun 2023 17:35:52 GMT expires: - '-1' pragma: @@ -309,14 +328,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/99e212f0-e530-4282-8a74-16c3035600c6?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/0207340f-8820-4b27-b267-8e7cc6504aa6?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f012e299-30e5-8242-8a74-16c3035600c6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:04:52.4826019Z\"\n }" + string: "{\n \"name\": \"0f340702-2088-274b-b267-8e7cc6504aa6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:35:23.2501125Z\"\n }" headers: cache-control: - no-cache @@ -325,7 +344,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:06:53 GMT + - Wed, 14 Jun 2023 17:36:23 GMT expires: - '-1' pragma: @@ -358,14 +377,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/99e212f0-e530-4282-8a74-16c3035600c6?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/0207340f-8820-4b27-b267-8e7cc6504aa6?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f012e299-30e5-8242-8a74-16c3035600c6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:04:52.4826019Z\"\n }" + string: "{\n \"name\": \"0f340702-2088-274b-b267-8e7cc6504aa6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:35:23.2501125Z\"\n }" headers: cache-control: - no-cache @@ -374,7 +393,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:07:23 GMT + - Wed, 14 Jun 2023 17:36:53 GMT expires: - '-1' pragma: @@ -407,14 +426,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/99e212f0-e530-4282-8a74-16c3035600c6?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/0207340f-8820-4b27-b267-8e7cc6504aa6?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f012e299-30e5-8242-8a74-16c3035600c6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:04:52.4826019Z\"\n }" + string: "{\n \"name\": \"0f340702-2088-274b-b267-8e7cc6504aa6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:35:23.2501125Z\"\n }" headers: cache-control: - no-cache @@ -423,7 +442,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:07:54 GMT + - Wed, 14 Jun 2023 17:37:23 GMT expires: - '-1' pragma: @@ -456,14 +475,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/99e212f0-e530-4282-8a74-16c3035600c6?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/0207340f-8820-4b27-b267-8e7cc6504aa6?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f012e299-30e5-8242-8a74-16c3035600c6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:04:52.4826019Z\"\n }" + string: "{\n \"name\": \"0f340702-2088-274b-b267-8e7cc6504aa6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:35:23.2501125Z\"\n }" headers: cache-control: - no-cache @@ -472,7 +491,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:08:24 GMT + - Wed, 14 Jun 2023 17:37:53 GMT expires: - '-1' pragma: @@ -505,14 +524,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/99e212f0-e530-4282-8a74-16c3035600c6?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/0207340f-8820-4b27-b267-8e7cc6504aa6?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f012e299-30e5-8242-8a74-16c3035600c6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:04:52.4826019Z\"\n }" + string: "{\n \"name\": \"0f340702-2088-274b-b267-8e7cc6504aa6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:35:23.2501125Z\"\n }" headers: cache-control: - no-cache @@ -521,7 +540,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:08:54 GMT + - Wed, 14 Jun 2023 17:38:23 GMT expires: - '-1' pragma: @@ -554,23 +573,24 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/99e212f0-e530-4282-8a74-16c3035600c6?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/0207340f-8820-4b27-b267-8e7cc6504aa6?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f012e299-30e5-8242-8a74-16c3035600c6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:04:52.4826019Z\"\n }" + string: "{\n \"name\": \"0f340702-2088-274b-b267-8e7cc6504aa6\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T17:35:23.2501125Z\",\n \"\ + endTime\": \"2023-06-14T17:38:47.2822955Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 10:09:24 GMT + - Wed, 14 Jun 2023 17:38:54 GMT expires: - '-1' pragma: @@ -603,23 +623,62 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/99e212f0-e530-4282-8a74-16c3035600c6?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"f012e299-30e5-8242-8a74-16c3035600c6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:04:52.4826019Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-ohbtyjp7.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-ohbtyjp7.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n \ + \ ],\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ + \ \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ + ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n\ + \ \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ + : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.Network/publicIPAddresses/cfac7bb9-64a0-48e5-ac51-03115ba5e122\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '3705' content-type: - application/json date: - - Wed, 15 Mar 2023 10:09:55 GMT + - Wed, 14 Jun 2023 17:38:55 GMT expires: - '-1' pragma: @@ -641,34 +700,72 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks show Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --zones + - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/99e212f0-e530-4282-8a74-16c3035600c6?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"f012e299-30e5-8242-8a74-16c3035600c6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:04:52.4826019Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-ohbtyjp7.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-ohbtyjp7.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n \ + \ ],\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ + \ \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ + ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n\ + \ \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ + : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.Network/publicIPAddresses/cfac7bb9-64a0-48e5-ac51-03115ba5e122\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '3705' content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:25 GMT + - Wed, 14 Jun 2023 17:38:55 GMT expires: - '-1' pragma: @@ -690,34 +787,36 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks get-credentials Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --zones + - -g -n --file User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/99e212f0-e530-4282-8a74-16c3035600c6?api-version=2017-08-31 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"f012e299-30e5-8242-8a74-16c3035600c6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:04:52.4826019Z\"\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMWVrTkRRWE1yWjBGM1NVSkJaMGxRUVhZMU5GSkdSVkpJVWpocFZXdzNaR0YzT1d0TlFUQkhRMU54UjFOSllqTkVVVVZDUTNkVlFVMUJNSGdLUTNwQlNrSm5UbFpDUVUxVVFXMU9hRTFEUVZoRVZFbDZUVVJaZUU1RVJUTk5hbFV4VGxadldVUjZTWGRPVkUxM1RtcEZNRTFVWTNwT1ZGVXhWMnBCVGdwTlVYTjNRMUZaUkZaUlVVUkZkMHBxV1ZSRFEwRnBTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblNWQkJSRU5EUVdkdlEyZG5TVUpCVEZnMkNtVnBOSGh6VUdWQ1IyZFhOMVYwUjJsMlNqWlNObVpQZDNobGRIaHVhekZLVEcxR2NWSTRWMFJCTUdwelNrOXVLeTgzWTJOdU5WZEtZbTFITjNrdmRGY0tXVGxDY2t4QmR5dG5kMHRWVnpOUFIzaDZUWHAwU1hGMEwyaFZiMnRGTUVWeGNHazBVRVoxUXpsdGFYWk5SVVp6U0d4eFdqaG1WR0ZqVTNFeWQxWklhd3AzY21WSlprOUdUSHBLV1ZwWU9EUnpWRmdyYUdWTGVYVnRkMkZJTnpNeE5rNXlWblpoYlVWNlFsVTJSblJaYUhjM0sycFlSbTlZTTBWMmRUZHpORzV3Q2tSUFRYTkZkbEVyTm1OVU5HMHhVVUpDTlhwMmQzZG5RbGcwU2tGdkwyUnVaMkp0TWtsTk5tRlpPRVkzTjBaTFprUjRNSHB4V1VkRE9WY3dPVkp6SzFnS1UzUlFNMWRLTHk5M2VURndhMmQ1ZEd0RWVXZFdPRXcxVkc1WVdsRTFlRXhPYjIxS01TOVViVFl5ZVZsdVdqWkxPV1V2Y3pkTlJ6YzVTVmRaZWxoTldRcGtLMkY0UmxWVmNIRjVVMFJyTWtodlVucFVWVEIzU0hKSVJtY3JNelkwV2pOeVZVeDZkVkpsZUdoVU5YZ3dOMVJ3V1ZOcVZHTnpkRU5HZUd4MlpGTjFDamRwYzNOeVNUVjNPVGRsVURRMmFtMVdkekZrUmk5UmNXcDVTREkwVFZWWE5uUk9TVFZuT0RFMlUzUjZNVFZqWVdsTFprZGpiMWhZUVhGcFRFNDRaVWNLZFRSRFozZ3haVWhpV25aSGNIWm1ORTRyVFZWVmR5dDJNVkpCU0VWcmFUSnBOa05SYWpZM055OUdhM1JhWWtobVZFNUViM2t5TkV4cU1VaFdUa014Y2dwamFub3ZWRFl5UWtwQ1V6Qk1ObHBqTlZZemJXWnVjalExUkc1VUswRldjV1Z6UTFkMFFubEplRmQxWW10SFJrVkZOMFJuUTFWS1ExSm5UV293Y0RWc0NqSjNVRTAwUkU5dlJIQTRTRVZhTWxwbFNEaFJkemhuVEZOblpsQjZkVVlyU1ZkbFJXNXhiVk5tZWxCRU5ETTBTMUZNV0ZFdk0yOWxXbmdyVWpkdlZYTUthV0ZrWlZkSVNVZFdXVzFNZFhkbmRqbG9WMlZyVldWbmRtWnNhRXQyTVhVcmNVOVZSRVUzVmtGblRVSkJRVWRxVVdwQ1FVMUJORWRCTVZWa1JIZEZRZ292ZDFGRlFYZEpRM0JFUVZCQ1owNVdTRkpOUWtGbU9FVkNWRUZFUVZGSUwwMUNNRWRCTVZWa1JHZFJWMEpDVVhkdFYxQTBRa01yUldjNE9IaGthMm9yQ25wYWVrOVJTQ3RKVjBSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlFVOURRV2RGUVdwWE9TdEtRVzR6VkhnMVpVOW5TRFF3TmsxV1RITjROMXBZWlZjS1JsUlZWREJxWldrNFZYUllRV042ZVVoeWEyWnVlbVoyTUdsamJFSTBOVzl6YWtsV1duUkNhbVZxVlVwcVdYaHJZMHBoVFhSVGVtVndVMlF5VTIwcmN3cGlaVzU1ZDB0T2FYZzRWbTFNUjFOS1ozTlpNMFkyYkNzelFYRlROVkpETUZwaGJrVlNWVVowWnk5MGVFZGthelJSYVVGTFkyRmFhRkJuY1RkUU1FbFFDa2w1VFVGSWIwbDNZVVpKTlZCMVFubDVLMUJ6ZGpsSFMweDRja1UwVmpORFRVVjZkelY0TkVkNFpUQkZZMGsyYlVsMlJqQk5aemRFTkZwbVRYbHRTRGdLV1VwUmQxcERjbGRYWm1OU2FrMUxMMWRwVUN0a2FXMVNRbVJMUlRCdmVtZ3daV1V2U0VWcGFWaHFOMmQyTlV4SE0yaDNPRTF6YmtZelRESkxZMDFLZVFwSVRUWnVVV2RMZFVSb2RqVmxhelJGTTI5U1NIRXpWMEoxUm1SWlZpOUxiRFZpZW5aQ2RVTTBjVFp2ZG5WNk1uQkpLM2h5UVdWWVlsSkdTR3MyYmxWMkNpOVRhbmMzVVVjMVdqWmtRMFpGUm1neVNHRkVOMnc0Y2t0S1ZtNXRNU3RzVDNsaUx6VmhhM2xJYlcxME9GbGFiQzlTYjI1a2MweFJUbVpuUjNnd1pXTUtRbVJETWtnMVV6VnVXa3A1WmtKVFNEaHFZMlE1ZDBzME9WTkRWVGcyV2lzMVptSTVVSGx1WWs1WVQzbEdRMWxPYVVoelNIQXhNblpsS3psT09HMXNTZ3BrYVdoV1dXaEplVVpSUlhWQlNrUnJWMDlNUVVGdVMwZzJSMjFDTjBWb1oyRlhVakZ5Um1oRGRWYzRNVlpVTUVGclRXcExLemh5TDFseFozcHVkVWd5Q25wcWJFcENjRk13YzNOaE1YaDNabkEwYWpReGNXRlFNVk5CY25aTFIyaDVObFZ2ZW14WFdsaFdTbWx1YkhOcGMwdzVNSGhaY25sb2MzaGtjVGcwZWpRS2NteDBVa3gwUXpNd1dXaHNkVWgzV0ZOMFJYcEtMMmtyUmpCS2FISlFXVGczYmxnME5WTkxPVXhJV2tVMlRVMDJNRE5JZEVORVYzUjBTMkp5VVVWSWF3cERjVzV5YkZwc1kzUlFVbHBsV0c4OUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2FnbG9xYjMtb2hidHlqcDcuaGNwLmVhc3R1cy5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdGE1YW42eApjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdGE1YW42eAogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGtndmpycDZ3MzdfY2xpYWtzdGVzdGE1YW42eAogIG5hbWU6IGNsaWFrc3Rlc3RhNWFuNngKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0YTVhbjZ4CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGtndmpycDZ3MzdfY2xpYWtzdGVzdGE1YW42eAogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVcEJlVXRITDNKcWNGWnFSVkZpZDI5NlNFczBOR2QzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFSVEJOVkdONVRsUlZNVmRvWTA1TmFsVjNUbXBGTUUxVVkzcE9WRlV4VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJlVTlzYjI1UlIyeHVNREpuUVVSVVozZG1TRUlLTlRSbU1HVlJhVVl6Y2toR1RYUlVUVXBDUVZwM1pFWXdTVmxWWkdGSE1XOVBhMEUwU2twNVZubHlhMmRXTW5sc2EwWm1kM0F3U1ROYVZGRTBTa0ZNVndwd1lYRkVlV05UZEdRd1ZHRlZNVVZFYTBoWGQxWldNRGhMVVdOVWVtUTFlVnAxWlhacFlVbENaVE5LYzB4eVRscFhTbXRsVTJFeFpUSXJiRFZLYWtzNENqWjVVSEZsV21KSk9IUTJObGhxTWxWS2MzQlVLMUEzU1dkUEwwVjZaMlk0UW5GWVoyWjJURWxxTlRFd1ZsWjNOVGRJY1hKcWJtWTFaMEpHTkM4eFJFWUtVMnBhVm1sNlJuVkZOVVIwY2pJeFNVZElWSHBxYnk5dlJISnVVME4wVkZkaFlUZzRObFkzZDJKUGVFbHFOVTVPUTA1TFVsQjNUVlJsVFhocmNWWk9hQXB5YWtGUWQyRmFTRTluVVZKc2NEWlFjemN6VlNzNWFHSXdiRmQwVkZSblZVRXdTVzlsVW1OdU0yTkVPRlZUVlRGTGEzSTBSWFp5SzJSclNIWnNZMVZrQ2tsdFNrRkRaVUpVWjNGeFNrd3dOWFo1VTBOaVEyMXpXWEJCVm1kcldGcHhka015TTBzdk4xWTJWWEZzVG00MlRWUXdkMEo0TkRsdEwxRktWVEpZVEdNS1VGaENTbFptUTBaNlFsTXhPWGRqVUZwbVIyaHdLMUI2Y0VRMWNUQk5OR3g1U0hKUWExVjZhMlkxTTNGNGRERTFZelExTVRWMFRESXphRloxYVZrMUx3b3JRazl2Y0RKdVZXMHpWMUpwSzI5WVUwSktTRE40Wm05RU5tWjFUMWRwVFRkRVZHMU1XbTVWY1hNcmFVNVNOak4zZFdGWk0yOUJhREU0V25adlRVNUhDbG9yVFZZMWNGaE1OMmx6V0c5U1ZGUmpSbWRGY25ObWFWQlVkSGN6UTFwMFpUa3dOMDlVU0hCS2JHVlhaMnRYVDJGbGVEaHJZV2hXWlRsWmJ5dDBZMU1LV0cxM01IcGFOSE5LU25CcVVXbzViblpETkV4alZrSk1UVFJNWTFSMFdYcEROVk5VU0hsNU9TOW1aVEF4YzNaM2VEZEhWVnAwUlVsQ05TOWpkMDV6ZVFwNVRtUjJlVWxPVDNjdlVWSkNlbGxzVnpNMU5VWnlUVU5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZUVXBzYWl0QlVYWUthRWxRVUUxWVdra3ZjekpqZW10Q0wybEdaM2RFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJTa3RoVnpSYU0ycDZhbkl6VUdNMk5YSTJWUW8wUTA1RldtMUZiSFZwWVdOaFZFVm5helpHU0UxdGJUWkZZamRuYlcxSWVIYzBUVTkwUjI4MVUxRkxNMlZSYkU5M2VsRlhaVkJwUjB0QmF5OHZjeTg0Q2twblExRkdlVXN5Y1ZkM05GRjNUa2cyUjBWR1NEQTVaM2RhV1NzNWNsZDRjbEpSVW5CcVRsVlhkelZ3VjNCYVIyTnBPWFphVlVONlpEaE9WREphWWtFS0wwMDNkbGt4T1ZSdWQwZEphekIwWkU5MmNHeHJMemx5TkhRdk56SkRNa2x3VG1wdWMyUnNRbWwzTUZScmIyYzVVRmgzUkdSbVVWTTRkMDlOS3poUVZBcE9abmwxT1ZGb1kyOWxTbGhrUkM5VFExWkpXVFIyTVRCeU56UnJjVzh4VTJGVmRuRmxZbHBMSzFsamRuUkxWMGxJUVhWNlZ6Um5MMDkxYWxCeWQyVktDbFpwUVRoWVVHVjVjbUpNYzJWTWQwTjRjR1I0ZEZoR1ZYSmpNVlJuVFZSRFdYcHpWVGxHYTFJMmEyMU5kSFprTTJaTGEzSlpkRzVTTUdkbFZrbEhSVllLUzNwdVRWaEtVRUZzUjA5cVRXNVhRbTF5VDBkRUsydEZhbTh3WkRoNkswUjZiRmhGVm01eFJ6aDRjbHBNUVhsd1N5OU1ZVGhXTlhreVZYZGxVelJuS3dwcWIyb3lVMmxCY1RSdVREZ3JkazFITTNndmJITldjRFZ2TjNvM1JVSlpjV0k0UW0xYVl6UlZkbTFFZWpSR2VsUnhWalZGWkVoM1RVMTBWbVZtTWpsSUNqQklVbFk0VnpkS2IySmxlakJWZFM5S0swMDJRMGRMZVRGM2RXZEpOSEZMYWtwYVNtMHlNemhYV1c5SUsyeFdUeXRUTTNFMlkyeFdhV1JCTTBWaGJVVUtVa2RoV1VkR2VWTTRlSE5qWWpsWVYzQlBUalUyU21kcU9XMDVZazFEYTJ4TlNDOXBOMjV3WlhkU1RreDJZVWhPSzJodmIyWlpWalkzWlhseVVXeGFhZ3BMZGpGbUwwUnVXRzFXZWpkcFlub3hNelZtUTJVNWVESnNkSGhNUWs1UlpEZFdTU3RqUmpWeVltNXhXbWxNTUhwSk5HaDNRa1ZYUVZwME5tdEtOM2hoQ201V1YyNVNaRWxOY1VkUE5tWmFPVGhvTmt0cmRGaHVUZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1NuZEpRa0ZCUzBOQlowVkJlVTlzYjI1UlIyeHVNREpuUVVSVVozZG1TRUkxTkdZd1pWRnBSak55U0VaTmRGUk5Ta0pCV25ka1JqQkpXVlZrQ21GSE1XOVBhMEUwU2twNVZubHlhMmRXTW5sc2EwWm1kM0F3U1ROYVZGRTBTa0ZNVjNCaGNVUjVZMU4wWkRCVVlWVXhSVVJyU0ZkM1ZsWXdPRXRSWTFRS2VtUTFlVnAxWlhacFlVbENaVE5LYzB4eVRscFhTbXRsVTJFeFpUSXJiRFZLYWtzNE5ubFFjV1ZhWWtrNGREWTJXR295VlVwemNGUXJVRGRKWjA4dlJRcDZaMlk0UW5GWVoyWjJURWxxTlRFd1ZsWjNOVGRJY1hKcWJtWTFaMEpHTkM4eFJFWlRhbHBXYVhwR2RVVTFSSFJ5TWpGSlIwaFVlbXB2TDI5RWNtNVRDa04wVkZkaFlUZzRObFkzZDJKUGVFbHFOVTVPUTA1TFVsQjNUVlJsVFhocmNWWk9hSEpxUVZCM1lWcElUMmRSVW14d05sQnpOek5WS3psb1lqQnNWM1FLVkZSblZVRXdTVzlsVW1OdU0yTkVPRlZUVlRGTGEzSTBSWFp5SzJSclNIWnNZMVZrU1cxS1FVTmxRbFJuY1hGS1REQTFkbmxUUTJKRGJYTlpjRUZXWndwcldGcHhka015TTBzdk4xWTJWWEZzVG00MlRWUXdkMEo0TkRsdEwxRktWVEpZVEdOUVdFSktWbVpEUm5wQ1V6RTVkMk5RV21aSGFIQXJVSHB3UkRWeENqQk5OR3g1U0hKUWExVjZhMlkxTTNGNGRERTFZelExTVRWMFRESXphRloxYVZrMUx5dENUMjl3TW01VmJUTlhVbWtyYjFoVFFrcElNM2htYjBRMlpuVUtUMWRwVFRkRVZHMU1XbTVWY1hNcmFVNVNOak4zZFdGWk0yOUJhREU0V25adlRVNUhXaXROVmpWd1dFdzNhWE5ZYjFKVVZHTkdaMFZ5YzJacFVGUjBkd296UTFwMFpUa3dOMDlVU0hCS2JHVlhaMnRYVDJGbGVEaHJZV2hXWlRsWmJ5dDBZMU5ZYlhjd2VsbzBjMHBLY0dwUmFqbHVka00wVEdOV1FreE5ORXhqQ2xSMFdYcEROVk5VU0hsNU9TOW1aVEF4YzNaM2VEZEhWVnAwUlVsQ05TOWpkMDV6ZVhsT1pIWjVTVTVQZHk5UlVrSjZXV3hYTXpVMVJuSk5RMEYzUlVFS1FWRkxRMEZuUW1GbmVsUTNSSFZRYW5Ga0x6aFdPVmwwTm1SR01tdHVlR3RFY0M5dk0wOVBMMkUzYW5kUmExTnZWMk5zWXpGS1ExVklSRFJLYVVOalF3bzNNM2haVlZORGREUnBaVkZ4VGpKc1RFdExlVTlHTVZkaksxUndlVGRGUm5SR1MwWXlaMGxXTmxCcFdFZDZOSFZ3ZDNSVldFaHFhV3hYVjNFd1NsQXpDbWxKU0hOalNHTnRZblY0UVdsMlRHNU9TRVEwTVNzd1dtUlhRa0VyZGxKSGFFNVVVUzlsUTNWV2ExZHdWMEoxVDI5S1NVbzNTSE5aWVhWYWVYaEZXVzhLVTNjMWNVUlJRamdyUldselRHWlBaVUZ3Vkc1NWJtUmtXbkpGVEVwM1JsRTNVbkoyVHpaeGNFUnhNbVJRZDNJck0yWjNiM0pxVW1aYWRGZFdNVlJ0TWdveFYzVjRWbkF5TVN0VFIwdGhVSEpCYWxrd00weGlXRzU0YzFoS05rdE5aMnhrTW1VeVNHaHZRamxWY200NGExWkZUSE5HVUdzMFRqZE5ZWFpXVWpOUkNuUTRjbWhFTTBaamVWVjBlbGN3VkRWdlFsRkdhVTU2Tnprd2NWSkNlbVpHSzNRNFdEVktSMjFFYmtjcmVrWm9ZMGR1UlhKYVJGTlpiMnRNUXpGU1JVSUtiMGRQWldZMWMySkhhRTl1V205M1V6ZDNZVlEyU205dFZVTnpiRUphZFdGeWJHVkdSbmRUUjBkemRtNXFaakJ3ZDNSNldWZHRjbk5CZVhWU2VtUndPQXBZTkdsR1NFODFSMFZwV0ZkVmFqVlNkVkY1YzJkVWQxRllWRlZoVWtOUWVuUXJiRkIxWXpWSmJXTTJNMlZXUTFwb09YcFlVbWszTmt4a04xbGpiRUo0Q25kMVQydE1OM1p4V0VSV1ZraElXRlEyYURKc1RXZE5iRTVPZVZaS2FuaE5hSGRvYVRnNFJXbFljMWRNYzFaYVlTOW1PRTgxYmtGTWExa3laSHBXZVhVS1VYaGhWVUZETmpRd2JpczVhbTFEU0c1dlJtNUVValJaZG10UVJ6RjNielZESzFsblZscHRiWFpHTVRaUVIzTTRiMmxWVVZRMWIyVm9iRFUyWVdaaVVBcElibWxzVFVGM1FUUkdaRVpNVWpCRGIxcDFOSFpyUjNreFZEbHNjVkV3VUhKdmNIVTBhMlo1U1ZsTFJWRlhkMklyVVV0RFFWRkZRVEZMV2twME1sUlBDakpUZEdkV01pOVJiMW95Vm5CQ2IxWmFXbUZVYmtaM1ZtUmhiMHMzTlcxcGFtcDJXR0YwYnk5WE1EQXpNRGx6ZVhsYWQxRXhPRTltVEZRNGNFTnNhbmtLVjJOeFQzcERUM2hpUWtkMmRVVk5TM2xIYmtoM1VFNHdTemxyYWxCRVZqSXpZbVZpYkVkMFJYSXZTSGhhTkVSRWVIRkphRzFpYTNCYVVFRlZaRVZYV0FveU1sSTFVRVp3Y2s0eFRYQlJPSFZ6TlhOSlQwdDBWRU5DWVZwNFV6ZElkVUZaTWk5WllVd3JLM2hLVTFBMmEwTnpNM2MxYnpGaFQwTTJPSGxHV2taNUNuRTJTR042VDBRMmNWb3ZjVGt3VG5adWJHdGhRWEFyYTFGQ2JIcDBNMlJzT1ZNM2JGcG5Ta3RIU0ZWdlIxUm9iRWRVVW1WUFRqTmhSRzhyVVdOamNHZ0tUazlXYVdkT2VsZFBWVTl1ZFVSVGRYUXhha1JKUTFwNE5XcFFhRU15TUdNMGJHaGxVREJrVEV4bWJXWnRjVE42UWk5TGJWUTBXV2dyUXpOV2FteHZaQXB2YjJKQ2MzQk5iWHB0TW1vMVVVdERRVkZGUVRoa05rMHphSEV6WWxsRFUyWkpiWE0wZWtoMFVtc3hPSFZaY0RKdlJWaFhkeloyWWtzNFFrRjBWSGhpQ2tvdk4yWkJjREZrUW5GWFFqZDBNWFpZTmpWa05YVnljMmxhSzFCSVYxVnRaR1pPUWtaUlF6ZHdRVGhNTnpsVlpuQllheTlJVTBaTWNISXdSalJJZUdzS1pIVllWR05uZVZVNWRrVjJiMVJES3pseFZUUXdWVTVLY2pGNGRYcG5VME5JZHpsaFVEazVhSGN3TTFSRWJWRlJjelU1VEdOYVUwVktjMHBKTnpZck1Bb3phMmxaWTI5VVlXeFRkV2RZYTJ4MVUxZEJjRlI1Wm00MVlqWnhhSEUyVWtoa1YzSlZXbFUwTTFnM2NETmxlSEE1Um10b09VeE9la2xJVVZFeE1WTlhDalF6Y1dJNVN6WkljRlpIYVN0UFFqWXhXV3hhWkhoWGFYRTJjRUp0TjNjeVprTnlTblJWZURWT2RFeFlUV1IxYzFCVVN6TXphemxhVW05SFlVNXRWVVlLVlhCbU5URm1kVWM0ZGtkRmRIQTROVTVLVGpWSldGaFFZMmRzTlVOM1VFcFpPVEptSzBWS1YzUjNTME5CVVVGdlVYSlBRMUJXZGsxVmFVbFVZU3RCWXdwUFZFZDZkVUo1UlRreFZreE1WVkZETW5kaWJrSnFaRFJ3YlhaTGJIcGxXRzFoT0ZGT1ZtZFJVVGRSVFhCalZHeFdRMlkxUWxrMFl6Um1WRmhSV1hFNUNqUjZkRnB5TldaRVEyZFFMM3BDWjJGc1UyNVBjRWhETURKaFdtcEhNSGRPTkRocVNYZ3JRa3BKZW10d1Yxb3dNSFI0SzI5UksxUlZZazVzYmxNNVkzY0tlV3hZZEhWQmIzTlNiVVpaVTNBdlVsbG5ibWhSZG1KRk5VbHNkbVYxVXpkMFIxSlBSMVJ0YUhOamRGZ3lXRTVpVlhabmQycFVSV2QyWVhsSlVHSkJNd3B1VldSdVQxTldVVE5hTTBoRlYwdFFiMFZKUVZsdFMzcFpVVmRrYjNGR1ZYTkNiUzlpUzFnelpEWnhMMHRaUnpOalFXSjRRa1puVkVrM2NtRnRkbFZWQ2sxdVRESjBWVXN2UVRsamRIQjRiVFZqSzJ0UWRVMUVXRTlrVUdWT2VXeE5jM2MwT0hkMVNsbG9kVUpzTDJka1FXSmhNRnBJYjJGME1YTlhiR2RoWVM4S1VIQk1hRUZ2U1VKQlJXOXdaMmx2VFV0U1ozcGFlbU15WnpoT05rdEtXRFExYm1sQ2R6RlFjbVJwYlhwU1ZsaEtPR3N4Wmk4eFpIQktMM0JIVWtOTWJ3cHNjMjF0VEdsTk5XUlBUamhRZVVWSWQzSnplSEUzVWxrM1UycERaVGhoV0UxdlRFMWFOVXN5WkdGeE5UZGtaRzVsUTJwWlJ6TnVNV2xJYzJNM2IxRXhDbVZtVWtRelVtOUdiVlZHV2tRemRuTnlURVZSTkhSRmFGSlFkakozTmxFNU9XRjNaemxLYjFCRGRsQTVjRkJQTldWUFJ6bHFOR3ByTWpWSGNIVk9aM0VLWXpGaVZucDZTa05uVVdkaVdsWnBiSFZQV0hCSGRXWTFMM3BxV25RMFJEZEVSSGxYTkM5dlpscHVSVUZ2VW14bVdGWmhXbEZzWW00emJrRk9TRGw1U3dwQ2NESnVVSGxNUVhCaFZVWkNhMkkyZDI1ck9VbGlkVFkxZGxKdVUxaGxUU3RLZWpaRVdITkxWbE5UWlZWbVNucG9UbE5QTjNrelprZGhWVXRLWkhaVENsRkhORFp5YWtNek1ERnNNa3BVUTBSU1VrVnBhbEp5U1RsMVkwcGxSWE5EWjJkRlFXSlpWVUZOYWsxa1JuRkhaalJ3UWxGWlNrVnVaR3BsV0daREsyMEthMWROYzBOWGJGbDRiMnhyUmtGaWVVWXlibWgwYVU5b1oxZHViVEV6ZFhsUFFrNW5NV05xYzFKUWJ6TTRaVzB6Vm5STFVrTTVWV2d2VkhoU2VXVnlhQXAxU1VWUVdHNVRTMWcwUWtkcmJrdFFaVmhMZGt0Rk0zUmlWakl2V2sxUk9EVTNaakZhUVRoSVNFSm9iM0JqYUVoM2NtZERVV3MyVEhGWllTOXlaVlF6Q25Kd1RVMUpXRFZvTkhJd1VYUk5hamR5Y1RGSFdubFJRVGgwV2twRGJESTRXbmxxT1dab09UWnFMMWt3YzBkd01WWjVjMlkzZFZsVmJsbHFMM04zYWxVS2N6Z3pZbWxrUjBoM2FWQkNTRVZ1UkN0aVVuTnBjMjlrU1hoNmNrODBNVGRxTjI5bE5FczRMMUI2UldaUlNtWjBPVEJSYzNrMWIzcHJNVXhSY1RGcWVBcHNSVXNyVUhoaEsybDVLMGw2VTNoalJIUkdSelpVVVVsME9GUkRNbFp4UkdWRVlqTmFlV1VyWkZCb1dHTm5VR2hpTkZZemQyOHZhekYzUFQwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiB1dWMxOWVrc3YzbWx1eG54Mmg3NWdrb3N0bzV1MHV5eHB3c3c0Y3NqenZzZHM0eW42MWVhaXR3eWZrdjVhcXlkMWk1NHk1MG9hejBhcGd0ZTV4Z2ZqNmVpMDlpbnV0aHRpcTQ3YW1qdnNldHNpOTVrc2g2Mm1ldTd1aGx1ZzM0Nwo=\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '126' + - '13072' content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:56 GMT + - Wed, 14 Jun 2023 17:38:57 GMT expires: - '-1' pragma: @@ -732,6 +831,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -739,34 +840,45 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --zones + - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/99e212f0-e530-4282-8a74-16c3035600c6?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"f012e299-30e5-8242-8a74-16c3035600c6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:04:52.4826019Z\"\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n\ + \ ],\n \"enableAutoScaling\": false,\n \"provisioningState\":\ + \ \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ + ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '126' + - '1105' content-type: - application/json date: - - Wed, 15 Mar 2023 10:11:27 GMT + - Wed, 14 Jun 2023 17:38:58 GMT expires: - '-1' pragma: @@ -785,37 +897,59 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": + 0, "osType": "Linux", "enableAutoScaling": false, "scaleDownMode": "Delete", + "type": "VirtualMachineScaleSets", "mode": "User", "upgradeSettings": {}, "availabilityZones": + ["1", "2", "3"], "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], + "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks nodepool add Connection: - keep-alive + Content-Length: + - '477' + Content-Type: + - application/json ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --zones + - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/99e212f0-e530-4282-8a74-16c3035600c6?api-version=2017-08-31 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"f012e299-30e5-8242-8a74-16c3035600c6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:04:52.4826019Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n ],\n\ + \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"\ + provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"\ + Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/fe5edd8e-e976-4aaa-bef2-f780a43bd57f?api-version=2017-08-31 cache-control: - no-cache content-length: - - '126' + - '1039' content-type: - application/json date: - - Wed, 15 Mar 2023 10:11:57 GMT + - Wed, 14 Jun 2023 17:39:03 GMT expires: - '-1' pragma: @@ -824,15 +958,13 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -841,31 +973,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --zones + - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/99e212f0-e530-4282-8a74-16c3035600c6?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/fe5edd8e-e976-4aaa-bef2-f780a43bd57f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f012e299-30e5-8242-8a74-16c3035600c6\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:04:52.4826019Z\",\n \"endTime\": - \"2023-03-15T10:12:08.1547491Z\"\n }" + string: "{\n \"name\": \"8edd5efe-76e9-aa4a-bef2-f780a43bd57f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:39:04.1581743Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:27 GMT + - Wed, 14 Jun 2023 17:39:03 GMT expires: - '-1' pragma: @@ -891,67 +1021,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --zones + - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/fe5edd8e-e976-4aaa-bef2-f780a43bd57f?api-version=2017-08-31 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-ms16hzlw.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-ms16hzlw.portal.hcp.eastus.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"availabilityZones\": [\n - \ \"1\",\n \"2\",\n \"3\"\n ],\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_eastus\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.Network/publicIPAddresses/72530340-0dad-480b-86ce-b1269ae81f60\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"8edd5efe-76e9-aa4a-bef2-f780a43bd57f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:39:04.1581743Z\"\n }" headers: cache-control: - no-cache content-length: - - '3377' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:28 GMT + - Wed, 14 Jun 2023 17:39:33 GMT expires: - '-1' pragma: @@ -973,121 +1065,33 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks show + - aks nodepool add Connection: - keep-alive ParameterSetName: - - -g -n + - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/fe5edd8e-e976-4aaa-bef2-f780a43bd57f?api-version=2017-08-31 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-ms16hzlw.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-ms16hzlw.portal.hcp.eastus.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"availabilityZones\": [\n - \ \"1\",\n \"2\",\n \"3\"\n ],\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_eastus\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.Network/publicIPAddresses/72530340-0dad-480b-86ce-b1269ae81f60\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"8edd5efe-76e9-aa4a-bef2-f780a43bd57f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:39:04.1581743Z\"\n }" headers: cache-control: - no-cache content-length: - - '3377' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:12:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks get-credentials - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --file - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 - response: - body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSWkVrd1RFdGxjVlpMTTFGUWNWbExWbGxuYm1OcFZFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCZWsxVVZYZFBWRlV4VFdwR1lVZEJPSGxOUkZWNlRVUk5lRTVVUlhkTlJGVjVUVlp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOckNucHZkRWg0YlVWWFRqSkJObkJNUkhWak5WaFJjV053VFVaWGFISnNRelpUSzAxb1ZrUlBRemRUY1c5cWFYbzVRbTVUYWpSSVJqUk9Tak5oVUVwQlUxUUtSRXczVW5WSVFsVktjVkYzTlN0cFExZ3lialZrTTFCcU1tSlFVazFsYm0xb05qUjBiMkoySzA4eUt6SnJRa01yVjA5eFUzUXJXWFJyWVdOWVprMXdPQXBGYzBSc2FsbFVUVlJTYVRNeldGTkJjbEpxTkc5d01YcEJaa2swYjJVNWMxbFBiWGxTVkhsR2NFZExTSEJ2U0RBNWVtazFWREpOYjFsRGJHazRaVGQ2Q2tzemRGZENja3RPZUZCSFRHMVViRTlaTUhCbFoyMXZOVk5NY0Znd04ydGtNRkpWVGs1bFEyWXhhV1JIVldkWVIxVlRObmN4ZGpRdmVISXdlRWxwYlV3S2JFdEhNbXB1VVRKdVlVVk9aMmd5UldORWFsZHFSVTUxWkRCMVVFTkRhUzlFZVVVcmNGYzRaV052WjBKa1NFeDFkMVpEY3k4M1ZuUTVNMDltZFRObFdRcFdTWGR0UjBOMlRHMTRWR2QxTUdGT2RFOTJPUzh5UW5NM1dIbzVOR2xFVFZONlowSkhSVlY2VFN0VGFtVjZlRGRuTm5GVmJWQlVOV2wzVGtKRGJ6SXpDak0xVFZvMlpYQlhjM2hIT0VwSGQxbFlOWFJPVEZjelZtOHhSV1JIVEdGa1duWm1RamgyT0UxdWExaFNWME5xTjJkM0x6VTFPV042UVc0dmR6QkZkR2tLUjFCRVkzRnZiRnAyUVhkU09GQklhbVJ4Y2xwTWQzazFjWHBOVlZaaGRWcENORzh6VUhvNEwwVnVWSEZGWmxkWFpsVTBSM00ySzJGdk5XdE9aaXRrV1FvMllXdG1UMUYxVFZjMk4wNUZWWEJVYjNNdmREWkNibGhyTTNCaWJqUnpSbkZhUmxGcWJsazVSamRZZEVGQlJFaDNVMmhYVDNNclFqQkVVMVkwVVRkaENtNU9abUl5VkRRMGFsaEJiblJDUzI5RGVFOTZkMjh5WlhaMmEzTnRhRzFuY2poSVFYWldUV3MwSzFkT1p6YzNRMkl4Um04NGNYUm5jVzlWV0hFMVppc0tZVGxJUW1rMlUybElOazlNTWtGaWMwTTFaSGczUm1ORVIwaDJiMk5KUldwVGFraEVRV3RKUlRSUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWNWRHMDNNM2h2ZDB0NGFuUk1ZMEowQ25GSlJrNTZRazlCUjJoQmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGTFVHNHJLMkZXWkU1TVJHSnVaRzAyYm5JemMzSXdkVzFJV0dVS2NUUTViSEoxUzJOdGMzWTBXV1JVZFRnclZtZDFSSGs1VFRoVU1pdDZOR1JGYmtkT1pUQkNaRk5SZFZsRFZVcHRNMmxLZUZwVlEwZFJLelV5ZUU5a1F3cHpWRTkzZFhJeGEwMVlkakpIVVVkaE5XcFdXa2RZZWsxVmFsSXdTa1puYTIxcmJtUTNablEyUmtGemVrNWhaa0V5ZWpsaFVrSlhkWEI0VVU1aGVreFBDbVJTUTBadFVVNDJSak0yV1VwcGNGRm1MM1o1ZGpSbGNURnJXREFyU21aVk1VNWlUR1ZqVVRaRlExbGhRVWN4ZUhwVGVuRmxlUzgxYW5GU1pFVmFPVVFLYlRoM1dWSlZSMDFZYTIxS1NXbEZXalZFUzNoVk1FOVJlV00wZFRST1RpdGFUbmxEWkRkRlNtMXRabTAyUkVFdmJHUjNaMUZZYlV4RlpHcGhlRXhhUmdveVQydERUbEl6YjFSQ1kwVnZWV05MWnpCU09FVmhXRnBWVTNnM2RVOTNibHBSYUhWbWFXVTFZMU0xTDNBeVRXVnVaMWs1TlhVelNXOXZabWRLYjNCM0NrdGpaMVUwVWt4MVJscEhjbXMwWlVsR1FsbFRjWGcwU0VWMlNIUjBTVzE2WjFwd2VGSkhPV3RRY2xGSk0zTk1PRUpCWjFWTVRXbzRXazVuTDFnME9XMEtUM0ZqUkRCeU9GSkRWMFZvWnpsVU1sSTVVR1o1ZFhVMVJraDNaazR5ZDFsUk16TTRWVWxGY1VkRVdWcEhVbTVPVG1OdGEzRllkV2RWYlhwTE1ERktZd3BOVFVwNVVERklXRnBHZWtGelpsRTRUM0p5WTIxamVGbzBlalpEYlZoR00wcHJlVEphTjA5SlQzVmtOMUZNTlRVNVRFWlJkeTh3TkhKelREZFZWVUpzQ21OYVUxWnJNVlZIWWxaUE5XUXhlbkJsWkhNMGVHeG1jRkZ6YnpsMGVtSjFjVElyVTBKeFMzcFpTVFYwZVhaNk5tdFRabnBzYVdaSldGbGpWRmhaY1ZvS0szSkVhM3BGZEhkSU1qQTFjR3h1Y0hKdVFucEtTblZDZG5oR2RVWXZjMmRaV0U1WEsxUlhVR0ZCZEhFMFRGaEhiRXR6V25aMkwyTTNhQ3NyWTA5bFZBcHNTMkZuTjNvdlRFTlZaRmRFVUdaVkNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc25uNWN0a3ktbXMxNmh6bHcuaGNwLmVhc3R1cy5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdDYzdTZ4agpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdDYzdTZ4agogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdHRhdno2cjNua2tfY2xpYWtzdGVzdDYzdTZ4agogIG5hbWU6IGNsaWFrc3Rlc3Q2M3U2eGoKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0NjN1NnhqCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdHRhdno2cjNua2tfY2xpYWtzdGVzdDYzdTZ4agogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlRIUlJPRzlpWWtod2NtcDZNbnBCUVVOaVRrbHVha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQmVrMVVWWGRQVkZVeFRXcEdZVVozTUhsT1ZFRjZUVlJWZUUxRVFURk5ha1poVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTmpOV3hJYjB4QmNuaEhlbEpLVnpCVFMxaHJMMklLUlVoMlR6Uk5jSFZzTmpScWVHSTBZa1E1UVZaTE1IZEhWSEZ0VTB0SllrTkVURUZGYkRKRWRVeHdUbEJCYVdOc2RFTk9ZbEowZGpkTVF6RklZMmRtTndvclJEbHRhelpOTlhsTGFEVXpWWGRSTUVreGRXUjNVRkJsYVhsblpuWTRTRU12U0d0TU0yc3lObFlyTWtaa2RuSjZNVkJKWWtWYWRrd3lZM1pXWmpKbkNtNVVaV0Z0T1VONk5VVmhkRXhOWkhCS1pFMXVXSFF5VW5wclptbzROMFpvU0hFcmRFTTJMMnRZY1dSaVJucHpRM2d2YUZkSGRTOU5Xazh4ZDA1RGRYRUtXbWRKTXl0c1QxbDFSMFJoZDJsVlNHTTVORVpaU2pSdVdXbEZVR0V3WlVNNFRscFpZbmRQTjFaQ1IwWkphV2c1YldSdFYyRlBNbXQ2VTBGek9WbHhNQXBaWlVvMlJDOWpTa2wwZURkWVVTODBkMVIwUmxFMFNYTkdPSEZLWW5Wb2IwZHJTM0poSzJkRGRUVmlORzFCU0dRd1RGWlBTMVZNZFhZMWNHMTRSbWxCQ20xeVRFTXJVSFZGZW1aVU9HbFZRamMzVEdFMFFqRkdWU3R3WXpCV2RrTkJSVEZyU1hScFpVeHlSemhtUW5BNFQzRktiVnBPTnpKWFFYQlBkV1pWZEdvS1RHazNSazgyTTJ4ek5HOVJZVkJIWW5wcVdtaEJkbkJQUWpCTU1FUktkemRpYTBKclFUY3ZNbVl4TWtSWGRXMWtjelJPUjIxaFpuVkdRMkZhZGtOVll3cEZVbFZMZERSemJHWTBhbXBuVGpKUU5qa3JkMEkyUVRjdlYybHJWM055WVdoUU9YYzVTVmRHTWxack5FdDNZbmR3SzI1TFlWcElSM1JZYXpaUllrcEpDa2x6TlhwTE1EaGllU3RNY0ZNMk0wSmxhbE0xVmtWSFdVaFRXVFZoYkZoNmFVbHlLMFZJWm14Qk5sRlZWR0p5ZW1GUFRHRlVSbGRFTUdwcVNuVndhbW9LVEhseWNEbFlWa1YyZDJwc1duTkJkMk5MWm05V1VFMUdNRnBoY0hGTVYySXhkRU5MYXl0WmVEVk9URzVLWkZObFQwVlJUazlWSzNkYWEzVkVaVVZDV1Fwc1ltTmpMMjl6YzA4eU9YZENWbFJRV2xVeGIycDNTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsUkxNbUoyWmtkcVFYSUtSMDh3ZEhkSE1tOW5WVE5OUlRSQllVVkVRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRlpXV042YlZCUVkweG1kVEJ1VVRaWlptSkRkQXBqWWtrclptdFljV1EwVTIxVWVuZGFUMFJzYm5oU01HWjVlbGhKYVhOQmRHaHRPREJMY0dscWFYQmtURElyY2xKdk1XNWhZemxCTlVacVlXdHdSblp1Q21WUU9IaHdlbUZKYmtaa1dIbHNialV3ZUVsRWVEQnJWMUF3T1RWR1RpODRWbTF2YkVsbWFGVmhkM1pSUm1jek1sWnBhR0pCUWpoSlJtZHVWME55WmxNS1JYZERVMFZ6TTBsTE1YRmFRbmxWWWs5eFExWTRURlZwV0RoUFNEaEdTVkJPWW10Q2RVRkpRMHRNVDFSSVZHa3ZXa1F2VUVSYWVqTlpVbWwxZVRoTWRRbzNhRmg1U3paRldtdzFiSHB0T0N0MFZrSjVhaTlHZERsQlpXVkxVRUpxYjJkcGNHc3pjMW80UXpKcFNFdDFhV3A2ZWtKTU15OTJVbmcyYTB4bWJEUldDakkxVERoWGRHSnBjMVEzTjBwUFIzTnBjMUZVU25aclpFOW5aa3gyVm5VclpHZHVXVWxCYVZaS2FEUkJhM0paV200d2JHZEVWek5hWVdrdmJYcDRlV1FLYUU5WU4zcE5hbmxwTURab1psWmpWa2Q1Tm14V1IyczFRWE52VHpWVmVHZzJVbFJQSzFjNWNEZEZTRXd3UmxjNEwyMUpMelJHTm5SeWRVaEVOMFJZT0FwR0wwZHFPRVJLT1ROcUwzUndjRXBtTDFkQlZuWjZObEpFTjI5MVdEZGtlSGhyVEdoNVJXRmlkRFpsTDJvMloxZzRNMHN5Y0VkcU9FMUZhalpLWTFZckNrSlBkM2RtT0dFeU1tOXZlbmcxVUdOb0wzQTNXRXhRZFdGVE9YSkJaVXMwUkRKSE0xZ3dTMHhJUkhJNFUxUlVORVZ2V1RneGF6ZFNTRzFhVUVwb2NsSUtZWHAxTm10RVNsSjNZVUV4VEhJdmNuaHNNV2t3WmtWVFFWQlVWbk5pUlZJNVFXVXpaV3hzVWtWVVJWRm1NRTlDYlZkb2FTOXlUME14U2psdVdWRmhWZ3BXVFRaTVVFcHdWbkZ5ZEhZeFIxbHBja3B4ZDBJdkwxRmxjakJvVjJsb2J6UTRNRU01YWtWa2VEUjVZMVpaUlUwM1pGRkpNRU5hUjJGQmVubHRiRmRFQ2pCME1GZEhZbXg1ZEdKV0x6aFViMU14V2tjMVFVczBQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJiazlhVWpaRGQwczRVbk13VTFaMFJXbHNOVkF5ZUVJM2VuVkVTMkp3WlhWSk9GY3JSM2N2VVVaVGRFMUNhelp3Q210cGFVZDNaM2wzUWtwa1p6ZHBObFJVZDBsdVNtSlJhbGN3WW1JcmVYZDBVak5KU0Nzdlp5OWFjRTlxVDJOcGIyVmtNVTFGVGtOT1ltNWpSSG96YjNNS2IwZzNMMEozZG5nMVF6azFUblZzWm5Sb1dHSTJPRGxVZVVkNFIySjVPVzVNTVZnNWIwb3dNMjF3ZGxGeksxSkhjbE42U0dGVFdGUktNVGRrYTJNMVNBbzBMMDk0V1ZJMmRuSlJkWFkxUmpadVYzaGpOMEZ6WmpSV2FISjJla2RVZEdORVVYSnhiVmxEVGk5d1ZHMU1hR2N5YzBsc1FqTlFaVUpYUTJWS01rbG9Da1F5ZEVobmRrUlhWMGM0UkhVeFVWSm9VMGx2WmxwdVdteHRhblJ3VFRCblRGQlhTM1JIU0dsbFp5OHpRMU5NWTJVeE1GQXJUVVUzVWxWUFEweENaa3NLYVZjM2IyRkNjRU54TW5adlFYSjFWeXRLWjBJelpFTXhWR2xzUXpkeUsyRmFjMUpaWjBweGVYZDJhamRvVFRNd0wwbHNRV1VyZVRKMVFXUlNWbEJ4V0FwT1JtSjNaMEpPV2tOTVdXNXBObmgyU0hkaFprUnhhVnB0VkdVNWJHZExWSEp1TVV4WmVUUjFlRlIxZERWaVQwdEZSMnA0YlRnME1sbFJURFpVWjJSRENqbEJlV05QTWpWQldrRlBMemx1T1dSbk1YSndibUpQUkZKd2JXNDNhRkZ0YldKM2JFaENSVlpEY21WTVNsZ3JTVFEwUkdScUszWm1jMEZsWjA4dk1XOEtjRVp5U3pKdlZDOWpVRk5HYUdSc1drOURjMGM0UzJad2VXMXRVbmh5VmpWUGEwZDVVME5NVDJONWRGQkhPSFpwTmxWMWRIZFliekIxVmxKQ2JVSXdiUXBQVjNCV09EUnBTeTlvUWpNMVVVOXJSa1V5TmpneWFta3lhM2hXWnpsSk5IbGljVmswZVRoeE5tWldNVkpNT0VrMVYySkJUVWhEYmpaR1ZIcENaRWRYQ25GaGFURnRPV0pSYVhCUWJVMWxWRk0xZVZoVmJtcG9SVVJVYkZCelIxcE1aek5vUVZkS1Z6TklVRFpNVEVSMGRtTkJWbFY2TWxaT1lVazRRMEYzUlVFS1FWRkxRMEZuUlVGblMwWjFjWGh3V1dsb2VWVm1SVTR2Tmt4VGVsbFdVMlJRUW10amRsSm9URmwyV2l0RFlTdHZSalJNWTI1Q2MyNWxSRlZVWW1Oc053cEZVR2xQVG1oamJrYzVTVmhEUW10elJqSjJOMk15ZEdaWU9FTkVMMVJaYW5aR1VIcHpTemR4VDB0aFRqaDNZMWgyUjFkRlZWUm1TRzFJYTJ4WFkwTlpDazlyZDFaWk1HaHRLMFl2Y0ZsbFZXbDFhVVJUYVdSeWFVUklVRU5OUldoVlUzTlFUbXRZTTI0eE5XWnlhME1yTjJObU5tSlNhWFJKTUhkQ05TOXlXbkVLY210TWVtNUNWbWgyVWs1S2FFNXJkWEJ0UlVaRlduWTBPRlpHUlV4NmJtTlFZM0JVWlU1U1NWTXpRalZpVTJVek9FMDJjVTl1TVM5MmVWWnFhR3d3ZFFwVVYyZFBUbWxyVWtOQldHVkVhMHgzYlZKb1JFcERXWEphT1VOVFR6VnZORlV6ZGpsUGNHUkVSRlI0V20xTldFdGpkRzFMZDJReGNscGpjbmRpUmtORUNrMW5hVkZQU2xaVmFURkJUSG8ySzBsNFMwTmtVME5FTjFVMU9VeE5hazRyZG1WVlR6Qk5iUzloUVUxSWVUVk1URUZIVVVWUE1qZEJXamwyYzNSaWIwVUthVmRMTVd4SlJYbDNhbTFpWVdVck9GWlFURTl3YkVKNVRtOUlUbFZHVGxJMlJWTXZhVkphZUM5TGVFNXhXalJZY2pVdmNGWjJWVFZTTDFBMmFXbFVTUW8wVFcxT1dYQjZRelJPV0ZOelkxTlRlVmxrUnpkU2VYRjVlRk5FUnk5UFkzSklkMmgwZVd0UlkxTjRkV2x1SzNNNWVWRlNjRWRYWmtSV1pqTjZja3R3Q21sMVptUjZNamQxVFdGWksyUk5lVTFyVUdNeWIwaERNemg2WWtSWFR6QlZRMlJ0VFZZdmFFcFBXVzVNZDNFeWExa3lTMnhzTlhJeFdFTXpiV0UwV25BS2N6VjVVVmQ0V2xkVVEySldibEpzVGpkSmJFWnFXR3h2WjBabFdtTk9lWEpyU0RsNFoyeFhiRkJoTUhOT1pHNVFhbU13TUVaNlIyWTRPVWMzZFV3d0x3cEpOa054YzFsRFkyRjFNbWhLUWtGUE9VUlRkQ3R1TjAxUFJHczFhakJQU0VOelQxUlpVMlozU0RKSFdEaEZZakZWYVd0RFoyZEZRa0ZOY1daa01GRkpDbnAySzNOT1psWmpTa3hCVjFwb2RtUmxkV1ZYY1hvelJFMW1SbE4wUkZOTVRYUjJWR05rY21KNGRsVjJTVUZ5Y0ZNd00xb3dWemt2TVdGakwwUnBWWFlLWVZOV2NuaFlibVpvY205akswWXphMXBXT1RsWVNURnNaa1pzYW1JMk1UVnVSbXB1YVdwNU5VTlRkVlpEYlU1Tk5rTnJhSFJwU1VkNFZUUk9SamQzYVFwSU0ybHBWbHBRU25CV1ZHTm9RV1I0Um1keVIybG9hV3RFUVVOblZXZ3hPVWxTWmtSTVYxSlJPWGhqYVc5TlNXVjZaREJzUnpsTlVuSkNSWGxLU1RWT0NucFRTa2RhTkhSMGRIZHJXbTlaTVRWMk1WVm5TM05NZUZGSk5DdFJlSFU1VWtGWVJVNVBkbUZFYW5OaWIxUmtXV1pCVjFCMVIyNHpTR0ZyWkhwdkt6RUtWRGRaUm5ocGIyVnBOVE5VTmtSUUwyMUdLMDEzUm10cFZVaHhOVUZqU0dwTVRsSm9WekZKWjNRd2NEbHJWekF5TjA1eGIwMUZPSEpCTjA1R1ZpczBhUXB3ZDIxVFRXUm1LM3BHTm5Ca1lrMURaMmRGUWtGTldUZFlRalJFZVhNd1MweDNRMnRNUWpCd2JXMUdibEF3YWpReWFERnlZVTF5WkVkeWNXTlNVVzE0Q2sxUmVrNTRNVFV4TDBoeFQyeEhSMlZWZGs1TWFFUnJNVzlxWTNaaU9UTjROazA0Y1U5SE4zcFJRVVZhZVVocWFUZ3lUVVJ4VFUxdVlYbERWWGhLZUd3S00zUnZVa28wTVRGelIwNHpSV2cwVkRKNVdHOVpZbmd4U214WlptNXBMM0Z3T1dReFEwNTJWR1ZDVUc0NWEzcE9WalJ4VVZwa1RuVktOalZyVVRaRU5RcFVVMUZYYUc5Mk4zQmpNazF0VW1GVFpVTjZPRzl5Wm1SSWRtczBTV0pTSzB4clFWY3dTbEF4WmxobWFVSktSR1JEZERaWlFVeDZWelIwVGtsQ1JUWTVDa0pGTjBwdk5tWmpNemxOYm00ellWbzVTa2hCV0RKMlpsSnRhSFZ4ZVVvNFltSlJNSEIyTTB0QlJtZHBkSFl3T1N0cVZYbEdPVEJRTlhVM1JrTTBObGdLZUZSek1HUTVhRU5GVjBGMmJtNXZMMnhPTkdkbFZXczRWR1ZKUjBWak4wVm9ZbWNyVUdScFdHazNWVU5uWjBWQlZqZGFhMWRMTUM5bWJXODRRMWhVVkFvMVR6UjBWVmsyTURjMUwwaHFWSEk0VjJFd2JHMVZSbEY1VG5oc1ozZHdNSFpDY1d0VmJGUm1XbXh2VDFWaFoxUkJkekZIZDBVMFpuaEVWVGxFVWpjMENrbFpWRGc1ZUdkNE1HWTFaMjVGZWpoWlZ6SnpTVWh3ZFdSbldERlVOR2REVFdveVdXVTFaMFpSUW1vMU1GRXdRbE5IU21WcVprSjJhM3BqYVhWS1JXNEtOSFUxTm5OUldVSk9jbFIyWm5VNE1IbDFhV0kwTW5kU1kxVnVjVlZ0ZWtOTFpDdDRiVFZpWlVsM1l6TllhekZsU1ZOMVJuRTFlQ3RYYjBsRWRrNVlTQW93UldGeFMzRlplbUl4VVROaWNVRnNRU3MxY2l0dmQxbzRRekJhWnpabGJsWlhjMGRvVVVSdE0zcHNlRFpXTUhsR09ERjRXamhDYWs5NllWRnlRbU5CQ2psV1pWRlJNRWt6TkdSVU5sSjRkVlp1ZVhGTVYycFdVR0ZNYVd0WldUaE5RMVpGUjB4VVRVUnZWSGRDWm1GUWRsQkRSMlZwVGxkNldGYzVUalpIVkVNS1lqVkJTVUpSUzBOQlVVVkJibFJDTURJeFoyMWxTRU5oTVU5a1lVVTRXSEJ3VmswMU1qWk9OVlZrY21GUVowMVhUSFZQTnpKMlQyMDRXVUUzYkRaMk13cHBWR1ZIWTJWSldqVk9URGxDYlVOQ1VWVkdZMk0yU21ZclpXRkJNbGh2UzFKMFZYSkpja1JWVkhFcldVbDVaMlY1Y21OMFRVNWxWek14VXpkRFNFWkxDbUphVkRsNVRuWXhObmhzWVZwNFdpdFVPSHBEYjNwNGRqSXlibmx1UmpSVU1tSlZWMjFrUVRadGNWaHRSMDFLUVhSUmFrMXNPV3RaVlc5WFMwc3pXbWdLUVRVeE5YZ3llR1F6TURVeGRWWmhaVTlSUmtwMVRscFdNVzU0UVRaU1RFSmhNRGRQVlVKRU0ycFpjamREYzA1aVIyazRRazh5Tm0wck9VeHZPSHBOZVFwVFZEUnBUazl1WjBKaVQwWTVkMUZXTUV4dWR5dHRaWGRzYWxWeFRtaFVORTFQZEZkTU0yNHhOMnBxUzNNMFJHOXViVEpvZGtoRFl6bFdWMnh6ZEdGM0NqaEtWRk5HYURWVk4yTTNVMWhyUW5wblkyUlBWalprSzFsYWNqVmlPR0U0UVZGTFEwRlJRa2QzTUVRd1kxZGFRbEpXYVVjMFkyVnBTRXBKWkc1b2FISUtUMDFOVFdGTmJEaFlTVmRRTVhkdFFYWlFkWGh5TVV3NFFtTnFiekptY1VReVRYaEJaR0VyWTNwNU5sTkNlV1pQZVRsb2EyTndZVkYyTUZZMFQyWkhSQXBqZGxSdVFXOXNOWEpDTlZKM1dGQXJRMXBPVVN0WE9VUjNiRTF0ZFc1dWVVbHljemx1VUZKUk5YaERSVGxsVUUxWVNWZ3ZVM1UzSzFsTWIweDZVbEZHQ2toRVNYRXplRWR2YUZCekszTnlWbWR4ZVRWUVVtWm5SV0l6Y25OdFRERm9jM042YzBSdmJtZExRV2t4ZDFwUmR5OWtWR2wxV0ZSb1NYUlFTSEo0U1U0S1dtMTFkbVJqWTBGVWJHNUdlV2hWVFdwcFlsUjVaRTF0TkdkT2FYUnpRa0pzTnpWMlMzbGpVVGRGVjB0Wk9GZFVlVEJrT0VkU01pdHpTMnhPZDA0eFZRcGhaa1V3V0ZWek5sbHpLMGxZVFU1elVXaFRZVU5MYW10cVMwVkhVVTVEUVdSWVdVbHNiMUpqVUhKamRGUkpjVWwyVEROTFJHOUdVbnBIVVZFS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBsaGpyMzJxMDNuaDgzeG04OWcwNnk1aTV4bHNldnlkdmp1b2Nycmx3emE4Z2xmMTEzOWhuaHRvNWV5ejFweW0xeXZkNzlmZjB1MHgwMWo2ZXljcmF0c211aDA2aXpsZ3VkN2JkNTRsaXp6NWVtdHNrajdkZ2YwM3pobXRxa3pmcAo=\"\n - \ }\n ]\n }" - headers: - cache-control: - - no-cache - content-length: - - '13072' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:29 GMT + - Wed, 14 Jun 2023 17:40:03 GMT expires: - '-1' pragma: @@ -1102,8 +1106,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -1111,7 +1113,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1121,35 +1123,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/fe5edd8e-e976-4aaa-bef2-f780a43bd57f?api-version=2017-08-31 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n ],\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"name\": \"8edd5efe-76e9-aa4a-bef2-f780a43bd57f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:39:04.1581743Z\"\n }" headers: cache-control: - no-cache content-length: - - '1104' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:30 GMT + - Wed, 14 Jun 2023 17:40:34 GMT expires: - '-1' pragma: @@ -1167,74 +1157,6 @@ interactions: status: code: 200 message: OK -- request: - body: '{"properties": {"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": - 0, "osType": "Linux", "enableAutoScaling": false, "scaleDownMode": "Delete", - "type": "VirtualMachineScaleSets", "mode": "User", "upgradeSettings": {}, "availabilityZones": - ["1", "2", "3"], "enableNodePublicIP": false, "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], - "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - Content-Length: - - '477' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --cluster-name --name --node-count --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n ],\n \"enableAutoScaling\": - false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d57cd2e1-4c38-4620-ae69-d462cd3ac134?api-version=2017-08-31 - cache-control: - - no-cache - content-length: - - '1038' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:12:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1168' - status: - code: 201 - message: Created - request: body: null headers: @@ -1249,23 +1171,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d57cd2e1-4c38-4620-ae69-d462cd3ac134?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/fe5edd8e-e976-4aaa-bef2-f780a43bd57f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"e1d27cd5-384c-2046-ae69-d462cd3ac134\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:34.7640473Z\"\n }" + string: "{\n \"name\": \"8edd5efe-76e9-aa4a-bef2-f780a43bd57f\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T17:39:04.1581743Z\",\n \"\ + endTime\": \"2023-06-14T17:40:38.847616Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '169' content-type: - application/json date: - - Wed, 15 Mar 2023 10:13:04 GMT + - Wed, 14 Jun 2023 17:46:21 GMT expires: - '-1' pragma: @@ -1297,659 +1220,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d57cd2e1-4c38-4620-ae69-d462cd3ac134?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"e1d27cd5-384c-2046-ae69-d462cd3ac134\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:34.7640473Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n ],\n\ + \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"\ + provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"\ + Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:13:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d57cd2e1-4c38-4620-ae69-d462cd3ac134?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"e1d27cd5-384c-2046-ae69-d462cd3ac134\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:34.7640473Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:14:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d57cd2e1-4c38-4620-ae69-d462cd3ac134?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"e1d27cd5-384c-2046-ae69-d462cd3ac134\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:34.7640473Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:14:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d57cd2e1-4c38-4620-ae69-d462cd3ac134?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"e1d27cd5-384c-2046-ae69-d462cd3ac134\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:34.7640473Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:15:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d57cd2e1-4c38-4620-ae69-d462cd3ac134?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"e1d27cd5-384c-2046-ae69-d462cd3ac134\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:34.7640473Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:15:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d57cd2e1-4c38-4620-ae69-d462cd3ac134?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"e1d27cd5-384c-2046-ae69-d462cd3ac134\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:34.7640473Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:16:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d57cd2e1-4c38-4620-ae69-d462cd3ac134?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"e1d27cd5-384c-2046-ae69-d462cd3ac134\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:34.7640473Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:16:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d57cd2e1-4c38-4620-ae69-d462cd3ac134?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"e1d27cd5-384c-2046-ae69-d462cd3ac134\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:34.7640473Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:17:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d57cd2e1-4c38-4620-ae69-d462cd3ac134?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"e1d27cd5-384c-2046-ae69-d462cd3ac134\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:34.7640473Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:17:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d57cd2e1-4c38-4620-ae69-d462cd3ac134?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"e1d27cd5-384c-2046-ae69-d462cd3ac134\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:34.7640473Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:18:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d57cd2e1-4c38-4620-ae69-d462cd3ac134?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"e1d27cd5-384c-2046-ae69-d462cd3ac134\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:34.7640473Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:18:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d57cd2e1-4c38-4620-ae69-d462cd3ac134?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"e1d27cd5-384c-2046-ae69-d462cd3ac134\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:34.7640473Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:19:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d57cd2e1-4c38-4620-ae69-d462cd3ac134?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"e1d27cd5-384c-2046-ae69-d462cd3ac134\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:12:34.7640473Z\",\n \"endTime\": - \"2023-03-15T10:19:28.0348659Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '170' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:19:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n ],\n \"enableAutoScaling\": - false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '1039' + - '1040' content-type: - application/json date: - - Wed, 15 Mar 2023 10:19:37 GMT + - Wed, 14 Jun 2023 17:46:22 GMT expires: - '-1' pragma: @@ -1983,8 +1282,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -1992,17 +1291,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/3d7b4eb9-83a3-4b47-89b7-1f7e922e84e3?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/e44d3efe-a48d-4083-aff0-d40734813ab1?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:19:39 GMT + - Wed, 14 Jun 2023 17:46:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/3d7b4eb9-83a3-4b47-89b7-1f7e922e84e3?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/e44d3efe-a48d-4083-aff0-d40734813ab1?api-version=2017-08-31 pragma: - no-cache server: @@ -2012,7 +1311,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_availability_zones_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_availability_zones_msi.yaml old mode 100755 new mode 100644 index 7fd401e2d32..237d77cbd6c --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_availability_zones_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_availability_zones_msi.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:19:42 GMT + - Wed, 14 Jun 2023 17:46:27 GMT expires: - '-1' pragma: @@ -55,12 +55,11 @@ interactions: "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -71,69 +70,71 @@ interactions: Connection: - keep-alive Content-Length: - - '1477' + - '1769' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-wa5ke9e7.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-wa5ke9e7.portal.hcp.eastus.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"availabilityZones\": [\n - \ \"1\",\n \"2\",\n \"3\"\n ],\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_eastus\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-jkqfmvwl.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-jkqfmvwl.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n \ + \ ],\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ + \ \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ + ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n\ + \ \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ + : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/c7065f4c-61d8-4426-9d4d-05f00b56aa67?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dc2f9ac9-ad63-4830-9d61-3b608234b4fa?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3275' + - '3603' content-type: - application/json date: - - Wed, 15 Mar 2023 10:19:47 GMT + - Wed, 14 Jun 2023 17:46:32 GMT expires: - '-1' pragma: @@ -145,647 +146,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/c7065f4c-61d8-4426-9d4d-05f00b56aa67?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"4c5f06c7-d861-2644-9d4d-05f00b56aa67\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:19:47.6236451Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:20:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/c7065f4c-61d8-4426-9d4d-05f00b56aa67?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"4c5f06c7-d861-2644-9d4d-05f00b56aa67\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:19:47.6236451Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:20:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/c7065f4c-61d8-4426-9d4d-05f00b56aa67?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"4c5f06c7-d861-2644-9d4d-05f00b56aa67\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:19:47.6236451Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:21:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/c7065f4c-61d8-4426-9d4d-05f00b56aa67?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"4c5f06c7-d861-2644-9d4d-05f00b56aa67\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:19:47.6236451Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:21:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/c7065f4c-61d8-4426-9d4d-05f00b56aa67?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"4c5f06c7-d861-2644-9d4d-05f00b56aa67\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:19:47.6236451Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:22:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/c7065f4c-61d8-4426-9d4d-05f00b56aa67?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"4c5f06c7-d861-2644-9d4d-05f00b56aa67\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:19:47.6236451Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:22:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/c7065f4c-61d8-4426-9d4d-05f00b56aa67?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"4c5f06c7-d861-2644-9d4d-05f00b56aa67\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:19:47.6236451Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:23:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/c7065f4c-61d8-4426-9d4d-05f00b56aa67?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"4c5f06c7-d861-2644-9d4d-05f00b56aa67\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:19:47.6236451Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:23:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/c7065f4c-61d8-4426-9d4d-05f00b56aa67?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"4c5f06c7-d861-2644-9d4d-05f00b56aa67\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:19:47.6236451Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:24:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/c7065f4c-61d8-4426-9d4d-05f00b56aa67?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"4c5f06c7-d861-2644-9d4d-05f00b56aa67\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:19:47.6236451Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:24:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/c7065f4c-61d8-4426-9d4d-05f00b56aa67?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"4c5f06c7-d861-2644-9d4d-05f00b56aa67\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:19:47.6236451Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:25:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/c7065f4c-61d8-4426-9d4d-05f00b56aa67?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"4c5f06c7-d861-2644-9d4d-05f00b56aa67\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:19:47.6236451Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:25:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/c7065f4c-61d8-4426-9d4d-05f00b56aa67?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"4c5f06c7-d861-2644-9d4d-05f00b56aa67\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:19:47.6236451Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:26:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -801,14 +165,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/c7065f4c-61d8-4426-9d4d-05f00b56aa67?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dc2f9ac9-ad63-4830-9d61-3b608234b4fa?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"4c5f06c7-d861-2644-9d4d-05f00b56aa67\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:19:47.6236451Z\"\n }" + string: "{\n \"name\": \"c99a2fdc-63ad-3048-9d61-3b608234b4fa\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:46:33.2728631Z\"\n }" headers: cache-control: - no-cache @@ -817,7 +181,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:26:49 GMT + - Wed, 14 Jun 2023 17:46:33 GMT expires: - '-1' pragma: @@ -850,24 +214,24 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/c7065f4c-61d8-4426-9d4d-05f00b56aa67?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/dc2f9ac9-ad63-4830-9d61-3b608234b4fa?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"4c5f06c7-d861-2644-9d4d-05f00b56aa67\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:19:47.6236451Z\",\n \"endTime\": - \"2023-03-15T10:27:15.86044Z\"\n }" + string: "{\n \"name\": \"c99a2fdc-63ad-3048-9d61-3b608234b4fa\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T17:46:33.2728631Z\",\n \"\ + endTime\": \"2023-06-14T17:50:00.0063041Z\"\n }" headers: cache-control: - no-cache content-length: - - '168' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 10:27:19 GMT + - Wed, 14 Jun 2023 17:52:28 GMT expires: - '-1' pragma: @@ -900,65 +264,67 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-wa5ke9e7.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-wa5ke9e7.portal.hcp.eastus.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"availabilityZones\": [\n - \ \"1\",\n \"2\",\n \"3\"\n ],\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_eastus\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.Network/publicIPAddresses/7ebcd733-d718-44aa-914a-c7b54f9943e7\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-jkqfmvwl.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-jkqfmvwl.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n \ + \ ],\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ + \ \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ + ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n\ + \ \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ + : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.Network/publicIPAddresses/3bfa7f74-a742-497b-b2df-cfbe0b667623\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3926' + - '4254' content-type: - application/json date: - - Wed, 15 Mar 2023 10:27:20 GMT + - Wed, 14 Jun 2023 17:52:29 GMT expires: - '-1' pragma: @@ -990,65 +356,67 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-wa5ke9e7.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-wa5ke9e7.portal.hcp.eastus.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"availabilityZones\": [\n - \ \"1\",\n \"2\",\n \"3\"\n ],\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_eastus\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.Network/publicIPAddresses/7ebcd733-d718-44aa-914a-c7b54f9943e7\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-jkqfmvwl.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-jkqfmvwl.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n \ + \ ],\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ + \ \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ + ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n\ + \ \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ + : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.Network/publicIPAddresses/3bfa7f74-a742-497b-b2df-cfbe0b667623\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3926' + - '4254' content-type: - application/json date: - - Wed, 15 Mar 2023 10:27:22 GMT + - Wed, 14 Jun 2023 17:52:30 GMT expires: - '-1' pragma: @@ -1082,15 +450,15 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSVURGSFNrbExjbE5WUkV0SWVpOXZaV1ZGZURORWFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCZWsxVVZYaE5SRVYzVFZSb1lVZEJPSGxOUkZWNlRVUk5lRTVVUlhkTmFrRjRUMFp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSMENrSnVNV1ZJVGpNeFRsQnBWa1F2ZEVKdFRVYzNjWGR3ZEhrd1FqUXpTMWhSWVhOaWREUnZVV3hZYzFseFl6ZzJTR1ZzVmpScVZXMXVNVlphWTNSMlRWQUtNbUpCUjJWQllsZE9VSFZ5Tm5WQldXdEJXRmcxVlVvclNXZFZUbEJ5VUcxT1pXOXVUM0pDUVd4UGJUQk5iMnR4VTFWa1lsaFdkR0ZxZVRrMFVHaHJkUXBaVkZGRE5qSlJhVEl2VlZKWmNWRTFObWxwVFhGTVpsZHNXbVZIVDBWNU1VeFJOMnB3YVU1QlNHdDFSa1pSTkZGd1JVWlJURzVQVVVWbksyMUhiR0ZWQ21wQlNXZENabE41Tm5SMmNsWnlXalZRTUVSSlRrNWpSbUZYVDJObFVURjNaMmxwWnpablNFSkpURlpDYURNd2VtODNSMHRTZDBsc0sweHlWV0ZWYlM4S2RXSTROa1l5UWxWS01pdFRNV2hFVTA5clkwcDRWbE0zU25ZemMyMUdOblZ3ZEhOb0t6WXliVVpzT1hOVVlscG5NRFZRYVRWcVJFZ3dRalExVm5OaVFncGlablpyYzBsQlZHNUJkbVpEZURSb2VFbHJNVTByYTBOclNVVjRkVk55YjBwRmQyaERUR3RvVDFGdFZtcG1aVTF0TW1VdmNXeHRXa2RaYms4MFFTczFDa2hpT0RaalpYQjFVbFZpU3pscVFuSnpjMDFZUldKUUszRkVNbk5SWlV0Nk5FdFZjVlJxTVRjeE1FOXNSMWRuVVVZNVpsZExZVXR5Tms1SU5WbEpTSEVLTVU5WVowcEZOemxOVjI0Mk0wdzFOSFZMVHpoaFpGRnNjVzlTU25oV1pHNDFVRmxGUW5KUk1qY3pVa1pzVXpSWVFrRnZXazFGVWtvMlRrdDJTM1p6YkFwdGJrWlFTWEpuV2tSUFpHOVVMMHRwUWtGQmVtWlJhMnhQVTJvMlNDdFVhR0pPVFRBek5saFdWMk51YW1wQlRGTlJiRWhXVG1aVVRrOW9VMlpSTUhaVUNtcDVjVFJ0WnpScWNrWllVamN6TlhodWNubERNVXA0TlVvemJXTXdOV2xwTWxKU2VETm9UbkJtVFhCcFdtazFSV042U0VWeWRVeFFla1ZtTUhWYWRUY0tMMnB3TTNCWllVdG9hRGRFTjFWaGQxZ3lORmRUWlhOTFpYSmliVTFITDNoVmNYcFlOM28wTmxSM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZVM1VWWmpUR3Q1UWxad0sxa3ZSVE41Q2pkUFMyMW5PR2hXT1c1bmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGTmVVUlpWVU0xVVRsRGRUWlRiME15ZGk5VlVDOURlQzlRVFdRS01ra3JSRlpZTVVGdlNVNWFjbkkyV1dWUWMzbFNSM0ZJT1ZWMFZIWnlhazVWVDBkSWExcHhNM2t6YWpCdk9FZHNURmRJVTBaWUswUlBVbGt2U0M5aFVRcEpVWGRRTTFBMFZWTnFaVVpJYmtsdk1rZ3JOR2t2ZGtGWFVIWnVZMjlaY1ZCelpHTTJiVmcwU0VFMlJtUlBSRE5LUjJWTWRuUTJZV2c1VDNGRU9IazFDa2hCZG1OSGNuQk9SVGRQY1RCTWRITnBZa281Y3pCTFNEY3dZWEpIVWs4d01HRnZaM2RrTlRSbk5VUnVUa3B5V0ZCNFpuY3lRMHQ1WTJndmR6VkxUMVVLZHpOQ01qWkRXVTVSYjBkVFlVdEZXbFZYY21adk5YTmthRkZSVFVKUVNEVlpUaXRwY2t0blJIRTNTRU5JVVdKblNISnFZMEl5TkdoelVUaHBiRzQxUWdvdlZtbGhXa0poYWxCMlZreElOamhKYmtaRWF6TktUelpRTnpaMGVYWjBSVTF4Wm1jNU5uZDRTR0pyYUU1a1puaHlPRXBQT1VWdVNXOHllVzFKZDNwS0NpdFNhbkZSTm5WT2REWnhPRWcwT1dsT1VVdDRSRFJ0Y25kbVdreFliVXhWTXk5NU1FOHhjVXB3WjB0MVpEVTBOVEJXT0U5T1NHOUlRbXcwTUVFNGFYWUtXREpoU1Rsc1VuTnZSR1JqTkZWd1ZuYzFWWFpxU0ZSME16RkhibXB6TTFweVNuUlFTRTlCVFdkcVNFeG9SbWMyWkhobFNtWm9iR1ZGV2s1VFdXaERVQXBtV1VRNU1WUmxRa3hpVFRKNksyOXNTMGR0WkVkWFNuVXdWVGh6UkdSQ1JFUnZaWEV2V2pSRmFqVnBhRkJ5YmxOdmIyWllPRTQxY21oRWFGTTVUakJKQ21oaVlXbHVlbmRuVUdoMWJtY3hjSGhQYmt0QldVcENWeTlUZURGVVZuRndZVkowU25CUFpqUXJkMFJOVDBGa1VGUjVkVmhGVW1KcGVEaElkV1kxVTFFS1MwSjNVRlZCV2tSdlpXcG1iRlIxWTNZM1ZrNVNRbFJLWlhSUFptVjRTVFZNVkcxYU1IVnNVWEp5YWsxU01IZFhXV3hTTldseE5ESlhiVlZrY2xaTFFRcHJObFZJWTA1emNsSXpiM1ppUW5wVUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3gzbG5tNmgtd2E1a2U5ZTcuaGNwLmVhc3R1cy5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHE3bXNvZQpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHE3bXNvZQogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdG4zenVlN2J1Y2NfY2xpYWtzdGVzdHE3bXNvZQogIG5hbWU6IGNsaWFrc3Rlc3RxN21zb2UKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0cTdtc29lCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdG4zenVlN2J1Y2NfY2xpYWtzdGVzdHE3bXNvZQogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlJGVmlhek4wYjNGVmVraENOa1pOUzFGUU1uUlFWRUZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQmVrMVVWWGhOUkVWM1RWUm9ZVVozTUhsT1ZFRjZUVlJWZUUxRVNYZE5WR2hoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVUkJSbTVCTDNseWFtSXdRMVoyVDNsRFVVZHZSRXNLTDB0Wk9IWnNZa3hOV1doWVRsbzVSa3hzUlhWaFdrdHRNV2Q2UTNoMVYyeGFNV2c0WjA0dlpVdzBNalZETkZsc1FXeHpORTFCUzI1c01IVnFhREpsVVFwcU0yaEpOMjluVVdZNFdGQkRSRGtyVlVWVGVERktiMDh6VFhCRE4wWkNXakIwZWpKWk16ZFpOVzFPZEdsSU9UQm5UWFpZVTNaWk1tcGtkRzVQWVhsekNtSnNUazl5Y1hSalIxUkNRbTF3YlVkdk9ISjBVVmRvWm1rdmNHVjZkVVpTV1ZGTFlWSm9kRWxaY0VOSmNYSmphbVp1VEM5Vk1GcHVNa2RIY2xwR1JqRUtaR3QyYjNKUWFHNW9jblJMY2t4aVVVcDZlbGwxUVVkbVYwZDFNSG8wUWpFMldURTVUM2xLYXpaYVNraHJObmR4WVdZeFlYWXlLMjFoWTJvMGVVcHhNUW96Ym1WaVFqVTRhR3BxYmxGS2RtUklPVlZrY213eE4wWXlTRkprZGtGbE5HNWFjR2xNV25kdmRXdHViMlJUY1M5aVVqVlpia1J4ZGtNNVVFUkNUV0YwQ2s1REwweFBUR0pTZEhFM2JHaFFhWEU0WmsxaU5qTjZUVWt2VlU4elUxTXZlRVYxZEhwSlZsVjNlbWhyZGtrNVMzVldha3BxU1c1Rk0zZERSbEIzWlhvS2NtTnNTVTQxY2trM04yZGFWR1IyT1dkeVkzUm9ZbXR1TVZSNU5EaDVWbTVSU0Vsck0wSXdURmgwZUZwUllrdHlhM056Tm5wWFRpdEllbEZNV2tneVZncGtiR1l3TmxvNGEyeHpNVEJFZGlzM2VHWTVkbVJ5UkZJeVNYQjBjelpDVkc1VWFtazJSSFkzZFdNNFRXbHFaRWxMVjBSTmIwTnlhVGs1TWpsWmVVNTVDbE5ZVEV0blJXOUxkQzlZU3lzcmNVcG9aMHBVZFVsdk0xcG5OMFJRYUM5NmFpOWlWSGN4TVhWRFlXcENWMWRhY1haWmJHVkhTbWN5ZVRsREsweHFUVklLTkhsT1ZYSk5ibFV4T1dkWmJVMHZhbEphYmtNNFRFODJWM2xqWldNeWRVTlNaVEF6TTNReE1USlljalEyZERaWWFHRTFjQ3RaZFZrM1JUaFFTM0k0T1FwV1dHaFhVWFZZYUVWNE16Y3dZVFJIU3psS00wTjNTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsUjBRbFozZFZSSlJsY0tialZxT0ZSbVRITTBjV0ZFZVVaWU1tVkVRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRllNMEp2VG10eVYxZEJLekZYVTJGTlFVdHBUQXBpVUhNeWVWcGhhV3BwUkhSSGEycHRRV2RqZFdSR1dDOHljREV6UVVKcWJtbDRNazVGTWxWRVF6aGhkMVIwVEdGYWFFRTRXWEp1U0V4bk5FOHplaXMwQ2twVmMwZ3habGxEYldkU2J6VnNTM051VjNCV1QxbFJWRTlTTXpOcmVUSTNTbUZyYlhVM1JrWlBjRFFyTVdwM2FHSlhkSFZNV1ROV2NtVjBjVk5TUkVNS1QyTlNlV3MwVURGdWFtOUlWV2d2YWpBeE5WSXpUblIyY0VjeVUwSnRZemxJZVV4UGFGVXlhMDlKTjBGNU1WUmhUMU5qT0VSbU4wbE9SekJFTDB0b2NncERXbHBFVG1RM2JqTkZiSHBWUlN0a0t6QnFUM0Z4UjBkS0x6SlJhRTVaZDJKQk9XUlRUa04yT0doMVp6aHpTemRwWlhRNU1rTkdhMDVVTlRKdGVGRlJDamRIVmxWa00wazVWRnBzVldOSFlXcFZiSGhJUm5BNVpreERjVlY2YzNSU2FrZElZV0pKWkV4V1oyczVTSGN6Y2s1c2NscDBZbGR6VldSUWVWRlhkbmdLU0hoSlEwNXljak50TDJoa1RIQkhObUZMWXpaSFNWSm5kSFZ6UlVOMlVFdFBWVmd5ZDNNNVowTmpRWFJzZWs4ckszVjJWVFZVWVRnd1FVWnJaVk5OYXdvM1l5OVdPV0ZhU2xSR1JqUklZV3QyVGpkaldsVldaMEl2WjNSRWNHMDJjM1ZxVkhaUU1VUk1ZVlZpYW5GUFdWcGFlRUZJYXpsWGFtaENORlZLYVRSMUNteERNSFo0WTFJeGVXazNTR3gwUXpGaWFDdDJabkJZT0hjck1rNXhiemN5VkRWRFJUWkNiR1psUzBzNWFucElWRmw1TUVZMVowazFkVzVYVDJsQ2JDc0tTRVpRWkdnMVp6aDBTbkJEVVV0SWJFWk9WR1ZhYWxONmRIRnFiakl3YUdjd1ZEZGlla2xLTUc1T2RsQlVZbFkzTDBwV1pWVTFSVFpyY2t0UWRFbHNVQXB6TTNodGJGZGtNV0pKWm5WSE1qTm9kVkJ3T1ZCNVR5OVVOM2xMTjBFeFFVYzRNM1pwUW5oTlJWVTFUVU42TjFVNGVGQkhheXRVY0hNdk4wYzVja1ZaQ21kNlR6WTVOM1YzVWtZNWMzWnhNRlJ5SzJ3d09XcFJQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1NuZEpRa0ZCUzBOQlowVkJkMEphZDFBNGNUUXlPVUZzWW5weloydENjVUY1ZG5sdFVFdzFWM2w2UjBsV2VsZG1VbE0xVWt4dGJWTndkRmxOQ25kellteHdWMlJaWmtsRVpqTnBLMDUxVVhWSFNsRktZazlFUVVOd05XUk1ielJrYm10Sk9UUlRUelpKUlVndlJucDNaeTltYkVKRmMyUlRZVVIwZWtzS1VYVjRVVmRrVEdNNWJVNHJNazlhYW1KWmFDOWtTVVJNTVRCeU1rNXZNMkphZW0xemNrYzFWRlJ4Tm5KWVFtdDNVVnB4V21oeFVFczNWVVp2V0RSMk5ncFljemRvVlZkRlEyMXJXV0pUUjB0UmFVdHhNMGt6Tlhrdk1VNUhXamxvYUhFeVVsSmtXRnBNTmt0Nk5GbzBZVGRUY1hreU1FTmpPREpNWjBKdU1XaHlDblJOSzBGa1pXMU9abFJ6YVZwUGJWTlNOVTl6UzIxdU9WZHlPWFp3Ylc1SkswMXBZWFJrTlROdGQyVm1TVmswTlRCRFlqTlNMMVpJWVRWa1pYaGthREFLV0dKM1NIVktNbUZaYVRKalMweHdTalpJVlhGMk1qQmxWMHAzTm5KM2RsUjNkMVJIY2xSUmRubDZhVEl3WW1GMU5WbFVOSEYyU0hwSEszUTRla05RTVFwRWREQnJkamhTVEhKamVVWldUVTAwV2t4NVVGTnliRmw1V1hsS2VFNDRRV2hVT0Voek5qTktVMFJsWVhsUEt6UkhWVE5pTDFsTE0weFpWelZLT1ZVNENuVlFUV3hhTUVKNVNrNTNaRU14TjJOWFZVZDVjVFZNVEU5ek1XcG1hRGd3UXpKU09XeFlXbGc1VDIxbVNrcGlUbVJCTnk5MU9GZ3ZZak5oZHpCa2FVc0tZbUpQWjFVMU1EUTBkV2MzS3pkdVVFUkpiek5UUTJ4bmVrdEJjVFIyWm1SMlYwMXFZMnRzZVhsdlFrdERjbVl4ZVhaMmNXbFpXVU5WTjJsTFRqSlpUd3AzZWpSbU9EUXZNakE0VG1SaVoyMXZkMVpzYldGeU1rcFlhR2xaVG5OMlVYWnBOSHBGWlUxcVZrdDZTakZPWmxsSFNtcFFOREJYV25kMlEzcDFiSE51Q2todVRuSm5hMWgwVGprM1pHUmtiRFlyVDNKbGJEUlhkV0ZtYlV4dFQzaFFSSGx4TDFCV1ZqUldhMHhzTkZKTlpDczVSM1ZDYVhaVFpIZHpRMEYzUlVFS1FWRkxRMEZuUVRsU1EzSnFVR1ExSzFKalNtRXlkVzlGTjBZNFpETjZNa3RpUlRnd2JXZFVXbWhCU0dKNEt6QmxkRFFyVGpWUlNFYzRhbVF5TjFOS09Bb3JORWh5TVZKRlNEY3hVVWMwT1hsRFlrWlhPR0pJV1RCdU1VSTFMMFJwY1ZWdFNsWnRUblJZYzBaTVNVVkJVVXBGUkRGbE9XazRVVGN4ZVd4bFlYSXJDbUo2WldKTFRXbFlka0Y1YVRsU01rOHJjSEpVVW1GWGQwa3JXV1ZVVlZsSE9UVkZlVmM1Y0ZoWmJEaE1XVnA1Y3pGamNtSm9jMDFDYTBWNWRtSjRhWE1LWVdsWWVtcFlValpGY2tVNVFXVjZaRFJSY1RSMmJuaFJaRlIyUTBWcmQyUXhNbGRZV2pWTEwwODFNVWhuVDNoWlZqQkJNVTlpWlVsM1VrcENRMXBCVndwWVJrVmFSRXRMWVdJNVFtVTJkRlpxU2pKSlQwZDJiRGt5UlZnMFRXY3ZSMEU0Vms5d05WWnhMMkpMY2xsbFJUUjNUblkyYTBwS01DOTVPR0pTUkVackNteFNWMVZ4S3pRNE1WaHZaaXRyWWs5cWJUTjBVRkZHTmpFd1FXbHRjMmx3WkVOb0szUjRVbEZLYTFBd05tWTVLMGhyWjNaS2JqRnhLMHBSZDBkR1ozTUtXSFpEYUVvMWMxSTFZaTlWUkc5TE0yRmFaSFV2VkhabWEybHRjMmxwVVdKdk0zUjBTREJXV0ZveFpYRnNLMmR4WW1veVlsUkpUMnAyTW1sSlMzUTJaQXBZUlcxRVV6ZE1lbkZHTUU5WFRsaGlkMm94VkdrNVVFOWxPWHB5UzI5MGQyZHZkWGxKZEhobGEzbHpXSFV4VTNSVFJGcFhOblZ0VDJveGNWZHljRVZ0Q21FeFdUUXJUaTlIUTBKNWVtVTJkM05yYmxoV2JVTk5lVk5wTWtGaVJrTm1OelpTZW1wdGVtMW9WWFo2TTBsbGFFWmhkRGxxVTJaTVkzSllkRk5PVTNrS1dXZHZPVEZhYlRVd1UwWkpRM2g0ZVdGdmFtWlZURXhTYVdSTWVFVlFVbXgyY0dsRlprYzJhSFZ5TW5WeVF6ZENVME5yZVRGYVFpdDBkRUZZWkVSTWRRcFdNMVV3VDJKTGJGQkdTbnBqTTFKMUsyaG1WVkZ1ZVRWdU5XczFSekJLT1RSaGJEYzJZbTFZVjNSSWR6Rk1UMWh0VVV0RFFWRkZRVEZMT0VwU2N6QllDa2hvVDNkNlZrbFVOa1pHT0RaWFpUZFlVelEzZDI1eVNGWkRPWEJyYlhCMVRXdGpSVmRhVlRncmFqSm1hR1UwWVdSa2QyRjVTMFJOTURST2Mzb3ZVV01LZWpoMmNFbHNTRU0wYVU1VlRtODRiekphYlhoSlltUmlRMWgzVjNvdlRYRnhVMWxTTkdsV09HeEdOazgyY0ZOMVRtMWpNRFJLZUhGNWEzTnlZVU5OTlFwWmMxWktOazE2WlhKc1VtMXlhRVZVWVRsaVYyZDZXSFJ6YURBeVUzaE9TalZyVGtFelFYSlZhREJxVldoVk4zZHlOR2s0VUhGQmFYWm9ZMGxLWmxoeENtRjVWbWMxZFdKdVF5dElhMUpCU0dkYWFpOXlRekpqUjFrclRFZ3lNbXcwTDBGU1pYZEVhVmxZWjFaek1qVnpha0o1YzNBMVVFSXhiRFJuY1M5WWVVVUtUV3h6TmtVeGVWRmpLemwwYlVobmJVcE1OREJsTW1FNE0waHBTakZ4UzNseWNuVXZkbVJZUTA5dU1pOVdZVXBzYUd4aVZ6ZExObHBEVUhWV04xUllVd3BhUkhKeFpVWnBZVzVqUlhsNGQwdERRVkZGUVRWNlYwOTZZa3cxVlZsWmNIQnlXVE5ETjNWaWIxaFpkRFV5YUROMlkwZEVXbWN4YW5wSGFVWmpZbXAyQ20xNFZqTkNOM1psTnpOaFNuRnZjMDFoYzBORldGUnFPRGxHTlhKaVYwVnRlRXR1TWxCeVltWkVSa2MwUW1GbVlWTklSalJTZUdaaGJWVXZNV1paTlhBS1ExWnJXblJpV1ZaNmVteExXU3RSVWtkTmJGWmFXRm8yWmxCQldrZ3pUbVYwVUhGVU1EQXZNVTFLVkdoRWJVZFlVVVk0Ym5CM2NVVk1ha1ptZG5SaWJBcFRiRTlzY25GdVRqQm5TU3RDVFZOR1ZsTnJia2xoUlUxNGJEUkpSblJNVkRWUFluQXhZVE0yY2xGMWRua3lPVEZDZUVjNUsxcDJSVUZqVFZnd2VHZHdDalJzUlhkaFpFcElkbFZZV2pJeWVUSnRNVmREVldoU1FYbEhVMkp1TlhWV1RreGhRbVZFZEhoYVJGSllWRWhPVTBSWU1USmFlRnBsT1dWQ01ETXpSVVFLZERoM1oyMW9iRzVrV0V0NGNraHVaR3htYm01Rk0xVjFWRGRJUnpoNGRuVkRVMHh4TlROUlZtNVJTME5CVVVKVVlUQm1MMHhwWmpSRmR6aFJjVlJZU0FwMFJtRkVSV0l5Y1dkYWVrMHpaVEZoZEhKSU5IcExabTFNYm1Gc1ZVZFRNMWhtTkRSM1RHY3JURUpQVWxJMGFYWkhWMmhRWkVaaWMzQm1WVTlGWmxkWUNsUjJXVlExUkdwSmFVbERlVlZqUm5sVFpYRkZjVGhMTm5vMFZFdEtOWFpwWTJWbmNWZERRM2RyTDBKdlprNUdhVUZRVUVsb04wSldZbW8xWTBGcFkwSUtVak5rZVhCS00zbGxWRkozUTBoSWRtNDBaVkpGVFVzeVpuZENjMnBuTjI0NVVXWjFUbHBWZG5SRWFuQmpNVkJPVEZOc01FRnBNWE13ZURsaU1GbHphZ296VUdvd1RqWjNNVlJ5U3pWTFZFdFlZMUJoYTNRMGVrNW9SVlpLY21GclRtbzJSWFo2V0hsRGNtdHdhbFZ1UlRncmVIRndhUzlKY0RocFFXOVJaa1ZwQ213dlJuSnJVWGxqT0hOSFVTdFRNM2RhTlV4bmVtSlhOVEZWWjFOb1JXOUlUMUpWV0RKSVpISndjRzV6UVZaMGFUWTFURlpzU0hWME9XNUlTM1pETkVFS00wTnpNMEZ2U1VKQlJrOVpSWEZUWldzdlVEaDZUM2huY25wQ1NIbFlTWE5PTVdGWFpEaDVZM1ppVWxaSVVVMVlkWG9yZEhaTWRsZHRLekp2TmtkaGRBbzVaMGsyVDJWblV6WlJhVWhvVkZkYVQyTkJXRkY0ZDFJd01URkVXWGQxYVU1RFYyWldXbGRvY1ZCdlZGUnpOMnhyVURKMlZYQjVNVzlWTUVsdk5GRkVDakEzYVdkRFpYQnlVMHgyYUdoV1NFMTNWbWxWY25WYVExQjBXa1UzTkVvNFNWazNRV3BDTkZSRFZsRnJkMnAxZEZWRkwwRm9URUpHTkM4MWRHMUhVRmtLZFdKSGFHMUJPVGxVU1N0c1IyVm9VM05TZDBoYUswMHpPV014ZWtaT1NXbERjRXBGU0hkNlMxSnRVMDFCSzJOaVRWYzNOa3R3UzFGQ2FrRk5abXBIV2dwdmNsaHdOMWN2YlVRM1RUZGlWbnBIZFRGdFQzUXZhVk5FSzJRemJtNTVOMU1yUkhoU1VGcHdjVlJwUjFwNGEwRTJWME56UkUxelZVODJiR0pxUVU1NkNub3paSEp5Uld0QlZFdE1SbGRHVVhGRk5rNXpUWEpyVFRka09UTkphVlZEWjJkRlFVbHBMMU0zVUhNNFpHcEZRa0V2VlRKNWVUVlpTR2g2TDFWR1ZIb0tURTFLUldOVWEwODRXRXR3ZWxRcmVsZDVlbXM0UjJSMlQwSkRaSFJxVmt4T1NsUkZhVlptUmxodWEydFRZek5ZYVc5bGVHUnlRM0JSWjJocFYwNVdjUXBQTjFNNU5HUndiazgxUlVKbFZYcFVSRlIyVm1SNFUzaEJkVGhwWlRJeVpERmxOR2xNUld0eWJpdFpabUpFWWxKbU5sWTVTSEl5UVhaNWNrOWhkRkZLQ2xob09HZDBTV3h6ZEZZclZUQklTVzlxWWtOT1lWUjZPVmw0T0ZwMFNYQklWemRxVm1keWFqVmxURWxpWmpKbFVteHNXamczUkRFNFdrOXdaa052Vkc0S1VsbDZZMnRtVWxsWFkwZGhUbk5pT1ZWNk5razVhR1pOTXpONmEyNXBWamh5ZDBSa1l6bEhSelZ5V2twUFZTOXpWVlZRWmswek9HNVdLellyUWs1YU1RcFJRV3gwWlhndk5XeElObVJ1TW5weUx5dENURFZ1TW1wMWJ6RnFNbEZVUlc5eFZXNU5RV1p5YkRkcE1GQkZZbnBGU21sWFRHeFpaMGxuUFQwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiA0MjhrdXkzaWJ0NWlsYnVjYTJpdTJlM295aHJnbHdud2Uxa2wybHR0anVwemtrcXBmbXM4NXJ3ZDd0MW1wY2l1cHZodXg3MnUyZHhvNzZ5cXFobXBzcGRncnp6bWFuaDRibXV0OG9wY2VnNW9ha2dwaTRvNHl3OW85ZmtpaHg4ZAo=\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUlhwUlVrUnRZa0pPYlRGdFRXODJaMjVxTXpoVWVrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYaE9lazB6VFdwU1lVZEJPSGxOUkZWNlRVUlplRTVFUlROT1JHTjVUa1p2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOaUNqSm9UVkJqVG5sdmVXRTRTbkowZFVSRlVHaFdNbFZNZDA0eGFXVnBOSFJtVUdkUVQxTmhRazFNVlZsTGFFbFdUMjFGWWpObE5GcHRWR2hUYzFKbFNIQUtjblpyV0hSVlYxTlRMMnBvTlRoMVJtUkpNMXBoVUZKTE9YbDRRakJIWmxRMlZuSlVZV2xoVURWcmJFUXJkM1JNVTBOUk9HOXBPRTFIVG10VFptWk9Ld3BDZG1KaGVteGtjamxJVWtGM1NWQm5VbVJ6S3paNVJqZE9UVE0wSzJaTVpFOW1hMnhQUTFWbk5HY3JlVTFKZFRSb2JGa3ZkbXBFYVhGaVJtaERlbnBwQ2xOaWIyZzVOME0xYmpkUGRuQlZObWRJV1RscE1Va3liME5tUkRSNmRrdHpTakpMYVhKd1pHSjRPWGxWY0VaWVowZHVTRzU2UjBNcmRHeFdVVnBrY0ZZS1ZVSXdTbWx4ZFVzcmFqVldieTloTW10U2VsSmFVVU5tTjJObldWSk1MeTl6Y0RkSVkxcHFXWFk1VUVoUUswdzBTMUpFUldWdFpsQkxXa1ExY3pacWNBcFBhbVYyYmxwcFpteDVjR3hWZG5wd0wwOUtZV0pCZVZkUGNGSlhSelJEUjNoM1UzWkJOSGRRUm5sSFYwNXpiQ3REUzNsa1JYcEVMMFk0ZG0xR0szUjRDamMzU1hsRlNIVlROUzgxTVhOb2EyUlRSbXA2UW5oc1VpOTFSbTlTYTJKT1dqY3ZNV3hRZW5RMlFqa3JORzlWZDJkSVowTk5kbWxxTW5aM1dVaGpZVzRLZEVkSFJTOHZOek5EUVZZdlZIaHROMFZIUkd0Vk0wMTFZa0paVWxBMlpEVkliak5oTTB0NFIxRXlUbWRGUjNGSWQxQjJLMlphZW1GbVMxZENTakUzUWdwS09XeFBiVnB2ZVZNMlJqQkVVVEJNWXpWSlZVNHljRnBoTUdGdGNsWkVWeTlWUVZBelMzSmFUMEpvU1U0NUwxTkdRaXRVTlRWWU16Vm9XVXcwYlVWNkNrdFplVFp0VTJkc1JEZDRTV2xyTlhGWE0yTkJkMHRyZUVST1NFdERVMk5rVjBvd2JuTnpTVFl5ZURGNlRXUlFORUpRYzJ0M1JVTk1TVGxETDNoc1ZHSUtiVUZvTDBnMWQzQjNMM2MwT0Uxd1kzSlhkRnBOVjNKT1RHbERLM1ZUTDBGWVNURlNVemg1UjB0UlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWS2NDc3ZkREkzTWtOelFuSlFSazF2Q2s5RlRFczFjRXRET0RoUmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGR2EzZFdiekZCTlVKbVNHc3dPRFl5YzFWbWNXVlNaSFoyWkV3S09FMUJWMWRzYm1SWmMxRk5VVEpRWmtnMlFtTldWMjlrWWtkUWMwSkJhSEZsUldOdWFqRlJXVWRLWkhwYVNuUXZkMjFZYlZOT2NVaEpTMEptSzFCVVJRcFRSRFZ3UTJkVVZIWkZZM3BXWTFNelZHZ3lXbkJMYmpCV2VVUllhM1ZhTVdVemVWcEdTUzlrWVhwNU4wUkVWRTl2Wm1saU0wdzBVVGx5VEhKeU1FNTNDbmR3UXk4eE5HWklOSGx5THpWbFIzcFlWbkpSYkM5M2NucHhTblk0U3pSS2NrdzJRVTB5YVhWd1lqQklhVkJyTTFGM1kzQmFRbUZuTWxGcGNFOWpWRGdLT1dKMlowYzVXQzlXWmtrck5qaGhTWHBHTW5GM05WRXlSa2R2TVhab01XeFdRM3BOWTFSRWJIZEJORGR6VWtSSU9HWXZhak5UTW5VeGQwRktNalJJYkFwR2NWaFpiekZ6T0hOb1dsUndTbXhrUTJ0TGVIWm9XSEExS3pKaFowMTVjeTlOSzJoVmJHNXhSMDFwVTB0R2VUTkhha3hYU21oUFIwaGpNM1pLZUdVMkNtWnJZV0UxUjIxRWVuZDJiVkozYXpkUk1tdFBhazVJTkdOclZXOU9NRTgyTTNCRVVIRlVTRTFWV0N0SWVXeExRMVpqV1VkUVJ6SkpiMmxMYzNWTUt5c0tORmNyYUhscWRDOHdaVmxFT1ZWTFZqUTBRa05zTWpWWWFHcE5OMkl5ZFhCaFlWRnhlbFJWUjNaQmMzUndRbnB0TDA0NVJGbDNiRU5tTDFWc2IzRXZjZ3AwZUZWSWJWRlNhMEpGV2xkeVJtTm9lbnBqZEVOUVlVbHhaVnByTlN0NWJFSlBWVXBpTUZaWVUyVkNhMlkwTkVvNWVtaGpTbU5QTUVkb2EwOTFTalZtQ2twUldETnZXSEZMVmxSNk1HaEJOa2N4YzBrd1pFMDJObnBhZDJ4cFVVTjNaRkJzYTBSb0swbGxkRGRNVXpacVprWlBSMm8xVUVSVWNVTktORFZpVFdVS2MydFhOMngxZWxabU9FaE5kR3RPTld4U1lVWndTa3BUU0dGVWVsSndTbXhUZWxwWE1XVkRPRXRCTVdVeGRUUkVZVVpZVW1veFUweGlka2t4VjBzelZ3cEpiMlp6TTNSRFN6QlpkMDFKZEVkR0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2RuczM2c29lbHctamtxZm12d2wuaGNwLmVhc3R1cy5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHJ1cnRtMgpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHJ1cnRtMgogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGtyaDRqbzV1a3lfY2xpYWtzdGVzdHJ1cnRtMgogIG5hbWU6IGNsaWFrc3Rlc3RydXJ0bTIKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0cnVydG0yCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGtyaDRqbzV1a3lfY2xpYWtzdGVzdHJ1cnRtMgogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVMU1WRVZoU0ZWMFpuZDBWMFJGUzNONldGbFpRMnQzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFSVEJOVkdONlRucEpNRmRvWTA1TmFsVjNUbXBGTUUxVVl6Qk9la2t3VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJkVXRHWjNwcllWTjBRVlV6UlU1NGMxSXpWVWtLTmk5elpXeFVjblJMTmtOb1YxWm5NR1J0VEhNNU5EQXhkMlUyV0RWeFowaHhNMWQ0T1VKU1ZHNDFjR01yVkhsSFVFeHFUMXBhVmtscmJXSkhkVzlRYndwNFNrOHZXazV1SzJFcllUWnNPV1pTY0c1YUwwNVZSMjlqZW1zelUwcDJUVlpCVjBjeE9FdHhkVmR4ZHpZMFNtRlpOVVJFYVZSdmRUbFNjVUpSWjJ4MkNtMTJjbTVSUkVaQ1RITXJWelZzVFRsQ2FFdzJjM0ZFVTFGYVVIY3ZaV2c0Ylc5dGFFOUROMDAwTnpkWGJVMURTRFIwTmxobmRFSndTQzgyUmpKeWEyb0tSbGczT1dSMFNuRmxObXB0V0RsUVJVUmhVMk51Y1ZZd1dIcDBaRGhoWjBGTVdqVm5Va3gwWTFJcmNsZzFhVFI0UTJ3NVVqZzRaa2xrY0ZaSVJHMTBiQW95Umk5SVlrZHBORzVYU0RKTmRVWXljMVpFYVZkYWQzVnRaakZXTW5SSlFuUkhZVlkzSzI1ak5YQXJjVVo1U0V4dk9GVkhVbTFJT0VOck5YZFBOMFZzQ2xsV05EQlZOMFpDV21kUVFtNHhWMGROTldsU2NreEdUbGhwUTA5SmQyOUZNRkJhZUROU1oySkJiSGtyY0VOWVFubHNlVUpTUkVWVk9WZFZZM1pqYW1JS2FHaHBSMFV6YVhNdmJ6aEVOMlJuU0VVek5WRmhMM1phUlhGVFNYcEpSVmd2TnpCTU4xaHpjbEpYTVdwUVJGcEJZbWswYW5wSlVrNXZNVE5MVjJKamRncFpaV3BvYjA5YWFuVjVOWGxWVm1oV1lrcDVUSGxGYm5reU9UaERiVzVMUWpabmFXMDNVeTkzT0dKQmFWbG1SSFpNZVhWNGJFdEdORGt2UmtneGFIcDRDa051V0hWMmJ6ZFFjRGRDZWpGbGNURTRUWEprUzJ4NFdsUXJSekF5U3paVlZrRmhUbVJZV0hFNWQzQnlRblpaYzI5WmFHZDFXazFMTlVGR0szaFZabWtLV21sVlFqQTVhV2M1ZWtwNmJsQklSV1paYms5VmFXWldVM2htYm5FeVFtSjZZVGh1VDNveFFtUXZPVk00U0ZSdEwwUXlRbXh3VWt0cVdFOXFNR3d4VGdwSVFYUXZRVUZCVWxselZuWkJNeTl5VUZKeFIydHJjME5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZTbkFyTDNReU56SUtRM05DY2xCR1RXOVBSVXhMTlhCTFF6ZzRVWGRFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJSRmRhTmxaT1RrRlpLMnhoZDJGVFdXOHhVd3BQU1U4NWVXUXJjakpYVFc1alR6WlBkSGRDVTNrdmVqSkZObTlvVFdSd1ExQldWRzVRVmpVd1VGcG1lbGc1WmtKM1IwSlpTV1YzU205WmFHNU1hMk4xQ21OVWNqVmtZVGxYUTNCTVoxUkxRU3QxYTNOd2RFZzRObVZPTHprM1NFTjVNMFJ4YjNWcmNtNVBTRkUwWTJsYVpWVkhRMlY1U0dSeWRDOUlRVVZMVTBjS1VqUlZlRk5tVGxWT2JTdFpaVGd2UW5CWU1HWlJhalZYYzI5eVJYWmtabWhxVTNoT1ZVWldia1pvYjBWUE1qbENlalZqVUVGV1FsQk9Sa3hpYWtOck9BcG5kalZpTTNoaFVqQllOWEZxZEVoM01qZEhOVUpuZGlzclJtMUtSbFJKUkU5Uk1ITlpkbFYxVjJKaU5raHpOSHBQTHpGb1dsTnJiekZTVjFkdWNHOVFDa3BFUWsxbmQyRnlaVmhqZEdGamRVeGhTRGsyT1hwMFZuUm9OV1VyVUdrck5WUndkVWxLTkdRMWNHWXpPR2hqV1RNMlVFZ3ZiRkV5WW5Gb2NIbDFiemdLUkhaNVp6aFNZMWgyYWt3clJHVm5lSG8wYlRZNWJqSnFXa3BHUVdoa09WSmljR1pCU1U5RE4wOXhNVEpCUjFwNGNUQmhWV1pOSzNCc1YwRnlXUzlhYndwak5GQnBZMk51Tm5KQlVFb3pTRm8wUTFCMkwyZFBZa3R2VDJNNFFYbFdTMEo1UjJzM1dYTmtTWE5wUkZNMVRsb3JielkzWWtKblJFbGhOekJJVkc1SENsazVVRU1yUWt0dVozRjZkMUUzTTNFNVZTOWlUM0lyVnpOMGFsY3lhVk5DVEdSR1pTdE5NazgxVW1sUFV6ZzBTMDFyVUZOSGFrSkRMMEpGVFZFM1NrVUtjRlJhY3l0S1lrbDBRa1U1VjA4MlZGZHFSemQyU1hsQmNWaHdSalZrZVdad1ZFaGtkM0U0VUc1amNFWnFjRXA2UnpOeGNqTkhhV0pqUm5WbWNVTnFSd3BZUWtsNFZVTkplV0oxVkRCVWRFeExjVm81ZVV0WlFtMW9UMWhKYmtORE1IWmlaVTAyZFhsSmQzWk9NMUJGYW5oSVdFVnpSbkZtYUdwM1kzWmlWWGRPQ21aVk1WbDVTbXc1TURJdldXazViWFJrVGtSd1VVZEVNUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJkVXRHWjNwcllWTjBRVlV6UlU1NGMxSXpWVWsyTDNObGJGUnlkRXMyUTJoWFZtY3daRzFNY3prME1ERjNaVFpZQ2pWeFowaHhNMWQ0T1VKU1ZHNDFjR01yVkhsSFVFeHFUMXBhVmtscmJXSkhkVzlRYjNoS1R5OWFUbTRyWVN0aE5tdzVabEp3YmxvdlRsVkhiMk42YXpNS1UwcDJUVlpCVjBjeE9FdHhkVmR4ZHpZMFNtRlpOVVJFYVZSdmRUbFNjVUpSWjJ4MmJYWnlibEZFUmtKTWN5dFhOV3hOT1VKb1REWnpjVVJUVVZwUWR3b3ZaV2c0Ylc5dGFFOUROMDAwTnpkWGJVMURTRFIwTmxobmRFSndTQzgyUmpKeWEycEdXRGM1WkhSS2NXVTJhbTFZT1ZCRlJHRlRZMjV4VmpCWWVuUmtDamhoWjBGTVdqVm5Va3gwWTFJcmNsZzFhVFI0UTJ3NVVqZzRaa2xrY0ZaSVJHMTBiREpHTDBoaVIyazBibGRJTWsxMVJqSnpWa1JwVjFwM2RXMW1NVllLTW5SSlFuUkhZVlkzSzI1ak5YQXJjVVo1U0V4dk9GVkhVbTFJT0VOck5YZFBOMFZzV1ZZME1GVTNSa0phWjFCQ2JqRlhSMDAxYVZKeVRFWk9XR2xEVHdwSmQyOUZNRkJhZUROU1oySkJiSGtyY0VOWVFubHNlVUpTUkVWVk9WZFZZM1pqYW1Kb2FHbEhSVE5wY3k5dk9FUTNaR2RJUlRNMVVXRXZkbHBGY1ZOSkNucEpSVmd2TnpCTU4xaHpjbEpYTVdwUVJGcEJZbWswYW5wSlVrNXZNVE5MVjJKamRsbGxhbWh2VDFwcWRYazFlVlZXYUZaaVNubE1lVVZ1ZVRJNU9FTUtiVzVMUWpabmFXMDNVeTkzT0dKQmFWbG1SSFpNZVhWNGJFdEdORGt2UmtneGFIcDRRMjVZZFhadk4xQndOMEo2TVdWeE1UaE5jbVJMYkhoYVZDdEhNQW95U3paVlZrRmhUbVJZV0hFNWQzQnlRblpaYzI5WmFHZDFXazFMTlVGR0szaFZabWxhYVZWQ01EbHBaemw2U25wdVVFaEZabGx1VDFWcFpsWlRlR1p1Q25FeVFtSjZZVGh1VDNveFFtUXZPVk00U0ZSdEwwUXlRbXh3VWt0cVdFOXFNR3d4VGtoQmRDOUJRVUZTV1hOV2RrRXpMM0pRVW5GSGEydHpRMEYzUlVFS1FWRkxRMEZuUlVGdFF6WlZaalZKVjB4QlNUaGpSVFYyYUdKeVJ5OTBUeTlWY0hZcmFqYzFXVWxESzJaR2NFaFdOWFp3YVM5Q1dIYzJVRTVLVm5ncmN3bzNXbGQyYXpsbFJtMVFOREZYTW0xek0yNW9aRWREWkZVeVRHOVFjVGRDYjNsMlZWRlRPVzlxY0ZSTlJVbExVamxzSzFWc2RITjJUR05NVEZOcFpFMUJDbGxYYlZsc1ZIRkhNVFpvWWxoelVXUkhSV2cwUjJodFpIWXhVRTU0VkROWlZFMVpUV2d3ZDJWbmJucE1lVTk2ZERkVWVUTTRZM1pEYTFaalNFWmpOSEFLYzBGcFRGazFSMU5wZEdaMllXRlhNVEYxU2pST1EwZ3dURTlRTjAxcFZ6VlJRelpUUkVwdFkxRm9TbTlCUTB4V05HTktXa2RKU0hwdWJFOTFlV1YwU1FwVFNEZDVkMjFwYkZOd2NEWlhObFpWUWtrclFrRmFWbkoxTUhZd05UVlBVelpvTW5KU2FscFFNalJMVWpsbVprbHBjbTg0WjNweldXZEZVVzV0V1RSU0NrOXROVmRaVmxoeWRXbE9iVWRtWnpGbmRVRlVRV3d2UkVSTlEyOUpTMGsxWW0xR2RIQXZjM0o1ZGxGVFREa3ZaMDR5TjNKUmNUSnlia0YxYVZRMmRWY0tSV053ZFhBMVdYWkhWRGhPYkRWeFJqVm1OVGRCTUVsQ1FWaFlZV3gwVlZaVVFXWklTR0ZRT0ZacmVEQm5LMEp4Y0dOT1JtczJORkExYTNSRFVFOXNjQXBVVW5JNGJHZEtWU3RxUmpnNWJqRlBWMWx4VlhCcVZIVkRlblJ3TTNrMVJHSktRVkp5YWk5MVJtaHFUeTlCYkZaalJ6RXhVVTlpVURGNmEyb3hheXRMQ21SNWQwaG1kWE56UWpGeFRHNUVjbkZGVkhZeVNuQlFiRzgwYTBwRlRVSmthV3RCZDI1SFpUQk9iM1ZNV1UxWVkyRk9lVVZWWkRCdWJqaERXa2N5VHpZS1YySktOVFJUVkV4M01FNXBZbXh3VWs5Vk5WQmpVMlpvWXpaUVRrSm5UME5OYTFGSGNYcGlWM2N6VFdKV1FYTTRWMHRvVVVoblZFOHlWMVZsTTFaWGFncFBTelZOYlVwVU0waEpaa0YzTWtKR1NYSnFObVpQUkc1QlVGSkNWM2x5VVRkU1JXVlFWbE15TVhwR2IzSkdLMWhLY1d0RFoyZEZRa0ZPV25SWk5uWnRDamxCU1ZSaFYxQm1NMWhtTTBwb1MyMVZiR1o2V0ZGMFZsVnRNVGh5TUZSeFJ6QnNXV3RuVUhaNWJGRkZiRlpoVDFCaFRIRndLek5OY0VSdmIyVm5NV3dLV0dobVJsZGxRWFpSU1RGTk5tczRORzFDVVc0ck5URTNaekZ6VldGak5sSjNha3R6V2toRU16WXZTMGxhUkN0YVZsRnFVRmR1Y0U1MmIwSjViM055VXdwME9XWmFkSEZxU0V0bFlYbHJUak5tZWpkWVpUTk1TVkJOTm5WU1pWQkxVblpqVmt0YWVTOUxLMWt2UXpGRkwzQm9TQzlRWVZWSU1VODRNSHBSZFVONUNqbGtiRlI1VmxnMmJFMWtRak5SUm5neVZuWmFRVlIyYUhkQ1RURklkbXRGVWxsNWRUQTNaWFJxT0VOT2RtcEVURTFrVDNsUmEyWndMemhoTWtkQ055c0tTVXQ2T0hOcGJFaFlXV3RpTjAxUFkyaHhWWFZGYjB4NVdrbGtSVkpIYkRGRGNuQktMMGw0TnpBMmJGWlFaVzVUUW1wbWRTdHRSa3AxZFc4d2VIRk5NQXBYWVRsRVRYUXpaMm92TUdkQlVWVkRaMmRGUWtGT2VIUkdhVEJGTmtkdVF6SkNVRzloUzNGVWJXTkdiVzV6WmxBd1ltWmhhVWhyY2tkdFltZHVVR2tyQ2t3cllqVXlNM2RuY0dSUlp6UnpXbkYxY2xJNGEwb3dkMUU0YVdSbGJHSnVkRm96Vm5OS2EwVkllWGhQVEU4MFp6VjZVbXRIUldGNVprd3ZRek5oVWt3S2VtSjRaVk5QTURkd04wVlZlbmR0YlRGaldVUTVaVzlvVFZOek5sZHNUbTUwWjNCTFNrWktiMEZaVEU0NVNFUTJMM0JsUXk5dFIzRTFTVXhEUnpSWGRBcDZaRTVKV2tzNVFXNXFaRkpsZGsxblRGVm9SR2xNTTFWVWRXSnFRMEpUWWxwRk5tWldURGsyUlNzeGJTdDFkVGsxVmxWamRWVm1lR2xUTWtoU2FERm9DbVZhTldjNVYybDJVRXRqU3pKdFkxTnBlRkZ6YzFKTFZVa3dLMDVZTmtwNGNtUm5VMW8zVkRkNU5YSXJRbTFYSzNrMFEwWkhPRmxoVW5aSFUzQk9WVzhLUTB4UlpEVmFVR1pUZWxsTmRTdFhUMHhIZVV4MGVqbHRlbEkwVEhGVU5YRklLemsxVnpkeEx6VjNPRU5uWjBWQlprRllWbE52TlZGM1FYRmxVVWxuZUFwUWNuZFRjREpNVURaa1RETkdRMFZNYUdkNFEwTXJaMnRXUXpSSlpHOUtlRlZzY3poVVZUUkZWa2xFU2taSUwza3hWR2x2VERaMFlqSjJMMjh4WjFFckNtNHZka2MwYmpsdVduWkZhRlphYzJ4Q1REaDJNalo2ZFRKQlVtbExMekJhTW1KUlRqRTRUa2RNWTNoU1JuTkNNREpVU2pBcmFqaGhNbkIzZDFSRWNURUtMelYwTUhOM1Frc3dXRlJRZW1GWFFsTXhSR1V4WkRVMlJuVjZURGxvWVN0a1pYQkphSFJuV1V4U2VUUlZkRUZZUVV3NFVHaFpkVGxMZWtOT1IxVXZVUXBWWkdaRmFuQjBaRVIzVkdFNE9XNUdSVTVpSzNwVFZYUllVWFZhY0ZodFlqRmtSMjFIWlRkT1MxSmlTSGN6VTFNemEzQm5aRlI1YW1oaGNUZEhZV3RRQ21KemFHRkVNa2wyWkhOaVNrdHFaM000VW1kS1VXSXpVM05MUlhWck9ISnFVaXRRYmpWYUx6SjJUVGxoZG00Mk5IWTVTVFoxYUdORVkwb3lOMmhDTTI4S05tOHhhVk5SUzBOQlVVRk9OSGt5VUdadmVYRkNVMWRhT0RNeVRYRmhialZRYkRkdmJHUmFVSE5CZDBSSWF6QlhhVVJaTjJ0aVpuYzFTRTFKYldkSU5BcHZSek5LVGtoWk5EUjBVVEZ2ZUVoVFRrOUhPVlZtU0cxV1RURkJhSEp5TUVSeFZGVkNLM2x3U2pGc1JVMTNRMkpGUlhKdmFrRkpWbE5TWkhSSmRVbEpDbnBTWmxOTmRHMXlSbEp5VFU5dVZXWnNVbWxXZDNGWU9HUm1iR1F5T0VkcmJsSmpNbVYzYmtwUUt6WkpPWEo0V1RWTFVGcFJlamhDWm1ORmFVeFlPRXNLVjNrM1ZUTkpWV1F4VjNSeVJXeEpObEkzYkRsdGRVTjRPVEpZWldadVJqZzViM29yYURCT1NXNXVkWEExWWxSUU1HOU1MMWhQU0U1ellYZHJaMVV6WmdvNVJsbFpVV3h1VXpGd1NEbGhjVzVwTTBSU1dGSnlVU3RPWTB0ck5qSjRSR2R3Wldsc01tVTBNME52U1hwRFZVZEhWV2RpVTJRNWNXZGhkWGxMYkVwU0NuZElSMmxJT1dZMmNYSTNUREZ6TURkb1JqWlJWMUl4VkN0RFFtOVljV3BRUVc5SlFrRkJORGhpYkVOa2MwUmhkRFUzVXpCTlUwUjZhVTg0V21kT1RXWUtaM2g2UlhaalNqTk5UWGhXYURGTlkwbGhOVXR4UXpob2VUZElkVGs0WVdGc2NsSkVPRUp6V1c1WFRuSlBPR1JMWnpGdFptd3lUbXcyVjBWV1ZHOTBRUXBRWnpGdlpWTjBXbWRSTkdSMGRHcEhXVlZQYkhCR1F6TXhNVXRuYTNOQkx6RkJjV0owVjJkUVZYUlFVRlZMVTJOU1ozTm5jVmgyV1hjNE0wWjFPV0ZVQ2xSeldqUXZXQzluYzFwQ2JrZEdRbTlQT1dWek1uaE1jMHBxWW1JMldHaGxiamxRY3pSTkt5OW5RV1ZVYmtKclkxZFhWRUpYUVZwaloxTTViMFZPTWxvS2RXSjZlbVptZFhsRGVGaHRVRlZuWmxSeE9HTllOMGN6YzFkU1RYRnJXRUpKVjBwV2FGRmxZbGcyYTFkUlFUbFJXbkZtYmpOd1dYVjFlbWx3YUdOdlVRcFJZaTloU21Jd04wZEZiMjVsUkVZNFFWQjFUVkpUYVV3MmNrOWtaM2RWYzJWQ01ERXlaM2RRWmpOVGVtODBSWHBKVVRSak9YTjRhRE56VlQwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiB6MTVydWNodXpjNjNkZDdhNGt6dmdndnJvNmdmZHNud2N5bHA1NGszeDU3Y2ZscGlibncxODZ3MHM3OWZiOWxwd2tkcDRwN2xtNWIwbWRsbnhnaDhzNjkxdXMyczlhcHhrYm51djJ5cDY4dGltaDhlcHJmcmtkMHV6YjdxNDl2cgo=\"\ + \n }\n ]\n }" headers: cache-control: - no-cache @@ -1099,7 +467,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:27:22 GMT + - Wed, 14 Jun 2023 17:52:31 GMT expires: - '-1' pragma: @@ -1133,35 +501,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n ],\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n\ + \ ],\n \"enableAutoScaling\": false,\n \"provisioningState\":\ + \ \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ + ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1104' + - '1105' content-type: - application/json date: - - Wed, 15 Mar 2023 10:27:23 GMT + - Wed, 14 Jun 2023 17:52:31 GMT expires: - '-1' pragma: @@ -1202,36 +570,37 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n ],\n \"enableAutoScaling\": - false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n ],\n\ + \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"\ + provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"\ + Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/93d65e27-553f-4c77-8790-96d49043ab8c?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/91be4f62-dca7-4201-8be9-1e3fd498d8f0?api-version=2017-08-31 cache-control: - no-cache content-length: - - '1038' + - '1039' content-type: - application/json date: - - Wed, 15 Mar 2023 10:27:28 GMT + - Wed, 14 Jun 2023 17:52:37 GMT expires: - '-1' pragma: @@ -1243,7 +612,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -1261,158 +630,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/93d65e27-553f-4c77-8790-96d49043ab8c?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"275ed693-3f55-774c-8790-96d49043ab8c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:27:28.8113075Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:27:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/93d65e27-553f-4c77-8790-96d49043ab8c?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"275ed693-3f55-774c-8790-96d49043ab8c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:27:28.8113075Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:28:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/93d65e27-553f-4c77-8790-96d49043ab8c?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"275ed693-3f55-774c-8790-96d49043ab8c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:27:28.8113075Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:28:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --zones - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/93d65e27-553f-4c77-8790-96d49043ab8c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/91be4f62-dca7-4201-8be9-1e3fd498d8f0?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"275ed693-3f55-774c-8790-96d49043ab8c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:27:28.8113075Z\"\n }" + string: "{\n \"name\": \"624fbe91-a7dc-0142-8be9-1e3fd498d8f0\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:52:37.8072759Z\"\n }" headers: cache-control: - no-cache @@ -1421,7 +646,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:29:29 GMT + - Wed, 14 Jun 2023 17:52:37 GMT expires: - '-1' pragma: @@ -1453,14 +678,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/93d65e27-553f-4c77-8790-96d49043ab8c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/91be4f62-dca7-4201-8be9-1e3fd498d8f0?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"275ed693-3f55-774c-8790-96d49043ab8c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:27:28.8113075Z\"\n }" + string: "{\n \"name\": \"624fbe91-a7dc-0142-8be9-1e3fd498d8f0\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:52:37.8072759Z\"\n }" headers: cache-control: - no-cache @@ -1469,7 +694,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:30:00 GMT + - Wed, 14 Jun 2023 17:53:07 GMT expires: - '-1' pragma: @@ -1501,14 +726,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/93d65e27-553f-4c77-8790-96d49043ab8c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/91be4f62-dca7-4201-8be9-1e3fd498d8f0?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"275ed693-3f55-774c-8790-96d49043ab8c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:27:28.8113075Z\"\n }" + string: "{\n \"name\": \"624fbe91-a7dc-0142-8be9-1e3fd498d8f0\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:52:37.8072759Z\"\n }" headers: cache-control: - no-cache @@ -1517,7 +742,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:30:30 GMT + - Wed, 14 Jun 2023 17:53:37 GMT expires: - '-1' pragma: @@ -1549,14 +774,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/93d65e27-553f-4c77-8790-96d49043ab8c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/91be4f62-dca7-4201-8be9-1e3fd498d8f0?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"275ed693-3f55-774c-8790-96d49043ab8c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:27:28.8113075Z\"\n }" + string: "{\n \"name\": \"624fbe91-a7dc-0142-8be9-1e3fd498d8f0\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:52:37.8072759Z\"\n }" headers: cache-control: - no-cache @@ -1565,7 +790,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:31:00 GMT + - Wed, 14 Jun 2023 17:54:08 GMT expires: - '-1' pragma: @@ -1597,14 +822,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/93d65e27-553f-4c77-8790-96d49043ab8c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/91be4f62-dca7-4201-8be9-1e3fd498d8f0?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"275ed693-3f55-774c-8790-96d49043ab8c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:27:28.8113075Z\"\n }" + string: "{\n \"name\": \"624fbe91-a7dc-0142-8be9-1e3fd498d8f0\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:52:37.8072759Z\"\n }" headers: cache-control: - no-cache @@ -1613,7 +838,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:31:29 GMT + - Wed, 14 Jun 2023 17:54:38 GMT expires: - '-1' pragma: @@ -1645,14 +870,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/93d65e27-553f-4c77-8790-96d49043ab8c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/91be4f62-dca7-4201-8be9-1e3fd498d8f0?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"275ed693-3f55-774c-8790-96d49043ab8c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:27:28.8113075Z\"\n }" + string: "{\n \"name\": \"624fbe91-a7dc-0142-8be9-1e3fd498d8f0\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:52:37.8072759Z\"\n }" headers: cache-control: - no-cache @@ -1661,7 +886,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:31:59 GMT + - Wed, 14 Jun 2023 17:55:08 GMT expires: - '-1' pragma: @@ -1693,14 +918,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/93d65e27-553f-4c77-8790-96d49043ab8c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/91be4f62-dca7-4201-8be9-1e3fd498d8f0?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"275ed693-3f55-774c-8790-96d49043ab8c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:27:28.8113075Z\"\n }" + string: "{\n \"name\": \"624fbe91-a7dc-0142-8be9-1e3fd498d8f0\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:52:37.8072759Z\"\n }" headers: cache-control: - no-cache @@ -1709,7 +934,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:32:31 GMT + - Wed, 14 Jun 2023 17:55:38 GMT expires: - '-1' pragma: @@ -1741,15 +966,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/93d65e27-553f-4c77-8790-96d49043ab8c?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/91be4f62-dca7-4201-8be9-1e3fd498d8f0?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"275ed693-3f55-774c-8790-96d49043ab8c\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:27:28.8113075Z\",\n \"endTime\": - \"2023-03-15T10:32:34.1984791Z\"\n }" + string: "{\n \"name\": \"624fbe91-a7dc-0142-8be9-1e3fd498d8f0\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T17:52:37.8072759Z\",\n \"\ + endTime\": \"2023-06-14T17:55:47.0993354Z\"\n }" headers: cache-control: - no-cache @@ -1758,7 +983,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:33:00 GMT + - Wed, 14 Jun 2023 17:56:08 GMT expires: - '-1' pragma: @@ -1790,34 +1015,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --zones User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n ],\n \"enableAutoScaling\": - false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n ],\n\ + \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"\ + provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"\ + Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1039' + - '1040' content-type: - application/json date: - - Wed, 15 Mar 2023 10:33:01 GMT + - Wed, 14 Jun 2023 17:56:08 GMT expires: - '-1' pragma: @@ -1851,8 +1077,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -1860,17 +1086,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/b0dffefd-fa6c-4e64-82bc-7eecefa65da2?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/638e5cc4-f25f-4be4-9055-38a8f097e426?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:33:03 GMT + - Wed, 14 Jun 2023 17:56:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/b0dffefd-fa6c-4e64-82bc-7eecefa65da2?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/638e5cc4-f25f-4be4-9055-38a8f097e426?api-version=2017-08-31 pragma: - no-cache server: @@ -1880,7 +1106,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_azure_cni_overlay_migration.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_azure_cni_overlay_migration.yaml index 661e2dd66d6..85c09092144 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_azure_cni_overlay_migration.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_azure_cni_overlay_migration.yaml @@ -13,54 +13,36 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/orchestrators?api-version=2019-04-01&resource-type=managedClusters + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/kubernetesVersions?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/orchestrators\",\n - \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\",\n - \ \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.23.12\",\n \"upgrades\": - [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.9\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.10\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\",\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.9\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.10\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.10\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.5\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.6\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.10\",\n \"default\": true,\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.5\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.6\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.6\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.26.0\",\n \"isPreview\": true\n - \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.6\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n }\n }" + string: "{\n \"values\": [\n {\n \"version\": \"1.24\",\n \"capabilities\"\ + : {\n \"supportPlan\": [\n \"KubernetesOfficial\"\n ]\n },\n\ + \ \"patchVersions\": {\n \"1.24.10\": {\n \"upgrades\": [\n \ + \ \"1.25.5\",\n \"1.25.6\"\n ]\n },\n \"1.24.9\": {\n\ + \ \"upgrades\": [\n \"1.24.10\",\n \"1.25.5\",\n \"\ + 1.25.6\"\n ]\n }\n }\n },\n {\n \"version\": \"1.25\",\n\ + \ \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\"\ + \n ]\n },\n \"patchVersions\": {\n \"1.25.5\": {\n \"upgrades\"\ + : [\n \"1.25.6\",\n \"1.26.0\",\n \"1.26.3\"\n ]\n\ + \ },\n \"1.25.6\": {\n \"upgrades\": [\n \"1.26.0\",\n\ + \ \"1.26.3\"\n ]\n }\n }\n },\n {\n \"version\":\ + \ \"1.26\",\n \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\"\ + \n ]\n },\n \"patchVersions\": {\n \"1.26.0\": {\n \"upgrades\"\ + : [\n \"1.26.3\"\n ]\n },\n \"1.26.3\": {\n \"upgrades\"\ + : []\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2420' + - '957' content-type: - application/json date: - - Thu, 30 Mar 2023 15:53:20 GMT + - Wed, 14 Jun 2023 17:56:16 GMT expires: - '-1' pragma: @@ -93,8 +75,8 @@ interactions: - --resource-group --name --location --network-plugin --ssh-key-value --kubernetes-version --service-cidr --dns-service-ip --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -110,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 30 Mar 2023 15:53:22 GMT + - Wed, 14 Jun 2023 17:56:16 GMT expires: - '-1' pragma: @@ -126,10 +108,10 @@ interactions: message: Not Found - request: body: '{"location": "westcentralus", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "1.26.0", "dnsPrefix": "cliakstest-clitest2oywsn2nu-18153b", + {"kubernetesVersion": "1.26.3", "dnsPrefix": "cliakstest-clitestrh7q4nd3q-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "1.26.0", "upgradeSettings": {}, "enableNodePublicIP": + "mode": "System", "orchestratorVersion": "1.26.3", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": @@ -157,62 +139,64 @@ interactions: - --resource-group --name --location --network-plugin --ssh-key-value --kubernetes-version --service-cidr --dns-service-ip --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.26.0\",\n \"currentKubernetesVersion\": \"1.26.0\",\n \"dnsPrefix\": - \"cliakstest-clitest2oywsn2nu-18153b\",\n \"fqdn\": \"cliakstest-clitest2oywsn2nu-18153b-enauff14.hcp.westcentralus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest2oywsn2nu-18153b-enauff14.portal.hcp.westcentralus.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.26.0\",\n \"currentOrchestratorVersion\": - \"1.26.0\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-202303.13.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"networkDataplane\": \"azure\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"serviceCidr\": \"172.56.0.0/16\",\n - \ \"dnsServiceIP\": \"172.56.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"172.56.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.26.3\",\n \"currentKubernetesVersion\"\ + : \"1.26.3\",\n \"dnsPrefix\": \"cliakstest-clitestrh7q4nd3q-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestrh7q4nd3q-8ecadf-5084x4a4.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestrh7q4nd3q-8ecadf-5084x4a4.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.26.3\",\n \"currentOrchestratorVersion\": \"1.26.3\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n\ + \ \"serviceCidr\": \"172.56.0.0/16\",\n \"dnsServiceIP\": \"172.56.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \ + \ \"172.56.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n\ + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n\ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/f847ddba-b71e-45f7-beda-4bd41242fb60?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/31afdd8f-b6bb-4c9d-a359-6fe7e9348ea4?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3669' + - '3668' content-type: - application/json date: - - Thu, 30 Mar 2023 15:53:28 GMT + - Wed, 14 Jun 2023 17:56:25 GMT expires: - '-1' pragma: @@ -243,14 +227,14 @@ interactions: - --resource-group --name --location --network-plugin --ssh-key-value --kubernetes-version --service-cidr --dns-service-ip --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/f847ddba-b71e-45f7-beda-4bd41242fb60?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/31afdd8f-b6bb-4c9d-a359-6fe7e9348ea4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"badd47f8-1eb7-f745-beda-4bd41242fb60\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:53:28.2743196Z\"\n }" + string: "{\n \"name\": \"8fddaf31-bbb6-9d4c-a359-6fe7e9348ea4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:56:25.0154331Z\"\n }" headers: cache-control: - no-cache @@ -259,7 +243,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 15:53:58 GMT + - Wed, 14 Jun 2023 17:56:25 GMT expires: - '-1' pragma: @@ -292,14 +276,14 @@ interactions: - --resource-group --name --location --network-plugin --ssh-key-value --kubernetes-version --service-cidr --dns-service-ip --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/f847ddba-b71e-45f7-beda-4bd41242fb60?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/31afdd8f-b6bb-4c9d-a359-6fe7e9348ea4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"badd47f8-1eb7-f745-beda-4bd41242fb60\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:53:28.2743196Z\"\n }" + string: "{\n \"name\": \"8fddaf31-bbb6-9d4c-a359-6fe7e9348ea4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:56:25.0154331Z\"\n }" headers: cache-control: - no-cache @@ -308,7 +292,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 15:54:28 GMT + - Wed, 14 Jun 2023 17:56:55 GMT expires: - '-1' pragma: @@ -341,14 +325,14 @@ interactions: - --resource-group --name --location --network-plugin --ssh-key-value --kubernetes-version --service-cidr --dns-service-ip --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/f847ddba-b71e-45f7-beda-4bd41242fb60?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/31afdd8f-b6bb-4c9d-a359-6fe7e9348ea4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"badd47f8-1eb7-f745-beda-4bd41242fb60\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:53:28.2743196Z\"\n }" + string: "{\n \"name\": \"8fddaf31-bbb6-9d4c-a359-6fe7e9348ea4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:56:25.0154331Z\"\n }" headers: cache-control: - no-cache @@ -357,7 +341,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 15:54:58 GMT + - Wed, 14 Jun 2023 17:57:25 GMT expires: - '-1' pragma: @@ -390,14 +374,14 @@ interactions: - --resource-group --name --location --network-plugin --ssh-key-value --kubernetes-version --service-cidr --dns-service-ip --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/f847ddba-b71e-45f7-beda-4bd41242fb60?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/31afdd8f-b6bb-4c9d-a359-6fe7e9348ea4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"badd47f8-1eb7-f745-beda-4bd41242fb60\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:53:28.2743196Z\"\n }" + string: "{\n \"name\": \"8fddaf31-bbb6-9d4c-a359-6fe7e9348ea4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:56:25.0154331Z\"\n }" headers: cache-control: - no-cache @@ -406,7 +390,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 15:55:29 GMT + - Wed, 14 Jun 2023 17:57:56 GMT expires: - '-1' pragma: @@ -439,14 +423,14 @@ interactions: - --resource-group --name --location --network-plugin --ssh-key-value --kubernetes-version --service-cidr --dns-service-ip --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/f847ddba-b71e-45f7-beda-4bd41242fb60?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/31afdd8f-b6bb-4c9d-a359-6fe7e9348ea4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"badd47f8-1eb7-f745-beda-4bd41242fb60\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:53:28.2743196Z\"\n }" + string: "{\n \"name\": \"8fddaf31-bbb6-9d4c-a359-6fe7e9348ea4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:56:25.0154331Z\"\n }" headers: cache-control: - no-cache @@ -455,7 +439,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 15:55:59 GMT + - Wed, 14 Jun 2023 17:58:25 GMT expires: - '-1' pragma: @@ -488,14 +472,14 @@ interactions: - --resource-group --name --location --network-plugin --ssh-key-value --kubernetes-version --service-cidr --dns-service-ip --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/f847ddba-b71e-45f7-beda-4bd41242fb60?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/31afdd8f-b6bb-4c9d-a359-6fe7e9348ea4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"badd47f8-1eb7-f745-beda-4bd41242fb60\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:53:28.2743196Z\"\n }" + string: "{\n \"name\": \"8fddaf31-bbb6-9d4c-a359-6fe7e9348ea4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:56:25.0154331Z\"\n }" headers: cache-control: - no-cache @@ -504,7 +488,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 15:56:28 GMT + - Wed, 14 Jun 2023 17:58:55 GMT expires: - '-1' pragma: @@ -537,14 +521,14 @@ interactions: - --resource-group --name --location --network-plugin --ssh-key-value --kubernetes-version --service-cidr --dns-service-ip --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/f847ddba-b71e-45f7-beda-4bd41242fb60?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/31afdd8f-b6bb-4c9d-a359-6fe7e9348ea4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"badd47f8-1eb7-f745-beda-4bd41242fb60\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:53:28.2743196Z\"\n }" + string: "{\n \"name\": \"8fddaf31-bbb6-9d4c-a359-6fe7e9348ea4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:56:25.0154331Z\"\n }" headers: cache-control: - no-cache @@ -553,7 +537,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 15:56:59 GMT + - Wed, 14 Jun 2023 17:59:26 GMT expires: - '-1' pragma: @@ -586,14 +570,14 @@ interactions: - --resource-group --name --location --network-plugin --ssh-key-value --kubernetes-version --service-cidr --dns-service-ip --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/f847ddba-b71e-45f7-beda-4bd41242fb60?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/31afdd8f-b6bb-4c9d-a359-6fe7e9348ea4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"badd47f8-1eb7-f745-beda-4bd41242fb60\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:53:28.2743196Z\"\n }" + string: "{\n \"name\": \"8fddaf31-bbb6-9d4c-a359-6fe7e9348ea4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T17:56:25.0154331Z\"\n }" headers: cache-control: - no-cache @@ -602,7 +586,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 15:57:29 GMT + - Wed, 14 Jun 2023 17:59:56 GMT expires: - '-1' pragma: @@ -635,15 +619,15 @@ interactions: - --resource-group --name --location --network-plugin --ssh-key-value --kubernetes-version --service-cidr --dns-service-ip --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/f847ddba-b71e-45f7-beda-4bd41242fb60?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/31afdd8f-b6bb-4c9d-a359-6fe7e9348ea4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"badd47f8-1eb7-f745-beda-4bd41242fb60\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-30T15:53:28.2743196Z\",\n \"endTime\": - \"2023-03-30T15:57:35.2494195Z\"\n }" + string: "{\n \"name\": \"8fddaf31-bbb6-9d4c-a359-6fe7e9348ea4\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T17:56:25.0154331Z\",\n \"\ + endTime\": \"2023-06-14T18:00:08.9191232Z\"\n }" headers: cache-control: - no-cache @@ -652,7 +636,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 15:57:59 GMT + - Wed, 14 Jun 2023 18:00:26 GMT expires: - '-1' pragma: @@ -685,65 +669,66 @@ interactions: - --resource-group --name --location --network-plugin --ssh-key-value --kubernetes-version --service-cidr --dns-service-ip --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.26.0\",\n \"currentKubernetesVersion\": \"1.26.0\",\n \"dnsPrefix\": - \"cliakstest-clitest2oywsn2nu-18153b\",\n \"fqdn\": \"cliakstest-clitest2oywsn2nu-18153b-enauff14.hcp.westcentralus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest2oywsn2nu-18153b-enauff14.portal.hcp.westcentralus.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.26.0\",\n \"currentOrchestratorVersion\": - \"1.26.0\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-202303.13.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"networkDataplane\": \"azure\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/c5a5d24a-3c84-4a50-b472-671396bcf329\"\n - \ }\n ]\n },\n \"serviceCidr\": \"172.56.0.0/16\",\n \"dnsServiceIP\": - \"172.56.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"172.56.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.26.3\",\n \"currentKubernetesVersion\"\ + : \"1.26.3\",\n \"dnsPrefix\": \"cliakstest-clitestrh7q4nd3q-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestrh7q4nd3q-8ecadf-5084x4a4.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestrh7q4nd3q-8ecadf-5084x4a4.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.26.3\",\n \"currentOrchestratorVersion\": \"1.26.3\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ + effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/3a83ac92-0119-40dc-8523-2d63fd9aca69\"\ + \n }\n ]\n },\n \"serviceCidr\": \"172.56.0.0/16\",\n \"\ + dnsServiceIP\": \"172.56.0.10\",\n \"outboundType\": \"loadBalancer\",\n\ + \ \"serviceCidrs\": [\n \"172.56.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4334' + - '4333' content-type: - application/json date: - - Thu, 30 Mar 2023 15:57:59 GMT + - Wed, 14 Jun 2023 18:00:27 GMT expires: - '-1' pragma: @@ -775,65 +760,66 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.26.0\",\n \"currentKubernetesVersion\": \"1.26.0\",\n \"dnsPrefix\": - \"cliakstest-clitest2oywsn2nu-18153b\",\n \"fqdn\": \"cliakstest-clitest2oywsn2nu-18153b-enauff14.hcp.westcentralus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest2oywsn2nu-18153b-enauff14.portal.hcp.westcentralus.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.26.0\",\n \"currentOrchestratorVersion\": - \"1.26.0\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-202303.13.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"networkDataplane\": \"azure\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/c5a5d24a-3c84-4a50-b472-671396bcf329\"\n - \ }\n ]\n },\n \"serviceCidr\": \"172.56.0.0/16\",\n \"dnsServiceIP\": - \"172.56.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"172.56.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.26.3\",\n \"currentKubernetesVersion\"\ + : \"1.26.3\",\n \"dnsPrefix\": \"cliakstest-clitestrh7q4nd3q-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestrh7q4nd3q-8ecadf-5084x4a4.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestrh7q4nd3q-8ecadf-5084x4a4.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.26.3\",\n \"currentOrchestratorVersion\": \"1.26.3\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ + effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/3a83ac92-0119-40dc-8523-2d63fd9aca69\"\ + \n }\n ]\n },\n \"serviceCidr\": \"172.56.0.0/16\",\n \"\ + dnsServiceIP\": \"172.56.0.10\",\n \"outboundType\": \"loadBalancer\",\n\ + \ \"serviceCidrs\": [\n \"172.56.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4334' + - '4333' content-type: - application/json date: - - Thu, 30 Mar 2023 15:58:02 GMT + - Wed, 14 Jun 2023 18:00:29 GMT expires: - '-1' pragma: @@ -854,11 +840,11 @@ interactions: - request: body: '{"location": "westcentralus", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.26.0", "dnsPrefix": "cliakstest-clitest2oywsn2nu-18153b", "agentPoolProfiles": + "1.26.3", "dnsPrefix": "cliakstest-clitestrh7q4nd3q-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": - "System", "orchestratorVersion": "1.26.0", "upgradeSettings": {}, "powerState": + "System", "orchestratorVersion": "1.26.3", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": @@ -866,11 +852,11 @@ interactions: test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser", "enableCSIProxy": true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westcentralus", - "enableRBAC": true, "networkProfile": {"networkPlugin": "azure", "networkPluginMode": - "overlay", "networkDataplane": "azure", "podCidr": "100.64.0.0/10", "serviceCidr": - "172.56.0.0/16", "dnsServiceIP": "172.56.0.10", "dockerBridgeCidr": "172.17.0.1/16", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "azure", "networkPluginMode": "overlay", "networkDataplane": "azure", "podCidr": + "100.64.0.0/10", "serviceCidr": "172.56.0.0/16", "dnsServiceIP": "172.56.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": - {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/c5a5d24a-3c84-4a50-b472-671396bcf329"}]}, + {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/3a83ac92-0119-40dc-8523-2d63fd9aca69"}]}, "serviceCidrs": ["172.56.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -894,68 +880,70 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.26.0\",\n \"currentKubernetesVersion\": \"1.26.0\",\n \"dnsPrefix\": - \"cliakstest-clitest2oywsn2nu-18153b\",\n \"fqdn\": \"cliakstest-clitest2oywsn2nu-18153b-enauff14.hcp.westcentralus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest2oywsn2nu-18153b-enauff14.portal.hcp.westcentralus.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.26.0\",\n \"currentOrchestratorVersion\": - \"1.26.0\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-202303.13.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"networkPluginMode\": \"overlay\",\n \"networkDataplane\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/c5a5d24a-3c84-4a50-b472-671396bcf329\"\n - \ }\n ]\n },\n \"podCidr\": \"100.64.0.0/10\",\n \"serviceCidr\": - \"172.56.0.0/16\",\n \"dnsServiceIP\": \"172.56.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"100.64.0.0/10\"\n ],\n \"serviceCidrs\": [\n \"172.56.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.26.3\",\n \"currentKubernetesVersion\"\ + : \"1.26.3\",\n \"dnsPrefix\": \"cliakstest-clitestrh7q4nd3q-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestrh7q4nd3q-8ecadf-5084x4a4.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestrh7q4nd3q-8ecadf-5084x4a4.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.26.3\",\n \"currentOrchestratorVersion\": \"1.26.3\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkPluginMode\"\ + : \"overlay\",\n \"networkDataplane\": \"azure\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/3a83ac92-0119-40dc-8523-2d63fd9aca69\"\ + \n }\n ]\n },\n \"podCidr\": \"100.64.0.0/10\",\n \"serviceCidr\"\ + : \"172.56.0.0/16\",\n \"dnsServiceIP\": \"172.56.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"100.64.0.0/10\"\n ],\n\ + \ \"serviceCidrs\": [\n \"172.56.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/abf94ab3-13a3-40ad-a245-ec56def17c82?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4446' + - '4445' content-type: - application/json date: - - Thu, 30 Mar 2023 15:58:07 GMT + - Wed, 14 Jun 2023 18:00:35 GMT expires: - '-1' pragma: @@ -989,14 +977,14 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/abf94ab3-13a3-40ad-a245-ec56def17c82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b34af9ab-a313-ad40-a245-ec56def17c82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:58:06.6201882Z\"\n }" + string: "{\n \"name\": \"16f93fb7-d928-b24e-b79c-39452d73c12b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:00:34.6409209Z\"\n }" headers: cache-control: - no-cache @@ -1005,7 +993,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 15:58:36 GMT + - Wed, 14 Jun 2023 18:00:35 GMT expires: - '-1' pragma: @@ -1037,14 +1025,14 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/abf94ab3-13a3-40ad-a245-ec56def17c82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b34af9ab-a313-ad40-a245-ec56def17c82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:58:06.6201882Z\"\n }" + string: "{\n \"name\": \"16f93fb7-d928-b24e-b79c-39452d73c12b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:00:34.6409209Z\"\n }" headers: cache-control: - no-cache @@ -1053,7 +1041,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 15:59:07 GMT + - Wed, 14 Jun 2023 18:01:05 GMT expires: - '-1' pragma: @@ -1085,14 +1073,14 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/abf94ab3-13a3-40ad-a245-ec56def17c82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b34af9ab-a313-ad40-a245-ec56def17c82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:58:06.6201882Z\"\n }" + string: "{\n \"name\": \"16f93fb7-d928-b24e-b79c-39452d73c12b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:00:34.6409209Z\"\n }" headers: cache-control: - no-cache @@ -1101,7 +1089,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 15:59:37 GMT + - Wed, 14 Jun 2023 18:01:35 GMT expires: - '-1' pragma: @@ -1133,14 +1121,14 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/abf94ab3-13a3-40ad-a245-ec56def17c82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b34af9ab-a313-ad40-a245-ec56def17c82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:58:06.6201882Z\"\n }" + string: "{\n \"name\": \"16f93fb7-d928-b24e-b79c-39452d73c12b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:00:34.6409209Z\"\n }" headers: cache-control: - no-cache @@ -1149,7 +1137,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 16:00:07 GMT + - Wed, 14 Jun 2023 18:02:05 GMT expires: - '-1' pragma: @@ -1181,14 +1169,14 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/abf94ab3-13a3-40ad-a245-ec56def17c82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b34af9ab-a313-ad40-a245-ec56def17c82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:58:06.6201882Z\"\n }" + string: "{\n \"name\": \"16f93fb7-d928-b24e-b79c-39452d73c12b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:00:34.6409209Z\"\n }" headers: cache-control: - no-cache @@ -1197,7 +1185,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 16:00:38 GMT + - Wed, 14 Jun 2023 18:02:36 GMT expires: - '-1' pragma: @@ -1229,14 +1217,14 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/abf94ab3-13a3-40ad-a245-ec56def17c82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b34af9ab-a313-ad40-a245-ec56def17c82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:58:06.6201882Z\"\n }" + string: "{\n \"name\": \"16f93fb7-d928-b24e-b79c-39452d73c12b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:00:34.6409209Z\"\n }" headers: cache-control: - no-cache @@ -1245,7 +1233,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 16:01:08 GMT + - Wed, 14 Jun 2023 18:03:06 GMT expires: - '-1' pragma: @@ -1277,14 +1265,14 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/abf94ab3-13a3-40ad-a245-ec56def17c82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b34af9ab-a313-ad40-a245-ec56def17c82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:58:06.6201882Z\"\n }" + string: "{\n \"name\": \"16f93fb7-d928-b24e-b79c-39452d73c12b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:00:34.6409209Z\"\n }" headers: cache-control: - no-cache @@ -1293,7 +1281,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 16:01:37 GMT + - Wed, 14 Jun 2023 18:03:36 GMT expires: - '-1' pragma: @@ -1325,14 +1313,14 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/abf94ab3-13a3-40ad-a245-ec56def17c82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b34af9ab-a313-ad40-a245-ec56def17c82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:58:06.6201882Z\"\n }" + string: "{\n \"name\": \"16f93fb7-d928-b24e-b79c-39452d73c12b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:00:34.6409209Z\"\n }" headers: cache-control: - no-cache @@ -1341,7 +1329,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 16:02:08 GMT + - Wed, 14 Jun 2023 18:04:07 GMT expires: - '-1' pragma: @@ -1373,14 +1361,14 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/abf94ab3-13a3-40ad-a245-ec56def17c82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b34af9ab-a313-ad40-a245-ec56def17c82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:58:06.6201882Z\"\n }" + string: "{\n \"name\": \"16f93fb7-d928-b24e-b79c-39452d73c12b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:00:34.6409209Z\"\n }" headers: cache-control: - no-cache @@ -1389,7 +1377,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 16:02:38 GMT + - Wed, 14 Jun 2023 18:04:37 GMT expires: - '-1' pragma: @@ -1421,14 +1409,14 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/abf94ab3-13a3-40ad-a245-ec56def17c82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b34af9ab-a313-ad40-a245-ec56def17c82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:58:06.6201882Z\"\n }" + string: "{\n \"name\": \"16f93fb7-d928-b24e-b79c-39452d73c12b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:00:34.6409209Z\"\n }" headers: cache-control: - no-cache @@ -1437,7 +1425,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 16:03:08 GMT + - Wed, 14 Jun 2023 18:05:07 GMT expires: - '-1' pragma: @@ -1469,14 +1457,14 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/abf94ab3-13a3-40ad-a245-ec56def17c82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b34af9ab-a313-ad40-a245-ec56def17c82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:58:06.6201882Z\"\n }" + string: "{\n \"name\": \"16f93fb7-d928-b24e-b79c-39452d73c12b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:00:34.6409209Z\"\n }" headers: cache-control: - no-cache @@ -1485,7 +1473,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 16:03:39 GMT + - Wed, 14 Jun 2023 18:05:37 GMT expires: - '-1' pragma: @@ -1517,14 +1505,14 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/abf94ab3-13a3-40ad-a245-ec56def17c82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b34af9ab-a313-ad40-a245-ec56def17c82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:58:06.6201882Z\"\n }" + string: "{\n \"name\": \"16f93fb7-d928-b24e-b79c-39452d73c12b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:00:34.6409209Z\"\n }" headers: cache-control: - no-cache @@ -1533,7 +1521,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 16:04:09 GMT + - Wed, 14 Jun 2023 18:06:07 GMT expires: - '-1' pragma: @@ -1565,14 +1553,14 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/abf94ab3-13a3-40ad-a245-ec56def17c82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b34af9ab-a313-ad40-a245-ec56def17c82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:58:06.6201882Z\"\n }" + string: "{\n \"name\": \"16f93fb7-d928-b24e-b79c-39452d73c12b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:00:34.6409209Z\"\n }" headers: cache-control: - no-cache @@ -1581,7 +1569,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 16:04:38 GMT + - Wed, 14 Jun 2023 18:06:37 GMT expires: - '-1' pragma: @@ -1613,14 +1601,14 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/abf94ab3-13a3-40ad-a245-ec56def17c82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b34af9ab-a313-ad40-a245-ec56def17c82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:58:06.6201882Z\"\n }" + string: "{\n \"name\": \"16f93fb7-d928-b24e-b79c-39452d73c12b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:00:34.6409209Z\"\n }" headers: cache-control: - no-cache @@ -1629,7 +1617,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 16:05:09 GMT + - Wed, 14 Jun 2023 18:07:08 GMT expires: - '-1' pragma: @@ -1661,14 +1649,14 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/abf94ab3-13a3-40ad-a245-ec56def17c82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b34af9ab-a313-ad40-a245-ec56def17c82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:58:06.6201882Z\"\n }" + string: "{\n \"name\": \"16f93fb7-d928-b24e-b79c-39452d73c12b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:00:34.6409209Z\"\n }" headers: cache-control: - no-cache @@ -1677,7 +1665,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 16:05:39 GMT + - Wed, 14 Jun 2023 18:07:38 GMT expires: - '-1' pragma: @@ -1709,14 +1697,14 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/abf94ab3-13a3-40ad-a245-ec56def17c82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b34af9ab-a313-ad40-a245-ec56def17c82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:58:06.6201882Z\"\n }" + string: "{\n \"name\": \"16f93fb7-d928-b24e-b79c-39452d73c12b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:00:34.6409209Z\"\n }" headers: cache-control: - no-cache @@ -1725,7 +1713,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 16:06:09 GMT + - Wed, 14 Jun 2023 18:08:08 GMT expires: - '-1' pragma: @@ -1757,14 +1745,14 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/abf94ab3-13a3-40ad-a245-ec56def17c82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b34af9ab-a313-ad40-a245-ec56def17c82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:58:06.6201882Z\"\n }" + string: "{\n \"name\": \"16f93fb7-d928-b24e-b79c-39452d73c12b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:00:34.6409209Z\"\n }" headers: cache-control: - no-cache @@ -1773,7 +1761,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 16:06:39 GMT + - Wed, 14 Jun 2023 18:08:38 GMT expires: - '-1' pragma: @@ -1805,14 +1793,14 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/abf94ab3-13a3-40ad-a245-ec56def17c82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b34af9ab-a313-ad40-a245-ec56def17c82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:58:06.6201882Z\"\n }" + string: "{\n \"name\": \"16f93fb7-d928-b24e-b79c-39452d73c12b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:00:34.6409209Z\"\n }" headers: cache-control: - no-cache @@ -1821,7 +1809,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 16:07:10 GMT + - Wed, 14 Jun 2023 18:09:08 GMT expires: - '-1' pragma: @@ -1853,14 +1841,14 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/abf94ab3-13a3-40ad-a245-ec56def17c82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b34af9ab-a313-ad40-a245-ec56def17c82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:58:06.6201882Z\"\n }" + string: "{\n \"name\": \"16f93fb7-d928-b24e-b79c-39452d73c12b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:00:34.6409209Z\"\n }" headers: cache-control: - no-cache @@ -1869,7 +1857,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 16:07:40 GMT + - Wed, 14 Jun 2023 18:09:38 GMT expires: - '-1' pragma: @@ -1901,14 +1889,14 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/abf94ab3-13a3-40ad-a245-ec56def17c82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b34af9ab-a313-ad40-a245-ec56def17c82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:58:06.6201882Z\"\n }" + string: "{\n \"name\": \"16f93fb7-d928-b24e-b79c-39452d73c12b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:00:34.6409209Z\"\n }" headers: cache-control: - no-cache @@ -1917,7 +1905,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 16:08:10 GMT + - Wed, 14 Jun 2023 18:10:09 GMT expires: - '-1' pragma: @@ -1949,14 +1937,14 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/abf94ab3-13a3-40ad-a245-ec56def17c82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b34af9ab-a313-ad40-a245-ec56def17c82\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-30T15:58:06.6201882Z\"\n }" + string: "{\n \"name\": \"16f93fb7-d928-b24e-b79c-39452d73c12b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:00:34.6409209Z\"\n }" headers: cache-control: - no-cache @@ -1965,7 +1953,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 16:08:41 GMT + - Wed, 14 Jun 2023 18:10:39 GMT expires: - '-1' pragma: @@ -1997,15 +1985,111 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/abf94ab3-13a3-40ad-a245-ec56def17c82?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b34af9ab-a313-ad40-a245-ec56def17c82\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-30T15:58:06.6201882Z\",\n \"endTime\": - \"2023-03-30T16:08:51.3004483Z\"\n }" + string: "{\n \"name\": \"16f93fb7-d928-b24e-b79c-39452d73c12b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:00:34.6409209Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 18:11:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"16f93fb7-d928-b24e-b79c-39452d73c12b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:00:34.6409209Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 18:11:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b73ff916-28d9-4eb2-b79c-39452d73c12b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"16f93fb7-d928-b24e-b79c-39452d73c12b\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T18:00:34.6409209Z\",\n \"\ + endTime\": \"2023-06-14T18:11:43.5899048Z\"\n }" headers: cache-control: - no-cache @@ -2014,7 +2098,7 @@ interactions: content-type: - application/json date: - - Thu, 30 Mar 2023 16:09:10 GMT + - Wed, 14 Jun 2023 18:12:09 GMT expires: - '-1' pragma: @@ -2046,66 +2130,68 @@ interactions: ParameterSetName: - -g -n --network-plugin-mode --pod-cidr --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.26.0\",\n \"currentKubernetesVersion\": \"1.26.0\",\n \"dnsPrefix\": - \"cliakstest-clitest2oywsn2nu-18153b\",\n \"fqdn\": \"cliakstest-clitest2oywsn2nu-18153b-enauff14.hcp.westcentralus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest2oywsn2nu-18153b-enauff14.portal.hcp.westcentralus.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.26.0\",\n \"currentOrchestratorVersion\": - \"1.26.0\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-202303.13.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"networkPluginMode\": \"overlay\",\n \"networkDataplane\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/c5a5d24a-3c84-4a50-b472-671396bcf329\"\n - \ }\n ]\n },\n \"podCidr\": \"100.64.0.0/10\",\n \"serviceCidr\": - \"172.56.0.0/16\",\n \"dnsServiceIP\": \"172.56.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"100.64.0.0/10\"\n ],\n \"serviceCidrs\": [\n \"172.56.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.26.3\",\n \"currentKubernetesVersion\"\ + : \"1.26.3\",\n \"dnsPrefix\": \"cliakstest-clitestrh7q4nd3q-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestrh7q4nd3q-8ecadf-5084x4a4.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestrh7q4nd3q-8ecadf-5084x4a4.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.26.3\",\n \"currentOrchestratorVersion\": \"1.26.3\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkPluginMode\"\ + : \"overlay\",\n \"networkDataplane\": \"azure\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/3a83ac92-0119-40dc-8523-2d63fd9aca69\"\ + \n }\n ]\n },\n \"podCidr\": \"100.64.0.0/10\",\n \"serviceCidr\"\ + : \"172.56.0.0/16\",\n \"dnsServiceIP\": \"172.56.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"100.64.0.0/10\"\n ],\n\ + \ \"serviceCidrs\": [\n \"172.56.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4448' + - '4447' content-type: - application/json date: - - Thu, 30 Mar 2023 16:09:11 GMT + - Wed, 14 Jun 2023 18:12:10 GMT expires: - '-1' pragma: @@ -2139,8 +2225,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1035-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -2148,17 +2234,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/33495056-8c3e-4938-b6c6-1fa77844bd87?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/efcba79a-456a-48c4-9be5-a31cfbac275d?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 30 Mar 2023 16:09:14 GMT + - Wed, 14 Jun 2023 18:12:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operationresults/33495056-8c3e-4938-b6c6-1fa77844bd87?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operationresults/efcba79a-456a-48c4-9be5-a31cfbac275d?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_browse.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_browse.yaml index 160f1ae3d0c..eb97ba458b4 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_browse.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_browse.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 09:56:26 GMT + - Wed, 14 Jun 2023 18:12:17 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T09:56:26Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_browse","date":"2023-06-14T18:12:14Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '345' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 09:56:26 GMT + - Wed, 14 Jun 2023 18:12:17 GMT expires: - '-1' pragma: @@ -88,19 +88,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesthziyqhocy-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestlisvri533-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -111,67 +110,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1459' + - '1751' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthziyqhocy-79a739\",\n \"fqdn\": \"cliakstest-clitesthziyqhocy-79a739-rfq3ioqz.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthziyqhocy-79a739-rfq3ioqz.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestlisvri533-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestlisvri533-8ecadf-44g1kmy0.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestlisvri533-8ecadf-44g1kmy0.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56eba9c7-9fb8-44b1-ab5a-764545723202?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e767003-a909-4d60-9287-19d7653c4db7?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3268' + - '3596' content-type: - application/json date: - - Wed, 15 Mar 2023 09:56:29 GMT + - Wed, 14 Jun 2023 18:12:24 GMT expires: - '-1' pragma: @@ -183,7 +184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -201,14 +202,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56eba9c7-9fb8-44b1-ab5a-764545723202?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e767003-a909-4d60-9287-19d7653c4db7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c7a9eb56-b89f-b144-ab5a-764545723202\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:30.5848351Z\"\n }" + string: "{\n \"name\": \"0370763e-09a9-604d-9287-19d7653c4db7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:12:24.1589728Z\"\n }" headers: cache-control: - no-cache @@ -217,7 +218,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:57:00 GMT + - Wed, 14 Jun 2023 18:12:24 GMT expires: - '-1' pragma: @@ -249,14 +250,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56eba9c7-9fb8-44b1-ab5a-764545723202?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e767003-a909-4d60-9287-19d7653c4db7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c7a9eb56-b89f-b144-ab5a-764545723202\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:30.5848351Z\"\n }" + string: "{\n \"name\": \"0370763e-09a9-604d-9287-19d7653c4db7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:12:24.1589728Z\"\n }" headers: cache-control: - no-cache @@ -265,7 +266,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:57:30 GMT + - Wed, 14 Jun 2023 18:12:54 GMT expires: - '-1' pragma: @@ -297,14 +298,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56eba9c7-9fb8-44b1-ab5a-764545723202?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e767003-a909-4d60-9287-19d7653c4db7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c7a9eb56-b89f-b144-ab5a-764545723202\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:30.5848351Z\"\n }" + string: "{\n \"name\": \"0370763e-09a9-604d-9287-19d7653c4db7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:12:24.1589728Z\"\n }" headers: cache-control: - no-cache @@ -313,7 +314,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:58:00 GMT + - Wed, 14 Jun 2023 18:13:25 GMT expires: - '-1' pragma: @@ -345,14 +346,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56eba9c7-9fb8-44b1-ab5a-764545723202?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e767003-a909-4d60-9287-19d7653c4db7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c7a9eb56-b89f-b144-ab5a-764545723202\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:30.5848351Z\"\n }" + string: "{\n \"name\": \"0370763e-09a9-604d-9287-19d7653c4db7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:12:24.1589728Z\"\n }" headers: cache-control: - no-cache @@ -361,7 +362,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:58:30 GMT + - Wed, 14 Jun 2023 18:13:54 GMT expires: - '-1' pragma: @@ -393,14 +394,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56eba9c7-9fb8-44b1-ab5a-764545723202?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e767003-a909-4d60-9287-19d7653c4db7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c7a9eb56-b89f-b144-ab5a-764545723202\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:30.5848351Z\"\n }" + string: "{\n \"name\": \"0370763e-09a9-604d-9287-19d7653c4db7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:12:24.1589728Z\"\n }" headers: cache-control: - no-cache @@ -409,7 +410,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:59:00 GMT + - Wed, 14 Jun 2023 18:14:25 GMT expires: - '-1' pragma: @@ -441,14 +442,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56eba9c7-9fb8-44b1-ab5a-764545723202?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e767003-a909-4d60-9287-19d7653c4db7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c7a9eb56-b89f-b144-ab5a-764545723202\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:30.5848351Z\"\n }" + string: "{\n \"name\": \"0370763e-09a9-604d-9287-19d7653c4db7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:12:24.1589728Z\"\n }" headers: cache-control: - no-cache @@ -457,7 +458,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:59:31 GMT + - Wed, 14 Jun 2023 18:14:55 GMT expires: - '-1' pragma: @@ -489,14 +490,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56eba9c7-9fb8-44b1-ab5a-764545723202?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e767003-a909-4d60-9287-19d7653c4db7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c7a9eb56-b89f-b144-ab5a-764545723202\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:30.5848351Z\"\n }" + string: "{\n \"name\": \"0370763e-09a9-604d-9287-19d7653c4db7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:12:24.1589728Z\"\n }" headers: cache-control: - no-cache @@ -505,7 +506,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:01 GMT + - Wed, 14 Jun 2023 18:15:25 GMT expires: - '-1' pragma: @@ -537,15 +538,15 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56eba9c7-9fb8-44b1-ab5a-764545723202?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e767003-a909-4d60-9287-19d7653c4db7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c7a9eb56-b89f-b144-ab5a-764545723202\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T09:56:30.5848351Z\",\n \"endTime\": - \"2023-03-15T10:00:23.7981156Z\"\n }" + string: "{\n \"name\": \"0370763e-09a9-604d-9287-19d7653c4db7\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T18:12:24.1589728Z\",\n \"\ + endTime\": \"2023-06-14T18:15:53.4630754Z\"\n }" headers: cache-control: - no-cache @@ -554,7 +555,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:31 GMT + - Wed, 14 Jun 2023 18:15:58 GMT expires: - '-1' pragma: @@ -586,64 +587,66 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthziyqhocy-79a739\",\n \"fqdn\": \"cliakstest-clitesthziyqhocy-79a739-rfq3ioqz.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthziyqhocy-79a739-rfq3ioqz.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e58b399f-c7f4-4c67-bbae-a6589acc6038\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestlisvri533-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestlisvri533-8ecadf-44g1kmy0.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestlisvri533-8ecadf-44g1kmy0.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c40de9b8-3c14-4bed-ad53-06ba4045bd9f\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4249' content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:31 GMT + - Wed, 14 Jun 2023 18:15:59 GMT expires: - '-1' pragma: @@ -675,64 +678,66 @@ interactions: ParameterSetName: - --resource-group --name --listen-address --listen-port --disable-browser User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthziyqhocy-79a739\",\n \"fqdn\": \"cliakstest-clitesthziyqhocy-79a739-rfq3ioqz.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthziyqhocy-79a739-rfq3ioqz.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e58b399f-c7f4-4c67-bbae-a6589acc6038\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestlisvri533-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestlisvri533-8ecadf-44g1kmy0.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestlisvri533-8ecadf-44g1kmy0.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c40de9b8-3c14-4bed-ad53-06ba4045bd9f\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4249' content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:31 GMT + - Wed, 14 Jun 2023 18:16:03 GMT expires: - '-1' pragma: @@ -766,8 +771,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -775,17 +780,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e79bf063-f101-48ab-ace2-427a3a71b382?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a0ea7cb-b65d-41f2-9e8b-738778bd5be8?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:00:33 GMT + - Wed, 14 Jun 2023 18:16:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/e79bf063-f101-48ab-ace2-427a3a71b382?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/7a0ea7cb-b65d-41f2-9e8b-738778bd5be8?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_control_plane_user_assigned_identity.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_control_plane_user_assigned_identity.yaml old mode 100755 new mode 100644 index 0c35008fca0..b1d9d196f4f --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_control_plane_user_assigned_identity.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_control_plane_user_assigned_identity.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_control_plane_user_assigned_identity","date":"2023-04-26T07:56:21Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_aks_control_plane_user_assigned_identity","date":"2023-06-14T18:16:07Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '360' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Apr 2023 07:56:20 GMT + - Wed, 14 Jun 2023 18:16:09 GMT expires: - '-1' pragma: @@ -42,7 +42,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2"}' + body: '{"location": "westcentralus"}' headers: Accept: - application/json @@ -53,27 +53,27 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '29' Content-Type: - application/json ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003?api-version=2023-01-31 response: body: - string: '{"location":"westus2","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003","name":"cli000003","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001"}}' + string: '{"location":"westcentralus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003","name":"cli000003","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001"}}' headers: cache-control: - no-cache content-length: - - '434' + - '440' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Apr 2023 07:56:22 GMT + - Wed, 14 Jun 2023 18:16:14 GMT expires: - '-1' location: @@ -103,21 +103,21 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_control_plane_user_assigned_identity","date":"2023-04-26T07:56:21Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_aks_control_plane_user_assigned_identity","date":"2023-06-14T18:16:07Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '360' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Apr 2023 07:56:22 GMT + - Wed, 14 Jun 2023 18:16:14 GMT expires: - '-1' pragma: @@ -132,7 +132,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2"}' + body: '{"location": "westcentralus"}' headers: Accept: - application/json @@ -143,27 +143,27 @@ interactions: Connection: - keep-alive Content-Length: - - '23' + - '29' Content-Type: - application/json ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000004?api-version=2023-01-31 response: body: - string: '{"location":"westus2","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000004","name":"cli000004","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001"}}' + string: '{"location":"westcentralus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000004","name":"cli000004","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001"}}' headers: cache-control: - no-cache content-length: - - '434' + - '440' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Apr 2023 07:56:23 GMT + - Wed, 14 Jun 2023 18:16:18 GMT expires: - '-1' location: @@ -175,7 +175,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -193,21 +193,21 @@ interactions: ParameterSetName: - -n -g --address-prefix --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_control_plane_user_assigned_identity","date":"2023-04-26T07:56:21Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_aks_control_plane_user_assigned_identity","date":"2023-06-14T18:16:07Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '360' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Apr 2023 07:56:24 GMT + - Wed, 14 Jun 2023 18:16:25 GMT expires: - '-1' pragma: @@ -222,7 +222,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"addressSpace": {"addressPrefixes": + body: '{"location": "westcentralus", "properties": {"addressSpace": {"addressPrefixes": ["192.168.0.0/16"]}, "enableDdosProtection": false, "enableVmProtection": false, "subnets": [{"name": "clisubnet000006", "properties": {"addressPrefix": "192.168.0.0/24"}}]}}' headers: @@ -235,44 +235,46 @@ interactions: Connection: - keep-alive Content-Length: - - '249' + - '255' Content-Type: - application/json ParameterSetName: - -n -g --address-prefix --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"clivnet000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005\",\r\n - \ \"etag\": \"W/\\\"af0a7eba-d6f9-4092-b682-23eb22e99e1d\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"a4a659ab-9460-4c86-9c1d-bb49b4a2a097\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n - \ {\r\n \"name\": \"clisubnet000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\",\r\n - \ \"etag\": \"W/\\\"af0a7eba-d6f9-4092-b682-23eb22e99e1d\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"192.168.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false\r\n }\r\n}" + string: "{\r\n \"name\": \"clivnet000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005\"\ + ,\r\n \"etag\": \"W/\\\"bcad333f-80bf-4b4b-86d7-2ad2da57160a\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ + \ \"resourceGuid\": \"84c33237-1bea-43e2-acda-677010eac2e0\",\r\n \"\ + addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\ + \r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\"\ + : \"clisubnet000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\"\ + ,\r\n \"etag\": \"W/\\\"bcad333f-80bf-4b4b-86d7-2ad2da57160a\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"addressPrefix\": \"192.168.0.0/24\",\r\n \"delegations\"\ + : [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\ + \n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0b0d6246-59b8-4113-b848-69ad7ed56ad7?api-version=2022-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/81d7aa84-e636-4f10-9a47-7181bc5e5f8a?api-version=2022-01-01 cache-control: - no-cache content-length: - - '1258' + - '1264' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Apr 2023 07:56:24 GMT + - Wed, 14 Jun 2023 18:16:28 GMT expires: - '-1' pragma: @@ -285,12 +287,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 54c4a291-c071-4f92-9998-e06107b103a6 + - dcdfdb46-8eaa-4145-9e31-a188b222324b x-ms-ratelimit-remaining-subscription-writes: - '1199' status: code: 201 - message: Created + message: '' - request: body: null headers: @@ -305,9 +307,9 @@ interactions: ParameterSetName: - -n -g --address-prefix --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0b0d6246-59b8-4113-b848-69ad7ed56ad7?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/81d7aa84-e636-4f10-9a47-7181bc5e5f8a?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -319,7 +321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Apr 2023 07:56:24 GMT + - Wed, 14 Jun 2023 18:16:29 GMT expires: - '-1' pragma: @@ -336,10 +338,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 202880a3-4125-4989-b30b-28787360a8dc + - b411128e-f7e2-4a84-aed1-37e5e422d75e status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -354,9 +356,9 @@ interactions: ParameterSetName: - -n -g --address-prefix --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0b0d6246-59b8-4113-b848-69ad7ed56ad7?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/81d7aa84-e636-4f10-9a47-7181bc5e5f8a?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -368,7 +370,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Apr 2023 07:56:34 GMT + - Wed, 14 Jun 2023 18:16:39 GMT expires: - '-1' pragma: @@ -385,10 +387,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7dbc6556-5ac2-406c-91f8-ba4125f207df + - 287b46e5-feff-4733-b5f7-ead90572fec1 status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -403,36 +405,38 @@ interactions: ParameterSetName: - -n -g --address-prefix --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"clivnet000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005\",\r\n - \ \"etag\": \"W/\\\"4f6e2100-84f7-4a14-8822-f36a5eba52e1\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"a4a659ab-9460-4c86-9c1d-bb49b4a2a097\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n - \ {\r\n \"name\": \"clisubnet000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\",\r\n - \ \"etag\": \"W/\\\"4f6e2100-84f7-4a14-8822-f36a5eba52e1\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"192.168.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false\r\n }\r\n}" + string: "{\r\n \"name\": \"clivnet000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005\"\ + ,\r\n \"etag\": \"W/\\\"e9c5fbf0-0edf-44ad-b03b-74fc39e7324c\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ + \ \"resourceGuid\": \"84c33237-1bea-43e2-acda-677010eac2e0\",\r\n \"\ + addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\ + \r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\"\ + : \"clisubnet000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\"\ + ,\r\n \"etag\": \"W/\\\"e9c5fbf0-0edf-44ad-b03b-74fc39e7324c\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"addressPrefix\": \"192.168.0.0/24\",\r\n \"delegations\"\ + : [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\ + \n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1260' + - '1266' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Apr 2023 07:56:34 GMT + - Wed, 14 Jun 2023 18:16:39 GMT etag: - - W/"4f6e2100-84f7-4a14-8822-f36a5eba52e1" + - W/"e9c5fbf0-0edf-44ad-b03b-74fc39e7324c" expires: - '-1' pragma: @@ -449,10 +453,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c67e5313-99c7-4786-a481-761366122565 + - 954e4b5b-be3a-4c80-918f-dcd06bcfc279 status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -468,8 +472,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -485,7 +489,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Apr 2023 07:56:35 GMT + - Wed, 14 Jun 2023 18:16:40 GMT expires: - '-1' pragma: @@ -514,22 +518,38 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006/providers/Microsoft.Authorization/roleAssignments?$filter=atScope()&api-version=2022-04-01 response: body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-26T05:33:00.7067936Z","updatedOn":"2021-04-26T05:33:00.7067936Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2adf4737-6342-4f63-aeb2-5fcd3426a387","type":"Microsoft.Authorization/roleAssignments","name":"2adf4737-6342-4f63-aeb2-5fcd3426a387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-26T06:09:24.5972802Z","updatedOn":"2021-04-26T06:09:24.5972802Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4572c05-f69f-4e5c-aac6-79afefcf0e2e","type":"Microsoft.Authorization/roleAssignments","name":"c4572c05-f69f-4e5c-aac6-79afefcf0e2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-18T05:18:40.4643436Z","updatedOn":"2021-06-18T05:18:40.4643436Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f926301-cc14-4a88-a3b7-c159d73d01f6","type":"Microsoft.Authorization/roleAssignments","name":"3f926301-cc14-4a88-a3b7-c159d73d01f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:40.4541416Z","updatedOn":"2022-01-25T05:49:40.4541416Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/95e51146-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"95e51146-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:41.6466655Z","updatedOn":"2022-01-25T05:49:41.6466655Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96d4d041-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"96d4d041-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:42.8008295Z","updatedOn":"2022-01-25T05:49:42.8008295Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/978dbc52-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"978dbc52-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:43.7159467Z","updatedOn":"2022-01-25T05:49:43.7159467Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9808753a-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"9808753a-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:44.8535285Z","updatedOn":"2022-01-25T05:49:44.8535285Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9895826c-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"9895826c-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:21.9669611Z","updatedOn":"2022-01-25T06:00:21.9669611Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/143cab45-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"143cab45-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:21.7844500Z","updatedOn":"2022-01-25T06:00:21.7844500Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/143a47b2-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"143a47b2-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:22.8152511Z","updatedOn":"2022-01-25T06:00:22.8152511Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1503a122-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"1503a122-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:22.7549989Z","updatedOn":"2022-01-25T06:00:22.7549989Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14fdfc11-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"14fdfc11-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:47.5002672Z","updatedOn":"2022-01-25T06:00:47.5002672Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23901ba1-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"23901ba1-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:47.9954045Z","updatedOn":"2022-01-25T06:00:47.9954045Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23d4b2c8-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"23d4b2c8-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:48.0124462Z","updatedOn":"2022-01-25T06:00:48.0124462Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23eb1c2a-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"23eb1c2a-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:49.0142818Z","updatedOn":"2022-01-25T06:00:49.0142818Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/248c7804-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"248c7804-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:49.8561822Z","updatedOn":"2022-01-25T06:00:49.8561822Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/25212cc5-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"25212cc5-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:03:00.8232622Z","updatedOn":"2022-01-25T06:03:00.8232622Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/730ae441-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"730ae441-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:03:01.6908492Z","updatedOn":"2022-01-25T06:03:01.6908492Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/73b81c51-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"73b81c51-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:27.0646115Z","updatedOn":"2022-01-25T06:05:27.0646115Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca436279-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"ca436279-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:27.8245772Z","updatedOn":"2022-01-25T06:05:27.8245772Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cad7146c-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cad7146c-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:28.8193427Z","updatedOn":"2022-01-25T06:05:28.8193427Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cb6be874-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cb6be874-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:30.0125029Z","updatedOn":"2022-01-25T06:05:30.0125029Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc20f7f4-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cc20f7f4-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:31.2002633Z","updatedOn":"2022-01-25T06:05:31.2002633Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ccd748dd-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"ccd748dd-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:32.4937030Z","updatedOn":"2022-01-25T06:05:32.4937030Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd4bbd1a-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cd4bbd1a-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:33.6999970Z","updatedOn":"2022-01-25T06:05:33.6999970Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce56964e-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"ce56964e-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:35.3719606Z","updatedOn":"2022-01-25T06:05:35.3719606Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf53c36b-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cf53c36b-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:37.0989473Z","updatedOn":"2022-01-25T06:05:37.0989473Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0537e9f-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d0537e9f-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:37.9186616Z","updatedOn":"2022-01-25T06:05:37.9186616Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0d7c10e-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d0d7c10e-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:39.2245796Z","updatedOn":"2022-01-25T06:05:39.2245796Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d187dc7e-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d187dc7e-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:41.3147495Z","updatedOn":"2022-01-25T06:05:41.3147495Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2d190da-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d2d190da-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:42.0909979Z","updatedOn":"2022-01-25T06:05:42.0909979Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3553305-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d3553305-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T04:11:40.8923959Z","updatedOn":"2023-02-10T04:11:40.8923959Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b9cb4b1-7e07-4127-b87e-47e7ab8ae685","type":"Microsoft.Authorization/roleAssignments","name":"7b9cb4b1-7e07-4127-b87e-47e7ab8ae685"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-18T03:09:33.8702688Z","updatedOn":"2021-09-18T03:09:33.8702688Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99d6fd13-909e-4c52-807e-77f7a5af83c8","type":"Microsoft.Authorization/roleAssignments","name":"99d6fd13-909e-4c52-807e-77f7a5af83c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T17:23:35.8382756Z","updatedOn":"2021-10-08T17:23:35.8382756Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de/providers/Microsoft.Authorization/roleAssignments/ade4333c-4321-4b68-b498-d081d55e2b0c","type":"Microsoft.Authorization/roleAssignments","name":"ade4333c-4321-4b68-b498-d081d55e2b0c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9136073Z","updatedOn":"2019-03-26T22:01:02.9136073Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6f4de15e-9316-4714-a7c4-40c46cf8e067","type":"Microsoft.Authorization/roleAssignments","name":"6f4de15e-9316-4714-a7c4-40c46cf8e067"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:13.2137492Z","updatedOn":"2020-02-25T18:36:13.2137492Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/18fdd87e-1c01-424e-b380-32310f4940c2","type":"Microsoft.Authorization/roleAssignments","name":"18fdd87e-1c01-424e-b380-32310f4940c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:00.4746112Z","updatedOn":"2020-02-25T18:36:00.4746112Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d9bcf58a-6f24-446d-bf60-20ffe5142396","type":"Microsoft.Authorization/roleAssignments","name":"d9bcf58a-6f24-446d-bf60-20ffe5142396"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:55.7490022Z","updatedOn":"2020-02-25T18:35:55.7490022Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6e2b954b-42b2-48e0-997a-622601f0a4b4","type":"Microsoft.Authorization/roleAssignments","name":"6e2b954b-42b2-48e0-997a-622601f0a4b4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:57.9173081Z","updatedOn":"2020-02-25T18:35:57.9173081Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9","type":"Microsoft.Authorization/roleAssignments","name":"8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:23.0673659Z","updatedOn":"2020-02-25T18:36:23.0673659Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d0817c57-3e5b-4363-88b7-52baadd5c362","type":"Microsoft.Authorization/roleAssignments","name":"d0817c57-3e5b-4363-88b7-52baadd5c362"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:31.2596366Z","updatedOn":"2020-02-25T18:36:31.2596366Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0dabf212-a1c7-4af6-ba8b-be045493b368","type":"Microsoft.Authorization/roleAssignments","name":"0dabf212-a1c7-4af6-ba8b-be045493b368"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:52.9188704Z","updatedOn":"2020-02-25T18:35:52.9188704Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d674b853-332e-4437-9ddb-bba8fde7ccce","type":"Microsoft.Authorization/roleAssignments","name":"d674b853-332e-4437-9ddb-bba8fde7ccce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:38.8393742Z","updatedOn":"2020-02-25T18:36:38.8393742Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/00625383-053d-4227-a4db-b098e9bd2289","type":"Microsoft.Authorization/roleAssignments","name":"00625383-053d-4227-a4db-b098e9bd2289"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:05.0954462Z","updatedOn":"2020-02-25T18:36:05.0954462Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/3151fe9c-fcd2-45d3-a256-72fb13b86df5","type":"Microsoft.Authorization/roleAssignments","name":"3151fe9c-fcd2-45d3-a256-72fb13b86df5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-07-06T18:51:23.0753297Z","updatedOn":"2020-07-06T18:51:23.0753297Z","createdBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","updatedBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b3a9e1db-fde1-4ddd-ac1c-91913be67359","type":"Microsoft.Authorization/roleAssignments","name":"b3a9e1db-fde1-4ddd-ac1c-91913be67359"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T21:14:55.1655079Z","updatedOn":"2023-02-28T22:54:18.0450083Z","createdBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","updatedBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6565c104-61e2-5756-96d7-663b216c8b11","type":"Microsoft.Authorization/roleAssignments","name":"6565c104-61e2-5756-96d7-663b216c8b11"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-02-17T00:30:39.4967398Z","updatedOn":"2022-02-17T00:30:39.4967398Z","createdBy":"a4319ad3-20be-4542-8952-685b66e56377","updatedBy":"a4319ad3-20be-4542-8952-685b66e56377","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d8aedac6-3663-42b3-add4-c013b7935fb4","type":"Microsoft.Authorization/roleAssignments","name":"d8aedac6-3663-42b3-add4-c013b7935fb4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-03-02T23:53:39.1630622Z","updatedOn":"2022-03-02T23:53:39.1630622Z","createdBy":"a4319ad3-20be-4542-8952-685b66e56377","updatedBy":"a4319ad3-20be-4542-8952-685b66e56377","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b5f0a13f-ac13-4e45-8588-15f5d9a02b20","type":"Microsoft.Authorization/roleAssignments","name":"b5f0a13f-ac13-4e45-8588-15f5d9a02b20"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:58:05.8353141Z","updatedOn":"2022-03-08T00:58:05.8353141Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/403b97d1-ee0a-4b10-afe1-f36f368d2ced","type":"Microsoft.Authorization/roleAssignments","name":"403b97d1-ee0a-4b10-afe1-f36f368d2ced"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-05-16T23:08:20.8536608Z","updatedOn":"2022-05-16T23:08:20.8536608Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8b338a13-cfa6-42e6-b424-fb375ce9d07c","type":"Microsoft.Authorization/roleAssignments","name":"8b338a13-cfa6-42e6-b424-fb375ce9d07c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-05-17T18:23:54.2264851Z","updatedOn":"2022-05-31T17:20:00.8273681Z","createdBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","updatedBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f0576973-5014-5fe2-b3f2-cf3aace860d6","type":"Microsoft.Authorization/roleAssignments","name":"f0576973-5014-5fe2-b3f2-cf3aace860d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:21.3325762Z","updatedOn":"2022-07-19T00:07:21.3325762Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2697280b-812c-472d-841b-a10a9fe540a5","type":"Microsoft.Authorization/roleAssignments","name":"2697280b-812c-472d-841b-a10a9fe540a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:23.7020980Z","updatedOn":"2022-07-19T00:07:23.7020980Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f4254463-7a28-4d26-b331-5a18c354cbe6","type":"Microsoft.Authorization/roleAssignments","name":"f4254463-7a28-4d26-b331-5a18c354cbe6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:26.4080657Z","updatedOn":"2022-07-19T00:07:26.4080657Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/065a63ba-71cc-4c69-b92b-bc67421e7e64","type":"Microsoft.Authorization/roleAssignments","name":"065a63ba-71cc-4c69-b92b-bc67421e7e64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2023-04-07T05:56:00.4871186Z","updatedOn":"2023-04-24T19:44:20.3477537Z","createdBy":"09a22e59-e99b-42cb-b8b7-2475f66a3007","updatedBy":"09a22e59-e99b-42cb-b8b7-2475f66a3007","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/17a093c4-e4b2-5959-95e3-5894ef6873fb","type":"Microsoft.Authorization/roleAssignments","name":"17a093c4-e4b2-5959-95e3-5894ef6873fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:33.0012805Z","updatedOn":"2021-08-09T18:17:33.0012805Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/01de8fe7-aae0-4d5c-844a-f0bdb8335252","type":"Microsoft.Authorization/roleAssignments","name":"01de8fe7-aae0-4d5c-844a-f0bdb8335252"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:39.9188336Z","updatedOn":"2021-08-09T18:17:39.9188336Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ab2be506-5489-4c1f-add0-f5ed87a10439","type":"Microsoft.Authorization/roleAssignments","name":"ab2be506-5489-4c1f-add0-f5ed87a10439"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:18.2000692Z","updatedOn":"2021-08-24T19:32:18.2000692Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0ce2f3fb-17ea-4193-9081-09aa4b39fec4","type":"Microsoft.Authorization/roleAssignments","name":"0ce2f3fb-17ea-4193-9081-09aa4b39fec4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:36.6775144Z","updatedOn":"2021-08-24T19:32:36.6775144Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2e95b289-99bd-4e68-83de-5433f2a0428c","type":"Microsoft.Authorization/roleAssignments","name":"2e95b289-99bd-4e68-83de-5433f2a0428c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:09.1056400Z","updatedOn":"2021-11-01T22:46:09.1056400Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/82fe7886-5c1b-42c2-9319-7b4d436d8aba","type":"Microsoft.Authorization/roleAssignments","name":"82fe7886-5c1b-42c2-9319-7b4d436d8aba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:14.7527743Z","updatedOn":"2021-11-01T22:46:14.7527743Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/12162b26-25fb-4ef5-a6e8-651446483cb6","type":"Microsoft.Authorization/roleAssignments","name":"12162b26-25fb-4ef5-a6e8-651446483cb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:20.6399869Z","updatedOn":"2021-11-01T22:46:20.6399869Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870","type":"Microsoft.Authorization/roleAssignments","name":"105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-01-26T20:10:13.8998989Z","updatedOn":"2021-01-26T20:10:13.8998989Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b36517ec-61d3-468d-afdc-eceda8adb4ee","type":"Microsoft.Authorization/roleAssignments","name":"b36517ec-61d3-468d-afdc-eceda8adb4ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-02-06T00:13:19.1780775Z","updatedOn":"2021-02-06T00:13:19.1780775Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5216c1ee-4f58-4d36-b379-6c04b1fbd157","type":"Microsoft.Authorization/roleAssignments","name":"5216c1ee-4f58-4d36-b379-6c04b1fbd157"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:26:34.3109215Z","updatedOn":"2021-04-16T18:26:34.3109215Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/7464f8a3-9f55-443b-a3a5-44a31b100cad","type":"Microsoft.Authorization/roleAssignments","name":"7464f8a3-9f55-443b-a3a5-44a31b100cad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:27:56.4446265Z","updatedOn":"2021-04-16T18:27:56.4446265Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8f430c4c-4317-4495-9f01-4f3d4e1ca111","type":"Microsoft.Authorization/roleAssignments","name":"8f430c4c-4317-4495-9f01-4f3d4e1ca111"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-05-04T19:20:06.7695456Z","updatedOn":"2021-05-04T19:20:06.7695456Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa","type":"Microsoft.Authorization/roleAssignments","name":"fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9176787Z","updatedOn":"2019-03-26T22:01:02.9176787Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320","type":"Microsoft.Authorization/roleAssignments","name":"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:49:37.3000523Z","updatedOn":"2019-03-27T00:49:37.3000523Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29","type":"Microsoft.Authorization/roleAssignments","name":"e6e1fffd-83f7-40c7-9f33-e56e2cf75b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:50:08.3039053Z","updatedOn":"2019-03-27T00:50:08.3039053Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12","type":"Microsoft.Authorization/roleAssignments","name":"3d01f56e-ee3a-41ed-a775-0e067546cb12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T23:11:28.9217618Z","updatedOn":"2022-06-28T23:11:28.9217618Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/869183bd-893a-46f9-bb02-45e48b13f1be","type":"Microsoft.Authorization/roleAssignments","name":"869183bd-893a-46f9-bb02-45e48b13f1be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T22:32:46.2324804Z","updatedOn":"2023-02-21T22:32:46.2324804Z","createdBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","updatedBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/df7c1e07-5c2d-4b22-b7b9-fd11a8569db3","type":"Microsoft.Authorization/roleAssignments","name":"df7c1e07-5c2d-4b22-b7b9-fd11a8569db3"}]}' + string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:58.6582166Z","updatedOn":"2020-08-21T16:23:58.6582166Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ab72fbd-e5fe-4a7d-ae20-baad615d688d","type":"Microsoft.Authorization/roleAssignments","name":"8ab72fbd-e5fe-4a7d-ae20-baad615d688d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:59.5326945Z","updatedOn":"2020-08-21T16:23:59.5326945Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4ed77f1d-82a2-4a02-b48e-fa5776870280","type":"Microsoft.Authorization/roleAssignments","name":"4ed77f1d-82a2-4a02-b48e-fa5776870280"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-02T01:52:45.8299382Z","updatedOn":"2020-09-02T01:52:45.8299382Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3e21284b-6bd7-431a-81ae-ccaf56267ab5","type":"Microsoft.Authorization/roleAssignments","name":"3e21284b-6bd7-431a-81ae-ccaf56267ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-07T09:44:47.3865537Z","updatedOn":"2020-09-07T09:44:47.3865537Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79357f85-973d-4621-b1bd-d1ecb645e146","type":"Microsoft.Authorization/roleAssignments","name":"79357f85-973d-4621-b1bd-d1ecb645e146"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-24T00:04:10.5243862Z","updatedOn":"2020-09-24T00:04:10.5243862Z","createdBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","updatedBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78586b2c-fdf9-11ea-9e5e-8851fb3f4911","type":"Microsoft.Authorization/roleAssignments","name":"78586b2c-fdf9-11ea-9e5e-8851fb3f4911"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-29T10:55:39.3762731Z","updatedOn":"2020-09-29T10:55:39.3762731Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41e159ac-411a-4eed-b319-5b92571d2950","type":"Microsoft.Authorization/roleAssignments","name":"41e159ac-411a-4eed-b319-5b92571d2950"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-06T00:33:22.8792900Z","updatedOn":"2020-10-06T00:33:22.8792900Z","createdBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","updatedBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24d0c5e6-0763-11eb-82a0-d636039e345c","type":"Microsoft.Authorization/roleAssignments","name":"24d0c5e6-0763-11eb-82a0-d636039e345c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-14T00:29:42.9981174Z","updatedOn":"2020-10-14T00:29:42.9981174Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6af4ef5-80f6-4303-a641-45689a1646dc","type":"Microsoft.Authorization/roleAssignments","name":"c6af4ef5-80f6-4303-a641-45689a1646dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-16T16:42:17.7175670Z","updatedOn":"2020-10-16T16:42:17.7175670Z","createdBy":"d69d1d49-5dc8-4c8e-afb6-325d83ddcee8","updatedBy":"d69d1d49-5dc8-4c8e-afb6-325d83ddcee8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5854c7a2-cf00-46f9-9cc1-d977f34324df","type":"Microsoft.Authorization/roleAssignments","name":"5854c7a2-cf00-46f9-9cc1-d977f34324df"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-02T09:02:29.2637630Z","updatedOn":"2020-11-02T09:02:29.2637630Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ad1faa8-8680-4dec-a768-050e8349af33","type":"Microsoft.Authorization/roleAssignments","name":"0ad1faa8-8680-4dec-a768-050e8349af33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-03T22:00:44.4523883Z","updatedOn":"2020-11-03T22:00:44.4523883Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/908aa5ac-22a2-413a-9333-fcb0a1ba2c59","type":"Microsoft.Authorization/roleAssignments","name":"908aa5ac-22a2-413a-9333-fcb0a1ba2c59"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-09T14:00:59.0347294Z","updatedOn":"2020-11-09T14:00:59.0347294Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9541f93-ea4a-4b1b-98bf-839fecfcaa22","type":"Microsoft.Authorization/roleAssignments","name":"e9541f93-ea4a-4b1b-98bf-839fecfcaa22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-12-18T08:00:24.9874024Z","updatedOn":"2020-12-18T08:00:24.9874024Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7f60817e-27b5-486b-bbdb-b748bcb752d4","type":"Microsoft.Authorization/roleAssignments","name":"7f60817e-27b5-486b-bbdb-b748bcb752d4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-12-30T11:06:51.2887287Z","updatedOn":"2020-12-30T11:06:51.2887287Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1cbe1756-4a8f-11eb-b753-720008210d90","type":"Microsoft.Authorization/roleAssignments","name":"1cbe1756-4a8f-11eb-b753-720008210d90"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-01-13T06:12:19.1847916Z","updatedOn":"2021-01-13T06:12:19.1847916Z","createdBy":"241cd743-2c33-4860-bd3a-1df659c06eef","updatedBy":"241cd743-2c33-4860-bd3a-1df659c06eef","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/498bf4f6-5566-11eb-a35b-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"498bf4f6-5566-11eb-a35b-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-04T06:52:05.2038586Z","updatedOn":"2021-02-04T06:52:05.2038586Z","createdBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","updatedBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdf6a314-3605-4944-96c1-08b7364dba54","type":"Microsoft.Authorization/roleAssignments","name":"fdf6a314-3605-4944-96c1-08b7364dba54"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T00:37:53.4699042Z","updatedOn":"2021-02-17T00:37:53.4699042Z","createdBy":"e5ad6d43-d6ac-4061-84cc-f7cb826200a0","updatedBy":"e5ad6d43-d6ac-4061-84cc-f7cb826200a0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c06abb18-9697-41f9-9410-ff0ee9b13ab9","type":"Microsoft.Authorization/roleAssignments","name":"c06abb18-9697-41f9-9410-ff0ee9b13ab9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T01:26:55.0758483Z","updatedOn":"2021-02-17T01:26:55.0758483Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9812b416-33c9-4b88-bcdb-6b8406dd319f","type":"Microsoft.Authorization/roleAssignments","name":"9812b416-33c9-4b88-bcdb-6b8406dd319f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T01:38:17.8125104Z","updatedOn":"2021-02-17T01:38:17.8125104Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82e0c83f-b7dd-49f6-b501-ff05951db69d","type":"Microsoft.Authorization/roleAssignments","name":"82e0c83f-b7dd-49f6-b501-ff05951db69d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-19T01:25:51.9967288Z","updatedOn":"2021-02-19T01:25:51.9967288Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2e4ab306-7ae7-4867-8e22-90215bdbeb9a","type":"Microsoft.Authorization/roleAssignments","name":"2e4ab306-7ae7-4867-8e22-90215bdbeb9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-01T21:51:55.4255791Z","updatedOn":"2021-03-01T21:51:55.4255791Z","createdBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","updatedBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36175f2d-f556-464e-a509-19cbb3f45909","type":"Microsoft.Authorization/roleAssignments","name":"36175f2d-f556-464e-a509-19cbb3f45909"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-21T03:42:13.8891609Z","updatedOn":"2020-02-21T03:42:13.8891609Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c41b0416-12e4-49bb-9e35-411e4f409102","type":"Microsoft.Authorization/roleAssignments","name":"c41b0416-12e4-49bb-9e35-411e4f409102"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-22T07:53:45.7192431Z","updatedOn":"2020-04-22T07:53:45.7192431Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d01cbd3-f3e3-4712-95c6-cf07a0224887","type":"Microsoft.Authorization/roleAssignments","name":"0d01cbd3-f3e3-4712-95c6-cf07a0224887"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-30T06:27:35.9310363Z","updatedOn":"2020-04-30T06:27:35.9310363Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a1327e4-100e-43ee-b04e-1403969b805b","type":"Microsoft.Authorization/roleAssignments","name":"6a1327e4-100e-43ee-b04e-1403969b805b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-06-13T06:44:49.9960198Z","updatedOn":"2019-06-13T06:44:49.9960198Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33958269-41a0-400a-91a1-6303d954c8f0","type":"Microsoft.Authorization/roleAssignments","name":"33958269-41a0-400a-91a1-6303d954c8f0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-04-16T02:04:22.4782415Z","updatedOn":"2019-04-16T02:04:22.4782415Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bacdb283-653c-47eb-a578-11743d7898f8","type":"Microsoft.Authorization/roleAssignments","name":"bacdb283-653c-47eb-a578-11743d7898f8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-27T09:09:33.7347978Z","updatedOn":"2020-03-27T09:09:33.7347978Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d355b17-e9d6-47b7-9181-b54ad0083793","type":"Microsoft.Authorization/roleAssignments","name":"6d355b17-e9d6-47b7-9181-b54ad0083793"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-19T02:50:30.0038186Z","updatedOn":"2019-03-19T02:50:30.0038186Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26adec15-a0e4-4b2e-a437-9b545b9723fc","type":"Microsoft.Authorization/roleAssignments","name":"26adec15-a0e4-4b2e-a437-9b545b9723fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-04-17T00:50:00.2288905Z","updatedOn":"2019-04-17T00:50:00.2288905Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e873fd7-4bdb-4df5-a510-c15f3ce99cd6","type":"Microsoft.Authorization/roleAssignments","name":"0e873fd7-4bdb-4df5-a510-c15f3ce99cd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-08T07:40:31.7235048Z","updatedOn":"2020-05-08T07:40:31.7235048Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbfa0c0c-2653-4fb8-b9e5-d41bd96053a7","type":"Microsoft.Authorization/roleAssignments","name":"cbfa0c0c-2653-4fb8-b9e5-d41bd96053a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-11-15T22:27:15.6601349Z","updatedOn":"2018-11-15T22:27:15.6601349Z","createdBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","updatedBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/418847ec-df97-4b29-9711-fc833817e5d6","type":"Microsoft.Authorization/roleAssignments","name":"418847ec-df97-4b29-9711-fc833817e5d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-28T14:20:52.7506898Z","updatedOn":"2019-08-28T14:20:52.7506898Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/715fd118-93b8-4b09-822d-48de5afb21e3","type":"Microsoft.Authorization/roleAssignments","name":"715fd118-93b8-4b09-822d-48de5afb21e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-06T05:22:04.7673784Z","updatedOn":"2019-01-06T05:22:04.7673784Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba5c8600-8cc9-4778-9735-c3d57d26e50d","type":"Microsoft.Authorization/roleAssignments","name":"ba5c8600-8cc9-4778-9735-c3d57d26e50d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-02T16:21:28.6789246Z","updatedOn":"2020-06-02T16:21:28.6789246Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd6bf5d5-fc1c-4fcd-81f3-0d11d3ff9f42","type":"Microsoft.Authorization/roleAssignments","name":"bd6bf5d5-fc1c-4fcd-81f3-0d11d3ff9f42"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-20T08:42:00.9560545Z","updatedOn":"2020-04-20T08:42:00.9560545Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7a41b62f-97d4-4f4c-8bfc-4a8dd708e00f","type":"Microsoft.Authorization/roleAssignments","name":"7a41b62f-97d4-4f4c-8bfc-4a8dd708e00f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-23T03:10:28.2381030Z","updatedOn":"2020-04-23T03:10:28.2381030Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f98d1512-e634-4663-a219-24be2e6bfe1c","type":"Microsoft.Authorization/roleAssignments","name":"f98d1512-e634-4663-a219-24be2e6bfe1c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-15T02:06:03.3308352Z","updatedOn":"2020-04-15T02:06:03.3308352Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6142150e-c404-48e6-a731-fffb36357051","type":"Microsoft.Authorization/roleAssignments","name":"6142150e-c404-48e6-a731-fffb36357051"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-11-16T23:46:13.9660279Z","updatedOn":"2018-11-16T23:46:13.9660279Z","createdBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","updatedBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b66b1ea-89dd-4bc6-8d89-96298648eb40","type":"Microsoft.Authorization/roleAssignments","name":"2b66b1ea-89dd-4bc6-8d89-96298648eb40"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-10-27T00:03:26.2878499Z","updatedOn":"2018-10-27T00:03:26.2878499Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea920230-1aba-4f80-9eef-3fed8216f594","type":"Microsoft.Authorization/roleAssignments","name":"ea920230-1aba-4f80-9eef-3fed8216f594"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-03T09:55:40.2829720Z","updatedOn":"2020-04-03T09:55:40.2829720Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9c2a551-11aa-4b0a-8816-f8511cd46a32","type":"Microsoft.Authorization/roleAssignments","name":"c9c2a551-11aa-4b0a-8816-f8511cd46a32"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-26T21:10:42.2124416Z","updatedOn":"2020-03-26T21:10:42.2124416Z","createdBy":"50ee185f-0eb1-4577-ae14-4ecf59cfa8f7","updatedBy":"50ee185f-0eb1-4577-ae14-4ecf59cfa8f7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d394da6c-4def-47de-8689-791727331c5b","type":"Microsoft.Authorization/roleAssignments","name":"d394da6c-4def-47de-8689-791727331c5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-21T07:34:50.7125622Z","updatedOn":"2020-04-21T07:34:50.7125622Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ddeb2255-2bb6-458a-a891-532e96ae5483","type":"Microsoft.Authorization/roleAssignments","name":"ddeb2255-2bb6-458a-a891-532e96ae5483"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-23T04:07:45.3308845Z","updatedOn":"2020-06-23T04:07:45.3308845Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15d1dab1-b507-11ea-819c-a28e10bedef6","type":"Microsoft.Authorization/roleAssignments","name":"15d1dab1-b507-11ea-819c-a28e10bedef6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-13T00:09:08.8179220Z","updatedOn":"2020-05-13T00:09:08.8179220Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/08a578f0-4875-47d0-8775-946b3a0f2b06","type":"Microsoft.Authorization/roleAssignments","name":"08a578f0-4875-47d0-8775-946b3a0f2b06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-10T23:15:46.8549700Z","updatedOn":"2020-05-10T23:15:46.8549700Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/22d3da65-7681-445e-9080-e748e494676f","type":"Microsoft.Authorization/roleAssignments","name":"22d3da65-7681-445e-9080-e748e494676f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-29T13:30:14.1177711Z","updatedOn":"2019-08-29T13:30:14.1177711Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a2c1014-c1ba-4ae9-a632-90967c28429d","type":"Microsoft.Authorization/roleAssignments","name":"4a2c1014-c1ba-4ae9-a632-90967c28429d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-27T01:26:21.7189691Z","updatedOn":"2020-02-27T01:26:21.7189691Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28808064-5900-11ea-81c8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"28808064-5900-11ea-81c8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-07-03T01:05:25.8863198Z","updatedOn":"2020-07-03T01:05:25.8863198Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46877403-bcc9-11ea-924f-00155d871f03","type":"Microsoft.Authorization/roleAssignments","name":"46877403-bcc9-11ea-924f-00155d871f03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-28T19:57:23.3708745Z","updatedOn":"2019-03-28T19:57:23.3708745Z","createdBy":"66cb050e-bae1-4005-8c4c-0f6dd9b34978","updatedBy":"66cb050e-bae1-4005-8c4c-0f6dd9b34978","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc796cab-2f6b-4099-b9a3-7500f5516153","type":"Microsoft.Authorization/roleAssignments","name":"cc796cab-2f6b-4099-b9a3-7500f5516153"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-30T22:56:44.9793119Z","updatedOn":"2020-03-30T22:56:44.9793119Z","createdBy":"53bb8815-874d-4b05-9953-1158e05aa080","updatedBy":"53bb8815-874d-4b05-9953-1158e05aa080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/000ea275-41c4-40ce-943f-98a8849a56bc","type":"Microsoft.Authorization/roleAssignments","name":"000ea275-41c4-40ce-943f-98a8849a56bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-10T01:13:53.0806696Z","updatedOn":"2020-06-10T01:13:53.0806696Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a584fad9-aab7-11ea-b7e7-00155d4b0124","type":"Microsoft.Authorization/roleAssignments","name":"a584fad9-aab7-11ea-b7e7-00155d4b0124"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-12T00:23:23.9037436Z","updatedOn":"2020-05-12T00:23:23.9037436Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ff95229-981f-40d7-889f-97bc90b8f387","type":"Microsoft.Authorization/roleAssignments","name":"6ff95229-981f-40d7-889f-97bc90b8f387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-09T00:52:52.1315983Z","updatedOn":"2020-06-09T00:52:52.1315983Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7512dec1-86e5-400d-8bc9-f24f181127f3","type":"Microsoft.Authorization/roleAssignments","name":"7512dec1-86e5-400d-8bc9-f24f181127f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-14T04:03:23.9185561Z","updatedOn":"2020-04-14T04:03:23.9185561Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f0f495d-0356-4239-b966-3f47f5f1054a","type":"Microsoft.Authorization/roleAssignments","name":"0f0f495d-0356-4239-b966-3f47f5f1054a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-14T00:42:59.8868253Z","updatedOn":"2020-05-14T00:42:59.8868253Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b3c8d44-237c-410c-a095-52ded7f5cd26","type":"Microsoft.Authorization/roleAssignments","name":"6b3c8d44-237c-410c-a095-52ded7f5cd26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-11T13:26:01.9493491Z","updatedOn":"2020-02-11T13:26:01.9493491Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8fab1ba3-53c2-4b21-9d32-dc89fd061811","type":"Microsoft.Authorization/roleAssignments","name":"8fab1ba3-53c2-4b21-9d32-dc89fd061811"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-03T05:34:39.2163770Z","updatedOn":"2020-04-03T05:34:39.2163770Z","createdBy":"ed4707f4-8b58-42fe-9afd-0045d7a9b262","updatedBy":"ed4707f4-8b58-42fe-9afd-0045d7a9b262","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e4edc2a-dd1f-469b-9a44-f0693866b843","type":"Microsoft.Authorization/roleAssignments","name":"8e4edc2a-dd1f-469b-9a44-f0693866b843"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-20T19:40:09.1141460Z","updatedOn":"2020-02-20T19:40:09.1141460Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4673bf4-97da-4102-9284-2a7315b88a34","type":"Microsoft.Authorization/roleAssignments","name":"d4673bf4-97da-4102-9284-2a7315b88a34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-21T07:19:44.2488168Z","updatedOn":"2020-04-21T07:19:44.2488168Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fadbe071-d757-48fc-b82a-4784249ded10","type":"Microsoft.Authorization/roleAssignments","name":"fadbe071-d757-48fc-b82a-4784249ded10"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-12T17:29:23.0437979Z","updatedOn":"2019-03-12T17:29:23.0437979Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7e76154-c2a7-4419-b73f-e8c6010318c9","type":"Microsoft.Authorization/roleAssignments","name":"a7e76154-c2a7-4419-b73f-e8c6010318c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-16T23:29:48.3209681Z","updatedOn":"2020-03-16T23:29:48.3209681Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3eb4155b-2965-456b-8f00-bca8a13b1684","type":"Microsoft.Authorization/roleAssignments","name":"3eb4155b-2965-456b-8f00-bca8a13b1684"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:49:54.3783181Z","updatedOn":"2022-01-05T01:49:54.3783181Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/25b4b181-6b51-4bce-beb0-1310829e6de3","type":"Microsoft.Authorization/roleAssignments","name":"25b4b181-6b51-4bce-beb0-1310829e6de3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:50:16.7495633Z","updatedOn":"2022-01-05T01:50:16.7495633Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/093e4a08-9393-4b9d-b3a0-011d77557170","type":"Microsoft.Authorization/roleAssignments","name":"093e4a08-9393-4b9d-b3a0-011d77557170"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:50:40.1521378Z","updatedOn":"2022-01-05T01:50:40.1521378Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e5090ae4-6b40-4bab-9d46-482593ec6229","type":"Microsoft.Authorization/roleAssignments","name":"e5090ae4-6b40-4bab-9d46-482593ec6229"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:52:32.8811339Z","updatedOn":"2022-01-05T01:52:32.8811339Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/923a1dab-e203-422e-bb91-c492a895438e","type":"Microsoft.Authorization/roleAssignments","name":"923a1dab-e203-422e-bb91-c492a895438e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T03:31:42.0793122Z","updatedOn":"2022-01-05T03:31:42.0793122Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6cb2e77-1041-4f33-b449-27f9e8738933","type":"Microsoft.Authorization/roleAssignments","name":"d6cb2e77-1041-4f33-b449-27f9e8738933"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T20:29:36.5271689Z","updatedOn":"2022-01-05T20:29:36.5271689Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3267f83c-6e66-11ec-ae40-aa665a565aa7","type":"Microsoft.Authorization/roleAssignments","name":"3267f83c-6e66-11ec-ae40-aa665a565aa7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-08T01:44:09.0575891Z","updatedOn":"2022-01-08T01:44:09.0575891Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/772c985f-7024-11ec-ab61-00224859aac4","type":"Microsoft.Authorization/roleAssignments","name":"772c985f-7024-11ec-ab61-00224859aac4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-10T07:51:08.0345330Z","updatedOn":"2022-01-10T07:51:08.0345330Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/11391e93-71ea-11ec-97af-0022485937da","type":"Microsoft.Authorization/roleAssignments","name":"11391e93-71ea-11ec-97af-0022485937da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-10T19:52:35.8785494Z","updatedOn":"2022-01-10T19:52:35.8785494Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e403838c-88cd-4fc0-b3e8-45c39ad905c1","type":"Microsoft.Authorization/roleAssignments","name":"e403838c-88cd-4fc0-b3e8-45c39ad905c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-17T09:00:11.8306086Z","updatedOn":"2022-01-17T09:00:11.8306086Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2159ffa-089e-4729-a990-364e13db2a65","type":"Microsoft.Authorization/roleAssignments","name":"b2159ffa-089e-4729-a990-364e13db2a65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-18T13:28:29.0699621Z","updatedOn":"2022-01-18T13:28:29.0699621Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81905706-3ec4-4c25-9c82-d4640a0479c3","type":"Microsoft.Authorization/roleAssignments","name":"81905706-3ec4-4c25-9c82-d4640a0479c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-18T20:11:29.5693659Z","updatedOn":"2022-01-18T20:11:29.5693659Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00f40078-a8bd-4bae-9278-ef9de2d5f632","type":"Microsoft.Authorization/roleAssignments","name":"00f40078-a8bd-4bae-9278-ef9de2d5f632"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-19T08:18:43.7411382Z","updatedOn":"2022-01-19T08:18:43.7411382Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82d96cd7-1671-46d7-afc8-9e3d4c56170d","type":"Microsoft.Authorization/roleAssignments","name":"82d96cd7-1671-46d7-afc8-9e3d4c56170d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-19T18:26:48.3434705Z","updatedOn":"2022-01-19T18:26:48.3434705Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0614428a-cde1-4e89-8202-6cb5cd85e6d8","type":"Microsoft.Authorization/roleAssignments","name":"0614428a-cde1-4e89-8202-6cb5cd85e6d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-20T07:46:22.7990066Z","updatedOn":"2022-01-20T07:46:22.7990066Z","createdBy":"0d969ded-9dc4-4176-8b0f-5194740910bf","updatedBy":"0d969ded-9dc4-4176-8b0f-5194740910bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1134cc98-79c5-11ec-9058-ced79d6624f9","type":"Microsoft.Authorization/roleAssignments","name":"1134cc98-79c5-11ec-9058-ced79d6624f9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-21T02:59:53.1540625Z","updatedOn":"2022-01-21T02:59:53.1540625Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2b558e6-2979-4a34-ba92-81e51afae60d","type":"Microsoft.Authorization/roleAssignments","name":"e2b558e6-2979-4a34-ba92-81e51afae60d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-21T03:51:31.7700381Z","updatedOn":"2022-01-21T03:51:31.7700381Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/774b38ec-8425-4659-9c1c-3662aa0d128a","type":"Microsoft.Authorization/roleAssignments","name":"774b38ec-8425-4659-9c1c-3662aa0d128a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-24T08:18:11.4759466Z","updatedOn":"2022-01-24T08:18:11.4759466Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a6b5b99-dbf6-4270-8c73-cc3e5808e147","type":"Microsoft.Authorization/roleAssignments","name":"9a6b5b99-dbf6-4270-8c73-cc3e5808e147"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-24T08:32:50.8732169Z","updatedOn":"2022-01-24T08:32:50.8732169Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/11d67934-0c51-4dad-8284-f6aced7c815c","type":"Microsoft.Authorization/roleAssignments","name":"11d67934-0c51-4dad-8284-f6aced7c815c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T07:03:14.4901261Z","updatedOn":"2022-01-25T07:03:14.4901261Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dcacb94f-7dac-11ec-be41-c6ce4e0f899a","type":"Microsoft.Authorization/roleAssignments","name":"dcacb94f-7dac-11ec-be41-c6ce4e0f899a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T20:35:15.6769413Z","updatedOn":"2022-01-25T20:35:15.6769413Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9e8bf969-d76d-4923-84d9-d9f98b267d71","type":"Microsoft.Authorization/roleAssignments","name":"9e8bf969-d76d-4923-84d9-d9f98b267d71"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-26T15:50:53.7946290Z","updatedOn":"2022-01-26T15:50:53.7946290Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bdcc5219-7ebf-11ec-bada-00224878d5c3","type":"Microsoft.Authorization/roleAssignments","name":"bdcc5219-7ebf-11ec-bada-00224878d5c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T02:28:59.3221529Z","updatedOn":"2022-01-27T02:28:59.3221529Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28cd45d5-8a0f-4b35-8ee3-f82463ccdf3a","type":"Microsoft.Authorization/roleAssignments","name":"28cd45d5-8a0f-4b35-8ee3-f82463ccdf3a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T02:38:11.8679643Z","updatedOn":"2022-01-27T02:38:11.8679643Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3364749d-7f1a-11ec-9b35-e6e10709004e","type":"Microsoft.Authorization/roleAssignments","name":"3364749d-7f1a-11ec-9b35-e6e10709004e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T03:21:28.9388159Z","updatedOn":"2022-01-27T03:21:28.9388159Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5706d36-4da0-4a7e-abdb-20e8ce5c709d","type":"Microsoft.Authorization/roleAssignments","name":"f5706d36-4da0-4a7e-abdb-20e8ce5c709d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T22:45:56.1614375Z","updatedOn":"2022-01-27T22:45:56.1614375Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8757d35e-c05f-4b14-9b69-94880cf3c630","type":"Microsoft.Authorization/roleAssignments","name":"8757d35e-c05f-4b14-9b69-94880cf3c630"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-31T20:16:07.1248292Z","updatedOn":"2022-01-31T20:16:07.1248292Z","createdBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","updatedBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f16a76e-82d2-11ec-b26c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"9f16a76e-82d2-11ec-b26c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-31T23:19:58.8275488Z","updatedOn":"2022-01-31T23:19:58.8275488Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2192301f-06dd-491e-8e34-93a3cf5c0197","type":"Microsoft.Authorization/roleAssignments","name":"2192301f-06dd-491e-8e34-93a3cf5c0197"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-01T22:56:44.2373253Z","updatedOn":"2022-02-01T22:56:44.2373253Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/395d775a-83b2-11ec-8917-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"395d775a-83b2-11ec-8917-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-01T23:17:51.6753012Z","updatedOn":"2022-02-01T23:17:51.6753012Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb3685a8-f064-431a-8ab6-21f276ae0e4d","type":"Microsoft.Authorization/roleAssignments","name":"fb3685a8-f064-431a-8ab6-21f276ae0e4d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-03T23:18:19.3769285Z","updatedOn":"2022-02-03T23:18:19.3769285Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ff008d0-8547-11ec-87de-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"8ff008d0-8547-11ec-87de-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-05T12:04:01.3658712Z","updatedOn":"2022-02-05T12:04:01.3658712Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3fb26d3-867b-11ec-8bb2-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"b3fb26d3-867b-11ec-8bb2-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-07T19:33:07.4702067Z","updatedOn":"2022-02-07T19:33:07.4702067Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c80d3f4a-065e-4e11-b0a1-9a04f4384563","type":"Microsoft.Authorization/roleAssignments","name":"c80d3f4a-065e-4e11-b0a1-9a04f4384563"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-07T20:03:20.2169334Z","updatedOn":"2022-02-07T20:03:20.2169334Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd6cdc49-8850-11ec-b237-027f0b78f6ab","type":"Microsoft.Authorization/roleAssignments","name":"fd6cdc49-8850-11ec-b237-027f0b78f6ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-08T08:00:07.9076727Z","updatedOn":"2022-02-08T08:00:07.9076727Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cdb4bce2-b187-4057-9fa4-ead6eeb4b442","type":"Microsoft.Authorization/roleAssignments","name":"cdb4bce2-b187-4057-9fa4-ead6eeb4b442"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-08T13:12:19.0792698Z","updatedOn":"2022-02-08T13:12:19.0792698Z","createdBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","updatedBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bccb433c-88e0-11ec-9c26-2e7a733c8e34","type":"Microsoft.Authorization/roleAssignments","name":"bccb433c-88e0-11ec-9c26-2e7a733c8e34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-08T16:00:23.2107710Z","updatedOn":"2022-02-08T16:00:23.2107710Z","createdBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","updatedBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/376f32c6-88f8-11ec-b700-2e7a733c8e34","type":"Microsoft.Authorization/roleAssignments","name":"376f32c6-88f8-11ec-b700-2e7a733c8e34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T08:35:07.6001520Z","updatedOn":"2022-02-11T08:35:07.6001520Z","createdBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","updatedBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8422aed5-8b15-11ec-8a3f-6045bd7c1155","type":"Microsoft.Authorization/roleAssignments","name":"8422aed5-8b15-11ec-8a3f-6045bd7c1155"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T20:16:24.1407485Z","updatedOn":"2022-02-11T20:16:24.1407485Z","createdBy":"c518df35-7e98-4c84-9222-b902d191061e","updatedBy":"c518df35-7e98-4c84-9222-b902d191061e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88cc3504-a850-43bb-a42e-326e300ac247","type":"Microsoft.Authorization/roleAssignments","name":"88cc3504-a850-43bb-a42e-326e300ac247"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T20:17:44.8524024Z","updatedOn":"2022-02-11T20:17:44.8524024Z","createdBy":"c518df35-7e98-4c84-9222-b902d191061e","updatedBy":"c518df35-7e98-4c84-9222-b902d191061e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/270f86d3-cdff-4d1c-8dee-20cbe11a28e0","type":"Microsoft.Authorization/roleAssignments","name":"270f86d3-cdff-4d1c-8dee-20cbe11a28e0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T20:17:45.1659184Z","updatedOn":"2022-02-11T20:17:45.1659184Z","createdBy":"c518df35-7e98-4c84-9222-b902d191061e","updatedBy":"c518df35-7e98-4c84-9222-b902d191061e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a536c303-c7bb-4556-b252-b8faa982403e","type":"Microsoft.Authorization/roleAssignments","name":"a536c303-c7bb-4556-b252-b8faa982403e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-13T11:41:48.7463966Z","updatedOn":"2022-02-13T11:41:48.7463966Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed14b636-8cc1-11ec-b294-002248785c41","type":"Microsoft.Authorization/roleAssignments","name":"ed14b636-8cc1-11ec-b294-002248785c41"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.6113342Z","updatedOn":"2022-02-14T09:22:36.6113342Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca42541d-172f-4c3a-8286-8e260e99050e","type":"Microsoft.Authorization/roleAssignments","name":"ca42541d-172f-4c3a-8286-8e260e99050e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.6424591Z","updatedOn":"2022-02-14T09:22:36.6424591Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8bcdc0e8-d9c2-478a-3363-0965130c9559","type":"Microsoft.Authorization/roleAssignments","name":"8bcdc0e8-d9c2-478a-3363-0965130c9559"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.6556489Z","updatedOn":"2022-02-14T09:22:36.6556489Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdb4d934-dee6-4e1d-d817-9670b25e7200","type":"Microsoft.Authorization/roleAssignments","name":"fdb4d934-dee6-4e1d-d817-9670b25e7200"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.7217526Z","updatedOn":"2022-02-14T09:22:36.7217526Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e9e51fa-3ef2-46c7-ae2b-8a418b68637a","type":"Microsoft.Authorization/roleAssignments","name":"4e9e51fa-3ef2-46c7-ae2b-8a418b68637a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T15:34:50.0327527Z","updatedOn":"2022-02-14T15:34:50.0327527Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5579469-8dab-11ec-aa17-000d3a044b73","type":"Microsoft.Authorization/roleAssignments","name":"a5579469-8dab-11ec-aa17-000d3a044b73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T19:37:05.5912525Z","updatedOn":"2022-02-14T19:37:05.5912525Z","createdBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","updatedBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7aa99c5e-8dcd-11ec-931e-3ee49ac9ec9b","type":"Microsoft.Authorization/roleAssignments","name":"7aa99c5e-8dcd-11ec-931e-3ee49ac9ec9b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T23:14:13.9732126Z","updatedOn":"2022-02-14T23:14:13.9732126Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c604be80-2bb9-48b0-a450-3565ed763f26","type":"Microsoft.Authorization/roleAssignments","name":"c604be80-2bb9-48b0-a450-3565ed763f26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-15T08:25:10.2747643Z","updatedOn":"2022-02-15T08:25:10.2747643Z","createdBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","updatedBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9baa19c-8e38-11ec-8406-000d3a0dff4f","type":"Microsoft.Authorization/roleAssignments","name":"c9baa19c-8e38-11ec-8406-000d3a0dff4f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-15T16:27:03.8176136Z","updatedOn":"2022-02-15T16:27:03.8176136Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1efc7bb8-8e7c-11ec-aba3-5e309da6350b","type":"Microsoft.Authorization/roleAssignments","name":"1efc7bb8-8e7c-11ec-aba3-5e309da6350b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-16T01:17:47.1475801Z","updatedOn":"2022-02-16T01:17:47.1475801Z","createdBy":"20d1aaf0-7699-4c7f-8b08-6e5306613d73","updatedBy":"20d1aaf0-7699-4c7f-8b08-6e5306613d73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3fb9602f-8ec6-11ec-9d90-000d3a6d0522","type":"Microsoft.Authorization/roleAssignments","name":"3fb9602f-8ec6-11ec-9d90-000d3a6d0522"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-16T04:06:52.4519397Z","updatedOn":"2022-02-16T04:06:52.4519397Z","createdBy":"f986308d-63d6-4619-a4f5-851a3bf675cb","updatedBy":"f986308d-63d6-4619-a4f5-851a3bf675cb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/de0a2a00-8edd-11ec-89d6-62e3b50ea3e8","type":"Microsoft.Authorization/roleAssignments","name":"de0a2a00-8edd-11ec-89d6-62e3b50ea3e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-17T07:47:28.0184571Z","updatedOn":"2022-02-17T07:47:28.0184571Z","createdBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","updatedBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/034bc00f-181a-4058-a66b-793a86a3f1d9","type":"Microsoft.Authorization/roleAssignments","name":"034bc00f-181a-4058-a66b-793a86a3f1d9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-18T02:41:56.8572427Z","updatedOn":"2022-02-18T02:41:56.8572427Z","createdBy":"8611abc5-1512-49e0-a6d2-0624ffaf5ef3","updatedBy":"8611abc5-1512-49e0-a6d2-0624ffaf5ef3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/563ddb12-9064-11ec-b259-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"563ddb12-9064-11ec-b259-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-18T02:44:45.0089883Z","updatedOn":"2022-02-18T02:44:45.0089883Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba625e10-9064-11ec-a4c4-000d3a6fbef8","type":"Microsoft.Authorization/roleAssignments","name":"ba625e10-9064-11ec-a4c4-000d3a6fbef8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-21T12:55:18.9707919Z","updatedOn":"2022-02-21T12:55:18.9707919Z","createdBy":"74dcd4fc-6c01-4de6-85b9-6cd3d0b977a0","updatedBy":"74dcd4fc-6c01-4de6-85b9-6cd3d0b977a0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84d1b0a8-9315-11ec-a625-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"84d1b0a8-9315-11ec-a625-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-22T12:02:41.9576481Z","updatedOn":"2022-02-22T12:02:41.9576481Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7ff802f-d555-4740-9446-decc876041c2","type":"Microsoft.Authorization/roleAssignments","name":"f7ff802f-d555-4740-9446-decc876041c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-22T17:40:50.0656641Z","updatedOn":"2022-02-22T17:40:50.0656641Z","createdBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","updatedBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9330f714-9406-11ec-839f-e6018ea1a0b8","type":"Microsoft.Authorization/roleAssignments","name":"9330f714-9406-11ec-839f-e6018ea1a0b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-23T14:56:26.1925430Z","updatedOn":"2022-02-23T14:56:26.1925430Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5f94f93-94b8-11ec-a7aa-ce34ee50a641","type":"Microsoft.Authorization/roleAssignments","name":"c5f94f93-94b8-11ec-a7aa-ce34ee50a641"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-23T19:18:46.5080793Z","updatedOn":"2022-02-23T19:18:46.5080793Z","createdBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","updatedBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6bd539ac-94dd-11ec-af01-8c8590c99d20","type":"Microsoft.Authorization/roleAssignments","name":"6bd539ac-94dd-11ec-af01-8c8590c99d20"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-24T18:48:42.1150127Z","updatedOn":"2022-02-24T18:48:42.1150127Z","createdBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","updatedBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/75d2b821-a297-4959-9c53-d5375978304a","type":"Microsoft.Authorization/roleAssignments","name":"75d2b821-a297-4959-9c53-d5375978304a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-25T19:43:06.0365566Z","updatedOn":"2022-02-25T19:43:06.0365566Z","createdBy":"c2191082-b1ca-4fcd-9645-551452f60be4","updatedBy":"c2191082-b1ca-4fcd-9645-551452f60be4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f5fb238-9673-11ec-87ea-2ef8edc450dc","type":"Microsoft.Authorization/roleAssignments","name":"2f5fb238-9673-11ec-87ea-2ef8edc450dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-28T03:13:54.6616360Z","updatedOn":"2022-02-28T03:13:54.6616360Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/073872ac-f374-444a-ae66-fb821b8532a4","type":"Microsoft.Authorization/roleAssignments","name":"073872ac-f374-444a-ae66-fb821b8532a4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-28T16:39:27.8396295Z","updatedOn":"2022-02-28T16:39:27.8396295Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/60241af8-7226-485e-a261-c69b2cf152c4","type":"Microsoft.Authorization/roleAssignments","name":"60241af8-7226-485e-a261-c69b2cf152c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-01T13:58:58.0676838Z","updatedOn":"2022-03-01T13:58:58.0676838Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1e29644f-ada5-4d30-9c40-a406758409f1","type":"Microsoft.Authorization/roleAssignments","name":"1e29644f-ada5-4d30-9c40-a406758409f1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-03T10:22:00.9954003Z","updatedOn":"2022-03-03T10:22:00.9954003Z","createdBy":"08de6591-dec9-4255-ab17-d6919151fadd","updatedBy":"08de6591-dec9-4255-ab17-d6919151fadd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c30b494c-9adb-11ec-ae58-4a123144b5f6","type":"Microsoft.Authorization/roleAssignments","name":"c30b494c-9adb-11ec-ae58-4a123144b5f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-03T15:10:52.8750196Z","updatedOn":"2022-03-03T15:10:52.8750196Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1d1f5e12-9b04-11ec-bf9f-000d3ac561f6","type":"Microsoft.Authorization/roleAssignments","name":"1d1f5e12-9b04-11ec-bf9f-000d3ac561f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T03:22:58.4512023Z","updatedOn":"2022-03-07T03:22:58.4512023Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e234c5f8-9dc5-11ec-993d-0022485937da","type":"Microsoft.Authorization/roleAssignments","name":"e234c5f8-9dc5-11ec-993d-0022485937da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T11:02:56.8448863Z","updatedOn":"2022-03-07T11:02:56.8448863Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/258a4631-9e06-11ec-9362-98e7f4beee90","type":"Microsoft.Authorization/roleAssignments","name":"258a4631-9e06-11ec-9362-98e7f4beee90"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T22:29:31.2927512Z","updatedOn":"2022-03-07T22:29:31.2927512Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef654596-33a1-443e-8a7d-48c0aa96bfcb","type":"Microsoft.Authorization/roleAssignments","name":"ef654596-33a1-443e-8a7d-48c0aa96bfcb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T23:16:52.1440710Z","updatedOn":"2022-03-07T23:16:52.1440710Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3aea3844-0bdd-4673-9a4e-444433ce4230","type":"Microsoft.Authorization/roleAssignments","name":"3aea3844-0bdd-4673-9a4e-444433ce4230"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:15:35.5981652Z","updatedOn":"2022-03-08T00:15:35.5981652Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":"wenxuan-azure-cli"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be01fdd4-3bdf-4a61-8884-59ffb6e82843","type":"Microsoft.Authorization/roleAssignments","name":"be01fdd4-3bdf-4a61-8884-59ffb6e82843"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:22:25.1920031Z","updatedOn":"2022-03-08T00:22:25.1920031Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1433f18e-b3fc-4984-bd98-c93d9244fb18","type":"Microsoft.Authorization/roleAssignments","name":"1433f18e-b3fc-4984-bd98-c93d9244fb18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T18:56:05.1276019Z","updatedOn":"2022-03-08T18:56:05.1276019Z","createdBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","updatedBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67554406-9f11-11ec-b5da-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"67554406-9f11-11ec-b5da-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-09T00:02:42.6050341Z","updatedOn":"2022-03-09T00:02:42.6050341Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/398c74fc-afb6-47dd-bf7a-efcff5dc1b86","type":"Microsoft.Authorization/roleAssignments","name":"398c74fc-afb6-47dd-bf7a-efcff5dc1b86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-05T14:05:58.2716050Z","updatedOn":"2021-04-05T14:05:58.2716050Z","createdBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","updatedBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a9b0e6a-9618-11eb-879a-88e9fe77e044","type":"Microsoft.Authorization/roleAssignments","name":"0a9b0e6a-9618-11eb-879a-88e9fe77e044"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-05T17:37:43.7040494Z","updatedOn":"2021-04-05T17:37:43.7040494Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a04b0948-9635-11eb-b395-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"a04b0948-9635-11eb-b395-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T02:24:39.3826587Z","updatedOn":"2021-04-06T02:24:39.3826587Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c21611b-a840-4166-b9f4-8cec90c17841","type":"Microsoft.Authorization/roleAssignments","name":"6c21611b-a840-4166-b9f4-8cec90c17841"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T02:24:39.4154930Z","updatedOn":"2021-04-06T02:24:39.4154930Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/925d4876-8fde-4334-8f84-4ce52ca7108e","type":"Microsoft.Authorization/roleAssignments","name":"925d4876-8fde-4334-8f84-4ce52ca7108e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T04:46:32.1029699Z","updatedOn":"2021-04-06T04:46:32.1029699Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0dfdb837-9693-11eb-b629-b6178ece78ec","type":"Microsoft.Authorization/roleAssignments","name":"0dfdb837-9693-11eb-b629-b6178ece78ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T11:25:43.5702772Z","updatedOn":"2021-04-06T11:25:43.5702772Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/958a1320-4346-46fb-9722-828af239eb03","type":"Microsoft.Authorization/roleAssignments","name":"958a1320-4346-46fb-9722-828af239eb03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T20:54:21.5921112Z","updatedOn":"2021-04-06T20:54:21.5921112Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42ad5638-971a-11eb-abf6-00155d3a4c00","type":"Microsoft.Authorization/roleAssignments","name":"42ad5638-971a-11eb-abf6-00155d3a4c00"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T23:22:50.4425724Z","updatedOn":"2021-04-06T23:22:50.4425724Z","createdBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","updatedBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00a90f2a-972f-11eb-9121-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"00a90f2a-972f-11eb-9121-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T00:26:49.7250016Z","updatedOn":"2021-04-07T00:26:49.7250016Z","createdBy":"88f18750-8181-4579-8eff-eb44f510655c","updatedBy":"88f18750-8181-4579-8eff-eb44f510655c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dca2df37-fdd1-49dc-a1de-31a70d62e098","type":"Microsoft.Authorization/roleAssignments","name":"dca2df37-fdd1-49dc-a1de-31a70d62e098"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T09:10:47.4905668Z","updatedOn":"2021-04-07T09:10:47.4905668Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a5dbdef-0896-48cd-a325-318e807ea133","type":"Microsoft.Authorization/roleAssignments","name":"8a5dbdef-0896-48cd-a325-318e807ea133"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T19:55:01.1984055Z","updatedOn":"2021-04-07T19:55:01.1984055Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2301d942-97db-11eb-8bf8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2301d942-97db-11eb-8bf8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T22:36:06.7954601Z","updatedOn":"2021-04-07T22:36:06.7954601Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6070c7de-7571-4d55-8b2f-85285b7d9675","type":"Microsoft.Authorization/roleAssignments","name":"6070c7de-7571-4d55-8b2f-85285b7d9675"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-13T03:07:16.5183912Z","updatedOn":"2021-04-13T03:07:16.5183912Z","createdBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","updatedBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59402850-9c05-11eb-8744-20c9d0477c8f","type":"Microsoft.Authorization/roleAssignments","name":"59402850-9c05-11eb-8744-20c9d0477c8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-14T19:16:13.6465266Z","updatedOn":"2021-04-14T19:16:13.6465266Z","createdBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","updatedBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e04efa46-9d55-11eb-9723-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e04efa46-9d55-11eb-9723-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-15T02:29:06.6768532Z","updatedOn":"2021-04-15T02:29:06.6768532Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/19165f29-858f-47fa-befe-cd1babe9df75","type":"Microsoft.Authorization/roleAssignments","name":"19165f29-858f-47fa-befe-cd1babe9df75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-19T08:59:20.4071341Z","updatedOn":"2021-04-19T08:59:20.4071341Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88489205-a0ed-11eb-996c-1a21256cebfc","type":"Microsoft.Authorization/roleAssignments","name":"88489205-a0ed-11eb-996c-1a21256cebfc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-19T22:35:57.5324093Z","updatedOn":"2021-04-19T22:35:57.5324093Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b85c442-a15f-11eb-8a7c-00155d871f03","type":"Microsoft.Authorization/roleAssignments","name":"9b85c442-a15f-11eb-8a7c-00155d871f03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-21T12:31:21.7286225Z","updatedOn":"2021-04-21T12:31:21.7286225Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7770db7c-a29d-11eb-b48f-42472d33150a","type":"Microsoft.Authorization/roleAssignments","name":"7770db7c-a29d-11eb-b48f-42472d33150a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-11T02:49:35.7701861Z","updatedOn":"2021-05-11T02:49:35.7701861Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83c25ed3-b203-11eb-8150-56db513b8477","type":"Microsoft.Authorization/roleAssignments","name":"83c25ed3-b203-11eb-8150-56db513b8477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-12T06:15:49.6202169Z","updatedOn":"2021-05-12T06:15:49.6202169Z","createdBy":"069015af-8ac7-4304-a60f-69a8a50309be","updatedBy":"069015af-8ac7-4304-a60f-69a8a50309be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ecced22-b2e9-11eb-bdc4-da23ac480b85","type":"Microsoft.Authorization/roleAssignments","name":"7ecced22-b2e9-11eb-bdc4-da23ac480b85"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-18T02:08:43.3533001Z","updatedOn":"2021-05-18T02:08:43.3533001Z","createdBy":"069015af-8ac7-4304-a60f-69a8a50309be","updatedBy":"069015af-8ac7-4304-a60f-69a8a50309be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8582f67-b77d-11eb-bffb-52ac6a27ca65","type":"Microsoft.Authorization/roleAssignments","name":"f8582f67-b77d-11eb-bffb-52ac6a27ca65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-24T05:29:46.7966317Z","updatedOn":"2021-05-24T05:29:46.7966317Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d7389dd2-ee8e-4d34-8703-b304716b1761","type":"Microsoft.Authorization/roleAssignments","name":"d7389dd2-ee8e-4d34-8703-b304716b1761"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-01T09:38:20.8655603Z","updatedOn":"2021-06-01T09:38:20.8655603Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18455841-c2bd-11eb-80b3-9a0a2a9b0ea3","type":"Microsoft.Authorization/roleAssignments","name":"18455841-c2bd-11eb-80b3-9a0a2a9b0ea3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-03T16:55:35.8333154Z","updatedOn":"2021-06-03T16:55:35.8333154Z","createdBy":"ae4622a7-bde9-4bca-9599-2d18571bfeba","updatedBy":"ae4622a7-bde9-4bca-9599-2d18571bfeba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83e4c5e8-c48c-11eb-b991-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"83e4c5e8-c48c-11eb-b991-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-07T22:29:50.4448757Z","updatedOn":"2021-06-07T22:29:50.4448757Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/decef2d4-c7df-11eb-a83e-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"decef2d4-c7df-11eb-a83e-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-08T21:20:41.4426747Z","updatedOn":"2021-06-08T21:20:41.4426747Z","createdBy":"39fc5957-4b28-4245-a1ca-0c05574dd32b","updatedBy":"39fc5957-4b28-4245-a1ca-0c05574dd32b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/607bf63e-c89f-11eb-8348-eecc6a504bf0","type":"Microsoft.Authorization/roleAssignments","name":"607bf63e-c89f-11eb-8348-eecc6a504bf0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T14:35:18.7357331Z","updatedOn":"2021-06-15T14:35:18.7357331Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1151242-c950-413d-a273-4109579eac8a","type":"Microsoft.Authorization/roleAssignments","name":"b1151242-c950-413d-a273-4109579eac8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T14:35:18.7937546Z","updatedOn":"2021-06-15T14:35:18.7937546Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dc21aa69-a99c-435e-a256-64885b24ec34","type":"Microsoft.Authorization/roleAssignments","name":"dc21aa69-a99c-435e-a256-64885b24ec34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T15:23:52.9337722Z","updatedOn":"2021-06-15T15:23:52.9337722Z","createdBy":"1faabf99-27a1-4d2e-9e28-295923ee7a14","updatedBy":"1faabf99-27a1-4d2e-9e28-295923ee7a14","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1f9ad80-cded-11eb-81da-86d728f15930","type":"Microsoft.Authorization/roleAssignments","name":"b1f9ad80-cded-11eb-81da-86d728f15930"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-24T01:15:20.6480687Z","updatedOn":"2021-06-24T01:15:20.6480687Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3fe463a-d489-11eb-bcf6-88e9fe77d9d9","type":"Microsoft.Authorization/roleAssignments","name":"a3fe463a-d489-11eb-bcf6-88e9fe77d9d9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T00:02:18.3011415Z","updatedOn":"2021-06-29T00:02:18.3011415Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ba1c6ba-8f43-4749-9af5-b852adc24ec4","type":"Microsoft.Authorization/roleAssignments","name":"6ba1c6ba-8f43-4749-9af5-b852adc24ec4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T00:02:18.3104039Z","updatedOn":"2021-06-29T00:02:18.3104039Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1b67008-79aa-4059-a618-9f31a59e17ad","type":"Microsoft.Authorization/roleAssignments","name":"f1b67008-79aa-4059-a618-9f31a59e17ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T03:26:28.3273724Z","updatedOn":"2021-06-29T03:26:28.3273724Z","createdBy":"5dc8b685-8bb3-4140-b266-34da5be22de8","updatedBy":"5dc8b685-8bb3-4140-b266-34da5be22de8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cacd20e2-d889-11eb-8faf-365b90995dcc","type":"Microsoft.Authorization/roleAssignments","name":"cacd20e2-d889-11eb-8faf-365b90995dcc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T16:47:51.6512150Z","updatedOn":"2021-07-02T16:47:51.6512150Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ce776fa-db55-11eb-9c3e-0ee0ced9a7ad","type":"Microsoft.Authorization/roleAssignments","name":"3ce776fa-db55-11eb-9c3e-0ee0ced9a7ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T18:02:58.7913777Z","updatedOn":"2021-07-02T18:02:58.7913777Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb92467e-db5f-11eb-93bb-52bfc6c4d939","type":"Microsoft.Authorization/roleAssignments","name":"bb92467e-db5f-11eb-93bb-52bfc6c4d939"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T18:34:50.6034803Z","updatedOn":"2021-07-02T18:34:50.6034803Z","createdBy":"88f18750-8181-4579-8eff-eb44f510655c","updatedBy":"88f18750-8181-4579-8eff-eb44f510655c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e537d7a-5a2e-419c-8c51-0f55adab0793","type":"Microsoft.Authorization/roleAssignments","name":"4e537d7a-5a2e-419c-8c51-0f55adab0793"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-12T18:22:41.0622548Z","updatedOn":"2021-07-12T18:22:41.0622548Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a840989-f344-4bca-97c4-0f91fa1537c6","type":"Microsoft.Authorization/roleAssignments","name":"0a840989-f344-4bca-97c4-0f91fa1537c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-14T19:03:30.7799600Z","updatedOn":"2021-07-14T19:03:30.7799600Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d4385bd-e4d6-11eb-9e75-0a4737195831","type":"Microsoft.Authorization/roleAssignments","name":"2d4385bd-e4d6-11eb-9e75-0a4737195831"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-26T03:44:43.4505353Z","updatedOn":"2021-07-26T03:44:43.4505353Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79b52c96-edc4-11eb-8bd7-1e3bd0e19ace","type":"Microsoft.Authorization/roleAssignments","name":"79b52c96-edc4-11eb-8bd7-1e3bd0e19ace"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-28T21:04:39.7105526Z","updatedOn":"2021-07-28T21:04:39.7105526Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b9c8936-efe7-11eb-9484-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6b9c8936-efe7-11eb-9484-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-04T02:14:38.2049441Z","updatedOn":"2021-08-04T02:14:38.2049441Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b8013ec0-f4c9-11eb-999a-000d3a4fc0a9","type":"Microsoft.Authorization/roleAssignments","name":"b8013ec0-f4c9-11eb-999a-000d3a4fc0a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e3c35f4c-e0ca-4b9e-a01e-5ebdd17e2ee7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-04T18:45:22.7030533Z","updatedOn":"2021-08-04T18:45:22.7030533Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b007f9b6-e259-4c24-b8f1-4b74e434b776","type":"Microsoft.Authorization/roleAssignments","name":"b007f9b6-e259-4c24-b8f1-4b74e434b776"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-10T18:57:36.3877809Z","updatedOn":"2021-08-10T18:57:36.3877809Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d31d5edd-fa0c-11eb-a4e8-00155d4b0124","type":"Microsoft.Authorization/roleAssignments","name":"d31d5edd-fa0c-11eb-a4e8-00155d4b0124"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-11T13:17:28.5790828Z","updatedOn":"2021-08-11T13:17:28.5790828Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79c9ac4e-faa6-11eb-9265-9e748a6ca3f5","type":"Microsoft.Authorization/roleAssignments","name":"79c9ac4e-faa6-11eb-9265-9e748a6ca3f5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T20:40:36.9427810Z","updatedOn":"2021-08-24T20:40:36.9427810Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89077b4a-051b-11ec-b690-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"89077b4a-051b-11ec-b690-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-25T04:55:32.8103400Z","updatedOn":"2021-08-25T04:55:32.8103400Z","createdBy":"d8f2c3f8-41bf-41ae-aedb-23c9387322a8","updatedBy":"d8f2c3f8-41bf-41ae-aedb-23c9387322a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad278da4-0560-11ec-bfcc-00249b623abd","type":"Microsoft.Authorization/roleAssignments","name":"ad278da4-0560-11ec-bfcc-00249b623abd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-31T23:45:51.8536519Z","updatedOn":"2021-08-31T23:45:51.8536519Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92d8ca73-0ab5-11ec-9a80-00224809727f","type":"Microsoft.Authorization/roleAssignments","name":"92d8ca73-0ab5-11ec-9a80-00224809727f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-13T19:32:31.3713301Z","updatedOn":"2021-09-13T19:32:31.3713301Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/55fb0a56-14c9-11ec-ba1a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"55fb0a56-14c9-11ec-ba1a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-17T20:45:08.1118919Z","updatedOn":"2021-09-17T20:45:08.1118919Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/246a4240-17f8-11ec-a87c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"246a4240-17f8-11ec-a87c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T13:55:46.1211332Z","updatedOn":"2021-09-20T13:55:46.1211332Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/738cb0ee-1a1a-11ec-bce5-7a98cea1d963","type":"Microsoft.Authorization/roleAssignments","name":"738cb0ee-1a1a-11ec-bce5-7a98cea1d963"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T16:02:49.0433199Z","updatedOn":"2021-09-20T16:02:49.0433199Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/332824b6-1a2c-11ec-94e6-dadb5e134e96","type":"Microsoft.Authorization/roleAssignments","name":"332824b6-1a2c-11ec-94e6-dadb5e134e96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T18:45:44.1610490Z","updatedOn":"2021-09-20T18:45:44.1610490Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5aacbbc-1a42-11ec-82e7-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f5aacbbc-1a42-11ec-82e7-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-23T14:26:16.9983531Z","updatedOn":"2021-09-23T14:26:16.9983531Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35e02c16-1c7a-11ec-aba5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"35e02c16-1c7a-11ec-aba5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-29T01:26:50.3419658Z","updatedOn":"2021-09-29T01:26:50.3419658Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47eee8e3-89cd-4112-86a8-19f848334dd1","type":"Microsoft.Authorization/roleAssignments","name":"47eee8e3-89cd-4112-86a8-19f848334dd1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-04T20:39:52.4258668Z","updatedOn":"2021-10-04T20:39:52.4258668Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/395b589c-2553-11ec-8d77-000d3af95835","type":"Microsoft.Authorization/roleAssignments","name":"395b589c-2553-11ec-8d77-000d3af95835"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-07T22:03:00.0914961Z","updatedOn":"2021-10-07T22:03:00.0914961Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/554cbdbb-27ba-11ec-9441-ba8d312253c4","type":"Microsoft.Authorization/roleAssignments","name":"554cbdbb-27ba-11ec-9441-ba8d312253c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-07T22:03:56.3285135Z","updatedOn":"2021-10-07T22:03:56.3285135Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/76aa862c-27ba-11ec-a4ef-ba8d312253c4","type":"Microsoft.Authorization/roleAssignments","name":"76aa862c-27ba-11ec-a4ef-ba8d312253c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T18:53:10.3503826Z","updatedOn":"2021-10-08T18:53:10.3503826Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d9510e6f-d37b-4ce8-8a3b-78e5447b11c4","type":"Microsoft.Authorization/roleAssignments","name":"d9510e6f-d37b-4ce8-8a3b-78e5447b11c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T18:59:59.4287762Z","updatedOn":"2021-10-08T18:59:59.4287762Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d1a6d17-6c0a-4105-b86a-dcc55fe735e7","type":"Microsoft.Authorization/roleAssignments","name":"3d1a6d17-6c0a-4105-b86a-dcc55fe735e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-11T22:29:20.4165411Z","updatedOn":"2021-10-11T22:29:20.4165411Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5b65050-4b50-4b02-bea3-5986eccdd944","type":"Microsoft.Authorization/roleAssignments","name":"b5b65050-4b50-4b02-bea3-5986eccdd944"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-12T21:09:25.3258237Z","updatedOn":"2021-10-12T21:09:25.3258237Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/869d24c2-b6b1-4a26-9b9c-c50ecb64bc31","type":"Microsoft.Authorization/roleAssignments","name":"869d24c2-b6b1-4a26-9b9c-c50ecb64bc31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-13T08:19:03.1448099Z","updatedOn":"2021-10-13T08:19:03.1448099Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8869be9-f94e-47ae-90cb-c4d9bcb5b629","type":"Microsoft.Authorization/roleAssignments","name":"f8869be9-f94e-47ae-90cb-c4d9bcb5b629"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T04:53:25.9502873Z","updatedOn":"2021-10-14T04:53:36.3280652Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f622c27f-a03d-4fb8-b17d-7281dc0a984f","type":"Microsoft.Authorization/roleAssignments","name":"f622c27f-a03d-4fb8-b17d-7281dc0a984f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:26:21.6452814Z","updatedOn":"2021-10-14T05:26:21.6452814Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/439e7a28-2caf-11ec-ae23-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"439e7a28-2caf-11ec-ae23-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:54.7980840Z","updatedOn":"2021-10-14T05:37:54.7980840Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e049894b-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e049894b-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:56.1220463Z","updatedOn":"2021-10-14T05:37:56.1220463Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e1920687-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e1920687-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:58.2164501Z","updatedOn":"2021-10-14T05:37:58.2164501Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2809f7d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e2809f7d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:00.1774570Z","updatedOn":"2021-10-14T05:38:00.1774570Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3b78568-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e3b78568-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:01.6914375Z","updatedOn":"2021-10-14T05:38:01.6914375Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4e3f0fc-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e4e3f0fc-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:03.1856045Z","updatedOn":"2021-10-14T05:38:03.1856045Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e5c7c168-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e5c7c168-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:04.4121266Z","updatedOn":"2021-10-14T05:38:04.4121266Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e6847f02-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e6847f02-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:05.9623251Z","updatedOn":"2021-10-14T05:38:05.9623251Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7681b77-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e7681b77-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:07.5974823Z","updatedOn":"2021-10-14T05:38:07.5974823Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e82df158-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e82df158-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:09.3591403Z","updatedOn":"2021-10-14T05:38:09.3591403Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e94e3dd9-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e94e3dd9-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:11.1652349Z","updatedOn":"2021-10-14T05:38:11.1652349Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea5dbe0d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"ea5dbe0d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:12.6474393Z","updatedOn":"2021-10-14T05:38:12.6474393Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb6e896d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"eb6e896d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:15.1702403Z","updatedOn":"2021-10-14T05:38:15.1702403Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eceee9a0-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"eceee9a0-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T06:22:44.8991960Z","updatedOn":"2021-10-14T06:22:44.8991960Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2447d2a2-2cb7-11ec-91be-00224878e942","type":"Microsoft.Authorization/roleAssignments","name":"2447d2a2-2cb7-11ec-91be-00224878e942"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T06:22:46.4374928Z","updatedOn":"2021-10-14T06:22:46.4374928Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/251fc151-2cb7-11ec-91be-00224878e942","type":"Microsoft.Authorization/roleAssignments","name":"251fc151-2cb7-11ec-91be-00224878e942"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:33:15.8218562Z","updatedOn":"2021-10-14T07:33:15.8218562Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe04afe4-2cc0-11ec-81ff-0022487b1e92","type":"Microsoft.Authorization/roleAssignments","name":"fe04afe4-2cc0-11ec-81ff-0022487b1e92"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:18.3020716Z","updatedOn":"2021-10-14T07:59:18.3020716Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a1518374-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a1518374-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:20.8876342Z","updatedOn":"2021-10-14T07:59:20.8876342Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a311df17-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a311df17-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:22.4477860Z","updatedOn":"2021-10-14T07:59:22.4477860Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3c5b71e-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a3c5b71e-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:23.1051657Z","updatedOn":"2021-10-14T08:07:23.1051657Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c227b3cc-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c227b3cc-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:23.5151178Z","updatedOn":"2021-10-14T08:07:23.5151178Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c29ac901-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c29ac901-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:25.7287942Z","updatedOn":"2021-10-14T08:07:25.7287942Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c40b5411-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c40b5411-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:27.2660976Z","updatedOn":"2021-10-14T08:07:27.2660976Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4cb6a30-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c4cb6a30-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:08:16.5190337Z","updatedOn":"2021-10-14T08:08:16.5190337Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e226a828-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"e226a828-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:08:17.7439429Z","updatedOn":"2021-10-14T08:08:17.7439429Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2e43f64-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"e2e43f64-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T09:12:04.1832243Z","updatedOn":"2021-10-14T09:12:04.1832243Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5c9e442c-9d64-4022-9246-0c1c21af04be","type":"Microsoft.Authorization/roleAssignments","name":"5c9e442c-9d64-4022-9246-0c1c21af04be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T17:07:28.8635845Z","updatedOn":"2021-10-14T17:07:28.8635845Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed48d615-e7d8-4aef-90c7-332d7329e41c","type":"Microsoft.Authorization/roleAssignments","name":"ed48d615-e7d8-4aef-90c7-332d7329e41c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T18:16:37.9837987Z","updatedOn":"2021-10-14T18:16:37.9837987Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/debb0903-2d1a-11ec-a603-000d3a06aaec","type":"Microsoft.Authorization/roleAssignments","name":"debb0903-2d1a-11ec-a603-000d3a06aaec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T18:39:15.5366398Z","updatedOn":"2021-10-14T18:39:15.5366398Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07caa301-2d1e-11ec-a2ea-0022487748c3","type":"Microsoft.Authorization/roleAssignments","name":"07caa301-2d1e-11ec-a2ea-0022487748c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-15T17:37:53.7293023Z","updatedOn":"2021-10-15T17:37:53.7293023Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fbd09f2-2dde-11ec-b3e4-000d3a064a8a","type":"Microsoft.Authorization/roleAssignments","name":"9fbd09f2-2dde-11ec-b3e4-000d3a064a8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-18T06:22:38.4617338Z","updatedOn":"2021-10-18T06:22:38.4617338Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70844448-8be3-4c6f-9edf-443944f85a5a","type":"Microsoft.Authorization/roleAssignments","name":"70844448-8be3-4c6f-9edf-443944f85a5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-19T11:29:40.0474212Z","updatedOn":"2021-10-19T11:29:40.0474212Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d86e727f-30cf-11ec-bc8b-000d3ac2ec2b","type":"Microsoft.Authorization/roleAssignments","name":"d86e727f-30cf-11ec-bc8b-000d3ac2ec2b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-20T20:57:56.8996523Z","updatedOn":"2021-10-20T20:57:56.8996523Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66303328-31e8-11ec-99f4-000d3ac5c858","type":"Microsoft.Authorization/roleAssignments","name":"66303328-31e8-11ec-99f4-000d3ac5c858"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-21T15:12:00.0677049Z","updatedOn":"2021-10-21T15:12:00.0677049Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b630a77a-9e75-417f-b251-1584163d8926","type":"Microsoft.Authorization/roleAssignments","name":"b630a77a-9e75-417f-b251-1584163d8926"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-25T21:32:26.0121360Z","updatedOn":"2021-10-25T21:32:26.0121360Z","createdBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","updatedBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b15fba8-35db-11ec-b404-8c8590c603ee","type":"Microsoft.Authorization/roleAssignments","name":"0b15fba8-35db-11ec-b404-8c8590c603ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T07:30:52.4116907Z","updatedOn":"2021-10-26T07:30:52.4116907Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e78ac58b-8cfe-4ff6-9ac6-41453615c7e8","type":"Microsoft.Authorization/roleAssignments","name":"e78ac58b-8cfe-4ff6-9ac6-41453615c7e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T13:47:01.3444676Z","updatedOn":"2021-10-26T13:47:01.3444676Z","createdBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","updatedBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4933f1cd-0863-4429-a5be-3a81b2f80105","type":"Microsoft.Authorization/roleAssignments","name":"4933f1cd-0863-4429-a5be-3a81b2f80105"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T20:43:39.1375235Z","updatedOn":"2021-10-26T20:43:39.1375235Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad8f56c5-19b6-4e9f-b20f-8e3789a93873","type":"Microsoft.Authorization/roleAssignments","name":"ad8f56c5-19b6-4e9f-b20f-8e3789a93873"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-27T01:02:05.1338691Z","updatedOn":"2021-10-27T01:02:05.1338691Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a83de9c2-2bd5-4ba1-bc50-08d475a290a0","type":"Microsoft.Authorization/roleAssignments","name":"a83de9c2-2bd5-4ba1-bc50-08d475a290a0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-28T00:14:34.9745357Z","updatedOn":"2021-10-28T00:14:34.9745357Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3366cd2-4d12-4dbb-b05d-5e914628e986","type":"Microsoft.Authorization/roleAssignments","name":"e3366cd2-4d12-4dbb-b05d-5e914628e986"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-02T23:39:52.9481031Z","updatedOn":"2021-11-02T23:39:52.9481031Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0e37c03-a8a7-4765-af41-9a8584ad6413","type":"Microsoft.Authorization/roleAssignments","name":"b0e37c03-a8a7-4765-af41-9a8584ad6413"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c7393b34-138c-406f-901b-d8cf2b17e6ae","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T15:46:17.8935538Z","updatedOn":"2021-11-03T15:46:17.8935538Z","createdBy":"","updatedBy":"","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5b0e8d6-e30f-42a5-918c-01299416da2c","type":"Microsoft.Authorization/roleAssignments","name":"b5b0e8d6-e30f-42a5-918c-01299416da2c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T21:43:39.4750265Z","updatedOn":"2021-11-03T21:43:39.4750265Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/683b4375-f318-428e-a885-232a29ec8559","type":"Microsoft.Authorization/roleAssignments","name":"683b4375-f318-428e-a885-232a29ec8559"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T21:56:29.9810805Z","updatedOn":"2021-11-03T21:56:29.9810805Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e560c31c-8c6e-4bf0-9828-b2db658455b7","type":"Microsoft.Authorization/roleAssignments","name":"e560c31c-8c6e-4bf0-9828-b2db658455b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T06:06:21.8922666Z","updatedOn":"2021-11-04T06:06:21.8922666Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e1dcc78b-03c3-4db3-95a8-643dbcbbf2a3","type":"Microsoft.Authorization/roleAssignments","name":"e1dcc78b-03c3-4db3-95a8-643dbcbbf2a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T17:22:28.0293110Z","updatedOn":"2021-11-04T17:22:28.0293110Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84a6167f-c7d5-4404-b786-85fe4327c0ba","type":"Microsoft.Authorization/roleAssignments","name":"84a6167f-c7d5-4404-b786-85fe4327c0ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T17:24:51.0627597Z","updatedOn":"2021-11-04T17:24:51.0627597Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ff23217-f8a8-4e77-baee-41850cfb5554","type":"Microsoft.Authorization/roleAssignments","name":"8ff23217-f8a8-4e77-baee-41850cfb5554"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T05:21:11.0446928Z","updatedOn":"2021-11-16T05:21:11.0446928Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d01bef88-e1fa-4fc2-bd98-6845063b53b9","type":"Microsoft.Authorization/roleAssignments","name":"d01bef88-e1fa-4fc2-bd98-6845063b53b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T05:22:06.5362889Z","updatedOn":"2021-11-16T05:22:06.5362889Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/784d9b03-5635-4c89-ae5b-5c11ceff8a4c","type":"Microsoft.Authorization/roleAssignments","name":"784d9b03-5635-4c89-ae5b-5c11ceff8a4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T21:47:20.3762106Z","updatedOn":"2021-11-16T21:47:20.3762106Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/19b8a839-de9e-4712-a227-686679e98414","type":"Microsoft.Authorization/roleAssignments","name":"19b8a839-de9e-4712-a227-686679e98414"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T05:28:26.3873952Z","updatedOn":"2021-11-17T05:28:26.3873952Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a6cb292-435b-45d4-9f44-2dedb6f80804","type":"Microsoft.Authorization/roleAssignments","name":"4a6cb292-435b-45d4-9f44-2dedb6f80804"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T08:37:53.6375476Z","updatedOn":"2021-11-17T08:37:53.6375476Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7314a76-4781-11ec-9554-2eaf851e2751","type":"Microsoft.Authorization/roleAssignments","name":"a7314a76-4781-11ec-9554-2eaf851e2751"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T20:29:38.7986222Z","updatedOn":"2021-11-17T20:29:38.7986222Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41224d04-5912-49e9-98f2-df2d0c5768ed","type":"Microsoft.Authorization/roleAssignments","name":"41224d04-5912-49e9-98f2-df2d0c5768ed"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-23T02:37:39.0525328Z","updatedOn":"2021-11-23T02:37:39.0525328Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2917b10b-1776-4726-9e2a-1406d35584aa","type":"Microsoft.Authorization/roleAssignments","name":"2917b10b-1776-4726-9e2a-1406d35584aa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-24T04:19:48.8430130Z","updatedOn":"2021-11-24T04:19:48.8430130Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4738453f-e889-4428-817e-a18655a6df71","type":"Microsoft.Authorization/roleAssignments","name":"4738453f-e889-4428-817e-a18655a6df71"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-29T22:16:27.4091202Z","updatedOn":"2021-11-29T22:16:27.4091202Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dfaf3275-7f8c-449f-875f-d74ca2998764","type":"Microsoft.Authorization/roleAssignments","name":"dfaf3275-7f8c-449f-875f-d74ca2998764"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T06:59:34.7676928Z","updatedOn":"2021-11-30T06:59:34.7676928Z","createdBy":"471feb6d-5a83-439e-af7b-311f4eee2d0c","updatedBy":"471feb6d-5a83-439e-af7b-311f4eee2d0c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5848b58-7658-45ae-b979-fb230968ddf7","type":"Microsoft.Authorization/roleAssignments","name":"d5848b58-7658-45ae-b979-fb230968ddf7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T20:03:43.2359682Z","updatedOn":"2021-11-30T20:03:43.2359682Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3be3018e-84c0-48a4-bb36-fa997df4a911","type":"Microsoft.Authorization/roleAssignments","name":"3be3018e-84c0-48a4-bb36-fa997df4a911"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T22:23:07.4635927Z","updatedOn":"2021-11-30T22:23:07.4635927Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc52b5ce-1a69-4afd-aaab-745522d55219","type":"Microsoft.Authorization/roleAssignments","name":"fc52b5ce-1a69-4afd-aaab-745522d55219"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T02:05:06.3947111Z","updatedOn":"2021-12-01T02:05:06.3947111Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bfd977a2-74fb-4e8f-88a6-72b675ad0813","type":"Microsoft.Authorization/roleAssignments","name":"bfd977a2-74fb-4e8f-88a6-72b675ad0813"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T23:14:48.6056041Z","updatedOn":"2021-12-01T23:14:48.6056041Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2c2675a2-a48c-492f-a4d5-835ffdf8e57e","type":"Microsoft.Authorization/roleAssignments","name":"2c2675a2-a48c-492f-a4d5-835ffdf8e57e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T23:44:16.3921051Z","updatedOn":"2021-12-01T23:44:16.3921051Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc791163-7d7a-4988-96f8-969053cb4d75","type":"Microsoft.Authorization/roleAssignments","name":"bc791163-7d7a-4988-96f8-969053cb4d75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T07:40:53.7263371Z","updatedOn":"2021-12-02T07:40:53.7263371Z","createdBy":"027bf6cf-7fd4-4a57-80d7-4e52bd1fea5b","updatedBy":"027bf6cf-7fd4-4a57-80d7-4e52bd1fea5b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c592d108-71a6-4fbd-89f7-06c1656d0c93","type":"Microsoft.Authorization/roleAssignments","name":"c592d108-71a6-4fbd-89f7-06c1656d0c93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:36.8568746Z","updatedOn":"2021-12-02T08:41:36.8568746Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a8b008b0-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a8b008b0-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:38.4974834Z","updatedOn":"2021-12-02T08:41:38.4974834Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9ad9deb-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a9ad9deb-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:38.6316008Z","updatedOn":"2021-12-02T08:41:38.6316008Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9aa81cd-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a9aa81cd-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:38.6311993Z","updatedOn":"2021-12-02T08:41:38.6311993Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9c0a1a6-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a9c0a1a6-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T21:35:31.3727027Z","updatedOn":"2021-12-02T21:35:31.3727027Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/663204fa-95cb-45a0-938f-d817824509dd","type":"Microsoft.Authorization/roleAssignments","name":"663204fa-95cb-45a0-938f-d817824509dd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T22:09:46.1565055Z","updatedOn":"2021-12-02T22:09:46.1565055Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e97a88c4-e035-453b-b767-a3dbfadfd28d","type":"Microsoft.Authorization/roleAssignments","name":"e97a88c4-e035-453b-b767-a3dbfadfd28d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T23:10:20.2170014Z","updatedOn":"2021-12-02T23:10:20.2170014Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/afd2116e-f2ce-4bc2-8924-fb6f0c620d64","type":"Microsoft.Authorization/roleAssignments","name":"afd2116e-f2ce-4bc2-8924-fb6f0c620d64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-03T00:07:35.7286641Z","updatedOn":"2021-12-03T00:07:35.7286641Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/56d1c441-73b9-4b86-acc9-260016c81330","type":"Microsoft.Authorization/roleAssignments","name":"56d1c441-73b9-4b86-acc9-260016c81330"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-03T18:42:59.5078987Z","updatedOn":"2021-12-03T18:42:59.5078987Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b083534f-ae88-4db8-b65f-150284339772","type":"Microsoft.Authorization/roleAssignments","name":"b083534f-ae88-4db8-b65f-150284339772"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-03T21:00:00.5789423Z","updatedOn":"2021-12-03T21:00:00.5789423Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8684384c-7276-4e65-b708-6766a7c3a876","type":"Microsoft.Authorization/roleAssignments","name":"8684384c-7276-4e65-b708-6766a7c3a876"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-04T00:50:10.8909441Z","updatedOn":"2021-12-04T00:50:10.8909441Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cb7855e-82da-4910-b4ce-5f38896c067a","type":"Microsoft.Authorization/roleAssignments","name":"3cb7855e-82da-4910-b4ce-5f38896c067a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-07T12:35:57.6917673Z","updatedOn":"2021-12-07T12:35:57.6917673Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39e64286-575a-11ec-95aa-002248232e56","type":"Microsoft.Authorization/roleAssignments","name":"39e64286-575a-11ec-95aa-002248232e56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-07T23:18:12.3548251Z","updatedOn":"2021-12-07T23:18:12.3548251Z","createdBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","updatedBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f2265a95-57b3-11ec-a8e6-de1bbdf97372","type":"Microsoft.Authorization/roleAssignments","name":"f2265a95-57b3-11ec-a8e6-de1bbdf97372"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-08T03:01:28.5641674Z","updatedOn":"2021-12-08T03:01:28.5641674Z","createdBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","updatedBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2232ec95-57d3-11ec-bbe2-de1bbdf97372","type":"Microsoft.Authorization/roleAssignments","name":"2232ec95-57d3-11ec-bbe2-de1bbdf97372"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-08T03:07:36.8342803Z","updatedOn":"2021-12-08T03:07:36.8342803Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f1920cc-5cca-44c7-8175-d46948a9283f","type":"Microsoft.Authorization/roleAssignments","name":"9f1920cc-5cca-44c7-8175-d46948a9283f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-08T13:07:30.9635867Z","updatedOn":"2021-12-08T13:07:30.9635867Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc6359bd-5827-11ec-a516-000d3afc9734","type":"Microsoft.Authorization/roleAssignments","name":"cc6359bd-5827-11ec-a516-000d3afc9734"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-09T17:37:01.4296706Z","updatedOn":"2021-12-09T17:37:01.4296706Z","createdBy":"ae195f21-9b44-473d-9920-601e7899b56d","updatedBy":"ae195f21-9b44-473d-9920-601e7899b56d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9be22fd0-5916-11ec-b5a3-469e91f29611","type":"Microsoft.Authorization/roleAssignments","name":"9be22fd0-5916-11ec-b5a3-469e91f29611"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-10T14:31:24.3746709Z","updatedOn":"2021-12-10T14:31:24.3746709Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d9b6ef44-59c5-11ec-800e-0022487c3cbe","type":"Microsoft.Authorization/roleAssignments","name":"d9b6ef44-59c5-11ec-800e-0022487c3cbe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-13T07:46:54.6104588Z","updatedOn":"2021-12-13T07:46:54.6104588Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c65fe6b5-5be8-11ec-b892-000d3a518d38","type":"Microsoft.Authorization/roleAssignments","name":"c65fe6b5-5be8-11ec-b892-000d3a518d38"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-17T03:03:12.7081063Z","updatedOn":"2021-12-17T03:03:12.7081063Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/deb2cb98-5ee5-11ec-bd7f-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"deb2cb98-5ee5-11ec-bd7f-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-18T06:04:20.9532091Z","updatedOn":"2021-12-18T06:04:20.9532091Z","createdBy":"19263705-0667-497e-85e7-a930fa3441ec","updatedBy":"19263705-0667-497e-85e7-a930fa3441ec","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6eb35762-bc37-4c24-aec0-389e7cb97f95","type":"Microsoft.Authorization/roleAssignments","name":"6eb35762-bc37-4c24-aec0-389e7cb97f95"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-22T09:15:23.9226458Z","updatedOn":"2021-12-22T09:15:23.9226458Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7a9e1ec4-8728-4723-9fca-709f8549e3ac","type":"Microsoft.Authorization/roleAssignments","name":"7a9e1ec4-8728-4723-9fca-709f8549e3ac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-22T19:37:32.9555793Z","updatedOn":"2021-12-22T19:37:32.9555793Z","createdBy":"121978e2-c5f7-437f-b950-07f832f9f06c","updatedBy":"121978e2-c5f7-437f-b950-07f832f9f06c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a77cfdf9-fd0d-43f5-ba0d-0d36c8c1818e","type":"Microsoft.Authorization/roleAssignments","name":"a77cfdf9-fd0d-43f5-ba0d-0d36c8c1818e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-28T17:11:37.6373944Z","updatedOn":"2022-09-28T17:11:37.6373944Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b564621-3f50-11ed-918f-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"9b564621-3f50-11ed-918f-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-28T17:11:52.2247561Z","updatedOn":"2022-09-28T17:11:52.2247561Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3d8aeee-3f50-11ed-918f-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"a3d8aeee-3f50-11ed-918f-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-28T18:45:35.3728959Z","updatedOn":"2022-09-28T18:45:35.3728959Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5bb18d5f-3c20-4899-a01f-58313b28c345","type":"Microsoft.Authorization/roleAssignments","name":"5bb18d5f-3c20-4899-a01f-58313b28c345"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-30T18:34:26.1480517Z","updatedOn":"2022-09-30T18:34:26.1480517Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/828f43f9-40ee-11ed-9683-0022482b84fb","type":"Microsoft.Authorization/roleAssignments","name":"828f43f9-40ee-11ed-9683-0022482b84fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-30T18:34:28.0235766Z","updatedOn":"2022-09-30T18:34:28.0235766Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83a3304a-40ee-11ed-9683-0022482b84fb","type":"Microsoft.Authorization/roleAssignments","name":"83a3304a-40ee-11ed-9683-0022482b84fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T14:35:19.0321994Z","updatedOn":"2022-10-03T14:35:19.0321994Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99965ae6-4328-11ed-939f-aae2aa7b83bb","type":"Microsoft.Authorization/roleAssignments","name":"99965ae6-4328-11ed-939f-aae2aa7b83bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T14:35:23.0970392Z","updatedOn":"2022-10-03T14:35:23.0970392Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9c1721f9-4328-11ed-939f-aae2aa7b83bb","type":"Microsoft.Authorization/roleAssignments","name":"9c1721f9-4328-11ed-939f-aae2aa7b83bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T18:39:25.8455066Z","updatedOn":"2022-10-03T18:39:25.8455066Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":"adding + my aksdev SPs per https://dev.azure.com/msazure/CloudNativeCompute/_wiki/wikis/CloudNativeCompute.wiki/54089/Standalone-Environment-Usage?anchor=authentication-failed-issues"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b4fc89b2-a0bc-4661-a4f4-96170e3da3c3","type":"Microsoft.Authorization/roleAssignments","name":"b4fc89b2-a0bc-4661-a4f4-96170e3da3c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T21:14:21.6709207Z","updatedOn":"2022-10-03T21:14:21.6709207Z","createdBy":"2182129f-e575-4986-a7fb-2be7772ba46f","updatedBy":"2182129f-e575-4986-a7fb-2be7772ba46f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/58ef0b60-4360-11ed-84ae-4ef510510e8a","type":"Microsoft.Authorization/roleAssignments","name":"58ef0b60-4360-11ed-84ae-4ef510510e8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T21:14:25.9942421Z","updatedOn":"2022-10-03T21:14:25.9942421Z","createdBy":"2182129f-e575-4986-a7fb-2be7772ba46f","updatedBy":"2182129f-e575-4986-a7fb-2be7772ba46f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5b271148-4360-11ed-84ae-4ef510510e8a","type":"Microsoft.Authorization/roleAssignments","name":"5b271148-4360-11ed-84ae-4ef510510e8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T08:46:58.1120536Z","updatedOn":"2022-10-04T08:46:58.1120536Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46d7c91e-4182-4715-9d5c-c143514d0e96","type":"Microsoft.Authorization/roleAssignments","name":"46d7c91e-4182-4715-9d5c-c143514d0e96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T08:46:58.7908585Z","updatedOn":"2022-10-04T08:46:58.7908585Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0215f1ea-81dc-42cd-b2b0-62ed51ec1e8f","type":"Microsoft.Authorization/roleAssignments","name":"0215f1ea-81dc-42cd-b2b0-62ed51ec1e8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T15:17:47.0575990Z","updatedOn":"2022-10-04T15:17:47.0575990Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09dff59a-a350-4eb7-b515-b439773bf953","type":"Microsoft.Authorization/roleAssignments","name":"09dff59a-a350-4eb7-b515-b439773bf953"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T20:25:24.7922965Z","updatedOn":"2022-10-04T20:25:24.7922965Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac245566-4422-11ed-b4e4-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"ac245566-4422-11ed-b4e4-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T20:25:29.7192947Z","updatedOn":"2022-10-04T20:25:29.7192947Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/af78cdbe-4422-11ed-b4e4-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"af78cdbe-4422-11ed-b4e4-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-05T17:17:50.2296097Z","updatedOn":"2022-10-05T17:17:50.2296097Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18d61426-19b2-45ab-a04c-35bf0954b5f2","type":"Microsoft.Authorization/roleAssignments","name":"18d61426-19b2-45ab-a04c-35bf0954b5f2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T21:18:34.5111716Z","updatedOn":"2022-10-06T21:18:34.5111716Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/90e84a6f-382e-4cd0-8b7c-249f30414d26","type":"Microsoft.Authorization/roleAssignments","name":"90e84a6f-382e-4cd0-8b7c-249f30414d26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T21:19:26.0775289Z","updatedOn":"2022-10-06T21:19:26.0775289Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/245ffe6b-708b-41b4-b4a5-0328063f9511","type":"Microsoft.Authorization/roleAssignments","name":"245ffe6b-708b-41b4-b4a5-0328063f9511"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T22:01:04.9042316Z","updatedOn":"2022-10-06T22:01:04.9042316Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/809518d2-215b-449f-9909-1cf5275f82ff","type":"Microsoft.Authorization/roleAssignments","name":"809518d2-215b-449f-9909-1cf5275f82ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T22:01:18.8874783Z","updatedOn":"2022-10-06T22:01:18.8874783Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/50ca23bf-0051-4116-a073-86a9415cc7e4","type":"Microsoft.Authorization/roleAssignments","name":"50ca23bf-0051-4116-a073-86a9415cc7e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T00:36:14.3318961Z","updatedOn":"2022-10-07T00:36:14.3318961Z","createdBy":"b3ae1fad-98a9-46c4-bd0b-193e8efd9450","updatedBy":"b3ae1fad-98a9-46c4-bd0b-193e8efd9450","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ba8ceaf-45d8-11ed-bb9e-0eabbd04010c","type":"Microsoft.Authorization/roleAssignments","name":"0ba8ceaf-45d8-11ed-bb9e-0eabbd04010c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:18.2176259Z","updatedOn":"2022-10-07T16:36:18.2176259Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0eafb5be-ea9a-495c-82c9-8337449b1150","type":"Microsoft.Authorization/roleAssignments","name":"0eafb5be-ea9a-495c-82c9-8337449b1150"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:22.7662640Z","updatedOn":"2022-10-07T16:36:22.7662640Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7cb15a6c-7b73-430f-91aa-02113db930cb","type":"Microsoft.Authorization/roleAssignments","name":"7cb15a6c-7b73-430f-91aa-02113db930cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:29.4358024Z","updatedOn":"2022-10-07T16:36:29.4358024Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1b259a44-7824-434b-8f81-8df465b85fd5","type":"Microsoft.Authorization/roleAssignments","name":"1b259a44-7824-434b-8f81-8df465b85fd5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:33.7158336Z","updatedOn":"2022-10-07T16:36:33.7158336Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3156b3a1-bc03-4d84-b2df-09d0d0eab4b1","type":"Microsoft.Authorization/roleAssignments","name":"3156b3a1-bc03-4d84-b2df-09d0d0eab4b1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:35.7999116Z","updatedOn":"2022-10-07T16:36:35.7999116Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1d30073-ff57-48fa-96e7-dfc85b8c7975","type":"Microsoft.Authorization/roleAssignments","name":"b1d30073-ff57-48fa-96e7-dfc85b8c7975"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-09T05:08:21.9096837Z","updatedOn":"2022-10-09T05:08:21.9096837Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d747b25-fa91-4429-a72b-0a4e2079ed03","type":"Microsoft.Authorization/roleAssignments","name":"8d747b25-fa91-4429-a72b-0a4e2079ed03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-10T05:53:40.9849719Z","updatedOn":"2022-10-10T05:53:40.9849719Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3cfb29d-485f-11ed-b38e-562c47d8c70b","type":"Microsoft.Authorization/roleAssignments","name":"e3cfb29d-485f-11ed-b38e-562c47d8c70b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-10T05:53:46.7676576Z","updatedOn":"2022-10-10T05:53:46.7676576Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e6c4b18f-485f-11ed-b38e-562c47d8c70b","type":"Microsoft.Authorization/roleAssignments","name":"e6c4b18f-485f-11ed-b38e-562c47d8c70b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-10T19:26:54.0213364Z","updatedOn":"2022-10-10T19:26:54.0213364Z","createdBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","updatedBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ed9bd3d-48d1-11ed-8d0c-000d3af6a88e","type":"Microsoft.Authorization/roleAssignments","name":"7ed9bd3d-48d1-11ed-8d0c-000d3af6a88e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T05:01:21.4237199Z","updatedOn":"2022-10-11T05:01:21.4237199Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbc092b8-61c0-429f-bc40-457c06ef2ae3","type":"Microsoft.Authorization/roleAssignments","name":"bbc092b8-61c0-429f-bc40-457c06ef2ae3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T06:32:06.2810453Z","updatedOn":"2022-10-11T06:32:06.2810453Z","createdBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","updatedBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c482116-492e-11ed-b1e5-50814031cc1b","type":"Microsoft.Authorization/roleAssignments","name":"6c482116-492e-11ed-b1e5-50814031cc1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T06:32:11.8691902Z","updatedOn":"2022-10-11T06:32:11.8691902Z","createdBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","updatedBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6f333b0b-492e-11ed-b1e5-50814031cc1b","type":"Microsoft.Authorization/roleAssignments","name":"6f333b0b-492e-11ed-b1e5-50814031cc1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T10:41:27.4966216Z","updatedOn":"2022-10-11T10:41:27.4966216Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4aaba87d-be3b-49d5-90e6-02100140c50d","type":"Microsoft.Authorization/roleAssignments","name":"4aaba87d-be3b-49d5-90e6-02100140c50d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-12T06:14:22.3962768Z","updatedOn":"2022-10-12T06:14:22.3962768Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c7ad8940-3c2c-4a0a-b59a-5c6408cce033","type":"Microsoft.Authorization/roleAssignments","name":"c7ad8940-3c2c-4a0a-b59a-5c6408cce033"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-12T23:06:16.2844894Z","updatedOn":"2022-10-12T23:06:16.2844894Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8434c983-cdd3-40c4-9531-78b5f16fea23","type":"Microsoft.Authorization/roleAssignments","name":"8434c983-cdd3-40c4-9531-78b5f16fea23"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-12T23:06:16.4551494Z","updatedOn":"2022-10-12T23:06:16.4551494Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4281f456-78ed-4ef7-b058-d980c90bf6f9","type":"Microsoft.Authorization/roleAssignments","name":"4281f456-78ed-4ef7-b058-d980c90bf6f9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-18T14:04:58.5223716Z","updatedOn":"2022-10-18T14:04:58.5223716Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9158a450-cec7-48ba-8469-fc085e252e56","type":"Microsoft.Authorization/roleAssignments","name":"9158a450-cec7-48ba-8469-fc085e252e56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-19T17:08:57.8704270Z","updatedOn":"2022-10-19T17:08:57.8704270Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf874421-44f9-4a19-8abd-da0f4f04a24f","type":"Microsoft.Authorization/roleAssignments","name":"bf874421-44f9-4a19-8abd-da0f4f04a24f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-19T23:09:40.3682015Z","updatedOn":"2022-10-19T23:09:40.3682015Z","createdBy":"57440c04-5eed-4c74-92b6-44b016b882f2","updatedBy":"57440c04-5eed-4c74-92b6-44b016b882f2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2bafd93-beec-4d8b-b5f0-9893ef27a090","type":"Microsoft.Authorization/roleAssignments","name":"b2bafd93-beec-4d8b-b5f0-9893ef27a090"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-25T20:45:40.4378406Z","updatedOn":"2022-10-25T20:45:40.4378406Z","createdBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","updatedBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbadcf84-54a5-11ed-b2c3-0e0011011627","type":"Microsoft.Authorization/roleAssignments","name":"fbadcf84-54a5-11ed-b2c3-0e0011011627"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-25T20:45:44.2349413Z","updatedOn":"2022-10-25T20:45:44.2349413Z","createdBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","updatedBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fde7916d-54a5-11ed-b2c3-0e0011011627","type":"Microsoft.Authorization/roleAssignments","name":"fde7916d-54a5-11ed-b2c3-0e0011011627"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T16:44:45.2471286Z","updatedOn":"2022-10-26T16:44:45.2471286Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6649fcf-1731-4db5-8e3b-31af16600402","type":"Microsoft.Authorization/roleAssignments","name":"c6649fcf-1731-4db5-8e3b-31af16600402"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T21:24:42.6980121Z","updatedOn":"2022-10-26T21:24:42.6980121Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b1323cf-e4ec-4454-ac08-5f88d588f133","type":"Microsoft.Authorization/roleAssignments","name":"9b1323cf-e4ec-4454-ac08-5f88d588f133"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T23:12:13.5663015Z","updatedOn":"2022-10-26T23:12:13.5663015Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9db19562-5583-11ed-a49b-aa665a565a49","type":"Microsoft.Authorization/roleAssignments","name":"9db19562-5583-11ed-a49b-aa665a565a49"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-27T20:49:50.5273108Z","updatedOn":"2022-10-27T20:49:50.5273108Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1a0bbbc6-febb-4d40-9e39-5274a2edd538","type":"Microsoft.Authorization/roleAssignments","name":"1a0bbbc6-febb-4d40-9e39-5274a2edd538"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-31T21:38:36.6886945Z","updatedOn":"2022-10-31T21:38:36.6886945Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a85bdf2-6490-4989-9276-f2071fcf02c7","type":"Microsoft.Authorization/roleAssignments","name":"6a85bdf2-6490-4989-9276-f2071fcf02c7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-01T17:32:59.4211774Z","updatedOn":"2022-11-01T17:32:59.4211774Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a3d71f8-5a0b-11ed-ae92-000d3a6dafe7","type":"Microsoft.Authorization/roleAssignments","name":"3a3d71f8-5a0b-11ed-ae92-000d3a6dafe7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-03T20:33:30.2762577Z","updatedOn":"2022-11-03T20:33:30.2762577Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6983693-5bb6-11ed-ae23-72674b3691e8","type":"Microsoft.Authorization/roleAssignments","name":"c6983693-5bb6-11ed-ae23-72674b3691e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-03T20:33:33.9941086Z","updatedOn":"2022-11-03T20:33:33.9941086Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c90a1190-5bb6-11ed-ae23-72674b3691e8","type":"Microsoft.Authorization/roleAssignments","name":"c90a1190-5bb6-11ed-ae23-72674b3691e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-03T22:01:34.3526622Z","updatedOn":"2022-11-03T22:01:34.3526622Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/572d1281-1073-4df2-a41a-6ec6ab01ccf4","type":"Microsoft.Authorization/roleAssignments","name":"572d1281-1073-4df2-a41a-6ec6ab01ccf4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-04T17:44:58.1069368Z","updatedOn":"2022-11-04T17:44:58.1069368Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65ead23f-5c68-11ed-81d0-000d3ac6042c","type":"Microsoft.Authorization/roleAssignments","name":"65ead23f-5c68-11ed-81d0-000d3ac6042c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-04T17:44:58.3889675Z","updatedOn":"2022-11-04T17:44:58.3889675Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65f36b55-5c68-11ed-81d0-000d3ac6042c","type":"Microsoft.Authorization/roleAssignments","name":"65f36b55-5c68-11ed-81d0-000d3ac6042c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-07T21:00:30.9927458Z","updatedOn":"2022-11-07T21:00:30.9927458Z","createdBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","updatedBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3631fc51-5edf-11ed-b8d9-bee096dd1f56","type":"Microsoft.Authorization/roleAssignments","name":"3631fc51-5edf-11ed-b8d9-bee096dd1f56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-07T23:06:40.7350135Z","updatedOn":"2022-11-07T23:06:40.7350135Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82f4d8cb-f92b-4183-8a57-9a266f8ed475","type":"Microsoft.Authorization/roleAssignments","name":"82f4d8cb-f92b-4183-8a57-9a266f8ed475"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T00:45:45.2308519Z","updatedOn":"2022-11-08T00:45:45.2308519Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad83b644-5efe-11ed-9afa-76a84c3a8985","type":"Microsoft.Authorization/roleAssignments","name":"ad83b644-5efe-11ed-9afa-76a84c3a8985"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T00:45:54.5576407Z","updatedOn":"2022-11-08T00:45:54.5576407Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2f5ecd2-5efe-11ed-9afa-76a84c3a8985","type":"Microsoft.Authorization/roleAssignments","name":"b2f5ecd2-5efe-11ed-9afa-76a84c3a8985"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T17:38:14.0062888Z","updatedOn":"2022-11-08T17:38:14.0062888Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5a5cfdf-e8ad-4d53-a1a9-3a7191efa68a","type":"Microsoft.Authorization/roleAssignments","name":"b5a5cfdf-e8ad-4d53-a1a9-3a7191efa68a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T20:41:35.2460898Z","updatedOn":"2022-11-08T20:41:35.2460898Z","createdBy":"77ac7883-1816-45e5-8784-444d95195dfe","updatedBy":"77ac7883-1816-45e5-8784-444d95195dfe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbdb8a06-5fa5-11ed-87b5-52a0a45b7fbb","type":"Microsoft.Authorization/roleAssignments","name":"bbdb8a06-5fa5-11ed-87b5-52a0a45b7fbb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T20:41:39.0095016Z","updatedOn":"2022-11-08T20:41:39.0095016Z","createdBy":"77ac7883-1816-45e5-8784-444d95195dfe","updatedBy":"77ac7883-1816-45e5-8784-444d95195dfe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be17ddaf-5fa5-11ed-87b5-52a0a45b7fbb","type":"Microsoft.Authorization/roleAssignments","name":"be17ddaf-5fa5-11ed-87b5-52a0a45b7fbb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T04:24:29.2903032Z","updatedOn":"2022-11-09T04:24:29.2903032Z","createdBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","updatedBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6672401b-5fe6-11ed-8d26-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"6672401b-5fe6-11ed-8d26-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T04:24:32.7816834Z","updatedOn":"2022-11-09T04:24:32.7816834Z","createdBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","updatedBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/687908be-5fe6-11ed-8d26-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"687908be-5fe6-11ed-8d26-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T06:49:46.3320446Z","updatedOn":"2022-11-09T06:49:46.3320446Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40e96901-a9d4-4fc3-8d80-c55979cad3f4","type":"Microsoft.Authorization/roleAssignments","name":"40e96901-a9d4-4fc3-8d80-c55979cad3f4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T06:57:50.8140024Z","updatedOn":"2022-11-09T06:57:50.8140024Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54117e37-77ed-4fc2-a64e-7f5cfee1e3cb","type":"Microsoft.Authorization/roleAssignments","name":"54117e37-77ed-4fc2-a64e-7f5cfee1e3cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-15T17:00:53.9224351Z","updatedOn":"2022-11-15T17:00:53.9224351Z","createdBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","updatedBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb3fa35d-14c6-476e-965d-3287df835fb6","type":"Microsoft.Authorization/roleAssignments","name":"eb3fa35d-14c6-476e-965d-3287df835fb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-16T17:45:41.6438991Z","updatedOn":"2022-11-16T18:12:21.7351318Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89d1db20-3058-52b8-8e72-ffbee92652bc","type":"Microsoft.Authorization/roleAssignments","name":"89d1db20-3058-52b8-8e72-ffbee92652bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-17T20:00:21.8300657Z","updatedOn":"2022-11-17T20:00:21.8300657Z","createdBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","updatedBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/770d246f-66b2-11ed-9a7a-5eff6da83896","type":"Microsoft.Authorization/roleAssignments","name":"770d246f-66b2-11ed-9a7a-5eff6da83896"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:13:16.4073065Z","updatedOn":"2023-05-12T17:27:11.5958673Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d9c1e76-d133-5014-a053-fa81b5a5ddcc","type":"Microsoft.Authorization/roleAssignments","name":"8d9c1e76-d133-5014-a053-fa81b5a5ddcc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:13:16.3810810Z","updatedOn":"2023-05-12T17:27:11.6002511Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9589fe9-37b5-52e8-b6a1-05baa0e40ea2","type":"Microsoft.Authorization/roleAssignments","name":"b9589fe9-37b5-52e8-b6a1-05baa0e40ea2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:13:16.4335352Z","updatedOn":"2023-05-12T17:27:11.6253602Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df3deb96-df88-5ecf-9db1-b40cda69a5b1","type":"Microsoft.Authorization/roleAssignments","name":"df3deb96-df88-5ecf-9db1-b40cda69a5b1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-29T22:31:21.5082047Z","updatedOn":"2023-05-12T17:27:12.7611677Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe4c31ea-8d12-5bbd-80e8-749dd04c242c","type":"Microsoft.Authorization/roleAssignments","name":"fe4c31ea-8d12-5bbd-80e8-749dd04c242c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-18T19:59:52.7113168Z","updatedOn":"2022-11-18T19:59:52.7113168Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/909e97c0-677b-11ed-b3d1-4e4b7fc6d2d7","type":"Microsoft.Authorization/roleAssignments","name":"909e97c0-677b-11ed-b3d1-4e4b7fc6d2d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-18T19:59:56.7899280Z","updatedOn":"2022-11-18T19:59:56.7899280Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9302a900-677b-11ed-b3d1-4e4b7fc6d2d7","type":"Microsoft.Authorization/roleAssignments","name":"9302a900-677b-11ed-b3d1-4e4b7fc6d2d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-18T22:57:24.7333928Z","updatedOn":"2022-11-18T22:57:24.7333928Z","createdBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","updatedBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/616b0a5c-ef17-4f5c-8f54-932fb42ed1b6","type":"Microsoft.Authorization/roleAssignments","name":"616b0a5c-ef17-4f5c-8f54-932fb42ed1b6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-20T08:02:14.3563436Z","updatedOn":"2022-11-20T08:02:14.3563436Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59455a7f-8688-4fa9-bca1-b14ff86b45d8","type":"Microsoft.Authorization/roleAssignments","name":"59455a7f-8688-4fa9-bca1-b14ff86b45d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-22T12:28:29.6735062Z","updatedOn":"2022-11-22T12:28:29.6735062Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a01068c-6a61-11ed-b280-38f9d359b369","type":"Microsoft.Authorization/roleAssignments","name":"2a01068c-6a61-11ed-b280-38f9d359b369"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-22T12:28:35.6487701Z","updatedOn":"2022-11-22T12:28:35.6487701Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2dec6a7a-6a61-11ed-b280-38f9d359b369","type":"Microsoft.Authorization/roleAssignments","name":"2dec6a7a-6a61-11ed-b280-38f9d359b369"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-23T19:27:15.6029824Z","updatedOn":"2022-11-23T19:27:15.6029824Z","createdBy":"573ee898-c9b5-4556-b5b7-ba398712832e","updatedBy":"573ee898-c9b5-4556-b5b7-ba398712832e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5624ab6-6b64-11ed-99e5-a29c0e078d5a","type":"Microsoft.Authorization/roleAssignments","name":"d5624ab6-6b64-11ed-99e5-a29c0e078d5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-23T19:27:29.8496193Z","updatedOn":"2022-11-23T19:27:29.8496193Z","createdBy":"573ee898-c9b5-4556-b5b7-ba398712832e","updatedBy":"573ee898-c9b5-4556-b5b7-ba398712832e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ddce2c51-6b64-11ed-99e5-a29c0e078d5a","type":"Microsoft.Authorization/roleAssignments","name":"ddce2c51-6b64-11ed-99e5-a29c0e078d5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-24T08:00:52.4569469Z","updatedOn":"2022-11-24T08:00:52.4569469Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ea38765-a469-4975-a3b3-69c47e46e70b","type":"Microsoft.Authorization/roleAssignments","name":"9ea38765-a469-4975-a3b3-69c47e46e70b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-24T08:01:11.1412012Z","updatedOn":"2022-11-24T08:01:11.1412012Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f7e731a-0d5b-4591-a97d-0ee2053825bb","type":"Microsoft.Authorization/roleAssignments","name":"9f7e731a-0d5b-4591-a97d-0ee2053825bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T08:56:33.0370700Z","updatedOn":"2022-11-28T08:56:33.0370700Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4d08049c-272d-4905-a2b6-cd89456c5382","type":"Microsoft.Authorization/roleAssignments","name":"4d08049c-272d-4905-a2b6-cd89456c5382"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T18:00:17.3116606Z","updatedOn":"2022-11-28T18:00:17.3116606Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/839a632b-6f46-11ed-9f3a-002248be91cc","type":"Microsoft.Authorization/roleAssignments","name":"839a632b-6f46-11ed-9f3a-002248be91cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T21:24:30.3728549Z","updatedOn":"2022-11-28T21:24:30.3728549Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ad622e0-6f63-11ed-a15a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"0ad622e0-6f63-11ed-a15a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T21:24:34.5112467Z","updatedOn":"2022-11-28T21:24:34.5112467Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d6f187c-6f63-11ed-a15a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"0d6f187c-6f63-11ed-a15a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-29T19:42:39.8350492Z","updatedOn":"2022-11-29T19:42:39.8350492Z","createdBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","updatedBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb69dd10-701d-11ed-8940-6ca1001ae258","type":"Microsoft.Authorization/roleAssignments","name":"fb69dd10-701d-11ed-8940-6ca1001ae258"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-29T19:42:43.2096038Z","updatedOn":"2022-11-29T19:42:43.2096038Z","createdBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","updatedBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd6fed09-701d-11ed-8940-6ca1001ae258","type":"Microsoft.Authorization/roleAssignments","name":"fd6fed09-701d-11ed-8940-6ca1001ae258"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-30T07:32:24.0648059Z","updatedOn":"2022-11-30T07:32:24.0648059Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d745d98-b683-45b9-92a8-918aacf64633","type":"Microsoft.Authorization/roleAssignments","name":"2d745d98-b683-45b9-92a8-918aacf64633"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-01T22:00:12.5092022Z","updatedOn":"2022-12-01T22:00:12.5092022Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/29f80035-534e-479f-bf9d-3243cd2eba93","type":"Microsoft.Authorization/roleAssignments","name":"29f80035-534e-479f-bf9d-3243cd2eba93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-02T07:52:06.0754526Z","updatedOn":"2022-12-02T07:52:06.0754526Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/17ce4c2c-8051-4420-a6ac-6aeb91441711","type":"Microsoft.Authorization/roleAssignments","name":"17ce4c2c-8051-4420-a6ac-6aeb91441711"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-02T23:54:37.7637423Z","updatedOn":"2022-12-02T23:54:37.7637423Z","createdBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","updatedBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e8902907-9bef-55f7-9a6d-64e3cf3b1a77","type":"Microsoft.Authorization/roleAssignments","name":"e8902907-9bef-55f7-9a6d-64e3cf3b1a77"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-05T17:29:10.2915092Z","updatedOn":"2022-12-05T17:29:10.2915092Z","createdBy":"500b0839-c682-4003-9106-8f37a381595d","updatedBy":"500b0839-c682-4003-9106-8f37a381595d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/53a3b656-74c2-11ed-b2ea-f21d81f4d94b","type":"Microsoft.Authorization/roleAssignments","name":"53a3b656-74c2-11ed-b2ea-f21d81f4d94b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-05T17:29:19.7335221Z","updatedOn":"2022-12-05T17:29:19.7335221Z","createdBy":"500b0839-c682-4003-9106-8f37a381595d","updatedBy":"500b0839-c682-4003-9106-8f37a381595d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59486582-74c2-11ed-b2ea-f21d81f4d94b","type":"Microsoft.Authorization/roleAssignments","name":"59486582-74c2-11ed-b2ea-f21d81f4d94b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T00:27:21.1321238Z","updatedOn":"2022-12-06T00:27:21.1321238Z","createdBy":"010e39fa-3d22-4576-ad28-9709490d3973","updatedBy":"010e39fa-3d22-4576-ad28-9709490d3973","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bdc7c72a-74fc-11ed-b1d9-fe40d632c9c8","type":"Microsoft.Authorization/roleAssignments","name":"bdc7c72a-74fc-11ed-b1d9-fe40d632c9c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T00:27:26.7978650Z","updatedOn":"2022-12-06T00:27:26.7978650Z","createdBy":"010e39fa-3d22-4576-ad28-9709490d3973","updatedBy":"010e39fa-3d22-4576-ad28-9709490d3973","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c1df0b20-74fc-11ed-b1d9-fe40d632c9c8","type":"Microsoft.Authorization/roleAssignments","name":"c1df0b20-74fc-11ed-b1d9-fe40d632c9c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T08:09:07.9286883Z","updatedOn":"2022-12-06T08:09:07.9286883Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a54f40a-fc73-4967-93de-1fda5f77fa18","type":"Microsoft.Authorization/roleAssignments","name":"8a54f40a-fc73-4967-93de-1fda5f77fa18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T08:09:07.0223985Z","updatedOn":"2022-12-06T08:09:07.0223985Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/37a700cb-bd3a-4961-a7b7-cf21f1049fd6","type":"Microsoft.Authorization/roleAssignments","name":"37a700cb-bd3a-4961-a7b7-cf21f1049fd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-09T14:12:43.2358573Z","updatedOn":"2022-12-09T14:12:43.2358573Z","createdBy":"500b0839-c682-4003-9106-8f37a381595d","updatedBy":"500b0839-c682-4003-9106-8f37a381595d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88d9f0e9-77cb-11ed-a931-4ecc509b30ab","type":"Microsoft.Authorization/roleAssignments","name":"88d9f0e9-77cb-11ed-a931-4ecc509b30ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T12:05:48.4827550Z","updatedOn":"2022-12-12T12:05:48.4827550Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d238237a-b393-4ab0-9f00-cdf16c5d6b05","type":"Microsoft.Authorization/roleAssignments","name":"d238237a-b393-4ab0-9f00-cdf16c5d6b05"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T16:10:53.3465450Z","updatedOn":"2022-12-12T16:10:53.3465450Z","createdBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","updatedBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8bcca047-7a37-11ed-9b42-5a0f21a4ffba","type":"Microsoft.Authorization/roleAssignments","name":"8bcca047-7a37-11ed-9b42-5a0f21a4ffba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T16:10:57.7295344Z","updatedOn":"2022-12-12T16:10:57.7295344Z","createdBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","updatedBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e42900b-7a37-11ed-9b42-5a0f21a4ffba","type":"Microsoft.Authorization/roleAssignments","name":"8e42900b-7a37-11ed-9b42-5a0f21a4ffba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-14T08:51:42.0015523Z","updatedOn":"2022-12-14T08:51:42.0015523Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d01084d-4e3a-414c-ac62-c3ef82dc3302","type":"Microsoft.Authorization/roleAssignments","name":"8d01084d-4e3a-414c-ac62-c3ef82dc3302"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-16T07:20:02.6088062Z","updatedOn":"2022-12-16T07:20:02.6088062Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0cb541fc-7d12-11ed-8232-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"0cb541fc-7d12-11ed-8232-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-20T19:00:39.7938573Z","updatedOn":"2022-12-20T19:00:39.7938573Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/991d89fd-8098-11ed-a1dc-1e0cf6619ffa","type":"Microsoft.Authorization/roleAssignments","name":"991d89fd-8098-11ed-a1dc-1e0cf6619ffa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-21T19:53:55.0673117Z","updatedOn":"2022-12-21T19:53:55.0673117Z","createdBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","updatedBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/31f1b70c-8169-11ed-871d-bc091b9528f6","type":"Microsoft.Authorization/roleAssignments","name":"31f1b70c-8169-11ed-871d-bc091b9528f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-21T19:54:01.7874075Z","updatedOn":"2022-12-21T19:54:01.7874075Z","createdBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","updatedBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35eb2367-8169-11ed-871d-bc091b9528f6","type":"Microsoft.Authorization/roleAssignments","name":"35eb2367-8169-11ed-871d-bc091b9528f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-23T14:42:33.0388657Z","updatedOn":"2022-12-23T14:42:33.0388657Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7077d7fa-4615-4792-b394-80918dd155ce","type":"Microsoft.Authorization/roleAssignments","name":"7077d7fa-4615-4792-b394-80918dd155ce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-28T13:20:44.8421429Z","updatedOn":"2022-12-28T13:20:44.8421429Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b48d252-d31a-57c7-8cf6-cb5fed6d1a67","type":"Microsoft.Authorization/roleAssignments","name":"4b48d252-d31a-57c7-8cf6-cb5fed6d1a67"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-03T12:31:11.2683110Z","updatedOn":"2023-01-03T12:31:11.2683110Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d408ddb7-31cd-4d46-ab59-fe1be61b2bdc","type":"Microsoft.Authorization/roleAssignments","name":"d408ddb7-31cd-4d46-ab59-fe1be61b2bdc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-06T08:15:45.7088191Z","updatedOn":"2023-01-06T08:15:45.7088191Z","createdBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","updatedBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/510806b0-8d9a-11ed-9e4f-000d3ac772b5","type":"Microsoft.Authorization/roleAssignments","name":"510806b0-8d9a-11ed-9e4f-000d3ac772b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-06T08:15:51.6046641Z","updatedOn":"2023-01-06T08:15:51.6046641Z","createdBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","updatedBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54802b41-8d9a-11ed-9e4f-000d3ac772b5","type":"Microsoft.Authorization/roleAssignments","name":"54802b41-8d9a-11ed-9e4f-000d3ac772b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-06T22:24:58.0712756Z","updatedOn":"2023-01-06T22:24:58.0712756Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbcde9e0-3481-49ad-b1f1-e7226db43e33","type":"Microsoft.Authorization/roleAssignments","name":"cbcde9e0-3481-49ad-b1f1-e7226db43e33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-07T00:15:43.3039407Z","updatedOn":"2023-01-07T00:15:43.3039407Z","createdBy":"80a6e936-2bdc-4927-b49e-2a7a19943b90","updatedBy":"80a6e936-2bdc-4927-b49e-2a7a19943b90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7e73e7e9-99f9-5fa0-a5c8-33268a3e7acc","type":"Microsoft.Authorization/roleAssignments","name":"7e73e7e9-99f9-5fa0-a5c8-33268a3e7acc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-08T14:40:12.1322327Z","updatedOn":"2023-01-08T14:40:12.1322327Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9146e5ba-1dce-41c3-bee6-6e854049e485","type":"Microsoft.Authorization/roleAssignments","name":"9146e5ba-1dce-41c3-bee6-6e854049e485"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-08T14:46:46.8171282Z","updatedOn":"2023-01-08T14:46:46.8171282Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3073c0fc-4181-4de7-bb2d-ceb46bd805c2","type":"Microsoft.Authorization/roleAssignments","name":"3073c0fc-4181-4de7-bb2d-ceb46bd805c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-10T05:58:31.6725565Z","updatedOn":"2023-01-10T05:58:31.6725565Z","createdBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","updatedBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce4f420e-90ab-11ed-81da-002248575167","type":"Microsoft.Authorization/roleAssignments","name":"ce4f420e-90ab-11ed-81da-002248575167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-10T05:58:38.3068493Z","updatedOn":"2023-01-10T05:58:38.3068493Z","createdBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","updatedBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2369b82-90ab-11ed-81da-002248575167","type":"Microsoft.Authorization/roleAssignments","name":"d2369b82-90ab-11ed-81da-002248575167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-10T06:45:54.6704864Z","updatedOn":"2023-01-10T06:45:54.6704864Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6de0e553-90b2-11ed-9d42-6045bd78eeea","type":"Microsoft.Authorization/roleAssignments","name":"6de0e553-90b2-11ed-9d42-6045bd78eeea"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-11T22:44:31.5456256Z","updatedOn":"2023-01-11T22:44:31.5456256Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/55a9c9ca-e483-44ad-ab32-17ac0f1905e2","type":"Microsoft.Authorization/roleAssignments","name":"55a9c9ca-e483-44ad-ab32-17ac0f1905e2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-12T07:27:30.7499209Z","updatedOn":"2023-01-12T07:27:30.7499209Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c2fcdf3-9376-46c4-862c-c5478fad402d","type":"Microsoft.Authorization/roleAssignments","name":"6c2fcdf3-9376-46c4-862c-c5478fad402d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-12T20:29:47.8942736Z","updatedOn":"2023-01-12T20:29:47.8942736Z","createdBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","updatedBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dad76eb4-92b7-11ed-9e92-3e22fbc2ce2f","type":"Microsoft.Authorization/roleAssignments","name":"dad76eb4-92b7-11ed-9e92-3e22fbc2ce2f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-12T20:29:51.8091784Z","updatedOn":"2023-01-12T20:29:51.8091784Z","createdBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","updatedBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd198dce-92b7-11ed-9e92-3e22fbc2ce2f","type":"Microsoft.Authorization/roleAssignments","name":"dd198dce-92b7-11ed-9e92-3e22fbc2ce2f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-13T05:50:47.3154688Z","updatedOn":"2023-01-13T05:50:47.3154688Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/38d171ad-9306-11ed-a704-ee47e05c3b1e","type":"Microsoft.Authorization/roleAssignments","name":"38d171ad-9306-11ed-a704-ee47e05c3b1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-13T05:50:53.1628390Z","updatedOn":"2023-01-13T05:50:53.1628390Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3bf43d16-9306-11ed-a704-ee47e05c3b1e","type":"Microsoft.Authorization/roleAssignments","name":"3bf43d16-9306-11ed-a704-ee47e05c3b1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-14T06:07:18.3233862Z","updatedOn":"2023-01-14T06:07:18.3233862Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2587a66-93d1-11ed-a6e9-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"b2587a66-93d1-11ed-a6e9-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-14T06:07:23.4646871Z","updatedOn":"2023-01-14T06:07:23.4646871Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b56e4d80-93d1-11ed-a6e9-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"b56e4d80-93d1-11ed-a6e9-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-16T23:52:20.1337328Z","updatedOn":"2023-01-16T23:52:20.1337328Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/911d588d-e4a0-5501-bd42-db0fe4ac81ea","type":"Microsoft.Authorization/roleAssignments","name":"911d588d-e4a0-5501-bd42-db0fe4ac81ea"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-17T21:03:20.3495010Z","updatedOn":"2023-01-17T21:03:20.3495010Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":"partner + team engineer "},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b200ea13-6210-46cf-b622-5e1fa94d7196","type":"Microsoft.Authorization/roleAssignments","name":"b200ea13-6210-46cf-b622-5e1fa94d7196"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-17T21:55:10.9367237Z","updatedOn":"2023-01-17T21:55:10.9367237Z","createdBy":"252476b5-423c-4de6-8f23-f3b57897abfc","updatedBy":"252476b5-423c-4de6-8f23-f3b57897abfc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9c4d35c3-96b1-11ed-bcb1-aa442d61f9f5","type":"Microsoft.Authorization/roleAssignments","name":"9c4d35c3-96b1-11ed-bcb1-aa442d61f9f5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-18T16:39:36.8544109Z","updatedOn":"2023-01-18T16:39:36.8544109Z","createdBy":"57440c04-5eed-4c74-92b6-44b016b882f2","updatedBy":"57440c04-5eed-4c74-92b6-44b016b882f2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e47587fc-952b-11ed-9582-22998bd40e8c","type":"Microsoft.Authorization/roleAssignments","name":"e47587fc-952b-11ed-9582-22998bd40e8c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-19T06:11:42.7348591Z","updatedOn":"2023-01-19T06:11:42.7348591Z","createdBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","updatedBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dcee111d-97c0-11ed-8b08-5e144daaf885","type":"Microsoft.Authorization/roleAssignments","name":"dcee111d-97c0-11ed-8b08-5e144daaf885"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-19T06:11:46.7450508Z","updatedOn":"2023-01-19T06:11:46.7450508Z","createdBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","updatedBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df259f28-97c0-11ed-8b08-5e144daaf885","type":"Microsoft.Authorization/roleAssignments","name":"df259f28-97c0-11ed-8b08-5e144daaf885"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-20T21:01:23.9458046Z","updatedOn":"2023-05-12T17:27:12.7106298Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f654663-8564-546e-a6fc-452f7b76de5a","type":"Microsoft.Authorization/roleAssignments","name":"5f654663-8564-546e-a6fc-452f7b76de5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T17:09:42.5564083Z","updatedOn":"2023-01-23T17:09:42.5564083Z","createdBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","updatedBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9e2414b-9b40-11ed-96c6-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"b9e2414b-9b40-11ed-96c6-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T17:09:45.5610260Z","updatedOn":"2023-01-23T17:09:45.5610260Z","createdBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","updatedBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbc6263b-9b40-11ed-96c6-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"bbc6263b-9b40-11ed-96c6-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T18:43:59.1011432Z","updatedOn":"2023-01-23T18:43:59.1011432Z","createdBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","updatedBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e58487c6-9b4d-11ed-8c22-8c1645a48227","type":"Microsoft.Authorization/roleAssignments","name":"e58487c6-9b4d-11ed-8c22-8c1645a48227"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T18:44:02.5989503Z","updatedOn":"2023-01-23T18:44:02.5989503Z","createdBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","updatedBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7a002ef-9b4d-11ed-8c22-8c1645a48227","type":"Microsoft.Authorization/roleAssignments","name":"e7a002ef-9b4d-11ed-8c22-8c1645a48227"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-10T06:45:47.1925698Z","updatedOn":"2022-03-10T06:45:47.1925698Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4aaa7af-d414-42e9-bd99-b14d707753a7","type":"Microsoft.Authorization/roleAssignments","name":"e4aaa7af-d414-42e9-bd99-b14d707753a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-11T03:42:35.9073660Z","updatedOn":"2022-03-11T03:42:35.9073660Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a0f9eea-a0ed-11ec-9b90-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"4a0f9eea-a0ed-11ec-9b90-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-11T19:59:10.3149108Z","updatedOn":"2022-03-11T19:59:10.3149108Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b6e06a80-a175-11ec-8f66-002248778035","type":"Microsoft.Authorization/roleAssignments","name":"b6e06a80-a175-11ec-8f66-002248778035"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-14T05:57:31.9169431Z","updatedOn":"2022-03-14T05:57:31.9169431Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/04323e79-5b88-4b91-86e7-b8bfa1c2d8b9","type":"Microsoft.Authorization/roleAssignments","name":"04323e79-5b88-4b91-86e7-b8bfa1c2d8b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-14T23:57:21.8404827Z","updatedOn":"2022-03-14T23:57:21.8404827Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/824ca9a3-a3f2-11ec-b5c2-626147b15e2d","type":"Microsoft.Authorization/roleAssignments","name":"824ca9a3-a3f2-11ec-b5c2-626147b15e2d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-15T05:47:06.0764200Z","updatedOn":"2022-03-15T05:47:06.0764200Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d8c0655-15f2-4864-9ebf-6c5d95ea5797","type":"Microsoft.Authorization/roleAssignments","name":"3d8c0655-15f2-4864-9ebf-6c5d95ea5797"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-15T05:48:19.3617384Z","updatedOn":"2022-03-15T05:48:19.3617384Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5a1298d-008a-4dad-95db-70d41dc0ff2e","type":"Microsoft.Authorization/roleAssignments","name":"b5a1298d-008a-4dad-95db-70d41dc0ff2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-15T19:57:01.4651070Z","updatedOn":"2022-03-15T19:57:01.4651070Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f90898e-0a20-4778-b842-abc610614801","type":"Microsoft.Authorization/roleAssignments","name":"2f90898e-0a20-4778-b842-abc610614801"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-16T02:56:12.3673604Z","updatedOn":"2022-03-16T02:56:12.3673604Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be953738-c4c0-4da0-9b0f-42c89eb31451","type":"Microsoft.Authorization/roleAssignments","name":"be953738-c4c0-4da0-9b0f-42c89eb31451"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T10:12:31.1977135Z","updatedOn":"2022-03-21T10:12:31.1977135Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92ad8cda-f519-4160-b28d-6e0e8d19fb8e","type":"Microsoft.Authorization/roleAssignments","name":"92ad8cda-f519-4160-b28d-6e0e8d19fb8e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T17:57:33.7215077Z","updatedOn":"2022-03-21T17:57:33.7215077Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6210523c-a940-11ec-88f4-00224850c1b5","type":"Microsoft.Authorization/roleAssignments","name":"6210523c-a940-11ec-88f4-00224850c1b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T22:00:37.3135630Z","updatedOn":"2022-03-21T22:00:37.3135630Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5678b88f-a962-11ec-b646-0022487a9d6b","type":"Microsoft.Authorization/roleAssignments","name":"5678b88f-a962-11ec-b646-0022487a9d6b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T23:00:49.2441783Z","updatedOn":"2022-03-21T23:00:49.2441783Z","createdBy":"3a522b7c-61fd-4fcf-aa7f-3e8a6e7cc3af","updatedBy":"3a522b7c-61fd-4fcf-aa7f-3e8a6e7cc3af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bef73288-a96a-11ec-bd2b-6acf089951ab","type":"Microsoft.Authorization/roleAssignments","name":"bef73288-a96a-11ec-bd2b-6acf089951ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-22T04:03:04.2502656Z","updatedOn":"2022-03-22T04:03:04.2502656Z","createdBy":"9d0cc8e5-b005-4b2b-9a31-3b6c624d5330","updatedBy":"9d0cc8e5-b005-4b2b-9a31-3b6c624d5330","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8a4f8a7-a994-11ec-b30e-4a9f38c1a382","type":"Microsoft.Authorization/roleAssignments","name":"f8a4f8a7-a994-11ec-b30e-4a9f38c1a382"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-22T13:40:03.8073664Z","updatedOn":"2022-03-22T13:40:03.8073664Z","createdBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","updatedBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/93f47801-a9e5-11ec-86a5-3a3e6c7e1ac8","type":"Microsoft.Authorization/roleAssignments","name":"93f47801-a9e5-11ec-86a5-3a3e6c7e1ac8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-23T10:14:54.3796697Z","updatedOn":"2022-03-23T10:14:54.3796697Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e3f182b-aa92-11ec-9c92-18c04da96df8","type":"Microsoft.Authorization/roleAssignments","name":"0e3f182b-aa92-11ec-9c92-18c04da96df8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-23T23:47:01.7045602Z","updatedOn":"2022-03-23T23:47:01.7045602Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5312596-61f6-486a-ad10-fdb35f1c1665","type":"Microsoft.Authorization/roleAssignments","name":"d5312596-61f6-486a-ad10-fdb35f1c1665"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-25T05:07:14.4623821Z","updatedOn":"2022-03-25T05:07:14.4623821Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df7fe6e9-3cf1-4547-ba81-c1ad0d7d565d","type":"Microsoft.Authorization/roleAssignments","name":"df7fe6e9-3cf1-4547-ba81-c1ad0d7d565d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-29T14:13:44.9635087Z","updatedOn":"2022-03-29T14:13:44.9635087Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/530db943-4ece-46bc-b456-79374d5ec2ba","type":"Microsoft.Authorization/roleAssignments","name":"530db943-4ece-46bc-b456-79374d5ec2ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-30T16:18:52.9056346Z","updatedOn":"2022-03-30T16:18:52.9056346Z","createdBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","updatedBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3e0d853-568c-4e64-851d-2292fe92a007","type":"Microsoft.Authorization/roleAssignments","name":"d3e0d853-568c-4e64-851d-2292fe92a007"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-05T04:54:30.2719737Z","updatedOn":"2022-04-05T04:54:30.2719737Z","createdBy":"f0b00319-13f5-4c2b-928a-73ccb5edd222","updatedBy":"f0b00319-13f5-4c2b-928a-73ccb5edd222","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78ffc9e7-b49c-11ec-964c-b219be9347e3","type":"Microsoft.Authorization/roleAssignments","name":"78ffc9e7-b49c-11ec-964c-b219be9347e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-05T22:40:43.0016940Z","updatedOn":"2022-04-05T22:40:43.0016940Z","createdBy":"639a731d-01eb-47bc-88aa-c1e2ba14db02","updatedBy":"639a731d-01eb-47bc-88aa-c1e2ba14db02","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c9e0e6c-b531-11ec-aea8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6c9e0e6c-b531-11ec-aea8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-06T12:49:05.2173956Z","updatedOn":"2022-04-06T12:49:05.2173956Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f0a7f4e5-b5a7-11ec-bae5-000d3a6f3c6e","type":"Microsoft.Authorization/roleAssignments","name":"f0a7f4e5-b5a7-11ec-bae5-000d3a6f3c6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-07T01:16:34.9503446Z","updatedOn":"2022-04-07T01:16:34.9503446Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5bdb51f8-5551-44f9-9819-a52fa97c2fef","type":"Microsoft.Authorization/roleAssignments","name":"5bdb51f8-5551-44f9-9819-a52fa97c2fef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-11T05:16:56.1225175Z","updatedOn":"2022-04-11T05:16:56.1225175Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99904768-b956-11ec-a61a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"99904768-b956-11ec-a61a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T23:22:51.6419715Z","updatedOn":"2022-04-12T23:22:51.6419715Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/788b9be6-bab7-11ec-b096-0022487898d6","type":"Microsoft.Authorization/roleAssignments","name":"788b9be6-bab7-11ec-b096-0022487898d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T07:42:38.9160126Z","updatedOn":"2022-04-13T07:42:38.9160126Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a58e304-bafd-11ec-8461-a2dde8388af9","type":"Microsoft.Authorization/roleAssignments","name":"4a58e304-bafd-11ec-8461-a2dde8388af9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T16:12:39.4214747Z","updatedOn":"2022-04-13T16:12:39.4214747Z","createdBy":"c302f71c-7b89-4d55-8c87-135833038531","updatedBy":"c302f71c-7b89-4d55-8c87-135833038531","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3bd4838c-4c24-4bb6-b31f-d055dc68694f","type":"Microsoft.Authorization/roleAssignments","name":"3bd4838c-4c24-4bb6-b31f-d055dc68694f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T09:53:20.2997466Z","updatedOn":"2022-04-14T09:53:20.2997466Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b44f0aaa-bbd8-11ec-8da6-0a4cab55437d","type":"Microsoft.Authorization/roleAssignments","name":"b44f0aaa-bbd8-11ec-8da6-0a4cab55437d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T16:49:01.5455829Z","updatedOn":"2022-04-14T16:49:01.5455829Z","createdBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","updatedBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","delegatedManagedIdentityResourceId":null,"description":"Allows + github actions to run e2e tests. Only the main branch is permitted access, + and credentials are not shared with forks."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4e9d34c-9113-45d4-a0f0-175593c38c33","type":"Microsoft.Authorization/roleAssignments","name":"f4e9d34c-9113-45d4-a0f0-175593c38c33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-20T06:23:32.6340955Z","updatedOn":"2022-04-20T06:23:32.6340955Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6675beb7-c072-11ec-b9ab-000d3ac3f60e","type":"Microsoft.Authorization/roleAssignments","name":"6675beb7-c072-11ec-b9ab-000d3ac3f60e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-20T18:02:47.6341581Z","updatedOn":"2022-04-20T18:02:47.6341581Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/56617dbb-76a1-401d-96fe-8a22f58284d8","type":"Microsoft.Authorization/roleAssignments","name":"56617dbb-76a1-401d-96fe-8a22f58284d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T08:17:07.1604388Z","updatedOn":"2022-04-21T08:17:07.1604388Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6e60c2be-c14b-11ec-82b0-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6e60c2be-c14b-11ec-82b0-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T21:36:13.8709604Z","updatedOn":"2022-04-21T21:36:13.8709604Z","createdBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","updatedBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/10b94b6e-c1bb-11ec-9ff7-523c2f7f99a3","type":"Microsoft.Authorization/roleAssignments","name":"10b94b6e-c1bb-11ec-9ff7-523c2f7f99a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-22T18:55:55.5256074Z","updatedOn":"2022-04-22T18:55:55.5256074Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6917978-c26d-11ec-a699-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"d6917978-c26d-11ec-a699-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-24T10:36:03.4988906Z","updatedOn":"2022-04-24T10:36:03.4988906Z","createdBy":"d3cd2b55-3b25-4b68-b6fd-a08967de9266","updatedBy":"d3cd2b55-3b25-4b68-b6fd-a08967de9266","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/558d3e63-c3ba-11ec-b4f9-000d3ac7d8f0","type":"Microsoft.Authorization/roleAssignments","name":"558d3e63-c3ba-11ec-b4f9-000d3ac7d8f0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-25T06:33:58.7782201Z","updatedOn":"2022-04-25T06:33:58.7782201Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ae507161-c461-11ec-b99d-4a4f5b60a172","type":"Microsoft.Authorization/roleAssignments","name":"ae507161-c461-11ec-b99d-4a4f5b60a172"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-26T16:28:17.7010346Z","updatedOn":"2022-04-26T16:28:17.7010346Z","createdBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","updatedBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e04b1510-c57d-11ec-a3c9-0641de48d9d3","type":"Microsoft.Authorization/roleAssignments","name":"e04b1510-c57d-11ec-a3c9-0641de48d9d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-26T21:31:37.1620998Z","updatedOn":"2022-04-26T21:31:37.1620998Z","createdBy":"9bf576b7-c3cf-492b-9bcf-8c8832e2e0a5","updatedBy":"9bf576b7-c3cf-492b-9bcf-8c8832e2e0a5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/409a9eb9-c5a8-11ec-b358-d20abc546c29","type":"Microsoft.Authorization/roleAssignments","name":"409a9eb9-c5a8-11ec-b358-d20abc546c29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-28T07:13:54.9152651Z","updatedOn":"2022-04-28T07:13:54.9152651Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5f3166a-ed3f-43a7-9b34-bb910beaee12","type":"Microsoft.Authorization/roleAssignments","name":"f5f3166a-ed3f-43a7-9b34-bb910beaee12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T12:14:12.5786055Z","updatedOn":"2022-05-02T12:14:12.5786055Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f06c939-ca11-11ec-9966-da65ad1ab332","type":"Microsoft.Authorization/roleAssignments","name":"5f06c939-ca11-11ec-9966-da65ad1ab332"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:17.4008338Z","updatedOn":"2022-05-02T13:40:17.4008338Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/846f4e2d-0ec9-48ef-fd6e-6ac1cb7586e6","type":"Microsoft.Authorization/roleAssignments","name":"846f4e2d-0ec9-48ef-fd6e-6ac1cb7586e6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.8453423Z","updatedOn":"2022-05-02T13:40:18.8453423Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e72a2b8a-2c36-4ac1-aec3-4fa68f3cae16","type":"Microsoft.Authorization/roleAssignments","name":"e72a2b8a-2c36-4ac1-aec3-4fa68f3cae16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.0609853Z","updatedOn":"2022-05-02T13:40:18.0609853Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/72e6bf18-35fb-436e-3e05-9ba0a0747299","type":"Microsoft.Authorization/roleAssignments","name":"72e6bf18-35fb-436e-3e05-9ba0a0747299"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.1173679Z","updatedOn":"2022-05-02T13:40:18.1173679Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/724e274f-6e37-445c-608e-199fb9eaa982","type":"Microsoft.Authorization/roleAssignments","name":"724e274f-6e37-445c-608e-199fb9eaa982"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T16:59:33.5195217Z","updatedOn":"2022-05-02T16:59:33.5195217Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/98620dcd-bcc5-4828-b846-369c64574ee1","type":"Microsoft.Authorization/roleAssignments","name":"98620dcd-bcc5-4828-b846-369c64574ee1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T06:36:46.9583100Z","updatedOn":"2022-05-09T06:36:46.9583100Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5a313ab-6903-471c-a6bf-8d84989e8cb4","type":"Microsoft.Authorization/roleAssignments","name":"d5a313ab-6903-471c-a6bf-8d84989e8cb4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T22:20:41.5499828Z","updatedOn":"2022-05-09T22:20:41.5499828Z","createdBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","updatedBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/425f8b8d-cfe6-11ec-bbe5-00155ddd560d","type":"Microsoft.Authorization/roleAssignments","name":"425f8b8d-cfe6-11ec-bbe5-00155ddd560d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-10T06:15:39.4482664Z","updatedOn":"2022-05-10T06:15:39.4482664Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a2ff126-fb32-4ca9-8c4d-c8b22209cbc1","type":"Microsoft.Authorization/roleAssignments","name":"8a2ff126-fb32-4ca9-8c4d-c8b22209cbc1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-11T23:10:09.0651064Z","updatedOn":"2022-05-11T23:10:09.0651064Z","createdBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","updatedBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/804a630f-d17f-11ec-bb71-6045bdab52dc","type":"Microsoft.Authorization/roleAssignments","name":"804a630f-d17f-11ec-bb71-6045bdab52dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-12T13:47:03.3832395Z","updatedOn":"2022-05-12T13:47:03.3832395Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00bc6898-d1fa-11ec-974a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"00bc6898-d1fa-11ec-974a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-13T20:36:59.6109396Z","updatedOn":"2022-05-13T20:36:59.6109396Z","createdBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","updatedBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ea3a01d-d2fc-11ec-9997-be6e344e58c1","type":"Microsoft.Authorization/roleAssignments","name":"6ea3a01d-d2fc-11ec-9997-be6e344e58c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-17T06:49:11.7087809Z","updatedOn":"2022-05-17T06:49:11.7087809Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07f76b15-d899-4d21-8542-29c2479e05e1","type":"Microsoft.Authorization/roleAssignments","name":"07f76b15-d899-4d21-8542-29c2479e05e1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-18T13:22:09.5941967Z","updatedOn":"2022-05-18T13:22:09.5941967Z","createdBy":"52d64fbe-1728-4b2b-a0c4-849705cb9c96","updatedBy":"52d64fbe-1728-4b2b-a0c4-849705cb9c96","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/847201fc-d6ad-11ec-a176-000d3a083c47","type":"Microsoft.Authorization/roleAssignments","name":"847201fc-d6ad-11ec-a176-000d3a083c47"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-20T22:35:09.9396236Z","updatedOn":"2022-05-20T22:35:09.9396236Z","createdBy":"1ec25b73-94d5-4bf9-a56f-ca7d9bd4164c","updatedBy":"1ec25b73-94d5-4bf9-a56f-ca7d9bd4164c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5d512f6-fb53-4fad-b3be-ec154c7a6085","type":"Microsoft.Authorization/roleAssignments","name":"c5d512f6-fb53-4fad-b3be-ec154c7a6085"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-22T23:45:36.9119159Z","updatedOn":"2022-05-22T23:45:36.9119159Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46fd33ed-da29-11ec-919f-6045bd7a16bc","type":"Microsoft.Authorization/roleAssignments","name":"46fd33ed-da29-11ec-919f-6045bd7a16bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-23T03:50:38.5802008Z","updatedOn":"2022-05-23T03:50:38.5802008Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ab46785f-2521-4172-871f-91e7dc500a5b","type":"Microsoft.Authorization/roleAssignments","name":"ab46785f-2521-4172-871f-91e7dc500a5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-23T18:09:05.5672217Z","updatedOn":"2022-05-23T18:09:05.5672217Z","createdBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","updatedBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3f47f83-e599-4106-974f-5ff73955ffa6","type":"Microsoft.Authorization/roleAssignments","name":"e3f47f83-e599-4106-974f-5ff73955ffa6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-24T20:49:20.4480948Z","updatedOn":"2022-05-24T20:49:20.4480948Z","createdBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","updatedBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbf490ce-dba2-11ec-b0af-6045bdab52dc","type":"Microsoft.Authorization/roleAssignments","name":"fbf490ce-dba2-11ec-b0af-6045bdab52dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-25T18:39:32.8389167Z","updatedOn":"2022-05-25T18:39:32.8389167Z","createdBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","updatedBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/048a3cf1-dc5a-11ec-8804-6045bdab52dc","type":"Microsoft.Authorization/roleAssignments","name":"048a3cf1-dc5a-11ec-8804-6045bdab52dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T01:53:46.3648590Z","updatedOn":"2022-05-26T01:53:46.3648590Z","createdBy":"834b5e76-453d-44f5-80ff-3481c8415d66","updatedBy":"834b5e76-453d-44f5-80ff-3481c8415d66","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac5ab95a-dc96-11ec-92bb-065f8efd402d","type":"Microsoft.Authorization/roleAssignments","name":"ac5ab95a-dc96-11ec-92bb-065f8efd402d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T06:40:41.8769416Z","updatedOn":"2022-05-26T06:40:41.8769416Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2812727c-1e58-49f0-84a6-13e2b8b7cce7","type":"Microsoft.Authorization/roleAssignments","name":"2812727c-1e58-49f0-84a6-13e2b8b7cce7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T16:39:02.6438636Z","updatedOn":"2022-05-26T16:39:02.6438636Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5bb051d1-dd12-11ec-8dd4-9e3ebf2d444f","type":"Microsoft.Authorization/roleAssignments","name":"5bb051d1-dd12-11ec-8dd4-9e3ebf2d444f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-28T07:02:36.1409282Z","updatedOn":"2022-05-28T07:02:36.1409282Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dbf46cb0-1221-443e-bab0-9cd11b7afece","type":"Microsoft.Authorization/roleAssignments","name":"dbf46cb0-1221-443e-bab0-9cd11b7afece"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-31T03:23:22.9404784Z","updatedOn":"2022-05-31T03:23:22.9404784Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/047700b3-e091-11ec-b7b9-f6caf9b02627","type":"Microsoft.Authorization/roleAssignments","name":"047700b3-e091-11ec-b7b9-f6caf9b02627"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-31T03:25:49.5470268Z","updatedOn":"2022-05-31T03:25:49.5470268Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b03550bc-b4aa-4aab-8bd7-0d27b86c9380","type":"Microsoft.Authorization/roleAssignments","name":"b03550bc-b4aa-4aab-8bd7-0d27b86c9380"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-01T14:15:14.5143992Z","updatedOn":"2022-06-01T14:15:14.5143992Z","createdBy":"572b7854-a995-402b-8482-46e12d3c9665","updatedBy":"572b7854-a995-402b-8482-46e12d3c9665","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41183c3a-e1b5-11ec-bad7-3c7c3f1d0035","type":"Microsoft.Authorization/roleAssignments","name":"41183c3a-e1b5-11ec-bad7-3c7c3f1d0035"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-01T15:59:31.6776783Z","updatedOn":"2022-06-01T15:59:31.6776783Z","createdBy":"203de16f-a918-45b1-bde4-6cc574d16944","updatedBy":"203de16f-a918-45b1-bde4-6cc574d16944","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e0dd4b8a-e1c3-11ec-949c-7a1cf6c5b419","type":"Microsoft.Authorization/roleAssignments","name":"e0dd4b8a-e1c3-11ec-949c-7a1cf6c5b419"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-01T18:14:50.2776576Z","updatedOn":"2022-06-01T18:14:50.2776576Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61f89f02-3565-409f-8e72-fc4e58b40178","type":"Microsoft.Authorization/roleAssignments","name":"61f89f02-3565-409f-8e72-fc4e58b40178"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-02T10:22:35.3875246Z","updatedOn":"2022-06-02T10:22:35.3875246Z","createdBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","updatedBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eabe3f5d-e25d-11ec-9d25-002248575167","type":"Microsoft.Authorization/roleAssignments","name":"eabe3f5d-e25d-11ec-9d25-002248575167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-02T19:10:50.1608669Z","updatedOn":"2022-06-02T19:10:50.1608669Z","createdBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","updatedBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d33bf47-7a98-4cca-84be-a622a8a520ae","type":"Microsoft.Authorization/roleAssignments","name":"2d33bf47-7a98-4cca-84be-a622a8a520ae"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-03T17:52:39.6424601Z","updatedOn":"2022-06-03T17:52:39.6424601Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/808a6fa6-1aa8-401a-b12d-3dbf49678aa5","type":"Microsoft.Authorization/roleAssignments","name":"808a6fa6-1aa8-401a-b12d-3dbf49678aa5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-03T18:32:43.3145647Z","updatedOn":"2022-06-03T18:32:43.3145647Z","createdBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","updatedBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ce8e3fe-e36b-11ec-93c2-0ebbe08470ef","type":"Microsoft.Authorization/roleAssignments","name":"8ce8e3fe-e36b-11ec-93c2-0ebbe08470ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-03T20:51:18.9925616Z","updatedOn":"2022-06-03T20:51:18.9925616Z","createdBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","updatedBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea9b98ba-e37e-11ec-b495-0ebbe08470ef","type":"Microsoft.Authorization/roleAssignments","name":"ea9b98ba-e37e-11ec-b495-0ebbe08470ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-06T19:39:15.5380737Z","updatedOn":"2022-06-06T19:39:15.5380737Z","createdBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","updatedBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57d73d6c-e5d0-11ec-a3ee-c220c0843243","type":"Microsoft.Authorization/roleAssignments","name":"57d73d6c-e5d0-11ec-a3ee-c220c0843243"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-07T02:58:19.0816460Z","updatedOn":"2022-06-07T02:58:19.0816460Z","createdBy":"0bf53c4f-0173-466d-967d-debbe9e551d6","updatedBy":"0bf53c4f-0173-466d-967d-debbe9e551d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/adea0756-e60d-11ec-bd0e-66dbb5eba95d","type":"Microsoft.Authorization/roleAssignments","name":"adea0756-e60d-11ec-bd0e-66dbb5eba95d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-07T18:27:18.2907455Z","updatedOn":"2022-06-07T18:27:18.2907455Z","createdBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","updatedBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/75dc9d88-e68f-11ec-bbbc-aa665a03731d","type":"Microsoft.Authorization/roleAssignments","name":"75dc9d88-e68f-11ec-bbbc-aa665a03731d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-08T18:25:22.6640205Z","updatedOn":"2022-06-08T18:25:22.6640205Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/17b651ab-ff7f-4cf2-833a-27f695725732","type":"Microsoft.Authorization/roleAssignments","name":"17b651ab-ff7f-4cf2-833a-27f695725732"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-08T19:34:11.0218858Z","updatedOn":"2022-06-08T19:34:11.0218858Z","createdBy":"1b51b78e-fd1f-484f-98b6-3423d189977b","updatedBy":"1b51b78e-fd1f-484f-98b6-3423d189977b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5e9c3a1d-3f79-4e4b-9b9d-fbe1f3d09ec5","type":"Microsoft.Authorization/roleAssignments","name":"5e9c3a1d-3f79-4e4b-9b9d-fbe1f3d09ec5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-08T19:46:00.8296947Z","updatedOn":"2022-06-08T19:46:00.8296947Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f2fd786-e763-11ec-b282-000d3af64fa4","type":"Microsoft.Authorization/roleAssignments","name":"9f2fd786-e763-11ec-b282-000d3af64fa4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-09T01:49:44.1244830Z","updatedOn":"2022-06-09T01:49:44.1244830Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14a2ebaa-ca44-4eb7-851c-01d577cb625e","type":"Microsoft.Authorization/roleAssignments","name":"14a2ebaa-ca44-4eb7-851c-01d577cb625e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-09T23:29:31.3797237Z","updatedOn":"2022-06-09T23:29:31.3797237Z","createdBy":"b34e062a-5a73-4cec-af00-1ecb446deb92","updatedBy":"b34e062a-5a73-4cec-af00-1ecb446deb92","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/02f3fb8e-e84c-11ec-bd1c-6045bd7e546a","type":"Microsoft.Authorization/roleAssignments","name":"02f3fb8e-e84c-11ec-bd1c-6045bd7e546a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T15:06:09.3851225Z","updatedOn":"2022-06-10T15:06:09.3851225Z","createdBy":"fb4b724d-4b7e-4756-aa0b-d91dc0c5acc9","updatedBy":"fb4b724d-4b7e-4756-aa0b-d91dc0c5acc9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/db7a073e-e8ce-11ec-8b1d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"db7a073e-e8ce-11ec-8b1d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T18:05:28.7449646Z","updatedOn":"2022-06-10T18:05:28.7449646Z","createdBy":"0e06046f-cf0d-4924-86b0-bbcf36a1936f","updatedBy":"0e06046f-cf0d-4924-86b0-bbcf36a1936f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7824ddb-e8e7-11ec-b465-421b394b7a96","type":"Microsoft.Authorization/roleAssignments","name":"e7824ddb-e8e7-11ec-b465-421b394b7a96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T18:05:29.8303312Z","updatedOn":"2022-06-10T18:05:29.8303312Z","createdBy":"1295ee3f-edbd-4185-9628-13318404c52a","updatedBy":"1295ee3f-edbd-4185-9628-13318404c52a","delegatedManagedIdentityResourceId":null,"description":"New + AKS member"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/609b8d2a-2b4f-4767-aa5e-c5c7f11b687b","type":"Microsoft.Authorization/roleAssignments","name":"609b8d2a-2b4f-4767-aa5e-c5c7f11b687b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T21:18:18.0994828Z","updatedOn":"2022-06-10T21:18:18.0994828Z","createdBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","updatedBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d80f2247-e902-11ec-96de-2edd4b852bcf","type":"Microsoft.Authorization/roleAssignments","name":"d80f2247-e902-11ec-96de-2edd4b852bcf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:19.7988558Z","updatedOn":"2022-06-13T09:20:19.7988558Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/053ff776-f32a-4298-cbeb-0da661875d88","type":"Microsoft.Authorization/roleAssignments","name":"053ff776-f32a-4298-cbeb-0da661875d88"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:19.8466660Z","updatedOn":"2022-06-13T09:20:19.8466660Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b4bd6e6-869b-4da3-a50f-b7eb8b183de5","type":"Microsoft.Authorization/roleAssignments","name":"4b4bd6e6-869b-4da3-a50f-b7eb8b183de5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:20.2195738Z","updatedOn":"2022-06-13T09:20:20.2195738Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/21db9db3-7adc-40f3-5885-af265b9ddad2","type":"Microsoft.Authorization/roleAssignments","name":"21db9db3-7adc-40f3-5885-af265b9ddad2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:19.9439478Z","updatedOn":"2022-06-13T09:20:19.9439478Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2418e820-601e-49da-a20d-4fa1ee6cc4cf","type":"Microsoft.Authorization/roleAssignments","name":"2418e820-601e-49da-a20d-4fa1ee6cc4cf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T17:55:18.4118508Z","updatedOn":"2022-06-13T17:55:18.4118508Z","createdBy":"1295ee3f-edbd-4185-9628-13318404c52a","updatedBy":"1295ee3f-edbd-4185-9628-13318404c52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbcfa2a4-eb41-11ec-b38e-467d14df3056","type":"Microsoft.Authorization/roleAssignments","name":"fbcfa2a4-eb41-11ec-b38e-467d14df3056"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-14T09:33:38.7306445Z","updatedOn":"2022-06-14T09:33:38.7306445Z","createdBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","updatedBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/10ffce40-ebc5-11ec-aebe-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"10ffce40-ebc5-11ec-aebe-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-14T23:20:32.7229029Z","updatedOn":"2022-06-14T23:20:32.7229029Z","createdBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","updatedBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/954903db-ec38-11ec-acd7-72f791cfbed2","type":"Microsoft.Authorization/roleAssignments","name":"954903db-ec38-11ec-acd7-72f791cfbed2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T06:30:47.7914595Z","updatedOn":"2022-06-16T06:30:47.7914595Z","createdBy":"504c34f4-8389-4920-aec9-0c595b508740","updatedBy":"504c34f4-8389-4920-aec9-0c595b508740","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb760c25-af25-412f-a643-93e98c629270","type":"Microsoft.Authorization/roleAssignments","name":"bb760c25-af25-412f-a643-93e98c629270"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T20:16:07.8463557Z","updatedOn":"2022-06-16T20:16:07.8463557Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4555d91-07f5-46d6-b29f-50b0d211c4ae","type":"Microsoft.Authorization/roleAssignments","name":"f4555d91-07f5-46d6-b29f-50b0d211c4ae"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T21:30:16.4420742Z","updatedOn":"2022-06-16T21:30:16.4420742Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":"to + programatically create new resource group, aks cluster, and container registry"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2c2fc915-d722-4dde-b730-7c73c8a87fdc","type":"Microsoft.Authorization/roleAssignments","name":"2c2fc915-d722-4dde-b730-7c73c8a87fdc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T22:19:51.5734675Z","updatedOn":"2022-06-16T22:19:51.5734675Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cca9c113-570a-4969-aa72-45c31091684a","type":"Microsoft.Authorization/roleAssignments","name":"cca9c113-570a-4969-aa72-45c31091684a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-17T02:19:37.1755269Z","updatedOn":"2022-06-17T02:19:37.1755269Z","createdBy":"30db9446-b4f8-4485-8c98-10e17387409d","updatedBy":"30db9446-b4f8-4485-8c98-10e17387409d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eee6dfc9-ede3-11ec-9f6d-902e1612d5d0","type":"Microsoft.Authorization/roleAssignments","name":"eee6dfc9-ede3-11ec-9f6d-902e1612d5d0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-20T22:03:11.1423439Z","updatedOn":"2022-06-20T22:03:11.1423439Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5c2bd4a-f0e4-11ec-bbc1-000d3ac67a2f","type":"Microsoft.Authorization/roleAssignments","name":"c5c2bd4a-f0e4-11ec-bbc1-000d3ac67a2f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-21T16:26:57.9805326Z","updatedOn":"2022-06-21T16:26:57.9805326Z","createdBy":"4d730cf1-e190-49af-af02-ea52983c017e","updatedBy":"4d730cf1-e190-49af-af02-ea52983c017e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f814031e-f17e-11ec-bdc4-72d39f810808","type":"Microsoft.Authorization/roleAssignments","name":"f814031e-f17e-11ec-bdc4-72d39f810808"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-22T23:05:28.0851041Z","updatedOn":"2022-06-22T23:05:28.0851041Z","createdBy":"395c8203-ec60-4c13-9730-5f960088f92b","updatedBy":"395c8203-ec60-4c13-9730-5f960088f92b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e672e20f-477a-4475-a5cf-2f7d8401bbc3","type":"Microsoft.Authorization/roleAssignments","name":"e672e20f-477a-4475-a5cf-2f7d8401bbc3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-23T19:51:00.2507743Z","updatedOn":"2022-06-23T19:51:00.2507743Z","createdBy":"8b564e25-6f45-4437-bf8b-9ac6596a5f15","updatedBy":"8b564e25-6f45-4437-bf8b-9ac6596a5f15","delegatedManagedIdentityResourceId":null,"description":"Adding + permissions to SP for running E2E tests. Currently getting error \"The client + ''0cea35e6-9763-4ef3-b2d2-8c241ab58828'' with object id ''0cea35e6-9763-4ef3-b2d2-8c241ab58828'' + does not have authorization to perform action ''Microsoft.Resources/subscriptions/resourcegroups/write'' + over scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/e2erg-indusridebld56865086-VzY'' + or the scope is invalid. If access was recently granted, please refresh your + credentials.\""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5cfb2437-e152-48d8-bb2a-54c89f27707a","type":"Microsoft.Authorization/roleAssignments","name":"5cfb2437-e152-48d8-bb2a-54c89f27707a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-23T21:01:02.9667346Z","updatedOn":"2022-06-23T21:01:02.9667346Z","createdBy":"34d4f830-f9ea-4525-9ca2-b784e3874713","updatedBy":"34d4f830-f9ea-4525-9ca2-b784e3874713","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9527af65-f337-11ec-a743-daea1d98cac0","type":"Microsoft.Authorization/roleAssignments","name":"9527af65-f337-11ec-a743-daea1d98cac0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-24T17:09:56.9678432Z","updatedOn":"2022-06-24T17:09:56.9678432Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba5c2d82-3e34-4b2b-9c5f-27d9d33955ff","type":"Microsoft.Authorization/roleAssignments","name":"ba5c2d82-3e34-4b2b-9c5f-27d9d33955ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-24T17:36:02.0450264Z","updatedOn":"2022-06-24T17:36:02.0450264Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/16b4850b-3e9c-435e-b3f6-b83e02b9146e","type":"Microsoft.Authorization/roleAssignments","name":"16b4850b-3e9c-435e-b3f6-b83e02b9146e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-27T17:58:47.2112371Z","updatedOn":"2022-06-27T17:58:47.2112371Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca6de50e-f642-11ec-83b8-002248773529","type":"Microsoft.Authorization/roleAssignments","name":"ca6de50e-f642-11ec-83b8-002248773529"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-27T21:10:04.9812035Z","updatedOn":"2022-06-27T21:10:04.9812035Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ad97eed-2e77-485f-a2ec-132f3647aef7","type":"Microsoft.Authorization/roleAssignments","name":"8ad97eed-2e77-485f-a2ec-132f3647aef7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T15:43:32.3787489Z","updatedOn":"2022-06-28T15:43:32.3787489Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a1acaea-f6f9-11ec-9ddd-6e578000e34a","type":"Microsoft.Authorization/roleAssignments","name":"0a1acaea-f6f9-11ec-9ddd-6e578000e34a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-29T05:30:23.4400722Z","updatedOn":"2022-06-29T05:30:23.4400722Z","createdBy":"65cfb39a-5f29-4247-8230-9ec6695c5878","updatedBy":"65cfb39a-5f29-4247-8230-9ec6695c5878","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/546c078e-3855-479c-b7aa-b38d4e68bb9f","type":"Microsoft.Authorization/roleAssignments","name":"546c078e-3855-479c-b7aa-b38d4e68bb9f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-29T17:04:07.7235161Z","updatedOn":"2022-06-29T17:04:07.7235161Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/48cbe38c-7d32-4174-8026-7a16994dcdc8","type":"Microsoft.Authorization/roleAssignments","name":"48cbe38c-7d32-4174-8026-7a16994dcdc8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-30T09:06:03.1760556Z","updatedOn":"2022-06-30T09:06:03.1760556Z","createdBy":"42a33e33-55bb-4995-80a2-d1b745371591","updatedBy":"42a33e33-55bb-4995-80a2-d1b745371591","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd7da313-f853-11ec-9993-000d3ac42d43","type":"Microsoft.Authorization/roleAssignments","name":"dd7da313-f853-11ec-9993-000d3ac42d43"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-30T09:06:06.3942443Z","updatedOn":"2022-06-30T09:06:06.3942443Z","createdBy":"42a33e33-55bb-4995-80a2-d1b745371591","updatedBy":"42a33e33-55bb-4995-80a2-d1b745371591","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df6c9d2d-f853-11ec-9993-000d3ac42d43","type":"Microsoft.Authorization/roleAssignments","name":"df6c9d2d-f853-11ec-9993-000d3ac42d43"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-04T08:11:46.0687018Z","updatedOn":"2022-07-04T08:11:46.0687018Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40b64297-b408-4d22-bf82-9b6897914b91","type":"Microsoft.Authorization/roleAssignments","name":"40b64297-b408-4d22-bf82-9b6897914b91"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T17:33:53.2930064Z","updatedOn":"2022-07-05T17:33:53.2930064Z","createdBy":"8e17b6a3-5430-4318-a670-b9df4d106675","updatedBy":"8e17b6a3-5430-4318-a670-b9df4d106675","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a23e2991-fc88-11ec-b99d-fe2d37eeee3f","type":"Microsoft.Authorization/roleAssignments","name":"a23e2991-fc88-11ec-b99d-fe2d37eeee3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T17:33:56.8130933Z","updatedOn":"2022-07-05T17:33:56.8130933Z","createdBy":"8e17b6a3-5430-4318-a670-b9df4d106675","updatedBy":"8e17b6a3-5430-4318-a670-b9df4d106675","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a45a4b60-fc88-11ec-b99d-fe2d37eeee3f","type":"Microsoft.Authorization/roleAssignments","name":"a45a4b60-fc88-11ec-b99d-fe2d37eeee3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T20:50:59.7297844Z","updatedOn":"2022-07-05T20:50:59.7297844Z","createdBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","updatedBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2bf6d528-fca4-11ec-ae95-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2bf6d528-fca4-11ec-ae95-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T20:51:03.8324709Z","updatedOn":"2022-07-05T20:51:03.8324709Z","createdBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","updatedBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2eb27754-fca4-11ec-ae95-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2eb27754-fca4-11ec-ae95-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-06T18:17:04.1589374Z","updatedOn":"2022-07-06T18:17:04.1589374Z","createdBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","updatedBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d66150ce-778b-48b7-9eec-4af15a62d5fb","type":"Microsoft.Authorization/roleAssignments","name":"d66150ce-778b-48b7-9eec-4af15a62d5fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T04:14:56.8781019Z","updatedOn":"2022-07-07T04:14:56.8781019Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d244381e-1809-4aab-b4bf-f6c45efad8a0","type":"Microsoft.Authorization/roleAssignments","name":"d244381e-1809-4aab-b4bf-f6c45efad8a0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T08:02:02.2250086Z","updatedOn":"2022-07-07T08:02:02.2250086Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/209367bb-572e-4543-8ffa-261ab9e3e98e","type":"Microsoft.Authorization/roleAssignments","name":"209367bb-572e-4543-8ffa-261ab9e3e98e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T09:51:45.7545095Z","updatedOn":"2022-07-07T09:51:45.7545095Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9b5f542-ed8b-4591-902d-70f85896c4a9","type":"Microsoft.Authorization/roleAssignments","name":"a9b5f542-ed8b-4591-902d-70f85896c4a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T10:20:52.8789655Z","updatedOn":"2022-07-07T10:20:52.8789655Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67fb0754-2c67-405f-b195-0fc9fb022fc7","type":"Microsoft.Authorization/roleAssignments","name":"67fb0754-2c67-405f-b195-0fc9fb022fc7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T23:54:13.9262172Z","updatedOn":"2022-07-07T23:54:13.9262172Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a13e2124-87c9-402c-9611-fbb6a1b4e4b8","type":"Microsoft.Authorization/roleAssignments","name":"a13e2124-87c9-402c-9611-fbb6a1b4e4b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T02:43:53.0148931Z","updatedOn":"2022-07-08T02:43:53.0148931Z","createdBy":"34e81c0e-d5e6-478f-8544-2686be295567","updatedBy":"34e81c0e-d5e6-478f-8544-2686be295567","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc3fbff8-fe67-11ec-ac64-f69a873c5ca0","type":"Microsoft.Authorization/roleAssignments","name":"cc3fbff8-fe67-11ec-ac64-f69a873c5ca0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T02:43:59.1573960Z","updatedOn":"2022-07-08T02:43:59.1573960Z","createdBy":"34e81c0e-d5e6-478f-8544-2686be295567","updatedBy":"34e81c0e-d5e6-478f-8544-2686be295567","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cfe77b1e-fe67-11ec-ac64-f69a873c5ca0","type":"Microsoft.Authorization/roleAssignments","name":"cfe77b1e-fe67-11ec-ac64-f69a873c5ca0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T16:06:18.0035556Z","updatedOn":"2022-07-08T16:06:18.0035556Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/72a67832-6c5d-4b3e-9067-ceef4bc5dcba","type":"Microsoft.Authorization/roleAssignments","name":"72a67832-6c5d-4b3e-9067-ceef4bc5dcba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T16:17:28.2042061Z","updatedOn":"2022-07-08T16:17:28.2042061Z","createdBy":"cef6ee5d-6edd-413d-9eb7-c205c9802a3f","updatedBy":"cef6ee5d-6edd-413d-9eb7-c205c9802a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82dd5217-b1f7-4be5-8f03-5899493aa314","type":"Microsoft.Authorization/roleAssignments","name":"82dd5217-b1f7-4be5-8f03-5899493aa314"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T17:53:10.4671781Z","updatedOn":"2022-07-08T17:53:10.4671781Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4227602-fee6-11ec-ab63-000d3af64fa4","type":"Microsoft.Authorization/roleAssignments","name":"d4227602-fee6-11ec-ab63-000d3af64fa4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-11T21:30:54.4523951Z","updatedOn":"2022-07-11T21:30:54.4523951Z","createdBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","updatedBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a77632d-0fee-46d8-9f0d-d2ed44a26602","type":"Microsoft.Authorization/roleAssignments","name":"0a77632d-0fee-46d8-9f0d-d2ed44a26602"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-11T22:18:13.7630778Z","updatedOn":"2022-07-11T22:18:13.7630778Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3abee7ef-2e53-478a-b9cd-911e8768e9d6","type":"Microsoft.Authorization/roleAssignments","name":"3abee7ef-2e53-478a-b9cd-911e8768e9d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T04:19:56.7878684Z","updatedOn":"2022-07-12T04:19:56.7878684Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2335b0a-0199-11ed-9afe-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e2335b0a-0199-11ed-9afe-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T04:20:00.9520791Z","updatedOn":"2022-07-12T04:20:00.9520791Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4b0f194-0199-11ed-9afe-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e4b0f194-0199-11ed-9afe-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T11:12:50.2042423Z","updatedOn":"2022-07-12T11:12:50.2042423Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad70c028-d6b8-4efb-96d4-0bf9aa09566c","type":"Microsoft.Authorization/roleAssignments","name":"ad70c028-d6b8-4efb-96d4-0bf9aa09566c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T17:55:10.7687684Z","updatedOn":"2022-07-12T17:55:10.7687684Z","createdBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","updatedBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c642f341-020b-11ed-bc6a-02136178e3ad","type":"Microsoft.Authorization/roleAssignments","name":"c642f341-020b-11ed-bc6a-02136178e3ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T17:55:14.4120596Z","updatedOn":"2022-07-12T17:55:14.4120596Z","createdBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","updatedBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c87a1349-020b-11ed-bc6a-02136178e3ad","type":"Microsoft.Authorization/roleAssignments","name":"c87a1349-020b-11ed-bc6a-02136178e3ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T18:08:22.2861717Z","updatedOn":"2022-07-12T18:08:22.2861717Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/421ff42e-57e3-4b62-b4e6-e8e561eb7212","type":"Microsoft.Authorization/roleAssignments","name":"421ff42e-57e3-4b62-b4e6-e8e561eb7212"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T00:41:08.5337376Z","updatedOn":"2022-07-13T00:41:08.5337376Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78c85e30-0244-11ed-914f-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"78c85e30-0244-11ed-914f-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T08:27:18.8954270Z","updatedOn":"2022-07-13T08:27:18.8954270Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eda0948f-04c7-43eb-a560-0fe9db9681c5","type":"Microsoft.Authorization/roleAssignments","name":"eda0948f-04c7-43eb-a560-0fe9db9681c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T20:09:22.9119861Z","updatedOn":"2022-07-13T20:09:22.9119861Z","createdBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","updatedBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/af556422-02e7-11ed-b490-3e22fbbb55c2","type":"Microsoft.Authorization/roleAssignments","name":"af556422-02e7-11ed-b490-3e22fbbb55c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T20:09:36.4140354Z","updatedOn":"2022-07-13T20:09:36.4140354Z","createdBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","updatedBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b77f8f56-02e7-11ed-b490-3e22fbbb55c2","type":"Microsoft.Authorization/roleAssignments","name":"b77f8f56-02e7-11ed-b490-3e22fbbb55c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-15T03:29:06.6862069Z","updatedOn":"2022-07-15T03:29:06.6862069Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/77952ad7-ace5-45a1-9395-7025cd43927b","type":"Microsoft.Authorization/roleAssignments","name":"77952ad7-ace5-45a1-9395-7025cd43927b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-15T21:17:33.7746216Z","updatedOn":"2022-07-15T21:17:33.7746216Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8aa04a4a-0483-11ed-bcf7-00155dfde705","type":"Microsoft.Authorization/roleAssignments","name":"8aa04a4a-0483-11ed-bcf7-00155dfde705"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-15T21:17:36.9140017Z","updatedOn":"2022-07-15T21:17:36.9140017Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c49fe02-0483-11ed-bcf7-00155dfde705","type":"Microsoft.Authorization/roleAssignments","name":"8c49fe02-0483-11ed-bcf7-00155dfde705"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-18T18:31:44.6615613Z","updatedOn":"2022-07-18T18:31:44.6615613Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9913aa55-1df8-4b7f-b351-bfb577c653b7","type":"Microsoft.Authorization/roleAssignments","name":"9913aa55-1df8-4b7f-b351-bfb577c653b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T03:14:49.6541206Z","updatedOn":"2022-07-19T03:14:49.6541206Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f2a2c960-0710-11ed-af5f-000d3a183800","type":"Microsoft.Authorization/roleAssignments","name":"f2a2c960-0710-11ed-af5f-000d3a183800"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T03:14:52.8659954Z","updatedOn":"2022-07-19T03:14:52.8659954Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f491d46c-0710-11ed-af5f-000d3a183800","type":"Microsoft.Authorization/roleAssignments","name":"f491d46c-0710-11ed-af5f-000d3a183800"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T17:08:01.7695005Z","updatedOn":"2022-07-19T17:08:01.7695005Z","createdBy":"08a0af07-b641-44c2-a174-9b85f2db0af1","updatedBy":"08a0af07-b641-44c2-a174-9b85f2db0af1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57cd16da-0785-11ed-91ee-06d9bf349677","type":"Microsoft.Authorization/roleAssignments","name":"57cd16da-0785-11ed-91ee-06d9bf349677"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T17:28:52.5405320Z","updatedOn":"2022-07-19T17:28:52.5405320Z","createdBy":"395c8203-ec60-4c13-9730-5f960088f92b","updatedBy":"395c8203-ec60-4c13-9730-5f960088f92b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ab94087-7d29-4798-88b0-5ba408389266","type":"Microsoft.Authorization/roleAssignments","name":"6ab94087-7d29-4798-88b0-5ba408389266"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T20:15:51.4129938Z","updatedOn":"2022-07-19T20:15:51.4129938Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/04aeccd9-485e-4667-83ec-0940615dc03f","type":"Microsoft.Authorization/roleAssignments","name":"04aeccd9-485e-4667-83ec-0940615dc03f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-20T00:07:29.4350314Z","updatedOn":"2022-07-20T00:07:29.4350314Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1165576-07bf-11ed-a49d-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"f1165576-07bf-11ed-a49d-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-20T00:07:32.8732624Z","updatedOn":"2022-07-20T00:07:32.8732624Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f358bfdc-07bf-11ed-a49d-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"f358bfdc-07bf-11ed-a49d-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-21T12:09:08.1001074Z","updatedOn":"2022-07-21T12:09:08.1001074Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ebb1f193-08ed-11ed-a201-00224878d5c3","type":"Microsoft.Authorization/roleAssignments","name":"ebb1f193-08ed-11ed-a201-00224878d5c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-21T12:09:11.3486909Z","updatedOn":"2022-07-21T12:09:11.3486909Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/edaa26e6-08ed-11ed-a201-00224878d5c3","type":"Microsoft.Authorization/roleAssignments","name":"edaa26e6-08ed-11ed-a201-00224878d5c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-22T09:35:51.5690357Z","updatedOn":"2022-07-22T09:35:51.5690357Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd07b0f6-982a-4d85-9fdd-d44049270cbd","type":"Microsoft.Authorization/roleAssignments","name":"dd07b0f6-982a-4d85-9fdd-d44049270cbd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-24T17:57:05.6570323Z","updatedOn":"2022-07-24T17:57:05.6570323Z","createdBy":"567715d4-847a-4def-acb2-d157ebfa8439","updatedBy":"567715d4-847a-4def-acb2-d157ebfa8439","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/069fdbd1-0b7a-11ed-aa35-a2d44093b98e","type":"Microsoft.Authorization/roleAssignments","name":"069fdbd1-0b7a-11ed-aa35-a2d44093b98e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-24T17:57:10.6197123Z","updatedOn":"2022-07-24T17:57:10.6197123Z","createdBy":"567715d4-847a-4def-acb2-d157ebfa8439","updatedBy":"567715d4-847a-4def-acb2-d157ebfa8439","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09844b71-0b7a-11ed-aa35-a2d44093b98e","type":"Microsoft.Authorization/roleAssignments","name":"09844b71-0b7a-11ed-aa35-a2d44093b98e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-25T23:51:56.7193261Z","updatedOn":"2022-07-25T23:51:56.7193261Z","createdBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","updatedBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3d43338-0c74-11ed-a558-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"c3d43338-0c74-11ed-a558-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-25T23:51:59.2783640Z","updatedOn":"2022-07-25T23:51:59.2783640Z","createdBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","updatedBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5533d8a-0c74-11ed-a558-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"c5533d8a-0c74-11ed-a558-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-28T04:50:50.7078047Z","updatedOn":"2022-07-28T04:50:50.7078047Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da343068-0e30-11ed-91a5-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"da343068-0e30-11ed-91a5-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-28T04:50:53.7664793Z","updatedOn":"2022-07-28T04:50:53.7664793Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dbfbe50a-0e30-11ed-91a5-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"dbfbe50a-0e30-11ed-91a5-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-29T16:16:58.9941922Z","updatedOn":"2022-07-29T16:16:58.9941922Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/880fa390-3bd7-4075-8071-e33e45423e36","type":"Microsoft.Authorization/roleAssignments","name":"880fa390-3bd7-4075-8071-e33e45423e36"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-31T19:34:43.4356237Z","updatedOn":"2022-07-31T19:34:43.4356237Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d352709e-1107-11ed-be9f-beee8f4e086d","type":"Microsoft.Authorization/roleAssignments","name":"d352709e-1107-11ed-be9f-beee8f4e086d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-04T04:49:44.0295503Z","updatedOn":"2022-08-04T04:49:44.0295503Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da803814-13b0-11ed-b124-e2848198df96","type":"Microsoft.Authorization/roleAssignments","name":"da803814-13b0-11ed-b124-e2848198df96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-04T04:49:49.5833937Z","updatedOn":"2022-08-04T04:49:49.5833937Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd76350a-13b0-11ed-b124-e2848198df96","type":"Microsoft.Authorization/roleAssignments","name":"dd76350a-13b0-11ed-b124-e2848198df96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-05T14:15:13.1099119Z","updatedOn":"2022-08-05T14:15:13.1099119Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7a4c8f3-b60c-4341-acdb-3b8d60976116","type":"Microsoft.Authorization/roleAssignments","name":"e7a4c8f3-b60c-4341-acdb-3b8d60976116"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-08T08:55:19.4739379Z","updatedOn":"2022-08-08T08:55:19.4739379Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3f792cd-16f7-11ed-afb5-000d3a0611f6","type":"Microsoft.Authorization/roleAssignments","name":"d3f792cd-16f7-11ed-afb5-000d3a0611f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-08T14:33:12.5245418Z","updatedOn":"2022-08-08T14:33:12.5245418Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0184de3c-04d4-433f-9221-2df571d921a5","type":"Microsoft.Authorization/roleAssignments","name":"0184de3c-04d4-433f-9221-2df571d921a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-08T17:41:09.4113992Z","updatedOn":"2022-08-08T17:41:09.4113992Z","createdBy":"19263705-0667-497e-85e7-a930fa3441ec","updatedBy":"19263705-0667-497e-85e7-a930fa3441ec","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4919e77a-1741-11ed-b6db-0022487d76b7","type":"Microsoft.Authorization/roleAssignments","name":"4919e77a-1741-11ed-b6db-0022487d76b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:45:21.8695164Z","updatedOn":"2022-08-12T05:45:21.8695164Z","createdBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","updatedBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f23b86bb-1a01-11ed-b496-66a3f79a5cd7","type":"Microsoft.Authorization/roleAssignments","name":"f23b86bb-1a01-11ed-b496-66a3f79a5cd7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:45:28.6932347Z","updatedOn":"2022-08-12T05:45:28.6932347Z","createdBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","updatedBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6a0cefb-1a01-11ed-b496-66a3f79a5cd7","type":"Microsoft.Authorization/roleAssignments","name":"f6a0cefb-1a01-11ed-b496-66a3f79a5cd7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:57:08.1910800Z","updatedOn":"2022-08-12T05:57:08.1910800Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/97fa583a-1a03-11ed-8141-0022484c72fc","type":"Microsoft.Authorization/roleAssignments","name":"97fa583a-1a03-11ed-8141-0022484c72fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:57:16.8561530Z","updatedOn":"2022-08-12T05:57:16.8561530Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9bed6f7d-1a03-11ed-8141-0022484c72fc","type":"Microsoft.Authorization/roleAssignments","name":"9bed6f7d-1a03-11ed-8141-0022484c72fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T10:56:06.3724576Z","updatedOn":"2022-08-12T10:56:06.3724576Z","createdBy":"312333b2-b433-4e3c-bb6f-f60419faa168","updatedBy":"312333b2-b433-4e3c-bb6f-f60419faa168","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5da07cdc-1a2d-11ed-97c4-36311d0c4477","type":"Microsoft.Authorization/roleAssignments","name":"5da07cdc-1a2d-11ed-97c4-36311d0c4477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T10:56:12.1781791Z","updatedOn":"2022-08-12T10:56:12.1781791Z","createdBy":"312333b2-b433-4e3c-bb6f-f60419faa168","updatedBy":"312333b2-b433-4e3c-bb6f-f60419faa168","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/60dfcd5b-1a2d-11ed-97c4-36311d0c4477","type":"Microsoft.Authorization/roleAssignments","name":"60dfcd5b-1a2d-11ed-97c4-36311d0c4477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T23:47:07.1823504Z","updatedOn":"2022-08-12T23:47:07.1823504Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12955060-1a99-11ed-80ae-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"12955060-1a99-11ed-80ae-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T23:47:10.3981690Z","updatedOn":"2022-08-12T23:47:10.3981690Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1452bfa0-1a99-11ed-80ae-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"1452bfa0-1a99-11ed-80ae-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-14T04:59:52.9674492Z","updatedOn":"2022-08-14T04:59:52.9674492Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee779146-1b8d-11ed-ad0f-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"ee779146-1b8d-11ed-ad0f-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-14T04:59:57.7071631Z","updatedOn":"2022-08-14T04:59:57.7071631Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f13fa4b3-1b8d-11ed-ad0f-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"f13fa4b3-1b8d-11ed-ad0f-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-16T23:10:44.7176056Z","updatedOn":"2022-08-16T23:10:44.7176056Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1d255e1-0f5e-41c4-93eb-e683b5cf2ca4","type":"Microsoft.Authorization/roleAssignments","name":"f1d255e1-0f5e-41c4-93eb-e683b5cf2ca4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-16T23:31:16.6919768Z","updatedOn":"2022-08-16T23:31:16.6919768Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a45cbdf-008d-4716-96eb-38389a417827","type":"Microsoft.Authorization/roleAssignments","name":"2a45cbdf-008d-4716-96eb-38389a417827"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-18T00:30:35.0176680Z","updatedOn":"2022-08-18T00:30:35.0176680Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f91d7aa2-1e8c-11ed-b1a6-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f91d7aa2-1e8c-11ed-b1a6-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-18T00:30:38.2729005Z","updatedOn":"2022-08-18T00:30:38.2729005Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb0d664c-1e8c-11ed-b1a6-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"fb0d664c-1e8c-11ed-b1a6-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-18T15:52:38.7113712Z","updatedOn":"2022-08-18T15:52:38.7113712Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8772ddf6-c657-4010-ab7b-5d8627ba3601","type":"Microsoft.Authorization/roleAssignments","name":"8772ddf6-c657-4010-ab7b-5d8627ba3601"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-22T02:37:48.0231077Z","updatedOn":"2022-08-22T02:37:48.0231077Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7c56d8ab-b9ef-4d93-ae58-838c1209c621","type":"Microsoft.Authorization/roleAssignments","name":"7c56d8ab-b9ef-4d93-ae58-838c1209c621"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-22T02:41:47.6649206Z","updatedOn":"2022-08-22T02:41:47.6649206Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b66d25d3-0cb1-4413-9445-caf5db5b40c9","type":"Microsoft.Authorization/roleAssignments","name":"b66d25d3-0cb1-4413-9445-caf5db5b40c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-22T06:25:39.4709093Z","updatedOn":"2022-08-22T06:25:39.4709093Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb7ca852-9adb-4205-a828-a17ca774a8a4","type":"Microsoft.Authorization/roleAssignments","name":"eb7ca852-9adb-4205-a828-a17ca774a8a4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T02:16:22.3620594Z","updatedOn":"2022-08-23T02:16:22.3620594Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94556c2e-2289-11ed-9371-000d3ac51247","type":"Microsoft.Authorization/roleAssignments","name":"94556c2e-2289-11ed-9371-000d3ac51247"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T08:56:15.8011348Z","updatedOn":"2022-08-23T08:56:15.8011348Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7117911f-22c1-11ed-be42-000d3a084591","type":"Microsoft.Authorization/roleAssignments","name":"7117911f-22c1-11ed-be42-000d3a084591"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T08:56:21.1375800Z","updatedOn":"2022-08-23T08:56:21.1375800Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/73becf7d-22c1-11ed-be42-000d3a084591","type":"Microsoft.Authorization/roleAssignments","name":"73becf7d-22c1-11ed-be42-000d3a084591"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T14:02:07.2343806Z","updatedOn":"2022-08-23T14:02:07.2343806Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b9bf190-22ec-11ed-8f86-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"2b9bf190-22ec-11ed-8f86-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T14:02:10.9785694Z","updatedOn":"2022-08-23T14:02:10.9785694Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2dd0099d-22ec-11ed-8f86-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"2dd0099d-22ec-11ed-8f86-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T23:22:24.8240339Z","updatedOn":"2022-08-23T23:22:24.8240339Z","createdBy":"395c8203-ec60-4c13-9730-5f960088f92b","updatedBy":"395c8203-ec60-4c13-9730-5f960088f92b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/abda2c2b-daa3-42bb-abbd-e13cec5fb6b3","type":"Microsoft.Authorization/roleAssignments","name":"abda2c2b-daa3-42bb-abbd-e13cec5fb6b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T23:23:32.8133517Z","updatedOn":"2022-08-23T23:23:32.8133517Z","createdBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","updatedBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/994cd0f0-233a-11ed-90e8-66137476d927","type":"Microsoft.Authorization/roleAssignments","name":"994cd0f0-233a-11ed-90e8-66137476d927"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T23:23:35.3751695Z","updatedOn":"2022-08-23T23:23:35.3751695Z","createdBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","updatedBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9add5dfe-233a-11ed-90e8-66137476d927","type":"Microsoft.Authorization/roleAssignments","name":"9add5dfe-233a-11ed-90e8-66137476d927"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-26T02:48:17.4348909Z","updatedOn":"2022-08-26T02:48:17.4348909Z","createdBy":"d297f8cf-3724-4da6-ae0c-6ea639225042","updatedBy":"d297f8cf-3724-4da6-ae0c-6ea639225042","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9125ee0-b9af-4d25-a2e5-886ad210b3e8","type":"Microsoft.Authorization/roleAssignments","name":"e9125ee0-b9af-4d25-a2e5-886ad210b3e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-29T22:08:43.6923850Z","updatedOn":"2022-08-29T22:08:43.6923850Z","createdBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","updatedBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24b2acd4-27e7-11ed-aa57-9eb40d98da7e","type":"Microsoft.Authorization/roleAssignments","name":"24b2acd4-27e7-11ed-aa57-9eb40d98da7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-29T22:08:46.8049719Z","updatedOn":"2022-08-29T22:08:46.8049719Z","createdBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","updatedBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26a4fa7f-27e7-11ed-aa57-9eb40d98da7e","type":"Microsoft.Authorization/roleAssignments","name":"26a4fa7f-27e7-11ed-aa57-9eb40d98da7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-29T22:11:06.3024798Z","updatedOn":"2022-08-29T22:11:06.3024798Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63e0b566-276e-405d-8d4e-1c82b1f937c6","type":"Microsoft.Authorization/roleAssignments","name":"63e0b566-276e-405d-8d4e-1c82b1f937c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:50:53.4210961Z","updatedOn":"2022-08-30T23:50:53.4210961Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94aa5054-28be-11ed-a6d3-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"94aa5054-28be-11ed-a6d3-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:50:57.2039466Z","updatedOn":"2022-08-30T23:50:57.2039466Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96f9353c-28be-11ed-a6d3-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"96f9353c-28be-11ed-a6d3-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:55:18.1665901Z","updatedOn":"2022-08-30T23:55:18.1665901Z","createdBy":"08de6591-dec9-4255-ab17-d6919151fadd","updatedBy":"08de6591-dec9-4255-ab17-d6919151fadd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/32738d64-28bf-11ed-8c18-d28ee6de8df0","type":"Microsoft.Authorization/roleAssignments","name":"32738d64-28bf-11ed-8c18-d28ee6de8df0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:55:21.0832794Z","updatedOn":"2022-08-30T23:55:21.0832794Z","createdBy":"08de6591-dec9-4255-ab17-d6919151fadd","updatedBy":"08de6591-dec9-4255-ab17-d6919151fadd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/347773d2-28bf-11ed-8c18-d28ee6de8df0","type":"Microsoft.Authorization/roleAssignments","name":"347773d2-28bf-11ed-8c18-d28ee6de8df0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-31T23:23:54.3892344Z","updatedOn":"2022-08-31T23:23:54.3892344Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa44d69e-2983-11ed-aa08-92f3f7a6dd9b","type":"Microsoft.Authorization/roleAssignments","name":"fa44d69e-2983-11ed-aa08-92f3f7a6dd9b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-31T23:23:57.6913146Z","updatedOn":"2022-08-31T23:23:57.6913146Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc468884-2983-11ed-aa08-92f3f7a6dd9b","type":"Microsoft.Authorization/roleAssignments","name":"fc468884-2983-11ed-aa08-92f3f7a6dd9b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-01T06:08:41.4708815Z","updatedOn":"2022-09-01T06:08:41.4708815Z","createdBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","updatedBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/86088e13-29bc-11ed-9e75-ee990064eed4","type":"Microsoft.Authorization/roleAssignments","name":"86088e13-29bc-11ed-9e75-ee990064eed4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-01T14:36:10.3068118Z","updatedOn":"2022-09-01T14:36:10.3068118Z","createdBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","updatedBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b6d0b78-2a03-11ed-8b33-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6b6d0b78-2a03-11ed-8b33-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-01T14:36:19.4793808Z","updatedOn":"2022-09-01T14:36:19.4793808Z","createdBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","updatedBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70bc79b0-2a03-11ed-8b33-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"70bc79b0-2a03-11ed-8b33-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-05T20:13:38.7677056Z","updatedOn":"2022-09-05T20:13:38.7677056Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/396cb586-2d57-11ed-8f60-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"396cb586-2d57-11ed-8f60-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-06T19:58:31.4389144Z","updatedOn":"2022-09-06T19:58:31.4389144Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47bb56b5-2e1e-11ed-9020-000d3a6d9a18","type":"Microsoft.Authorization/roleAssignments","name":"47bb56b5-2e1e-11ed-9020-000d3a6d9a18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-06T19:58:35.6283701Z","updatedOn":"2022-09-06T19:58:35.6283701Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a30eda3-2e1e-11ed-9020-000d3a6d9a18","type":"Microsoft.Authorization/roleAssignments","name":"4a30eda3-2e1e-11ed-9020-000d3a6d9a18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-08T14:38:34.2901394Z","updatedOn":"2022-09-08T14:38:34.2901394Z","createdBy":"61a5600d-3609-43e4-9dd8-bcf58e3ce51f","updatedBy":"61a5600d-3609-43e4-9dd8-bcf58e3ce51f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea4dcb49-2f83-11ed-9efa-000d3a181b06","type":"Microsoft.Authorization/roleAssignments","name":"ea4dcb49-2f83-11ed-9efa-000d3a181b06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-08T17:46:08.1384737Z","updatedOn":"2022-09-08T17:46:08.1384737Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1dc95ee4-2f9e-11ed-89d2-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"1dc95ee4-2f9e-11ed-89d2-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-08T17:46:11.6717566Z","updatedOn":"2022-09-08T17:46:11.6717566Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2008f142-2f9e-11ed-89d2-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2008f142-2f9e-11ed-89d2-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-12T23:42:55.7564365Z","updatedOn":"2022-09-12T23:42:55.7564365Z","createdBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","updatedBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fa0c69c-32f4-11ed-aee5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"9fa0c69c-32f4-11ed-aee5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-12T23:43:04.5756788Z","updatedOn":"2022-09-12T23:43:04.5756788Z","createdBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","updatedBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a4e1656c-32f4-11ed-aee5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"a4e1656c-32f4-11ed-aee5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T00:18:28.3312561Z","updatedOn":"2022-09-13T00:18:28.3312561Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/965f9705-32f9-11ed-a03a-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"965f9705-32f9-11ed-a03a-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T00:18:32.9627131Z","updatedOn":"2022-09-13T00:18:32.9627131Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9918693b-32f9-11ed-a03a-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"9918693b-32f9-11ed-a03a-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T05:20:21.8356068Z","updatedOn":"2022-09-13T05:20:21.8356068Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14ac626a-3acb-4867-a3ce-32d85da9a0e7","type":"Microsoft.Authorization/roleAssignments","name":"14ac626a-3acb-4867-a3ce-32d85da9a0e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T20:31:46.8554799Z","updatedOn":"2022-09-13T20:31:46.8554799Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d71c7b8-3398-11ed-ad11-e6ebdcb69945","type":"Microsoft.Authorization/roleAssignments","name":"6d71c7b8-3398-11ed-ad11-e6ebdcb69945"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T20:31:50.1456004Z","updatedOn":"2022-09-13T20:31:50.1456004Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ca65e0f-3398-11ed-ad11-e6ebdcb69945","type":"Microsoft.Authorization/roleAssignments","name":"7ca65e0f-3398-11ed-ad11-e6ebdcb69945"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T23:17:04.2606442Z","updatedOn":"2022-09-13T23:17:04.2606442Z","createdBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","updatedBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ecfc544-bb26-4b57-9c52-7a3751bf5b9a","type":"Microsoft.Authorization/roleAssignments","name":"8ecfc544-bb26-4b57-9c52-7a3751bf5b9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-14T20:11:09.0922785Z","updatedOn":"2022-09-14T20:11:09.0922785Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/43c2f0e6-bf81-4e83-bf98-eb7d592639a5","type":"Microsoft.Authorization/roleAssignments","name":"43c2f0e6-bf81-4e83-bf98-eb7d592639a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-15T17:44:22.3186068Z","updatedOn":"2022-09-15T17:44:22.3186068Z","createdBy":"2182129f-e575-4986-a7fb-2be7772ba46f","updatedBy":"2182129f-e575-4986-a7fb-2be7772ba46f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/05e871b7-351e-11ed-8cc7-32a64839c39d","type":"Microsoft.Authorization/roleAssignments","name":"05e871b7-351e-11ed-8cc7-32a64839c39d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ab4d3d-a1bf-4477-8ad9-8359bc988f69","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-15T22:34:54.1872835Z","updatedOn":"2022-09-15T22:34:54.1872835Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9ac6f9f-a6dc-43e5-bc80-6e362547ff03","type":"Microsoft.Authorization/roleAssignments","name":"a9ac6f9f-a6dc-43e5-bc80-6e362547ff03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-15T22:36:25.6520797Z","updatedOn":"2022-09-15T22:36:25.6520797Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a48452ae-2a7a-4a35-bc22-de46608a8c12","type":"Microsoft.Authorization/roleAssignments","name":"a48452ae-2a7a-4a35-bc22-de46608a8c12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ab4d3d-a1bf-4477-8ad9-8359bc988f69","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-16T03:26:44.5972975Z","updatedOn":"2022-09-16T03:26:44.5972975Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7ddb897-f37b-4617-8b62-26a42b72d0fd","type":"Microsoft.Authorization/roleAssignments","name":"b7ddb897-f37b-4617-8b62-26a42b72d0fd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-16T03:27:20.0290180Z","updatedOn":"2022-09-16T03:27:20.0290180Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36cbdcc8-a70b-42a9-836a-9bb89dbd301a","type":"Microsoft.Authorization/roleAssignments","name":"36cbdcc8-a70b-42a9-836a-9bb89dbd301a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-16T14:21:41.5963217Z","updatedOn":"2022-09-16T14:21:41.5963217Z","createdBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","updatedBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc428d08-6f99-4619-9554-500bfc75b861","type":"Microsoft.Authorization/roleAssignments","name":"bc428d08-6f99-4619-9554-500bfc75b861"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T01:59:15.5981081Z","updatedOn":"2022-09-19T01:59:15.5981081Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a92c46b1-37be-11ed-8745-00224857f2c5","type":"Microsoft.Authorization/roleAssignments","name":"a92c46b1-37be-11ed-8745-00224857f2c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T01:59:20.5513267Z","updatedOn":"2022-09-19T01:59:20.5513267Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac11dbd2-37be-11ed-8745-00224857f2c5","type":"Microsoft.Authorization/roleAssignments","name":"ac11dbd2-37be-11ed-8745-00224857f2c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T09:51:42.7586328Z","updatedOn":"2022-09-19T09:51:42.7586328Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1cb1222d-5cb9-4d4a-a901-850f4a0d08da","type":"Microsoft.Authorization/roleAssignments","name":"1cb1222d-5cb9-4d4a-a901-850f4a0d08da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T18:49:44.8806347Z","updatedOn":"2022-09-19T18:49:44.8806347Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9c6a4b4-714e-45fc-8bc4-11c41f8c306a","type":"Microsoft.Authorization/roleAssignments","name":"b9c6a4b4-714e-45fc-8bc4-11c41f8c306a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T22:48:28.6777206Z","updatedOn":"2022-09-19T22:48:28.6777206Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ea76d8b-9daa-4d62-bfc8-bb9013ecec53","type":"Microsoft.Authorization/roleAssignments","name":"3ea76d8b-9daa-4d62-bfc8-bb9013ecec53"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-20T22:34:06.1765862Z","updatedOn":"2022-09-20T22:34:06.1765862Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/475a9fc4-c1a8-42c7-9e4e-d897c83f2a86","type":"Microsoft.Authorization/roleAssignments","name":"475a9fc4-c1a8-42c7-9e4e-d897c83f2a86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/434105ed-43f6-45c7-a02f-909b2ba83430","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-21T00:11:12.3038110Z","updatedOn":"2022-09-21T00:11:12.3038110Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce3975e8-d43d-4f8c-a315-e20609d7472a","type":"Microsoft.Authorization/roleAssignments","name":"ce3975e8-d43d-4f8c-a315-e20609d7472a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T07:30:57.3801733Z","updatedOn":"2022-09-23T07:30:57.3801733Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7a5ed22-3b11-11ed-876d-1a48d609785e","type":"Microsoft.Authorization/roleAssignments","name":"a7a5ed22-3b11-11ed-876d-1a48d609785e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T14:34:07.2104918Z","updatedOn":"2022-09-23T14:34:07.2104918Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c756e2ff-3b4c-11ed-be28-000d3a9e5815","type":"Microsoft.Authorization/roleAssignments","name":"c756e2ff-3b4c-11ed-be28-000d3a9e5815"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T14:34:10.7191458Z","updatedOn":"2022-09-23T14:34:10.7191458Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c96352a0-3b4c-11ed-be28-000d3a9e5815","type":"Microsoft.Authorization/roleAssignments","name":"c96352a0-3b4c-11ed-be28-000d3a9e5815"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T19:05:01.8468743Z","updatedOn":"2022-09-23T19:05:01.8468743Z","createdBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","updatedBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ecc7527-3b72-11ed-92ab-a642c656be12","type":"Microsoft.Authorization/roleAssignments","name":"9ecc7527-3b72-11ed-92ab-a642c656be12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T21:31:12.8549148Z","updatedOn":"2022-09-23T21:31:12.8549148Z","createdBy":"0fa3313e-2eee-4835-aeff-681e46364ab6","updatedBy":"0fa3313e-2eee-4835-aeff-681e46364ab6","delegatedManagedIdentityResourceId":null,"description":"New + AKS SRE team member"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b79302d-37ad-406c-b32d-cddbd2387781","type":"Microsoft.Authorization/roleAssignments","name":"2b79302d-37ad-406c-b32d-cddbd2387781"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-25T18:15:06.7527496Z","updatedOn":"2022-09-25T18:15:06.7527496Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f83fc539-aab6-4862-8635-cbe5472eadad","type":"Microsoft.Authorization/roleAssignments","name":"f83fc539-aab6-4862-8635-cbe5472eadad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-25T17:34:50.8733023Z","updatedOn":"2023-01-25T17:34:50.8733023Z","createdBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","updatedBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/91a85771-9cd6-11ed-a528-6045bd8532c1","type":"Microsoft.Authorization/roleAssignments","name":"91a85771-9cd6-11ed-a528-6045bd8532c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T19:40:10.2077596Z","updatedOn":"2023-01-26T19:40:10.2077596Z","createdBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","updatedBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3deeb34a-9db1-11ed-9882-bad388e32b6e","type":"Microsoft.Authorization/roleAssignments","name":"3deeb34a-9db1-11ed-9882-bad388e32b6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T19:40:13.9767599Z","updatedOn":"2023-01-26T19:40:13.9767599Z","createdBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","updatedBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/405d87d0-9db1-11ed-9882-bad388e32b6e","type":"Microsoft.Authorization/roleAssignments","name":"405d87d0-9db1-11ed-9882-bad388e32b6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T21:29:38.0736564Z","updatedOn":"2023-01-26T21:29:38.0736564Z","createdBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","updatedBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88db6aa7-9dc0-11ed-873b-02af4457d3da","type":"Microsoft.Authorization/roleAssignments","name":"88db6aa7-9dc0-11ed-873b-02af4457d3da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T21:29:41.9721959Z","updatedOn":"2023-01-26T21:29:41.9721959Z","createdBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","updatedBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8b20c92b-9dc0-11ed-873b-02af4457d3da","type":"Microsoft.Authorization/roleAssignments","name":"8b20c92b-9dc0-11ed-873b-02af4457d3da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-28T06:05:38.5919016Z","updatedOn":"2023-01-28T06:05:38.5919016Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ee0fdb3-65a0-4344-a73d-15f6b92ea58b","type":"Microsoft.Authorization/roleAssignments","name":"7ee0fdb3-65a0-4344-a73d-15f6b92ea58b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-29T03:40:38.5139182Z","updatedOn":"2023-01-29T03:40:38.5139182Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1dec2dc-9f86-11ed-a95c-0022487e65a6","type":"Microsoft.Authorization/roleAssignments","name":"b1dec2dc-9f86-11ed-a95c-0022487e65a6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-30T05:50:30.0380171Z","updatedOn":"2023-01-30T05:50:30.0380171Z","createdBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","updatedBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/792989a2-3985-4915-bf5a-4eb5451f731b","type":"Microsoft.Authorization/roleAssignments","name":"792989a2-3985-4915-bf5a-4eb5451f731b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-30T15:03:46.9770738Z","updatedOn":"2023-01-30T15:03:46.9770738Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a97ceb8-a0af-11ed-bf9c-a8a1598cc0f3","type":"Microsoft.Authorization/roleAssignments","name":"4a97ceb8-a0af-11ed-bf9c-a8a1598cc0f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-31T08:45:32.8563782Z","updatedOn":"2023-01-31T08:45:32.8563782Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ea26baa-a143-11ed-85d1-1eb0db5454d6","type":"Microsoft.Authorization/roleAssignments","name":"9ea26baa-a143-11ed-85d1-1eb0db5454d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-31T09:18:23.0405616Z","updatedOn":"2023-01-31T09:18:23.0405616Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9063ace1-9e8e-4195-82f8-39fe17fca5ce","type":"Microsoft.Authorization/roleAssignments","name":"9063ace1-9e8e-4195-82f8-39fe17fca5ce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-01T08:12:47.9822357Z","updatedOn":"2023-02-01T08:12:47.9822357Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/31c05c6a-a87b-4ad2-a07e-7acaadecb649","type":"Microsoft.Authorization/roleAssignments","name":"31c05c6a-a87b-4ad2-a07e-7acaadecb649"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-01T19:03:12.2207490Z","updatedOn":"2023-02-01T19:03:12.2207490Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/153174d5-a263-11ed-bad7-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"153174d5-a263-11ed-bad7-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-01T19:03:15.7264802Z","updatedOn":"2023-02-01T19:03:15.7264802Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/172f1d82-a263-11ed-bad7-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"172f1d82-a263-11ed-bad7-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-02T03:13:38.6056072Z","updatedOn":"2023-02-02T03:13:38.6056072Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88d8d974-d77d-450f-89ee-d4a98efea6d8","type":"Microsoft.Authorization/roleAssignments","name":"88d8d974-d77d-450f-89ee-d4a98efea6d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-02T03:19:55.3070568Z","updatedOn":"2023-02-02T03:19:55.3070568Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f273f651-5bde-4219-ab11-33842c5d3224","type":"Microsoft.Authorization/roleAssignments","name":"f273f651-5bde-4219-ab11-33842c5d3224"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-02T09:43:41.0210838Z","updatedOn":"2023-02-02T09:43:41.0210838Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2e9d149-730b-447b-b3e8-3a1fff80f1e1","type":"Microsoft.Authorization/roleAssignments","name":"b2e9d149-730b-447b-b3e8-3a1fff80f1e1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-03T18:49:50.9127720Z","updatedOn":"2023-02-03T18:49:50.9127720Z","createdBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","updatedBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8984621e-a3f3-11ed-b23c-a08cfdd89f0d","type":"Microsoft.Authorization/roleAssignments","name":"8984621e-a3f3-11ed-b23c-a08cfdd89f0d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-03T18:49:55.4277284Z","updatedOn":"2023-02-03T18:49:55.4277284Z","createdBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","updatedBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c3308b8-a3f3-11ed-b23c-a08cfdd89f0d","type":"Microsoft.Authorization/roleAssignments","name":"8c3308b8-a3f3-11ed-b23c-a08cfdd89f0d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-03T21:54:32.5272557Z","updatedOn":"2023-02-03T21:54:32.5272557Z","createdBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","updatedBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5650998f-a40d-11ed-8cfd-763d1fcabad1","type":"Microsoft.Authorization/roleAssignments","name":"5650998f-a40d-11ed-8cfd-763d1fcabad1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-06T16:05:18.7158859Z","updatedOn":"2023-02-06T16:05:18.7158859Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b2a1bdc-a638-11ed-b0e4-de5d54961c0d","type":"Microsoft.Authorization/roleAssignments","name":"0b2a1bdc-a638-11ed-b0e4-de5d54961c0d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-06T21:22:16.0685608Z","updatedOn":"2023-02-06T21:22:16.0685608Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5372f2e2-a664-11ed-99dd-00155d7b2003","type":"Microsoft.Authorization/roleAssignments","name":"5372f2e2-a664-11ed-99dd-00155d7b2003"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T02:31:53.1943940Z","updatedOn":"2023-02-07T02:31:53.1943940Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/93d9ca8e-a68f-11ed-99fe-82539686faad","type":"Microsoft.Authorization/roleAssignments","name":"93d9ca8e-a68f-11ed-99fe-82539686faad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T17:35:09.5804790Z","updatedOn":"2023-02-07T17:35:09.5804790Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c423996c-a70d-11ed-805e-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"c423996c-a70d-11ed-805e-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T21:59:01.9278864Z","updatedOn":"2023-02-07T21:59:01.9278864Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/415eb8ac-2243-415a-8a6a-692cfd82054b","type":"Microsoft.Authorization/roleAssignments","name":"415eb8ac-2243-415a-8a6a-692cfd82054b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T23:07:32.1844748Z","updatedOn":"2023-02-07T23:07:32.1844748Z","createdBy":"bd73a081-fc57-4d58-adb0-f7b098797225","updatedBy":"bd73a081-fc57-4d58-adb0-f7b098797225","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/32edd9f4-a73c-11ed-a351-64d69a01bd73","type":"Microsoft.Authorization/roleAssignments","name":"32edd9f4-a73c-11ed-a351-64d69a01bd73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T23:07:37.2690514Z","updatedOn":"2023-02-07T23:07:37.2690514Z","createdBy":"bd73a081-fc57-4d58-adb0-f7b098797225","updatedBy":"bd73a081-fc57-4d58-adb0-f7b098797225","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3567b721-a73c-11ed-a351-64d69a01bd73","type":"Microsoft.Authorization/roleAssignments","name":"3567b721-a73c-11ed-a351-64d69a01bd73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T16:04:37.2489661Z","updatedOn":"2023-02-08T16:04:37.2489661Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4891c61c-a7ca-11ed-926c-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"4891c61c-a7ca-11ed-926c-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T19:28:37.4403950Z","updatedOn":"2023-02-08T19:28:37.4403950Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7017b0f-925c-43b0-9416-6eb60d8374e3","type":"Microsoft.Authorization/roleAssignments","name":"a7017b0f-925c-43b0-9416-6eb60d8374e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T19:42:35.5124742Z","updatedOn":"2023-02-08T19:42:35.5124742Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd059c37-a7e8-11ed-8d91-7e3b8160807d","type":"Microsoft.Authorization/roleAssignments","name":"bd059c37-a7e8-11ed-8d91-7e3b8160807d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T19:42:39.7153998Z","updatedOn":"2023-02-08T19:42:39.7153998Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf728611-a7e8-11ed-8d91-7e3b8160807d","type":"Microsoft.Authorization/roleAssignments","name":"bf728611-a7e8-11ed-8d91-7e3b8160807d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T22:45:32.7092683Z","updatedOn":"2023-02-08T22:45:32.7092683Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c82f6230-4661-4b60-9ae4-cbd24bc5971d","type":"Microsoft.Authorization/roleAssignments","name":"c82f6230-4661-4b60-9ae4-cbd24bc5971d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T23:38:55.4476717Z","updatedOn":"2023-02-08T23:38:55.4476717Z","createdBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","updatedBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b563f5e3-a809-11ed-92da-061e1dff6519","type":"Microsoft.Authorization/roleAssignments","name":"b563f5e3-a809-11ed-92da-061e1dff6519"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T17:18:01.5061195Z","updatedOn":"2023-02-09T17:18:01.5061195Z","createdBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","updatedBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b477f0fa-a89d-11ed-9d1f-4e375b705c86","type":"Microsoft.Authorization/roleAssignments","name":"b477f0fa-a89d-11ed-9d1f-4e375b705c86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T17:18:03.2471424Z","updatedOn":"2023-02-09T17:18:03.2471424Z","createdBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","updatedBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b58085bc-a89d-11ed-9d1f-4e375b705c86","type":"Microsoft.Authorization/roleAssignments","name":"b58085bc-a89d-11ed-9d1f-4e375b705c86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T18:21:34.0931358Z","updatedOn":"2023-02-09T18:21:34.0931358Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5fe27fe4-6007-4829-afa0-0a3e3780b6d3","type":"Microsoft.Authorization/roleAssignments","name":"5fe27fe4-6007-4829-afa0-0a3e3780b6d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T21:44:30.2729026Z","updatedOn":"2023-02-09T21:44:30.2729026Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eecd187f-a8c2-11ed-9284-1e4dbb47ca8f","type":"Microsoft.Authorization/roleAssignments","name":"eecd187f-a8c2-11ed-9284-1e4dbb47ca8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T21:44:36.9652403Z","updatedOn":"2023-02-09T21:44:36.9652403Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f27e86e2-a8c2-11ed-9284-1e4dbb47ca8f","type":"Microsoft.Authorization/roleAssignments","name":"f27e86e2-a8c2-11ed-9284-1e4dbb47ca8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T01:19:04.3719723Z","updatedOn":"2023-02-10T01:19:04.3719723Z","createdBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","updatedBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d5cdb0f-1b3b-46f9-8e1b-84661382dfe9","type":"Microsoft.Authorization/roleAssignments","name":"0d5cdb0f-1b3b-46f9-8e1b-84661382dfe9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T22:39:09.0776574Z","updatedOn":"2023-02-10T22:39:09.0776574Z","createdBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","updatedBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb3a8a84-a993-11ed-a433-00155df41803","type":"Microsoft.Authorization/roleAssignments","name":"bb3a8a84-a993-11ed-a433-00155df41803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T22:39:12.9098417Z","updatedOn":"2023-02-10T22:39:12.9098417Z","createdBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","updatedBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd7f173a-a993-11ed-a433-00155df41803","type":"Microsoft.Authorization/roleAssignments","name":"bd7f173a-a993-11ed-a433-00155df41803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e3c35f4c-e0ca-4b9e-a01e-5ebdd17e2ee7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-13T07:08:28.2729144Z","updatedOn":"2023-02-13T07:08:28.2729144Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bba123f0-e027-47b5-9f46-15320b0d6ea2","type":"Microsoft.Authorization/roleAssignments","name":"bba123f0-e027-47b5-9f46-15320b0d6ea2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-13T20:30:01.2193678Z","updatedOn":"2023-02-13T20:30:01.2193678Z","createdBy":"40db9032-6efa-443b-a2df-6b0c1d107875","updatedBy":"40db9032-6efa-443b-a2df-6b0c1d107875","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f3b7710-abdd-11ed-8e93-42746b8cdccc","type":"Microsoft.Authorization/roleAssignments","name":"2f3b7710-abdd-11ed-8e93-42746b8cdccc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-13T20:30:05.9299217Z","updatedOn":"2023-02-13T20:30:05.9299217Z","createdBy":"40db9032-6efa-443b-a2df-6b0c1d107875","updatedBy":"40db9032-6efa-443b-a2df-6b0c1d107875","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/321b80cb-abdd-11ed-8e93-42746b8cdccc","type":"Microsoft.Authorization/roleAssignments","name":"321b80cb-abdd-11ed-8e93-42746b8cdccc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-14T20:20:30.1688349Z","updatedOn":"2023-02-14T20:20:30.1688349Z","createdBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","updatedBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/06359457-aca5-11ed-82a6-00155df41803","type":"Microsoft.Authorization/roleAssignments","name":"06359457-aca5-11ed-82a6-00155df41803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T01:37:21.5709630Z","updatedOn":"2023-02-15T01:37:21.5709630Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a7e1874-acd1-11ed-8639-d691c85c3a02","type":"Microsoft.Authorization/roleAssignments","name":"4a7e1874-acd1-11ed-8639-d691c85c3a02"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T09:59:56.7546952Z","updatedOn":"2023-02-15T09:59:56.7546952Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7fa783e6-ad17-11ed-97ee-000d3a9be92a","type":"Microsoft.Authorization/roleAssignments","name":"7fa783e6-ad17-11ed-97ee-000d3a9be92a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T10:00:02.7311424Z","updatedOn":"2023-02-15T10:00:02.7311424Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/836897a6-ad17-11ed-97ee-000d3a9be92a","type":"Microsoft.Authorization/roleAssignments","name":"836897a6-ad17-11ed-97ee-000d3a9be92a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T16:38:42.0341267Z","updatedOn":"2023-02-15T16:38:42.0341267Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3476476d-ad4f-11ed-8fa2-000d3a984fd4","type":"Microsoft.Authorization/roleAssignments","name":"3476476d-ad4f-11ed-8fa2-000d3a984fd4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T16:38:46.6959293Z","updatedOn":"2023-02-15T16:38:46.6959293Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/375326e5-ad4f-11ed-8fa2-000d3a984fd4","type":"Microsoft.Authorization/roleAssignments","name":"375326e5-ad4f-11ed-8fa2-000d3a984fd4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-17T06:21:34.8976862Z","updatedOn":"2023-02-17T06:21:34.8976862Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/52c15699-ae8b-11ed-b14e-023ef88171a7","type":"Microsoft.Authorization/roleAssignments","name":"52c15699-ae8b-11ed-b14e-023ef88171a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-19T02:02:00.9378377Z","updatedOn":"2023-02-19T02:02:00.9378377Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63ae64e6-aff9-11ed-967a-968963402bc6","type":"Microsoft.Authorization/roleAssignments","name":"63ae64e6-aff9-11ed-967a-968963402bc6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-19T02:02:05.4821651Z","updatedOn":"2023-02-19T02:02:05.4821651Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66639a26-aff9-11ed-967a-968963402bc6","type":"Microsoft.Authorization/roleAssignments","name":"66639a26-aff9-11ed-967a-968963402bc6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T09:22:38.4725256Z","updatedOn":"2023-02-21T09:22:38.4725256Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/48461efc-b1c9-11ed-bd41-3ed144e41689","type":"Microsoft.Authorization/roleAssignments","name":"48461efc-b1c9-11ed-bd41-3ed144e41689"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T09:22:42.2363452Z","updatedOn":"2023-02-21T09:22:42.2363452Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a784b6e-b1c9-11ed-bd41-3ed144e41689","type":"Microsoft.Authorization/roleAssignments","name":"4a784b6e-b1c9-11ed-bd41-3ed144e41689"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-23T03:00:31.5651965Z","updatedOn":"2023-02-23T03:00:31.5651965Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cef217b-a8cc-4115-a4bd-042af84325dc","type":"Microsoft.Authorization/roleAssignments","name":"3cef217b-a8cc-4115-a4bd-042af84325dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-23T06:48:16.8637402Z","updatedOn":"2023-02-23T06:48:16.8637402Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0c91daf6-b346-11ed-a964-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"0c91daf6-b346-11ed-a964-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-23T06:48:21.4826289Z","updatedOn":"2023-02-23T06:48:21.4826289Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f55d0c9-b346-11ed-a964-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"0f55d0c9-b346-11ed-a964-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T00:54:23.0966101Z","updatedOn":"2023-02-24T00:54:23.0966101Z","createdBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","updatedBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6e6a721-b3dd-11ed-b60f-0022481da32e","type":"Microsoft.Authorization/roleAssignments","name":"c6e6a721-b3dd-11ed-b60f-0022481da32e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T00:54:31.9826815Z","updatedOn":"2023-02-24T00:54:31.9826815Z","createdBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","updatedBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc3f3b4e-b3dd-11ed-b60f-0022481da32e","type":"Microsoft.Authorization/roleAssignments","name":"cc3f3b4e-b3dd-11ed-b60f-0022481da32e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T02:50:23.5663680Z","updatedOn":"2023-02-24T02:50:23.5663680Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb698872-b3ed-11ed-8f76-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"fb698872-b3ed-11ed-8f76-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T04:50:44.0913238Z","updatedOn":"2023-02-24T04:50:44.0913238Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cb72426d-4967-427c-8cf6-c167bc26814f","type":"Microsoft.Authorization/roleAssignments","name":"cb72426d-4967-427c-8cf6-c167bc26814f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T23:34:22.8669116Z","updatedOn":"2023-02-24T23:34:22.8669116Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3e6258b-b49b-11ed-90ef-000d3a0168de","type":"Microsoft.Authorization/roleAssignments","name":"c3e6258b-b49b-11ed-90ef-000d3a0168de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T23:34:26.7176031Z","updatedOn":"2023-02-24T23:34:26.7176031Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6438a56-b49b-11ed-90ef-000d3a0168de","type":"Microsoft.Authorization/roleAssignments","name":"c6438a56-b49b-11ed-90ef-000d3a0168de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-27T04:38:09.3994350Z","updatedOn":"2023-02-27T04:38:09.3994350Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b58ab305-83cc-4c4e-924b-3c1ba8ffcb83","type":"Microsoft.Authorization/roleAssignments","name":"b58ab305-83cc-4c4e-924b-3c1ba8ffcb83"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-27T04:38:09.8212573Z","updatedOn":"2023-02-27T04:38:09.8212573Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45883a93-4807-4bb9-a2b3-a7163d6c2031","type":"Microsoft.Authorization/roleAssignments","name":"45883a93-4807-4bb9-a2b3-a7163d6c2031"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T04:01:45.4038947Z","updatedOn":"2023-02-28T04:01:45.4038947Z","createdBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","updatedBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9d7a9b0f-b71c-11ed-b33b-6045bd7c1155","type":"Microsoft.Authorization/roleAssignments","name":"9d7a9b0f-b71c-11ed-b33b-6045bd7c1155"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T06:57:12.2026246Z","updatedOn":"2023-02-28T06:57:12.2026246Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1f6f0732-b735-11ed-be49-962abdd2f2a3","type":"Microsoft.Authorization/roleAssignments","name":"1f6f0732-b735-11ed-be49-962abdd2f2a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T15:32:52.3533623Z","updatedOn":"2023-02-28T15:32:52.3533623Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28e54510-b77d-11ed-bcc0-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"28e54510-b77d-11ed-bcc0-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T17:34:23.5106370Z","updatedOn":"2023-02-28T17:34:23.5106370Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/22f4b3a0-b78e-11ed-8898-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"22f4b3a0-b78e-11ed-8898-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T18:16:58.6154652Z","updatedOn":"2023-02-28T18:16:58.6154652Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15c84290-b794-11ed-ba68-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"15c84290-b794-11ed-ba68-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T19:50:58.1867864Z","updatedOn":"2023-03-01T19:50:58.1867864Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61f54236-b86a-11ed-96f5-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"61f54236-b86a-11ed-96f5-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T22:21:34.1000877Z","updatedOn":"2023-03-01T22:21:34.1000877Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b7ce6fa-b87f-11ed-858b-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"6b7ce6fa-b87f-11ed-858b-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T22:45:09.8437635Z","updatedOn":"2023-03-01T22:45:09.8437635Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7b17d80-b882-11ed-a5f7-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"b7b17d80-b882-11ed-a5f7-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T23:11:15.0259743Z","updatedOn":"2023-03-01T23:11:15.0259743Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5c9278f6-b886-11ed-83fe-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"5c9278f6-b886-11ed-83fe-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T06:31:28.5537789Z","updatedOn":"2023-03-02T06:31:28.5537789Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d301d940-45f5-4242-8a04-8ce059ee9054","type":"Microsoft.Authorization/roleAssignments","name":"d301d940-45f5-4242-8a04-8ce059ee9054"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T16:54:46.5495446Z","updatedOn":"2023-03-02T16:54:46.5495446Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef382e78-b91a-11ed-8fc9-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"ef382e78-b91a-11ed-8fc9-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T18:09:39.0923025Z","updatedOn":"2023-03-02T18:09:39.0923025Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65561192-b925-11ed-8582-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"65561192-b925-11ed-8582-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T18:09:44.0481916Z","updatedOn":"2023-03-02T18:09:44.0481916Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/68443e92-b925-11ed-8582-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"68443e92-b925-11ed-8582-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T20:44:44.0250379Z","updatedOn":"2023-03-02T20:44:44.0250379Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f118b20-b93b-11ed-9771-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"0f118b20-b93b-11ed-9771-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T21:25:21.6836921Z","updatedOn":"2023-03-02T21:25:21.6836921Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb99eb4e-b940-11ed-b11e-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"bb99eb4e-b940-11ed-b11e-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T22:13:06.5481097Z","updatedOn":"2023-03-02T22:13:06.5481097Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/671c9222-b947-11ed-bf55-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"671c9222-b947-11ed-bf55-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T23:21:53.5068345Z","updatedOn":"2023-03-02T23:21:53.5068345Z","createdBy":"6a70a9ce-9405-4447-867c-92746716ef5a","updatedBy":"6a70a9ce-9405-4447-867c-92746716ef5a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/03b3dac0-b951-11ed-a3db-5e7d78be13fb","type":"Microsoft.Authorization/roleAssignments","name":"03b3dac0-b951-11ed-a3db-5e7d78be13fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T23:21:58.2602277Z","updatedOn":"2023-03-02T23:21:58.2602277Z","createdBy":"6a70a9ce-9405-4447-867c-92746716ef5a","updatedBy":"6a70a9ce-9405-4447-867c-92746716ef5a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/06a1f991-b951-11ed-a3db-5e7d78be13fb","type":"Microsoft.Authorization/roleAssignments","name":"06a1f991-b951-11ed-a3db-5e7d78be13fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-03T08:24:31.2215832Z","updatedOn":"2023-03-03T08:24:31.2215832Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c439d06c-2e66-4cbc-9c42-f2e962b394a9","type":"Microsoft.Authorization/roleAssignments","name":"c439d06c-2e66-4cbc-9c42-f2e962b394a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-03T08:25:05.4966158Z","updatedOn":"2023-03-03T08:25:05.4966158Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12c86535-6761-4402-a871-c5ed84a4b236","type":"Microsoft.Authorization/roleAssignments","name":"12c86535-6761-4402-a871-c5ed84a4b236"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-06T23:11:36.9481730Z","updatedOn":"2023-03-06T23:11:36.9481730Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d91d90a-bc74-11ed-a26b-66106f6e7480","type":"Microsoft.Authorization/roleAssignments","name":"3d91d90a-bc74-11ed-a26b-66106f6e7480"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-07T11:10:24.3937430Z","updatedOn":"2023-03-07T11:10:24.3937430Z","createdBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","updatedBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a74aed5f-bcd8-11ed-9f36-2636f0255870","type":"Microsoft.Authorization/roleAssignments","name":"a74aed5f-bcd8-11ed-9f36-2636f0255870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-07T11:10:29.5524963Z","updatedOn":"2023-03-07T11:10:29.5524963Z","createdBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","updatedBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa4ebe62-bcd8-11ed-9f36-2636f0255870","type":"Microsoft.Authorization/roleAssignments","name":"aa4ebe62-bcd8-11ed-9f36-2636f0255870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-08T19:24:26.7238172Z","updatedOn":"2023-03-08T19:24:26.7238172Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d65c4fee-bde6-11ed-8e54-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"d65c4fee-bde6-11ed-8e54-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-08T19:24:31.6398973Z","updatedOn":"2023-03-08T19:24:31.6398973Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d90a67f8-bde6-11ed-8e54-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"d90a67f8-bde6-11ed-8e54-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-08T20:06:19.9493503Z","updatedOn":"2023-03-08T20:06:19.9493503Z","createdBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","updatedBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0af95de-bdec-11ed-9669-3e22fb431907","type":"Microsoft.Authorization/roleAssignments","name":"b0af95de-bdec-11ed-9669-3e22fb431907"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-09T01:58:48.5122241Z","updatedOn":"2023-03-09T01:58:48.5122241Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee1bd122-be1d-11ed-a53c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"ee1bd122-be1d-11ed-a53c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-09T17:44:00.7209931Z","updatedOn":"2023-03-09T17:44:00.7209931Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f932fb60-bea1-11ed-afcf-6e3850888c7e","type":"Microsoft.Authorization/roleAssignments","name":"f932fb60-bea1-11ed-afcf-6e3850888c7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-10T08:26:27.9057589Z","updatedOn":"2023-03-10T08:26:27.9057589Z","createdBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","updatedBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f911d1d-bf1d-11ed-a236-002248824659","type":"Microsoft.Authorization/roleAssignments","name":"3f911d1d-bf1d-11ed-a236-002248824659"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-10T08:26:33.2539857Z","updatedOn":"2023-03-10T08:26:33.2539857Z","createdBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","updatedBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42d7f7e6-bf1d-11ed-a236-002248824659","type":"Microsoft.Authorization/roleAssignments","name":"42d7f7e6-bf1d-11ed-a236-002248824659"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-11T05:53:49.4765844Z","updatedOn":"2023-03-11T05:53:49.4765844Z","createdBy":"d378d978-a2b7-46cf-b57b-1e586d281118","updatedBy":"d378d978-a2b7-46cf-b57b-1e586d281118","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/179b8d2a-bfd1-11ed-bd9a-3c52827953b3","type":"Microsoft.Authorization/roleAssignments","name":"179b8d2a-bfd1-11ed-bd9a-3c52827953b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-11T05:53:53.6955891Z","updatedOn":"2023-03-11T05:53:53.6955891Z","createdBy":"d378d978-a2b7-46cf-b57b-1e586d281118","updatedBy":"d378d978-a2b7-46cf-b57b-1e586d281118","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1a1e6965-bfd1-11ed-bd9a-3c52827953b3","type":"Microsoft.Authorization/roleAssignments","name":"1a1e6965-bfd1-11ed-bd9a-3c52827953b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T06:33:26.4594910Z","updatedOn":"2023-03-13T06:33:26.4594910Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b03e0140-e53e-491a-9a7b-e179fa1b8a7b","type":"Microsoft.Authorization/roleAssignments","name":"b03e0140-e53e-491a-9a7b-e179fa1b8a7b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T12:12:33.0193279Z","updatedOn":"2023-03-13T12:12:33.0193279Z","createdBy":"559c030a-5305-402e-ab3c-018e8b685492","updatedBy":"559c030a-5305-402e-ab3c-018e8b685492","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54e258e9-c198-11ed-8db5-be30b45d791c","type":"Microsoft.Authorization/roleAssignments","name":"54e258e9-c198-11ed-8db5-be30b45d791c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T12:12:36.9894487Z","updatedOn":"2023-03-13T12:12:36.9894487Z","createdBy":"559c030a-5305-402e-ab3c-018e8b685492","updatedBy":"559c030a-5305-402e-ab3c-018e8b685492","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/575c39c1-c198-11ed-8db5-be30b45d791c","type":"Microsoft.Authorization/roleAssignments","name":"575c39c1-c198-11ed-8db5-be30b45d791c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-14T18:19:52.2457482Z","updatedOn":"2023-03-14T18:19:52.2457482Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf500684-c294-11ed-aaa3-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"cf500684-c294-11ed-aaa3-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-15T17:17:49.1398598Z","updatedOn":"2023-03-15T17:17:49.1398598Z","createdBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","updatedBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4edbdd66-c355-11ed-8966-d85ed302bf1b","type":"Microsoft.Authorization/roleAssignments","name":"4edbdd66-c355-11ed-8966-d85ed302bf1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-16T00:14:24.3742157Z","updatedOn":"2023-03-16T00:14:24.3742157Z","createdBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","updatedBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7f7be49f-c38f-11ed-ba47-9e7a3e847acb","type":"Microsoft.Authorization/roleAssignments","name":"7f7be49f-c38f-11ed-ba47-9e7a3e847acb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-16T00:14:28.4721252Z","updatedOn":"2023-03-16T00:14:28.4721252Z","createdBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","updatedBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81c01cec-c38f-11ed-ba47-9e7a3e847acb","type":"Microsoft.Authorization/roleAssignments","name":"81c01cec-c38f-11ed-ba47-9e7a3e847acb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-20T06:05:05.2225187Z","updatedOn":"2023-03-20T06:05:05.2225187Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/27de0b5c-c6e5-11ed-8082-0ab78cd2e1ba","type":"Microsoft.Authorization/roleAssignments","name":"27de0b5c-c6e5-11ed-8082-0ab78cd2e1ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-20T19:31:51.9736494Z","updatedOn":"2023-03-20T19:31:51.9736494Z","createdBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","updatedBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dbc8c438-c755-11ed-8659-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"dbc8c438-c755-11ed-8659-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-20T19:31:55.5444616Z","updatedOn":"2023-03-20T19:31:55.5444616Z","createdBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","updatedBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e111eebf-c755-11ed-8659-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"e111eebf-c755-11ed-8659-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T07:50:31.4771973Z","updatedOn":"2023-03-21T07:50:31.4771973Z","createdBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","updatedBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c95fead-0a2b-4d52-a17d-1d3d17997871","type":"Microsoft.Authorization/roleAssignments","name":"6c95fead-0a2b-4d52-a17d-1d3d17997871"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T08:30:33.5552284Z","updatedOn":"2023-03-21T08:30:33.5552284Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a54293b5-c7c2-11ed-a7e6-000d3a044b73","type":"Microsoft.Authorization/roleAssignments","name":"a54293b5-c7c2-11ed-a7e6-000d3a044b73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T19:10:41.8785727Z","updatedOn":"2023-03-21T19:10:41.8785727Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12487a5a-c81c-11ed-ba46-827f6562cca2","type":"Microsoft.Authorization/roleAssignments","name":"12487a5a-c81c-11ed-ba46-827f6562cca2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T19:10:47.3524534Z","updatedOn":"2023-03-21T19:10:47.3524534Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15881bc6-c81c-11ed-ba46-827f6562cca2","type":"Microsoft.Authorization/roleAssignments","name":"15881bc6-c81c-11ed-ba46-827f6562cca2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-23T04:37:57.4678727Z","updatedOn":"2023-03-23T04:37:57.4678727Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b934178-c934-11ed-b9f7-6045bd80c6e6","type":"Microsoft.Authorization/roleAssignments","name":"7b934178-c934-11ed-b9f7-6045bd80c6e6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-27T05:50:19.8871681Z","updatedOn":"2023-03-27T05:50:19.8871681Z","createdBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","updatedBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/410882d1-cc63-11ed-ae41-0022480f1f08","type":"Microsoft.Authorization/roleAssignments","name":"410882d1-cc63-11ed-ae41-0022480f1f08"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-27T05:50:25.6681144Z","updatedOn":"2023-03-27T05:50:25.6681144Z","createdBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","updatedBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/441bda3a-cc63-11ed-ae41-0022480f1f08","type":"Microsoft.Authorization/roleAssignments","name":"441bda3a-cc63-11ed-ae41-0022480f1f08"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d24ecba3-c1f4-40fa-a7bb-4588a071e8fd","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:06.6052430Z","updatedOn":"2023-03-28T04:20:06.6052430Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/407210a5-bc55-40fb-91a9-92aa082cb413","type":"Microsoft.Authorization/roleAssignments","name":"407210a5-bc55-40fb-91a9-92aa082cb413"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:10.8566627Z","updatedOn":"2023-03-28T04:20:10.8566627Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24f5047d-db77-4702-ffab-aa7c979ea3ff","type":"Microsoft.Authorization/roleAssignments","name":"24f5047d-db77-4702-ffab-aa7c979ea3ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:10.9115871Z","updatedOn":"2023-03-28T04:20:10.9115871Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/58df4b89-0de1-4d34-1767-ac1e33e9acd8","type":"Microsoft.Authorization/roleAssignments","name":"58df4b89-0de1-4d34-1767-ac1e33e9acd8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.4495061Z","updatedOn":"2023-03-28T04:20:11.4495061Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a454de4-a1dc-4273-f384-029257fe5c7f","type":"Microsoft.Authorization/roleAssignments","name":"4a454de4-a1dc-4273-f384-029257fe5c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.2724262Z","updatedOn":"2023-03-28T04:20:11.2724262Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd662e52-e7fa-4eeb-5755-696d2e8169b9","type":"Microsoft.Authorization/roleAssignments","name":"cd662e52-e7fa-4eeb-5755-696d2e8169b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.4717540Z","updatedOn":"2023-03-28T04:20:11.4717540Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4680d2be-be84-417b-d222-07880110ada0","type":"Microsoft.Authorization/roleAssignments","name":"4680d2be-be84-417b-d222-07880110ada0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.5533314Z","updatedOn":"2023-03-28T04:20:11.5533314Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28dadd85-c2a5-420f-1563-a6ec9d26fd9a","type":"Microsoft.Authorization/roleAssignments","name":"28dadd85-c2a5-420f-1563-a6ec9d26fd9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.5554589Z","updatedOn":"2023-03-28T04:20:11.5554589Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d1872322-4fde-43f5-e2b4-325dda9f40ad","type":"Microsoft.Authorization/roleAssignments","name":"d1872322-4fde-43f5-e2b4-325dda9f40ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.8299726Z","updatedOn":"2023-03-28T04:20:11.8299726Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ede81bb8-d3cd-4dc8-0fd3-b0a2a5a42b23","type":"Microsoft.Authorization/roleAssignments","name":"ede81bb8-d3cd-4dc8-0fd3-b0a2a5a42b23"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T14:40:42.0514829Z","updatedOn":"2023-03-29T14:40:42.0514829Z","createdBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","updatedBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ae019e96-ce3f-11ed-aa9b-000d3a142c7f","type":"Microsoft.Authorization/roleAssignments","name":"ae019e96-ce3f-11ed-aa9b-000d3a142c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T14:40:45.8687684Z","updatedOn":"2023-03-29T14:40:45.8687684Z","createdBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","updatedBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0540ef4-ce3f-11ed-aa9b-000d3a142c7f","type":"Microsoft.Authorization/roleAssignments","name":"b0540ef4-ce3f-11ed-aa9b-000d3a142c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T17:23:15.2268767Z","updatedOn":"2023-03-29T17:23:15.2268767Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/636243ad-ce56-11ed-9744-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"636243ad-ce56-11ed-9744-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T17:23:18.8739735Z","updatedOn":"2023-03-29T17:23:18.8739735Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6586219c-ce56-11ed-9744-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"6586219c-ce56-11ed-9744-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T19:32:39.0885013Z","updatedOn":"2023-03-29T19:32:39.0885013Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/76c41cef-ce68-11ed-b18b-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"76c41cef-ce68-11ed-b18b-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T19:32:43.3448308Z","updatedOn":"2023-03-29T19:32:43.3448308Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/793f1b95-ce68-11ed-b18b-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"793f1b95-ce68-11ed-b18b-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T02:24:05.4290067Z","updatedOn":"2023-03-31T02:24:05.4290067Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1ad6198a-cf6b-11ed-8440-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"1ad6198a-cf6b-11ed-8440-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T02:24:09.9883076Z","updatedOn":"2023-03-31T02:24:09.9883076Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1dd45f87-cf6b-11ed-8440-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"1dd45f87-cf6b-11ed-8440-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T07:26:15.0154750Z","updatedOn":"2023-03-31T07:26:15.0154750Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/babc263e-1cc9-429d-babf-2b33c8e79093","type":"Microsoft.Authorization/roleAssignments","name":"babc263e-1cc9-429d-babf-2b33c8e79093"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T07:44:54.6073153Z","updatedOn":"2023-03-31T07:44:54.6073153Z","createdBy":"2996d4bf-d495-49f2-a2cd-8d684c724185","updatedBy":"2996d4bf-d495-49f2-a2cd-8d684c724185","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/828df835-2536-4c50-9397-90aabf94db75","type":"Microsoft.Authorization/roleAssignments","name":"828df835-2536-4c50-9397-90aabf94db75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T19:06:47.3414876Z","updatedOn":"2023-03-31T19:06:47.3414876Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2ea3ab94-cff7-11ed-b393-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"2ea3ab94-cff7-11ed-b393-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T19:08:21.6870221Z","updatedOn":"2023-03-31T19:08:21.6870221Z","createdBy":"367712bd-8587-45ef-9e63-1d269a194d53","updatedBy":"367712bd-8587-45ef-9e63-1d269a194d53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66e7009d-cff7-11ed-a7d9-002248a7a68e","type":"Microsoft.Authorization/roleAssignments","name":"66e7009d-cff7-11ed-a7d9-002248a7a68e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T19:08:26.3035343Z","updatedOn":"2023-03-31T19:08:26.3035343Z","createdBy":"367712bd-8587-45ef-9e63-1d269a194d53","updatedBy":"367712bd-8587-45ef-9e63-1d269a194d53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/69a1dd2e-cff7-11ed-a7d9-002248a7a68e","type":"Microsoft.Authorization/roleAssignments","name":"69a1dd2e-cff7-11ed-a7d9-002248a7a68e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-02T04:28:12.7151802Z","updatedOn":"2023-04-02T04:28:12.7151802Z","createdBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","updatedBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c7830a5d-d10e-11ed-a622-f24a877c1ab5","type":"Microsoft.Authorization/roleAssignments","name":"c7830a5d-d10e-11ed-a622-f24a877c1ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-02T04:28:15.3112141Z","updatedOn":"2023-04-02T04:28:15.3112141Z","createdBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","updatedBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9256530-d10e-11ed-a622-f24a877c1ab5","type":"Microsoft.Authorization/roleAssignments","name":"c9256530-d10e-11ed-a622-f24a877c1ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-05T00:24:25.1673334Z","updatedOn":"2023-04-05T00:24:25.1673334Z","createdBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","updatedBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/376ceec9-d348-11ed-9d01-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"376ceec9-d348-11ed-9d01-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-05T00:24:28.5013634Z","updatedOn":"2023-04-05T00:24:28.5013634Z","createdBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","updatedBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39762108-d348-11ed-9d01-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"39762108-d348-11ed-9d01-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-10T17:47:25.2219893Z","updatedOn":"2023-04-10T17:47:25.2219893Z","createdBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","updatedBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0866ce8-d7c7-11ed-a6a7-9660021dc7a9","type":"Microsoft.Authorization/roleAssignments","name":"c0866ce8-d7c7-11ed-a6a7-9660021dc7a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-10T17:47:29.2984077Z","updatedOn":"2023-04-10T17:47:29.2984077Z","createdBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","updatedBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3089c1c-d7c7-11ed-a6a7-9660021dc7a9","type":"Microsoft.Authorization/roleAssignments","name":"c3089c1c-d7c7-11ed-a6a7-9660021dc7a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-13T19:14:02.9424463Z","updatedOn":"2023-04-13T19:14:02.9424463Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d256d6e-ea9e-4124-8252-9da35a5e074b","type":"Microsoft.Authorization/roleAssignments","name":"0d256d6e-ea9e-4124-8252-9da35a5e074b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-17T15:47:32.8370892Z","updatedOn":"2023-04-17T15:47:32.8370892Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3d0f65d-4923-4776-8fb5-288240615c89","type":"Microsoft.Authorization/roleAssignments","name":"b3d0f65d-4923-4776-8fb5-288240615c89"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-17T16:09:03.8628586Z","updatedOn":"2023-04-17T16:09:03.8628586Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2eb3e3cb-598f-4048-aab3-0bd5a8b262ec","type":"Microsoft.Authorization/roleAssignments","name":"2eb3e3cb-598f-4048-aab3-0bd5a8b262ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-19T18:42:49.4053198Z","updatedOn":"2023-04-19T18:42:49.4053198Z","createdBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","updatedBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fba6c131-dee1-11ed-af88-000d3a23f184","type":"Microsoft.Authorization/roleAssignments","name":"fba6c131-dee1-11ed-af88-000d3a23f184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-19T18:42:53.2275925Z","updatedOn":"2023-04-19T18:42:53.2275925Z","createdBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","updatedBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdf8a1c6-dee1-11ed-af88-000d3a23f184","type":"Microsoft.Authorization/roleAssignments","name":"fdf8a1c6-dee1-11ed-af88-000d3a23f184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-19T20:38:29.3110777Z","updatedOn":"2023-04-19T20:38:29.3110777Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23e3d8f0-def2-11ed-8cbe-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"23e3d8f0-def2-11ed-8cbe-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-20T23:41:52.6427527Z","updatedOn":"2023-04-20T23:41:52.6427527Z","createdBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","updatedBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4daefdda-d51e-55b7-9175-548688500778","type":"Microsoft.Authorization/roleAssignments","name":"4daefdda-d51e-55b7-9175-548688500778"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-21T17:49:07.3103199Z","updatedOn":"2023-04-21T17:49:07.3103199Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cfcbdd18-e06c-11ed-8b1a-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"cfcbdd18-e06c-11ed-8b1a-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-21T19:58:00.4291773Z","updatedOn":"2023-04-21T19:58:00.4291773Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d1321fac-e07e-11ed-9f07-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"d1321fac-e07e-11ed-9f07-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-25T18:19:28.7344580Z","updatedOn":"2023-04-25T18:19:28.7344580Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d940b7e-a372-438c-89b3-fe59be8a3d63","type":"Microsoft.Authorization/roleAssignments","name":"6d940b7e-a372-438c-89b3-fe59be8a3d63"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-26T15:27:00.5297027Z","updatedOn":"2023-04-26T15:27:00.5297027Z","createdBy":"b2192440-253a-42f2-8429-40f3820b89be","updatedBy":"b2192440-253a-42f2-8429-40f3820b89be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9b0c1c0-e446-11ed-a01b-00155d1f6f24","type":"Microsoft.Authorization/roleAssignments","name":"c9b0c1c0-e446-11ed-a01b-00155d1f6f24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-26T15:27:03.8070654Z","updatedOn":"2023-04-26T15:27:03.8070654Z","createdBy":"b2192440-253a-42f2-8429-40f3820b89be","updatedBy":"b2192440-253a-42f2-8429-40f3820b89be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbabbec4-e446-11ed-a01b-00155d1f6f24","type":"Microsoft.Authorization/roleAssignments","name":"cbabbec4-e446-11ed-a01b-00155d1f6f24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-28T14:39:15.9639397Z","updatedOn":"2023-04-28T14:39:15.9639397Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/731ed5b6-e5d2-11ed-b4a6-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"731ed5b6-e5d2-11ed-b4a6-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-28T14:39:19.9194172Z","updatedOn":"2023-04-28T14:39:19.9194172Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/757edff4-e5d2-11ed-b4a6-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"757edff4-e5d2-11ed-b4a6-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/974c5e8b-45b9-4653-ba55-5f855dd0fb88","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-01T21:15:30.3600778Z","updatedOn":"2023-05-01T21:15:30.3600778Z","createdBy":"5bef4afd-1360-40a2-ac51-9339229af623","updatedBy":"5bef4afd-1360-40a2-ac51-9339229af623","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4cff74bd-e865-11ed-bd8b-5e022905d313","type":"Microsoft.Authorization/roleAssignments","name":"4cff74bd-e865-11ed-bd8b-5e022905d313"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-01T21:15:34.1175433Z","updatedOn":"2023-05-01T21:15:34.1175433Z","createdBy":"5bef4afd-1360-40a2-ac51-9339229af623","updatedBy":"5bef4afd-1360-40a2-ac51-9339229af623","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4f3e2c7f-e865-11ed-bd8b-5e022905d313","type":"Microsoft.Authorization/roleAssignments","name":"4f3e2c7f-e865-11ed-bd8b-5e022905d313"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-01T22:25:20.9242136Z","updatedOn":"2023-05-01T22:25:20.9242136Z","createdBy":"1ae4ccb9-fb9e-49c0-b500-10d71ff2e737","updatedBy":"1ae4ccb9-fb9e-49c0-b500-10d71ff2e737","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/112fdd75-6ef8-4016-b550-eec1b3c20720","type":"Microsoft.Authorization/roleAssignments","name":"112fdd75-6ef8-4016-b550-eec1b3c20720"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T12:17:42.9403161Z","updatedOn":"2023-05-04T12:17:42.9403161Z","createdBy":"7206144a-a8f7-442f-994e-850c46730a52","updatedBy":"7206144a-a8f7-442f-994e-850c46730a52","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ab58b8d1-ea75-11ed-8e28-8c164501ca31","type":"Microsoft.Authorization/roleAssignments","name":"ab58b8d1-ea75-11ed-8e28-8c164501ca31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T12:17:48.5968787Z","updatedOn":"2023-05-04T12:17:48.5968787Z","createdBy":"7206144a-a8f7-442f-994e-850c46730a52","updatedBy":"7206144a-a8f7-442f-994e-850c46730a52","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aeac0cc1-ea75-11ed-8e28-8c164501ca31","type":"Microsoft.Authorization/roleAssignments","name":"aeac0cc1-ea75-11ed-8e28-8c164501ca31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T14:59:12.9566578Z","updatedOn":"2023-05-04T14:59:12.9566578Z","createdBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","updatedBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a379e3f-ea8c-11ed-b7f9-5254000f02cc","type":"Microsoft.Authorization/roleAssignments","name":"3a379e3f-ea8c-11ed-b7f9-5254000f02cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T14:59:17.0941141Z","updatedOn":"2023-05-04T14:59:17.0941141Z","createdBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","updatedBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cc57207-ea8c-11ed-b7f9-5254000f02cc","type":"Microsoft.Authorization/roleAssignments","name":"3cc57207-ea8c-11ed-b7f9-5254000f02cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-08T17:20:32.4213470Z","updatedOn":"2023-05-08T17:20:32.4213470Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fcb9cd22-d202-49b5-ac49-63b77db3c355","type":"Microsoft.Authorization/roleAssignments","name":"fcb9cd22-d202-49b5-ac49-63b77db3c355"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-08T18:57:28.0040779Z","updatedOn":"2023-05-08T18:57:28.0040779Z","createdBy":"a4ff7404-5868-4532-ab16-142dad6a55af","updatedBy":"a4ff7404-5868-4532-ab16-142dad6a55af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d38f814-edd2-11ed-b548-000d3af78112","type":"Microsoft.Authorization/roleAssignments","name":"2d38f814-edd2-11ed-b548-000d3af78112"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-08T18:57:31.3014429Z","updatedOn":"2023-05-08T18:57:31.3014429Z","createdBy":"a4ff7404-5868-4532-ab16-142dad6a55af","updatedBy":"a4ff7404-5868-4532-ab16-142dad6a55af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f311f92-edd2-11ed-b548-000d3af78112","type":"Microsoft.Authorization/roleAssignments","name":"2f311f92-edd2-11ed-b548-000d3af78112"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T19:02:07.8525568Z","updatedOn":"2023-05-10T19:02:07.8525568Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dedfb4b8-f315-5b5a-b52f-afbb2a175cd5","type":"Microsoft.Authorization/roleAssignments","name":"dedfb4b8-f315-5b5a-b52f-afbb2a175cd5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T19:02:07.5081592Z","updatedOn":"2023-05-10T19:02:07.5081592Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dcfe553d-97cc-5084-b369-d557cd90b386","type":"Microsoft.Authorization/roleAssignments","name":"dcfe553d-97cc-5084-b369-d557cd90b386"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T08:58:12.7125916Z","updatedOn":"2023-05-10T08:58:12.7125916Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d8f9d929-9d3d-42df-a8fe-5f0ceb0bba3e","type":"Microsoft.Authorization/roleAssignments","name":"d8f9d929-9d3d-42df-a8fe-5f0ceb0bba3e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T09:31:17.2430697Z","updatedOn":"2023-05-10T09:31:17.2430697Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3fd12d91-3e5a-4061-bcb2-05a9732b9159","type":"Microsoft.Authorization/roleAssignments","name":"3fd12d91-3e5a-4061-bcb2-05a9732b9159"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:43:09.6330210Z","updatedOn":"2023-05-10T16:43:09.6330210Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/becaa992-ef51-11ed-bf36-f6f4c2331193","type":"Microsoft.Authorization/roleAssignments","name":"becaa992-ef51-11ed-bf36-f6f4c2331193"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:43:13.3065725Z","updatedOn":"2023-05-10T16:43:13.3065725Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0ffd61a-ef51-11ed-bf36-f6f4c2331193","type":"Microsoft.Authorization/roleAssignments","name":"c0ffd61a-ef51-11ed-bf36-f6f4c2331193"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T21:23:06.4822851Z","updatedOn":"2023-05-10T21:23:06.4822851Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/db3e8912-ef78-11ed-9094-0ed70c823176","type":"Microsoft.Authorization/roleAssignments","name":"db3e8912-ef78-11ed-9094-0ed70c823176"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T21:23:10.1751715Z","updatedOn":"2023-05-10T21:23:10.1751715Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd8c02e4-ef78-11ed-9094-0ed70c823176","type":"Microsoft.Authorization/roleAssignments","name":"dd8c02e4-ef78-11ed-9094-0ed70c823176"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-12T17:27:33.1207504Z","updatedOn":"2023-05-12T17:27:33.1207504Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b59475c1-c560-4221-a59e-8c9f845d824c","type":"Microsoft.Authorization/roleAssignments","name":"b59475c1-c560-4221-a59e-8c9f845d824c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T18:50:21.8951381Z","updatedOn":"2023-05-15T18:50:21.8951381Z","createdBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","updatedBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57f8b39a-f351-11ed-a7a2-d28ee6de8df2","type":"Microsoft.Authorization/roleAssignments","name":"57f8b39a-f351-11ed-a7a2-d28ee6de8df2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T18:50:26.0744382Z","updatedOn":"2023-05-15T18:50:26.0744382Z","createdBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","updatedBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5a738a82-f351-11ed-a7a2-d28ee6de8df2","type":"Microsoft.Authorization/roleAssignments","name":"5a738a82-f351-11ed-a7a2-d28ee6de8df2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T20:09:25.9908381Z","updatedOn":"2023-05-15T20:09:25.9908381Z","createdBy":"1f978537-bb5b-4c76-9021-fb832071f334","updatedBy":"1f978537-bb5b-4c76-9021-fb832071f334","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63c222a4-f35c-11ed-a054-6e098a288f3f","type":"Microsoft.Authorization/roleAssignments","name":"63c222a4-f35c-11ed-a054-6e098a288f3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T20:09:35.2733605Z","updatedOn":"2023-05-15T20:09:35.2733605Z","createdBy":"1f978537-bb5b-4c76-9021-fb832071f334","updatedBy":"1f978537-bb5b-4c76-9021-fb832071f334","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6941144c-f35c-11ed-a054-6e098a288f3f","type":"Microsoft.Authorization/roleAssignments","name":"6941144c-f35c-11ed-a054-6e098a288f3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-17T20:10:57.7226371Z","updatedOn":"2023-05-17T20:10:57.7226371Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eda389e3-f4ee-11ed-b5ec-00155d3916e4","type":"Microsoft.Authorization/roleAssignments","name":"eda389e3-f4ee-11ed-b5ec-00155d3916e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-17T20:11:02.1123126Z","updatedOn":"2023-05-17T20:11:02.1123126Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f013376b-f4ee-11ed-b5ec-00155d3916e4","type":"Microsoft.Authorization/roleAssignments","name":"f013376b-f4ee-11ed-b5ec-00155d3916e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-19T16:27:28.8077810Z","updatedOn":"2023-05-19T16:27:28.8077810Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0bb8ff8d-f662-11ed-8f49-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"0bb8ff8d-f662-11ed-8f49-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-19T16:27:33.8052285Z","updatedOn":"2023-05-19T16:27:33.8052285Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ec6735e-f662-11ed-8f49-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"0ec6735e-f662-11ed-8f49-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-22T21:25:31.6093600Z","updatedOn":"2023-05-22T21:25:31.6093600Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d4e15d6-f8e7-11ed-8d3d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2d4e15d6-f8e7-11ed-8d3d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-22T21:25:39.5158809Z","updatedOn":"2023-05-22T21:25:39.5158809Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3232bc64-f8e7-11ed-8d3d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"3232bc64-f8e7-11ed-8d3d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T14:26:30.7681910Z","updatedOn":"2023-05-23T14:26:30.7681910Z","createdBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","updatedBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","delegatedManagedIdentityResourceId":null,"description":"Test + service principal"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/60f05fed-3b0c-4a91-86aa-44a327ded351","type":"Microsoft.Authorization/roleAssignments","name":"60f05fed-3b0c-4a91-86aa-44a327ded351"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T18:52:45.1223272Z","updatedOn":"2023-05-23T18:52:45.1223272Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47caa5b3-b27e-4f95-82b1-b5f87095df3a","type":"Microsoft.Authorization/roleAssignments","name":"47caa5b3-b27e-4f95-82b1-b5f87095df3a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T21:08:13.2773990Z","updatedOn":"2023-05-23T21:08:13.2773990Z","createdBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","updatedBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","delegatedManagedIdentityResourceId":null,"description":"Test + service principal"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79efe060-bf11-43db-ae9d-b281c8d0a9d8","type":"Microsoft.Authorization/roleAssignments","name":"79efe060-bf11-43db-ae9d-b281c8d0a9d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T23:58:25.0358872Z","updatedOn":"2023-05-23T23:58:25.0358872Z","createdBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","updatedBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3ca2af8-f9c5-11ed-9d5d-e64a5a4d2331","type":"Microsoft.Authorization/roleAssignments","name":"b3ca2af8-f9c5-11ed-9d5d-e64a5a4d2331"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T23:58:29.5965022Z","updatedOn":"2023-05-23T23:58:29.5965022Z","createdBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","updatedBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b699d06c-f9c5-11ed-9d5d-e64a5a4d2331","type":"Microsoft.Authorization/roleAssignments","name":"b699d06c-f9c5-11ed-9d5d-e64a5a4d2331"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-25T17:39:08.1426685Z","updatedOn":"2023-05-25T17:39:08.1426685Z","createdBy":"d87783d5-8706-48d6-ba20-d688d69119b2","updatedBy":"d87783d5-8706-48d6-ba20-d688d69119b2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23e6f3b5-225b-4e09-b962-619645aa3b66","type":"Microsoft.Authorization/roleAssignments","name":"23e6f3b5-225b-4e09-b962-619645aa3b66"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-25T20:11:52.1711289Z","updatedOn":"2023-05-25T20:11:52.1711289Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54d2e488-f4a3-4484-802e-ccd2bf4e0973","type":"Microsoft.Authorization/roleAssignments","name":"54d2e488-f4a3-4484-802e-ccd2bf4e0973"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-26T19:08:12.5337243Z","updatedOn":"2023-05-26T19:08:12.5337243Z","createdBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","updatedBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce436091-fe0c-51ad-a3a4-65285790684d","type":"Microsoft.Authorization/roleAssignments","name":"ce436091-fe0c-51ad-a3a4-65285790684d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-26T23:15:50.9221989Z","updatedOn":"2023-05-26T23:15:50.9221989Z","createdBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","updatedBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42aa6334-fc1b-11ed-8275-faccf5616d1b","type":"Microsoft.Authorization/roleAssignments","name":"42aa6334-fc1b-11ed-8275-faccf5616d1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-26T23:15:55.3490253Z","updatedOn":"2023-05-26T23:15:55.3490253Z","createdBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","updatedBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45629004-fc1b-11ed-8275-faccf5616d1b","type":"Microsoft.Authorization/roleAssignments","name":"45629004-fc1b-11ed-8275-faccf5616d1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-31T01:54:29.1188102Z","updatedOn":"2023-05-31T01:54:29.1188102Z","createdBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","updatedBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/13eebbd0-ff56-11ed-9bfa-02e332bf0a73","type":"Microsoft.Authorization/roleAssignments","name":"13eebbd0-ff56-11ed-9bfa-02e332bf0a73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-31T01:54:33.3318294Z","updatedOn":"2023-05-31T01:54:33.3318294Z","createdBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","updatedBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/166f22cd-ff56-11ed-9bfa-02e332bf0a73","type":"Microsoft.Authorization/roleAssignments","name":"166f22cd-ff56-11ed-9bfa-02e332bf0a73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-01T17:50:33.3890390Z","updatedOn":"2023-06-01T17:50:33.3890390Z","createdBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","updatedBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce40a1ba-00a4-11ee-9cf5-00155d28851f","type":"Microsoft.Authorization/roleAssignments","name":"ce40a1ba-00a4-11ee-9cf5-00155d28851f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-01T17:50:37.1678380Z","updatedOn":"2023-06-01T17:50:37.1678380Z","createdBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","updatedBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0850dfa-00a4-11ee-9cf5-00155d28851f","type":"Microsoft.Authorization/roleAssignments","name":"d0850dfa-00a4-11ee-9cf5-00155d28851f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-02T17:57:26.0215079Z","updatedOn":"2023-06-02T17:57:26.0215079Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd9cd89b-ff35-4fa2-9e07-0680ad3fa370","type":"Microsoft.Authorization/roleAssignments","name":"dd9cd89b-ff35-4fa2-9e07-0680ad3fa370"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-02T18:03:23.7925935Z","updatedOn":"2023-06-02T18:03:23.7925935Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d95aec2a-6adc-44a7-bd96-33d53af658bd","type":"Microsoft.Authorization/roleAssignments","name":"d95aec2a-6adc-44a7-bd96-33d53af658bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-03T02:03:08.3558097Z","updatedOn":"2023-06-03T02:03:08.3558097Z","createdBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","updatedBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c0f55e9-ff8c-410b-84c8-c613d1c425d1","type":"Microsoft.Authorization/roleAssignments","name":"6c0f55e9-ff8c-410b-84c8-c613d1c425d1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:28:30.6187015Z","updatedOn":"2023-06-05T17:28:30.6187015Z","createdBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","updatedBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63598898-03c6-11ee-a3b2-00155d87caab","type":"Microsoft.Authorization/roleAssignments","name":"63598898-03c6-11ee-a3b2-00155d87caab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:28:40.0597663Z","updatedOn":"2023-06-05T17:28:40.0597663Z","createdBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","updatedBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/68f66863-03c6-11ee-a3b2-00155d87caab","type":"Microsoft.Authorization/roleAssignments","name":"68f66863-03c6-11ee-a3b2-00155d87caab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:56:05.4845273Z","updatedOn":"2023-06-05T17:56:05.4845273Z","createdBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","updatedBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3dc7635d-03ca-11ee-aaaf-00155da910be","type":"Microsoft.Authorization/roleAssignments","name":"3dc7635d-03ca-11ee-aaaf-00155da910be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:56:09.7600652Z","updatedOn":"2023-06-05T17:56:09.7600652Z","createdBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","updatedBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40502bdc-03ca-11ee-aaaf-00155da910be","type":"Microsoft.Authorization/roleAssignments","name":"40502bdc-03ca-11ee-aaaf-00155da910be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T01:05:13.7066693Z","updatedOn":"2023-06-06T01:05:13.7066693Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/30f7f3e5-0406-11ee-b551-0022482d400c","type":"Microsoft.Authorization/roleAssignments","name":"30f7f3e5-0406-11ee-b551-0022482d400c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T05:00:05.2963688Z","updatedOn":"2023-06-06T05:00:05.2963688Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":"add + RCG-Read Write-CG-23637\n"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca637efb-b6e1-4bf5-bb88-a6724eacb0a7","type":"Microsoft.Authorization/roleAssignments","name":"ca637efb-b6e1-4bf5-bb88-a6724eacb0a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T17:38:31.9010821Z","updatedOn":"2023-06-06T17:38:31.9010821Z","createdBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","updatedBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4658d49-0490-11ee-994b-00155db896c4","type":"Microsoft.Authorization/roleAssignments","name":"f4658d49-0490-11ee-994b-00155db896c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T17:38:35.1906894Z","updatedOn":"2023-06-06T17:38:35.1906894Z","createdBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","updatedBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6601fef-0490-11ee-994b-00155db896c4","type":"Microsoft.Authorization/roleAssignments","name":"f6601fef-0490-11ee-994b-00155db896c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-07T01:57:45.0424798Z","updatedOn":"2023-06-07T01:57:45.0424798Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b19ebd13-04d6-11ee-b0e1-000d3a1d1b64","type":"Microsoft.Authorization/roleAssignments","name":"b19ebd13-04d6-11ee-b0e1-000d3a1d1b64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-07T18:06:20.2372529Z","updatedOn":"2023-06-07T18:06:20.2372529Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/944021da-5dd6-47df-b8bd-2b702ec66b62","type":"Microsoft.Authorization/roleAssignments","name":"944021da-5dd6-47df-b8bd-2b702ec66b62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-08T18:05:13.4812189Z","updatedOn":"2023-06-08T18:05:13.4812189Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/03b31b12-0627-11ee-a6d2-002248be7b21","type":"Microsoft.Authorization/roleAssignments","name":"03b31b12-0627-11ee-a6d2-002248be7b21"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-08T18:05:17.6164752Z","updatedOn":"2023-06-08T18:05:17.6164752Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/061fcfb9-0627-11ee-a6d2-002248be7b21","type":"Microsoft.Authorization/roleAssignments","name":"061fcfb9-0627-11ee-a6d2-002248be7b21"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T21:54:46.4146879Z","updatedOn":"2023-06-09T21:54:46.4146879Z","createdBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","updatedBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f5dc66d-0710-11ee-931c-00155d54ed98","type":"Microsoft.Authorization/roleAssignments","name":"3f5dc66d-0710-11ee-931c-00155d54ed98"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T21:54:50.2224528Z","updatedOn":"2023-06-09T21:54:50.2224528Z","createdBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","updatedBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41a244d2-0710-11ee-931c-00155d54ed98","type":"Microsoft.Authorization/roleAssignments","name":"41a244d2-0710-11ee-931c-00155d54ed98"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T22:15:22.1460837Z","updatedOn":"2023-06-09T22:15:22.1460837Z","createdBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","updatedBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1f99aa10-0713-11ee-9f64-00155dba898f","type":"Microsoft.Authorization/roleAssignments","name":"1f99aa10-0713-11ee-9f64-00155dba898f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T22:15:26.3614867Z","updatedOn":"2023-06-09T22:15:26.3614867Z","createdBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","updatedBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/221f3106-0713-11ee-9f64-00155dba898f","type":"Microsoft.Authorization/roleAssignments","name":"221f3106-0713-11ee-9f64-00155dba898f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-10T00:10:29.8161145Z","updatedOn":"2023-06-10T00:10:29.8161145Z","createdBy":"7df1b69c-686b-452a-9f60-59b12a299512","updatedBy":"7df1b69c-686b-452a-9f60-59b12a299512","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3547a3a6-0723-11ee-af96-521cf0d5af1e","type":"Microsoft.Authorization/roleAssignments","name":"3547a3a6-0723-11ee-af96-521cf0d5af1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-10T00:10:33.6141995Z","updatedOn":"2023-06-10T00:10:33.6141995Z","createdBy":"7df1b69c-686b-452a-9f60-59b12a299512","updatedBy":"7df1b69c-686b-452a-9f60-59b12a299512","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/377f6236-0723-11ee-af96-521cf0d5af1e","type":"Microsoft.Authorization/roleAssignments","name":"377f6236-0723-11ee-af96-521cf0d5af1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-12T03:43:13.3971745Z","updatedOn":"2023-06-12T03:43:13.3971745Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/417d165a-08d3-11ee-8ac2-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"417d165a-08d3-11ee-8ac2-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-12T05:29:01.6737026Z","updatedOn":"2023-06-12T05:29:01.6737026Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b154a136-cc93-46f2-8a71-079a399ec467","type":"Microsoft.Authorization/roleAssignments","name":"b154a136-cc93-46f2-8a71-079a399ec467"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-12T07:33:06.7743063Z","updatedOn":"2023-06-12T07:33:06.7743063Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5d216b6f-33aa-40e9-8b1d-c399739dab45","type":"Microsoft.Authorization/roleAssignments","name":"5d216b6f-33aa-40e9-8b1d-c399739dab45"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T00:55:32.6278707Z","updatedOn":"2023-06-13T00:55:32.6278707Z","createdBy":"859286db-3db2-4ba3-a081-93ef7001669f","updatedBy":"859286db-3db2-4ba3-a081-93ef7001669f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ff444828-0984-11ee-aeab-a6b46b784ab5","type":"Microsoft.Authorization/roleAssignments","name":"ff444828-0984-11ee-aeab-a6b46b784ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T00:55:37.9764519Z","updatedOn":"2023-06-13T00:55:37.9764519Z","createdBy":"859286db-3db2-4ba3-a081-93ef7001669f","updatedBy":"859286db-3db2-4ba3-a081-93ef7001669f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/02794298-0985-11ee-aeab-a6b46b784ab5","type":"Microsoft.Authorization/roleAssignments","name":"02794298-0985-11ee-aeab-a6b46b784ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T00:56:32.2043149Z","updatedOn":"2023-06-13T00:56:32.2043149Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39cae6b9-bfce-4d39-8a33-55001e8e7b87","type":"Microsoft.Authorization/roleAssignments","name":"39cae6b9-bfce-4d39-8a33-55001e8e7b87"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T17:52:57.9703504Z","updatedOn":"2023-06-13T17:52:57.9703504Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57f9abab-a02d-4961-aa68-f7b9a39940e6","type":"Microsoft.Authorization/roleAssignments","name":"57f9abab-a02d-4961-aa68-f7b9a39940e6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T17:54:34.0715865Z","updatedOn":"2023-06-13T17:54:34.0715865Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4caed6f2-725f-4ba4-918a-6b874a08574f","type":"Microsoft.Authorization/roleAssignments","name":"4caed6f2-725f-4ba4-918a-6b874a08574f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f58310d9-a9f6-439a-9e8d-f62e7b41a168","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T18:35:01.5499775Z","updatedOn":"2023-06-13T18:35:01.5499775Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b89c4524-5b48-40cb-9a55-b9712852158d","type":"Microsoft.Authorization/roleAssignments","name":"b89c4524-5b48-40cb-9a55-b9712852158d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T19:11:38.6491712Z","updatedOn":"2023-06-13T19:11:38.6491712Z","createdBy":"d87783d5-8706-48d6-ba20-d688d69119b2","updatedBy":"d87783d5-8706-48d6-ba20-d688d69119b2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09b91438-5494-4648-9766-b0079f6970de","type":"Microsoft.Authorization/roleAssignments","name":"09b91438-5494-4648-9766-b0079f6970de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T19:56:31.5140590Z","updatedOn":"2023-06-13T19:56:31.5140590Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0042f368-b701-4c14-8177-38b23d027a7e","type":"Microsoft.Authorization/roleAssignments","name":"0042f368-b701-4c14-8177-38b23d027a7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T12:57:07.9074452Z","updatedOn":"2023-06-14T12:57:07.9074452Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7e7c27e-0ab2-11ee-a74d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f7e7c27e-0ab2-11ee-a74d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T12:57:11.6755824Z","updatedOn":"2023-06-14T12:57:11.6755824Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa216932-0ab2-11ee-a74d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"fa216932-0ab2-11ee-a74d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T17:38:49.2228645Z","updatedOn":"2023-06-14T17:38:49.2228645Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84bddd3a-c733-408c-b9f2-689e5458a38f","type":"Microsoft.Authorization/roleAssignments","name":"84bddd3a-c733-408c-b9f2-689e5458a38f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T17:38:48.8722593Z","updatedOn":"2023-06-14T17:38:48.8722593Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8aa8e9b1-633b-4e0d-b371-8d21cfdf950a","type":"Microsoft.Authorization/roleAssignments","name":"8aa8e9b1-633b-4e0d-b371-8d21cfdf950a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T17:38:48.8686689Z","updatedOn":"2023-06-14T17:38:48.8686689Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef3807a5-a1bb-4bae-a3d7-781a09a2a198","type":"Microsoft.Authorization/roleAssignments","name":"ef3807a5-a1bb-4bae-a3d7-781a09a2a198"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-12T17:41:39.7941619Z","updatedOn":"2021-03-12T17:41:39.7941619Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4625aa1-611e-448a-bf3e-f37f2bc878a3","type":"Microsoft.Authorization/roleAssignments","name":"d4625aa1-611e-448a-bf3e-f37f2bc878a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-16T23:49:03.3523073Z","updatedOn":"2021-03-16T23:49:03.3523073Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f33005f1-10be-43e3-a87f-9e2f954fb2db","type":"Microsoft.Authorization/roleAssignments","name":"f33005f1-10be-43e3-a87f-9e2f954fb2db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-25T00:58:10.6501184Z","updatedOn":"2021-03-25T00:58:10.6501184Z","createdBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","updatedBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2aca810c-8d05-11eb-bd25-000d3a4359fa","type":"Microsoft.Authorization/roleAssignments","name":"2aca810c-8d05-11eb-bd25-000d3a4359fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-26T10:24:43.4077585Z","updatedOn":"2021-03-26T10:24:43.4077585Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/779ad30e-8e1d-11eb-8aa9-000d3ac754e3","type":"Microsoft.Authorization/roleAssignments","name":"779ad30e-8e1d-11eb-8aa9-000d3ac754e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/46610f90-7283-a03b-3791-33f202e8180c","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T22:46:23.4119129Z","updatedOn":"2022-01-27T22:46:23.4119129Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/46610f90-7283-a03b-3791-33f202e8180c/providers/Microsoft.Authorization/roleAssignments/d92f870d-03da-4626-a453-84734da0b49c","type":"Microsoft.Authorization/roleAssignments","name":"d92f870d-03da-4626-a453-84734da0b49c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.8423155Z","updatedOn":"2019-03-26T22:01:02.8423155Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad/providers/Microsoft.Authorization/roleAssignments/3d069c98-e792-47bd-b58a-399e2d42dbab","type":"Microsoft.Authorization/roleAssignments","name":"3d069c98-e792-47bd-b58a-399e2d42dbab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad","condition":null,"conditionVersion":null,"createdOn":"2021-04-09T18:15:49.7063250Z","updatedOn":"2021-04-09T18:15:49.7063250Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad/providers/Microsoft.Authorization/roleAssignments/a6b435df-80e6-4a7b-b109-2af5f373d238","type":"Microsoft.Authorization/roleAssignments","name":"a6b435df-80e6-4a7b-b109-2af5f373d238"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9176787Z","updatedOn":"2019-03-26T22:01:02.9176787Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320","type":"Microsoft.Authorization/roleAssignments","name":"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:49:37.3000523Z","updatedOn":"2019-03-27T00:49:37.3000523Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29","type":"Microsoft.Authorization/roleAssignments","name":"e6e1fffd-83f7-40c7-9f33-e56e2cf75b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:50:08.3039053Z","updatedOn":"2019-03-27T00:50:08.3039053Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12","type":"Microsoft.Authorization/roleAssignments","name":"3d01f56e-ee3a-41ed-a775-0e067546cb12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T23:11:28.9217618Z","updatedOn":"2022-06-28T23:11:28.9217618Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/869183bd-893a-46f9-bb02-45e48b13f1be","type":"Microsoft.Authorization/roleAssignments","name":"869183bd-893a-46f9-bb02-45e48b13f1be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T22:32:46.2324804Z","updatedOn":"2023-02-21T22:32:46.2324804Z","createdBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","updatedBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/df7c1e07-5c2d-4b22-b7b9-fd11a8569db3","type":"Microsoft.Authorization/roleAssignments","name":"df7c1e07-5c2d-4b22-b7b9-fd11a8569db3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T20:23:16.3808369Z","updatedOn":"2023-05-04T20:23:16.3808369Z","createdBy":"fa00c2de-57d5-4527-9254-4d513f482d0a","updatedBy":"fa00c2de-57d5-4527-9254-4d513f482d0a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/59109645-7b2b-4278-831a-2e4627ec603d","type":"Microsoft.Authorization/roleAssignments","name":"59109645-7b2b-4278-831a-2e4627ec603d"}]}' headers: cache-control: - no-cache content-length: - - '66883' + - '787085' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Apr 2023 07:56:35 GMT + - Wed, 14 Jun 2023 18:16:42 GMT expires: - '-1' pragma: @@ -562,21 +582,21 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003?api-version=2023-01-31 response: body: - string: '{"location":"westus2","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003","name":"cli000003","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001"}}' + string: '{"location":"westcentralus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003","name":"cli000003","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001"}}' headers: cache-control: - no-cache content-length: - - '434' + - '440' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Apr 2023 07:56:35 GMT + - Wed, 14 Jun 2023 18:16:44 GMT expires: - '-1' pragma: @@ -607,8 +627,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2022-04-01 response: @@ -623,7 +643,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 26 Apr 2023 07:56:35 GMT + - Wed, 14 Jun 2023 18:16:44 GMT expires: - '-1' pragma: @@ -656,24 +676,25 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - - python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) AZURECLI/2.48.1 + - python/3.8.16 (macOS-13.4-arm64-arm-64bit) AZURECLI/2.49.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%271e44af3f-308e-4760-9dbc-223e46cde384%27%29 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27182abb86-444e-46d9-bb47-1582a85b5f1d%27%29 response: body: - string: '{"error":{"code":"Authorization_RequestDenied","message":"Insufficient - privileges to complete the operation.","innerError":{"date":"2023-04-26T07:56:36","request-id":"04fd4311-9586-4e1c-9488-78cb4a154001","client-request-id":"04fd4311-9586-4e1c-9488-78cb4a154001"}}}' + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[{"id":"9711a214-cb80-4236-9b48-29c482afa948","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=True","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003"],"appDisplayName":null,"appDescription":null,"appId":"182abb86-444e-46d9-bb47-1582a85b5f1d","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdDateTime":"2023-06-14T18:16:13Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"cli000003","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["182abb86-444e-46d9-bb47-1582a85b5f1d","https://identity.azure.net/TnwG8FPS/akq0PQce2xuw6LIBJNUo4RKE9Cp3LB4lnQ="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"92D06DC09C4BCC7794C395F8A0F91DFA775B6FD1","displayName":"CN=182abb86-444e-46d9-bb47-1582a85b5f1d","endDateTime":"2023-09-12T18:11:00Z","key":null,"keyId":"666f10c0-ab25-45e6-923c-311b6d5f9990","startDateTime":"2023-06-14T18:11:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' headers: cache-control: - no-cache content-length: - - '266' + - '1677' content-type: - - application/json + - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 26 Apr 2023 07:56:35 GMT + - Wed, 14 Jun 2023 18:16:46 GMT + odata-version: + - '4.0' request-id: - - 04fd4311-9586-4e1c-9488-78cb4a154001 + - f9f3cd1f-5378-43f5-909f-4cd0e6a8e18f strict-transport-security: - max-age=31536000 transfer-encoding: @@ -681,14 +702,15 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"002","RoleInstance":"MWH0EPF000815DE"}}' + - '{"ServerInfo":{"DataCenter":"North Central US","Slice":"E","Ring":"3","ScaleUnit":"002","RoleInstance":"CH01EPF0000D491"}}' x-ms-resource-unit: - '1' status: - code: 403 - message: Forbidden + code: 200 + message: OK - request: - body: null + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", + "principalId":"00000000-0000-0000-0000-000000000001"}}' headers: Accept: - application/json @@ -698,95 +720,155 @@ interactions: - aks create Connection: - keep-alive + Content-Length: + - '232' + Content-Type: + - application/json + Cookie: + - x-ms-gateway-slice=Production ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2022-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006/providers/Microsoft.Authorization/roleAssignments/e7de779b-c14d-467d-9b36-10f448efb196?api-version=2022-04-01 response: body: - string: '{"value":[{"properties":{"roleName":"Network Contributor","type":"BuiltInRole","description":"Lets - you manage networks, but not access to them.","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Network/*","Microsoft.ResourceHealth/availabilityStatuses/read","Microsoft.Resources/deployments/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-06-02T00:18:27.3542698Z","updatedOn":"2021-11-11T20:13:44.6328966Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","type":"Microsoft.Authorization/roleDefinitions","name":"4d97b98b-1d4f-4787-a291-c67834d212e7"}]}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T18:16:47.8926056Z","updatedOn":"2023-06-14T18:16:48.2786257Z","createdBy":null,"updatedBy":"4d730cf1-e190-49af-af02-ea52983c017e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006/providers/Microsoft.Authorization/roleAssignments/e7de779b-c14d-467d-9b36-10f448efb196","type":"Microsoft.Authorization/roleAssignments","name":"e7de779b-c14d-467d-9b36-10f448efb196"}' headers: cache-control: - no-cache content-length: - - '873' + - '1045' content-type: - application/json; charset=utf-8 date: - - Wed, 26 Apr 2023 07:56:38 GMT + - Wed, 14 Jun 2023 18:16:50 GMT expires: - '-1' pragma: - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: null + body: '{"location": "westcentralus", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003": + {}}}, "properties": {"kubernetesVersion": "", "dnsPrefix": "cliaksdns000002", + "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": + 0, "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006", + "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": + false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": + -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, + "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - aks create Connection: - keep-alive + Content-Length: + - '2103' + Content-Type: + - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - - python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) AZURECLI/2.48.1 - method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%271e44af3f-308e-4760-9dbc-223e46cde384%27%29 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: '{"error":{"code":"Authorization_RequestDenied","message":"Insufficient - privileges to complete the operation.","innerError":{"date":"2023-04-26T07:56:39","request-id":"8848cc1d-d7b5-4b78-8d3c-94d5c895cf72","client-request-id":"8848cc1d-d7b5-4b78-8d3c-94d5c895cf72"}}}' + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-z27850gd.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-z27850gd.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003\"\ + : {}\n }\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\ + \n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/d77cc321-b964-46e1-b547-37473ed06639?api-version=2016-03-30 cache-control: - no-cache content-length: - - '266' + - '3833' content-type: - application/json date: - - Wed, 26 Apr 2023 07:56:38 GMT - request-id: - - 8848cc1d-d7b5-4b78-8d3c-94d5c895cf72 + - Wed, 14 Jun 2023 18:16:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"000","RoleInstance":"CO1PEPF00000D17"}}' - x-ms-resource-unit: - - '1' + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 403 - message: Forbidden + code: 201 + message: Created - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -797,29 +879,29 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/d77cc321-b964-46e1-b547-37473ed06639?api-version=2016-03-30 response: body: - string: '{"value":[{"properties":{"roleName":"Network Contributor","type":"BuiltInRole","description":"Lets - you manage networks, but not access to them.","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Network/*","Microsoft.ResourceHealth/availabilityStatuses/read","Microsoft.Resources/deployments/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-06-02T00:18:27.3542698Z","updatedOn":"2021-11-11T20:13:44.6328966Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","type":"Microsoft.Authorization/roleDefinitions","name":"4d97b98b-1d4f-4787-a291-c67834d212e7"}]}' + string: "{\n \"name\": \"21c37cd7-64b9-e146-b547-37473ed06639\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:16:58.7365839Z\"\n }" headers: cache-control: - no-cache content-length: - - '873' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 26 Apr 2023 07:56:42 GMT + - Wed, 14 Jun 2023 18:16:59 GMT expires: - '-1' pragma: - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -846,75 +928,29 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - - python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) AZURECLI/2.48.1 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%271e44af3f-308e-4760-9dbc-223e46cde384%27%29 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/d77cc321-b964-46e1-b547-37473ed06639?api-version=2016-03-30 response: body: - string: '{"error":{"code":"Authorization_RequestDenied","message":"Insufficient - privileges to complete the operation.","innerError":{"date":"2023-04-26T07:56:43","request-id":"9563f73e-dab8-47ed-ad3e-c87d478aa4bf","client-request-id":"9563f73e-dab8-47ed-ad3e-c87d478aa4bf"}}}' + string: "{\n \"name\": \"21c37cd7-64b9-e146-b547-37473ed06639\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:16:58.7365839Z\"\n }" headers: cache-control: - no-cache content-length: - - '266' + - '126' content-type: - application/json date: - - Wed, 26 Apr 2023 07:56:42 GMT - request-id: - - 9563f73e-dab8-47ed-ad3e-c87d478aa4bf - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"001","RoleInstance":"MW2PEPF00008D4D"}}' - x-ms-resource-unit: - - '1' - status: - code: 403 - message: Forbidden -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --enable-managed-identity --assign-identity --vnet-subnet-id - User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2022-04-01 - response: - body: - string: '{"value":[{"properties":{"roleName":"Network Contributor","type":"BuiltInRole","description":"Lets - you manage networks, but not access to them.","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Network/*","Microsoft.ResourceHealth/availabilityStatuses/read","Microsoft.Resources/deployments/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-06-02T00:18:27.3542698Z","updatedOn":"2021-11-11T20:13:44.6328966Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","type":"Microsoft.Authorization/roleDefinitions","name":"4d97b98b-1d4f-4787-a291-c67834d212e7"}]}' - headers: - cache-control: - - no-cache - content-length: - - '873' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Apr 2023 07:56:48 GMT + - Wed, 14 Jun 2023 18:17:29 GMT expires: - '-1' pragma: - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -941,75 +977,29 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - - python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) AZURECLI/2.48.1 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%271e44af3f-308e-4760-9dbc-223e46cde384%27%29 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/d77cc321-b964-46e1-b547-37473ed06639?api-version=2016-03-30 response: body: - string: '{"error":{"code":"Authorization_RequestDenied","message":"Insufficient - privileges to complete the operation.","innerError":{"date":"2023-04-26T07:56:49","request-id":"0c5bed16-9972-43af-a2cf-669bea12ef51","client-request-id":"0c5bed16-9972-43af-a2cf-669bea12ef51"}}}' + string: "{\n \"name\": \"21c37cd7-64b9-e146-b547-37473ed06639\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:16:58.7365839Z\"\n }" headers: cache-control: - no-cache content-length: - - '266' + - '126' content-type: - application/json date: - - Wed, 26 Apr 2023 07:56:49 GMT - request-id: - - 0c5bed16-9972-43af-a2cf-669bea12ef51 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"000","RoleInstance":"CO1PEPF00000D14"}}' - x-ms-resource-unit: - - '1' - status: - code: 403 - message: Forbidden -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --enable-managed-identity --assign-identity --vnet-subnet-id - User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2022-04-01 - response: - body: - string: '{"value":[{"properties":{"roleName":"Network Contributor","type":"BuiltInRole","description":"Lets - you manage networks, but not access to them.","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Network/*","Microsoft.ResourceHealth/availabilityStatuses/read","Microsoft.Resources/deployments/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-06-02T00:18:27.3542698Z","updatedOn":"2021-11-11T20:13:44.6328966Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","type":"Microsoft.Authorization/roleDefinitions","name":"4d97b98b-1d4f-4787-a291-c67834d212e7"}]}' - headers: - cache-control: - - no-cache - content-length: - - '873' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Apr 2023 07:56:57 GMT + - Wed, 14 Jun 2023 18:17:59 GMT expires: - '-1' pragma: - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1036,75 +1026,29 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - - python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) AZURECLI/2.48.1 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%271e44af3f-308e-4760-9dbc-223e46cde384%27%29 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/d77cc321-b964-46e1-b547-37473ed06639?api-version=2016-03-30 response: body: - string: '{"error":{"code":"Authorization_RequestDenied","message":"Insufficient - privileges to complete the operation.","innerError":{"date":"2023-04-26T07:56:58","request-id":"60e704ea-8b06-4942-9f86-607af90167f6","client-request-id":"60e704ea-8b06-4942-9f86-607af90167f6"}}}' + string: "{\n \"name\": \"21c37cd7-64b9-e146-b547-37473ed06639\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:16:58.7365839Z\"\n }" headers: cache-control: - no-cache content-length: - - '266' + - '126' content-type: - application/json date: - - Wed, 26 Apr 2023 07:56:58 GMT - request-id: - - 60e704ea-8b06-4942-9f86-607af90167f6 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"002","RoleInstance":"MWH0EPF000969DD"}}' - x-ms-resource-unit: - - '1' - status: - code: 403 - message: Forbidden -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --enable-managed-identity --assign-identity --vnet-subnet-id - User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2022-04-01 - response: - body: - string: '{"value":[{"properties":{"roleName":"Network Contributor","type":"BuiltInRole","description":"Lets - you manage networks, but not access to them.","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Network/*","Microsoft.ResourceHealth/availabilityStatuses/read","Microsoft.Resources/deployments/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-06-02T00:18:27.3542698Z","updatedOn":"2021-11-11T20:13:44.6328966Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","type":"Microsoft.Authorization/roleDefinitions","name":"4d97b98b-1d4f-4787-a291-c67834d212e7"}]}' - headers: - cache-control: - - no-cache - content-length: - - '873' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Apr 2023 07:57:07 GMT + - Wed, 14 Jun 2023 18:18:29 GMT expires: - '-1' pragma: - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1131,42 +1075,45 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - - python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) AZURECLI/2.48.1 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%271e44af3f-308e-4760-9dbc-223e46cde384%27%29 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/d77cc321-b964-46e1-b547-37473ed06639?api-version=2016-03-30 response: body: - string: '{"error":{"code":"Authorization_RequestDenied","message":"Insufficient - privileges to complete the operation.","innerError":{"date":"2023-04-26T07:57:08","request-id":"3adae6fc-c46e-4164-8806-8c2c6d419c3d","client-request-id":"3adae6fc-c46e-4164-8806-8c2c6d419c3d"}}}' + string: "{\n \"name\": \"21c37cd7-64b9-e146-b547-37473ed06639\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:16:58.7365839Z\"\n }" headers: cache-control: - no-cache content-length: - - '266' + - '126' content-type: - application/json date: - - Wed, 26 Apr 2023 07:57:07 GMT - request-id: - - 3adae6fc-c46e-4164-8806-8c2c6d419c3d + - Wed, 14 Jun 2023 18:19:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx strict-transport-security: - - max-age=31536000 + - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"001","RoleInstance":"MW2PEPF00008D4F"}}' - x-ms-resource-unit: - - '1' + x-content-type-options: + - nosniff status: - code: 403 - message: Forbidden + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1177,29 +1124,29 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/d77cc321-b964-46e1-b547-37473ed06639?api-version=2016-03-30 response: body: - string: '{"value":[{"properties":{"roleName":"Network Contributor","type":"BuiltInRole","description":"Lets - you manage networks, but not access to them.","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Network/*","Microsoft.ResourceHealth/availabilityStatuses/read","Microsoft.Resources/deployments/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-06-02T00:18:27.3542698Z","updatedOn":"2021-11-11T20:13:44.6328966Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","type":"Microsoft.Authorization/roleDefinitions","name":"4d97b98b-1d4f-4787-a291-c67834d212e7"}]}' + string: "{\n \"name\": \"21c37cd7-64b9-e146-b547-37473ed06639\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:16:58.7365839Z\"\n }" headers: cache-control: - no-cache content-length: - - '873' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 26 Apr 2023 07:57:19 GMT + - Wed, 14 Jun 2023 18:19:30 GMT expires: - '-1' pragma: - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1223,1136 +1170,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --enable-managed-identity --assign-identity --vnet-subnet-id - User-Agent: - - python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) AZURECLI/2.48.1 - method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%271e44af3f-308e-4760-9dbc-223e46cde384%27%29 - response: - body: - string: '{"error":{"code":"Authorization_RequestDenied","message":"Insufficient - privileges to complete the operation.","innerError":{"date":"2023-04-26T07:57:20","request-id":"78344e17-fb28-49db-ae23-30a5be2babff","client-request-id":"78344e17-fb28-49db-ae23-30a5be2babff"}}}' - headers: - cache-control: - - no-cache - content-length: - - '266' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 07:57:20 GMT - request-id: - - 78344e17-fb28-49db-ae23-30a5be2babff - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"000","RoleInstance":"CO1PEPF00000D13"}}' - x-ms-resource-unit: - - '1' - status: - code: 403 - message: Forbidden -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --enable-managed-identity --assign-identity --vnet-subnet-id - User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2022-04-01 - response: - body: - string: '{"value":[{"properties":{"roleName":"Network Contributor","type":"BuiltInRole","description":"Lets - you manage networks, but not access to them.","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Network/*","Microsoft.ResourceHealth/availabilityStatuses/read","Microsoft.Resources/deployments/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-06-02T00:18:27.3542698Z","updatedOn":"2021-11-11T20:13:44.6328966Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","type":"Microsoft.Authorization/roleDefinitions","name":"4d97b98b-1d4f-4787-a291-c67834d212e7"}]}' - headers: - cache-control: - - no-cache - content-length: - - '873' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Apr 2023 07:57:34 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --enable-managed-identity --assign-identity --vnet-subnet-id - User-Agent: - - python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) AZURECLI/2.48.1 - method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%271e44af3f-308e-4760-9dbc-223e46cde384%27%29 - response: - body: - string: '{"error":{"code":"Authorization_RequestDenied","message":"Insufficient - privileges to complete the operation.","innerError":{"date":"2023-04-26T07:57:35","request-id":"d8762bfa-57cb-4732-bca3-3b7e35de89dd","client-request-id":"d8762bfa-57cb-4732-bca3-3b7e35de89dd"}}}' - headers: - cache-control: - - no-cache - content-length: - - '266' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 07:57:35 GMT - request-id: - - d8762bfa-57cb-4732-bca3-3b7e35de89dd - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"002","RoleInstance":"MWH0EPF00032B58"}}' - x-ms-resource-unit: - - '1' - status: - code: 403 - message: Forbidden -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --enable-managed-identity --assign-identity --vnet-subnet-id - User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2022-04-01 - response: - body: - string: '{"value":[{"properties":{"roleName":"Network Contributor","type":"BuiltInRole","description":"Lets - you manage networks, but not access to them.","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Network/*","Microsoft.ResourceHealth/availabilityStatuses/read","Microsoft.Resources/deployments/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-06-02T00:18:27.3542698Z","updatedOn":"2021-11-11T20:13:44.6328966Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","type":"Microsoft.Authorization/roleDefinitions","name":"4d97b98b-1d4f-4787-a291-c67834d212e7"}]}' - headers: - cache-control: - - no-cache - content-length: - - '873' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Apr 2023 07:57:51 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --enable-managed-identity --assign-identity --vnet-subnet-id - User-Agent: - - python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) AZURECLI/2.48.1 - method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%271e44af3f-308e-4760-9dbc-223e46cde384%27%29 - response: - body: - string: '{"error":{"code":"Authorization_RequestDenied","message":"Insufficient - privileges to complete the operation.","innerError":{"date":"2023-04-26T07:57:51","request-id":"0333bebc-ba09-4a51-ba89-9dab174378b6","client-request-id":"0333bebc-ba09-4a51-ba89-9dab174378b6"}}}' - headers: - cache-control: - - no-cache - content-length: - - '266' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 07:57:50 GMT - request-id: - - 0333bebc-ba09-4a51-ba89-9dab174378b6 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"001","RoleInstance":"MW2PEPF0000836F"}}' - x-ms-resource-unit: - - '1' - status: - code: 403 - message: Forbidden -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --enable-managed-identity --assign-identity --vnet-subnet-id - User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2022-04-01 - response: - body: - string: '{"value":[{"properties":{"roleName":"Network Contributor","type":"BuiltInRole","description":"Lets - you manage networks, but not access to them.","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Network/*","Microsoft.ResourceHealth/availabilityStatuses/read","Microsoft.Resources/deployments/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-06-02T00:18:27.3542698Z","updatedOn":"2021-11-11T20:13:44.6328966Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","type":"Microsoft.Authorization/roleDefinitions","name":"4d97b98b-1d4f-4787-a291-c67834d212e7"}]}' - headers: - cache-control: - - no-cache - content-length: - - '873' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 26 Apr 2023 07:58:08 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --enable-managed-identity --assign-identity --vnet-subnet-id - User-Agent: - - python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) AZURECLI/2.48.1 - method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%271e44af3f-308e-4760-9dbc-223e46cde384%27%29 - response: - body: - string: '{"error":{"code":"Authorization_RequestDenied","message":"Insufficient - privileges to complete the operation.","innerError":{"date":"2023-04-26T07:58:09","request-id":"b5cf70df-3fe9-4b6d-bb45-d934650f5542","client-request-id":"b5cf70df-3fe9-4b6d-bb45-d934650f5542"}}}' - headers: - cache-control: - - no-cache - content-length: - - '266' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 07:58:08 GMT - request-id: - - b5cf70df-3fe9-4b6d-bb45-d934650f5542 - strict-transport-security: - - max-age=31536000 - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"001","RoleInstance":"MW2PEPF0000836E"}}' - x-ms-resource-unit: - - '1' - status: - code: 403 - message: Forbidden -- request: - body: '{"location": "westus2", "identity": {"type": "UserAssigned", "userAssignedIdentities": - {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003": - {}}}, "properties": {"kubernetesVersion": "", "dnsPrefix": "cliaksdns000002", - "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": - 0, "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006", - "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": - false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": - -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, - "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC4FbYEnSg3B++273P4js8XiXC6vdN80wW5on6LXCSuVkgiCSyQ/j4Jjy5ZXG1iQ0E++48y0Lbmb6F6KL4AsUwq0SAGTEIpjOGieNX2qfK6W/dSsN8lZf+7rjq8sffRGcxtgH2I/nkRH7vlZFaiFg9YqJv/0tZhvO0CPLlvzOM1cWZsvK67UdGFfmPOcufqkYnSYoyfkibivUTUus0Gcd7jo2vEY2C8/KTc1yWWCbHtOeH5TY2vlcdmsbdnKrgZrchLhmcHrU08mHWh11MX9FIelan5Uw8kgoFNIu/Q6BrfGXu09PxXG7pOXoZR4MTRDr9ih0UDJ0H8Q7+jvSeXnJtv - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '1805' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --enable-managed-identity --assign-identity --vnet-subnet-id - User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-5owz0u62.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-5owz0u62.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n - \ \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC4FbYEnSg3B++273P4js8XiXC6vdN80wW5on6LXCSuVkgiCSyQ/j4Jjy5ZXG1iQ0E++48y0Lbmb6F6KL4AsUwq0SAGTEIpjOGieNX2qfK6W/dSsN8lZf+7rjq8sffRGcxtgH2I/nkRH7vlZFaiFg9YqJv/0tZhvO0CPLlvzOM1cWZsvK67UdGFfmPOcufqkYnSYoyfkibivUTUus0Gcd7jo2vEY2C8/KTc1yWWCbHtOeH5TY2vlcdmsbdnKrgZrchLhmcHrU08mHWh11MX9FIelan5Uw8kgoFNIu/Q6BrfGXu09PxXG7pOXoZR4MTRDr9ih0UDJ0H8Q7+jvSeXnJtv - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": - \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003\": - {}\n }\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n - \ }\n }" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d9289b19-9566-482f-b2c1-46173f0eb902?api-version=2016-03-30 - cache-control: - - no-cache - content-length: - - '3519' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 07:58:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --enable-managed-identity --assign-identity --vnet-subnet-id - User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d9289b19-9566-482f-b2c1-46173f0eb902?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"199b28d9-6695-2f48-b2c1-46173f0eb902\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T07:58:33.3528677Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 07:58:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --enable-managed-identity --assign-identity --vnet-subnet-id - User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d9289b19-9566-482f-b2c1-46173f0eb902?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"199b28d9-6695-2f48-b2c1-46173f0eb902\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T07:58:33.3528677Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 07:59:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --enable-managed-identity --assign-identity --vnet-subnet-id - User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d9289b19-9566-482f-b2c1-46173f0eb902?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"199b28d9-6695-2f48-b2c1-46173f0eb902\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T07:58:33.3528677Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 07:59:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --enable-managed-identity --assign-identity --vnet-subnet-id - User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d9289b19-9566-482f-b2c1-46173f0eb902?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"199b28d9-6695-2f48-b2c1-46173f0eb902\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T07:58:33.3528677Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 08:00:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --enable-managed-identity --assign-identity --vnet-subnet-id - User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d9289b19-9566-482f-b2c1-46173f0eb902?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"199b28d9-6695-2f48-b2c1-46173f0eb902\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T07:58:33.3528677Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 08:00:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --enable-managed-identity --assign-identity --vnet-subnet-id - User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d9289b19-9566-482f-b2c1-46173f0eb902?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"199b28d9-6695-2f48-b2c1-46173f0eb902\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T07:58:33.3528677Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 08:01:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --enable-managed-identity --assign-identity --vnet-subnet-id - User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d9289b19-9566-482f-b2c1-46173f0eb902?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"199b28d9-6695-2f48-b2c1-46173f0eb902\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T07:58:33.3528677Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 08:01:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --enable-managed-identity --assign-identity --vnet-subnet-id - User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d9289b19-9566-482f-b2c1-46173f0eb902?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"199b28d9-6695-2f48-b2c1-46173f0eb902\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T07:58:33.3528677Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 08:02:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --enable-managed-identity --assign-identity --vnet-subnet-id - User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d9289b19-9566-482f-b2c1-46173f0eb902?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"199b28d9-6695-2f48-b2c1-46173f0eb902\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T07:58:33.3528677Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 08:02:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --enable-managed-identity --assign-identity --vnet-subnet-id - User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d9289b19-9566-482f-b2c1-46173f0eb902?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"199b28d9-6695-2f48-b2c1-46173f0eb902\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T07:58:33.3528677Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 08:03:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --enable-managed-identity --assign-identity --vnet-subnet-id - User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d9289b19-9566-482f-b2c1-46173f0eb902?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"199b28d9-6695-2f48-b2c1-46173f0eb902\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-04-26T07:58:33.3528677Z\",\n \"endTime\": - \"2023-04-26T08:03:25.8058277Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '170' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 08:03:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --enable-managed-identity --assign-identity --vnet-subnet-id - User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-5owz0u62.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-5owz0u62.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n - \ \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC4FbYEnSg3B++273P4js8XiXC6vdN80wW5on6LXCSuVkgiCSyQ/j4Jjy5ZXG1iQ0E++48y0Lbmb6F6KL4AsUwq0SAGTEIpjOGieNX2qfK6W/dSsN8lZf+7rjq8sffRGcxtgH2I/nkRH7vlZFaiFg9YqJv/0tZhvO0CPLlvzOM1cWZsvK67UdGFfmPOcufqkYnSYoyfkibivUTUus0Gcd7jo2vEY2C8/KTc1yWWCbHtOeH5TY2vlcdmsbdnKrgZrchLhmcHrU08mHWh11MX9FIelan5Uw8kgoFNIu/Q6BrfGXu09PxXG7pOXoZR4MTRDr9ih0UDJ0H8Q7+jvSeXnJtv - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6da0b9d3-bfb8-4da4-b71b-b1414d9f4d62\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n - \ }\n }" - headers: - cache-control: - - no-cache - content-length: - - '4291' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 08:03:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks list - Connection: - - keep-alive - ParameterSetName: - - -g + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/d77cc321-b964-46e1-b547-37473ed06639?api-version=2016-03-30 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\": - \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-5owz0u62.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-5owz0u62.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC4FbYEnSg3B++273P4js8XiXC6vdN80wW5on6LXCSuVkgiCSyQ/j4Jjy5ZXG1iQ0E++48y0Lbmb6F6KL4AsUwq0SAGTEIpjOGieNX2qfK6W/dSsN8lZf+7rjq8sffRGcxtgH2I/nkRH7vlZFaiFg9YqJv/0tZhvO0CPLlvzOM1cWZsvK67UdGFfmPOcufqkYnSYoyfkibivUTUus0Gcd7jo2vEY2C8/KTc1yWWCbHtOeH5TY2vlcdmsbdnKrgZrchLhmcHrU08mHWh11MX9FIelan5Uw8kgoFNIu/Q6BrfGXu09PxXG7pOXoZR4MTRDr9ih0UDJ0H8Q7+jvSeXnJtv - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"enableLTS\": \"KubernetesOfficial\",\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6da0b9d3-bfb8-4da4-b71b-b1414d9f4d62\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": - {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": - \"Free\"\n }\n }\n ]\n }" + string: "{\n \"name\": \"21c37cd7-64b9-e146-b547-37473ed06639\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:16:58.7365839Z\"\n }" headers: cache-control: - no-cache content-length: - - '4570' + - '126' content-type: - application/json date: - - Wed, 26 Apr 2023 08:03:35 GMT + - Wed, 14 Jun 2023 18:20:00 GMT expires: - '-1' pragma: @@ -2374,78 +1211,34 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks list + - aks create Connection: - keep-alive ParameterSetName: - - -g -o + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/d77cc321-b964-46e1-b547-37473ed06639?api-version=2016-03-30 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\": - \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-5owz0u62.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-5owz0u62.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC4FbYEnSg3B++273P4js8XiXC6vdN80wW5on6LXCSuVkgiCSyQ/j4Jjy5ZXG1iQ0E++48y0Lbmb6F6KL4AsUwq0SAGTEIpjOGieNX2qfK6W/dSsN8lZf+7rjq8sffRGcxtgH2I/nkRH7vlZFaiFg9YqJv/0tZhvO0CPLlvzOM1cWZsvK67UdGFfmPOcufqkYnSYoyfkibivUTUus0Gcd7jo2vEY2C8/KTc1yWWCbHtOeH5TY2vlcdmsbdnKrgZrchLhmcHrU08mHWh11MX9FIelan5Uw8kgoFNIu/Q6BrfGXu09PxXG7pOXoZR4MTRDr9ih0UDJ0H8Q7+jvSeXnJtv - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"enableLTS\": \"KubernetesOfficial\",\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6da0b9d3-bfb8-4da4-b71b-b1414d9f4d62\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": - {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": - \"Free\"\n }\n }\n ]\n }" + string: "{\n \"name\": \"21c37cd7-64b9-e146-b547-37473ed06639\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:16:58.7365839Z\"\n }" headers: cache-control: - no-cache content-length: - - '4570' + - '126' content-type: - application/json date: - - Wed, 26 Apr 2023 08:03:35 GMT + - Wed, 14 Jun 2023 18:20:30 GMT expires: - '-1' pragma: @@ -2467,75 +1260,35 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks show + - aks create Connection: - keep-alive ParameterSetName: - - -g -n + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/d77cc321-b964-46e1-b547-37473ed06639?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-5owz0u62.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-5owz0u62.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n - \ \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC4FbYEnSg3B++273P4js8XiXC6vdN80wW5on6LXCSuVkgiCSyQ/j4Jjy5ZXG1iQ0E++48y0Lbmb6F6KL4AsUwq0SAGTEIpjOGieNX2qfK6W/dSsN8lZf+7rjq8sffRGcxtgH2I/nkRH7vlZFaiFg9YqJv/0tZhvO0CPLlvzOM1cWZsvK67UdGFfmPOcufqkYnSYoyfkibivUTUus0Gcd7jo2vEY2C8/KTc1yWWCbHtOeH5TY2vlcdmsbdnKrgZrchLhmcHrU08mHWh11MX9FIelan5Uw8kgoFNIu/Q6BrfGXu09PxXG7pOXoZR4MTRDr9ih0UDJ0H8Q7+jvSeXnJtv - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6da0b9d3-bfb8-4da4-b71b-b1414d9f4d62\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n - \ }\n }" + string: "{\n \"name\": \"21c37cd7-64b9-e146-b547-37473ed06639\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T18:16:58.7365839Z\",\n \"\ + endTime\": \"2023-06-14T18:20:38.3573624Z\"\n }" headers: cache-control: - no-cache content-length: - - '4291' + - '170' content-type: - application/json date: - - Wed, 26 Apr 2023 08:03:36 GMT + - Wed, 14 Jun 2023 18:21:00 GMT expires: - '-1' pragma: @@ -2557,36 +1310,78 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks get-credentials + - aks create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -n --file + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --enable-managed-identity --assign-identity --vnet-subnet-id User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVV0cGNrUlVTa2xsVVdVMmFYWnFlall4U1hRMVNVVjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1RVNUSk5SR013VDFSRk1sZG9aMUJOYWtFeFRYcEJNRTFxV1hkT2VsVTFUVlJhWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNtOTVORWh2UzNGaGFFcFVlR0l6YnpreGVsQmthV2t5VkVZMFRHazJkRWhNVkhWMVlXdG9XRzVNV1dsMmFqazJkR2d6ZWxKREt6TTRhbnByWTNwRmFqa0tXR1JVV1dSMWFDdE9VeXRvV1dodlQyNVliVFEzYlV3NWQxWnliVTQzTmtaMkswaDFhbTgwVFcxd01YRklSems1YWpCWEsyWTRNSEZaSzNaeWFXVkdMd3BxVDBzNU9XVkxVbEozVUVrdk5HSXZlVEJSYjNwbFVWaFFXVlpXZGt4elNDdHdaelpIUWtFNFNqbHhUVXRFZGpKU2VHOU1PVTF1V0VOSldtOWFiR294Q21GVFozZEZkSE52TWxsSFFXbG9heTlUYWs0M1pXaFhlSEZRWlhkUFNWTlFXQzlXYnpWbkx6RkVkakZLUkZOalZsRmtNM3BZV1VkbWRIVnBkVFZtZDNFS1RDOTVPRWROVm1SWlUwSnhVR05vUTJka1VuUnZiVmxqVVRseWJtMDRjWGhJVkdGRFdUaFZabnBaY0hkSk15czJZek5GZUZaQ2NtcHNWRVpaZVU5MGVncFJUM05GWlRGdE1FRTBRMHR1Um5aTWIydFdaRXhXWm1oTVdUUXdURGx5VEhKSmFWUlZSRkJvUjFoTlExWk5SRGd5VjFaalJ6TlNXWFpzV0ZsRU0zVkxDazVGV1RaTk9UUnVaMk5YZVdSNFIxRklObGRWU1VwdFQzRjVjbmd4Y1VoSU5tVkRMMVF3WkhwM1NtaDRkbVJLYUU5a05FUk1WWGhHTkZvdlJVVktURU1LUlZoSlMwOHljRmRtU0RGdFVHeEJXbXd4ZVdzNVpGQlpja2R5ZVZCSGIyOVpOVGw0U3pjNVoxVkRURlJMY3poMGRrRmxhbkVyU25ONGNWVldiVkJDUWdwQldYWXhSMXBrWm1GV1dHaFZaRWt6ZW1SdVFYVTVWbTFNZVdablpVaE1ibmhVTWt0TFJVbDBaREV4ZUc1SWFWTkhibWQwUVhGbVVtOUZZakl4YzBod0NubExXVzVQYUZSbGFHbDRRblpwWm5oVVNqVktkR2RQSzI0eFUwNXJUREp0WjBVNU9UQlNXRzVrZG5SNVNtdGhSV3c1T1VONVNXa3llak5yVTFGTGJ6SUtTbXcwYjFKRWExVlViQzlQUzFVMWQyWnpibVpQVkdkWmJrbDNSbXBvTDFGMk1tMHZibGRPVjJndmMwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1ExRXpNM0pOUkRsRU5VdFZRVWR2Q2xSUVMwNUdWblV5U1RGM2MwMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlEyRkRUSGRqVlhsUGRrMXVSelpET0c5T1NFNXFjRmR4WVcwS2VuZDNiMW96U2tsS2JtbG9kRFFyWlRCVk5FMVBOa05IVTB0UU1teEVUVnAyVFVGSlVIbzRObkp2Y0ZsRVRuY3JMelpQVjFCSldGRlFRakJqVVVGRFVBcDJja05YUmpkSE5YTmliMEl4ZFdkRFlVZFVXVTVvYnpkcFZFNDNibWw2U2s1dGFUQlVla1JRU0dKdU5HcEdlbWx6VkROdVVtc3plR05wZW1GM1RXUXhDbGRqU0dWTmFEaG1aRmxTTWtReVREZzFkRk1yVDBaNVFsSmphVFJ6UjNsSVEwZFlURlYzZGs1dk9HSk5Sa0ZETTNWWVJIaHFWaXRrVlROblIxbEZRV0lLZWxacE1XWk1hMUZPUlhwcGNpc3JlVzQyWmprd05ETjZjazlGZURCeVNYbDZhMHRTVVZGVFFpczJRVFE1U2tWSVRuVjVaV3R0Y0dOTmQyZHJXWFJ2YlFvMWQzSkhaMlZRVFRKYVVGUTFiRTUxYzJoV2EyWnBkMDlTVldRMk9YYzFVVU5XZVdKWmRVcFNSbU0xVWpSMVUxaGxWM2hNWkZvcmNGbDJjMHhxYjFWTkNteDNibnBrZWtWaVNXMVBUbXN6YjNOaFRXc3hZMlJEUTI5b2QweFhVM1ZFTWxFMVNHRjNhRXBhTVdGc1pUUXZZMk0xT1ZWRVdVZDBVeTlCTUhCWk5Wa0tNMGxJTVRaWGJYRmpjMDR2TDFGRE9WVkRia1ExZFVzeUszcExRMFk0TWt3NGJHbGtiVFZsUW5sS1lUZDRibTVQVTBWRE1IWkZWVVkyWTJsWVprWnNid3BPTW5CM1pEQXhOMUF3SzNwNmQwYzRSVEptTXpkVE1ubHljMUJGVFhSUFYweFBjbVkwWW5kV1VHcFRVVGhsVjNwT2VGWjRSazFDVTI1VmNGQlhWVWxTQ21aUWRuWk5ka1JXYkcweWVHdGlhMWxMYTJoa1pqWjNUbEJqTTNWcWVIVlRZMlpOZVhGM01raE9WMlEwTjNaQmJDdFpUVzlZYTNRNWVrOUhWMnBLV0djS1J6VnVXQ3NyVEVKSVZYRk1Xak52WmpnMFJtbGxhakZRT1RJMVoydG9WQzhyYUZwSE16ZEZXVGRMYUdwMmJsWjFVRWdyVlZkWVVIQm1UbEpVYzBaRE5BcElkVUZVZERSTmVrRkVjM2M0Ykc1aU5FRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zM2RxNWd5Ny01b3d6MHU2Mi5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdDIyb3Jsbgpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdDIyb3JsbgogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGw3ZGN6MjY2aHhfY2xpYWtzdGVzdDIyb3JsbgogIG5hbWU6IGNsaWFrc3Rlc3QyMm9ybG4KY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0MjJvcmxuCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGw3ZGN6MjY2aHhfY2xpYWtzdGVzdDIyb3JsbgogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlUzZHRhMHB5SzI1WldHc3JSRTlOVjFJME1YSkVha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQk1FMXFXWGRPZWxFMVRWUmFZVVozTUhsT1ZFRXdUV3BaZDA1NlZUVk5WRnBoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTnZaMmRSUjI1d1FsVjBXazFCV2xwSmVtVjNPSElLVWtsQ01rZDNkMEUzTUc0MFZsZEpSMGhOZFU5YWRWZEliMjVrTWt0Vk5qbE1NMEo1YUZsdFRIVnVaa2xJV2pGNFRYRnhkMFJPV1U1ME5YbEZNU3RXWndwc2EwdzVlSGxvTTBOc2FYSk9UMFpKY20xRU1tOWlNRFExYTAxbWJqSldOeXRCUlVWa1YzVTRSVzByV0Vkek9USlBSV0Z1UjJKbE4xWklWblUzY1VkS0NtNUdabmRhVkZOclRITlRkbVJNVGxSc2FDOUpNREJ1WTNJMmVrczVjMEZoWkZKaFpFWlhiR3RXT1hKbVQxQXlabWxQUWxwNFJta3pjM2x4UldablpVb0tSa2hhWVZOS1NXVm9Tell5YjFCM0wzSnhhVzlLU0ZKc2RuaFFNVFJuVms1a2VtWlVZaXN6Tm1admJsVXZRV1JGVWxSS2JteEZSRmxZT0V3NFoyOTFWUXBFTkVkUFprUXhPR3BoY0hOM1NqVmplSE40V0RKS1ZVTTFRblpDZG5VMFFVWjJNakZvYUdsdFNWTkhRM3AyVW5Wa1EyRjFOVXBLYlVWUFYwRnZLMVpTQ2xkTFlVbEVOakE0S3pkcGRUZDBhRVJZV1VkT2NrTlRjR05GT0hkTlIzaFZabWRUUXpKTWNURXZjSGwwWmpsbk4ycE9LelZQWm5jMU1FTkxPR3RDYVUwS1lVOUdRMGxLZEM5QmFtSlRNM3BLTDFSdmRUZEtPVmRLWnpKR1MxYzRhbnA0VEhrNGFGSk5PVGhQVkc1blRYRmtWeXR2ZWxRNGRtaEROMDlrZWpGRWRncGtkRzFXV1dVNFFXZFpUMnBSZWtOV2EwUjRNSHBqTjFOMVVUUndiMHhXZDJoWWQxbHRaa1J1Y2tGb2NFdFBXR1F6VTFGV1dqSTJRMloyU0ZkdWIwTlJDblZqTVZnd1VWZ3JZMGhvZERWeFlXaFhUbXhEUTNWRWRXNWpaMUJtTjBGaGRIVk9aVmRsUjBaVVJuRmFiMmhKZUc1ek0yZHJhVEU1VVZCbE9ERndjamtLYzJZNGRWbHlPR1k0U0haSVNGVjJNVnBpY1ZKSVdUVXpTMVZrUW5WNVNYZE1Vblk0YlZkYVJXeHNkQ3R5VkZOaGNTdDJWbGxyTHpGTFkxb3pkV0ZhU1FwYU1HbGFhMGhDVFROMGFuRjBWMFZZZGpsM01pOVJTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsRnJUamsyZWtFdlVTc0tVMnhCUW5GRmVubHFVbFppZEdsT1kweEVRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRkVUR0ZuTUZCdE5FeEJhbXBqVjBsRmQwbHVlZ3BrYWl0aGJIVmtPWFkyV1ZGTGRIVnFXVlJQVDA5alkzQlJXRzlHU21oc1REUlFMMlZIWWl0ek9YTTFNRkEyYjNkS2NGWmpVMG80Umt4R09YUnJVRXRMQ213NWRrWnFNM05JTnpOb2VrTjZkVVZHTjFWQ1dERnFiRFptVGs5S1ZsTnRkV1JaV1ZwVVMzTXZVVFU0UWs1c1FrOW9kamRhTW1NM1N6ZFdObU5oV1hRS2JIUk9TMmx5VGt4eFZYSnRlR2xzTUVnMGVVVmxRMnhqWm1KWGN6RXJSRzgwY1dJMFUxTm9hMGR1Y0dKRkwxVTVUamxVUjBoSmMyNXBVRm94YlVkTGFBcEhVMnh5WmpWaWJWRldjRkp5YWxSM05YZGxkaXRWV0N0NFpreHRhbEJoVUVWV1kzVkNlR3hzT0dSdWRYQnpaMWQxYW5OaVEyNVhPVWxHUWxkYWMxSjRDbU5ZYm5ndlpEUmpVemxCTkVGWFdFbHJibVp5TVZGS2MzcFlRekZXUzNSRWVUazVlVXBqUmpSdmJuRktLMWx5U1ZkbU9YUkJkSEpRWW1GRWFtVlhkMU1LVUM5b2QzbDRMMEY1TlVGRVpYUTNkVWt3UVdKUWJYTklVbTA0TTBaWU0xaHRWMWhZYW05WGNEZzRTMUJuVm5sNGVVRm1OR2h4U0M4eVpqVm9PVzF5TXdveFlsaEVVbk40VW5BM1QycG5SM1pFYWtvd1VGQkNValUwV1VoSVZITnlVMmxSTXpsV1VuQkdTV1o0ZG10TGRGcDFTMEkyZHpCU2NWVlBhbkJCWVVWSUNrcFhNa0p1TVdsUlZXUnBVRVI2YjBNclMwNXNOaXR6YjFWdFRFMUVia01yTDBaaFYwVjRhRFZyTm1wbU1FUkxRMngyVjB0R05YTTBjMm8xTWpaYVpIVUtiWGxTU0RaWFN5dENhVkoyUjFGckwxSXpPR3RhWmxwak1uVnpWRmQwUW0xTlprNXdNWE12VUVSb2R6Uk1OakpHWnpoVmQzbHNWVlZxT0dSWVZXeExkZ3B3ZUVOT1VWVnJWSEZhVlVOQ1VHNDNOV2xNWjB3ck1GZzRlRk5KT0RsWGFXdGtXVk5tYURCS2RpdHpSRmhaY1ZKclEzUlBZemhyT1hsVldrTjBhazU2Q2psQmFreExXRmhCY1U5V2VVTk1UakZRZDNCWFIxZEpQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJjVWxKUlVKd05sRldURmRVUVVkWFUwMHpjMUJMTUZOQlpHaHpUVUZQT1VvclJsWnBRbWg2VEdwdFlteG9Oa296Q21ScGJFOTJVemwzWTI5WFNtazNjRE41UWpKa1kxUkxjWE5CZWxkRVltVmphRTVtYkZsS1drTXZZMk52Wkhkd1dYRjZWR2hUU3pWbk9YRkhPVTlQV2tRS1NEVTViR1V2WjBKQ1NGWnlka0pLZG14NGNsQmthbWhIY0hodE0zVXhVakZpZFRab2FWcDRXRGhIVlRCd1F6ZEZjak5UZWxVMVdXWjVUazVLTTBzcmN3cDVkbUpCUjI1VlYyNVNWbkJhUm1aaE0zcHFPVzQwYW1kWFkxSlpkRGROY1doSU5FaHBVbEl5VjJ0cFUwaHZVM1YwY1VRNFVEWTJiM0ZEVWpCYVlqaFVDamxsU1VaVVdHTXpNREl2ZEN0dU5rb3hVSGRJVWtWVmVWbzFVa0V5Umk5REwwbExUR3hCSzBKcWJuYzVaa2t5Y1dKTlEyVllUV0pOVmpscFZrRjFVV0lLZDJJM2RVRkNZamwwV1ZsWmNHbEZhR2R6TnpCaWJsRnRjblZUVTFwb1JHeG5TMUJzVlZacGJXbEJLM1JRVUhVMGNuVTNXVkV4TWtKcVlYZHJjVmhDVUFwTlJFSnpWa2cwUldkMGFUWjBaalpqY2xndldVODBlbVoxVkc0NFQyUkJhWFpLUVZscVIycG9VV2xEWW1aM1NUSXdkRGg1WmpBMlRIVjVabFpwV1U1b0NsTnNka2s0T0ZNNGRrbFZWRkJtUkdzMU5FUkxibFoyY1Uwd0wwdzBVWFY2Ym1NNVVUY3pZbHBzVjBoMlFVbEhSRzh3VFhkc1drRTRaRTB6VHpCeWEwOEtTMkZETVdOSlZqaEhTbTUzTlRaM1NXRlRhbXd6WkRCclJsZGtkV2R1TjNneGNEWkJhMHh1VGxZNVJVWXZia0kwWW1WaGJXOVdhbHBSWjNKbk4zQXpTUXBFTXl0M1IzSmlhbGhzYm1ob1ZYaGhiV0ZKVTAxYU4wNDBTa2wwWmxWRU0zWk9ZV0V2WWtndlRHMUxMMGd2UWpkNGVERk1PVmRYTm10U01rOWtlV3hJQ2xGaWMybE5RekJpTDBwc2JWSktXbUptY1RBd2JYRjJjakZYU2xBNVUyNUhaRGR0YlZOSFpFbHRXa0ozVkU0M1dUWnlWbWhHTnk5alRuWXdRMEYzUlVFS1FWRkxRMEZuUWt0aGJFSTBNQ3RIVGxwNmNIQXZTRVZoVW5kbmJEVllVMDV6T1dkVVQxcHRSRVE0U0dkVVUzTm1NR2hWWmxaM1NrZHliWFJXV2xCUVZncDJNVGxGTURZMEswMDRXSEI2WVZKUVduWjJTWGgzVG1GTWVsaGxPVGQ2VWpobVprOTVhMVJ4U25OdmRXNU5UelZhZVdZelZITnFjREpEZVhKSFNsUnhDbU5UYVVsMkswOUVObHBWWnpocE1WSmphWGRRYTBoaWFqZEpTblZGVW5STk1FbFVNREZMY1V4cFdrRkJTVGxaV21wRFYyTlVaME5VUTFoR1FYWmxRMnNLYzIxWUszRkZXRU5QY0hKWGNqQXpWV3h5T1ZCTlRrcG1MMGxCTjJFd2RuaENkMlIzWW5OMmVGaDRja2Q2VFRCNWNFSmhOMDFETUZOamVWSkJWalYyVWdwNGFWcHJZbmxzVkZrMVIxbzVjVEJTZWxGcWRVSlRlRWs0ZVZoTk1YbFJlREZ1UVZrMWVqaFRSU3RhWW5SdVpHSm1RWGRwV1V4YVdsVTBXWEpvTDNVekNrSkhZM2xTYjA1VlJIa3diVGhwYURkS0wyNHpSbEpOYkZGcWRuTm1lbFl2V2tkUWFtMDRNM1ZZYkdsTlVIZzBValphVlVGNVRHbzFURzV4YlhCS09GRUtibkpwZVRaWmVFeGFkMWR2SzB0QlkyRTVNMFUxWTFJNVFrcGxSazlJVkZreVdETnlSVUlyY0VaWlUxQmhOM2QxUlhwbVVWSkdTVTR4WnpsWE9UbFpOZ3ByT0ZnM2FXeExhRmczYjBWUVduTXZTRVo2T0V0M01uaHljVnBOV1hZNU1IbHRXbXRXWkcwMFZsVjBaa1ZSVGtSelVtbEJWMjFMT0ROamRFRnJNRXhWQ21wTU5tbE5TWEJXY2pWa05pOW5kalJLZVVWcVJGYzBOMVpQYWpOaWEyazJSWFZsV0V0aGVUaFpXVVpWYzA5a05Ga3JlRTlLWmxacFEzUm1PVTF3Vlc0S00xTk5jVXBsYUhOSFZqbEpVWHBYUWtSTVdrSTBXRTVMU1VaVlppOUxXVGhRTW10emNFaE1SM1JWZDBwVVQyUnFOSE5zYXpCRE5sQXdZakZMYzJSa1pncDZkRGxLZWtzckx5OUZZVzAxWkVKNmJUTnFNV3RSYkhsRWJrOXVXaTh5U2toWFVXZzJUbUpHTW1zMmJ6UmpWbGhUVVV0RFFWRkZRWHA2UjNKTVRqVlJDa3QxYzFkek0wSlNTbXRFUjJRelQydHFSMjFMWXpaVVFUQnZNMmxsUWpCaVMwdzRNRXBOUzFKRVptODFURXd5S3pCS1MzWm9jazlUVkZWTmVsRXljVVlLZUZkeFpEbHZSVEJzV2tWRlJWbzVMME5CSzNBd2EzbENXaTh3ZVdWRGRYQjFOMUpZWkZkWGJuQXdlbU5TUmtaSlRuRnRZMlJYUkc1NU5XMHpXVXhCVXdwcWVsSjJlRTFyTUZScGVWcFBhM0ZOTjFWUk5qQjJVV2xyV21GcE5IUkpSM0ExU1hJMUwwOXJlaXRMWkVwbVpIUk9SVWcxUTJaMFFXNHljemxpYlRWSkNsVndaVFJCZEZkUU1XaEhaM1pXZFhGTFMyWm9ZbmxHVEV0WE1VNUdkbVZwYlZOdVozTndNSFZ0SzJJeVJuUkxWbFZGZEdOR1RWZExPV1IzUjJKc1VVa0tUVlZzYzFOVU5XUnViR1JVTUdaVmVrbzRZbGh0WjBrME5EWm1OalJrYWtoSlVXVXJhVlZxVXpKaVF6aHVkRVZUYWpneFpVZE9SMU5LVURBNVpFcExZUW8wUzNOclFuZ3pjVU5hZWt4eWQwdERRVkZGUVRCRVRqVktZM0ZHU25SWllVeDZWMHRaUVM4eE9YZDVjbkprT1UxSWVsbFpPVkJRV1hvcmJUSmxPSEV5Q25ObGMwMXlVREJQUWsxVVJGRkRaMGRDV1RCRVMyMW1NMkU0YlN0cGFsTkZXbXcyVVVFMGVIWkdNamRJWXpOWlprUjRUV3QxWTI4MFpucGtUV000U2pZS1NESjZjblY2ZUVRdmRERmlNRk00U3psRmJYaDBNelJxZVRVeVJISldOWEF4U1ZsdmFGZFBiVEJrTDB0aWNGaFlVRVJoTDNOemVtcHhibGxsTW0xNWNRcHhOa054UXpabGVtOW9hbXh3VjFOTk1VcE9Za3g0YW5wRUwwbEJNMkZVZGtGeVZEVllTRmh6WkZOcGVFeHRkWHBpYjJWbmVHaEdaV0pOZFRKT01tVk1DbTVUT0UxbllqZFFTbVZZZFZONWNqVnlXSEZGUlhSeE9XNXlXakJRU1ZkUWJWUTBPR3N5VDFkR1UyUlBaMEZsZEUxUk0yZzBOV05uU2tndlIwbGFObFFLV0ZsUlRUWndhWG95TXpodmRGbHpkREZQTm1oUWRXYzJNVFpvY1RSek5EQnZjbXhCYjNoSE0wVjNTME5CVVVWQmIzbEliMDVLZFZaWmVsWldNbXhLUlFwcmJXNU9NbG80YW00MmJ6VmhTRkF2Ym1Obk5ERXpiVlJQVEVoVGVrWTJhemwxZUdOMEt6RjBialp5WlhGTFFXRlJUbkkwVFdONFpFcDFTMkpJVFhJckNreEJWRkoyTURWc1NtMVBkWGRtVjJGeVpGZGtUbmxEY0hONlFqWTJLMUIwTjB4MVNHTm5URTVoVEhsRFp6WnBXVEpMVm1WNlRFaFZObmQyVDA1S1NqSUtja1phVWtSeFVrUTRWWGRZVWt0RlZERnhNVlE0YlV0TEszTlZURGROVkZseWVGVjBlR2RpV2pWS2RFNURXamRhWTNGMGN6UjBXRklyTjFkYVNFTkpjQW8zWkVwVVZFMVJkbHBZVGtrck9HRnhPWGxOYmpONk1UWjFSREZSZGxaRmEzTllkRmh3ZDBOSGNqUkhiVXh1VTJGNFNteEpUblpZVTNaWWRXZ3hjMnhVQ25wTFpsWlNlWEJZTjB0dFUyUTFMMjlUZEdGdWIyTnhZMlpzVlhGdU9IcEhkSElyUVhjd2NUVTBjRGd2ZUhseE5tUnZWWFJNWlhWQlNtZFRXbWxWUkRBS1ZrUXdkalJSUzBOQlVVSkpabFZPTWpsMldUVlBWalZSYUZwSGVVNUtlSE00WTNCelpGVjVjSEZWYjNwTWVIVlVLMFZ0UXk5SFpIcDBkVlJ2TjJkeFRncGxibmxKZGl0aGJ6RkNiMEZFT0dKRWFuSkNObkZwU2xoRGFVZFhUM0pWVEUxYVZHTkVTWEIyTUhwb09GQXpOVUZRVGpaMmFEQjZRakpGYVZSSWFqWkhDbHBGWm5SdmVsWnlURXRXYkhZNVRubDBNWEkzV2premRFVjJSRlV3U1dSeGJEQkxRMFZyVjI5UU1TdHlVREE0WkUxS1l6VmpXa0pUZUZaUGRsUjVjSEVLUXpoVldrOTBUVlo1UjBJNVJ6TkRNVmx2YzA5dlRHaGxPWFZtUkZjMFQwTnVla3BvWlZSdk1rSTFOMmRzTTJWTE5XSnhRblU1YlU5V2NURkRSakE1UlFwWlRGRkNSU3QwZFdwVVQyazFUMjlWWTIwMGVVUkZZV1JGYlVKQk5sQkdLMVl2YzNFNVNVWkhhbEpFVkVSMlJYZENRbFJXTmpoS1psVjJVekJWV1hBNUNuQTVOV2x3ZUhwRlFVaHRMM294WkRsamNsRlZWamQwV0RGTGR5dHRjRXBzUVc5SlFrRklSV1UzYVZOcE5ERm5NWG96ZUZGa1kyazRXU3RrWjJGMVkxY0tUVk0yVjBaME0wRmpVMFZvT1VsSFNsQlZSamxuYW1Nek1HNW5iRk5aWVRodWFqaEVTbmgyWVUxclpXcFFlbXM0V0hGbFUzcEVVa2h1YUZKMk9WUnhZZ3B2U21OSFQzaDVXWE5VWjJ0eFFucDFaRkEwTjBReFIzbzNUMGRuTHpVeGJsVlhSbHBWUlVSeVExcDZZbTh4Vm5wSlJVMDJOVnBaV214cE5GUldPR2xrQ2xOdGVVMXNNV2g0ZFVnMmN5dHJObmhCVkRkb1RubFpURU5rVkRFeVYwNWFNVnB0TVVaUE1tVnNaSG94YlhCcGRXTk9ka2RTUzNjdmFEY3piMVZhVURrS1QzSlZNbVZsZW1STVJVOTBNV05HU1UxeVozRTRjVGhVUVZkcVdYWldLMmRZUVhSSmJtdGtTa1J3Y2xaYVEzRTFZMW93ZEhWM0t6RnZSa00zYlhZNFRBb3pWbFpFYzNWbVdDOTVNbU5uU1ZZcmRsRmFjVGNyWXpoWlRqRnNUemhVU0hWR2JIVjNVVk5rVlVsRWMyNTBOazQzUWtadE9FcFlNSEJhT0QwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBwM2lxeGk2ZXl0bTYycmVsZm4zMGp6NnVrMG9lcnI2YnlleTl0OHlyNmtmbjBhNG5hY3plcDFyMjdvcWgycWljZ3NhMG94Y2QxamhleTRhMzNscTRycDIzc2ZqbWx3MDh6ZXZwcjZyeHc3dGo2dzdjd3lxb2k5bWxtZHdjb2owbAo=\"\n - \ }\n ]\n }" - headers: - cache-control: - - no-cache - content-length: - - '13084' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 08:03:36 GMT + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-z27850gd.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-z27850gd.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.Network/publicIPAddresses/a05165fd-0cd2-403a-ab49-6f2f07f48a68\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + principalId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4617' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 18:21:01 GMT expires: - '-1' pragma: @@ -2601,8 +1396,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -2614,32 +1407,80 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks get-credentials + - aks list Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -n -f + - -g User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVV0cGNrUlVTa2xsVVdVMmFYWnFlall4U1hRMVNVVjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1RVNUSk5SR013VDFSRk1sZG9aMUJOYWtFeFRYcEJNRTFxV1hkT2VsVTFUVlJhWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNtOTVORWh2UzNGaGFFcFVlR0l6YnpreGVsQmthV2t5VkVZMFRHazJkRWhNVkhWMVlXdG9XRzVNV1dsMmFqazJkR2d6ZWxKREt6TTRhbnByWTNwRmFqa0tXR1JVV1dSMWFDdE9VeXRvV1dodlQyNVliVFEzYlV3NWQxWnliVTQzTmtaMkswaDFhbTgwVFcxd01YRklSems1YWpCWEsyWTRNSEZaSzNaeWFXVkdMd3BxVDBzNU9XVkxVbEozVUVrdk5HSXZlVEJSYjNwbFVWaFFXVlpXZGt4elNDdHdaelpIUWtFNFNqbHhUVXRFZGpKU2VHOU1PVTF1V0VOSldtOWFiR294Q21GVFozZEZkSE52TWxsSFFXbG9heTlUYWs0M1pXaFhlSEZRWlhkUFNWTlFXQzlXYnpWbkx6RkVkakZLUkZOalZsRmtNM3BZV1VkbWRIVnBkVFZtZDNFS1RDOTVPRWROVm1SWlUwSnhVR05vUTJka1VuUnZiVmxqVVRseWJtMDRjWGhJVkdGRFdUaFZabnBaY0hkSk15czJZek5GZUZaQ2NtcHNWRVpaZVU5MGVncFJUM05GWlRGdE1FRTBRMHR1Um5aTWIydFdaRXhXWm1oTVdUUXdURGx5VEhKSmFWUlZSRkJvUjFoTlExWk5SRGd5VjFaalJ6TlNXWFpzV0ZsRU0zVkxDazVGV1RaTk9UUnVaMk5YZVdSNFIxRklObGRWU1VwdFQzRjVjbmd4Y1VoSU5tVkRMMVF3WkhwM1NtaDRkbVJLYUU5a05FUk1WWGhHTkZvdlJVVktURU1LUlZoSlMwOHljRmRtU0RGdFVHeEJXbXd4ZVdzNVpGQlpja2R5ZVZCSGIyOVpOVGw0U3pjNVoxVkRURlJMY3poMGRrRmxhbkVyU25ONGNWVldiVkJDUWdwQldYWXhSMXBrWm1GV1dHaFZaRWt6ZW1SdVFYVTVWbTFNZVdablpVaE1ibmhVTWt0TFJVbDBaREV4ZUc1SWFWTkhibWQwUVhGbVVtOUZZakl4YzBod0NubExXVzVQYUZSbGFHbDRRblpwWm5oVVNqVktkR2RQSzI0eFUwNXJUREp0WjBVNU9UQlNXRzVrZG5SNVNtdGhSV3c1T1VONVNXa3llak5yVTFGTGJ6SUtTbXcwYjFKRWExVlViQzlQUzFVMWQyWnpibVpQVkdkWmJrbDNSbXBvTDFGMk1tMHZibGRPVjJndmMwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1ExRXpNM0pOUkRsRU5VdFZRVWR2Q2xSUVMwNUdWblV5U1RGM2MwMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlEyRkRUSGRqVlhsUGRrMXVSelpET0c5T1NFNXFjRmR4WVcwS2VuZDNiMW96U2tsS2JtbG9kRFFyWlRCVk5FMVBOa05IVTB0UU1teEVUVnAyVFVGSlVIbzRObkp2Y0ZsRVRuY3JMelpQVjFCSldGRlFRakJqVVVGRFVBcDJja05YUmpkSE5YTmliMEl4ZFdkRFlVZFVXVTVvYnpkcFZFNDNibWw2U2s1dGFUQlVla1JRU0dKdU5HcEdlbWx6VkROdVVtc3plR05wZW1GM1RXUXhDbGRqU0dWTmFEaG1aRmxTTWtReVREZzFkRk1yVDBaNVFsSmphVFJ6UjNsSVEwZFlURlYzZGs1dk9HSk5Sa0ZETTNWWVJIaHFWaXRrVlROblIxbEZRV0lLZWxacE1XWk1hMUZPUlhwcGNpc3JlVzQyWmprd05ETjZjazlGZURCeVNYbDZhMHRTVVZGVFFpczJRVFE1U2tWSVRuVjVaV3R0Y0dOTmQyZHJXWFJ2YlFvMWQzSkhaMlZRVFRKYVVGUTFiRTUxYzJoV2EyWnBkMDlTVldRMk9YYzFVVU5XZVdKWmRVcFNSbU0xVWpSMVUxaGxWM2hNWkZvcmNGbDJjMHhxYjFWTkNteDNibnBrZWtWaVNXMVBUbXN6YjNOaFRXc3hZMlJEUTI5b2QweFhVM1ZFTWxFMVNHRjNhRXBhTVdGc1pUUXZZMk0xT1ZWRVdVZDBVeTlCTUhCWk5Wa0tNMGxJTVRaWGJYRmpjMDR2TDFGRE9WVkRia1ExZFVzeUszcExRMFk0TWt3NGJHbGtiVFZsUW5sS1lUZDRibTVQVTBWRE1IWkZWVVkyWTJsWVprWnNid3BPTW5CM1pEQXhOMUF3SzNwNmQwYzRSVEptTXpkVE1ubHljMUJGVFhSUFYweFBjbVkwWW5kV1VHcFRVVGhsVjNwT2VGWjRSazFDVTI1VmNGQlhWVWxTQ21aUWRuWk5ka1JXYkcweWVHdGlhMWxMYTJoa1pqWjNUbEJqTTNWcWVIVlRZMlpOZVhGM01raE9WMlEwTjNaQmJDdFpUVzlZYTNRNWVrOUhWMnBLV0djS1J6VnVXQ3NyVEVKSVZYRk1Xak52WmpnMFJtbGxhakZRT1RJMVoydG9WQzhyYUZwSE16ZEZXVGRMYUdwMmJsWjFVRWdyVlZkWVVIQm1UbEpVYzBaRE5BcElkVUZVZERSTmVrRkVjM2M0Ykc1aU5FRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zM2RxNWd5Ny01b3d6MHU2Mi5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdDIyb3Jsbgpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdDIyb3JsbgogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGw3ZGN6MjY2aHhfY2xpYWtzdGVzdDIyb3JsbgogIG5hbWU6IGNsaWFrc3Rlc3QyMm9ybG4KY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0MjJvcmxuCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGw3ZGN6MjY2aHhfY2xpYWtzdGVzdDIyb3JsbgogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlUzZHRhMHB5SzI1WldHc3JSRTlOVjFJME1YSkVha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQk1FMXFXWGRPZWxFMVRWUmFZVVozTUhsT1ZFRXdUV3BaZDA1NlZUVk5WRnBoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTnZaMmRSUjI1d1FsVjBXazFCV2xwSmVtVjNPSElLVWtsQ01rZDNkMEUzTUc0MFZsZEpSMGhOZFU5YWRWZEliMjVrTWt0Vk5qbE1NMEo1YUZsdFRIVnVaa2xJV2pGNFRYRnhkMFJPV1U1ME5YbEZNU3RXWndwc2EwdzVlSGxvTTBOc2FYSk9UMFpKY20xRU1tOWlNRFExYTAxbWJqSldOeXRCUlVWa1YzVTRSVzByV0Vkek9USlBSV0Z1UjJKbE4xWklWblUzY1VkS0NtNUdabmRhVkZOclRITlRkbVJNVGxSc2FDOUpNREJ1WTNJMmVrczVjMEZoWkZKaFpFWlhiR3RXT1hKbVQxQXlabWxQUWxwNFJta3pjM2x4UldablpVb0tSa2hhWVZOS1NXVm9Tell5YjFCM0wzSnhhVzlLU0ZKc2RuaFFNVFJuVms1a2VtWlVZaXN6Tm1admJsVXZRV1JGVWxSS2JteEZSRmxZT0V3NFoyOTFWUXBFTkVkUFprUXhPR3BoY0hOM1NqVmplSE40V0RKS1ZVTTFRblpDZG5VMFFVWjJNakZvYUdsdFNWTkhRM3AyVW5Wa1EyRjFOVXBLYlVWUFYwRnZLMVpTQ2xkTFlVbEVOakE0S3pkcGRUZDBhRVJZV1VkT2NrTlRjR05GT0hkTlIzaFZabWRUUXpKTWNURXZjSGwwWmpsbk4ycE9LelZQWm5jMU1FTkxPR3RDYVUwS1lVOUdRMGxLZEM5QmFtSlRNM3BLTDFSdmRUZEtPVmRLWnpKR1MxYzRhbnA0VEhrNGFGSk5PVGhQVkc1blRYRmtWeXR2ZWxRNGRtaEROMDlrZWpGRWRncGtkRzFXV1dVNFFXZFpUMnBSZWtOV2EwUjRNSHBqTjFOMVVUUndiMHhXZDJoWWQxbHRaa1J1Y2tGb2NFdFBXR1F6VTFGV1dqSTJRMloyU0ZkdWIwTlJDblZqTVZnd1VWZ3JZMGhvZERWeFlXaFhUbXhEUTNWRWRXNWpaMUJtTjBGaGRIVk9aVmRsUjBaVVJuRmFiMmhKZUc1ek0yZHJhVEU1VVZCbE9ERndjamtLYzJZNGRWbHlPR1k0U0haSVNGVjJNVnBpY1ZKSVdUVXpTMVZrUW5WNVNYZE1Vblk0YlZkYVJXeHNkQ3R5VkZOaGNTdDJWbGxyTHpGTFkxb3pkV0ZhU1FwYU1HbGFhMGhDVFROMGFuRjBWMFZZZGpsM01pOVJTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsRnJUamsyZWtFdlVTc0tVMnhCUW5GRmVubHFVbFppZEdsT1kweEVRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRkVUR0ZuTUZCdE5FeEJhbXBqVjBsRmQwbHVlZ3BrYWl0aGJIVmtPWFkyV1ZGTGRIVnFXVlJQVDA5alkzQlJXRzlHU21oc1REUlFMMlZIWWl0ek9YTTFNRkEyYjNkS2NGWmpVMG80Umt4R09YUnJVRXRMQ213NWRrWnFNM05JTnpOb2VrTjZkVVZHTjFWQ1dERnFiRFptVGs5S1ZsTnRkV1JaV1ZwVVMzTXZVVFU0UWs1c1FrOW9kamRhTW1NM1N6ZFdObU5oV1hRS2JIUk9TMmx5VGt4eFZYSnRlR2xzTUVnMGVVVmxRMnhqWm1KWGN6RXJSRzgwY1dJMFUxTm9hMGR1Y0dKRkwxVTVUamxVUjBoSmMyNXBVRm94YlVkTGFBcEhVMnh5WmpWaWJWRldjRkp5YWxSM05YZGxkaXRWV0N0NFpreHRhbEJoVUVWV1kzVkNlR3hzT0dSdWRYQnpaMWQxYW5OaVEyNVhPVWxHUWxkYWMxSjRDbU5ZYm5ndlpEUmpVemxCTkVGWFdFbHJibVp5TVZGS2MzcFlRekZXUzNSRWVUazVlVXBqUmpSdmJuRktLMWx5U1ZkbU9YUkJkSEpRWW1GRWFtVlhkMU1LVUM5b2QzbDRMMEY1TlVGRVpYUTNkVWt3UVdKUWJYTklVbTA0TTBaWU0xaHRWMWhZYW05WGNEZzRTMUJuVm5sNGVVRm1OR2h4U0M4eVpqVm9PVzF5TXdveFlsaEVVbk40VW5BM1QycG5SM1pFYWtvd1VGQkNValUwV1VoSVZITnlVMmxSTXpsV1VuQkdTV1o0ZG10TGRGcDFTMEkyZHpCU2NWVlBhbkJCWVVWSUNrcFhNa0p1TVdsUlZXUnBVRVI2YjBNclMwNXNOaXR6YjFWdFRFMUVia01yTDBaaFYwVjRhRFZyTm1wbU1FUkxRMngyVjB0R05YTTBjMm8xTWpaYVpIVUtiWGxTU0RaWFN5dENhVkoyUjFGckwxSXpPR3RhWmxwak1uVnpWRmQwUW0xTlprNXdNWE12VUVSb2R6Uk1OakpHWnpoVmQzbHNWVlZxT0dSWVZXeExkZ3B3ZUVOT1VWVnJWSEZhVlVOQ1VHNDNOV2xNWjB3ck1GZzRlRk5KT0RsWGFXdGtXVk5tYURCS2RpdHpSRmhaY1ZKclEzUlBZemhyT1hsVldrTjBhazU2Q2psQmFreExXRmhCY1U5V2VVTk1UakZRZDNCWFIxZEpQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJjVWxKUlVKd05sRldURmRVUVVkWFUwMHpjMUJMTUZOQlpHaHpUVUZQT1VvclJsWnBRbWg2VEdwdFlteG9Oa296Q21ScGJFOTJVemwzWTI5WFNtazNjRE41UWpKa1kxUkxjWE5CZWxkRVltVmphRTVtYkZsS1drTXZZMk52Wkhkd1dYRjZWR2hUU3pWbk9YRkhPVTlQV2tRS1NEVTViR1V2WjBKQ1NGWnlka0pLZG14NGNsQmthbWhIY0hodE0zVXhVakZpZFRab2FWcDRXRGhIVlRCd1F6ZEZjak5UZWxVMVdXWjVUazVLTTBzcmN3cDVkbUpCUjI1VlYyNVNWbkJhUm1aaE0zcHFPVzQwYW1kWFkxSlpkRGROY1doSU5FaHBVbEl5VjJ0cFUwaHZVM1YwY1VRNFVEWTJiM0ZEVWpCYVlqaFVDamxsU1VaVVdHTXpNREl2ZEN0dU5rb3hVSGRJVWtWVmVWbzFVa0V5Umk5REwwbExUR3hCSzBKcWJuYzVaa2t5Y1dKTlEyVllUV0pOVmpscFZrRjFVV0lLZDJJM2RVRkNZamwwV1ZsWmNHbEZhR2R6TnpCaWJsRnRjblZUVTFwb1JHeG5TMUJzVlZacGJXbEJLM1JRVUhVMGNuVTNXVkV4TWtKcVlYZHJjVmhDVUFwTlJFSnpWa2cwUldkMGFUWjBaalpqY2xndldVODBlbVoxVkc0NFQyUkJhWFpLUVZscVIycG9VV2xEWW1aM1NUSXdkRGg1WmpBMlRIVjVabFpwV1U1b0NsTnNka2s0T0ZNNGRrbFZWRkJtUkdzMU5FUkxibFoyY1Uwd0wwdzBVWFY2Ym1NNVVUY3pZbHBzVjBoMlFVbEhSRzh3VFhkc1drRTRaRTB6VHpCeWEwOEtTMkZETVdOSlZqaEhTbTUzTlRaM1NXRlRhbXd6WkRCclJsZGtkV2R1TjNneGNEWkJhMHh1VGxZNVJVWXZia0kwWW1WaGJXOVdhbHBSWjNKbk4zQXpTUXBFTXl0M1IzSmlhbGhzYm1ob1ZYaGhiV0ZKVTAxYU4wNDBTa2wwWmxWRU0zWk9ZV0V2WWtndlRHMUxMMGd2UWpkNGVERk1PVmRYTm10U01rOWtlV3hJQ2xGaWMybE5RekJpTDBwc2JWSktXbUptY1RBd2JYRjJjakZYU2xBNVUyNUhaRGR0YlZOSFpFbHRXa0ozVkU0M1dUWnlWbWhHTnk5alRuWXdRMEYzUlVFS1FWRkxRMEZuUWt0aGJFSTBNQ3RIVGxwNmNIQXZTRVZoVW5kbmJEVllVMDV6T1dkVVQxcHRSRVE0U0dkVVUzTm1NR2hWWmxaM1NrZHliWFJXV2xCUVZncDJNVGxGTURZMEswMDRXSEI2WVZKUVduWjJTWGgzVG1GTWVsaGxPVGQ2VWpobVprOTVhMVJ4U25OdmRXNU5UelZhZVdZelZITnFjREpEZVhKSFNsUnhDbU5UYVVsMkswOUVObHBWWnpocE1WSmphWGRRYTBoaWFqZEpTblZGVW5STk1FbFVNREZMY1V4cFdrRkJTVGxaV21wRFYyTlVaME5VUTFoR1FYWmxRMnNLYzIxWUszRkZXRU5QY0hKWGNqQXpWV3h5T1ZCTlRrcG1MMGxCTjJFd2RuaENkMlIzWW5OMmVGaDRja2Q2VFRCNWNFSmhOMDFETUZOamVWSkJWalYyVWdwNGFWcHJZbmxzVkZrMVIxbzVjVEJTZWxGcWRVSlRlRWs0ZVZoTk1YbFJlREZ1UVZrMWVqaFRSU3RhWW5SdVpHSm1RWGRwV1V4YVdsVTBXWEpvTDNVekNrSkhZM2xTYjA1VlJIa3diVGhwYURkS0wyNHpSbEpOYkZGcWRuTm1lbFl2V2tkUWFtMDRNM1ZZYkdsTlVIZzBValphVlVGNVRHbzFURzV4YlhCS09GRUtibkpwZVRaWmVFeGFkMWR2SzB0QlkyRTVNMFUxWTFJNVFrcGxSazlJVkZreVdETnlSVUlyY0VaWlUxQmhOM2QxUlhwbVVWSkdTVTR4WnpsWE9UbFpOZ3ByT0ZnM2FXeExhRmczYjBWUVduTXZTRVo2T0V0M01uaHljVnBOV1hZNU1IbHRXbXRXWkcwMFZsVjBaa1ZSVGtSelVtbEJWMjFMT0ROamRFRnJNRXhWQ21wTU5tbE5TWEJXY2pWa05pOW5kalJLZVVWcVJGYzBOMVpQYWpOaWEyazJSWFZsV0V0aGVUaFpXVVpWYzA5a05Ga3JlRTlLWmxacFEzUm1PVTF3Vlc0S00xTk5jVXBsYUhOSFZqbEpVWHBYUWtSTVdrSTBXRTVMU1VaVlppOUxXVGhRTW10emNFaE1SM1JWZDBwVVQyUnFOSE5zYXpCRE5sQXdZakZMYzJSa1pncDZkRGxLZWtzckx5OUZZVzAxWkVKNmJUTnFNV3RSYkhsRWJrOXVXaTh5U2toWFVXZzJUbUpHTW1zMmJ6UmpWbGhUVVV0RFFWRkZRWHA2UjNKTVRqVlJDa3QxYzFkek0wSlNTbXRFUjJRelQydHFSMjFMWXpaVVFUQnZNMmxsUWpCaVMwdzRNRXBOUzFKRVptODFURXd5S3pCS1MzWm9jazlUVkZWTmVsRXljVVlLZUZkeFpEbHZSVEJzV2tWRlJWbzVMME5CSzNBd2EzbENXaTh3ZVdWRGRYQjFOMUpZWkZkWGJuQXdlbU5TUmtaSlRuRnRZMlJYUkc1NU5XMHpXVXhCVXdwcWVsSjJlRTFyTUZScGVWcFBhM0ZOTjFWUk5qQjJVV2xyV21GcE5IUkpSM0ExU1hJMUwwOXJlaXRMWkVwbVpIUk9SVWcxUTJaMFFXNHljemxpYlRWSkNsVndaVFJCZEZkUU1XaEhaM1pXZFhGTFMyWm9ZbmxHVEV0WE1VNUdkbVZwYlZOdVozTndNSFZ0SzJJeVJuUkxWbFZGZEdOR1RWZExPV1IzUjJKc1VVa0tUVlZzYzFOVU5XUnViR1JVTUdaVmVrbzRZbGh0WjBrME5EWm1OalJrYWtoSlVXVXJhVlZxVXpKaVF6aHVkRVZUYWpneFpVZE9SMU5LVURBNVpFcExZUW8wUzNOclFuZ3pjVU5hZWt4eWQwdERRVkZGUVRCRVRqVktZM0ZHU25SWllVeDZWMHRaUVM4eE9YZDVjbkprT1UxSWVsbFpPVkJRV1hvcmJUSmxPSEV5Q25ObGMwMXlVREJQUWsxVVJGRkRaMGRDV1RCRVMyMW1NMkU0YlN0cGFsTkZXbXcyVVVFMGVIWkdNamRJWXpOWlprUjRUV3QxWTI4MFpucGtUV000U2pZS1NESjZjblY2ZUVRdmRERmlNRk00U3psRmJYaDBNelJxZVRVeVJISldOWEF4U1ZsdmFGZFBiVEJrTDB0aWNGaFlVRVJoTDNOemVtcHhibGxsTW0xNWNRcHhOa054UXpabGVtOW9hbXh3VjFOTk1VcE9Za3g0YW5wRUwwbEJNMkZVZGtGeVZEVllTRmh6WkZOcGVFeHRkWHBpYjJWbmVHaEdaV0pOZFRKT01tVk1DbTVUT0UxbllqZFFTbVZZZFZONWNqVnlXSEZGUlhSeE9XNXlXakJRU1ZkUWJWUTBPR3N5VDFkR1UyUlBaMEZsZEUxUk0yZzBOV05uU2tndlIwbGFObFFLV0ZsUlRUWndhWG95TXpodmRGbHpkREZQTm1oUWRXYzJNVFpvY1RSek5EQnZjbXhCYjNoSE0wVjNTME5CVVVWQmIzbEliMDVLZFZaWmVsWldNbXhLUlFwcmJXNU9NbG80YW00MmJ6VmhTRkF2Ym1Obk5ERXpiVlJQVEVoVGVrWTJhemwxZUdOMEt6RjBialp5WlhGTFFXRlJUbkkwVFdONFpFcDFTMkpJVFhJckNreEJWRkoyTURWc1NtMVBkWGRtVjJGeVpGZGtUbmxEY0hONlFqWTJLMUIwTjB4MVNHTm5URTVoVEhsRFp6WnBXVEpMVm1WNlRFaFZObmQyVDA1S1NqSUtja1phVWtSeFVrUTRWWGRZVWt0RlZERnhNVlE0YlV0TEszTlZURGROVkZseWVGVjBlR2RpV2pWS2RFNURXamRhWTNGMGN6UjBXRklyTjFkYVNFTkpjQW8zWkVwVVZFMVJkbHBZVGtrck9HRnhPWGxOYmpONk1UWjFSREZSZGxaRmEzTllkRmh3ZDBOSGNqUkhiVXh1VTJGNFNteEpUblpZVTNaWWRXZ3hjMnhVQ25wTFpsWlNlWEJZTjB0dFUyUTFMMjlUZEdGdWIyTnhZMlpzVlhGdU9IcEhkSElyUVhjd2NUVTBjRGd2ZUhseE5tUnZWWFJNWlhWQlNtZFRXbWxWUkRBS1ZrUXdkalJSUzBOQlVVSkpabFZPTWpsMldUVlBWalZSYUZwSGVVNUtlSE00WTNCelpGVjVjSEZWYjNwTWVIVlVLMFZ0UXk5SFpIcDBkVlJ2TjJkeFRncGxibmxKZGl0aGJ6RkNiMEZFT0dKRWFuSkNObkZwU2xoRGFVZFhUM0pWVEUxYVZHTkVTWEIyTUhwb09GQXpOVUZRVGpaMmFEQjZRakpGYVZSSWFqWkhDbHBGWm5SdmVsWnlURXRXYkhZNVRubDBNWEkzV2premRFVjJSRlV3U1dSeGJEQkxRMFZyVjI5UU1TdHlVREE0WkUxS1l6VmpXa0pUZUZaUGRsUjVjSEVLUXpoVldrOTBUVlo1UjBJNVJ6TkRNVmx2YzA5dlRHaGxPWFZtUkZjMFQwTnVla3BvWlZSdk1rSTFOMmRzTTJWTE5XSnhRblU1YlU5V2NURkRSakE1UlFwWlRGRkNSU3QwZFdwVVQyazFUMjlWWTIwMGVVUkZZV1JGYlVKQk5sQkdLMVl2YzNFNVNVWkhhbEpFVkVSMlJYZENRbFJXTmpoS1psVjJVekJWV1hBNUNuQTVOV2x3ZUhwRlFVaHRMM294WkRsamNsRlZWamQwV0RGTGR5dHRjRXBzUVc5SlFrRklSV1UzYVZOcE5ERm5NWG96ZUZGa1kyazRXU3RrWjJGMVkxY0tUVk0yVjBaME0wRmpVMFZvT1VsSFNsQlZSamxuYW1Nek1HNW5iRk5aWVRodWFqaEVTbmgyWVUxclpXcFFlbXM0V0hGbFUzcEVVa2h1YUZKMk9WUnhZZ3B2U21OSFQzaDVXWE5VWjJ0eFFucDFaRkEwTjBReFIzbzNUMGRuTHpVeGJsVlhSbHBWUlVSeVExcDZZbTh4Vm5wSlJVMDJOVnBaV214cE5GUldPR2xrQ2xOdGVVMXNNV2g0ZFVnMmN5dHJObmhCVkRkb1RubFpURU5rVkRFeVYwNWFNVnB0TVVaUE1tVnNaSG94YlhCcGRXTk9ka2RTUzNjdmFEY3piMVZhVURrS1QzSlZNbVZsZW1STVJVOTBNV05HU1UxeVozRTRjVGhVUVZkcVdYWldLMmRZUVhSSmJtdGtTa1J3Y2xaYVEzRTFZMW93ZEhWM0t6RnZSa00zYlhZNFRBb3pWbFpFYzNWbVdDOTVNbU5uU1ZZcmRsRmFjVGNyWXpoWlRqRnNUemhVU0hWR2JIVjNVVk5rVlVsRWMyNTBOazQzUWtadE9FcFlNSEJhT0QwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBwM2lxeGk2ZXl0bTYycmVsZm4zMGp6NnVrMG9lcnI2YnlleTl0OHlyNmtmbjBhNG5hY3plcDFyMjdvcWgycWljZ3NhMG94Y2QxamhleTRhMzNscTRycDIzc2ZqbWx3MDh6ZXZwcjZyeHc3dGo2dzdjd3lxb2k5bWxtZHdjb2owbAo=\"\n - \ }\n ]\n }" - headers: - cache-control: - - no-cache - content-length: - - '13084' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 08:03:37 GMT + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000001\"\ + ,\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-z27850gd.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-z27850gd.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.Network/publicIPAddresses/a05165fd-0cd2-403a-ab49-6f2f07f48a68\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ + : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \ + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \ + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n\ + \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n \ + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \ + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n }\n \ + \ }\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"\ + Free\"\n }\n }\n ]\n }" + headers: + cache-control: + - no-cache + content-length: + - '4894' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 18:21:03 GMT expires: - '-1' pragma: @@ -2654,8 +1495,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -2667,32 +1506,80 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks get-credentials + - aks list Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -n -f + - -g -o User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVV0cGNrUlVTa2xsVVdVMmFYWnFlall4U1hRMVNVVjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1RVNUSk5SR013VDFSRk1sZG9aMUJOYWtFeFRYcEJNRTFxV1hkT2VsVTFUVlJhWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNtOTVORWh2UzNGaGFFcFVlR0l6YnpreGVsQmthV2t5VkVZMFRHazJkRWhNVkhWMVlXdG9XRzVNV1dsMmFqazJkR2d6ZWxKREt6TTRhbnByWTNwRmFqa0tXR1JVV1dSMWFDdE9VeXRvV1dodlQyNVliVFEzYlV3NWQxWnliVTQzTmtaMkswaDFhbTgwVFcxd01YRklSems1YWpCWEsyWTRNSEZaSzNaeWFXVkdMd3BxVDBzNU9XVkxVbEozVUVrdk5HSXZlVEJSYjNwbFVWaFFXVlpXZGt4elNDdHdaelpIUWtFNFNqbHhUVXRFZGpKU2VHOU1PVTF1V0VOSldtOWFiR294Q21GVFozZEZkSE52TWxsSFFXbG9heTlUYWs0M1pXaFhlSEZRWlhkUFNWTlFXQzlXYnpWbkx6RkVkakZLUkZOalZsRmtNM3BZV1VkbWRIVnBkVFZtZDNFS1RDOTVPRWROVm1SWlUwSnhVR05vUTJka1VuUnZiVmxqVVRseWJtMDRjWGhJVkdGRFdUaFZabnBaY0hkSk15czJZek5GZUZaQ2NtcHNWRVpaZVU5MGVncFJUM05GWlRGdE1FRTBRMHR1Um5aTWIydFdaRXhXWm1oTVdUUXdURGx5VEhKSmFWUlZSRkJvUjFoTlExWk5SRGd5VjFaalJ6TlNXWFpzV0ZsRU0zVkxDazVGV1RaTk9UUnVaMk5YZVdSNFIxRklObGRWU1VwdFQzRjVjbmd4Y1VoSU5tVkRMMVF3WkhwM1NtaDRkbVJLYUU5a05FUk1WWGhHTkZvdlJVVktURU1LUlZoSlMwOHljRmRtU0RGdFVHeEJXbXd4ZVdzNVpGQlpja2R5ZVZCSGIyOVpOVGw0U3pjNVoxVkRURlJMY3poMGRrRmxhbkVyU25ONGNWVldiVkJDUWdwQldYWXhSMXBrWm1GV1dHaFZaRWt6ZW1SdVFYVTVWbTFNZVdablpVaE1ibmhVTWt0TFJVbDBaREV4ZUc1SWFWTkhibWQwUVhGbVVtOUZZakl4YzBod0NubExXVzVQYUZSbGFHbDRRblpwWm5oVVNqVktkR2RQSzI0eFUwNXJUREp0WjBVNU9UQlNXRzVrZG5SNVNtdGhSV3c1T1VONVNXa3llak5yVTFGTGJ6SUtTbXcwYjFKRWExVlViQzlQUzFVMWQyWnpibVpQVkdkWmJrbDNSbXBvTDFGMk1tMHZibGRPVjJndmMwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1ExRXpNM0pOUkRsRU5VdFZRVWR2Q2xSUVMwNUdWblV5U1RGM2MwMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlEyRkRUSGRqVlhsUGRrMXVSelpET0c5T1NFNXFjRmR4WVcwS2VuZDNiMW96U2tsS2JtbG9kRFFyWlRCVk5FMVBOa05IVTB0UU1teEVUVnAyVFVGSlVIbzRObkp2Y0ZsRVRuY3JMelpQVjFCSldGRlFRakJqVVVGRFVBcDJja05YUmpkSE5YTmliMEl4ZFdkRFlVZFVXVTVvYnpkcFZFNDNibWw2U2s1dGFUQlVla1JRU0dKdU5HcEdlbWx6VkROdVVtc3plR05wZW1GM1RXUXhDbGRqU0dWTmFEaG1aRmxTTWtReVREZzFkRk1yVDBaNVFsSmphVFJ6UjNsSVEwZFlURlYzZGs1dk9HSk5Sa0ZETTNWWVJIaHFWaXRrVlROblIxbEZRV0lLZWxacE1XWk1hMUZPUlhwcGNpc3JlVzQyWmprd05ETjZjazlGZURCeVNYbDZhMHRTVVZGVFFpczJRVFE1U2tWSVRuVjVaV3R0Y0dOTmQyZHJXWFJ2YlFvMWQzSkhaMlZRVFRKYVVGUTFiRTUxYzJoV2EyWnBkMDlTVldRMk9YYzFVVU5XZVdKWmRVcFNSbU0xVWpSMVUxaGxWM2hNWkZvcmNGbDJjMHhxYjFWTkNteDNibnBrZWtWaVNXMVBUbXN6YjNOaFRXc3hZMlJEUTI5b2QweFhVM1ZFTWxFMVNHRjNhRXBhTVdGc1pUUXZZMk0xT1ZWRVdVZDBVeTlCTUhCWk5Wa0tNMGxJTVRaWGJYRmpjMDR2TDFGRE9WVkRia1ExZFVzeUszcExRMFk0TWt3NGJHbGtiVFZsUW5sS1lUZDRibTVQVTBWRE1IWkZWVVkyWTJsWVprWnNid3BPTW5CM1pEQXhOMUF3SzNwNmQwYzRSVEptTXpkVE1ubHljMUJGVFhSUFYweFBjbVkwWW5kV1VHcFRVVGhsVjNwT2VGWjRSazFDVTI1VmNGQlhWVWxTQ21aUWRuWk5ka1JXYkcweWVHdGlhMWxMYTJoa1pqWjNUbEJqTTNWcWVIVlRZMlpOZVhGM01raE9WMlEwTjNaQmJDdFpUVzlZYTNRNWVrOUhWMnBLV0djS1J6VnVXQ3NyVEVKSVZYRk1Xak52WmpnMFJtbGxhakZRT1RJMVoydG9WQzhyYUZwSE16ZEZXVGRMYUdwMmJsWjFVRWdyVlZkWVVIQm1UbEpVYzBaRE5BcElkVUZVZERSTmVrRkVjM2M0Ykc1aU5FRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zM2RxNWd5Ny01b3d6MHU2Mi5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdDIyb3Jsbgpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdDIyb3JsbgogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGw3ZGN6MjY2aHhfY2xpYWtzdGVzdDIyb3JsbgogIG5hbWU6IGNsaWFrc3Rlc3QyMm9ybG4KY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0MjJvcmxuCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGw3ZGN6MjY2aHhfY2xpYWtzdGVzdDIyb3JsbgogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlUzZHRhMHB5SzI1WldHc3JSRTlOVjFJME1YSkVha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQk1FMXFXWGRPZWxFMVRWUmFZVVozTUhsT1ZFRXdUV3BaZDA1NlZUVk5WRnBoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTnZaMmRSUjI1d1FsVjBXazFCV2xwSmVtVjNPSElLVWtsQ01rZDNkMEUzTUc0MFZsZEpSMGhOZFU5YWRWZEliMjVrTWt0Vk5qbE1NMEo1YUZsdFRIVnVaa2xJV2pGNFRYRnhkMFJPV1U1ME5YbEZNU3RXWndwc2EwdzVlSGxvTTBOc2FYSk9UMFpKY20xRU1tOWlNRFExYTAxbWJqSldOeXRCUlVWa1YzVTRSVzByV0Vkek9USlBSV0Z1UjJKbE4xWklWblUzY1VkS0NtNUdabmRhVkZOclRITlRkbVJNVGxSc2FDOUpNREJ1WTNJMmVrczVjMEZoWkZKaFpFWlhiR3RXT1hKbVQxQXlabWxQUWxwNFJta3pjM2x4UldablpVb0tSa2hhWVZOS1NXVm9Tell5YjFCM0wzSnhhVzlLU0ZKc2RuaFFNVFJuVms1a2VtWlVZaXN6Tm1admJsVXZRV1JGVWxSS2JteEZSRmxZT0V3NFoyOTFWUXBFTkVkUFprUXhPR3BoY0hOM1NqVmplSE40V0RKS1ZVTTFRblpDZG5VMFFVWjJNakZvYUdsdFNWTkhRM3AyVW5Wa1EyRjFOVXBLYlVWUFYwRnZLMVpTQ2xkTFlVbEVOakE0S3pkcGRUZDBhRVJZV1VkT2NrTlRjR05GT0hkTlIzaFZabWRUUXpKTWNURXZjSGwwWmpsbk4ycE9LelZQWm5jMU1FTkxPR3RDYVUwS1lVOUdRMGxLZEM5QmFtSlRNM3BLTDFSdmRUZEtPVmRLWnpKR1MxYzRhbnA0VEhrNGFGSk5PVGhQVkc1blRYRmtWeXR2ZWxRNGRtaEROMDlrZWpGRWRncGtkRzFXV1dVNFFXZFpUMnBSZWtOV2EwUjRNSHBqTjFOMVVUUndiMHhXZDJoWWQxbHRaa1J1Y2tGb2NFdFBXR1F6VTFGV1dqSTJRMloyU0ZkdWIwTlJDblZqTVZnd1VWZ3JZMGhvZERWeFlXaFhUbXhEUTNWRWRXNWpaMUJtTjBGaGRIVk9aVmRsUjBaVVJuRmFiMmhKZUc1ek0yZHJhVEU1VVZCbE9ERndjamtLYzJZNGRWbHlPR1k0U0haSVNGVjJNVnBpY1ZKSVdUVXpTMVZrUW5WNVNYZE1Vblk0YlZkYVJXeHNkQ3R5VkZOaGNTdDJWbGxyTHpGTFkxb3pkV0ZhU1FwYU1HbGFhMGhDVFROMGFuRjBWMFZZZGpsM01pOVJTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsRnJUamsyZWtFdlVTc0tVMnhCUW5GRmVubHFVbFppZEdsT1kweEVRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRkVUR0ZuTUZCdE5FeEJhbXBqVjBsRmQwbHVlZ3BrYWl0aGJIVmtPWFkyV1ZGTGRIVnFXVlJQVDA5alkzQlJXRzlHU21oc1REUlFMMlZIWWl0ek9YTTFNRkEyYjNkS2NGWmpVMG80Umt4R09YUnJVRXRMQ213NWRrWnFNM05JTnpOb2VrTjZkVVZHTjFWQ1dERnFiRFptVGs5S1ZsTnRkV1JaV1ZwVVMzTXZVVFU0UWs1c1FrOW9kamRhTW1NM1N6ZFdObU5oV1hRS2JIUk9TMmx5VGt4eFZYSnRlR2xzTUVnMGVVVmxRMnhqWm1KWGN6RXJSRzgwY1dJMFUxTm9hMGR1Y0dKRkwxVTVUamxVUjBoSmMyNXBVRm94YlVkTGFBcEhVMnh5WmpWaWJWRldjRkp5YWxSM05YZGxkaXRWV0N0NFpreHRhbEJoVUVWV1kzVkNlR3hzT0dSdWRYQnpaMWQxYW5OaVEyNVhPVWxHUWxkYWMxSjRDbU5ZYm5ndlpEUmpVemxCTkVGWFdFbHJibVp5TVZGS2MzcFlRekZXUzNSRWVUazVlVXBqUmpSdmJuRktLMWx5U1ZkbU9YUkJkSEpRWW1GRWFtVlhkMU1LVUM5b2QzbDRMMEY1TlVGRVpYUTNkVWt3UVdKUWJYTklVbTA0TTBaWU0xaHRWMWhZYW05WGNEZzRTMUJuVm5sNGVVRm1OR2h4U0M4eVpqVm9PVzF5TXdveFlsaEVVbk40VW5BM1QycG5SM1pFYWtvd1VGQkNValUwV1VoSVZITnlVMmxSTXpsV1VuQkdTV1o0ZG10TGRGcDFTMEkyZHpCU2NWVlBhbkJCWVVWSUNrcFhNa0p1TVdsUlZXUnBVRVI2YjBNclMwNXNOaXR6YjFWdFRFMUVia01yTDBaaFYwVjRhRFZyTm1wbU1FUkxRMngyVjB0R05YTTBjMm8xTWpaYVpIVUtiWGxTU0RaWFN5dENhVkoyUjFGckwxSXpPR3RhWmxwak1uVnpWRmQwUW0xTlprNXdNWE12VUVSb2R6Uk1OakpHWnpoVmQzbHNWVlZxT0dSWVZXeExkZ3B3ZUVOT1VWVnJWSEZhVlVOQ1VHNDNOV2xNWjB3ck1GZzRlRk5KT0RsWGFXdGtXVk5tYURCS2RpdHpSRmhaY1ZKclEzUlBZemhyT1hsVldrTjBhazU2Q2psQmFreExXRmhCY1U5V2VVTk1UakZRZDNCWFIxZEpQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJjVWxKUlVKd05sRldURmRVUVVkWFUwMHpjMUJMTUZOQlpHaHpUVUZQT1VvclJsWnBRbWg2VEdwdFlteG9Oa296Q21ScGJFOTJVemwzWTI5WFNtazNjRE41UWpKa1kxUkxjWE5CZWxkRVltVmphRTVtYkZsS1drTXZZMk52Wkhkd1dYRjZWR2hUU3pWbk9YRkhPVTlQV2tRS1NEVTViR1V2WjBKQ1NGWnlka0pLZG14NGNsQmthbWhIY0hodE0zVXhVakZpZFRab2FWcDRXRGhIVlRCd1F6ZEZjak5UZWxVMVdXWjVUazVLTTBzcmN3cDVkbUpCUjI1VlYyNVNWbkJhUm1aaE0zcHFPVzQwYW1kWFkxSlpkRGROY1doSU5FaHBVbEl5VjJ0cFUwaHZVM1YwY1VRNFVEWTJiM0ZEVWpCYVlqaFVDamxsU1VaVVdHTXpNREl2ZEN0dU5rb3hVSGRJVWtWVmVWbzFVa0V5Umk5REwwbExUR3hCSzBKcWJuYzVaa2t5Y1dKTlEyVllUV0pOVmpscFZrRjFVV0lLZDJJM2RVRkNZamwwV1ZsWmNHbEZhR2R6TnpCaWJsRnRjblZUVTFwb1JHeG5TMUJzVlZacGJXbEJLM1JRVUhVMGNuVTNXVkV4TWtKcVlYZHJjVmhDVUFwTlJFSnpWa2cwUldkMGFUWjBaalpqY2xndldVODBlbVoxVkc0NFQyUkJhWFpLUVZscVIycG9VV2xEWW1aM1NUSXdkRGg1WmpBMlRIVjVabFpwV1U1b0NsTnNka2s0T0ZNNGRrbFZWRkJtUkdzMU5FUkxibFoyY1Uwd0wwdzBVWFY2Ym1NNVVUY3pZbHBzVjBoMlFVbEhSRzh3VFhkc1drRTRaRTB6VHpCeWEwOEtTMkZETVdOSlZqaEhTbTUzTlRaM1NXRlRhbXd6WkRCclJsZGtkV2R1TjNneGNEWkJhMHh1VGxZNVJVWXZia0kwWW1WaGJXOVdhbHBSWjNKbk4zQXpTUXBFTXl0M1IzSmlhbGhzYm1ob1ZYaGhiV0ZKVTAxYU4wNDBTa2wwWmxWRU0zWk9ZV0V2WWtndlRHMUxMMGd2UWpkNGVERk1PVmRYTm10U01rOWtlV3hJQ2xGaWMybE5RekJpTDBwc2JWSktXbUptY1RBd2JYRjJjakZYU2xBNVUyNUhaRGR0YlZOSFpFbHRXa0ozVkU0M1dUWnlWbWhHTnk5alRuWXdRMEYzUlVFS1FWRkxRMEZuUWt0aGJFSTBNQ3RIVGxwNmNIQXZTRVZoVW5kbmJEVllVMDV6T1dkVVQxcHRSRVE0U0dkVVUzTm1NR2hWWmxaM1NrZHliWFJXV2xCUVZncDJNVGxGTURZMEswMDRXSEI2WVZKUVduWjJTWGgzVG1GTWVsaGxPVGQ2VWpobVprOTVhMVJ4U25OdmRXNU5UelZhZVdZelZITnFjREpEZVhKSFNsUnhDbU5UYVVsMkswOUVObHBWWnpocE1WSmphWGRRYTBoaWFqZEpTblZGVW5STk1FbFVNREZMY1V4cFdrRkJTVGxaV21wRFYyTlVaME5VUTFoR1FYWmxRMnNLYzIxWUszRkZXRU5QY0hKWGNqQXpWV3h5T1ZCTlRrcG1MMGxCTjJFd2RuaENkMlIzWW5OMmVGaDRja2Q2VFRCNWNFSmhOMDFETUZOamVWSkJWalYyVWdwNGFWcHJZbmxzVkZrMVIxbzVjVEJTZWxGcWRVSlRlRWs0ZVZoTk1YbFJlREZ1UVZrMWVqaFRSU3RhWW5SdVpHSm1RWGRwV1V4YVdsVTBXWEpvTDNVekNrSkhZM2xTYjA1VlJIa3diVGhwYURkS0wyNHpSbEpOYkZGcWRuTm1lbFl2V2tkUWFtMDRNM1ZZYkdsTlVIZzBValphVlVGNVRHbzFURzV4YlhCS09GRUtibkpwZVRaWmVFeGFkMWR2SzB0QlkyRTVNMFUxWTFJNVFrcGxSazlJVkZreVdETnlSVUlyY0VaWlUxQmhOM2QxUlhwbVVWSkdTVTR4WnpsWE9UbFpOZ3ByT0ZnM2FXeExhRmczYjBWUVduTXZTRVo2T0V0M01uaHljVnBOV1hZNU1IbHRXbXRXWkcwMFZsVjBaa1ZSVGtSelVtbEJWMjFMT0ROamRFRnJNRXhWQ21wTU5tbE5TWEJXY2pWa05pOW5kalJLZVVWcVJGYzBOMVpQYWpOaWEyazJSWFZsV0V0aGVUaFpXVVpWYzA5a05Ga3JlRTlLWmxacFEzUm1PVTF3Vlc0S00xTk5jVXBsYUhOSFZqbEpVWHBYUWtSTVdrSTBXRTVMU1VaVlppOUxXVGhRTW10emNFaE1SM1JWZDBwVVQyUnFOSE5zYXpCRE5sQXdZakZMYzJSa1pncDZkRGxLZWtzckx5OUZZVzAxWkVKNmJUTnFNV3RSYkhsRWJrOXVXaTh5U2toWFVXZzJUbUpHTW1zMmJ6UmpWbGhUVVV0RFFWRkZRWHA2UjNKTVRqVlJDa3QxYzFkek0wSlNTbXRFUjJRelQydHFSMjFMWXpaVVFUQnZNMmxsUWpCaVMwdzRNRXBOUzFKRVptODFURXd5S3pCS1MzWm9jazlUVkZWTmVsRXljVVlLZUZkeFpEbHZSVEJzV2tWRlJWbzVMME5CSzNBd2EzbENXaTh3ZVdWRGRYQjFOMUpZWkZkWGJuQXdlbU5TUmtaSlRuRnRZMlJYUkc1NU5XMHpXVXhCVXdwcWVsSjJlRTFyTUZScGVWcFBhM0ZOTjFWUk5qQjJVV2xyV21GcE5IUkpSM0ExU1hJMUwwOXJlaXRMWkVwbVpIUk9SVWcxUTJaMFFXNHljemxpYlRWSkNsVndaVFJCZEZkUU1XaEhaM1pXZFhGTFMyWm9ZbmxHVEV0WE1VNUdkbVZwYlZOdVozTndNSFZ0SzJJeVJuUkxWbFZGZEdOR1RWZExPV1IzUjJKc1VVa0tUVlZzYzFOVU5XUnViR1JVTUdaVmVrbzRZbGh0WjBrME5EWm1OalJrYWtoSlVXVXJhVlZxVXpKaVF6aHVkRVZUYWpneFpVZE9SMU5LVURBNVpFcExZUW8wUzNOclFuZ3pjVU5hZWt4eWQwdERRVkZGUVRCRVRqVktZM0ZHU25SWllVeDZWMHRaUVM4eE9YZDVjbkprT1UxSWVsbFpPVkJRV1hvcmJUSmxPSEV5Q25ObGMwMXlVREJQUWsxVVJGRkRaMGRDV1RCRVMyMW1NMkU0YlN0cGFsTkZXbXcyVVVFMGVIWkdNamRJWXpOWlprUjRUV3QxWTI4MFpucGtUV000U2pZS1NESjZjblY2ZUVRdmRERmlNRk00U3psRmJYaDBNelJxZVRVeVJISldOWEF4U1ZsdmFGZFBiVEJrTDB0aWNGaFlVRVJoTDNOemVtcHhibGxsTW0xNWNRcHhOa054UXpabGVtOW9hbXh3VjFOTk1VcE9Za3g0YW5wRUwwbEJNMkZVZGtGeVZEVllTRmh6WkZOcGVFeHRkWHBpYjJWbmVHaEdaV0pOZFRKT01tVk1DbTVUT0UxbllqZFFTbVZZZFZONWNqVnlXSEZGUlhSeE9XNXlXakJRU1ZkUWJWUTBPR3N5VDFkR1UyUlBaMEZsZEUxUk0yZzBOV05uU2tndlIwbGFObFFLV0ZsUlRUWndhWG95TXpodmRGbHpkREZQTm1oUWRXYzJNVFpvY1RSek5EQnZjbXhCYjNoSE0wVjNTME5CVVVWQmIzbEliMDVLZFZaWmVsWldNbXhLUlFwcmJXNU9NbG80YW00MmJ6VmhTRkF2Ym1Obk5ERXpiVlJQVEVoVGVrWTJhemwxZUdOMEt6RjBialp5WlhGTFFXRlJUbkkwVFdONFpFcDFTMkpJVFhJckNreEJWRkoyTURWc1NtMVBkWGRtVjJGeVpGZGtUbmxEY0hONlFqWTJLMUIwTjB4MVNHTm5URTVoVEhsRFp6WnBXVEpMVm1WNlRFaFZObmQyVDA1S1NqSUtja1phVWtSeFVrUTRWWGRZVWt0RlZERnhNVlE0YlV0TEszTlZURGROVkZseWVGVjBlR2RpV2pWS2RFNURXamRhWTNGMGN6UjBXRklyTjFkYVNFTkpjQW8zWkVwVVZFMVJkbHBZVGtrck9HRnhPWGxOYmpONk1UWjFSREZSZGxaRmEzTllkRmh3ZDBOSGNqUkhiVXh1VTJGNFNteEpUblpZVTNaWWRXZ3hjMnhVQ25wTFpsWlNlWEJZTjB0dFUyUTFMMjlUZEdGdWIyTnhZMlpzVlhGdU9IcEhkSElyUVhjd2NUVTBjRGd2ZUhseE5tUnZWWFJNWlhWQlNtZFRXbWxWUkRBS1ZrUXdkalJSUzBOQlVVSkpabFZPTWpsMldUVlBWalZSYUZwSGVVNUtlSE00WTNCelpGVjVjSEZWYjNwTWVIVlVLMFZ0UXk5SFpIcDBkVlJ2TjJkeFRncGxibmxKZGl0aGJ6RkNiMEZFT0dKRWFuSkNObkZwU2xoRGFVZFhUM0pWVEUxYVZHTkVTWEIyTUhwb09GQXpOVUZRVGpaMmFEQjZRakpGYVZSSWFqWkhDbHBGWm5SdmVsWnlURXRXYkhZNVRubDBNWEkzV2premRFVjJSRlV3U1dSeGJEQkxRMFZyVjI5UU1TdHlVREE0WkUxS1l6VmpXa0pUZUZaUGRsUjVjSEVLUXpoVldrOTBUVlo1UjBJNVJ6TkRNVmx2YzA5dlRHaGxPWFZtUkZjMFQwTnVla3BvWlZSdk1rSTFOMmRzTTJWTE5XSnhRblU1YlU5V2NURkRSakE1UlFwWlRGRkNSU3QwZFdwVVQyazFUMjlWWTIwMGVVUkZZV1JGYlVKQk5sQkdLMVl2YzNFNVNVWkhhbEpFVkVSMlJYZENRbFJXTmpoS1psVjJVekJWV1hBNUNuQTVOV2x3ZUhwRlFVaHRMM294WkRsamNsRlZWamQwV0RGTGR5dHRjRXBzUVc5SlFrRklSV1UzYVZOcE5ERm5NWG96ZUZGa1kyazRXU3RrWjJGMVkxY0tUVk0yVjBaME0wRmpVMFZvT1VsSFNsQlZSamxuYW1Nek1HNW5iRk5aWVRodWFqaEVTbmgyWVUxclpXcFFlbXM0V0hGbFUzcEVVa2h1YUZKMk9WUnhZZ3B2U21OSFQzaDVXWE5VWjJ0eFFucDFaRkEwTjBReFIzbzNUMGRuTHpVeGJsVlhSbHBWUlVSeVExcDZZbTh4Vm5wSlJVMDJOVnBaV214cE5GUldPR2xrQ2xOdGVVMXNNV2g0ZFVnMmN5dHJObmhCVkRkb1RubFpURU5rVkRFeVYwNWFNVnB0TVVaUE1tVnNaSG94YlhCcGRXTk9ka2RTUzNjdmFEY3piMVZhVURrS1QzSlZNbVZsZW1STVJVOTBNV05HU1UxeVozRTRjVGhVUVZkcVdYWldLMmRZUVhSSmJtdGtTa1J3Y2xaYVEzRTFZMW93ZEhWM0t6RnZSa00zYlhZNFRBb3pWbFpFYzNWbVdDOTVNbU5uU1ZZcmRsRmFjVGNyWXpoWlRqRnNUemhVU0hWR2JIVjNVVk5rVlVsRWMyNTBOazQzUWtadE9FcFlNSEJhT0QwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBwM2lxeGk2ZXl0bTYycmVsZm4zMGp6NnVrMG9lcnI2YnlleTl0OHlyNmtmbjBhNG5hY3plcDFyMjdvcWgycWljZ3NhMG94Y2QxamhleTRhMzNscTRycDIzc2ZqbWx3MDh6ZXZwcjZyeHc3dGo2dzdjd3lxb2k5bWxtZHdjb2owbAo=\"\n - \ }\n ]\n }" - headers: - cache-control: - - no-cache - content-length: - - '13084' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 08:03:37 GMT + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000001\"\ + ,\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-z27850gd.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-z27850gd.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.Network/publicIPAddresses/a05165fd-0cd2-403a-ab49-6f2f07f48a68\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ + : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \ + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \ + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n\ + \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n \ + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \ + \ \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n }\n \ + \ }\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"\ + Free\"\n }\n }\n ]\n }" + headers: + cache-control: + - no-cache + content-length: + - '4894' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 18:21:04 GMT expires: - '-1' pragma: @@ -2707,8 +1594,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -2720,71 +1605,73 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks scale + - aks show Connection: - keep-alive ParameterSetName: - - -g -n --node-count + - -g -n User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-5owz0u62.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-5owz0u62.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n - \ \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC4FbYEnSg3B++273P4js8XiXC6vdN80wW5on6LXCSuVkgiCSyQ/j4Jjy5ZXG1iQ0E++48y0Lbmb6F6KL4AsUwq0SAGTEIpjOGieNX2qfK6W/dSsN8lZf+7rjq8sffRGcxtgH2I/nkRH7vlZFaiFg9YqJv/0tZhvO0CPLlvzOM1cWZsvK67UdGFfmPOcufqkYnSYoyfkibivUTUus0Gcd7jo2vEY2C8/KTc1yWWCbHtOeH5TY2vlcdmsbdnKrgZrchLhmcHrU08mHWh11MX9FIelan5Uw8kgoFNIu/Q6BrfGXu09PxXG7pOXoZR4MTRDr9ih0UDJ0H8Q7+jvSeXnJtv - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6da0b9d3-bfb8-4da4-b71b-b1414d9f4d62\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n - \ }\n }" - headers: - cache-control: - - no-cache - content-length: - - '4291' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 08:03:37 GMT + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-z27850gd.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-z27850gd.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.Network/publicIPAddresses/a05165fd-0cd2-403a-ab49-6f2f07f48a68\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + principalId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4617' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 18:21:06 GMT expires: - '-1' pragma: @@ -2803,107 +1690,39 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": - {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003": - {}}}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000002", - "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": - 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006", - "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, - "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": - false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC4FbYEnSg3B++273P4js8XiXC6vdN80wW5on6LXCSuVkgiCSyQ/j4Jjy5ZXG1iQ0E++48y0Lbmb6F6KL4AsUwq0SAGTEIpjOGieNX2qfK6W/dSsN8lZf+7rjq8sffRGcxtgH2I/nkRH7vlZFaiFg9YqJv/0tZhvO0CPLlvzOM1cWZsvK67UdGFfmPOcufqkYnSYoyfkibivUTUus0Gcd7jo2vEY2C8/KTc1yWWCbHtOeH5TY2vlcdmsbdnKrgZrchLhmcHrU08mHWh11MX9FIelan5Uw8kgoFNIu/Q6BrfGXu09PxXG7pOXoZR4MTRDr9ih0UDJ0H8Q7+jvSeXnJtv - azcli_aks_live_test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, - "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", - "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6da0b9d3-bfb8-4da4-b71b-b1414d9f4d62"}]}, - "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": - ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", - "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": - {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": - {"enabled": true}}, "workloadAutoScalerProfile": {}}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks scale + - aks get-credentials Connection: - keep-alive Content-Length: - - '2860' - Content-Type: - - application/json + - '0' ParameterSetName: - - -g -n --node-count + - -g -n --file User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-5owz0u62.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-5owz0u62.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n - \ \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC4FbYEnSg3B++273P4js8XiXC6vdN80wW5on6LXCSuVkgiCSyQ/j4Jjy5ZXG1iQ0E++48y0Lbmb6F6KL4AsUwq0SAGTEIpjOGieNX2qfK6W/dSsN8lZf+7rjq8sffRGcxtgH2I/nkRH7vlZFaiFg9YqJv/0tZhvO0CPLlvzOM1cWZsvK67UdGFfmPOcufqkYnSYoyfkibivUTUus0Gcd7jo2vEY2C8/KTc1yWWCbHtOeH5TY2vlcdmsbdnKrgZrchLhmcHrU08mHWh11MX9FIelan5Uw8kgoFNIu/Q6BrfGXu09PxXG7pOXoZR4MTRDr9ih0UDJ0H8Q7+jvSeXnJtv - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6da0b9d3-bfb8-4da4-b71b-b1414d9f4d62\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n - \ }\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSU1dKSlNWTlNSVWg1ZERSalMzVlNkMGQzWlhseGFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYaFBSRUV6VGtSYVlVZEJPSGxOUkZWNlRVUlplRTVFUlRSTlZHTXdUbXh2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSUENpOUZhV2d5TTBSNFRtMTRVMkpMUXk4eVYzQjFWRXgzYlZwMGFGWjRNbTVwVTBSdE9YWTFWMlpoWkdKVFRHRTFiWE4wU0ZWT0wzSkdUSFo0YlN0UVdXWUtWRlZWUkVveVFuSm9LMUJOZDBOT09IZDJiM2x2Y1ZKR1NFdFZiRVJGT1VNM1ltbHFWRUZwTXpOUVdsRkNhMjlLT1d0U2VEbHlNelUxUkhWbmJXMDJaUXBZV1ZFNFNYQnRMekZLUXpkTlFuaGllV1I1Y0Rsc0wwbENaVFk1Y2pOQ1VtcFZiV2R5TURkellXcFBRemhET1RKMmNDOWFRVFJYWjNOdUwwcE1kVmRJQ25WdVNrNVhOMnBtVldOcU0zbGFZVTlHTkU5bFoweHFkMWhRVWxoVFMyOUdWVkpGZG1kVEsyTjJUMnN6UjJsWVkwMVNiak5RZVdkMVprbENRM2w2Y3pFS2JFZ3JaMmREZFdGclZHMVpSelo0UTFGV04wOXZaVmxwYkN0cVVsVTRRVWhOZVV3cmNqazNZekZZWWpCV1FWWnRRbUp6VkVGVFJsSk5jRTlJUTNCUlVBb3JVMVZTWjBsNlVYY3pSbkJOZWxCaVoyVldOMmRLTVd4NWQzaDJjVUZTY2pad2JVcGpObEl6V21sMFRVOWlXa1J4VVhNM01WQmlUelZMZVhGT1Nua3JDbmRZT1U0MVRXUm9ieXR2VTI5Sk1sZzFUbWR4Y1hWV2NrZERNVmRGTVZsck16Wk9SMFk1TlVNNUwwZ3JlRWRQZDAxdVNsUnJVMEZCYjNoSmFIaHliSGdLUjFnemRrUk1WVlI2T0hGRVdqRTVMMlYzZURGNFZqUkhTWHBxYWxZd2VXZGtXalF3V1d4dlFWSm1SRmwxV20wdlkzUXpUa3AwVkZnM2FUaEJRbk5HUmdwbWJIcDVNSGxyUTBvck1HZHJWblU1VURsTUszZHlXRzB6U0c5dWNXSlZiRVJ3Y0dSM1kySXZlbWQ0YzJsU1oyeFVOamRCV1daRmR6UkhUazkxYVVFMkNrNTNWWE5LZDFsbVNHUlpZakE1YTBoa1EwdG1kWGRZYkZkNFJsTXpOMUYwYW5wTE1tMXZkMWs1Vmpod1ZsVnRjVXhzZFZGRGR6SkpXWGhoVFdsU1JYUUtOR3BVY0dOaFFqUklLMVo2VFZKb2VrZGlkeTlKTkd3dlVraFBTa016Y0VkTmJWbFJNRzVZZW1aM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWbGF6azNkblZvYlRZMFZFUXdPR0ZEQ21KdGJtTlhla3RhWWtwRmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRVFXbFNLMFZvY0RCSE1IUlFVSEpTWkdrNGFUTkZOMmRoWW1ZS1kzUnBUVTFEU2pCQ2JHczNjWFZIVW0xR2Ixb3ZhSGRNZFRoVlpYTk9RMnhRUkRKQlF6SjBhMnBVUjFJeFdqa3dUWG80Y2t0aE5Vb3ZiMHBVVFZWd1JncFBaRzU1TTJ0UWFsUlVPV3h4Vm1wNGFYRk1WMlZRWWtjck5IbE1ZMHB6S3pKaFZsWjZTRmRIUzFoMFZHSmpVSE5UTWxKUE5rbzJhazVNYmpaT2VYaEpDblZYVm1acVowOXlNV2hqZUZoaWNrcE1ZazV3YVZsSWVqWmlaMFJQT0ZreEx6VkxWVlJSWVhRNE4xaGtRMUprWTJoVGQzZHJiVXRRVm14MmMyMXZkemtLWkhFdmFsWkRSemhGTDFoSFduQkZSV1JVU0haU2FVRXlSMUk1VTBad1NGWnNPRUZuTVM5cFRITXJVRkpwWkVzcmNUWllXVVpEY2paelUzRlpVMlE0YndwS01GZDZhWEpITUUxb1pqSkxNMk5LV25ObGJuaHdRbk5hZURGU05GZEhibTVCTlVGQlpGVlhaV0ZhWmxwWVEzZ3pTV1Z3Um5KNllXVXdZVk55VDBwbUNtdzROMk5oYVdGT05FTXljMW8zYmxwclZIRk5abGs0VFRaamJ6UTRPRlY2Tmxod1YweHFkMUF3UmxOUlMwRlJXVEZUUVdwbVZHWnZMMWgxVjFsNk1qUUtLM2RoVEM5dFZuQnJUMWRWTVVRelJVVlRkSGRhTmtkWmRYRlViRTAxYlhad1NtSXpiVzFJYUZwdWNuSTVWVk40VFVkS1UyTlpSVVJGTjNJMmVGWXhNd3BrVm5aUmRFbEVUVFk0VGxkVWVsVTNMM2Q0YzI4eUsydDNWSE5JWTJSWWQwUkpLM0JtUjNOVlZXeEhXRlZUYjNwaVIyVlNLMUU0U1RKek5tbGxlRWxOQ2pabFp6VTNURzByUzNOaFpIUk1VemgzZVZsM2Qwa3ZlRk5HU2tGM1RYbENSakJZY1dsa1prOVJZMGgxTkhaQlpXSXlOa2RvZFdoM2FHb3pXRGx4T0hvS2VEUlhPRXc1VUd4NFdXWTBhbTUyYmxKSE15dGpOMGRtTDNwRVMxRmljMnhZV0hSNFR6bG1URWhJTjNaNFZtMDVaMFkyU21ORVNtSlZlVWhPVVhWWlZRcHdTMmQ2VVdsR1YyYzNRbFZhS3l0UkNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2NjZnJseWItejI3ODUwZ2QuaGNwLndlc3RjZW50cmFsdXMuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RvcmdkdHcKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RvcmdkdHcKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3R1ZHVieWRiaDRuX2NsaWFrc3Rlc3RvcmdkdHcKICBuYW1lOiBjbGlha3N0ZXN0b3JnZHR3CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdG9yZ2R0dwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3R1ZHVieWRiaDRuX2NsaWFrc3Rlc3RvcmdkdHcKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVkE1WkdSU2VYUmxRWEZqWldoVlNtcEhaVVJKZUd0M1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxUlRCTlZHZDNUbnBSTWxkb1kwNU5hbFYzVG1wRk1FMVVaM2hPZWxFeVYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCTUVoTVZFTnRWMjQ1UWxZeVUyZEhaQzlSTlM4S01taHROMFJSVUROTFQwRjBNRVprUXpOS2EwaEpUWEpuWlVKblExbERiVWxxUmtKclVtNURTR3hOYzB0bmVVRmhUMk5zVldGS1MyUlpVVnBYY2tZeVpBbzFZVlZDU3k4MWFWWjJOWGg0Wmk4d00xWTROVzVoTUZoNk9Vd3hWR2c0VlZVemFFVTFhVlJyY1dkclozTTBhVzFtTlhKRksybEtWWFV6VURJdllYWkVDak5HVDNCbFVWZFliR1JZVnpCMGVERjFkR3BEYTBsc01rOURRbGR6VVd0T04zWnpjbVZoTDBwRFozazVUR05uTVhsMGNERk9RVko2Tldkek4xTlRMMG9LWkZsSmJtaFZRVEJPZVN0aE9EQkZLMDVMUlhGSGFTc3dWWGhzT1hneFF5dGlWRU5KZG1wVVlVNUZVV2hLUmxwVVFTOUpPV0o0VGtZeVZFNTZRMEpEYXdwTE5tVTVVVWczVlVVdlp6VldLMmxhUlZJMlEwNVFTMlZzZFcxVmNEbFZjV0pXVEZwMFNFUXJWMFY2TURGT1NVRkdkRTlKTVdKaWVUaGtTQ3RRV2paRkNucEZOSEJQU0d4MmQyaFdVQzlOYVRVMUwySk1WV3BEVjB3M1JVZEVabUpIYXpCU1kybzVWSEJuTUdoUVJXVTJMekZTSzFod1VGSlBTMmRLWjBzclMwY0tiSEJMY0M5T1RqbDBhamMyZUcwemNEVXhhVVI1ZDFSaE5VVm5XR3hhYjBsRWVEaFJaMjlqVW1sS1FtdFRWR1o1UTJGRlVqaHBhM29yUlZaUFUxaHNVUXBWYnpaR1IyOUNZVE5CZG1NeGIyMW1jMkpIT1hCREt6TndVVXBpV1ROSWJWVnZSbGdyT1M5amEwMWxTMVoyT0hvM2JFdE9kQzk1UXpaT2FVSlVRbnByQ205WmIyUXJSRkIzY21KTk1rODNlbmMxYVZGc2NEWkNRazV6Y1dad1RsZEhVVFJXWmpCYVJuUldiV0ZGVUc0eVN5OTFaMWwxU25VM1NGcHlUWE41ZDBnS2JuZzVaMUY0VWpoNE0zRXJjVlJGUld4eWN5c3hUVGxUZWtSMGJWTXZTVkpRTUU0MWNYaDBOMU14WTNOTlkweFhTbGhzY3pjeGRpc3JlRE5DTDNaSmFncHBOVFF4VHpsWU16TXlZVE5rYUVjNU9UUkRTVU5hUlVOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWWldzNU4zWjFhRzBLTmpSVVJEQTRZVU5pYlc1alYzcExXbUpLUlhkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCUmpVeWRqWXhRbk5tV1Rsc1ZYbFpNVlI2TXdveGJsaFljbWMzWjJSamQxbHpXR2t2YTBaTU9UZDBRVGhQY21oNWFETTJSM3AyTWxGdlNGUkdXV2hrU0doT2NYYzFWbkZ2Tkd0TVMyRk5ObGx4VjB0YUNuUTVXVnBGYlROVFZqaEtZelI0VTFabVdXa3hURFJNTXpKYVJFZGtVa0ptYmtaRGQyOVhkMHRTVW1nNGMyeFVkVFUwY1ZkU1FVcHlWR0l5UkhkeFdVb0tTMUpoYUVwWVQydGxaVGhWWm1nMGJFY3lUamRYTW01WU1UTnNTV3hxTVVWb2NXeHJOVlJpYmxsVGR5ODJTalI0Y3l0eVkzQjNhMFJ0ZG5aRWFETmhOQXBMUjFSRU5HNTRRM0ZIWWtKS04yMTJOR0pUYVdSWmJqUklTMGRhT1RoRWFuZE1OVkF3U1VZeFZFbGlNazV2YzI5aWFWWlhjaXRoV1VKVGFrYzRUM0ZwQ2pWNlFqVndUekpsT1ZJclIzQlBSMnRLYkVKTU9GaFdTbGxVTjFSU2VUTm1ObE54ZDJKUWVGTnFZelJ0Wkc4ek1WZzFZVkl3VUhONVJWbE5NM2cxUkhvS1dEVm5TblpNWWpaRlMyNUVlVU5DT1M5TlRFTlRTMHB0YTBoUlVFWnBjVkpHT0hKemRHcFZZMk00ZG14b1RucHdRMFZvU2s5bmMycDNLemx2UWs0MlRRbzRVV1JPUzBWS01HbENlV2x6ZVUxRVFVTjNaVTVZVTBVME1GZHJkV1JsZG5kelltSmhTVWt5Y0ZCWmRrODFNMnRQY1c4NGF6ZFZlbU5QWjJScVdISmtDbVVyUzJneE56ZGlWa1JKVEhoTmRVZExkRzRyWWxSU2JIbEJOa3BZTTFSM1RXd3ZNSG8xZFRkVFEyd3JSRU13V0hoS1ZHOUJOVlp5TTJKUGVFVXdTbllLY2xBdmFHTlljbFpTUmxkMUswaGFiM1JIWmpScU5EZGhTRFpRVFU5MWNqa3ZXWE5GVkM5SmIwcG9UV1YxUTB0M1NHRjRNV2x5WWpGMVpsRnNSR2h1YlFwcWRVSXJaeTlMZVZOUVVUTkZMM3BxWW1kRU1uQnhhVEp2Um5oamJsTlNUa1Y1UmpSSE1sVkRla2N2VFcxSVJ6TjVPVEZDVUZOcUwxQjRaRTVqTUVjekNtNXNRelpzTUdsQ05XUm9SR1ZPY0ZoR1RWQllUMkpWUWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTbmRKUWtGQlMwTkJaMFZCTUVoTVZFTnRWMjQ1UWxZeVUyZEhaQzlSTlM4eWFHMDNSRkZRTTB0UFFYUXdSbVJETTBwclNFbE5jbWRsUW1kRENsbERiVWxxUmtKclVtNURTR3hOYzB0bmVVRmhUMk5zVldGS1MyUlpVVnBYY2tZeVpEVmhWVUpMTHpWcFZuWTFlSGhtTHpBelZqZzFibUV3V0hvNVRERUtWR2c0VlZVemFFVTFhVlJyY1dkclozTTBhVzFtTlhKRksybEtWWFV6VURJdllYWkVNMFpQY0dWUlYxaHNaRmhYTUhSNE1YVjBha05yU1d3eVQwTkNWd3B6VVd0T04zWnpjbVZoTDBwRFozazVUR05uTVhsMGNERk9RVko2Tldkek4xTlRMMHBrV1VsdWFGVkJNRTU1SzJFNE1FVXJUa3RGY1VkcEt6QlZlR3c1Q25neFF5dGlWRU5KZG1wVVlVNUZVV2hLUmxwVVFTOUpPV0o0VGtZeVZFNTZRMEpEYTBzMlpUbFJTRGRWUlM5bk5WWXJhVnBGVWpaRFRsQkxaV3gxYlZVS2NEbFZjV0pXVEZwMFNFUXJWMFY2TURGT1NVRkdkRTlKTVdKaWVUaGtTQ3RRV2paRmVrVTBjRTlJYkhaM2FGWlFMMDFwTlRVdllreFZha05YVERkRlJ3cEVabUpIYXpCU1kybzVWSEJuTUdoUVJXVTJMekZTSzFod1VGSlBTMmRLWjBzclMwZHNjRXR3TDA1T09YUnFOelo0YlROd05URnBSSGwzVkdFMVJXZFlDbXhhYjBsRWVEaFJaMjlqVW1sS1FtdFRWR1o1UTJGRlVqaHBhM29yUlZaUFUxaHNVVlZ2TmtaSGIwSmhNMEYyWXpGdmJXWnpZa2M1Y0VNck0zQlJTbUlLV1ROSWJWVnZSbGdyT1M5amEwMWxTMVoyT0hvM2JFdE9kQzk1UXpaT2FVSlVRbnByYjFsdlpDdEVVSGR5WWsweVR6ZDZkelZwVVd4d05rSkNUbk54Wmdwd1RsZEhVVFJXWmpCYVJuUldiV0ZGVUc0eVN5OTFaMWwxU25VM1NGcHlUWE41ZDBodWVEbG5VWGhTT0hnemNTdHhWRVZGYkhKekt6Rk5PVk42UkhSdENsTXZTVkpRTUU0MWNYaDBOMU14WTNOTlkweFhTbGhzY3pjeGRpc3JlRE5DTDNaSmFtazFOREZQT1Znek16SmhNMlJvUnprNU5FTkpRMXBGUTBGM1JVRUtRVkZMUTBGblFVd3lVWEoyZHpGc2NHZFVURXBCUWtOSWVYRlJkblJHYVhsWk4wSlFjbGhhVGt0cWFVNXhNVVZDV25saFpFUk9hRTUxVHpabE9IYzNVUXBDYVU1bGNrc3JOMUpxTjFoWEx6aHNUbTVuYkdoTFR6Sm9iR1Z6VEhSWVJFNHlSa1pwYnpkVE4zcHdkWFp5VUdGd00xUTRRbWRUVmxoVFZHUnVZVGxyQ2pKWFNEVXpRM293Y0RKaE0xTkJaVGhKSzJ4dVFXazVaWFZpTWxoTU1WbHdiamg1S3pSdWJXdFpTVEU0WjJ0bFJYbGFkR3ByTUhJMlNYZGhZM1EzTHk4S01tRk1NbkJGVXpSaWJraEpVblZTTUdkWVFra3JaMmg2YmpOcE1qWm9MM1UzWm1oS2VuSllhVGMyYkcxbGJXRllUMGhFY1dKRU9TczNZa3d4U2psWlRnbzBXbXR3WTFadWF6UTVZM2xIVkcxMWNqUjVMM3BNU0ZWSGIxbExVMU14ZW14blNHUTFURlF4Y25relRVVkZlbU5VTlVnclFpdGlRVW94YVZSQlEzVktDbTEzWVVvMVJUTnBUSFJHT0dWeFpVUmFhazl0TVZGWE4xbFBRWGhXYTJvelpGZDFja0UxVTB0dk1EWlFTR2w1UmpkNU0xaGFUSEZZU0ZGU2QyaGlVMHNLVFZkVE1TdFVNVmx4UTFsWGNWYzFkV2REVTNKSVZrZDNjbFJNYjNob1NFRm5UV1Y1V0ZwcmFFRjJibmhqUTNkWFpURjJZWFZSWlZGcE5ucDBibEY2ZGdweFJYbDRXbTlXVFU5ellUbDBWREJTUmxSRlJraDZlaXRhUWpoUFRXMW5RakZFSzNOeWMwWnNiSEJZYlVOQlNUTkNXWHA1VVRnNGNVVkpObVJYV1dGVENuUlpPSEJWT0ZGa09DdG5RVmxXUTFrMlZYTnNaMjVTWlVSd1JVUllTMUJtV0UxRVVtaFNOa0k1UVZOaFZtaG1RWGxuTWpGbVVXcFhTemhIUTBwUE9Vd0tSRXRzTlM5Mk1UaFJkVk5MTkRNdk4ySjFUa1JKT0doT1NuY3paMDFMWVRCMlZFdFFRV05oT1VoSU5XMTFSVVpGTjNkUmJWQkRiREIyY1RsTE1IaDJaUXBSWlVGWlRrSm1RMVF3TkdsTFNXWm5kVE5XVFdwV1FtOVBNMGRLYUcxbVdWRk1RWFZ5Y1hWQ1N6VXllREUxYjFNeFVVdERRVkZGUVRrM2JsUlBkMUpOQ2pSV2IwWkxOalV4Y1ZwYVIwNVdNMGtyUkRGSmJHSnlRMWg2U0VaemFVeEVjR0pGUlRscFJ6RkdVMmhHZGxab1YzY3dOamRUUTBSR1UydFZabE51TkZjS1REUXJjM0UxZWpkS2EyWXliRmRTVm5OMVZIZ3hVamRXVlZwUE5TOUNSek5qUWpCV1kycHlPRFZhWlV0UVZtOWhRU3N5UjBKR1ZYbEhaVGN2Y0ZkNlpRb3lUMmR4U2pkelJ6VlRTblpMU1hOSlJEa3pLMW92VjBwQ1lWazNjRlExVTFrNVJWVm1aMDVrYjJKVFNtZGhNalZLWms1cGIxTlRPUzlKT1V0V05HY3hDbmhTUkZaeFRqUm9ja0prY0cxc1RVWlBSQ3QxTkVjeFQyRlVialozUmtzeGRVbFJSRFJPVTI5VllXOXlRVGxLTlhjd1UxUkNhazlCZEZCSGJuZHVjVk1LYXpWTldFOXRaMlptYm5ONWVEaHFTMjVJYjBaUWRXdGtOMlZIV1ZsUlYzTnJOR1F3TmxFeE1UUjVLM3BNTW5sR1NtUnlTV2szVW5FdmNFRjRVVTlvVlFveWREa3ZTVE56V1dwcVdtc3ZkMHREUVZGRlFURXlhMjkyVldKMldVOHZOVWx6VlV4Q2MyNHpWVTE0VkdzM05HaEtNV3RaU25sUFJFRndObTlKYmpSSkNrMW1UMmgzWlhsSFVqVlNLMUJCTjBOb09UZFpRbEJDVjFseVVpOTJWVWxhVWxWelNqUktPRWRDYVdSUWVISnhTblJNY0c1bldsQlVhR1JKYVhOQ1NUY0thVWgxTUN0T01YRnNXRlF4V21SNmJqaFRURlEzZEZaNksxVldOMEZVUjB0UGFsTmxNbEJYTTA1WU9EZHdiRUYxYzJ4aGEzaHJVV1ZZTTJGeFpqWnZSZ3B5Ym5WSFQxSkJRMHRQYVcxSk1GZERaVU4yUzNOemNFUmljRXhKZDFWU1VqVXJibkp4WW5wUWRUWjRha0ZMWm0xNlFtTXZRbmRVY25nck1YVkpiMXAxQ2xvMWJqUlRNVTFTVjFGMmF6SnJRV0pRYlRSa1VqWnZXV1ZhVEdKMmJUaFJNRVJ2SzFOalJVTktLMk5qWlVsaWNERTRhbGh6T1ZrclpFaHJkMUJsYUZZS01DdHNkbXAyVDNWalREWTBRMmcwTlU5dFZ6SXpRM0F4YzBGdmJuVjFhRVJoWTFSa05WUk1RbUozUzBOQlVVSmthSFYyYjBGVVUyaGtRMGt4Ym5KV1VBcHdTM1V6U2tWU2JUZEpVa1lyTWlzNVJIZGhUSFppU2s5RlUzQkdXSFUyUjBsWFJreEliRzlNWms5TllWWlVNRWhWUm1WRVFWWXlVVGhXWVVseFJXcDBDalpCWlVJeVdrczVZWFJEWlROUVp5dDRNVFZXWlRjM1l6bHBORTV3V2xkeVprODBNVkZhY0VjeE1YUmpjMWR0Y2k5ME4wZzNkbGR1ZDA5bFFtWnZkMWtLTkVWd1JtSldRa3MxVlRWVGJ6VkljVGQ0Y21aNFZYSklOSEl3ZHpSclduTmpZMUJyYTA1cmVFdGtWMWczTURWSVZucFpSRWhEY205NmRsWk1kbmx1U2dwV2EwZEtaMVZUWTA5MlltdFNiMEoyUnk5UEszWnlkR0pCV1ZOU1ZYUnBSbXhLUTA4M1pEQkplWGhCVkV4RmFYZG9MMmRHV21NclNFcGxZVVZLTmtkVkNsZERSVkUyYnpoTlUzTnNSMDlwT0ZKcE4xaEVSVFpvV0ZCeVNERTVlRFJHSzNoR1ZXMHdNR1IzU2poemJEVTBOVzhyYW10cU5VeFNNamhYWkdWTVJVb0tjVU5IZWtGdlNVSkJSa05SWWxGTk1XZzBkMHN4U0ZCNmJrTmphVE5HVDJ0NE9VWnRPVGhHWlhGb1JHaFZSSFJ1YlZaNWJFcEhNa05SUlhCdFMzVmhWUXB1UVROalR6RmtWSFZvYkVkNGFHaFBhRGhSUWprMksxb3pRWHBrYWxGUk5rdGlWV0Y1VTNkR01UTmFORVZzUm01blZDc3lOR1p6ZFhkVlYyVnJhVVp3Q25ncmIyTkVPR1ExUkdscGVWQndha3BMY2sxTmEzcFZiblozTVVsQlVXbExSMGxaWjFWUllUQk1lRnBWU0dOUU5HWjBXVmRuWkRrM1NsZ3djMEp3VEVVS1UwaGlRM0JaVWt0YVNtOTJNbUkxSzA5WlZraENlR05yZG5SWlVqTjFVRVJIY0dkQ1RTdHROaTlCUTJ4RU5GbE1kaTluTjNKUmEydGFaQzlQU25CMlZ3cFFabG9yY1ZoSVZTOTZRbmhhYjNZMWNVTlFNa3REVTI4d0sydEVkbU50YzNZeFNUUnhlbUpuVlVGU1luRmhiMjlPVTI1RFVHMDVkVlJEU0RjNE5EaEtDbFpaTWpkT1p6UnZVWEJpWm1KdWNYcHZXalZtUW1VclIwTk1UMVJKZUUxRFoyZEZRVkZUU1RoaE1qUXdjVTVoWlZScGNtb3ZhVEZ3Y1VKelNraG5LME1LUkVKUVNqVnRhVVJ1WmxOTVNtRkhiMDl6TDFSU1VXVXZPVUZ0TlhWRFdHTnZNRko0YVZkc1ZHczVUVVZaVUVNck9FczJOVUp4VXpSb1JYVnFlRTVSY2dvd1ZVOHdSVWRNUlZOM1VFbHJOekZxVEZWbGNqWlNWR2R3ZGpCMlNqTk9NMGtyT0d0emMzVlVablJQWmtWSk1DdEVVRWxpWjFoSWJsZFRURWxWUVZodkNtbzRhbXczTnpWd2JHdENMekI0ZVZscU5HMUhibm95YzIxalVXSlJWR2R4UjBoSGRYaE9VVzFYYUVSdk0xcFBOaXRRZW5KV04yeHJUVTVWZDBSMFdua0taa0o1U1VKWmNHdFNZMGx2V1hsUmJEQnBSaTlpYVNzelYxaE1PVWhoY25SV09UaDVSVVJxS3pVM1dpODJZMU5sVERZNWNEUklPV05GUm5aVllqa3hUQW81TVdWeWJEVjNNbnBIVmpBeU1rVnljMGRFVGtOVFF6VnBOVzFLUlZFM05XWldOeXR2ZVV3NGVYQlFVM2Q0VEZSM01IVTROekZtU0UxQlBUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogbnd2NXpwZmxubXRoYTUwMnNuY2JqMHY3d242YXF6aHVjN2Q1MXZldjNmcTFnbXV0OTQ3aHVlazZ1aGYzYWpkcDk5cGJhdGl6d2swaTE3ZXQ1MHNwNnI4dGZpNDJ1eG1seG8zZ2E2OWI4M3h0YjY3Z3VzY3I1OHdnaHJ1bGl3bW8K\"\ + \n }\n ]\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0db1da4-8b12-4d03-bc78-766d875589b8?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4289' + - '13080' content-type: - application/json date: - - Wed, 26 Apr 2023 08:03:42 GMT + - Wed, 14 Jun 2023 18:21:06 GMT expires: - '-1' pragma: @@ -2927,33 +1746,36 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks scale + - aks get-credentials Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -n --node-count + - -g -n -f User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0db1da4-8b12-4d03-bc78-766d875589b8?api-version=2016-03-30 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"a41ddbb0-128b-034d-bc78-766d875589b8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T08:03:43.2303772Z\"\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSU1dKSlNWTlNSVWg1ZERSalMzVlNkMGQzWlhseGFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYaFBSRUV6VGtSYVlVZEJPSGxOUkZWNlRVUlplRTVFUlRSTlZHTXdUbXh2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSUENpOUZhV2d5TTBSNFRtMTRVMkpMUXk4eVYzQjFWRXgzYlZwMGFGWjRNbTVwVTBSdE9YWTFWMlpoWkdKVFRHRTFiWE4wU0ZWT0wzSkdUSFo0YlN0UVdXWUtWRlZWUkVveVFuSm9LMUJOZDBOT09IZDJiM2x2Y1ZKR1NFdFZiRVJGT1VNM1ltbHFWRUZwTXpOUVdsRkNhMjlLT1d0U2VEbHlNelUxUkhWbmJXMDJaUXBZV1ZFNFNYQnRMekZLUXpkTlFuaGllV1I1Y0Rsc0wwbENaVFk1Y2pOQ1VtcFZiV2R5TURkellXcFBRemhET1RKMmNDOWFRVFJYWjNOdUwwcE1kVmRJQ25WdVNrNVhOMnBtVldOcU0zbGFZVTlHTkU5bFoweHFkMWhRVWxoVFMyOUdWVkpGZG1kVEsyTjJUMnN6UjJsWVkwMVNiak5RZVdkMVprbENRM2w2Y3pFS2JFZ3JaMmREZFdGclZHMVpSelo0UTFGV04wOXZaVmxwYkN0cVVsVTRRVWhOZVV3cmNqazNZekZZWWpCV1FWWnRRbUp6VkVGVFJsSk5jRTlJUTNCUlVBb3JVMVZTWjBsNlVYY3pSbkJOZWxCaVoyVldOMmRLTVd4NWQzaDJjVUZTY2pad2JVcGpObEl6V21sMFRVOWlXa1J4VVhNM01WQmlUelZMZVhGT1Nua3JDbmRZT1U0MVRXUm9ieXR2VTI5Sk1sZzFUbWR4Y1hWV2NrZERNVmRGTVZsck16Wk9SMFk1TlVNNUwwZ3JlRWRQZDAxdVNsUnJVMEZCYjNoSmFIaHliSGdLUjFnemRrUk1WVlI2T0hGRVdqRTVMMlYzZURGNFZqUkhTWHBxYWxZd2VXZGtXalF3V1d4dlFWSm1SRmwxV20wdlkzUXpUa3AwVkZnM2FUaEJRbk5HUmdwbWJIcDVNSGxyUTBvck1HZHJWblU1VURsTUszZHlXRzB6U0c5dWNXSlZiRVJ3Y0dSM1kySXZlbWQ0YzJsU1oyeFVOamRCV1daRmR6UkhUazkxYVVFMkNrNTNWWE5LZDFsbVNHUlpZakE1YTBoa1EwdG1kWGRZYkZkNFJsTXpOMUYwYW5wTE1tMXZkMWs1Vmpod1ZsVnRjVXhzZFZGRGR6SkpXWGhoVFdsU1JYUUtOR3BVY0dOaFFqUklLMVo2VFZKb2VrZGlkeTlKTkd3dlVraFBTa016Y0VkTmJWbFJNRzVZZW1aM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWbGF6azNkblZvYlRZMFZFUXdPR0ZEQ21KdGJtTlhla3RhWWtwRmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRVFXbFNLMFZvY0RCSE1IUlFVSEpTWkdrNGFUTkZOMmRoWW1ZS1kzUnBUVTFEU2pCQ2JHczNjWFZIVW0xR2Ixb3ZhSGRNZFRoVlpYTk9RMnhRUkRKQlF6SjBhMnBVUjFJeFdqa3dUWG80Y2t0aE5Vb3ZiMHBVVFZWd1JncFBaRzU1TTJ0UWFsUlVPV3h4Vm1wNGFYRk1WMlZRWWtjck5IbE1ZMHB6S3pKaFZsWjZTRmRIUzFoMFZHSmpVSE5UTWxKUE5rbzJhazVNYmpaT2VYaEpDblZYVm1acVowOXlNV2hqZUZoaWNrcE1ZazV3YVZsSWVqWmlaMFJQT0ZreEx6VkxWVlJSWVhRNE4xaGtRMUprWTJoVGQzZHJiVXRRVm14MmMyMXZkemtLWkhFdmFsWkRSemhGTDFoSFduQkZSV1JVU0haU2FVRXlSMUk1VTBad1NGWnNPRUZuTVM5cFRITXJVRkpwWkVzcmNUWllXVVpEY2paelUzRlpVMlE0YndwS01GZDZhWEpITUUxb1pqSkxNMk5LV25ObGJuaHdRbk5hZURGU05GZEhibTVCTlVGQlpGVlhaV0ZhWmxwWVEzZ3pTV1Z3Um5KNllXVXdZVk55VDBwbUNtdzROMk5oYVdGT05FTXljMW8zYmxwclZIRk5abGs0VFRaamJ6UTRPRlY2Tmxod1YweHFkMUF3UmxOUlMwRlJXVEZUUVdwbVZHWnZMMWgxVjFsNk1qUUtLM2RoVEM5dFZuQnJUMWRWTVVRelJVVlRkSGRhTmtkWmRYRlViRTAxYlhad1NtSXpiVzFJYUZwdWNuSTVWVk40VFVkS1UyTlpSVVJGTjNJMmVGWXhNd3BrVm5aUmRFbEVUVFk0VGxkVWVsVTNMM2Q0YzI4eUsydDNWSE5JWTJSWWQwUkpLM0JtUjNOVlZXeEhXRlZUYjNwaVIyVlNLMUU0U1RKek5tbGxlRWxOQ2pabFp6VTNURzByUzNOaFpIUk1VemgzZVZsM2Qwa3ZlRk5HU2tGM1RYbENSakJZY1dsa1prOVJZMGgxTkhaQlpXSXlOa2RvZFdoM2FHb3pXRGx4T0hvS2VEUlhPRXc1VUd4NFdXWTBhbTUyYmxKSE15dGpOMGRtTDNwRVMxRmljMnhZV0hSNFR6bG1URWhJTjNaNFZtMDVaMFkyU21ORVNtSlZlVWhPVVhWWlZRcHdTMmQ2VVdsR1YyYzNRbFZhS3l0UkNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2NjZnJseWItejI3ODUwZ2QuaGNwLndlc3RjZW50cmFsdXMuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RvcmdkdHcKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RvcmdkdHcKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3R1ZHVieWRiaDRuX2NsaWFrc3Rlc3RvcmdkdHcKICBuYW1lOiBjbGlha3N0ZXN0b3JnZHR3CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdG9yZ2R0dwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3R1ZHVieWRiaDRuX2NsaWFrc3Rlc3RvcmdkdHcKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVkE1WkdSU2VYUmxRWEZqWldoVlNtcEhaVVJKZUd0M1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxUlRCTlZHZDNUbnBSTWxkb1kwNU5hbFYzVG1wRk1FMVVaM2hPZWxFeVYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCTUVoTVZFTnRWMjQ1UWxZeVUyZEhaQzlSTlM4S01taHROMFJSVUROTFQwRjBNRVprUXpOS2EwaEpUWEpuWlVKblExbERiVWxxUmtKclVtNURTR3hOYzB0bmVVRmhUMk5zVldGS1MyUlpVVnBYY2tZeVpBbzFZVlZDU3k4MWFWWjJOWGg0Wmk4d00xWTROVzVoTUZoNk9Vd3hWR2c0VlZVemFFVTFhVlJyY1dkclozTTBhVzFtTlhKRksybEtWWFV6VURJdllYWkVDak5HVDNCbFVWZFliR1JZVnpCMGVERjFkR3BEYTBsc01rOURRbGR6VVd0T04zWnpjbVZoTDBwRFozazVUR05uTVhsMGNERk9RVko2Tldkek4xTlRMMG9LWkZsSmJtaFZRVEJPZVN0aE9EQkZLMDVMUlhGSGFTc3dWWGhzT1hneFF5dGlWRU5KZG1wVVlVNUZVV2hLUmxwVVFTOUpPV0o0VGtZeVZFNTZRMEpEYXdwTE5tVTVVVWczVlVVdlp6VldLMmxhUlZJMlEwNVFTMlZzZFcxVmNEbFZjV0pXVEZwMFNFUXJWMFY2TURGT1NVRkdkRTlKTVdKaWVUaGtTQ3RRV2paRkNucEZOSEJQU0d4MmQyaFdVQzlOYVRVMUwySk1WV3BEVjB3M1JVZEVabUpIYXpCU1kybzVWSEJuTUdoUVJXVTJMekZTSzFod1VGSlBTMmRLWjBzclMwY0tiSEJMY0M5T1RqbDBhamMyZUcwemNEVXhhVVI1ZDFSaE5VVm5XR3hhYjBsRWVEaFJaMjlqVW1sS1FtdFRWR1o1UTJGRlVqaHBhM29yUlZaUFUxaHNVUXBWYnpaR1IyOUNZVE5CZG1NeGIyMW1jMkpIT1hCREt6TndVVXBpV1ROSWJWVnZSbGdyT1M5amEwMWxTMVoyT0hvM2JFdE9kQzk1UXpaT2FVSlVRbnByQ205WmIyUXJSRkIzY21KTk1rODNlbmMxYVZGc2NEWkNRazV6Y1dad1RsZEhVVFJXWmpCYVJuUldiV0ZGVUc0eVN5OTFaMWwxU25VM1NGcHlUWE41ZDBnS2JuZzVaMUY0VWpoNE0zRXJjVlJGUld4eWN5c3hUVGxUZWtSMGJWTXZTVkpRTUU0MWNYaDBOMU14WTNOTlkweFhTbGhzY3pjeGRpc3JlRE5DTDNaSmFncHBOVFF4VHpsWU16TXlZVE5rYUVjNU9UUkRTVU5hUlVOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWWldzNU4zWjFhRzBLTmpSVVJEQTRZVU5pYlc1alYzcExXbUpLUlhkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCUmpVeWRqWXhRbk5tV1Rsc1ZYbFpNVlI2TXdveGJsaFljbWMzWjJSamQxbHpXR2t2YTBaTU9UZDBRVGhQY21oNWFETTJSM3AyTWxGdlNGUkdXV2hrU0doT2NYYzFWbkZ2Tkd0TVMyRk5ObGx4VjB0YUNuUTVXVnBGYlROVFZqaEtZelI0VTFabVdXa3hURFJNTXpKYVJFZGtVa0ptYmtaRGQyOVhkMHRTVW1nNGMyeFVkVFUwY1ZkU1FVcHlWR0l5UkhkeFdVb0tTMUpoYUVwWVQydGxaVGhWWm1nMGJFY3lUamRYTW01WU1UTnNTV3hxTVVWb2NXeHJOVlJpYmxsVGR5ODJTalI0Y3l0eVkzQjNhMFJ0ZG5aRWFETmhOQXBMUjFSRU5HNTRRM0ZIWWtKS04yMTJOR0pUYVdSWmJqUklTMGRhT1RoRWFuZE1OVkF3U1VZeFZFbGlNazV2YzI5aWFWWlhjaXRoV1VKVGFrYzRUM0ZwQ2pWNlFqVndUekpsT1ZJclIzQlBSMnRLYkVKTU9GaFdTbGxVTjFSU2VUTm1ObE54ZDJKUWVGTnFZelJ0Wkc4ek1WZzFZVkl3VUhONVJWbE5NM2cxUkhvS1dEVm5TblpNWWpaRlMyNUVlVU5DT1M5TlRFTlRTMHB0YTBoUlVFWnBjVkpHT0hKemRHcFZZMk00ZG14b1RucHdRMFZvU2s5bmMycDNLemx2UWs0MlRRbzRVV1JPUzBWS01HbENlV2x6ZVUxRVFVTjNaVTVZVTBVME1GZHJkV1JsZG5kelltSmhTVWt5Y0ZCWmRrODFNMnRQY1c4NGF6ZFZlbU5QWjJScVdISmtDbVVyUzJneE56ZGlWa1JKVEhoTmRVZExkRzRyWWxSU2JIbEJOa3BZTTFSM1RXd3ZNSG8xZFRkVFEyd3JSRU13V0hoS1ZHOUJOVlp5TTJKUGVFVXdTbllLY2xBdmFHTlljbFpTUmxkMUswaGFiM1JIWmpScU5EZGhTRFpRVFU5MWNqa3ZXWE5GVkM5SmIwcG9UV1YxUTB0M1NHRjRNV2x5WWpGMVpsRnNSR2h1YlFwcWRVSXJaeTlMZVZOUVVUTkZMM3BxWW1kRU1uQnhhVEp2Um5oamJsTlNUa1Y1UmpSSE1sVkRla2N2VFcxSVJ6TjVPVEZDVUZOcUwxQjRaRTVqTUVjekNtNXNRelpzTUdsQ05XUm9SR1ZPY0ZoR1RWQllUMkpWUWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTbmRKUWtGQlMwTkJaMFZCTUVoTVZFTnRWMjQ1UWxZeVUyZEhaQzlSTlM4eWFHMDNSRkZRTTB0UFFYUXdSbVJETTBwclNFbE5jbWRsUW1kRENsbERiVWxxUmtKclVtNURTR3hOYzB0bmVVRmhUMk5zVldGS1MyUlpVVnBYY2tZeVpEVmhWVUpMTHpWcFZuWTFlSGhtTHpBelZqZzFibUV3V0hvNVRERUtWR2c0VlZVemFFVTFhVlJyY1dkclozTTBhVzFtTlhKRksybEtWWFV6VURJdllYWkVNMFpQY0dWUlYxaHNaRmhYTUhSNE1YVjBha05yU1d3eVQwTkNWd3B6VVd0T04zWnpjbVZoTDBwRFozazVUR05uTVhsMGNERk9RVko2Tldkek4xTlRMMHBrV1VsdWFGVkJNRTU1SzJFNE1FVXJUa3RGY1VkcEt6QlZlR3c1Q25neFF5dGlWRU5KZG1wVVlVNUZVV2hLUmxwVVFTOUpPV0o0VGtZeVZFNTZRMEpEYTBzMlpUbFJTRGRWUlM5bk5WWXJhVnBGVWpaRFRsQkxaV3gxYlZVS2NEbFZjV0pXVEZwMFNFUXJWMFY2TURGT1NVRkdkRTlKTVdKaWVUaGtTQ3RRV2paRmVrVTBjRTlJYkhaM2FGWlFMMDFwTlRVdllreFZha05YVERkRlJ3cEVabUpIYXpCU1kybzVWSEJuTUdoUVJXVTJMekZTSzFod1VGSlBTMmRLWjBzclMwZHNjRXR3TDA1T09YUnFOelo0YlROd05URnBSSGwzVkdFMVJXZFlDbXhhYjBsRWVEaFJaMjlqVW1sS1FtdFRWR1o1UTJGRlVqaHBhM29yUlZaUFUxaHNVVlZ2TmtaSGIwSmhNMEYyWXpGdmJXWnpZa2M1Y0VNck0zQlJTbUlLV1ROSWJWVnZSbGdyT1M5amEwMWxTMVoyT0hvM2JFdE9kQzk1UXpaT2FVSlVRbnByYjFsdlpDdEVVSGR5WWsweVR6ZDZkelZwVVd4d05rSkNUbk54Wmdwd1RsZEhVVFJXWmpCYVJuUldiV0ZGVUc0eVN5OTFaMWwxU25VM1NGcHlUWE41ZDBodWVEbG5VWGhTT0hnemNTdHhWRVZGYkhKekt6Rk5PVk42UkhSdENsTXZTVkpRTUU0MWNYaDBOMU14WTNOTlkweFhTbGhzY3pjeGRpc3JlRE5DTDNaSmFtazFOREZQT1Znek16SmhNMlJvUnprNU5FTkpRMXBGUTBGM1JVRUtRVkZMUTBGblFVd3lVWEoyZHpGc2NHZFVURXBCUWtOSWVYRlJkblJHYVhsWk4wSlFjbGhhVGt0cWFVNXhNVVZDV25saFpFUk9hRTUxVHpabE9IYzNVUXBDYVU1bGNrc3JOMUpxTjFoWEx6aHNUbTVuYkdoTFR6Sm9iR1Z6VEhSWVJFNHlSa1pwYnpkVE4zcHdkWFp5VUdGd00xUTRRbWRUVmxoVFZHUnVZVGxyQ2pKWFNEVXpRM293Y0RKaE0xTkJaVGhKSzJ4dVFXazVaWFZpTWxoTU1WbHdiamg1S3pSdWJXdFpTVEU0WjJ0bFJYbGFkR3ByTUhJMlNYZGhZM1EzTHk4S01tRk1NbkJGVXpSaWJraEpVblZTTUdkWVFra3JaMmg2YmpOcE1qWm9MM1UzWm1oS2VuSllhVGMyYkcxbGJXRllUMGhFY1dKRU9TczNZa3d4U2psWlRnbzBXbXR3WTFadWF6UTVZM2xIVkcxMWNqUjVMM3BNU0ZWSGIxbExVMU14ZW14blNHUTFURlF4Y25relRVVkZlbU5VTlVnclFpdGlRVW94YVZSQlEzVktDbTEzWVVvMVJUTnBUSFJHT0dWeFpVUmFhazl0TVZGWE4xbFBRWGhXYTJvelpGZDFja0UxVTB0dk1EWlFTR2w1UmpkNU0xaGFUSEZZU0ZGU2QyaGlVMHNLVFZkVE1TdFVNVmx4UTFsWGNWYzFkV2REVTNKSVZrZDNjbFJNYjNob1NFRm5UV1Y1V0ZwcmFFRjJibmhqUTNkWFpURjJZWFZSWlZGcE5ucDBibEY2ZGdweFJYbDRXbTlXVFU5ellUbDBWREJTUmxSRlJraDZlaXRhUWpoUFRXMW5RakZFSzNOeWMwWnNiSEJZYlVOQlNUTkNXWHA1VVRnNGNVVkpObVJYV1dGVENuUlpPSEJWT0ZGa09DdG5RVmxXUTFrMlZYTnNaMjVTWlVSd1JVUllTMUJtV0UxRVVtaFNOa0k1UVZOaFZtaG1RWGxuTWpGbVVXcFhTemhIUTBwUE9Vd0tSRXRzTlM5Mk1UaFJkVk5MTkRNdk4ySjFUa1JKT0doT1NuY3paMDFMWVRCMlZFdFFRV05oT1VoSU5XMTFSVVpGTjNkUmJWQkRiREIyY1RsTE1IaDJaUXBSWlVGWlRrSm1RMVF3TkdsTFNXWm5kVE5XVFdwV1FtOVBNMGRLYUcxbVdWRk1RWFZ5Y1hWQ1N6VXllREUxYjFNeFVVdERRVkZGUVRrM2JsUlBkMUpOQ2pSV2IwWkxOalV4Y1ZwYVIwNVdNMGtyUkRGSmJHSnlRMWg2U0VaemFVeEVjR0pGUlRscFJ6RkdVMmhHZGxab1YzY3dOamRUUTBSR1UydFZabE51TkZjS1REUXJjM0UxZWpkS2EyWXliRmRTVm5OMVZIZ3hVamRXVlZwUE5TOUNSek5qUWpCV1kycHlPRFZhWlV0UVZtOWhRU3N5UjBKR1ZYbEhaVGN2Y0ZkNlpRb3lUMmR4U2pkelJ6VlRTblpMU1hOSlJEa3pLMW92VjBwQ1lWazNjRlExVTFrNVJWVm1aMDVrYjJKVFNtZGhNalZLWms1cGIxTlRPUzlKT1V0V05HY3hDbmhTUkZaeFRqUm9ja0prY0cxc1RVWlBSQ3QxTkVjeFQyRlVialozUmtzeGRVbFJSRFJPVTI5VllXOXlRVGxLTlhjd1UxUkNhazlCZEZCSGJuZHVjVk1LYXpWTldFOXRaMlptYm5ONWVEaHFTMjVJYjBaUWRXdGtOMlZIV1ZsUlYzTnJOR1F3TmxFeE1UUjVLM3BNTW5sR1NtUnlTV2szVW5FdmNFRjRVVTlvVlFveWREa3ZTVE56V1dwcVdtc3ZkMHREUVZGRlFURXlhMjkyVldKMldVOHZOVWx6VlV4Q2MyNHpWVTE0VkdzM05HaEtNV3RaU25sUFJFRndObTlKYmpSSkNrMW1UMmgzWlhsSFVqVlNLMUJCTjBOb09UZFpRbEJDVjFseVVpOTJWVWxhVWxWelNqUktPRWRDYVdSUWVISnhTblJNY0c1bldsQlVhR1JKYVhOQ1NUY0thVWgxTUN0T01YRnNXRlF4V21SNmJqaFRURlEzZEZaNksxVldOMEZVUjB0UGFsTmxNbEJYTTA1WU9EZHdiRUYxYzJ4aGEzaHJVV1ZZTTJGeFpqWnZSZ3B5Ym5WSFQxSkJRMHRQYVcxSk1GZERaVU4yUzNOemNFUmljRXhKZDFWU1VqVXJibkp4WW5wUWRUWjRha0ZMWm0xNlFtTXZRbmRVY25nck1YVkpiMXAxQ2xvMWJqUlRNVTFTVjFGMmF6SnJRV0pRYlRSa1VqWnZXV1ZhVEdKMmJUaFJNRVJ2SzFOalJVTktLMk5qWlVsaWNERTRhbGh6T1ZrclpFaHJkMUJsYUZZS01DdHNkbXAyVDNWalREWTBRMmcwTlU5dFZ6SXpRM0F4YzBGdmJuVjFhRVJoWTFSa05WUk1RbUozUzBOQlVVSmthSFYyYjBGVVUyaGtRMGt4Ym5KV1VBcHdTM1V6U2tWU2JUZEpVa1lyTWlzNVJIZGhUSFppU2s5RlUzQkdXSFUyUjBsWFJreEliRzlNWms5TllWWlVNRWhWUm1WRVFWWXlVVGhXWVVseFJXcDBDalpCWlVJeVdrczVZWFJEWlROUVp5dDRNVFZXWlRjM1l6bHBORTV3V2xkeVprODBNVkZhY0VjeE1YUmpjMWR0Y2k5ME4wZzNkbGR1ZDA5bFFtWnZkMWtLTkVWd1JtSldRa3MxVlRWVGJ6VkljVGQ0Y21aNFZYSklOSEl3ZHpSclduTmpZMUJyYTA1cmVFdGtWMWczTURWSVZucFpSRWhEY205NmRsWk1kbmx1U2dwV2EwZEtaMVZUWTA5MlltdFNiMEoyUnk5UEszWnlkR0pCV1ZOU1ZYUnBSbXhLUTA4M1pEQkplWGhCVkV4RmFYZG9MMmRHV21NclNFcGxZVVZLTmtkVkNsZERSVkUyYnpoTlUzTnNSMDlwT0ZKcE4xaEVSVFpvV0ZCeVNERTVlRFJHSzNoR1ZXMHdNR1IzU2poemJEVTBOVzhyYW10cU5VeFNNamhYWkdWTVJVb0tjVU5IZWtGdlNVSkJSa05SWWxGTk1XZzBkMHN4U0ZCNmJrTmphVE5HVDJ0NE9VWnRPVGhHWlhGb1JHaFZSSFJ1YlZaNWJFcEhNa05SUlhCdFMzVmhWUXB1UVROalR6RmtWSFZvYkVkNGFHaFBhRGhSUWprMksxb3pRWHBrYWxGUk5rdGlWV0Y1VTNkR01UTmFORVZzUm01blZDc3lOR1p6ZFhkVlYyVnJhVVp3Q25ncmIyTkVPR1ExUkdscGVWQndha3BMY2sxTmEzcFZiblozTVVsQlVXbExSMGxaWjFWUllUQk1lRnBWU0dOUU5HWjBXVmRuWkRrM1NsZ3djMEp3VEVVS1UwaGlRM0JaVWt0YVNtOTJNbUkxSzA5WlZraENlR05yZG5SWlVqTjFVRVJIY0dkQ1RTdHROaTlCUTJ4RU5GbE1kaTluTjNKUmEydGFaQzlQU25CMlZ3cFFabG9yY1ZoSVZTOTZRbmhhYjNZMWNVTlFNa3REVTI4d0sydEVkbU50YzNZeFNUUnhlbUpuVlVGU1luRmhiMjlPVTI1RFVHMDVkVlJEU0RjNE5EaEtDbFpaTWpkT1p6UnZVWEJpWm1KdWNYcHZXalZtUW1VclIwTk1UMVJKZUUxRFoyZEZRVkZUU1RoaE1qUXdjVTVoWlZScGNtb3ZhVEZ3Y1VKelNraG5LME1LUkVKUVNqVnRhVVJ1WmxOTVNtRkhiMDl6TDFSU1VXVXZPVUZ0TlhWRFdHTnZNRko0YVZkc1ZHczVUVVZaVUVNck9FczJOVUp4VXpSb1JYVnFlRTVSY2dvd1ZVOHdSVWRNUlZOM1VFbHJOekZxVEZWbGNqWlNWR2R3ZGpCMlNqTk9NMGtyT0d0emMzVlVablJQWmtWSk1DdEVVRWxpWjFoSWJsZFRURWxWUVZodkNtbzRhbXczTnpWd2JHdENMekI0ZVZscU5HMUhibm95YzIxalVXSlJWR2R4UjBoSGRYaE9VVzFYYUVSdk0xcFBOaXRRZW5KV04yeHJUVTVWZDBSMFdua0taa0o1U1VKWmNHdFNZMGx2V1hsUmJEQnBSaTlpYVNzelYxaE1PVWhoY25SV09UaDVSVVJxS3pVM1dpODJZMU5sVERZNWNEUklPV05GUm5aVllqa3hUQW81TVdWeWJEVjNNbnBIVmpBeU1rVnljMGRFVGtOVFF6VnBOVzFLUlZFM05XWldOeXR2ZVV3NGVYQlFVM2Q0VEZSM01IVTROekZtU0UxQlBUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogbnd2NXpwZmxubXRoYTUwMnNuY2JqMHY3d242YXF6aHVjN2Q1MXZldjNmcTFnbXV0OTQ3aHVlazZ1aGYzYWpkcDk5cGJhdGl6d2swaTE3ZXQ1MHNwNnI4dGZpNDJ1eG1seG8zZ2E2OWI4M3h0YjY3Z3VzY3I1OHdnaHJ1bGl3bW8K\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '126' + - '13080' content-type: - application/json date: - - Wed, 26 Apr 2023 08:03:42 GMT + - Wed, 14 Jun 2023 18:21:08 GMT expires: - '-1' pragma: @@ -2968,6 +1790,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -2975,33 +1799,36 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks scale + - aks get-credentials Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -n --node-count + - -g -n -f User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0db1da4-8b12-4d03-bc78-766d875589b8?api-version=2016-03-30 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"a41ddbb0-128b-034d-bc78-766d875589b8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T08:03:43.2303772Z\"\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSU1dKSlNWTlNSVWg1ZERSalMzVlNkMGQzWlhseGFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYaFBSRUV6VGtSYVlVZEJPSGxOUkZWNlRVUlplRTVFUlRSTlZHTXdUbXh2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSUENpOUZhV2d5TTBSNFRtMTRVMkpMUXk4eVYzQjFWRXgzYlZwMGFGWjRNbTVwVTBSdE9YWTFWMlpoWkdKVFRHRTFiWE4wU0ZWT0wzSkdUSFo0YlN0UVdXWUtWRlZWUkVveVFuSm9LMUJOZDBOT09IZDJiM2x2Y1ZKR1NFdFZiRVJGT1VNM1ltbHFWRUZwTXpOUVdsRkNhMjlLT1d0U2VEbHlNelUxUkhWbmJXMDJaUXBZV1ZFNFNYQnRMekZLUXpkTlFuaGllV1I1Y0Rsc0wwbENaVFk1Y2pOQ1VtcFZiV2R5TURkellXcFBRemhET1RKMmNDOWFRVFJYWjNOdUwwcE1kVmRJQ25WdVNrNVhOMnBtVldOcU0zbGFZVTlHTkU5bFoweHFkMWhRVWxoVFMyOUdWVkpGZG1kVEsyTjJUMnN6UjJsWVkwMVNiak5RZVdkMVprbENRM2w2Y3pFS2JFZ3JaMmREZFdGclZHMVpSelo0UTFGV04wOXZaVmxwYkN0cVVsVTRRVWhOZVV3cmNqazNZekZZWWpCV1FWWnRRbUp6VkVGVFJsSk5jRTlJUTNCUlVBb3JVMVZTWjBsNlVYY3pSbkJOZWxCaVoyVldOMmRLTVd4NWQzaDJjVUZTY2pad2JVcGpObEl6V21sMFRVOWlXa1J4VVhNM01WQmlUelZMZVhGT1Nua3JDbmRZT1U0MVRXUm9ieXR2VTI5Sk1sZzFUbWR4Y1hWV2NrZERNVmRGTVZsck16Wk9SMFk1TlVNNUwwZ3JlRWRQZDAxdVNsUnJVMEZCYjNoSmFIaHliSGdLUjFnemRrUk1WVlI2T0hGRVdqRTVMMlYzZURGNFZqUkhTWHBxYWxZd2VXZGtXalF3V1d4dlFWSm1SRmwxV20wdlkzUXpUa3AwVkZnM2FUaEJRbk5HUmdwbWJIcDVNSGxyUTBvck1HZHJWblU1VURsTUszZHlXRzB6U0c5dWNXSlZiRVJ3Y0dSM1kySXZlbWQ0YzJsU1oyeFVOamRCV1daRmR6UkhUazkxYVVFMkNrNTNWWE5LZDFsbVNHUlpZakE1YTBoa1EwdG1kWGRZYkZkNFJsTXpOMUYwYW5wTE1tMXZkMWs1Vmpod1ZsVnRjVXhzZFZGRGR6SkpXWGhoVFdsU1JYUUtOR3BVY0dOaFFqUklLMVo2VFZKb2VrZGlkeTlKTkd3dlVraFBTa016Y0VkTmJWbFJNRzVZZW1aM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWbGF6azNkblZvYlRZMFZFUXdPR0ZEQ21KdGJtTlhla3RhWWtwRmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRVFXbFNLMFZvY0RCSE1IUlFVSEpTWkdrNGFUTkZOMmRoWW1ZS1kzUnBUVTFEU2pCQ2JHczNjWFZIVW0xR2Ixb3ZhSGRNZFRoVlpYTk9RMnhRUkRKQlF6SjBhMnBVUjFJeFdqa3dUWG80Y2t0aE5Vb3ZiMHBVVFZWd1JncFBaRzU1TTJ0UWFsUlVPV3h4Vm1wNGFYRk1WMlZRWWtjck5IbE1ZMHB6S3pKaFZsWjZTRmRIUzFoMFZHSmpVSE5UTWxKUE5rbzJhazVNYmpaT2VYaEpDblZYVm1acVowOXlNV2hqZUZoaWNrcE1ZazV3YVZsSWVqWmlaMFJQT0ZreEx6VkxWVlJSWVhRNE4xaGtRMUprWTJoVGQzZHJiVXRRVm14MmMyMXZkemtLWkhFdmFsWkRSemhGTDFoSFduQkZSV1JVU0haU2FVRXlSMUk1VTBad1NGWnNPRUZuTVM5cFRITXJVRkpwWkVzcmNUWllXVVpEY2paelUzRlpVMlE0YndwS01GZDZhWEpITUUxb1pqSkxNMk5LV25ObGJuaHdRbk5hZURGU05GZEhibTVCTlVGQlpGVlhaV0ZhWmxwWVEzZ3pTV1Z3Um5KNllXVXdZVk55VDBwbUNtdzROMk5oYVdGT05FTXljMW8zYmxwclZIRk5abGs0VFRaamJ6UTRPRlY2Tmxod1YweHFkMUF3UmxOUlMwRlJXVEZUUVdwbVZHWnZMMWgxVjFsNk1qUUtLM2RoVEM5dFZuQnJUMWRWTVVRelJVVlRkSGRhTmtkWmRYRlViRTAxYlhad1NtSXpiVzFJYUZwdWNuSTVWVk40VFVkS1UyTlpSVVJGTjNJMmVGWXhNd3BrVm5aUmRFbEVUVFk0VGxkVWVsVTNMM2Q0YzI4eUsydDNWSE5JWTJSWWQwUkpLM0JtUjNOVlZXeEhXRlZUYjNwaVIyVlNLMUU0U1RKek5tbGxlRWxOQ2pabFp6VTNURzByUzNOaFpIUk1VemgzZVZsM2Qwa3ZlRk5HU2tGM1RYbENSakJZY1dsa1prOVJZMGgxTkhaQlpXSXlOa2RvZFdoM2FHb3pXRGx4T0hvS2VEUlhPRXc1VUd4NFdXWTBhbTUyYmxKSE15dGpOMGRtTDNwRVMxRmljMnhZV0hSNFR6bG1URWhJTjNaNFZtMDVaMFkyU21ORVNtSlZlVWhPVVhWWlZRcHdTMmQ2VVdsR1YyYzNRbFZhS3l0UkNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2NjZnJseWItejI3ODUwZ2QuaGNwLndlc3RjZW50cmFsdXMuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RvcmdkdHcKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RvcmdkdHcKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3R1ZHVieWRiaDRuX2NsaWFrc3Rlc3RvcmdkdHcKICBuYW1lOiBjbGlha3N0ZXN0b3JnZHR3CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdG9yZ2R0dwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3R1ZHVieWRiaDRuX2NsaWFrc3Rlc3RvcmdkdHcKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVkE1WkdSU2VYUmxRWEZqWldoVlNtcEhaVVJKZUd0M1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxUlRCTlZHZDNUbnBSTWxkb1kwNU5hbFYzVG1wRk1FMVVaM2hPZWxFeVYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCTUVoTVZFTnRWMjQ1UWxZeVUyZEhaQzlSTlM4S01taHROMFJSVUROTFQwRjBNRVprUXpOS2EwaEpUWEpuWlVKblExbERiVWxxUmtKclVtNURTR3hOYzB0bmVVRmhUMk5zVldGS1MyUlpVVnBYY2tZeVpBbzFZVlZDU3k4MWFWWjJOWGg0Wmk4d00xWTROVzVoTUZoNk9Vd3hWR2c0VlZVemFFVTFhVlJyY1dkclozTTBhVzFtTlhKRksybEtWWFV6VURJdllYWkVDak5HVDNCbFVWZFliR1JZVnpCMGVERjFkR3BEYTBsc01rOURRbGR6VVd0T04zWnpjbVZoTDBwRFozazVUR05uTVhsMGNERk9RVko2Tldkek4xTlRMMG9LWkZsSmJtaFZRVEJPZVN0aE9EQkZLMDVMUlhGSGFTc3dWWGhzT1hneFF5dGlWRU5KZG1wVVlVNUZVV2hLUmxwVVFTOUpPV0o0VGtZeVZFNTZRMEpEYXdwTE5tVTVVVWczVlVVdlp6VldLMmxhUlZJMlEwNVFTMlZzZFcxVmNEbFZjV0pXVEZwMFNFUXJWMFY2TURGT1NVRkdkRTlKTVdKaWVUaGtTQ3RRV2paRkNucEZOSEJQU0d4MmQyaFdVQzlOYVRVMUwySk1WV3BEVjB3M1JVZEVabUpIYXpCU1kybzVWSEJuTUdoUVJXVTJMekZTSzFod1VGSlBTMmRLWjBzclMwY0tiSEJMY0M5T1RqbDBhamMyZUcwemNEVXhhVVI1ZDFSaE5VVm5XR3hhYjBsRWVEaFJaMjlqVW1sS1FtdFRWR1o1UTJGRlVqaHBhM29yUlZaUFUxaHNVUXBWYnpaR1IyOUNZVE5CZG1NeGIyMW1jMkpIT1hCREt6TndVVXBpV1ROSWJWVnZSbGdyT1M5amEwMWxTMVoyT0hvM2JFdE9kQzk1UXpaT2FVSlVRbnByQ205WmIyUXJSRkIzY21KTk1rODNlbmMxYVZGc2NEWkNRazV6Y1dad1RsZEhVVFJXWmpCYVJuUldiV0ZGVUc0eVN5OTFaMWwxU25VM1NGcHlUWE41ZDBnS2JuZzVaMUY0VWpoNE0zRXJjVlJGUld4eWN5c3hUVGxUZWtSMGJWTXZTVkpRTUU0MWNYaDBOMU14WTNOTlkweFhTbGhzY3pjeGRpc3JlRE5DTDNaSmFncHBOVFF4VHpsWU16TXlZVE5rYUVjNU9UUkRTVU5hUlVOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWWldzNU4zWjFhRzBLTmpSVVJEQTRZVU5pYlc1alYzcExXbUpLUlhkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCUmpVeWRqWXhRbk5tV1Rsc1ZYbFpNVlI2TXdveGJsaFljbWMzWjJSamQxbHpXR2t2YTBaTU9UZDBRVGhQY21oNWFETTJSM3AyTWxGdlNGUkdXV2hrU0doT2NYYzFWbkZ2Tkd0TVMyRk5ObGx4VjB0YUNuUTVXVnBGYlROVFZqaEtZelI0VTFabVdXa3hURFJNTXpKYVJFZGtVa0ptYmtaRGQyOVhkMHRTVW1nNGMyeFVkVFUwY1ZkU1FVcHlWR0l5UkhkeFdVb0tTMUpoYUVwWVQydGxaVGhWWm1nMGJFY3lUamRYTW01WU1UTnNTV3hxTVVWb2NXeHJOVlJpYmxsVGR5ODJTalI0Y3l0eVkzQjNhMFJ0ZG5aRWFETmhOQXBMUjFSRU5HNTRRM0ZIWWtKS04yMTJOR0pUYVdSWmJqUklTMGRhT1RoRWFuZE1OVkF3U1VZeFZFbGlNazV2YzI5aWFWWlhjaXRoV1VKVGFrYzRUM0ZwQ2pWNlFqVndUekpsT1ZJclIzQlBSMnRLYkVKTU9GaFdTbGxVTjFSU2VUTm1ObE54ZDJKUWVGTnFZelJ0Wkc4ek1WZzFZVkl3VUhONVJWbE5NM2cxUkhvS1dEVm5TblpNWWpaRlMyNUVlVU5DT1M5TlRFTlRTMHB0YTBoUlVFWnBjVkpHT0hKemRHcFZZMk00ZG14b1RucHdRMFZvU2s5bmMycDNLemx2UWs0MlRRbzRVV1JPUzBWS01HbENlV2x6ZVUxRVFVTjNaVTVZVTBVME1GZHJkV1JsZG5kelltSmhTVWt5Y0ZCWmRrODFNMnRQY1c4NGF6ZFZlbU5QWjJScVdISmtDbVVyUzJneE56ZGlWa1JKVEhoTmRVZExkRzRyWWxSU2JIbEJOa3BZTTFSM1RXd3ZNSG8xZFRkVFEyd3JSRU13V0hoS1ZHOUJOVlp5TTJKUGVFVXdTbllLY2xBdmFHTlljbFpTUmxkMUswaGFiM1JIWmpScU5EZGhTRFpRVFU5MWNqa3ZXWE5GVkM5SmIwcG9UV1YxUTB0M1NHRjRNV2x5WWpGMVpsRnNSR2h1YlFwcWRVSXJaeTlMZVZOUVVUTkZMM3BxWW1kRU1uQnhhVEp2Um5oamJsTlNUa1Y1UmpSSE1sVkRla2N2VFcxSVJ6TjVPVEZDVUZOcUwxQjRaRTVqTUVjekNtNXNRelpzTUdsQ05XUm9SR1ZPY0ZoR1RWQllUMkpWUWdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTbmRKUWtGQlMwTkJaMFZCTUVoTVZFTnRWMjQ1UWxZeVUyZEhaQzlSTlM4eWFHMDNSRkZRTTB0UFFYUXdSbVJETTBwclNFbE5jbWRsUW1kRENsbERiVWxxUmtKclVtNURTR3hOYzB0bmVVRmhUMk5zVldGS1MyUlpVVnBYY2tZeVpEVmhWVUpMTHpWcFZuWTFlSGhtTHpBelZqZzFibUV3V0hvNVRERUtWR2c0VlZVemFFVTFhVlJyY1dkclozTTBhVzFtTlhKRksybEtWWFV6VURJdllYWkVNMFpQY0dWUlYxaHNaRmhYTUhSNE1YVjBha05yU1d3eVQwTkNWd3B6VVd0T04zWnpjbVZoTDBwRFozazVUR05uTVhsMGNERk9RVko2Tldkek4xTlRMMHBrV1VsdWFGVkJNRTU1SzJFNE1FVXJUa3RGY1VkcEt6QlZlR3c1Q25neFF5dGlWRU5KZG1wVVlVNUZVV2hLUmxwVVFTOUpPV0o0VGtZeVZFNTZRMEpEYTBzMlpUbFJTRGRWUlM5bk5WWXJhVnBGVWpaRFRsQkxaV3gxYlZVS2NEbFZjV0pXVEZwMFNFUXJWMFY2TURGT1NVRkdkRTlKTVdKaWVUaGtTQ3RRV2paRmVrVTBjRTlJYkhaM2FGWlFMMDFwTlRVdllreFZha05YVERkRlJ3cEVabUpIYXpCU1kybzVWSEJuTUdoUVJXVTJMekZTSzFod1VGSlBTMmRLWjBzclMwZHNjRXR3TDA1T09YUnFOelo0YlROd05URnBSSGwzVkdFMVJXZFlDbXhhYjBsRWVEaFJaMjlqVW1sS1FtdFRWR1o1UTJGRlVqaHBhM29yUlZaUFUxaHNVVlZ2TmtaSGIwSmhNMEYyWXpGdmJXWnpZa2M1Y0VNck0zQlJTbUlLV1ROSWJWVnZSbGdyT1M5amEwMWxTMVoyT0hvM2JFdE9kQzk1UXpaT2FVSlVRbnByYjFsdlpDdEVVSGR5WWsweVR6ZDZkelZwVVd4d05rSkNUbk54Wmdwd1RsZEhVVFJXWmpCYVJuUldiV0ZGVUc0eVN5OTFaMWwxU25VM1NGcHlUWE41ZDBodWVEbG5VWGhTT0hnemNTdHhWRVZGYkhKekt6Rk5PVk42UkhSdENsTXZTVkpRTUU0MWNYaDBOMU14WTNOTlkweFhTbGhzY3pjeGRpc3JlRE5DTDNaSmFtazFOREZQT1Znek16SmhNMlJvUnprNU5FTkpRMXBGUTBGM1JVRUtRVkZMUTBGblFVd3lVWEoyZHpGc2NHZFVURXBCUWtOSWVYRlJkblJHYVhsWk4wSlFjbGhhVGt0cWFVNXhNVVZDV25saFpFUk9hRTUxVHpabE9IYzNVUXBDYVU1bGNrc3JOMUpxTjFoWEx6aHNUbTVuYkdoTFR6Sm9iR1Z6VEhSWVJFNHlSa1pwYnpkVE4zcHdkWFp5VUdGd00xUTRRbWRUVmxoVFZHUnVZVGxyQ2pKWFNEVXpRM293Y0RKaE0xTkJaVGhKSzJ4dVFXazVaWFZpTWxoTU1WbHdiamg1S3pSdWJXdFpTVEU0WjJ0bFJYbGFkR3ByTUhJMlNYZGhZM1EzTHk4S01tRk1NbkJGVXpSaWJraEpVblZTTUdkWVFra3JaMmg2YmpOcE1qWm9MM1UzWm1oS2VuSllhVGMyYkcxbGJXRllUMGhFY1dKRU9TczNZa3d4U2psWlRnbzBXbXR3WTFadWF6UTVZM2xIVkcxMWNqUjVMM3BNU0ZWSGIxbExVMU14ZW14blNHUTFURlF4Y25relRVVkZlbU5VTlVnclFpdGlRVW94YVZSQlEzVktDbTEzWVVvMVJUTnBUSFJHT0dWeFpVUmFhazl0TVZGWE4xbFBRWGhXYTJvelpGZDFja0UxVTB0dk1EWlFTR2w1UmpkNU0xaGFUSEZZU0ZGU2QyaGlVMHNLVFZkVE1TdFVNVmx4UTFsWGNWYzFkV2REVTNKSVZrZDNjbFJNYjNob1NFRm5UV1Y1V0ZwcmFFRjJibmhqUTNkWFpURjJZWFZSWlZGcE5ucDBibEY2ZGdweFJYbDRXbTlXVFU5ellUbDBWREJTUmxSRlJraDZlaXRhUWpoUFRXMW5RakZFSzNOeWMwWnNiSEJZYlVOQlNUTkNXWHA1VVRnNGNVVkpObVJYV1dGVENuUlpPSEJWT0ZGa09DdG5RVmxXUTFrMlZYTnNaMjVTWlVSd1JVUllTMUJtV0UxRVVtaFNOa0k1UVZOaFZtaG1RWGxuTWpGbVVXcFhTemhIUTBwUE9Vd0tSRXRzTlM5Mk1UaFJkVk5MTkRNdk4ySjFUa1JKT0doT1NuY3paMDFMWVRCMlZFdFFRV05oT1VoSU5XMTFSVVpGTjNkUmJWQkRiREIyY1RsTE1IaDJaUXBSWlVGWlRrSm1RMVF3TkdsTFNXWm5kVE5XVFdwV1FtOVBNMGRLYUcxbVdWRk1RWFZ5Y1hWQ1N6VXllREUxYjFNeFVVdERRVkZGUVRrM2JsUlBkMUpOQ2pSV2IwWkxOalV4Y1ZwYVIwNVdNMGtyUkRGSmJHSnlRMWg2U0VaemFVeEVjR0pGUlRscFJ6RkdVMmhHZGxab1YzY3dOamRUUTBSR1UydFZabE51TkZjS1REUXJjM0UxZWpkS2EyWXliRmRTVm5OMVZIZ3hVamRXVlZwUE5TOUNSek5qUWpCV1kycHlPRFZhWlV0UVZtOWhRU3N5UjBKR1ZYbEhaVGN2Y0ZkNlpRb3lUMmR4U2pkelJ6VlRTblpMU1hOSlJEa3pLMW92VjBwQ1lWazNjRlExVTFrNVJWVm1aMDVrYjJKVFNtZGhNalZLWms1cGIxTlRPUzlKT1V0V05HY3hDbmhTUkZaeFRqUm9ja0prY0cxc1RVWlBSQ3QxTkVjeFQyRlVialozUmtzeGRVbFJSRFJPVTI5VllXOXlRVGxLTlhjd1UxUkNhazlCZEZCSGJuZHVjVk1LYXpWTldFOXRaMlptYm5ONWVEaHFTMjVJYjBaUWRXdGtOMlZIV1ZsUlYzTnJOR1F3TmxFeE1UUjVLM3BNTW5sR1NtUnlTV2szVW5FdmNFRjRVVTlvVlFveWREa3ZTVE56V1dwcVdtc3ZkMHREUVZGRlFURXlhMjkyVldKMldVOHZOVWx6VlV4Q2MyNHpWVTE0VkdzM05HaEtNV3RaU25sUFJFRndObTlKYmpSSkNrMW1UMmgzWlhsSFVqVlNLMUJCTjBOb09UZFpRbEJDVjFseVVpOTJWVWxhVWxWelNqUktPRWRDYVdSUWVISnhTblJNY0c1bldsQlVhR1JKYVhOQ1NUY0thVWgxTUN0T01YRnNXRlF4V21SNmJqaFRURlEzZEZaNksxVldOMEZVUjB0UGFsTmxNbEJYTTA1WU9EZHdiRUYxYzJ4aGEzaHJVV1ZZTTJGeFpqWnZSZ3B5Ym5WSFQxSkJRMHRQYVcxSk1GZERaVU4yUzNOemNFUmljRXhKZDFWU1VqVXJibkp4WW5wUWRUWjRha0ZMWm0xNlFtTXZRbmRVY25nck1YVkpiMXAxQ2xvMWJqUlRNVTFTVjFGMmF6SnJRV0pRYlRSa1VqWnZXV1ZhVEdKMmJUaFJNRVJ2SzFOalJVTktLMk5qWlVsaWNERTRhbGh6T1ZrclpFaHJkMUJsYUZZS01DdHNkbXAyVDNWalREWTBRMmcwTlU5dFZ6SXpRM0F4YzBGdmJuVjFhRVJoWTFSa05WUk1RbUozUzBOQlVVSmthSFYyYjBGVVUyaGtRMGt4Ym5KV1VBcHdTM1V6U2tWU2JUZEpVa1lyTWlzNVJIZGhUSFppU2s5RlUzQkdXSFUyUjBsWFJreEliRzlNWms5TllWWlVNRWhWUm1WRVFWWXlVVGhXWVVseFJXcDBDalpCWlVJeVdrczVZWFJEWlROUVp5dDRNVFZXWlRjM1l6bHBORTV3V2xkeVprODBNVkZhY0VjeE1YUmpjMWR0Y2k5ME4wZzNkbGR1ZDA5bFFtWnZkMWtLTkVWd1JtSldRa3MxVlRWVGJ6VkljVGQ0Y21aNFZYSklOSEl3ZHpSclduTmpZMUJyYTA1cmVFdGtWMWczTURWSVZucFpSRWhEY205NmRsWk1kbmx1U2dwV2EwZEtaMVZUWTA5MlltdFNiMEoyUnk5UEszWnlkR0pCV1ZOU1ZYUnBSbXhLUTA4M1pEQkplWGhCVkV4RmFYZG9MMmRHV21NclNFcGxZVVZLTmtkVkNsZERSVkUyYnpoTlUzTnNSMDlwT0ZKcE4xaEVSVFpvV0ZCeVNERTVlRFJHSzNoR1ZXMHdNR1IzU2poemJEVTBOVzhyYW10cU5VeFNNamhYWkdWTVJVb0tjVU5IZWtGdlNVSkJSa05SWWxGTk1XZzBkMHN4U0ZCNmJrTmphVE5HVDJ0NE9VWnRPVGhHWlhGb1JHaFZSSFJ1YlZaNWJFcEhNa05SUlhCdFMzVmhWUXB1UVROalR6RmtWSFZvYkVkNGFHaFBhRGhSUWprMksxb3pRWHBrYWxGUk5rdGlWV0Y1VTNkR01UTmFORVZzUm01blZDc3lOR1p6ZFhkVlYyVnJhVVp3Q25ncmIyTkVPR1ExUkdscGVWQndha3BMY2sxTmEzcFZiblozTVVsQlVXbExSMGxaWjFWUllUQk1lRnBWU0dOUU5HWjBXVmRuWkRrM1NsZ3djMEp3VEVVS1UwaGlRM0JaVWt0YVNtOTJNbUkxSzA5WlZraENlR05yZG5SWlVqTjFVRVJIY0dkQ1RTdHROaTlCUTJ4RU5GbE1kaTluTjNKUmEydGFaQzlQU25CMlZ3cFFabG9yY1ZoSVZTOTZRbmhhYjNZMWNVTlFNa3REVTI4d0sydEVkbU50YzNZeFNUUnhlbUpuVlVGU1luRmhiMjlPVTI1RFVHMDVkVlJEU0RjNE5EaEtDbFpaTWpkT1p6UnZVWEJpWm1KdWNYcHZXalZtUW1VclIwTk1UMVJKZUUxRFoyZEZRVkZUU1RoaE1qUXdjVTVoWlZScGNtb3ZhVEZ3Y1VKelNraG5LME1LUkVKUVNqVnRhVVJ1WmxOTVNtRkhiMDl6TDFSU1VXVXZPVUZ0TlhWRFdHTnZNRko0YVZkc1ZHczVUVVZaVUVNck9FczJOVUp4VXpSb1JYVnFlRTVSY2dvd1ZVOHdSVWRNUlZOM1VFbHJOekZxVEZWbGNqWlNWR2R3ZGpCMlNqTk9NMGtyT0d0emMzVlVablJQWmtWSk1DdEVVRWxpWjFoSWJsZFRURWxWUVZodkNtbzRhbXczTnpWd2JHdENMekI0ZVZscU5HMUhibm95YzIxalVXSlJWR2R4UjBoSGRYaE9VVzFYYUVSdk0xcFBOaXRRZW5KV04yeHJUVTVWZDBSMFdua0taa0o1U1VKWmNHdFNZMGx2V1hsUmJEQnBSaTlpYVNzelYxaE1PVWhoY25SV09UaDVSVVJxS3pVM1dpODJZMU5sVERZNWNEUklPV05GUm5aVllqa3hUQW81TVdWeWJEVjNNbnBIVmpBeU1rVnljMGRFVGtOVFF6VnBOVzFLUlZFM05XWldOeXR2ZVV3NGVYQlFVM2Q0VEZSM01IVTROekZtU0UxQlBUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogbnd2NXpwZmxubXRoYTUwMnNuY2JqMHY3d242YXF6aHVjN2Q1MXZldjNmcTFnbXV0OTQ3aHVlazZ1aGYzYWpkcDk5cGJhdGl6d2swaTE3ZXQ1MHNwNnI4dGZpNDJ1eG1seG8zZ2E2OWI4M3h0YjY3Z3VzY3I1OHdnaHJ1bGl3bW8K\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '126' + - '13080' content-type: - application/json date: - - Wed, 26 Apr 2023 08:04:12 GMT + - Wed, 14 Jun 2023 18:21:09 GMT expires: - '-1' pragma: @@ -3016,6 +1843,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -3023,7 +1852,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -3033,23 +1862,67 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0db1da4-8b12-4d03-bc78-766d875589b8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"a41ddbb0-128b-034d-bc78-766d875589b8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T08:03:43.2303772Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 08:04:42 GMT + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-z27850gd.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-z27850gd.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.Network/publicIPAddresses/a05165fd-0cd2-403a-ab49-6f2f07f48a68\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + principalId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4617' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 18:21:10 GMT expires: - '-1' pragma: @@ -3068,36 +1941,108 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westcentralus", "sku": {"name": "Base", "tier": "Free"}, + "identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003": + {}}}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000002", + "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": + 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006", + "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, + "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": + "MC_clitest000001_cliakstest000001_westcentralus", "enableRBAC": true, "supportPlan": + "KubernetesOfficial", "networkProfile": {"networkPlugin": "kubenet", "podCidr": + "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": + {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.Network/publicIPAddresses/a05165fd-0cd2-403a-ab49-6f2f07f48a68"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}, "workloadAutoScalerProfile": {}}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - aks scale Connection: - keep-alive + Content-Length: + - '3213' + Content-Type: + - application/json ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0db1da4-8b12-4d03-bc78-766d875589b8?api-version=2016-03-30 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"a41ddbb0-128b-034d-bc78-766d875589b8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T08:03:43.2303772Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-z27850gd.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-z27850gd.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.Network/publicIPAddresses/a05165fd-0cd2-403a-ab49-6f2f07f48a68\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + principalId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/bfb3b8e7-82dc-425a-ae08-e7a629964c1c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '126' + - '4615' content-type: - application/json date: - - Wed, 26 Apr 2023 08:05:13 GMT + - Wed, 14 Jun 2023 18:21:18 GMT expires: - '-1' pragma: @@ -3112,6 +2057,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -3129,14 +2076,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0db1da4-8b12-4d03-bc78-766d875589b8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/bfb3b8e7-82dc-425a-ae08-e7a629964c1c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a41ddbb0-128b-034d-bc78-766d875589b8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T08:03:43.2303772Z\"\n }" + string: "{\n \"name\": \"e7b8b3bf-dc82-5a42-ae08-e7a629964c1c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:21:17.6432834Z\"\n }" headers: cache-control: - no-cache @@ -3145,7 +2092,7 @@ interactions: content-type: - application/json date: - - Wed, 26 Apr 2023 08:05:43 GMT + - Wed, 14 Jun 2023 18:21:18 GMT expires: - '-1' pragma: @@ -3177,14 +2124,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0db1da4-8b12-4d03-bc78-766d875589b8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/bfb3b8e7-82dc-425a-ae08-e7a629964c1c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a41ddbb0-128b-034d-bc78-766d875589b8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T08:03:43.2303772Z\"\n }" + string: "{\n \"name\": \"e7b8b3bf-dc82-5a42-ae08-e7a629964c1c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:21:17.6432834Z\"\n }" headers: cache-control: - no-cache @@ -3193,7 +2140,7 @@ interactions: content-type: - application/json date: - - Wed, 26 Apr 2023 08:06:13 GMT + - Wed, 14 Jun 2023 18:21:48 GMT expires: - '-1' pragma: @@ -3225,14 +2172,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0db1da4-8b12-4d03-bc78-766d875589b8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/bfb3b8e7-82dc-425a-ae08-e7a629964c1c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a41ddbb0-128b-034d-bc78-766d875589b8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T08:03:43.2303772Z\"\n }" + string: "{\n \"name\": \"e7b8b3bf-dc82-5a42-ae08-e7a629964c1c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:21:17.6432834Z\"\n }" headers: cache-control: - no-cache @@ -3241,7 +2188,7 @@ interactions: content-type: - application/json date: - - Wed, 26 Apr 2023 08:06:43 GMT + - Wed, 14 Jun 2023 18:22:18 GMT expires: - '-1' pragma: @@ -3273,14 +2220,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0db1da4-8b12-4d03-bc78-766d875589b8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/bfb3b8e7-82dc-425a-ae08-e7a629964c1c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a41ddbb0-128b-034d-bc78-766d875589b8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T08:03:43.2303772Z\"\n }" + string: "{\n \"name\": \"e7b8b3bf-dc82-5a42-ae08-e7a629964c1c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:21:17.6432834Z\"\n }" headers: cache-control: - no-cache @@ -3289,7 +2236,7 @@ interactions: content-type: - application/json date: - - Wed, 26 Apr 2023 08:07:13 GMT + - Wed, 14 Jun 2023 18:22:48 GMT expires: - '-1' pragma: @@ -3321,14 +2268,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0db1da4-8b12-4d03-bc78-766d875589b8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/bfb3b8e7-82dc-425a-ae08-e7a629964c1c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a41ddbb0-128b-034d-bc78-766d875589b8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T08:03:43.2303772Z\"\n }" + string: "{\n \"name\": \"e7b8b3bf-dc82-5a42-ae08-e7a629964c1c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:21:17.6432834Z\"\n }" headers: cache-control: - no-cache @@ -3337,7 +2284,7 @@ interactions: content-type: - application/json date: - - Wed, 26 Apr 2023 08:07:43 GMT + - Wed, 14 Jun 2023 18:23:19 GMT expires: - '-1' pragma: @@ -3369,14 +2316,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0db1da4-8b12-4d03-bc78-766d875589b8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/bfb3b8e7-82dc-425a-ae08-e7a629964c1c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a41ddbb0-128b-034d-bc78-766d875589b8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T08:03:43.2303772Z\"\n }" + string: "{\n \"name\": \"e7b8b3bf-dc82-5a42-ae08-e7a629964c1c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:21:17.6432834Z\"\n }" headers: cache-control: - no-cache @@ -3385,7 +2332,7 @@ interactions: content-type: - application/json date: - - Wed, 26 Apr 2023 08:08:13 GMT + - Wed, 14 Jun 2023 18:23:49 GMT expires: - '-1' pragma: @@ -3417,14 +2364,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0db1da4-8b12-4d03-bc78-766d875589b8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/bfb3b8e7-82dc-425a-ae08-e7a629964c1c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a41ddbb0-128b-034d-bc78-766d875589b8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T08:03:43.2303772Z\"\n }" + string: "{\n \"name\": \"e7b8b3bf-dc82-5a42-ae08-e7a629964c1c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:21:17.6432834Z\"\n }" headers: cache-control: - no-cache @@ -3433,7 +2380,7 @@ interactions: content-type: - application/json date: - - Wed, 26 Apr 2023 08:08:44 GMT + - Wed, 14 Jun 2023 18:24:19 GMT expires: - '-1' pragma: @@ -3465,15 +2412,15 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0db1da4-8b12-4d03-bc78-766d875589b8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/bfb3b8e7-82dc-425a-ae08-e7a629964c1c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a41ddbb0-128b-034d-bc78-766d875589b8\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-04-26T08:03:43.2303772Z\",\n \"endTime\": - \"2023-04-26T08:09:13.3980544Z\"\n }" + string: "{\n \"name\": \"e7b8b3bf-dc82-5a42-ae08-e7a629964c1c\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T18:21:17.6432834Z\",\n \"\ + endTime\": \"2023-06-14T18:24:24.1705518Z\"\n }" headers: cache-control: - no-cache @@ -3482,7 +2429,7 @@ interactions: content-type: - application/json date: - - Wed, 26 Apr 2023 08:09:14 GMT + - Wed, 14 Jun 2023 18:24:50 GMT expires: - '-1' pragma: @@ -3514,65 +2461,67 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-5owz0u62.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-5owz0u62.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n - \ \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC4FbYEnSg3B++273P4js8XiXC6vdN80wW5on6LXCSuVkgiCSyQ/j4Jjy5ZXG1iQ0E++48y0Lbmb6F6KL4AsUwq0SAGTEIpjOGieNX2qfK6W/dSsN8lZf+7rjq8sffRGcxtgH2I/nkRH7vlZFaiFg9YqJv/0tZhvO0CPLlvzOM1cWZsvK67UdGFfmPOcufqkYnSYoyfkibivUTUus0Gcd7jo2vEY2C8/KTc1yWWCbHtOeH5TY2vlcdmsbdnKrgZrchLhmcHrU08mHWh11MX9FIelan5Uw8kgoFNIu/Q6BrfGXu09PxXG7pOXoZR4MTRDr9ih0UDJ0H8Q7+jvSeXnJtv - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6da0b9d3-bfb8-4da4-b71b-b1414d9f4d62\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n - \ }\n }" - headers: - cache-control: - - no-cache - content-length: - - '4291' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 08:09:15 GMT + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-z27850gd.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-z27850gd.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.Network/publicIPAddresses/a05165fd-0cd2-403a-ab49-6f2f07f48a68\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + principalId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4617' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 18:24:51 GMT expires: - '-1' pragma: @@ -3604,65 +2553,67 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-5owz0u62.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-5owz0u62.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n - \ \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC4FbYEnSg3B++273P4js8XiXC6vdN80wW5on6LXCSuVkgiCSyQ/j4Jjy5ZXG1iQ0E++48y0Lbmb6F6KL4AsUwq0SAGTEIpjOGieNX2qfK6W/dSsN8lZf+7rjq8sffRGcxtgH2I/nkRH7vlZFaiFg9YqJv/0tZhvO0CPLlvzOM1cWZsvK67UdGFfmPOcufqkYnSYoyfkibivUTUus0Gcd7jo2vEY2C8/KTc1yWWCbHtOeH5TY2vlcdmsbdnKrgZrchLhmcHrU08mHWh11MX9FIelan5Uw8kgoFNIu/Q6BrfGXu09PxXG7pOXoZR4MTRDr9ih0UDJ0H8Q7+jvSeXnJtv - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6da0b9d3-bfb8-4da4-b71b-b1414d9f4d62\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n - \ }\n }" - headers: - cache-control: - - no-cache - content-length: - - '4291' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 08:09:15 GMT + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-z27850gd.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-z27850gd.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.Network/publicIPAddresses/a05165fd-0cd2-403a-ab49-6f2f07f48a68\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + principalId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4617' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 18:24:54 GMT expires: - '-1' pragma: @@ -3694,65 +2645,67 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --assign-identity --yes User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-5owz0u62.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-5owz0u62.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n - \ \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC4FbYEnSg3B++273P4js8XiXC6vdN80wW5on6LXCSuVkgiCSyQ/j4Jjy5ZXG1iQ0E++48y0Lbmb6F6KL4AsUwq0SAGTEIpjOGieNX2qfK6W/dSsN8lZf+7rjq8sffRGcxtgH2I/nkRH7vlZFaiFg9YqJv/0tZhvO0CPLlvzOM1cWZsvK67UdGFfmPOcufqkYnSYoyfkibivUTUus0Gcd7jo2vEY2C8/KTc1yWWCbHtOeH5TY2vlcdmsbdnKrgZrchLhmcHrU08mHWh11MX9FIelan5Uw8kgoFNIu/Q6BrfGXu09PxXG7pOXoZR4MTRDr9ih0UDJ0H8Q7+jvSeXnJtv - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6da0b9d3-bfb8-4da4-b71b-b1414d9f4d62\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n - \ }\n }" - headers: - cache-control: - - no-cache - content-length: - - '4291' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 08:09:15 GMT + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-z27850gd.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-z27850gd.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.Network/publicIPAddresses/a05165fd-0cd2-403a-ab49-6f2f07f48a68\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000003\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + principalId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4617' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 18:24:56 GMT expires: - '-1' pragma: @@ -3771,8 +2724,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": - {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000004": + body: '{"location": "westcentralus", "sku": {"name": "Base", "tier": "Free"}, + "identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000004": {}}}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006", @@ -3781,16 +2734,16 @@ interactions: "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC4FbYEnSg3B++273P4js8XiXC6vdN80wW5on6LXCSuVkgiCSyQ/j4Jjy5ZXG1iQ0E++48y0Lbmb6F6KL4AsUwq0SAGTEIpjOGieNX2qfK6W/dSsN8lZf+7rjq8sffRGcxtgH2I/nkRH7vlZFaiFg9YqJv/0tZhvO0CPLlvzOM1cWZsvK67UdGFfmPOcufqkYnSYoyfkibivUTUus0Gcd7jo2vEY2C8/KTc1yWWCbHtOeH5TY2vlcdmsbdnKrgZrchLhmcHrU08mHWh11MX9FIelan5Uw8kgoFNIu/Q6BrfGXu09PxXG7pOXoZR4MTRDr9ih0UDJ0H8Q7+jvSeXnJtv - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, - "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6da0b9d3-bfb8-4da4-b71b-b1414d9f4d62"}]}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westcentralus", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.Network/publicIPAddresses/a05165fd-0cd2-403a-ab49-6f2f07f48a68"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": - ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, "workloadAutoScalerProfile": {}}}' @@ -3804,72 +2757,74 @@ interactions: Connection: - keep-alive Content-Length: - - '2829' + - '3182' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --assign-identity --yes User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-5owz0u62.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-5owz0u62.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n - \ \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC4FbYEnSg3B++273P4js8XiXC6vdN80wW5on6LXCSuVkgiCSyQ/j4Jjy5ZXG1iQ0E++48y0Lbmb6F6KL4AsUwq0SAGTEIpjOGieNX2qfK6W/dSsN8lZf+7rjq8sffRGcxtgH2I/nkRH7vlZFaiFg9YqJv/0tZhvO0CPLlvzOM1cWZsvK67UdGFfmPOcufqkYnSYoyfkibivUTUus0Gcd7jo2vEY2C8/KTc1yWWCbHtOeH5TY2vlcdmsbdnKrgZrchLhmcHrU08mHWh11MX9FIelan5Uw8kgoFNIu/Q6BrfGXu09PxXG7pOXoZR4MTRDr9ih0UDJ0H8Q7+jvSeXnJtv - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6da0b9d3-bfb8-4da4-b71b-b1414d9f4d62\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000004\": - {}\n }\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n - \ }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-z27850gd.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-z27850gd.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.Network/publicIPAddresses/a05165fd-0cd2-403a-ab49-6f2f07f48a68\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000004\"\ + : {}\n }\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\ + \n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91ddf0e2-cfd5-49e2-ad70-a63ae078b0ae?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b3ac8fb7-fdd3-4ea3-a9b8-260c1ea28619?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4170' + - '4496' content-type: - application/json date: - - Wed, 26 Apr 2023 08:09:19 GMT + - Wed, 14 Jun 2023 18:25:02 GMT expires: - '-1' pragma: @@ -3903,14 +2858,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --assign-identity --yes User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91ddf0e2-cfd5-49e2-ad70-a63ae078b0ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b3ac8fb7-fdd3-4ea3-a9b8-260c1ea28619?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2f0dd91-d5cf-e249-ad70-a63ae078b0ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T08:09:19.8580491Z\"\n }" + string: "{\n \"name\": \"b78facb3-d3fd-a34e-a9b8-260c1ea28619\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:25:02.0343681Z\"\n }" headers: cache-control: - no-cache @@ -3919,7 +2874,7 @@ interactions: content-type: - application/json date: - - Wed, 26 Apr 2023 08:09:19 GMT + - Wed, 14 Jun 2023 18:25:02 GMT expires: - '-1' pragma: @@ -3951,14 +2906,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --assign-identity --yes User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91ddf0e2-cfd5-49e2-ad70-a63ae078b0ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b3ac8fb7-fdd3-4ea3-a9b8-260c1ea28619?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2f0dd91-d5cf-e249-ad70-a63ae078b0ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T08:09:19.8580491Z\"\n }" + string: "{\n \"name\": \"b78facb3-d3fd-a34e-a9b8-260c1ea28619\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:25:02.0343681Z\"\n }" headers: cache-control: - no-cache @@ -3967,7 +2922,7 @@ interactions: content-type: - application/json date: - - Wed, 26 Apr 2023 08:09:50 GMT + - Wed, 14 Jun 2023 18:25:33 GMT expires: - '-1' pragma: @@ -3999,14 +2954,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --assign-identity --yes User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91ddf0e2-cfd5-49e2-ad70-a63ae078b0ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b3ac8fb7-fdd3-4ea3-a9b8-260c1ea28619?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2f0dd91-d5cf-e249-ad70-a63ae078b0ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T08:09:19.8580491Z\"\n }" + string: "{\n \"name\": \"b78facb3-d3fd-a34e-a9b8-260c1ea28619\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:25:02.0343681Z\"\n }" headers: cache-control: - no-cache @@ -4015,7 +2970,7 @@ interactions: content-type: - application/json date: - - Wed, 26 Apr 2023 08:10:19 GMT + - Wed, 14 Jun 2023 18:26:03 GMT expires: - '-1' pragma: @@ -4047,14 +3002,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --assign-identity --yes User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91ddf0e2-cfd5-49e2-ad70-a63ae078b0ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b3ac8fb7-fdd3-4ea3-a9b8-260c1ea28619?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2f0dd91-d5cf-e249-ad70-a63ae078b0ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-26T08:09:19.8580491Z\"\n }" + string: "{\n \"name\": \"b78facb3-d3fd-a34e-a9b8-260c1ea28619\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:25:02.0343681Z\"\n }" headers: cache-control: - no-cache @@ -4063,7 +3018,7 @@ interactions: content-type: - application/json date: - - Wed, 26 Apr 2023 08:10:49 GMT + - Wed, 14 Jun 2023 18:26:33 GMT expires: - '-1' pragma: @@ -4095,24 +3050,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --assign-identity --yes User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91ddf0e2-cfd5-49e2-ad70-a63ae078b0ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b3ac8fb7-fdd3-4ea3-a9b8-260c1ea28619?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2f0dd91-d5cf-e249-ad70-a63ae078b0ae\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-04-26T08:09:19.8580491Z\",\n \"endTime\": - \"2023-04-26T08:11:04.4562642Z\"\n }" + string: "{\n \"name\": \"b78facb3-d3fd-a34e-a9b8-260c1ea28619\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:25:02.0343681Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Wed, 26 Apr 2023 08:11:19 GMT + - Wed, 14 Jun 2023 18:27:03 GMT expires: - '-1' pragma: @@ -4144,65 +3098,116 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --assign-identity --yes User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/b3ac8fb7-fdd3-4ea3-a9b8-260c1ea28619?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-5owz0u62.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-5owz0u62.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n - \ \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC4FbYEnSg3B++273P4js8XiXC6vdN80wW5on6LXCSuVkgiCSyQ/j4Jjy5ZXG1iQ0E++48y0Lbmb6F6KL4AsUwq0SAGTEIpjOGieNX2qfK6W/dSsN8lZf+7rjq8sffRGcxtgH2I/nkRH7vlZFaiFg9YqJv/0tZhvO0CPLlvzOM1cWZsvK67UdGFfmPOcufqkYnSYoyfkibivUTUus0Gcd7jo2vEY2C8/KTc1yWWCbHtOeH5TY2vlcdmsbdnKrgZrchLhmcHrU08mHWh11MX9FIelan5Uw8kgoFNIu/Q6BrfGXu09PxXG7pOXoZR4MTRDr9ih0UDJ0H8Q7+jvSeXnJtv - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6da0b9d3-bfb8-4da4-b71b-b1414d9f4d62\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000004\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n - \ }\n }" + string: "{\n \"name\": \"b78facb3-d3fd-a34e-a9b8-260c1ea28619\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T18:25:02.0343681Z\",\n \"\ + endTime\": \"2023-06-14T18:27:04.9164248Z\"\n }" headers: cache-control: - no-cache content-length: - - '4291' + - '170' content-type: - application/json date: - - Wed, 26 Apr 2023 08:11:20 GMT + - Wed, 14 Jun 2023 18:27:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity --assign-identity --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-z27850gd.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-z27850gd.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.Network/publicIPAddresses/a05165fd-0cd2-403a-ab49-6f2f07f48a68\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000004\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + principalId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4617' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 18:27:35 GMT expires: - '-1' pragma: @@ -4234,65 +3239,67 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-5owz0u62.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-5owz0u62.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n - \ \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC4FbYEnSg3B++273P4js8XiXC6vdN80wW5on6LXCSuVkgiCSyQ/j4Jjy5ZXG1iQ0E++48y0Lbmb6F6KL4AsUwq0SAGTEIpjOGieNX2qfK6W/dSsN8lZf+7rjq8sffRGcxtgH2I/nkRH7vlZFaiFg9YqJv/0tZhvO0CPLlvzOM1cWZsvK67UdGFfmPOcufqkYnSYoyfkibivUTUus0Gcd7jo2vEY2C8/KTc1yWWCbHtOeH5TY2vlcdmsbdnKrgZrchLhmcHrU08mHWh11MX9FIelan5Uw8kgoFNIu/Q6BrfGXu09PxXG7pOXoZR4MTRDr9ih0UDJ0H8Q7+jvSeXnJtv - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6da0b9d3-bfb8-4da4-b71b-b1414d9f4d62\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000004\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n - \ }\n }" - headers: - cache-control: - - no-cache - content-length: - - '4291' - content-type: - - application/json - date: - - Wed, 26 Apr 2023 08:11:21 GMT + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-z27850gd.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-z27850gd.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000005/subnets/clisubnet000006\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.Network/publicIPAddresses/a05165fd-0cd2-403a-ab49-6f2f07f48a68\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000004\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + principalId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4617' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 18:27:37 GMT expires: - '-1' pragma: @@ -4326,8 +3333,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -4335,17 +3342,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e4bfc40a-db9f-4f34-953d-0211a50624f8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/a51e0385-c58e-42bc-8d9f-843a28da1144?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 26 Apr 2023 08:11:22 GMT + - Wed, 14 Jun 2023 18:27:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/e4bfc40a-db9f-4f34-953d-0211a50624f8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operationresults/a51e0385-c58e-42bc-8d9f-843a28da1144?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_aadv1_and_update_with_managed_aad.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_aadv1_and_update_with_managed_aad.yaml index 8dd21592a0c..4bbef3f2868 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_aadv1_and_update_with_managed_aad.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_aadv1_and_update_with_managed_aad.yaml @@ -14,7 +14,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:08:48 GMT + - Sat, 29 Apr 2023 09:06:34 GMT expires: - '-1' pragma: @@ -60,21 +60,21 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:08:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_aadv1_and_update_with_managed_aad","date":"2023-04-29T09:06:34Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '364' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:08:47 GMT + - Sat, 29 Apr 2023 09:06:34 GMT expires: - '-1' pragma: @@ -90,14 +90,14 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesthw7qtq6f3-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestnclrd3rzw-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", @@ -122,7 +122,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -132,31 +132,31 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthw7qtq6f3-79a739\",\n \"fqdn\": \"cliakstest-clitesthw7qtq6f3-79a739-gkaxb70e.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthw7qtq6f3-79a739-gkaxb70e.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnclrd3rzw-79a739\",\n \"fqdn\": \"cliakstest-clitestnclrd3rzw-79a739-y2vjgwad.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnclrd3rzw-79a739-y2vjgwad.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"aadProfile\": {\n \"adminGroupObjectIDs\": null,\n \"adminUsers\": null,\n \"clientAppID\": \"00000000-0000-0000-0000-000000000002\",\n \"serverAppID\": @@ -168,18 +168,18 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52817ca-9155-4ec0-a0b1-de09f29b9089?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb7daec7-0d35-476d-af77-842b1cf925e3?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3523' + - '3561' content-type: - application/json date: - - Wed, 15 Mar 2023 10:08:52 GMT + - Sat, 29 Apr 2023 09:06:38 GMT expires: - '-1' pragma: @@ -191,7 +191,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -210,14 +210,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52817ca-9155-4ec0-a0b1-de09f29b9089?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb7daec7-0d35-476d-af77-842b1cf925e3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ca1728f5-5591-c04e-a0b1-de09f29b9089\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:08:52.4003334Z\"\n }" + string: "{\n \"name\": \"c7ae7deb-350d-6d47-af77-842b1cf925e3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:06:38.9252497Z\"\n }" headers: cache-control: - no-cache @@ -226,7 +226,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:09:22 GMT + - Sat, 29 Apr 2023 09:06:38 GMT expires: - '-1' pragma: @@ -235,10 +235,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -259,14 +255,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52817ca-9155-4ec0-a0b1-de09f29b9089?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb7daec7-0d35-476d-af77-842b1cf925e3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ca1728f5-5591-c04e-a0b1-de09f29b9089\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:08:52.4003334Z\"\n }" + string: "{\n \"name\": \"c7ae7deb-350d-6d47-af77-842b1cf925e3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:06:38.9252497Z\"\n }" headers: cache-control: - no-cache @@ -275,7 +271,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:09:52 GMT + - Sat, 29 Apr 2023 09:07:08 GMT expires: - '-1' pragma: @@ -284,10 +280,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -308,14 +300,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52817ca-9155-4ec0-a0b1-de09f29b9089?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb7daec7-0d35-476d-af77-842b1cf925e3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ca1728f5-5591-c04e-a0b1-de09f29b9089\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:08:52.4003334Z\"\n }" + string: "{\n \"name\": \"c7ae7deb-350d-6d47-af77-842b1cf925e3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:06:38.9252497Z\"\n }" headers: cache-control: - no-cache @@ -324,7 +316,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:21 GMT + - Sat, 29 Apr 2023 09:07:39 GMT expires: - '-1' pragma: @@ -333,10 +325,6 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -357,14 +345,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52817ca-9155-4ec0-a0b1-de09f29b9089?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb7daec7-0d35-476d-af77-842b1cf925e3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ca1728f5-5591-c04e-a0b1-de09f29b9089\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:08:52.4003334Z\"\n }" + string: "{\n \"name\": \"c7ae7deb-350d-6d47-af77-842b1cf925e3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:06:38.9252497Z\"\n }" headers: cache-control: - no-cache @@ -373,7 +361,142 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:52 GMT + - Sat, 29 Apr 2023 09:08:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id + --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb7daec7-0d35-476d-af77-842b1cf925e3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c7ae7deb-350d-6d47-af77-842b1cf925e3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:06:38.9252497Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 09:08:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id + --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb7daec7-0d35-476d-af77-842b1cf925e3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c7ae7deb-350d-6d47-af77-842b1cf925e3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:06:38.9252497Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 09:09:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id + --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb7daec7-0d35-476d-af77-842b1cf925e3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c7ae7deb-350d-6d47-af77-842b1cf925e3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:06:38.9252497Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 09:09:39 GMT expires: - '-1' pragma: @@ -406,14 +529,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52817ca-9155-4ec0-a0b1-de09f29b9089?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb7daec7-0d35-476d-af77-842b1cf925e3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ca1728f5-5591-c04e-a0b1-de09f29b9089\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:08:52.4003334Z\"\n }" + string: "{\n \"name\": \"c7ae7deb-350d-6d47-af77-842b1cf925e3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:06:38.9252497Z\"\n }" headers: cache-control: - no-cache @@ -422,7 +545,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:11:22 GMT + - Sat, 29 Apr 2023 09:10:09 GMT expires: - '-1' pragma: @@ -455,14 +578,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52817ca-9155-4ec0-a0b1-de09f29b9089?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb7daec7-0d35-476d-af77-842b1cf925e3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ca1728f5-5591-c04e-a0b1-de09f29b9089\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:08:52.4003334Z\"\n }" + string: "{\n \"name\": \"c7ae7deb-350d-6d47-af77-842b1cf925e3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:06:38.9252497Z\"\n }" headers: cache-control: - no-cache @@ -471,7 +594,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:11:52 GMT + - Sat, 29 Apr 2023 09:10:40 GMT expires: - '-1' pragma: @@ -504,14 +627,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52817ca-9155-4ec0-a0b1-de09f29b9089?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb7daec7-0d35-476d-af77-842b1cf925e3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ca1728f5-5591-c04e-a0b1-de09f29b9089\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:08:52.4003334Z\"\n }" + string: "{\n \"name\": \"c7ae7deb-350d-6d47-af77-842b1cf925e3\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:06:38.9252497Z\"\n }" headers: cache-control: - no-cache @@ -520,7 +643,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:22 GMT + - Sat, 29 Apr 2023 09:11:09 GMT expires: - '-1' pragma: @@ -553,24 +676,24 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52817ca-9155-4ec0-a0b1-de09f29b9089?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eb7daec7-0d35-476d-af77-842b1cf925e3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ca1728f5-5591-c04e-a0b1-de09f29b9089\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:08:52.4003334Z\",\n \"endTime\": - \"2023-03-15T10:12:27.233516Z\"\n }" + string: "{\n \"name\": \"c7ae7deb-350d-6d47-af77-842b1cf925e3\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-04-29T09:06:38.9252497Z\",\n \"endTime\": + \"2023-04-29T09:11:32.7789181Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:52 GMT + - Sat, 29 Apr 2023 09:11:39 GMT expires: - '-1' pragma: @@ -603,7 +726,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -613,29 +736,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthw7qtq6f3-79a739\",\n \"fqdn\": \"cliakstest-clitesthw7qtq6f3-79a739-gkaxb70e.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthw7qtq6f3-79a739-gkaxb70e.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnclrd3rzw-79a739\",\n \"fqdn\": \"cliakstest-clitestnclrd3rzw-79a739-y2vjgwad.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnclrd3rzw-79a739-y2vjgwad.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4f341bc0-1170-457e-bafa-9aed72cd11a9\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8bef8cc1-7b0e-4a56-ab87-0db549720d6d\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -654,16 +777,16 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4176' + - '4214' content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:53 GMT + - Sat, 29 Apr 2023 09:11:39 GMT expires: - '-1' pragma: @@ -696,7 +819,7 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -706,29 +829,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthw7qtq6f3-79a739\",\n \"fqdn\": \"cliakstest-clitesthw7qtq6f3-79a739-gkaxb70e.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthw7qtq6f3-79a739-gkaxb70e.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnclrd3rzw-79a739\",\n \"fqdn\": \"cliakstest-clitestnclrd3rzw-79a739-y2vjgwad.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnclrd3rzw-79a739-y2vjgwad.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4f341bc0-1170-457e-bafa-9aed72cd11a9\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8bef8cc1-7b0e-4a56-ab87-0db549720d6d\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -747,16 +870,16 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4176' + - '4214' content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:53 GMT + - Sat, 29 Apr 2023 09:11:41 GMT expires: - '-1' pragma: @@ -775,23 +898,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitesthw7qtq6f3-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestnclrd3rzw-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4f341bc0-1170-457e-bafa-9aed72cd11a9"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8bef8cc1-7b0e-4a56-ab87-0db549720d6d"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "aadProfile": {"managed": true, "adminGroupObjectIDs": ["00000000-0000-0000-0000-000000000003"], "tenantID": "00000000-0000-0000-0000-000000000004"}, "identityProfile": {"kubeletidentity": @@ -809,14 +932,14 @@ interactions: Connection: - keep-alive Content-Length: - - '2634' + - '2633' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -826,29 +949,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthw7qtq6f3-79a739\",\n \"fqdn\": \"cliakstest-clitesthw7qtq6f3-79a739-gkaxb70e.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthw7qtq6f3-79a739-gkaxb70e.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnclrd3rzw-79a739\",\n \"fqdn\": \"cliakstest-clitestnclrd3rzw-79a739-y2vjgwad.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnclrd3rzw-79a739-y2vjgwad.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4f341bc0-1170-457e-bafa-9aed72cd11a9\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8bef8cc1-7b0e-4a56-ab87-0db549720d6d\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -866,18 +989,18 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e395f6f-65a1-4335-ba81-84e46d7c0a3d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6878db3e-9c45-4a07-b0a2-5082688ce896?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4124' + - '4162' content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:56 GMT + - Sat, 29 Apr 2023 09:11:45 GMT expires: - '-1' pragma: @@ -893,7 +1016,56 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1192' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id + -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6878db3e-9c45-4a07-b0a2-5082688ce896?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"3edb7868-459c-074a-b0a2-5082688ce896\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:11:44.9903586Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 09:11:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -912,14 +1084,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e395f6f-65a1-4335-ba81-84e46d7c0a3d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6878db3e-9c45-4a07-b0a2-5082688ce896?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6f5f391e-a165-3543-ba81-84e46d7c0a3d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:57.1668539Z\"\n }" + string: "{\n \"name\": \"3edb7868-459c-074a-b0a2-5082688ce896\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:11:44.9903586Z\"\n }" headers: cache-control: - no-cache @@ -928,7 +1100,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:13:26 GMT + - Sat, 29 Apr 2023 09:12:14 GMT expires: - '-1' pragma: @@ -961,14 +1133,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e395f6f-65a1-4335-ba81-84e46d7c0a3d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6878db3e-9c45-4a07-b0a2-5082688ce896?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6f5f391e-a165-3543-ba81-84e46d7c0a3d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:57.1668539Z\"\n }" + string: "{\n \"name\": \"3edb7868-459c-074a-b0a2-5082688ce896\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:11:44.9903586Z\"\n }" headers: cache-control: - no-cache @@ -977,7 +1149,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:13:56 GMT + - Sat, 29 Apr 2023 09:12:44 GMT expires: - '-1' pragma: @@ -1010,14 +1182,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e395f6f-65a1-4335-ba81-84e46d7c0a3d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6878db3e-9c45-4a07-b0a2-5082688ce896?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6f5f391e-a165-3543-ba81-84e46d7c0a3d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:57.1668539Z\"\n }" + string: "{\n \"name\": \"3edb7868-459c-074a-b0a2-5082688ce896\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:11:44.9903586Z\"\n }" headers: cache-control: - no-cache @@ -1026,7 +1198,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:14:27 GMT + - Sat, 29 Apr 2023 09:13:15 GMT expires: - '-1' pragma: @@ -1059,14 +1231,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e395f6f-65a1-4335-ba81-84e46d7c0a3d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6878db3e-9c45-4a07-b0a2-5082688ce896?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6f5f391e-a165-3543-ba81-84e46d7c0a3d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:57.1668539Z\"\n }" + string: "{\n \"name\": \"3edb7868-459c-074a-b0a2-5082688ce896\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:11:44.9903586Z\"\n }" headers: cache-control: - no-cache @@ -1075,7 +1247,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:14:57 GMT + - Sat, 29 Apr 2023 09:13:44 GMT expires: - '-1' pragma: @@ -1108,14 +1280,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e395f6f-65a1-4335-ba81-84e46d7c0a3d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6878db3e-9c45-4a07-b0a2-5082688ce896?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6f5f391e-a165-3543-ba81-84e46d7c0a3d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:57.1668539Z\"\n }" + string: "{\n \"name\": \"3edb7868-459c-074a-b0a2-5082688ce896\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:11:44.9903586Z\"\n }" headers: cache-control: - no-cache @@ -1124,7 +1296,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:15:27 GMT + - Sat, 29 Apr 2023 09:14:14 GMT expires: - '-1' pragma: @@ -1157,15 +1329,15 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e395f6f-65a1-4335-ba81-84e46d7c0a3d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6878db3e-9c45-4a07-b0a2-5082688ce896?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6f5f391e-a165-3543-ba81-84e46d7c0a3d\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:12:57.1668539Z\",\n \"endTime\": - \"2023-03-15T10:15:44.4055247Z\"\n }" + string: "{\n \"name\": \"3edb7868-459c-074a-b0a2-5082688ce896\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-04-29T09:11:44.9903586Z\",\n \"endTime\": + \"2023-04-29T09:14:35.3906472Z\"\n }" headers: cache-control: - no-cache @@ -1174,7 +1346,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:15:57 GMT + - Sat, 29 Apr 2023 09:14:44 GMT expires: - '-1' pragma: @@ -1207,7 +1379,7 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -1217,29 +1389,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthw7qtq6f3-79a739\",\n \"fqdn\": \"cliakstest-clitesthw7qtq6f3-79a739-gkaxb70e.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthw7qtq6f3-79a739-gkaxb70e.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestnclrd3rzw-79a739\",\n \"fqdn\": \"cliakstest-clitestnclrd3rzw-79a739-y2vjgwad.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestnclrd3rzw-79a739-y2vjgwad.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4f341bc0-1170-457e-bafa-9aed72cd11a9\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8bef8cc1-7b0e-4a56-ab87-0db549720d6d\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1257,16 +1429,16 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4126' + - '4164' content-type: - application/json date: - - Wed, 15 Mar 2023 10:15:57 GMT + - Sat, 29 Apr 2023 09:14:45 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_aadv1_and_update_with_managed_aad_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_aadv1_and_update_with_managed_aad_msi.yaml index 0f47ef14781..2edda65f238 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_aadv1_and_update_with_managed_aad_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_aadv1_and_update_with_managed_aad_msi.yaml @@ -14,7 +14,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 09:56:26 GMT + - Sat, 29 Apr 2023 09:14:47 GMT expires: - '-1' pragma: @@ -60,21 +60,21 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T09:56:26Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_aadv1_and_update_with_managed_aad_msi","date":"2023-04-29T09:14:46Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '368' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 09:56:27 GMT + - Sat, 29 Apr 2023 09:14:46 GMT expires: - '-1' pragma: @@ -90,14 +90,14 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestocty7n7hi-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest3it6vji4n-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", @@ -122,7 +122,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -132,31 +132,31 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestocty7n7hi-79a739\",\n \"fqdn\": \"cliakstest-clitestocty7n7hi-79a739-5s9op9hv.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestocty7n7hi-79a739-5s9op9hv.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitest3it6vji4n-79a739\",\n \"fqdn\": \"cliakstest-clitest3it6vji4n-79a739-kccfe2dr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3it6vji4n-79a739-kccfe2dr.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"aadProfile\": {\n \"adminGroupObjectIDs\": null,\n \"adminUsers\": null,\n \"clientAppID\": \"00000000-0000-0000-0000-000000000002\",\n \"serverAppID\": @@ -168,18 +168,18 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/45ea16b7-0935-49e1-a117-5d0ac1cc2a10?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e186d17-747a-4011-b00d-c9828463deba?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3523' + - '3561' content-type: - application/json date: - - Wed, 15 Mar 2023 09:56:30 GMT + - Sat, 29 Apr 2023 09:14:51 GMT expires: - '-1' pragma: @@ -210,14 +210,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/45ea16b7-0935-49e1-a117-5d0ac1cc2a10?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e186d17-747a-4011-b00d-c9828463deba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b716ea45-3509-e149-a117-5d0ac1cc2a10\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:31.3192117Z\"\n }" + string: "{\n \"name\": \"176d185e-7a74-1140-b00d-c9828463deba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:14:51.5230875Z\"\n }" headers: cache-control: - no-cache @@ -226,7 +226,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:57:01 GMT + - Sat, 29 Apr 2023 09:14:51 GMT expires: - '-1' pragma: @@ -259,14 +259,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/45ea16b7-0935-49e1-a117-5d0ac1cc2a10?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e186d17-747a-4011-b00d-c9828463deba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b716ea45-3509-e149-a117-5d0ac1cc2a10\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:31.3192117Z\"\n }" + string: "{\n \"name\": \"176d185e-7a74-1140-b00d-c9828463deba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:14:51.5230875Z\"\n }" headers: cache-control: - no-cache @@ -275,7 +275,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:57:31 GMT + - Sat, 29 Apr 2023 09:15:21 GMT expires: - '-1' pragma: @@ -308,14 +308,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/45ea16b7-0935-49e1-a117-5d0ac1cc2a10?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e186d17-747a-4011-b00d-c9828463deba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b716ea45-3509-e149-a117-5d0ac1cc2a10\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:31.3192117Z\"\n }" + string: "{\n \"name\": \"176d185e-7a74-1140-b00d-c9828463deba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:14:51.5230875Z\"\n }" headers: cache-control: - no-cache @@ -324,7 +324,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:58:01 GMT + - Sat, 29 Apr 2023 09:15:51 GMT expires: - '-1' pragma: @@ -357,14 +357,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/45ea16b7-0935-49e1-a117-5d0ac1cc2a10?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e186d17-747a-4011-b00d-c9828463deba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b716ea45-3509-e149-a117-5d0ac1cc2a10\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:31.3192117Z\"\n }" + string: "{\n \"name\": \"176d185e-7a74-1140-b00d-c9828463deba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:14:51.5230875Z\"\n }" headers: cache-control: - no-cache @@ -373,7 +373,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:58:31 GMT + - Sat, 29 Apr 2023 09:16:21 GMT expires: - '-1' pragma: @@ -406,14 +406,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/45ea16b7-0935-49e1-a117-5d0ac1cc2a10?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e186d17-747a-4011-b00d-c9828463deba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b716ea45-3509-e149-a117-5d0ac1cc2a10\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:31.3192117Z\"\n }" + string: "{\n \"name\": \"176d185e-7a74-1140-b00d-c9828463deba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:14:51.5230875Z\"\n }" headers: cache-control: - no-cache @@ -422,7 +422,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:59:02 GMT + - Sat, 29 Apr 2023 09:16:52 GMT expires: - '-1' pragma: @@ -455,14 +455,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/45ea16b7-0935-49e1-a117-5d0ac1cc2a10?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e186d17-747a-4011-b00d-c9828463deba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b716ea45-3509-e149-a117-5d0ac1cc2a10\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:31.3192117Z\"\n }" + string: "{\n \"name\": \"176d185e-7a74-1140-b00d-c9828463deba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:14:51.5230875Z\"\n }" headers: cache-control: - no-cache @@ -471,7 +471,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:59:31 GMT + - Sat, 29 Apr 2023 09:17:22 GMT expires: - '-1' pragma: @@ -504,14 +504,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/45ea16b7-0935-49e1-a117-5d0ac1cc2a10?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e186d17-747a-4011-b00d-c9828463deba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b716ea45-3509-e149-a117-5d0ac1cc2a10\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:31.3192117Z\"\n }" + string: "{\n \"name\": \"176d185e-7a74-1140-b00d-c9828463deba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:14:51.5230875Z\"\n }" headers: cache-control: - no-cache @@ -520,7 +520,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:01 GMT + - Sat, 29 Apr 2023 09:17:52 GMT expires: - '-1' pragma: @@ -553,15 +553,162 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/45ea16b7-0935-49e1-a117-5d0ac1cc2a10?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e186d17-747a-4011-b00d-c9828463deba?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b716ea45-3509-e149-a117-5d0ac1cc2a10\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T09:56:31.3192117Z\",\n \"endTime\": - \"2023-03-15T10:00:20.3069614Z\"\n }" + string: "{\n \"name\": \"176d185e-7a74-1140-b00d-c9828463deba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:14:51.5230875Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 09:18:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id + --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e186d17-747a-4011-b00d-c9828463deba?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"176d185e-7a74-1140-b00d-c9828463deba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:14:51.5230875Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 09:18:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id + --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e186d17-747a-4011-b00d-c9828463deba?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"176d185e-7a74-1140-b00d-c9828463deba\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:14:51.5230875Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 09:19:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id + --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5e186d17-747a-4011-b00d-c9828463deba?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"176d185e-7a74-1140-b00d-c9828463deba\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-04-29T09:14:51.5230875Z\",\n \"endTime\": + \"2023-04-29T09:19:52.5356944Z\"\n }" headers: cache-control: - no-cache @@ -570,7 +717,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:31 GMT + - Sat, 29 Apr 2023 09:19:52 GMT expires: - '-1' pragma: @@ -603,7 +750,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --aad-server-app-id --aad-server-app-secret --aad-client-app-id --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -613,29 +760,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestocty7n7hi-79a739\",\n \"fqdn\": \"cliakstest-clitestocty7n7hi-79a739-5s9op9hv.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestocty7n7hi-79a739-5s9op9hv.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitest3it6vji4n-79a739\",\n \"fqdn\": \"cliakstest-clitest3it6vji4n-79a739-kccfe2dr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3it6vji4n-79a739-kccfe2dr.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/22cc2c4b-4dec-4cf4-b444-b9dc3734f6a8\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f13e45e3-d4b9-4ad3-a862-b53b760fd364\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -654,16 +801,16 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4176' + - '4214' content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:32 GMT + - Sat, 29 Apr 2023 09:19:52 GMT expires: - '-1' pragma: @@ -696,7 +843,7 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -706,29 +853,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestocty7n7hi-79a739\",\n \"fqdn\": \"cliakstest-clitestocty7n7hi-79a739-5s9op9hv.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestocty7n7hi-79a739-5s9op9hv.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitest3it6vji4n-79a739\",\n \"fqdn\": \"cliakstest-clitest3it6vji4n-79a739-kccfe2dr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3it6vji4n-79a739-kccfe2dr.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/22cc2c4b-4dec-4cf4-b444-b9dc3734f6a8\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f13e45e3-d4b9-4ad3-a862-b53b760fd364\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -747,16 +894,16 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4176' + - '4214' content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:33 GMT + - Sat, 29 Apr 2023 09:19:53 GMT expires: - '-1' pragma: @@ -775,23 +922,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestocty7n7hi-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitest3it6vji4n-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/22cc2c4b-4dec-4cf4-b444-b9dc3734f6a8"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f13e45e3-d4b9-4ad3-a862-b53b760fd364"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "aadProfile": {"managed": true, "adminGroupObjectIDs": ["00000000-0000-0000-0000-000000000003"], "tenantID": "00000000-0000-0000-0000-000000000004"}, "identityProfile": {"kubeletidentity": @@ -809,14 +956,14 @@ interactions: Connection: - keep-alive Content-Length: - - '2634' + - '2633' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -826,29 +973,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestocty7n7hi-79a739\",\n \"fqdn\": \"cliakstest-clitestocty7n7hi-79a739-5s9op9hv.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestocty7n7hi-79a739-5s9op9hv.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitest3it6vji4n-79a739\",\n \"fqdn\": \"cliakstest-clitest3it6vji4n-79a739-kccfe2dr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3it6vji4n-79a739-kccfe2dr.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/22cc2c4b-4dec-4cf4-b444-b9dc3734f6a8\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f13e45e3-d4b9-4ad3-a862-b53b760fd364\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -866,18 +1013,18 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c857be94-6013-4885-84bf-caab74135515?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/950d16cd-fdef-4d9e-af85-464a9190d892?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4124' + - '4162' content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:36 GMT + - Sat, 29 Apr 2023 09:19:56 GMT expires: - '-1' pragma: @@ -893,7 +1040,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1184' + - '1196' status: code: 200 message: OK @@ -912,14 +1059,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c857be94-6013-4885-84bf-caab74135515?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/950d16cd-fdef-4d9e-af85-464a9190d892?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"94be57c8-1360-8548-84bf-caab74135515\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:00:35.9761703Z\"\n }" + string: "{\n \"name\": \"cd160d95-effd-9e4d-af85-464a9190d892\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:19:57.4942073Z\"\n }" headers: cache-control: - no-cache @@ -928,7 +1075,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:01:05 GMT + - Sat, 29 Apr 2023 09:19:56 GMT expires: - '-1' pragma: @@ -961,14 +1108,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c857be94-6013-4885-84bf-caab74135515?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/950d16cd-fdef-4d9e-af85-464a9190d892?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"94be57c8-1360-8548-84bf-caab74135515\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:00:35.9761703Z\"\n }" + string: "{\n \"name\": \"cd160d95-effd-9e4d-af85-464a9190d892\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:19:57.4942073Z\"\n }" headers: cache-control: - no-cache @@ -977,7 +1124,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:01:35 GMT + - Sat, 29 Apr 2023 09:20:27 GMT expires: - '-1' pragma: @@ -1010,14 +1157,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c857be94-6013-4885-84bf-caab74135515?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/950d16cd-fdef-4d9e-af85-464a9190d892?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"94be57c8-1360-8548-84bf-caab74135515\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:00:35.9761703Z\"\n }" + string: "{\n \"name\": \"cd160d95-effd-9e4d-af85-464a9190d892\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:19:57.4942073Z\"\n }" headers: cache-control: - no-cache @@ -1026,7 +1173,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:02:05 GMT + - Sat, 29 Apr 2023 09:20:57 GMT expires: - '-1' pragma: @@ -1059,14 +1206,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c857be94-6013-4885-84bf-caab74135515?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/950d16cd-fdef-4d9e-af85-464a9190d892?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"94be57c8-1360-8548-84bf-caab74135515\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:00:35.9761703Z\"\n }" + string: "{\n \"name\": \"cd160d95-effd-9e4d-af85-464a9190d892\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:19:57.4942073Z\"\n }" headers: cache-control: - no-cache @@ -1075,7 +1222,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:02:35 GMT + - Sat, 29 Apr 2023 09:21:27 GMT expires: - '-1' pragma: @@ -1108,14 +1255,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c857be94-6013-4885-84bf-caab74135515?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/950d16cd-fdef-4d9e-af85-464a9190d892?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"94be57c8-1360-8548-84bf-caab74135515\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:00:35.9761703Z\"\n }" + string: "{\n \"name\": \"cd160d95-effd-9e4d-af85-464a9190d892\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:19:57.4942073Z\"\n }" headers: cache-control: - no-cache @@ -1124,7 +1271,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:03:06 GMT + - Sat, 29 Apr 2023 09:21:57 GMT expires: - '-1' pragma: @@ -1157,24 +1304,73 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c857be94-6013-4885-84bf-caab74135515?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/950d16cd-fdef-4d9e-af85-464a9190d892?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"94be57c8-1360-8548-84bf-caab74135515\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:00:35.9761703Z\",\n \"endTime\": - \"2023-03-15T10:03:16.3082582Z\"\n }" + string: "{\n \"name\": \"cd160d95-effd-9e4d-af85-464a9190d892\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:19:57.4942073Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 09:22:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id + -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/950d16cd-fdef-4d9e-af85-464a9190d892?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"cd160d95-effd-9e4d-af85-464a9190d892\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-04-29T09:19:57.4942073Z\",\n \"endTime\": + \"2023-04-29T09:22:50.009242Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' content-type: - application/json date: - - Wed, 15 Mar 2023 10:03:36 GMT + - Sat, 29 Apr 2023 09:22:57 GMT expires: - '-1' pragma: @@ -1207,7 +1403,7 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -1217,29 +1413,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestocty7n7hi-79a739\",\n \"fqdn\": \"cliakstest-clitestocty7n7hi-79a739-5s9op9hv.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestocty7n7hi-79a739-5s9op9hv.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitest3it6vji4n-79a739\",\n \"fqdn\": \"cliakstest-clitest3it6vji4n-79a739-kccfe2dr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest3it6vji4n-79a739-kccfe2dr.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/22cc2c4b-4dec-4cf4-b444-b9dc3734f6a8\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f13e45e3-d4b9-4ad3-a862-b53b760fd364\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1257,16 +1453,16 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4126' + - '4164' content-type: - application/json date: - - Wed, 15 Mar 2023 10:03:36 GMT + - Sat, 29 Apr 2023 09:22:57 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_addon_with_azurekeyvaultsecretsprovider_with_secret_rotation.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_addon_with_azurekeyvaultsecretsprovider_with_secret_rotation.yaml index 2ace04744f9..a1030bc61fe 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_addon_with_azurekeyvaultsecretsprovider_with_secret_rotation.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_addon_with_azurekeyvaultsecretsprovider_with_secret_rotation.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:03:38 GMT + - Wed, 14 Jun 2023 18:31:07 GMT expires: - '-1' pragma: @@ -60,21 +60,21 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:03:37Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_addon_with_azurekeyvaultsecretsprovider_with_secret_rotation","date":"2023-06-14T18:31:04Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '406' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:03:37 GMT + - Wed, 14 Jun 2023 18:31:07 GMT expires: - '-1' pragma: @@ -90,20 +90,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest6dybcq7fi-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestkzb6bpji4-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": - {"enabled": true, "config": {"enableSecretRotation": "true", "rotationPollInterval": - "30m"}}}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": + true, "config": {"enableSecretRotation": "true", "rotationPollInterval": "30m"}}}, + "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": + "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": + false, "storageProfile": {}}}' headers: Accept: - application/json @@ -114,70 +114,73 @@ interactions: Connection: - keep-alive Content-Length: - - '1583' + - '1875' Content-Type: - application/json ParameterSetName: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest6dybcq7fi-79a739\",\n \"fqdn\": \"cliakstest-clitest6dybcq7fi-79a739-hibpba3d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest6dybcq7fi-79a739-hibpba3d.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"true\",\n \"rotationPollInterval\": - \"30m\"\n }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": - \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestkzb6bpji4-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestkzb6bpji4-8ecadf-tn4owoen.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestkzb6bpji4-8ecadf-tn4owoen.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"enableSecretRotation\": \"true\",\n \ + \ \"rotationPollInterval\": \"30m\"\n }\n }\n },\n \"nodeResourceGroup\"\ + : \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n\ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/edf7d89a-25eb-4664-be30-f20d32391a3a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20459e42-0c42-47fa-8001-aa842490e8ef?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3460' + - '3788' content-type: - application/json date: - - Wed, 15 Mar 2023 10:03:41 GMT + - Wed, 14 Jun 2023 18:31:14 GMT expires: - '-1' pragma: @@ -208,14 +211,14 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/edf7d89a-25eb-4664-be30-f20d32391a3a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20459e42-0c42-47fa-8001-aa842490e8ef?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9ad8f7ed-eb25-6446-be30-f20d32391a3a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:03:41.7575865Z\"\n }" + string: "{\n \"name\": \"429e4520-420c-fa47-8001-aa842490e8ef\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:31:14.5835736Z\"\n }" headers: cache-control: - no-cache @@ -224,7 +227,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:04:11 GMT + - Wed, 14 Jun 2023 18:31:15 GMT expires: - '-1' pragma: @@ -257,14 +260,14 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/edf7d89a-25eb-4664-be30-f20d32391a3a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20459e42-0c42-47fa-8001-aa842490e8ef?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9ad8f7ed-eb25-6446-be30-f20d32391a3a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:03:41.7575865Z\"\n }" + string: "{\n \"name\": \"429e4520-420c-fa47-8001-aa842490e8ef\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:31:14.5835736Z\"\n }" headers: cache-control: - no-cache @@ -273,7 +276,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:04:41 GMT + - Wed, 14 Jun 2023 18:31:45 GMT expires: - '-1' pragma: @@ -306,14 +309,14 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/edf7d89a-25eb-4664-be30-f20d32391a3a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20459e42-0c42-47fa-8001-aa842490e8ef?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9ad8f7ed-eb25-6446-be30-f20d32391a3a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:03:41.7575865Z\"\n }" + string: "{\n \"name\": \"429e4520-420c-fa47-8001-aa842490e8ef\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:31:14.5835736Z\"\n }" headers: cache-control: - no-cache @@ -322,7 +325,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:05:11 GMT + - Wed, 14 Jun 2023 18:32:15 GMT expires: - '-1' pragma: @@ -355,14 +358,14 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/edf7d89a-25eb-4664-be30-f20d32391a3a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20459e42-0c42-47fa-8001-aa842490e8ef?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9ad8f7ed-eb25-6446-be30-f20d32391a3a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:03:41.7575865Z\"\n }" + string: "{\n \"name\": \"429e4520-420c-fa47-8001-aa842490e8ef\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:31:14.5835736Z\"\n }" headers: cache-control: - no-cache @@ -371,7 +374,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:05:42 GMT + - Wed, 14 Jun 2023 18:32:45 GMT expires: - '-1' pragma: @@ -404,14 +407,14 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/edf7d89a-25eb-4664-be30-f20d32391a3a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20459e42-0c42-47fa-8001-aa842490e8ef?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9ad8f7ed-eb25-6446-be30-f20d32391a3a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:03:41.7575865Z\"\n }" + string: "{\n \"name\": \"429e4520-420c-fa47-8001-aa842490e8ef\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:31:14.5835736Z\"\n }" headers: cache-control: - no-cache @@ -420,7 +423,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:06:12 GMT + - Wed, 14 Jun 2023 18:33:15 GMT expires: - '-1' pragma: @@ -453,14 +456,14 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/edf7d89a-25eb-4664-be30-f20d32391a3a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20459e42-0c42-47fa-8001-aa842490e8ef?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9ad8f7ed-eb25-6446-be30-f20d32391a3a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:03:41.7575865Z\"\n }" + string: "{\n \"name\": \"429e4520-420c-fa47-8001-aa842490e8ef\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:31:14.5835736Z\"\n }" headers: cache-control: - no-cache @@ -469,7 +472,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:06:42 GMT + - Wed, 14 Jun 2023 18:33:46 GMT expires: - '-1' pragma: @@ -502,15 +505,113 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/edf7d89a-25eb-4664-be30-f20d32391a3a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20459e42-0c42-47fa-8001-aa842490e8ef?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9ad8f7ed-eb25-6446-be30-f20d32391a3a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:03:41.7575865Z\",\n \"endTime\": - \"2023-03-15T10:07:10.4949205Z\"\n }" + string: "{\n \"name\": \"429e4520-420c-fa47-8001-aa842490e8ef\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:31:14.5835736Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 18:34:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval + --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20459e42-0c42-47fa-8001-aa842490e8ef?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"429e4520-420c-fa47-8001-aa842490e8ef\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:31:14.5835736Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 18:34:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval + --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20459e42-0c42-47fa-8001-aa842490e8ef?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"429e4520-420c-fa47-8001-aa842490e8ef\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T18:31:14.5835736Z\",\n \"\ + endTime\": \"2023-06-14T18:34:54.3751231Z\"\n }" headers: cache-control: - no-cache @@ -519,7 +620,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:07:11 GMT + - Wed, 14 Jun 2023 18:35:16 GMT expires: - '-1' pragma: @@ -552,68 +653,72 @@ interactions: - --resource-group --name -a --enable-secret-rotation --rotation-poll-interval --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest6dybcq7fi-79a739\",\n \"fqdn\": \"cliakstest-clitest6dybcq7fi-79a739-hibpba3d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest6dybcq7fi-79a739-hibpba3d.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"true\",\n \"rotationPollInterval\": - \"30m\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bd99be2b-986b-499b-be2a-0f1fb6c2d925\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestkzb6bpji4-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestkzb6bpji4-8ecadf-tn4owoen.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestkzb6bpji4-8ecadf-tn4owoen.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"enableSecretRotation\": \"true\",\n \ + \ \"rotationPollInterval\": \"30m\"\n },\n \"identity\": {\n \ + \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/92580cf5-a1a8-4a5d-a68a-50ba4d8fd0db\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4490' + - '4818' content-type: - application/json date: - - Wed, 15 Mar 2023 10:07:12 GMT + - Wed, 14 Jun 2023 18:35:17 GMT expires: - '-1' pragma: @@ -647,8 +752,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -656,17 +761,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9c862441-173e-47e5-b3b6-e619337c5146?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2127cb2d-46ea-45a5-b813-6b7a489f4d83?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:07:13 GMT + - Wed, 14 Jun 2023 18:35:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/9c862441-173e-47e5-b3b6-e619337c5146?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/2127cb2d-46ea-45a5-b813-6b7a489f4d83?api-version=2016-03-30 pragma: - no-cache server: @@ -676,7 +781,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_again_should_fail.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_again_should_fail.yaml old mode 100755 new mode 100644 index 53d36f650a3..a6fdf331c47 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_again_should_fail.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_again_should_fail.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 08:47:47 GMT + - Wed, 14 Jun 2023 18:35:24 GMT expires: - '-1' pragma: @@ -46,19 +46,18 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesth7n7ynhik-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestatxs2j2sy-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDQKjOpzEmu8CQ5T4ZCJbS4ZILrj9ANtsvn7CoX7xUmZl7hOHqTUG3rfii32urettLIWEuAcNqddeV3OQPKPfk1CVpYxZCtzuvAHKXCYkerubiiJEa4zijZGPr8NLKDD9ynn+8LcNCR0BM/awB1zoHXUhSq3/pc+H1BQdi4jae6cuD7O2qluTxBTceWx6aQCUafw0l8jMiRrBeWL4udr/U2H516t2qAwgp29gKgOy7ZxFuUwzHQvlP77Vom0Ys0YUAd082nLFsW6vHzkOimlTBNR8auwiS+m4TmjrJ1vB1x57LGFIIKiDd/YibiA1SkqNv3lTlG58cocMWAeGvYCpoZ - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -69,67 +68,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1459' + - '1751' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesth7n7ynhik-79a739\",\n \"fqdn\": \"cliakstest-clitesth7n7ynhik-79a739-voksz929.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesth7n7ynhik-79a739-voksz929.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDQKjOpzEmu8CQ5T4ZCJbS4ZILrj9ANtsvn7CoX7xUmZl7hOHqTUG3rfii32urettLIWEuAcNqddeV3OQPKPfk1CVpYxZCtzuvAHKXCYkerubiiJEa4zijZGPr8NLKDD9ynn+8LcNCR0BM/awB1zoHXUhSq3/pc+H1BQdi4jae6cuD7O2qluTxBTceWx6aQCUafw0l8jMiRrBeWL4udr/U2H516t2qAwgp29gKgOy7ZxFuUwzHQvlP77Vom0Ys0YUAd082nLFsW6vHzkOimlTBNR8auwiS+m4TmjrJ1vB1x57LGFIIKiDd/YibiA1SkqNv3lTlG58cocMWAeGvYCpoZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestatxs2j2sy-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestatxs2j2sy-8ecadf-sf6vmroe.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestatxs2j2sy-8ecadf-sf6vmroe.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/313b686f-314a-4bad-8377-1fa279d4efe9?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f82b6ba-a50c-4a52-bbe1-39e4993546eb?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3268' + - '3596' content-type: - application/json date: - - Wed, 15 Mar 2023 08:47:52 GMT + - Wed, 14 Jun 2023 18:35:32 GMT expires: - '-1' pragma: @@ -159,14 +160,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/313b686f-314a-4bad-8377-1fa279d4efe9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f82b6ba-a50c-4a52-bbe1-39e4993546eb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6f683b31-4a31-ad4b-8377-1fa279d4efe9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T08:47:51.7404684Z\"\n }" + string: "{\n \"name\": \"bab6822f-0ca5-524a-bbe1-39e4993546eb\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:35:31.8344497Z\"\n }" headers: cache-control: - no-cache @@ -175,7 +176,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 08:48:21 GMT + - Wed, 14 Jun 2023 18:35:32 GMT expires: - '-1' pragma: @@ -207,14 +208,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/313b686f-314a-4bad-8377-1fa279d4efe9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f82b6ba-a50c-4a52-bbe1-39e4993546eb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6f683b31-4a31-ad4b-8377-1fa279d4efe9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T08:47:51.7404684Z\"\n }" + string: "{\n \"name\": \"bab6822f-0ca5-524a-bbe1-39e4993546eb\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:35:31.8344497Z\"\n }" headers: cache-control: - no-cache @@ -223,7 +224,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 08:48:51 GMT + - Wed, 14 Jun 2023 18:36:02 GMT expires: - '-1' pragma: @@ -255,14 +256,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/313b686f-314a-4bad-8377-1fa279d4efe9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f82b6ba-a50c-4a52-bbe1-39e4993546eb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6f683b31-4a31-ad4b-8377-1fa279d4efe9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T08:47:51.7404684Z\"\n }" + string: "{\n \"name\": \"bab6822f-0ca5-524a-bbe1-39e4993546eb\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:35:31.8344497Z\"\n }" headers: cache-control: - no-cache @@ -271,7 +272,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 08:49:21 GMT + - Wed, 14 Jun 2023 18:36:32 GMT expires: - '-1' pragma: @@ -303,14 +304,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/313b686f-314a-4bad-8377-1fa279d4efe9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f82b6ba-a50c-4a52-bbe1-39e4993546eb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6f683b31-4a31-ad4b-8377-1fa279d4efe9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T08:47:51.7404684Z\"\n }" + string: "{\n \"name\": \"bab6822f-0ca5-524a-bbe1-39e4993546eb\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:35:31.8344497Z\"\n }" headers: cache-control: - no-cache @@ -319,7 +320,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 08:49:52 GMT + - Wed, 14 Jun 2023 18:37:02 GMT expires: - '-1' pragma: @@ -351,14 +352,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/313b686f-314a-4bad-8377-1fa279d4efe9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f82b6ba-a50c-4a52-bbe1-39e4993546eb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6f683b31-4a31-ad4b-8377-1fa279d4efe9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T08:47:51.7404684Z\"\n }" + string: "{\n \"name\": \"bab6822f-0ca5-524a-bbe1-39e4993546eb\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:35:31.8344497Z\"\n }" headers: cache-control: - no-cache @@ -367,7 +368,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 08:50:22 GMT + - Wed, 14 Jun 2023 18:37:32 GMT expires: - '-1' pragma: @@ -399,14 +400,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/313b686f-314a-4bad-8377-1fa279d4efe9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f82b6ba-a50c-4a52-bbe1-39e4993546eb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6f683b31-4a31-ad4b-8377-1fa279d4efe9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T08:47:51.7404684Z\"\n }" + string: "{\n \"name\": \"bab6822f-0ca5-524a-bbe1-39e4993546eb\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:35:31.8344497Z\"\n }" headers: cache-control: - no-cache @@ -415,7 +416,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 08:50:52 GMT + - Wed, 14 Jun 2023 18:38:03 GMT expires: - '-1' pragma: @@ -447,14 +448,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/313b686f-314a-4bad-8377-1fa279d4efe9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f82b6ba-a50c-4a52-bbe1-39e4993546eb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6f683b31-4a31-ad4b-8377-1fa279d4efe9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T08:47:51.7404684Z\"\n }" + string: "{\n \"name\": \"bab6822f-0ca5-524a-bbe1-39e4993546eb\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:35:31.8344497Z\"\n }" headers: cache-control: - no-cache @@ -463,7 +464,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 08:51:21 GMT + - Wed, 14 Jun 2023 18:38:33 GMT expires: - '-1' pragma: @@ -495,15 +496,15 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/313b686f-314a-4bad-8377-1fa279d4efe9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f82b6ba-a50c-4a52-bbe1-39e4993546eb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6f683b31-4a31-ad4b-8377-1fa279d4efe9\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T08:47:51.7404684Z\",\n \"endTime\": - \"2023-03-15T08:51:30.8169748Z\"\n }" + string: "{\n \"name\": \"bab6822f-0ca5-524a-bbe1-39e4993546eb\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T18:35:31.8344497Z\",\n \"\ + endTime\": \"2023-06-14T18:38:53.4008976Z\"\n }" headers: cache-control: - no-cache @@ -512,7 +513,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 08:51:52 GMT + - Wed, 14 Jun 2023 18:39:03 GMT expires: - '-1' pragma: @@ -544,64 +545,66 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesth7n7ynhik-79a739\",\n \"fqdn\": \"cliakstest-clitesth7n7ynhik-79a739-voksz929.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesth7n7ynhik-79a739-voksz929.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDQKjOpzEmu8CQ5T4ZCJbS4ZILrj9ANtsvn7CoX7xUmZl7hOHqTUG3rfii32urettLIWEuAcNqddeV3OQPKPfk1CVpYxZCtzuvAHKXCYkerubiiJEa4zijZGPr8NLKDD9ynn+8LcNCR0BM/awB1zoHXUhSq3/pc+H1BQdi4jae6cuD7O2qluTxBTceWx6aQCUafw0l8jMiRrBeWL4udr/U2H516t2qAwgp29gKgOy7ZxFuUwzHQvlP77Vom0Ys0YUAd082nLFsW6vHzkOimlTBNR8auwiS+m4TmjrJ1vB1x57LGFIIKiDd/YibiA1SkqNv3lTlG58cocMWAeGvYCpoZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b7d4c94f-50d5-432c-ad21-72dfa5875dc7\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestatxs2j2sy-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestatxs2j2sy-8ecadf-sf6vmroe.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestatxs2j2sy-8ecadf-sf6vmroe.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/92ed6ae3-724f-499f-b8f3-cd3ebbe487ca\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4249' content-type: - application/json date: - - Wed, 15 Mar 2023 08:51:53 GMT + - Wed, 14 Jun 2023 18:39:04 GMT expires: - '-1' pragma: @@ -633,64 +636,66 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesth7n7ynhik-79a739\",\n \"fqdn\": \"cliakstest-clitesth7n7ynhik-79a739-voksz929.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesth7n7ynhik-79a739-voksz929.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDQKjOpzEmu8CQ5T4ZCJbS4ZILrj9ANtsvn7CoX7xUmZl7hOHqTUG3rfii32urettLIWEuAcNqddeV3OQPKPfk1CVpYxZCtzuvAHKXCYkerubiiJEa4zijZGPr8NLKDD9ynn+8LcNCR0BM/awB1zoHXUhSq3/pc+H1BQdi4jae6cuD7O2qluTxBTceWx6aQCUafw0l8jMiRrBeWL4udr/U2H516t2qAwgp29gKgOy7ZxFuUwzHQvlP77Vom0Ys0YUAd082nLFsW6vHzkOimlTBNR8auwiS+m4TmjrJ1vB1x57LGFIIKiDd/YibiA1SkqNv3lTlG58cocMWAeGvYCpoZ - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b7d4c94f-50d5-432c-ad21-72dfa5875dc7\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestatxs2j2sy-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestatxs2j2sy-8ecadf-sf6vmroe.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestatxs2j2sy-8ecadf-sf6vmroe.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/92ed6ae3-724f-499f-b8f3-cd3ebbe487ca\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4249' content-type: - application/json date: - - Wed, 15 Mar 2023 08:51:53 GMT + - Wed, 14 Jun 2023 18:39:06 GMT expires: - '-1' pragma: @@ -724,8 +729,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -733,17 +738,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dd3c3065-5ed2-4b9f-87e4-08b7e637dac5?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ac77c2b9-4d24-4516-8dcf-e97a6c1250a6?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 08:51:54 GMT + - Wed, 14 Jun 2023 18:39:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/dd3c3065-5ed2-4b9f-87e4-08b7e637dac5?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/ac77c2b9-4d24-4516-8dcf-e97a6c1250a6?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_and_update_ipv6_count.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_and_update_ipv6_count.yaml old mode 100755 new mode 100644 index 811c4305c51..0d2f7f49afb --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_and_update_ipv6_count.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_and_update_ipv6_count.yaml @@ -13,54 +13,36 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators?api-version=2019-04-01&resource-type=managedClusters + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators\",\n - \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\",\n - \ \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.23.12\",\n \"upgrades\": - [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.9\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\",\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.6\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.5\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\",\n \"default\": true,\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.4\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.26.0\",\n \"isPreview\": true\n - \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n }\n }" + string: "{\n \"values\": [\n {\n \"version\": \"1.24\",\n \"capabilities\"\ + : {\n \"supportPlan\": [\n \"KubernetesOfficial\"\n ]\n },\n\ + \ \"patchVersions\": {\n \"1.24.10\": {\n \"upgrades\": [\n \ + \ \"1.25.5\",\n \"1.25.6\"\n ]\n },\n \"1.24.9\": {\n\ + \ \"upgrades\": [\n \"1.24.10\",\n \"1.25.5\",\n \"\ + 1.25.6\"\n ]\n }\n }\n },\n {\n \"version\": \"1.25\",\n\ + \ \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\"\ + \n ]\n },\n \"patchVersions\": {\n \"1.25.5\": {\n \"upgrades\"\ + : [\n \"1.25.6\",\n \"1.26.0\",\n \"1.26.3\"\n ]\n\ + \ },\n \"1.25.6\": {\n \"upgrades\": [\n \"1.26.0\",\n\ + \ \"1.26.3\"\n ]\n }\n }\n },\n {\n \"version\":\ + \ \"1.26\",\n \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\"\ + \n ]\n },\n \"patchVersions\": {\n \"1.26.0\": {\n \"upgrades\"\ + : [\n \"1.26.3\"\n ]\n },\n \"1.26.3\": {\n \"upgrades\"\ + : []\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2410' + - '957' content-type: - application/json date: - - Wed, 15 Mar 2023 10:07:14 GMT + - Wed, 14 Jun 2023 18:39:13 GMT expires: - '-1' pragma: @@ -94,8 +76,8 @@ interactions: --pod-cidrs --service-cidrs --ip-families --load-balancer-managed-outbound-ipv6-count --network-plugin --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -111,7 +93,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:07:14 GMT + - Wed, 14 Jun 2023 18:39:13 GMT expires: - '-1' pragma: @@ -127,22 +109,22 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "1.26.0", "dnsPrefix": "cliakstest-clitestucpnuyoao-79a739", + {"kubernetesVersion": "1.26.3", "dnsPrefix": "cliakstest-clitest7rbqgumq7-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "1.26.0", "upgradeSettings": {}, "enableNodePublicIP": + "mode": "System", "orchestratorVersion": "1.26.3", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "172.126.0.0/16", - "serviceCidr": "172.56.0.0/16", "dnsServiceIP": "172.56.0.10", "outboundType": - "loadBalancer", "loadBalancerSku": "standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1, "countIPv6": 2}, "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": - 30}, "podCidrs": ["172.126.0.0/16", "2001:abcd:1234::/64"], "serviceCidrs": - ["172.56.0.0/16", "2001:ffff::/108"], "ipFamilies": ["IPv4", "IPv6"]}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "172.126.0.0/16", "serviceCidr": "172.56.0.0/16", + "dnsServiceIP": "172.56.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1, "countIPv6": + 2}, "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30}, "podCidrs": ["172.126.0.0/16", + "2001:abcd:1234::/64"], "serviceCidrs": ["172.56.0.0/16", "2001:ffff::/108"], + "ipFamilies": ["IPv4", "IPv6"]}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/AKS-EnableDualStack @@ -155,7 +137,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1714' + - '2043' Content-Type: - application/json ParameterSetName: @@ -163,63 +145,65 @@ interactions: --pod-cidrs --service-cidrs --ip-families --load-balancer-managed-outbound-ipv6-count --network-plugin --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.26.0\",\n \"currentKubernetesVersion\": \"1.26.0\",\n \"dnsPrefix\": - \"cliakstest-clitestucpnuyoao-79a739\",\n \"fqdn\": \"cliakstest-clitestucpnuyoao-79a739-bi18iaxu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestucpnuyoao-79a739-bi18iaxu.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.26.0\",\n \"currentOrchestratorVersion\": - \"1.26.0\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1,\n \"countIPv6\": 2\n },\n \"allocatedOutboundPorts\": - 0,\n \"idleTimeoutInMinutes\": 30\n },\n \"podCidr\": \"172.126.0.0/16\",\n - \ \"serviceCidr\": \"172.56.0.0/16\",\n \"dnsServiceIP\": \"172.56.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"172.126.0.0/16\",\n \"2001:abcd:1234::/64\"\n - \ ],\n \"serviceCidrs\": [\n \"172.56.0.0/16\",\n \"2001:ffff::/108\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\",\n \"IPv6\"\n ]\n },\n - \ \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.26.3\",\n \"currentKubernetesVersion\"\ + : \"1.26.3\",\n \"dnsPrefix\": \"cliakstest-clitest7rbqgumq7-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest7rbqgumq7-8ecadf-70ixw01p.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest7rbqgumq7-8ecadf-70ixw01p.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.26.3\",\n \"currentOrchestratorVersion\": \"1.26.3\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1,\n \"countIPv6\": 2\n },\n \"allocatedOutboundPorts\"\ + : 0,\n \"idleTimeoutInMinutes\": 30\n },\n \"podCidr\": \"172.126.0.0/16\"\ + ,\n \"serviceCidr\": \"172.56.0.0/16\",\n \"dnsServiceIP\": \"172.56.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"172.126.0.0/16\"\ + ,\n \"2001:abcd:1234::/64\"\n ],\n \"serviceCidrs\": [\n \"\ + 172.56.0.0/16\",\n \"2001:ffff::/108\"\n ],\n \"ipFamilies\": [\n\ + \ \"IPv4\",\n \"IPv6\"\n ]\n },\n \"maxAgentPools\": 100,\n\ + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\"\ + : {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a79ddcb2-5cf2-4513-834e-02f1ada4f5ca?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/164af416-9603-4388-8c31-74b1054aae75?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3430' + - '3758' content-type: - application/json date: - - Wed, 15 Mar 2023 10:07:18 GMT + - Wed, 14 Jun 2023 18:39:21 GMT expires: - '-1' pragma: @@ -231,7 +215,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -251,14 +235,114 @@ interactions: --pod-cidrs --service-cidrs --ip-families --load-balancer-managed-outbound-ipv6-count --network-plugin --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/164af416-9603-4388-8c31-74b1054aae75?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"16f44a16-0396-8843-8c31-74b1054aae75\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:39:21.3506475Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 18:39:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip + --pod-cidrs --service-cidrs --ip-families --load-balancer-managed-outbound-ipv6-count + --network-plugin --ssh-key-value --kubernetes-version --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/164af416-9603-4388-8c31-74b1054aae75?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"16f44a16-0396-8843-8c31-74b1054aae75\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:39:21.3506475Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 18:39:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --pod-cidr --service-cidr --dns-service-ip + --pod-cidrs --service-cidrs --ip-families --load-balancer-managed-outbound-ipv6-count + --network-plugin --ssh-key-value --kubernetes-version --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a79ddcb2-5cf2-4513-834e-02f1ada4f5ca?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/164af416-9603-4388-8c31-74b1054aae75?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2dc9da7-f25c-1345-834e-02f1ada4f5ca\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:07:18.5405226Z\"\n }" + string: "{\n \"name\": \"16f44a16-0396-8843-8c31-74b1054aae75\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:39:21.3506475Z\"\n }" headers: cache-control: - no-cache @@ -267,7 +351,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:07:48 GMT + - Wed, 14 Jun 2023 18:40:22 GMT expires: - '-1' pragma: @@ -301,14 +385,14 @@ interactions: --pod-cidrs --service-cidrs --ip-families --load-balancer-managed-outbound-ipv6-count --network-plugin --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a79ddcb2-5cf2-4513-834e-02f1ada4f5ca?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/164af416-9603-4388-8c31-74b1054aae75?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2dc9da7-f25c-1345-834e-02f1ada4f5ca\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:07:18.5405226Z\"\n }" + string: "{\n \"name\": \"16f44a16-0396-8843-8c31-74b1054aae75\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:39:21.3506475Z\"\n }" headers: cache-control: - no-cache @@ -317,7 +401,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:08:18 GMT + - Wed, 14 Jun 2023 18:40:52 GMT expires: - '-1' pragma: @@ -351,14 +435,14 @@ interactions: --pod-cidrs --service-cidrs --ip-families --load-balancer-managed-outbound-ipv6-count --network-plugin --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a79ddcb2-5cf2-4513-834e-02f1ada4f5ca?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/164af416-9603-4388-8c31-74b1054aae75?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2dc9da7-f25c-1345-834e-02f1ada4f5ca\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:07:18.5405226Z\"\n }" + string: "{\n \"name\": \"16f44a16-0396-8843-8c31-74b1054aae75\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:39:21.3506475Z\"\n }" headers: cache-control: - no-cache @@ -367,7 +451,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:08:48 GMT + - Wed, 14 Jun 2023 18:41:22 GMT expires: - '-1' pragma: @@ -401,14 +485,14 @@ interactions: --pod-cidrs --service-cidrs --ip-families --load-balancer-managed-outbound-ipv6-count --network-plugin --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a79ddcb2-5cf2-4513-834e-02f1ada4f5ca?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/164af416-9603-4388-8c31-74b1054aae75?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2dc9da7-f25c-1345-834e-02f1ada4f5ca\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:07:18.5405226Z\"\n }" + string: "{\n \"name\": \"16f44a16-0396-8843-8c31-74b1054aae75\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:39:21.3506475Z\"\n }" headers: cache-control: - no-cache @@ -417,7 +501,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:09:18 GMT + - Wed, 14 Jun 2023 18:41:53 GMT expires: - '-1' pragma: @@ -451,14 +535,14 @@ interactions: --pod-cidrs --service-cidrs --ip-families --load-balancer-managed-outbound-ipv6-count --network-plugin --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a79ddcb2-5cf2-4513-834e-02f1ada4f5ca?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/164af416-9603-4388-8c31-74b1054aae75?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2dc9da7-f25c-1345-834e-02f1ada4f5ca\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:07:18.5405226Z\"\n }" + string: "{\n \"name\": \"16f44a16-0396-8843-8c31-74b1054aae75\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:39:21.3506475Z\"\n }" headers: cache-control: - no-cache @@ -467,7 +551,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:09:49 GMT + - Wed, 14 Jun 2023 18:42:22 GMT expires: - '-1' pragma: @@ -501,14 +585,14 @@ interactions: --pod-cidrs --service-cidrs --ip-families --load-balancer-managed-outbound-ipv6-count --network-plugin --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a79ddcb2-5cf2-4513-834e-02f1ada4f5ca?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/164af416-9603-4388-8c31-74b1054aae75?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2dc9da7-f25c-1345-834e-02f1ada4f5ca\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:07:18.5405226Z\"\n }" + string: "{\n \"name\": \"16f44a16-0396-8843-8c31-74b1054aae75\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:39:21.3506475Z\"\n }" headers: cache-control: - no-cache @@ -517,7 +601,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:18 GMT + - Wed, 14 Jun 2023 18:42:52 GMT expires: - '-1' pragma: @@ -551,15 +635,15 @@ interactions: --pod-cidrs --service-cidrs --ip-families --load-balancer-managed-outbound-ipv6-count --network-plugin --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a79ddcb2-5cf2-4513-834e-02f1ada4f5ca?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/164af416-9603-4388-8c31-74b1054aae75?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b2dc9da7-f25c-1345-834e-02f1ada4f5ca\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:07:18.5405226Z\",\n \"endTime\": - \"2023-03-15T10:10:48.8599622Z\"\n }" + string: "{\n \"name\": \"16f44a16-0396-8843-8c31-74b1054aae75\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T18:39:21.3506475Z\",\n \"\ + endTime\": \"2023-06-14T18:42:55.2377833Z\"\n }" headers: cache-control: - no-cache @@ -568,7 +652,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:48 GMT + - Wed, 14 Jun 2023 18:43:23 GMT expires: - '-1' pragma: @@ -602,67 +686,70 @@ interactions: --pod-cidrs --service-cidrs --ip-families --load-balancer-managed-outbound-ipv6-count --network-plugin --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.26.0\",\n \"currentKubernetesVersion\": \"1.26.0\",\n \"dnsPrefix\": - \"cliakstest-clitestucpnuyoao-79a739\",\n \"fqdn\": \"cliakstest-clitestucpnuyoao-79a739-bi18iaxu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestucpnuyoao-79a739-bi18iaxu.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.26.0\",\n \"currentOrchestratorVersion\": - \"1.26.0\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1,\n \"countIPv6\": 2\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/08630f93-b1c2-40eb-9da8-5f84415a4b9b-ipv6\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5efddfee-9219-4f13-ae09-4ab2bde09d01-ipv6\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0d158669-2452-4598-a837-fbc66946729b\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"172.126.0.0/16\",\n \"serviceCidr\": \"172.56.0.0/16\",\n - \ \"dnsServiceIP\": \"172.56.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"172.126.0.0/16\",\n - \ \"2001:abcd:1234::/64\"\n ],\n \"serviceCidrs\": [\n \"172.56.0.0/16\",\n - \ \"2001:ffff::/108\"\n ],\n \"ipFamilies\": [\n \"IPv4\",\n - \ \"IPv6\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.26.3\",\n \"currentKubernetesVersion\"\ + : \"1.26.3\",\n \"dnsPrefix\": \"cliakstest-clitest7rbqgumq7-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest7rbqgumq7-8ecadf-70ixw01p.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest7rbqgumq7-8ecadf-70ixw01p.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.26.3\",\n \"currentOrchestratorVersion\": \"1.26.3\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1,\n \"countIPv6\": 2\n },\n \"effectiveOutboundIPs\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/954c76e9-364d-4892-9de1-6f5cb01f6f50\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dc065f72-b7b5-437b-994f-d933f4b35682-ipv6\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3f455a8f-89d9-4a8c-a7fd-7fb234d2b1e7-ipv6\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"172.126.0.0/16\",\n \"serviceCidr\": \"\ + 172.56.0.0/16\",\n \"dnsServiceIP\": \"172.56.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"172.126.0.0/16\",\n \"\ + 2001:abcd:1234::/64\"\n ],\n \"serviceCidrs\": [\n \"172.56.0.0/16\"\ + ,\n \"2001:ffff::/108\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\ + ,\n \"IPv6\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4541' + - '4869' content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:49 GMT + - Wed, 14 Jun 2023 18:43:24 GMT expires: - '-1' pragma: @@ -694,67 +781,70 @@ interactions: ParameterSetName: - -g -n --load-balancer-managed-outbound-ipv6-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.26.0\",\n \"currentKubernetesVersion\": \"1.26.0\",\n \"dnsPrefix\": - \"cliakstest-clitestucpnuyoao-79a739\",\n \"fqdn\": \"cliakstest-clitestucpnuyoao-79a739-bi18iaxu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestucpnuyoao-79a739-bi18iaxu.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.26.0\",\n \"currentOrchestratorVersion\": - \"1.26.0\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1,\n \"countIPv6\": 2\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/08630f93-b1c2-40eb-9da8-5f84415a4b9b-ipv6\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5efddfee-9219-4f13-ae09-4ab2bde09d01-ipv6\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0d158669-2452-4598-a837-fbc66946729b\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"172.126.0.0/16\",\n \"serviceCidr\": \"172.56.0.0/16\",\n - \ \"dnsServiceIP\": \"172.56.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"172.126.0.0/16\",\n - \ \"2001:abcd:1234::/64\"\n ],\n \"serviceCidrs\": [\n \"172.56.0.0/16\",\n - \ \"2001:ffff::/108\"\n ],\n \"ipFamilies\": [\n \"IPv4\",\n - \ \"IPv6\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.26.3\",\n \"currentKubernetesVersion\"\ + : \"1.26.3\",\n \"dnsPrefix\": \"cliakstest-clitest7rbqgumq7-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest7rbqgumq7-8ecadf-70ixw01p.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest7rbqgumq7-8ecadf-70ixw01p.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.26.3\",\n \"currentOrchestratorVersion\": \"1.26.3\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1,\n \"countIPv6\": 2\n },\n \"effectiveOutboundIPs\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/954c76e9-364d-4892-9de1-6f5cb01f6f50\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dc065f72-b7b5-437b-994f-d933f4b35682-ipv6\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3f455a8f-89d9-4a8c-a7fd-7fb234d2b1e7-ipv6\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"172.126.0.0/16\",\n \"serviceCidr\": \"\ + 172.56.0.0/16\",\n \"dnsServiceIP\": \"172.56.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"172.126.0.0/16\",\n \"\ + 2001:abcd:1234::/64\"\n ],\n \"serviceCidrs\": [\n \"172.56.0.0/16\"\ + ,\n \"2001:ffff::/108\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\ + ,\n \"IPv6\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4541' + - '4869' content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:50 GMT + - Wed, 14 Jun 2023 18:43:26 GMT expires: - '-1' pragma: @@ -773,25 +863,25 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.26.0", "dnsPrefix": - "cliakstest-clitestucpnuyoao-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.26.3", "dnsPrefix": + "cliakstest-clitest7rbqgumq7-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.26.0", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.26.3", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "172.126.0.0/16", "serviceCidr": "172.56.0.0/16", "dnsServiceIP": "172.56.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1, "countIPv6": - 4}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/08630f93-b1c2-40eb-9da8-5f84415a4b9b-ipv6"}, - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5efddfee-9219-4f13-ae09-4ab2bde09d01-ipv6"}, - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0d158669-2452-4598-a837-fbc66946729b"}], + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "172.126.0.0/16", "serviceCidr": "172.56.0.0/16", "dnsServiceIP": + "172.56.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1, "countIPv6": 4}, + "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/954c76e9-364d-4892-9de1-6f5cb01f6f50"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dc065f72-b7b5-437b-994f-d933f4b35682-ipv6"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3f455a8f-89d9-4a8c-a7fd-7fb234d2b1e7-ipv6"}], "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30}, "podCidrs": ["172.126.0.0/16", "2001:abcd:1234::/64"], "serviceCidrs": ["172.56.0.0/16", "2001:ffff::/108"], "ipFamilies": ["IPv4", "IPv6"]}, "identityProfile": {"kubeletidentity": {"resourceId": @@ -809,75 +899,78 @@ interactions: Connection: - keep-alive Content-Length: - - '3031' + - '3359' Content-Type: - application/json ParameterSetName: - -g -n --load-balancer-managed-outbound-ipv6-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.26.0\",\n \"currentKubernetesVersion\": \"1.26.0\",\n \"dnsPrefix\": - \"cliakstest-clitestucpnuyoao-79a739\",\n \"fqdn\": \"cliakstest-clitestucpnuyoao-79a739-bi18iaxu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestucpnuyoao-79a739-bi18iaxu.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.26.0\",\n \"currentOrchestratorVersion\": - \"1.26.0\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1,\n \"countIPv6\": 4\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/08630f93-b1c2-40eb-9da8-5f84415a4b9b-ipv6\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5efddfee-9219-4f13-ae09-4ab2bde09d01-ipv6\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0d158669-2452-4598-a837-fbc66946729b\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"172.126.0.0/16\",\n \"serviceCidr\": \"172.56.0.0/16\",\n - \ \"dnsServiceIP\": \"172.56.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"172.126.0.0/16\",\n - \ \"2001:abcd:1234::/64\"\n ],\n \"serviceCidrs\": [\n \"172.56.0.0/16\",\n - \ \"2001:ffff::/108\"\n ],\n \"ipFamilies\": [\n \"IPv4\",\n - \ \"IPv6\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.26.3\",\n \"currentKubernetesVersion\"\ + : \"1.26.3\",\n \"dnsPrefix\": \"cliakstest-clitest7rbqgumq7-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest7rbqgumq7-8ecadf-70ixw01p.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest7rbqgumq7-8ecadf-70ixw01p.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.26.3\",\n \"currentOrchestratorVersion\": \"1.26.3\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1,\n \"countIPv6\": 4\n },\n \"effectiveOutboundIPs\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/954c76e9-364d-4892-9de1-6f5cb01f6f50\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dc065f72-b7b5-437b-994f-d933f4b35682-ipv6\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3f455a8f-89d9-4a8c-a7fd-7fb234d2b1e7-ipv6\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"172.126.0.0/16\",\n \"serviceCidr\": \"\ + 172.56.0.0/16\",\n \"dnsServiceIP\": \"172.56.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"172.126.0.0/16\",\n \"\ + 2001:abcd:1234::/64\"\n ],\n \"serviceCidrs\": [\n \"172.56.0.0/16\"\ + ,\n \"2001:ffff::/108\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\ + ,\n \"IPv6\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/472d0100-2d27-4755-8031-84de30ddda95?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/816c4fba-7491-43da-b821-f1464cff4715?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4539' + - '4867' content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:53 GMT + - Wed, 14 Jun 2023 18:43:32 GMT expires: - '-1' pragma: @@ -911,14 +1004,110 @@ interactions: ParameterSetName: - -g -n --load-balancer-managed-outbound-ipv6-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/816c4fba-7491-43da-b821-f1464cff4715?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ba4f6c81-9174-da43-b821-f1464cff4715\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:43:31.5855971Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 18:43:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - -g -n --load-balancer-managed-outbound-ipv6-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/816c4fba-7491-43da-b821-f1464cff4715?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ba4f6c81-9174-da43-b821-f1464cff4715\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:43:31.5855971Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 18:44:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - -g -n --load-balancer-managed-outbound-ipv6-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/472d0100-2d27-4755-8031-84de30ddda95?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/816c4fba-7491-43da-b821-f1464cff4715?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"00012d47-272d-5547-8031-84de30ddda95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:10:53.6039343Z\"\n }" + string: "{\n \"name\": \"ba4f6c81-9174-da43-b821-f1464cff4715\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:43:31.5855971Z\"\n }" headers: cache-control: - no-cache @@ -927,7 +1116,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:11:23 GMT + - Wed, 14 Jun 2023 18:44:33 GMT expires: - '-1' pragma: @@ -959,14 +1148,14 @@ interactions: ParameterSetName: - -g -n --load-balancer-managed-outbound-ipv6-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/472d0100-2d27-4755-8031-84de30ddda95?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/816c4fba-7491-43da-b821-f1464cff4715?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"00012d47-272d-5547-8031-84de30ddda95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:10:53.6039343Z\"\n }" + string: "{\n \"name\": \"ba4f6c81-9174-da43-b821-f1464cff4715\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:43:31.5855971Z\"\n }" headers: cache-control: - no-cache @@ -975,7 +1164,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:11:53 GMT + - Wed, 14 Jun 2023 18:45:02 GMT expires: - '-1' pragma: @@ -1007,15 +1196,15 @@ interactions: ParameterSetName: - -g -n --load-balancer-managed-outbound-ipv6-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/472d0100-2d27-4755-8031-84de30ddda95?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/816c4fba-7491-43da-b821-f1464cff4715?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"00012d47-272d-5547-8031-84de30ddda95\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:10:53.6039343Z\",\n \"endTime\": - \"2023-03-15T10:12:21.7564269Z\"\n }" + string: "{\n \"name\": \"ba4f6c81-9174-da43-b821-f1464cff4715\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T18:43:31.5855971Z\",\n \"\ + endTime\": \"2023-06-14T18:45:24.4512965Z\"\n }" headers: cache-control: - no-cache @@ -1024,7 +1213,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:23 GMT + - Wed, 14 Jun 2023 18:45:33 GMT expires: - '-1' pragma: @@ -1056,69 +1245,72 @@ interactions: ParameterSetName: - -g -n --load-balancer-managed-outbound-ipv6-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.26.0\",\n \"currentKubernetesVersion\": \"1.26.0\",\n \"dnsPrefix\": - \"cliakstest-clitestucpnuyoao-79a739\",\n \"fqdn\": \"cliakstest-clitestucpnuyoao-79a739-bi18iaxu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestucpnuyoao-79a739-bi18iaxu.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.26.0\",\n \"currentOrchestratorVersion\": - \"1.26.0\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1,\n \"countIPv6\": 4\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5efddfee-9219-4f13-ae09-4ab2bde09d01-ipv6\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/64b9ee8c-0db7-4169-b30b-174788a66856-ipv6\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/45955a1f-5b15-4299-8a70-5604b0b49c98-ipv6\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0d158669-2452-4598-a837-fbc66946729b\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/08630f93-b1c2-40eb-9da8-5f84415a4b9b-ipv6\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"172.126.0.0/16\",\n \"serviceCidr\": \"172.56.0.0/16\",\n - \ \"dnsServiceIP\": \"172.56.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"172.126.0.0/16\",\n - \ \"2001:abcd:1234::/64\"\n ],\n \"serviceCidrs\": [\n \"172.56.0.0/16\",\n - \ \"2001:ffff::/108\"\n ],\n \"ipFamilies\": [\n \"IPv4\",\n - \ \"IPv6\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.26.3\",\n \"currentKubernetesVersion\"\ + : \"1.26.3\",\n \"dnsPrefix\": \"cliakstest-clitest7rbqgumq7-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest7rbqgumq7-8ecadf-70ixw01p.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest7rbqgumq7-8ecadf-70ixw01p.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.26.3\",\n \"currentOrchestratorVersion\": \"1.26.3\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1,\n \"countIPv6\": 4\n },\n \"effectiveOutboundIPs\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3f455a8f-89d9-4a8c-a7fd-7fb234d2b1e7-ipv6\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/954c76e9-364d-4892-9de1-6f5cb01f6f50\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dc065f72-b7b5-437b-994f-d933f4b35682-ipv6\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e4082d8f-9795-4a86-9183-bc8430c2c070-ipv6\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ecb04c93-2ad7-4751-b713-97f702200d5a-ipv6\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"172.126.0.0/16\",\n \"serviceCidr\": \"\ + 172.56.0.0/16\",\n \"dnsServiceIP\": \"172.56.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"172.126.0.0/16\",\n \"\ + 2001:abcd:1234::/64\"\n ],\n \"serviceCidrs\": [\n \"172.56.0.0/16\"\ + ,\n \"2001:ffff::/108\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\ + ,\n \"IPv6\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4999' + - '5327' content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:23 GMT + - Wed, 14 Jun 2023 18:45:34 GMT expires: - '-1' pragma: @@ -1152,8 +1344,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -1161,17 +1353,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/06de925f-17ba-4e8e-80d3-cfa9e52f2fcf?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5cf8d1b7-8ba9-46f3-af8a-41e4c4781e41?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:12:24 GMT + - Wed, 14 Jun 2023 18:45:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/06de925f-17ba-4e8e-80d3-cfa9e52f2fcf?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/5cf8d1b7-8ba9-46f3-af8a-41e4c4781e41?api-version=2016-03-30 pragma: - no-cache server: @@ -1181,7 +1373,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_and_update_with_blob_csi_driver.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_and_update_with_blob_csi_driver.yaml old mode 100755 new mode 100644 index 787d26880cf..7c2bc61bd30 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_and_update_with_blob_csi_driver.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_and_update_with_blob_csi_driver.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 09:56:27 GMT + - Wed, 14 Jun 2023 18:45:40 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T09:56:26Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_and_update_with_blob_csi_driver","date":"2023-06-14T18:45:39Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '311' + - '383' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 09:56:27 GMT + - Wed, 14 Jun 2023 18:45:40 GMT expires: - '-1' pragma: @@ -88,19 +88,19 @@ interactions: message: OK - request: body: '{"location": "centraluseuap", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestxiyidn4j5-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest6oyj22sgq-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {"blobCSIDriver": {"enabled": true}}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {"blobCSIDriver": + {"enabled": true}}}}' headers: Accept: - application/json @@ -111,68 +111,70 @@ interactions: Connection: - keep-alive Content-Length: - - '1499' + - '1791' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxiyidn4j5-79a739\",\n \"fqdn\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.portal.hcp.centraluseuap.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n },\n \"blobCSIDriver\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6oyj22sgq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ },\n \"blobCSIDriver\": {\n \"enabled\": true\n }\n },\n \ + \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/96a93375-f4ca-45c1-99d2-8a9d8d0cad79?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3344' + - '3671' content-type: - application/json date: - - Wed, 15 Mar 2023 09:56:33 GMT + - Wed, 14 Jun 2023 18:45:46 GMT expires: - '-1' pragma: @@ -202,23 +204,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/96a93375-f4ca-45c1-99d2-8a9d8d0cad79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7533a996-caf4-c145-99d2-8a9d8d0cad79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:33.486031Z\"\n }" + string: "{\n \"name\": \"a15800d5-975e-194f-b7fd-f47f2f7d620a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:45:46.6573403Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 09:57:03 GMT + - Wed, 14 Jun 2023 18:45:46 GMT expires: - '-1' pragma: @@ -250,23 +252,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/96a93375-f4ca-45c1-99d2-8a9d8d0cad79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7533a996-caf4-c145-99d2-8a9d8d0cad79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:33.486031Z\"\n }" + string: "{\n \"name\": \"a15800d5-975e-194f-b7fd-f47f2f7d620a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:45:46.6573403Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 09:57:33 GMT + - Wed, 14 Jun 2023 18:46:16 GMT expires: - '-1' pragma: @@ -298,23 +300,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/96a93375-f4ca-45c1-99d2-8a9d8d0cad79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7533a996-caf4-c145-99d2-8a9d8d0cad79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:33.486031Z\"\n }" + string: "{\n \"name\": \"a15800d5-975e-194f-b7fd-f47f2f7d620a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:45:46.6573403Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 09:58:03 GMT + - Wed, 14 Jun 2023 18:46:46 GMT expires: - '-1' pragma: @@ -346,23 +348,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/96a93375-f4ca-45c1-99d2-8a9d8d0cad79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7533a996-caf4-c145-99d2-8a9d8d0cad79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:33.486031Z\"\n }" + string: "{\n \"name\": \"a15800d5-975e-194f-b7fd-f47f2f7d620a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:45:46.6573403Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 09:58:34 GMT + - Wed, 14 Jun 2023 18:47:16 GMT expires: - '-1' pragma: @@ -394,23 +396,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/96a93375-f4ca-45c1-99d2-8a9d8d0cad79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7533a996-caf4-c145-99d2-8a9d8d0cad79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:33.486031Z\"\n }" + string: "{\n \"name\": \"a15800d5-975e-194f-b7fd-f47f2f7d620a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:45:46.6573403Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 09:59:04 GMT + - Wed, 14 Jun 2023 18:47:47 GMT expires: - '-1' pragma: @@ -442,23 +444,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/96a93375-f4ca-45c1-99d2-8a9d8d0cad79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7533a996-caf4-c145-99d2-8a9d8d0cad79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:33.486031Z\"\n }" + string: "{\n \"name\": \"a15800d5-975e-194f-b7fd-f47f2f7d620a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:45:46.6573403Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 09:59:33 GMT + - Wed, 14 Jun 2023 18:48:17 GMT expires: - '-1' pragma: @@ -490,23 +492,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/96a93375-f4ca-45c1-99d2-8a9d8d0cad79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7533a996-caf4-c145-99d2-8a9d8d0cad79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:33.486031Z\"\n }" + string: "{\n \"name\": \"a15800d5-975e-194f-b7fd-f47f2f7d620a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:45:46.6573403Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:04 GMT + - Wed, 14 Jun 2023 18:48:47 GMT expires: - '-1' pragma: @@ -538,23 +540,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/96a93375-f4ca-45c1-99d2-8a9d8d0cad79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7533a996-caf4-c145-99d2-8a9d8d0cad79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:33.486031Z\"\n }" + string: "{\n \"name\": \"a15800d5-975e-194f-b7fd-f47f2f7d620a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:45:46.6573403Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:34 GMT + - Wed, 14 Jun 2023 18:49:17 GMT expires: - '-1' pragma: @@ -586,23 +588,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/96a93375-f4ca-45c1-99d2-8a9d8d0cad79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7533a996-caf4-c145-99d2-8a9d8d0cad79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:33.486031Z\"\n }" + string: "{\n \"name\": \"a15800d5-975e-194f-b7fd-f47f2f7d620a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:45:46.6573403Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:01:04 GMT + - Wed, 14 Jun 2023 18:49:47 GMT expires: - '-1' pragma: @@ -634,23 +636,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/96a93375-f4ca-45c1-99d2-8a9d8d0cad79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7533a996-caf4-c145-99d2-8a9d8d0cad79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:33.486031Z\"\n }" + string: "{\n \"name\": \"a15800d5-975e-194f-b7fd-f47f2f7d620a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:45:46.6573403Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:01:34 GMT + - Wed, 14 Jun 2023 18:50:17 GMT expires: - '-1' pragma: @@ -682,23 +684,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/96a93375-f4ca-45c1-99d2-8a9d8d0cad79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7533a996-caf4-c145-99d2-8a9d8d0cad79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:33.486031Z\"\n }" + string: "{\n \"name\": \"a15800d5-975e-194f-b7fd-f47f2f7d620a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:45:46.6573403Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:02:04 GMT + - Wed, 14 Jun 2023 18:50:48 GMT expires: - '-1' pragma: @@ -730,23 +732,24 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/96a93375-f4ca-45c1-99d2-8a9d8d0cad79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/d50058a1-5e97-4f19-b7fd-f47f2f7d620a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7533a996-caf4-c145-99d2-8a9d8d0cad79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:33.486031Z\"\n }" + string: "{\n \"name\": \"a15800d5-975e-194f-b7fd-f47f2f7d620a\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T18:45:46.6573403Z\",\n \"\ + endTime\": \"2023-06-14T18:51:13.8289725Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 10:02:35 GMT + - Wed, 14 Jun 2023 18:51:18 GMT expires: - '-1' pragma: @@ -778,23 +781,67 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o --enable-blob-driver User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/96a93375-f4ca-45c1-99d2-8a9d8d0cad79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"7533a996-caf4-c145-99d2-8a9d8d0cad79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:33.486031Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6oyj22sgq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/17f46699-60ed-44cb-a069-b80dba562f72\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ },\n \"blobCSIDriver\": {\n \"enabled\": true\n }\n },\n \ + \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '125' + - '4336' content-type: - application/json date: - - Wed, 15 Mar 2023 10:03:04 GMT + - Wed, 14 Jun 2023 18:51:19 GMT expires: - '-1' pragma: @@ -816,34 +863,77 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive ParameterSetName: - - --resource-group --name --ssh-key-value -o --enable-blob-driver + - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/96a93375-f4ca-45c1-99d2-8a9d8d0cad79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"7533a996-caf4-c145-99d2-8a9d8d0cad79\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T09:56:33.486031Z\",\n \"endTime\": - \"2023-03-15T10:03:16.1874604Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6oyj22sgq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/17f46699-60ed-44cb-a069-b80dba562f72\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ },\n \"blobCSIDriver\": {\n \"enabled\": true\n }\n },\n \ + \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '169' + - '4336' content-type: - application/json date: - - Wed, 15 Mar 2023 10:03:34 GMT + - Wed, 14 Jun 2023 18:51:20 GMT expires: - '-1' pragma: @@ -862,78 +952,108 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "centraluseuap", "sku": {"name": "Base", "tier": "Free"}, + "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": + "1.25.6", "dnsPrefix": "cliakstest-clitest6oyj22sgq-8ecadf", "agentPoolProfiles": + [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": + "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": + "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": + "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": + {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_centraluseuap", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/17f46699-60ed-44cb-a069-b80dba562f72"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, + "workloadAutoScalerProfile": {}}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive + Content-Length: + - '2836' + Content-Type: + - application/json ParameterSetName: - - --resource-group --name --ssh-key-value -o --enable-blob-driver + - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxiyidn4j5-79a739\",\n \"fqdn\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.portal.hcp.centraluseuap.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/d21ac9b0-815a-43d4-97c6-128049ca06fb\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n },\n \"blobCSIDriver\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6oyj22sgq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/17f46699-60ed-44cb-a069-b80dba562f72\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ },\n \"blobCSIDriver\": {\n \"enabled\": true\n }\n },\n \ + \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/4f9fec37-11a2-4ee3-9deb-46ec37bd2349?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4009' + - '4334' content-type: - application/json date: - - Wed, 15 Mar 2023 10:03:35 GMT + - Wed, 14 Jun 2023 18:51:23 GMT expires: - '-1' pragma: @@ -948,6 +1068,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -955,7 +1077,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -965,65 +1087,23 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/4f9fec37-11a2-4ee3-9deb-46ec37bd2349?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxiyidn4j5-79a739\",\n \"fqdn\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.portal.hcp.centraluseuap.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/d21ac9b0-815a-43d4-97c6-128049ca06fb\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n },\n \"blobCSIDriver\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"37ec9f4f-a211-e34e-9deb-46ec37bd2349\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:51:23.6309719Z\"\n }" headers: cache-control: - no-cache content-length: - - '4009' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:03:36 GMT + - Wed, 14 Jun 2023 18:51:23 GMT expires: - '-1' pragma: @@ -1042,106 +1122,36 @@ interactions: code: 200 message: OK - request: - body: '{"location": "centraluseuap", "sku": {"name": "Basic", "tier": "Free"}, - "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.24.9", "dnsPrefix": "cliakstest-clitestxiyidn4j5-79a739", "agentPoolProfiles": - [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": - "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": - "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": - "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": - {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, - "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_centraluseuap", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/d21ac9b0-815a-43d4-97c6-128049ca06fb"}]}, - "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": - ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", - "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, - "workloadAutoScalerProfile": {}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks update Connection: - keep-alive - Content-Length: - - '2508' - Content-Type: - - application/json ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/4f9fec37-11a2-4ee3-9deb-46ec37bd2349?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxiyidn4j5-79a739\",\n \"fqdn\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.portal.hcp.centraluseuap.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/d21ac9b0-815a-43d4-97c6-128049ca06fb\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n },\n \"blobCSIDriver\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"37ec9f4f-a211-e34e-9deb-46ec37bd2349\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:51:23.6309719Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/fb146100-7fb4-4185-b6b6-8f71c4c45c99?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4007' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:03:39 GMT + - Wed, 14 Jun 2023 18:51:54 GMT expires: - '-1' pragma: @@ -1156,8 +1166,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: code: 200 message: OK @@ -1175,14 +1183,14 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/fb146100-7fb4-4185-b6b6-8f71c4c45c99?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/4f9fec37-11a2-4ee3-9deb-46ec37bd2349?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"006114fb-b47f-8541-b6b6-8f71c4c45c99\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:03:39.8513484Z\"\n }" + string: "{\n \"name\": \"37ec9f4f-a211-e34e-9deb-46ec37bd2349\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:51:23.6309719Z\"\n }" headers: cache-control: - no-cache @@ -1191,7 +1199,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:04:10 GMT + - Wed, 14 Jun 2023 18:52:23 GMT expires: - '-1' pragma: @@ -1223,14 +1231,14 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/fb146100-7fb4-4185-b6b6-8f71c4c45c99?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/4f9fec37-11a2-4ee3-9deb-46ec37bd2349?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"006114fb-b47f-8541-b6b6-8f71c4c45c99\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:03:39.8513484Z\"\n }" + string: "{\n \"name\": \"37ec9f4f-a211-e34e-9deb-46ec37bd2349\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:51:23.6309719Z\"\n }" headers: cache-control: - no-cache @@ -1239,7 +1247,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:04:40 GMT + - Wed, 14 Jun 2023 18:52:54 GMT expires: - '-1' pragma: @@ -1271,15 +1279,15 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/fb146100-7fb4-4185-b6b6-8f71c4c45c99?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/4f9fec37-11a2-4ee3-9deb-46ec37bd2349?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"006114fb-b47f-8541-b6b6-8f71c4c45c99\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:03:39.8513484Z\",\n \"endTime\": - \"2023-03-15T10:04:55.0783261Z\"\n }" + string: "{\n \"name\": \"37ec9f4f-a211-e34e-9deb-46ec37bd2349\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T18:51:23.6309719Z\",\n \"\ + endTime\": \"2023-06-14T18:53:09.1239401Z\"\n }" headers: cache-control: - no-cache @@ -1288,7 +1296,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:05:10 GMT + - Wed, 14 Jun 2023 18:53:23 GMT expires: - '-1' pragma: @@ -1320,65 +1328,67 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxiyidn4j5-79a739\",\n \"fqdn\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.portal.hcp.centraluseuap.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/d21ac9b0-815a-43d4-97c6-128049ca06fb\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n },\n \"blobCSIDriver\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6oyj22sgq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/17f46699-60ed-44cb-a069-b80dba562f72\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ },\n \"blobCSIDriver\": {\n \"enabled\": true\n }\n },\n \ + \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '4009' + - '4336' content-type: - application/json date: - - Wed, 15 Mar 2023 10:05:11 GMT + - Wed, 14 Jun 2023 18:53:24 GMT expires: - '-1' pragma: @@ -1410,65 +1420,67 @@ interactions: ParameterSetName: - --resource-group --name -o --disable-blob-driver -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxiyidn4j5-79a739\",\n \"fqdn\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.portal.hcp.centraluseuap.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/d21ac9b0-815a-43d4-97c6-128049ca06fb\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n },\n \"blobCSIDriver\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6oyj22sgq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/17f46699-60ed-44cb-a069-b80dba562f72\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ },\n \"blobCSIDriver\": {\n \"enabled\": true\n }\n },\n \ + \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '4009' + - '4336' content-type: - application/json date: - - Wed, 15 Mar 2023 10:05:11 GMT + - Wed, 14 Jun 2023 18:53:26 GMT expires: - '-1' pragma: @@ -1487,24 +1499,24 @@ interactions: code: 200 message: OK - request: - body: '{"location": "centraluseuap", "sku": {"name": "Basic", "tier": "Free"}, + body: '{"location": "centraluseuap", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.24.9", "dnsPrefix": "cliakstest-clitestxiyidn4j5-79a739", "agentPoolProfiles": + "1.25.6", "dnsPrefix": "cliakstest-clitest6oyj22sgq-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": - "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": + "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_centraluseuap", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/d21ac9b0-815a-43d4-97c6-128049ca06fb"}]}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/17f46699-60ed-44cb-a069-b80dba562f72"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -1520,73 +1532,75 @@ interactions: Connection: - keep-alive Content-Length: - - '2543' + - '2871' Content-Type: - application/json ParameterSetName: - --resource-group --name -o --disable-blob-driver -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxiyidn4j5-79a739\",\n \"fqdn\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.portal.hcp.centraluseuap.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/d21ac9b0-815a-43d4-97c6-128049ca06fb\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n },\n \"blobCSIDriver\": {\n \"enabled\": - false\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6oyj22sgq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/17f46699-60ed-44cb-a069-b80dba562f72\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ },\n \"blobCSIDriver\": {\n \"enabled\": false\n }\n },\n \ + \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e26ced64-f885-49fa-960f-114ef848d419?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/8c297912-8f1d-4f8a-8d6c-6bff83c7a6e8?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4008' + - '4335' content-type: - application/json date: - - Wed, 15 Mar 2023 10:05:15 GMT + - Wed, 14 Jun 2023 18:53:30 GMT expires: - '-1' pragma: @@ -1602,7 +1616,103 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -o --disable-blob-driver -y + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/8c297912-8f1d-4f8a-8d6c-6bff83c7a6e8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"1279298c-1d8f-8a4f-8d6c-6bff83c7a6e8\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:53:30.0544755Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 18:53:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -o --disable-blob-driver -y + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/8c297912-8f1d-4f8a-8d6c-6bff83c7a6e8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"1279298c-1d8f-8a4f-8d6c-6bff83c7a6e8\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:53:30.0544755Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 18:54:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -1620,14 +1730,14 @@ interactions: ParameterSetName: - --resource-group --name -o --disable-blob-driver -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e26ced64-f885-49fa-960f-114ef848d419?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/8c297912-8f1d-4f8a-8d6c-6bff83c7a6e8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"64ed6ce2-85f8-fa49-960f-114ef848d419\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:05:15.0090249Z\"\n }" + string: "{\n \"name\": \"1279298c-1d8f-8a4f-8d6c-6bff83c7a6e8\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:53:30.0544755Z\"\n }" headers: cache-control: - no-cache @@ -1636,7 +1746,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:05:45 GMT + - Wed, 14 Jun 2023 18:54:30 GMT expires: - '-1' pragma: @@ -1668,14 +1778,14 @@ interactions: ParameterSetName: - --resource-group --name -o --disable-blob-driver -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e26ced64-f885-49fa-960f-114ef848d419?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/8c297912-8f1d-4f8a-8d6c-6bff83c7a6e8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"64ed6ce2-85f8-fa49-960f-114ef848d419\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:05:15.0090249Z\"\n }" + string: "{\n \"name\": \"1279298c-1d8f-8a4f-8d6c-6bff83c7a6e8\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:53:30.0544755Z\"\n }" headers: cache-control: - no-cache @@ -1684,7 +1794,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:06:16 GMT + - Wed, 14 Jun 2023 18:55:00 GMT expires: - '-1' pragma: @@ -1716,15 +1826,63 @@ interactions: ParameterSetName: - --resource-group --name -o --disable-blob-driver -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/e26ced64-f885-49fa-960f-114ef848d419?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/8c297912-8f1d-4f8a-8d6c-6bff83c7a6e8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"64ed6ce2-85f8-fa49-960f-114ef848d419\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:05:15.0090249Z\",\n \"endTime\": - \"2023-03-15T10:06:34.5759729Z\"\n }" + string: "{\n \"name\": \"1279298c-1d8f-8a4f-8d6c-6bff83c7a6e8\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:53:30.0544755Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 18:55:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -o --disable-blob-driver -y + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/8c297912-8f1d-4f8a-8d6c-6bff83c7a6e8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"1279298c-1d8f-8a4f-8d6c-6bff83c7a6e8\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T18:53:30.0544755Z\",\n \"\ + endTime\": \"2023-06-14T18:55:46.6261422Z\"\n }" headers: cache-control: - no-cache @@ -1733,7 +1891,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:06:45 GMT + - Wed, 14 Jun 2023 18:56:01 GMT expires: - '-1' pragma: @@ -1765,65 +1923,67 @@ interactions: ParameterSetName: - --resource-group --name -o --disable-blob-driver -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxiyidn4j5-79a739\",\n \"fqdn\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.portal.hcp.centraluseuap.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/d21ac9b0-815a-43d4-97c6-128049ca06fb\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n },\n \"blobCSIDriver\": {\n \"enabled\": - false\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6oyj22sgq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/17f46699-60ed-44cb-a069-b80dba562f72\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ },\n \"blobCSIDriver\": {\n \"enabled\": false\n }\n },\n \ + \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '4010' + - '4337' content-type: - application/json date: - - Wed, 15 Mar 2023 10:06:46 GMT + - Wed, 14 Jun 2023 18:56:01 GMT expires: - '-1' pragma: @@ -1855,65 +2015,67 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxiyidn4j5-79a739\",\n \"fqdn\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.portal.hcp.centraluseuap.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/d21ac9b0-815a-43d4-97c6-128049ca06fb\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n },\n \"blobCSIDriver\": {\n \"enabled\": - false\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6oyj22sgq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/17f46699-60ed-44cb-a069-b80dba562f72\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ },\n \"blobCSIDriver\": {\n \"enabled\": false\n }\n },\n \ + \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '4010' + - '4337' content-type: - application/json date: - - Wed, 15 Mar 2023 10:06:47 GMT + - Wed, 14 Jun 2023 18:56:02 GMT expires: - '-1' pragma: @@ -1932,24 +2094,24 @@ interactions: code: 200 message: OK - request: - body: '{"location": "centraluseuap", "sku": {"name": "Basic", "tier": "Free"}, + body: '{"location": "centraluseuap", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.24.9", "dnsPrefix": "cliakstest-clitestxiyidn4j5-79a739", "agentPoolProfiles": + "1.25.6", "dnsPrefix": "cliakstest-clitest6oyj22sgq-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": - "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": + "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_centraluseuap", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/d21ac9b0-815a-43d4-97c6-128049ca06fb"}]}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/17f46699-60ed-44cb-a069-b80dba562f72"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -1965,73 +2127,75 @@ interactions: Connection: - keep-alive Content-Length: - - '2508' + - '2836' Content-Type: - application/json ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxiyidn4j5-79a739\",\n \"fqdn\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.portal.hcp.centraluseuap.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/d21ac9b0-815a-43d4-97c6-128049ca06fb\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n },\n \"blobCSIDriver\": {\n \"enabled\": - false\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6oyj22sgq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/17f46699-60ed-44cb-a069-b80dba562f72\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ },\n \"blobCSIDriver\": {\n \"enabled\": false\n }\n },\n \ + \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/bde6cac5-7222-484a-aab8-33c4e17c428e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/bf838ae3-287b-48f3-b44f-ff508f8e948a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4008' + - '4335' content-type: - application/json date: - - Wed, 15 Mar 2023 10:06:51 GMT + - Wed, 14 Jun 2023 18:56:06 GMT expires: - '-1' pragma: @@ -2047,7 +2211,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -2065,14 +2229,14 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/bde6cac5-7222-484a-aab8-33c4e17c428e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/bf838ae3-287b-48f3-b44f-ff508f8e948a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c5cae6bd-2272-4a48-aab8-33c4e17c428e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:06:50.6196533Z\"\n }" + string: "{\n \"name\": \"e38a83bf-7b28-f348-b44f-ff508f8e948a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:56:06.6346209Z\"\n }" headers: cache-control: - no-cache @@ -2081,7 +2245,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:07:20 GMT + - Wed, 14 Jun 2023 18:56:06 GMT expires: - '-1' pragma: @@ -2113,14 +2277,14 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/bde6cac5-7222-484a-aab8-33c4e17c428e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/bf838ae3-287b-48f3-b44f-ff508f8e948a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c5cae6bd-2272-4a48-aab8-33c4e17c428e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:06:50.6196533Z\"\n }" + string: "{\n \"name\": \"e38a83bf-7b28-f348-b44f-ff508f8e948a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:56:06.6346209Z\"\n }" headers: cache-control: - no-cache @@ -2129,7 +2293,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:07:51 GMT + - Wed, 14 Jun 2023 18:56:36 GMT expires: - '-1' pragma: @@ -2161,15 +2325,111 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/bde6cac5-7222-484a-aab8-33c4e17c428e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/bf838ae3-287b-48f3-b44f-ff508f8e948a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c5cae6bd-2272-4a48-aab8-33c4e17c428e\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:06:50.6196533Z\",\n \"endTime\": - \"2023-03-15T10:08:03.1417549Z\"\n }" + string: "{\n \"name\": \"e38a83bf-7b28-f348-b44f-ff508f8e948a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:56:06.6346209Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 18:57:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -y -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/bf838ae3-287b-48f3-b44f-ff508f8e948a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e38a83bf-7b28-f348-b44f-ff508f8e948a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:56:06.6346209Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 18:57:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -y -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/bf838ae3-287b-48f3-b44f-ff508f8e948a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e38a83bf-7b28-f348-b44f-ff508f8e948a\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T18:56:06.6346209Z\",\n \"\ + endTime\": \"2023-06-14T18:58:06.3717641Z\"\n }" headers: cache-control: - no-cache @@ -2178,7 +2438,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:08:21 GMT + - Wed, 14 Jun 2023 18:58:07 GMT expires: - '-1' pragma: @@ -2210,65 +2470,67 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxiyidn4j5-79a739\",\n \"fqdn\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.portal.hcp.centraluseuap.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/d21ac9b0-815a-43d4-97c6-128049ca06fb\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n },\n \"blobCSIDriver\": {\n \"enabled\": - false\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6oyj22sgq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/17f46699-60ed-44cb-a069-b80dba562f72\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ },\n \"blobCSIDriver\": {\n \"enabled\": false\n }\n },\n \ + \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '4010' + - '4337' content-type: - application/json date: - - Wed, 15 Mar 2023 10:08:22 GMT + - Wed, 14 Jun 2023 18:58:08 GMT expires: - '-1' pragma: @@ -2300,65 +2562,67 @@ interactions: ParameterSetName: - --resource-group --name -o --enable-blob-driver -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxiyidn4j5-79a739\",\n \"fqdn\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.portal.hcp.centraluseuap.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/d21ac9b0-815a-43d4-97c6-128049ca06fb\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n },\n \"blobCSIDriver\": {\n \"enabled\": - false\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6oyj22sgq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/17f46699-60ed-44cb-a069-b80dba562f72\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ },\n \"blobCSIDriver\": {\n \"enabled\": false\n }\n },\n \ + \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '4010' + - '4337' content-type: - application/json date: - - Wed, 15 Mar 2023 10:08:23 GMT + - Wed, 14 Jun 2023 18:58:08 GMT expires: - '-1' pragma: @@ -2377,24 +2641,24 @@ interactions: code: 200 message: OK - request: - body: '{"location": "centraluseuap", "sku": {"name": "Basic", "tier": "Free"}, + body: '{"location": "centraluseuap", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.24.9", "dnsPrefix": "cliakstest-clitestxiyidn4j5-79a739", "agentPoolProfiles": + "1.25.6", "dnsPrefix": "cliakstest-clitest6oyj22sgq-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": - "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": + "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_centraluseuap", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/d21ac9b0-815a-43d4-97c6-128049ca06fb"}]}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/17f46699-60ed-44cb-a069-b80dba562f72"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -2410,73 +2674,75 @@ interactions: Connection: - keep-alive Content-Length: - - '2542' + - '2870' Content-Type: - application/json ParameterSetName: - --resource-group --name -o --enable-blob-driver -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxiyidn4j5-79a739\",\n \"fqdn\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.portal.hcp.centraluseuap.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/d21ac9b0-815a-43d4-97c6-128049ca06fb\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n },\n \"blobCSIDriver\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6oyj22sgq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/17f46699-60ed-44cb-a069-b80dba562f72\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ },\n \"blobCSIDriver\": {\n \"enabled\": true\n }\n },\n \ + \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/00563b07-aeb0-4022-8bbf-4f3448c812e9?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0adb70cc-1d0d-441e-a7cc-705b47330247?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4007' + - '4334' content-type: - application/json date: - - Wed, 15 Mar 2023 10:08:26 GMT + - Wed, 14 Jun 2023 18:58:12 GMT expires: - '-1' pragma: @@ -2492,7 +2758,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -2510,14 +2776,14 @@ interactions: ParameterSetName: - --resource-group --name -o --enable-blob-driver -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/00563b07-aeb0-4022-8bbf-4f3448c812e9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0adb70cc-1d0d-441e-a7cc-705b47330247?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"073b5600-b0ae-2240-8bbf-4f3448c812e9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:08:25.8866723Z\"\n }" + string: "{\n \"name\": \"cc70db0a-0d1d-1e44-a7cc-705b47330247\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:58:13.3706389Z\"\n }" headers: cache-control: - no-cache @@ -2526,7 +2792,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:08:56 GMT + - Wed, 14 Jun 2023 18:58:12 GMT expires: - '-1' pragma: @@ -2558,14 +2824,14 @@ interactions: ParameterSetName: - --resource-group --name -o --enable-blob-driver -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/00563b07-aeb0-4022-8bbf-4f3448c812e9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0adb70cc-1d0d-441e-a7cc-705b47330247?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"073b5600-b0ae-2240-8bbf-4f3448c812e9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:08:25.8866723Z\"\n }" + string: "{\n \"name\": \"cc70db0a-0d1d-1e44-a7cc-705b47330247\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:58:13.3706389Z\"\n }" headers: cache-control: - no-cache @@ -2574,7 +2840,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:09:27 GMT + - Wed, 14 Jun 2023 18:58:43 GMT expires: - '-1' pragma: @@ -2606,14 +2872,14 @@ interactions: ParameterSetName: - --resource-group --name -o --enable-blob-driver -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/00563b07-aeb0-4022-8bbf-4f3448c812e9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0adb70cc-1d0d-441e-a7cc-705b47330247?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"073b5600-b0ae-2240-8bbf-4f3448c812e9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:08:25.8866723Z\"\n }" + string: "{\n \"name\": \"cc70db0a-0d1d-1e44-a7cc-705b47330247\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:58:13.3706389Z\"\n }" headers: cache-control: - no-cache @@ -2622,7 +2888,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:09:56 GMT + - Wed, 14 Jun 2023 18:59:13 GMT expires: - '-1' pragma: @@ -2654,15 +2920,111 @@ interactions: ParameterSetName: - --resource-group --name -o --enable-blob-driver -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/00563b07-aeb0-4022-8bbf-4f3448c812e9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0adb70cc-1d0d-441e-a7cc-705b47330247?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"073b5600-b0ae-2240-8bbf-4f3448c812e9\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:08:25.8866723Z\",\n \"endTime\": - \"2023-03-15T10:10:13.9136702Z\"\n }" + string: "{\n \"name\": \"cc70db0a-0d1d-1e44-a7cc-705b47330247\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:58:13.3706389Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 18:59:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -o --enable-blob-driver -y + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0adb70cc-1d0d-441e-a7cc-705b47330247?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"cc70db0a-0d1d-1e44-a7cc-705b47330247\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T18:58:13.3706389Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 19:00:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -o --enable-blob-driver -y + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0adb70cc-1d0d-441e-a7cc-705b47330247?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"cc70db0a-0d1d-1e44-a7cc-705b47330247\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T18:58:13.3706389Z\",\n \"\ + endTime\": \"2023-06-14T19:00:34.9896662Z\"\n }" headers: cache-control: - no-cache @@ -2671,7 +3033,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:27 GMT + - Wed, 14 Jun 2023 19:00:44 GMT expires: - '-1' pragma: @@ -2703,65 +3065,67 @@ interactions: ParameterSetName: - --resource-group --name -o --enable-blob-driver -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxiyidn4j5-79a739\",\n \"fqdn\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.portal.hcp.centraluseuap.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/d21ac9b0-815a-43d4-97c6-128049ca06fb\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n },\n \"blobCSIDriver\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6oyj22sgq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/17f46699-60ed-44cb-a069-b80dba562f72\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ },\n \"blobCSIDriver\": {\n \"enabled\": true\n }\n },\n \ + \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '4009' + - '4336' content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:27 GMT + - Wed, 14 Jun 2023 19:00:44 GMT expires: - '-1' pragma: @@ -2793,65 +3157,67 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxiyidn4j5-79a739\",\n \"fqdn\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.portal.hcp.centraluseuap.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/d21ac9b0-815a-43d4-97c6-128049ca06fb\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n },\n \"blobCSIDriver\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6oyj22sgq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/17f46699-60ed-44cb-a069-b80dba562f72\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ },\n \"blobCSIDriver\": {\n \"enabled\": true\n }\n },\n \ + \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '4009' + - '4336' content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:28 GMT + - Wed, 14 Jun 2023 19:00:45 GMT expires: - '-1' pragma: @@ -2870,24 +3236,24 @@ interactions: code: 200 message: OK - request: - body: '{"location": "centraluseuap", "sku": {"name": "Basic", "tier": "Free"}, + body: '{"location": "centraluseuap", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.24.9", "dnsPrefix": "cliakstest-clitestxiyidn4j5-79a739", "agentPoolProfiles": + "1.25.6", "dnsPrefix": "cliakstest-clitest6oyj22sgq-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": - "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": + "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_centraluseuap", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/d21ac9b0-815a-43d4-97c6-128049ca06fb"}]}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/17f46699-60ed-44cb-a069-b80dba562f72"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -2903,73 +3269,75 @@ interactions: Connection: - keep-alive Content-Length: - - '2508' + - '2836' Content-Type: - application/json ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxiyidn4j5-79a739\",\n \"fqdn\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.portal.hcp.centraluseuap.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/d21ac9b0-815a-43d4-97c6-128049ca06fb\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n },\n \"blobCSIDriver\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6oyj22sgq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/17f46699-60ed-44cb-a069-b80dba562f72\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ },\n \"blobCSIDriver\": {\n \"enabled\": true\n }\n },\n \ + \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/4b914a89-80e5-4300-a943-948278f9a8c2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0f41e3da-28f7-41b0-ba02-300b8fcc8476?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4007' + - '4334' content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:31 GMT + - Wed, 14 Jun 2023 19:00:49 GMT expires: - '-1' pragma: @@ -2985,7 +3353,103 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -y -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0f41e3da-28f7-41b0-ba02-300b8fcc8476?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"dae3410f-f728-b041-ba02-300b8fcc8476\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:00:49.6231587Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 19:00:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -y -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0f41e3da-28f7-41b0-ba02-300b8fcc8476?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"dae3410f-f728-b041-ba02-300b8fcc8476\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:00:49.6231587Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 19:01:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -3003,14 +3467,14 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/4b914a89-80e5-4300-a943-948278f9a8c2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0f41e3da-28f7-41b0-ba02-300b8fcc8476?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"894a914b-e580-0043-a943-948278f9a8c2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:10:31.1539535Z\"\n }" + string: "{\n \"name\": \"dae3410f-f728-b041-ba02-300b8fcc8476\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:00:49.6231587Z\"\n }" headers: cache-control: - no-cache @@ -3019,7 +3483,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:11:01 GMT + - Wed, 14 Jun 2023 19:01:49 GMT expires: - '-1' pragma: @@ -3051,14 +3515,14 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/4b914a89-80e5-4300-a943-948278f9a8c2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0f41e3da-28f7-41b0-ba02-300b8fcc8476?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"894a914b-e580-0043-a943-948278f9a8c2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:10:31.1539535Z\"\n }" + string: "{\n \"name\": \"dae3410f-f728-b041-ba02-300b8fcc8476\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:00:49.6231587Z\"\n }" headers: cache-control: - no-cache @@ -3067,7 +3531,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:11:31 GMT + - Wed, 14 Jun 2023 19:02:19 GMT expires: - '-1' pragma: @@ -3099,15 +3563,15 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/4b914a89-80e5-4300-a943-948278f9a8c2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/0f41e3da-28f7-41b0-ba02-300b8fcc8476?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"894a914b-e580-0043-a943-948278f9a8c2\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:10:31.1539535Z\",\n \"endTime\": - \"2023-03-15T10:12:02.3515676Z\"\n }" + string: "{\n \"name\": \"dae3410f-f728-b041-ba02-300b8fcc8476\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T19:00:49.6231587Z\",\n \"\ + endTime\": \"2023-06-14T19:02:41.7624741Z\"\n }" headers: cache-control: - no-cache @@ -3116,7 +3580,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:02 GMT + - Wed, 14 Jun 2023 19:02:49 GMT expires: - '-1' pragma: @@ -3148,65 +3612,67 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxiyidn4j5-79a739\",\n \"fqdn\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxiyidn4j5-79a739-4ecmy1nq.portal.hcp.centraluseuap.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/d21ac9b0-815a-43d4-97c6-128049ca06fb\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n },\n \"blobCSIDriver\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6oyj22sgq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6oyj22sgq-8ecadf-1s3vygbb.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/17f46699-60ed-44cb-a069-b80dba562f72\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ },\n \"blobCSIDriver\": {\n \"enabled\": true\n }\n },\n \ + \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '4009' + - '4336' content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:02 GMT + - Wed, 14 Jun 2023 19:02:50 GMT expires: - '-1' pragma: @@ -3240,8 +3706,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -3249,17 +3715,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/41a4a63d-d793-451e-9921-7307427a9530?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/6a4677e9-ceb2-4df5-a345-23512182c9f3?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:12:03 GMT + - Wed, 14 Jun 2023 19:02:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/41a4a63d-d793-451e-9921-7307427a9530?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/6a4677e9-ceb2-4df5-a345-23512182c9f3?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_and_update_with_csi_drivers_extensibility.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_and_update_with_csi_drivers_extensibility.yaml old mode 100755 new mode 100644 index 7cae573a872..9b5b06df69d --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_and_update_with_csi_drivers_extensibility.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_and_update_with_csi_drivers_extensibility.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --ssh-key-value -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:12:05 GMT + - Wed, 14 Jun 2023 19:02:54 GMT expires: - '-1' pragma: @@ -60,21 +60,21 @@ interactions: - --resource-group --name --ssh-key-value -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:12:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_and_update_with_csi_drivers_extensibility","date":"2023-06-14T19:02:53Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '387' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:12:04 GMT + - Wed, 14 Jun 2023 19:02:54 GMT expires: - '-1' pragma: @@ -90,20 +90,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestneyvr5leh-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest235a6voen-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {"diskCSIDriver": {"enabled": false}, "fileCSIDriver": - {"enabled": false}, "snapshotController": {"enabled": false}}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {"diskCSIDriver": + {"enabled": false}, "fileCSIDriver": {"enabled": false}, "snapshotController": + {"enabled": false}}}}' headers: Accept: - application/json @@ -114,68 +114,70 @@ interactions: Connection: - keep-alive Content-Length: - - '1573' + - '1865' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestneyvr5leh-79a739\",\n \"fqdn\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - false\n },\n \"fileCSIDriver\": {\n \"enabled\": false\n },\n - \ \"snapshotController\": {\n \"enabled\": false\n }\n },\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": {}\n },\n - \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest235a6voen-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": false\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : false\n },\n \"snapshotController\": {\n \"enabled\": false\n\ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7140db4c-e733-447f-857e-e1bd6bbbf73b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/393e33b4-4812-4776-b493-1cd5b5fb680d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3271' + - '3599' content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:09 GMT + - Wed, 14 Jun 2023 19:03:01 GMT expires: - '-1' pragma: @@ -187,7 +189,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -206,14 +208,14 @@ interactions: - --resource-group --name --ssh-key-value -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7140db4c-e733-447f-857e-e1bd6bbbf73b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/393e33b4-4812-4776-b493-1cd5b5fb680d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4cdb4071-33e7-7f44-857e-e1bd6bbbf73b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:09.6510722Z\"\n }" + string: "{\n \"name\": \"b4333e39-1248-7647-b493-1cd5b5fb680d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:03:01.5257594Z\"\n }" headers: cache-control: - no-cache @@ -222,7 +224,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:39 GMT + - Wed, 14 Jun 2023 19:03:01 GMT expires: - '-1' pragma: @@ -255,14 +257,14 @@ interactions: - --resource-group --name --ssh-key-value -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7140db4c-e733-447f-857e-e1bd6bbbf73b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/393e33b4-4812-4776-b493-1cd5b5fb680d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4cdb4071-33e7-7f44-857e-e1bd6bbbf73b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:09.6510722Z\"\n }" + string: "{\n \"name\": \"b4333e39-1248-7647-b493-1cd5b5fb680d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:03:01.5257594Z\"\n }" headers: cache-control: - no-cache @@ -271,7 +273,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:13:09 GMT + - Wed, 14 Jun 2023 19:03:31 GMT expires: - '-1' pragma: @@ -304,14 +306,14 @@ interactions: - --resource-group --name --ssh-key-value -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7140db4c-e733-447f-857e-e1bd6bbbf73b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/393e33b4-4812-4776-b493-1cd5b5fb680d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4cdb4071-33e7-7f44-857e-e1bd6bbbf73b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:09.6510722Z\"\n }" + string: "{\n \"name\": \"b4333e39-1248-7647-b493-1cd5b5fb680d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:03:01.5257594Z\"\n }" headers: cache-control: - no-cache @@ -320,7 +322,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:13:39 GMT + - Wed, 14 Jun 2023 19:04:02 GMT expires: - '-1' pragma: @@ -353,14 +355,14 @@ interactions: - --resource-group --name --ssh-key-value -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7140db4c-e733-447f-857e-e1bd6bbbf73b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/393e33b4-4812-4776-b493-1cd5b5fb680d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4cdb4071-33e7-7f44-857e-e1bd6bbbf73b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:09.6510722Z\"\n }" + string: "{\n \"name\": \"b4333e39-1248-7647-b493-1cd5b5fb680d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:03:01.5257594Z\"\n }" headers: cache-control: - no-cache @@ -369,7 +371,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:14:10 GMT + - Wed, 14 Jun 2023 19:04:32 GMT expires: - '-1' pragma: @@ -402,14 +404,14 @@ interactions: - --resource-group --name --ssh-key-value -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7140db4c-e733-447f-857e-e1bd6bbbf73b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/393e33b4-4812-4776-b493-1cd5b5fb680d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4cdb4071-33e7-7f44-857e-e1bd6bbbf73b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:09.6510722Z\"\n }" + string: "{\n \"name\": \"b4333e39-1248-7647-b493-1cd5b5fb680d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:03:01.5257594Z\"\n }" headers: cache-control: - no-cache @@ -418,7 +420,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:14:39 GMT + - Wed, 14 Jun 2023 19:05:02 GMT expires: - '-1' pragma: @@ -451,14 +453,14 @@ interactions: - --resource-group --name --ssh-key-value -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7140db4c-e733-447f-857e-e1bd6bbbf73b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/393e33b4-4812-4776-b493-1cd5b5fb680d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4cdb4071-33e7-7f44-857e-e1bd6bbbf73b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:09.6510722Z\"\n }" + string: "{\n \"name\": \"b4333e39-1248-7647-b493-1cd5b5fb680d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:03:01.5257594Z\"\n }" headers: cache-control: - no-cache @@ -467,7 +469,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:15:09 GMT + - Wed, 14 Jun 2023 19:05:32 GMT expires: - '-1' pragma: @@ -500,15 +502,64 @@ interactions: - --resource-group --name --ssh-key-value -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7140db4c-e733-447f-857e-e1bd6bbbf73b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/393e33b4-4812-4776-b493-1cd5b5fb680d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4cdb4071-33e7-7f44-857e-e1bd6bbbf73b\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:12:09.6510722Z\",\n \"endTime\": - \"2023-03-15T10:15:33.5932287Z\"\n }" + string: "{\n \"name\": \"b4333e39-1248-7647-b493-1cd5b5fb680d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:03:01.5257594Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 19:06:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --ssh-key-value -o --disable-disk-driver --disable-file-driver + --disable-snapshot-controller + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/393e33b4-4812-4776-b493-1cd5b5fb680d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b4333e39-1248-7647-b493-1cd5b5fb680d\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T19:03:01.5257594Z\",\n \"\ + endTime\": \"2023-06-14T19:06:16.7138309Z\"\n }" headers: cache-control: - no-cache @@ -517,7 +568,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:15:39 GMT + - Wed, 14 Jun 2023 19:06:33 GMT expires: - '-1' pragma: @@ -550,64 +601,66 @@ interactions: - --resource-group --name --ssh-key-value -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestneyvr5leh-79a739\",\n \"fqdn\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b263cb71-e714-48e0-8e96-6e59882c78c0\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - false\n },\n \"fileCSIDriver\": {\n \"enabled\": false\n },\n - \ \"snapshotController\": {\n \"enabled\": false\n }\n },\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": {}\n },\n - \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest235a6voen-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7c1ea9b7-11ce-4eec-996b-59ed69b3ff01\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": false\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : false\n },\n \"snapshotController\": {\n \"enabled\": false\n\ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3924' + - '4252' content-type: - application/json date: - - Wed, 15 Mar 2023 10:15:40 GMT + - Wed, 14 Jun 2023 19:06:33 GMT expires: - '-1' pragma: @@ -639,64 +692,66 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestneyvr5leh-79a739\",\n \"fqdn\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b263cb71-e714-48e0-8e96-6e59882c78c0\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - false\n },\n \"fileCSIDriver\": {\n \"enabled\": false\n },\n - \ \"snapshotController\": {\n \"enabled\": false\n }\n },\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": {}\n },\n - \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest235a6voen-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7c1ea9b7-11ce-4eec-996b-59ed69b3ff01\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": false\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : false\n },\n \"snapshotController\": {\n \"enabled\": false\n\ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3924' + - '4252' content-type: - application/json date: - - Wed, 15 Mar 2023 10:15:40 GMT + - Wed, 14 Jun 2023 19:06:35 GMT expires: - '-1' pragma: @@ -715,23 +770,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestneyvr5leh-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitest235a6voen-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b263cb71-e714-48e0-8e96-6e59882c78c0"}]}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7c1ea9b7-11ce-4eec-996b-59ed69b3ff01"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -747,72 +802,74 @@ interactions: Connection: - keep-alive Content-Length: - - '2484' + - '2812' Content-Type: - application/json ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestneyvr5leh-79a739\",\n \"fqdn\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b263cb71-e714-48e0-8e96-6e59882c78c0\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - false\n },\n \"fileCSIDriver\": {\n \"enabled\": false\n },\n - \ \"snapshotController\": {\n \"enabled\": false\n }\n },\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": {}\n },\n - \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest235a6voen-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7c1ea9b7-11ce-4eec-996b-59ed69b3ff01\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": false\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : false\n },\n \"snapshotController\": {\n \"enabled\": false\n\ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7af46d12-7316-4efb-a012-05fb7ec27997?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f5fcd96-5170-4d36-8184-363ea1a9e075?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3922' + - '4250' content-type: - application/json date: - - Wed, 15 Mar 2023 10:15:43 GMT + - Wed, 14 Jun 2023 19:06:40 GMT expires: - '-1' pragma: @@ -828,7 +885,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -y -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f5fcd96-5170-4d36-8184-363ea1a9e075?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"96cd5f4f-7051-364d-8184-363ea1a9e075\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:06:40.2763103Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 19:06:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -846,14 +951,14 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7af46d12-7316-4efb-a012-05fb7ec27997?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f5fcd96-5170-4d36-8184-363ea1a9e075?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"126df47a-1673-fb4e-a012-05fb7ec27997\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:15:44.2767243Z\"\n }" + string: "{\n \"name\": \"96cd5f4f-7051-364d-8184-363ea1a9e075\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:06:40.2763103Z\"\n }" headers: cache-control: - no-cache @@ -862,7 +967,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:16:14 GMT + - Wed, 14 Jun 2023 19:07:10 GMT expires: - '-1' pragma: @@ -894,14 +999,14 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7af46d12-7316-4efb-a012-05fb7ec27997?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f5fcd96-5170-4d36-8184-363ea1a9e075?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"126df47a-1673-fb4e-a012-05fb7ec27997\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:15:44.2767243Z\"\n }" + string: "{\n \"name\": \"96cd5f4f-7051-364d-8184-363ea1a9e075\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:06:40.2763103Z\"\n }" headers: cache-control: - no-cache @@ -910,7 +1015,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:16:44 GMT + - Wed, 14 Jun 2023 19:07:43 GMT expires: - '-1' pragma: @@ -942,15 +1047,63 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7af46d12-7316-4efb-a012-05fb7ec27997?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f5fcd96-5170-4d36-8184-363ea1a9e075?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"126df47a-1673-fb4e-a012-05fb7ec27997\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:15:44.2767243Z\",\n \"endTime\": - \"2023-03-15T10:17:11.1422421Z\"\n }" + string: "{\n \"name\": \"96cd5f4f-7051-364d-8184-363ea1a9e075\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:06:40.2763103Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 19:08:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -y -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f5fcd96-5170-4d36-8184-363ea1a9e075?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"96cd5f4f-7051-364d-8184-363ea1a9e075\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T19:06:40.2763103Z\",\n \"\ + endTime\": \"2023-06-14T19:08:32.0856683Z\"\n }" headers: cache-control: - no-cache @@ -959,7 +1112,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:14 GMT + - Wed, 14 Jun 2023 19:12:49 GMT expires: - '-1' pragma: @@ -991,64 +1144,66 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestneyvr5leh-79a739\",\n \"fqdn\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b263cb71-e714-48e0-8e96-6e59882c78c0\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - false\n },\n \"fileCSIDriver\": {\n \"enabled\": false\n },\n - \ \"snapshotController\": {\n \"enabled\": false\n }\n },\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": {}\n },\n - \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest235a6voen-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7c1ea9b7-11ce-4eec-996b-59ed69b3ff01\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": false\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : false\n },\n \"snapshotController\": {\n \"enabled\": false\n\ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3924' + - '4252' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:15 GMT + - Wed, 14 Jun 2023 19:12:49 GMT expires: - '-1' pragma: @@ -1080,64 +1235,66 @@ interactions: ParameterSetName: - --resource-group --name -o --enable-disk-driver --enable-file-driver --enable-snapshot-controller User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestneyvr5leh-79a739\",\n \"fqdn\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b263cb71-e714-48e0-8e96-6e59882c78c0\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - false\n },\n \"fileCSIDriver\": {\n \"enabled\": false\n },\n - \ \"snapshotController\": {\n \"enabled\": false\n }\n },\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": {}\n },\n - \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest235a6voen-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7c1ea9b7-11ce-4eec-996b-59ed69b3ff01\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": false\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : false\n },\n \"snapshotController\": {\n \"enabled\": false\n\ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3924' + - '4252' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:16 GMT + - Wed, 14 Jun 2023 19:12:51 GMT expires: - '-1' pragma: @@ -1156,23 +1313,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestneyvr5leh-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitest235a6voen-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b263cb71-e714-48e0-8e96-6e59882c78c0"}]}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7c1ea9b7-11ce-4eec-996b-59ed69b3ff01"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -1189,72 +1346,74 @@ interactions: Connection: - keep-alive Content-Length: - - '2595' + - '2923' Content-Type: - application/json ParameterSetName: - --resource-group --name -o --enable-disk-driver --enable-file-driver --enable-snapshot-controller User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestneyvr5leh-79a739\",\n \"fqdn\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b263cb71-e714-48e0-8e96-6e59882c78c0\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest235a6voen-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7c1ea9b7-11ce-4eec-996b-59ed69b3ff01\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7e0967d-666a-442a-899d-a7ccaf303e28?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0368d457-6f59-4717-a225-e9ff366bb6cc?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3919' + - '4247' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:19 GMT + - Wed, 14 Jun 2023 19:12:56 GMT expires: - '-1' pragma: @@ -1270,7 +1429,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -o --enable-disk-driver --enable-file-driver --enable-snapshot-controller + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0368d457-6f59-4717-a225-e9ff366bb6cc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"57d46803-596f-1747-a225-e9ff366bb6cc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:12:56.0742287Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 19:12:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -1288,14 +1495,14 @@ interactions: ParameterSetName: - --resource-group --name -o --enable-disk-driver --enable-file-driver --enable-snapshot-controller User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7e0967d-666a-442a-899d-a7ccaf303e28?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0368d457-6f59-4717-a225-e9ff366bb6cc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7d96e0d7-6a66-2a44-899d-a7ccaf303e28\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:17:19.6051162Z\"\n }" + string: "{\n \"name\": \"57d46803-596f-1747-a225-e9ff366bb6cc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:12:56.0742287Z\"\n }" headers: cache-control: - no-cache @@ -1304,7 +1511,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:49 GMT + - Wed, 14 Jun 2023 19:13:27 GMT expires: - '-1' pragma: @@ -1336,14 +1543,14 @@ interactions: ParameterSetName: - --resource-group --name -o --enable-disk-driver --enable-file-driver --enable-snapshot-controller User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7e0967d-666a-442a-899d-a7ccaf303e28?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0368d457-6f59-4717-a225-e9ff366bb6cc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7d96e0d7-6a66-2a44-899d-a7ccaf303e28\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:17:19.6051162Z\"\n }" + string: "{\n \"name\": \"57d46803-596f-1747-a225-e9ff366bb6cc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:12:56.0742287Z\"\n }" headers: cache-control: - no-cache @@ -1352,7 +1559,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:18:19 GMT + - Wed, 14 Jun 2023 19:13:57 GMT expires: - '-1' pragma: @@ -1384,14 +1591,14 @@ interactions: ParameterSetName: - --resource-group --name -o --enable-disk-driver --enable-file-driver --enable-snapshot-controller User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7e0967d-666a-442a-899d-a7ccaf303e28?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0368d457-6f59-4717-a225-e9ff366bb6cc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7d96e0d7-6a66-2a44-899d-a7ccaf303e28\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:17:19.6051162Z\"\n }" + string: "{\n \"name\": \"57d46803-596f-1747-a225-e9ff366bb6cc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:12:56.0742287Z\"\n }" headers: cache-control: - no-cache @@ -1400,7 +1607,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:18:49 GMT + - Wed, 14 Jun 2023 19:14:27 GMT expires: - '-1' pragma: @@ -1432,15 +1639,15 @@ interactions: ParameterSetName: - --resource-group --name -o --enable-disk-driver --enable-file-driver --enable-snapshot-controller User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7e0967d-666a-442a-899d-a7ccaf303e28?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0368d457-6f59-4717-a225-e9ff366bb6cc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7d96e0d7-6a66-2a44-899d-a7ccaf303e28\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:17:19.6051162Z\",\n \"endTime\": - \"2023-03-15T10:19:05.3472122Z\"\n }" + string: "{\n \"name\": \"57d46803-596f-1747-a225-e9ff366bb6cc\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T19:12:56.0742287Z\",\n \"\ + endTime\": \"2023-06-14T19:14:33.7916919Z\"\n }" headers: cache-control: - no-cache @@ -1449,7 +1656,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:19:19 GMT + - Wed, 14 Jun 2023 19:14:58 GMT expires: - '-1' pragma: @@ -1481,64 +1688,66 @@ interactions: ParameterSetName: - --resource-group --name -o --enable-disk-driver --enable-file-driver --enable-snapshot-controller User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestneyvr5leh-79a739\",\n \"fqdn\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b263cb71-e714-48e0-8e96-6e59882c78c0\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest235a6voen-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7c1ea9b7-11ce-4eec-996b-59ed69b3ff01\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4249' content-type: - application/json date: - - Wed, 15 Mar 2023 10:19:20 GMT + - Wed, 14 Jun 2023 19:14:59 GMT expires: - '-1' pragma: @@ -1570,64 +1779,66 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestneyvr5leh-79a739\",\n \"fqdn\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b263cb71-e714-48e0-8e96-6e59882c78c0\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest235a6voen-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7c1ea9b7-11ce-4eec-996b-59ed69b3ff01\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4249' content-type: - application/json date: - - Wed, 15 Mar 2023 10:19:21 GMT + - Wed, 14 Jun 2023 19:15:01 GMT expires: - '-1' pragma: @@ -1646,23 +1857,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestneyvr5leh-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitest235a6voen-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b263cb71-e714-48e0-8e96-6e59882c78c0"}]}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7c1ea9b7-11ce-4eec-996b-59ed69b3ff01"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -1678,72 +1889,74 @@ interactions: Connection: - keep-alive Content-Length: - - '2484' + - '2812' Content-Type: - application/json ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestneyvr5leh-79a739\",\n \"fqdn\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b263cb71-e714-48e0-8e96-6e59882c78c0\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest235a6voen-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7c1ea9b7-11ce-4eec-996b-59ed69b3ff01\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff8229d5-fb23-485e-9ec2-5f27bf4d9b5e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebc06270-b8ff-48cb-ab13-a363d1ee9949?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3919' + - '4247' content-type: - application/json date: - - Wed, 15 Mar 2023 10:19:24 GMT + - Wed, 14 Jun 2023 19:15:07 GMT expires: - '-1' pragma: @@ -1759,7 +1972,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 200 message: OK @@ -1777,23 +1990,23 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff8229d5-fb23-485e-9ec2-5f27bf4d9b5e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebc06270-b8ff-48cb-ab13-a363d1ee9949?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d52982ff-23fb-5e48-9ec2-5f27bf4d9b5e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:19:24.027327Z\"\n }" + string: "{\n \"name\": \"7062c0eb-ffb8-cb48-ab13-a363d1ee9949\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:15:07.2151496Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:19:53 GMT + - Wed, 14 Jun 2023 19:15:08 GMT expires: - '-1' pragma: @@ -1825,23 +2038,71 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff8229d5-fb23-485e-9ec2-5f27bf4d9b5e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebc06270-b8ff-48cb-ab13-a363d1ee9949?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d52982ff-23fb-5e48-9ec2-5f27bf4d9b5e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:19:24.027327Z\"\n }" + string: "{\n \"name\": \"7062c0eb-ffb8-cb48-ab13-a363d1ee9949\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:15:07.2151496Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 19:15:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -y -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebc06270-b8ff-48cb-ab13-a363d1ee9949?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"7062c0eb-ffb8-cb48-ab13-a363d1ee9949\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:15:07.2151496Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:23 GMT + - Wed, 14 Jun 2023 19:16:08 GMT expires: - '-1' pragma: @@ -1873,24 +2134,72 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ff8229d5-fb23-485e-9ec2-5f27bf4d9b5e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebc06270-b8ff-48cb-ab13-a363d1ee9949?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d52982ff-23fb-5e48-9ec2-5f27bf4d9b5e\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:19:24.027327Z\",\n \"endTime\": - \"2023-03-15T10:20:46.1514687Z\"\n }" + string: "{\n \"name\": \"7062c0eb-ffb8-cb48-ab13-a363d1ee9949\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:15:07.2151496Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 19:16:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -y -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebc06270-b8ff-48cb-ab13-a363d1ee9949?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"7062c0eb-ffb8-cb48-ab13-a363d1ee9949\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T19:15:07.2151496Z\",\n \"\ + endTime\": \"2023-06-14T19:16:49.9962431Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:53 GMT + - Wed, 14 Jun 2023 19:17:08 GMT expires: - '-1' pragma: @@ -1922,64 +2231,66 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestneyvr5leh-79a739\",\n \"fqdn\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b263cb71-e714-48e0-8e96-6e59882c78c0\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest235a6voen-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7c1ea9b7-11ce-4eec-996b-59ed69b3ff01\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4249' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:53 GMT + - Wed, 14 Jun 2023 19:17:09 GMT expires: - '-1' pragma: @@ -2012,64 +2323,66 @@ interactions: - --resource-group --name -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestneyvr5leh-79a739\",\n \"fqdn\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b263cb71-e714-48e0-8e96-6e59882c78c0\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest235a6voen-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7c1ea9b7-11ce-4eec-996b-59ed69b3ff01\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4249' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:54 GMT + - Wed, 14 Jun 2023 19:17:12 GMT expires: - '-1' pragma: @@ -2088,23 +2401,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestneyvr5leh-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitest235a6voen-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b263cb71-e714-48e0-8e96-6e59882c78c0"}]}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7c1ea9b7-11ce-4eec-996b-59ed69b3ff01"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -2121,73 +2434,75 @@ interactions: Connection: - keep-alive Content-Length: - - '2598' + - '2926' Content-Type: - application/json ParameterSetName: - --resource-group --name -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestneyvr5leh-79a739\",\n \"fqdn\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b263cb71-e714-48e0-8e96-6e59882c78c0\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - false\n },\n \"fileCSIDriver\": {\n \"enabled\": false\n },\n - \ \"snapshotController\": {\n \"enabled\": false\n }\n },\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": {}\n },\n - \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest235a6voen-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7c1ea9b7-11ce-4eec-996b-59ed69b3ff01\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": false\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : false\n },\n \"snapshotController\": {\n \"enabled\": false\n\ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/396d7b1e-d1f5-46a4-adcd-9f3379ac9d7a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33fab3d2-976b-43e0-b518-a48e3fb848dc?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3922' + - '4250' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:57 GMT + - Wed, 14 Jun 2023 19:17:17 GMT expires: - '-1' pragma: @@ -2203,7 +2518,105 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller + -y + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33fab3d2-976b-43e0-b518-a48e3fb848dc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d2b3fa33-6b97-e043-b518-a48e3fb848dc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:17:16.8872777Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 19:17:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller + -y + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33fab3d2-976b-43e0-b518-a48e3fb848dc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d2b3fa33-6b97-e043-b518-a48e3fb848dc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:17:16.8872777Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 19:17:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -2222,14 +2635,14 @@ interactions: - --resource-group --name -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/396d7b1e-d1f5-46a4-adcd-9f3379ac9d7a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33fab3d2-976b-43e0-b518-a48e3fb848dc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1e7b6d39-f5d1-a446-adcd-9f3379ac9d7a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:20:58.0432839Z\"\n }" + string: "{\n \"name\": \"d2b3fa33-6b97-e043-b518-a48e3fb848dc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:17:16.8872777Z\"\n }" headers: cache-control: - no-cache @@ -2238,7 +2651,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:21:27 GMT + - Wed, 14 Jun 2023 19:18:18 GMT expires: - '-1' pragma: @@ -2271,14 +2684,14 @@ interactions: - --resource-group --name -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/396d7b1e-d1f5-46a4-adcd-9f3379ac9d7a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33fab3d2-976b-43e0-b518-a48e3fb848dc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1e7b6d39-f5d1-a446-adcd-9f3379ac9d7a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:20:58.0432839Z\"\n }" + string: "{\n \"name\": \"d2b3fa33-6b97-e043-b518-a48e3fb848dc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:17:16.8872777Z\"\n }" headers: cache-control: - no-cache @@ -2287,7 +2700,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:21:58 GMT + - Wed, 14 Jun 2023 19:18:48 GMT expires: - '-1' pragma: @@ -2320,15 +2733,15 @@ interactions: - --resource-group --name -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/396d7b1e-d1f5-46a4-adcd-9f3379ac9d7a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33fab3d2-976b-43e0-b518-a48e3fb848dc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1e7b6d39-f5d1-a446-adcd-9f3379ac9d7a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:20:58.0432839Z\",\n \"endTime\": - \"2023-03-15T10:22:21.6955161Z\"\n }" + string: "{\n \"name\": \"d2b3fa33-6b97-e043-b518-a48e3fb848dc\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T19:17:16.8872777Z\",\n \"\ + endTime\": \"2023-06-14T19:18:57.6692154Z\"\n }" headers: cache-control: - no-cache @@ -2337,7 +2750,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:28 GMT + - Wed, 14 Jun 2023 19:19:18 GMT expires: - '-1' pragma: @@ -2370,64 +2783,66 @@ interactions: - --resource-group --name -o --disable-disk-driver --disable-file-driver --disable-snapshot-controller -y User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestneyvr5leh-79a739\",\n \"fqdn\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestneyvr5leh-79a739-cc9souh8.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b263cb71-e714-48e0-8e96-6e59882c78c0\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - false\n },\n \"fileCSIDriver\": {\n \"enabled\": false\n },\n - \ \"snapshotController\": {\n \"enabled\": false\n }\n },\n \"oidcIssuerProfile\": - {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": {}\n },\n - \ \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest235a6voen-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest235a6voen-8ecadf-2k2sl1mr.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7c1ea9b7-11ce-4eec-996b-59ed69b3ff01\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": false\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : false\n },\n \"snapshotController\": {\n \"enabled\": false\n\ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3924' + - '4252' content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:28 GMT + - Wed, 14 Jun 2023 19:19:18 GMT expires: - '-1' pragma: @@ -2461,8 +2876,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -2470,17 +2885,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8ae9601d-2e06-4d9b-b13a-b00362415a63?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5aac59ed-c85d-49ac-b032-a7fb236f6167?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:22:29 GMT + - Wed, 14 Jun 2023 19:19:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/8ae9601d-2e06-4d9b-b13a-b00362415a63?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/5aac59ed-c85d-49ac-b032-a7fb236f6167?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_and_update_with_http_proxy_config.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_and_update_with_http_proxy_config.yaml old mode 100755 new mode 100644 index 764a935c22c..655c2073b2c --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_and_update_with_http_proxy_config.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_and_update_with_http_proxy_config.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - --resource-group --name --address-prefixes --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:22:30Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_and_update_with_http_proxy_config","date":"2023-06-14T19:19:25Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '379' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:22:30 GMT + - Wed, 14 Jun 2023 19:19:26 GMT expires: - '-1' pragma: @@ -61,30 +61,32 @@ interactions: ParameterSetName: - --resource-group --name --address-prefixes --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"cliakstest000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002\",\r\n - \ \"etag\": \"W/\\\"a7fddd72-eca2-4552-aa7e-825c9d27fb22\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"a36b3d79-29be-49e8-a51d-c5bd31f098a4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.42.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n - \ {\r\n \"name\": \"aks-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"a7fddd72-eca2-4552-aa7e-825c9d27fb22\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.42.1.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false\r\n }\r\n}" + string: "{\r\n \"name\": \"cliakstest000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002\"\ + ,\r\n \"etag\": \"W/\\\"6db3fa7e-0c59-4318-afd1-ac9c5ebe6345\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ + \ \"resourceGuid\": \"8621fe7e-9e0a-40f8-bd36-68364ce53a59\",\r\n \"\ + addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.42.0.0/16\"\ + \r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\"\ + : \"aks-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet\"\ + ,\r\n \"etag\": \"W/\\\"6db3fa7e-0c59-4318-afd1-ac9c5ebe6345\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"addressPrefix\": \"10.42.1.0/24\",\r\n \"delegations\"\ + : [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\ + \n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/24717ae9-06f5-40a9-878a-8e728b90fcca?api-version=2022-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/cb7ddaf4-dca3-4ece-98a7-3c3001bd8118?api-version=2022-01-01 cache-control: - no-cache content-length: @@ -92,7 +94,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:22:31 GMT + - Wed, 14 Jun 2023 19:19:29 GMT expires: - '-1' pragma: @@ -105,9 +107,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 214b2aaf-5ac9-4873-bfab-cf9c63b82279 + - 0c8986a9-73d5-4ba8-806a-bc3d1cfe7af5 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -125,9 +127,58 @@ interactions: ParameterSetName: - --resource-group --name --address-prefixes --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/cb7ddaf4-dca3-4ece-98a7-3c3001bd8118?api-version=2022-01-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 14 Jun 2023 19:19:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 940adcfe-3c9d-42d4-89c6-c11267617cac + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --address-prefixes --subnet-name --subnet-prefix + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/24717ae9-06f5-40a9-878a-8e728b90fcca?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/cb7ddaf4-dca3-4ece-98a7-3c3001bd8118?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -139,7 +190,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:22:34 GMT + - Wed, 14 Jun 2023 19:19:40 GMT expires: - '-1' pragma: @@ -156,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5c5637d5-67b5-43fb-8533-3bf38e5866a1 + - 590864c9-4cd9-4c14-8bdb-1c33a82fb0a0 status: code: 200 message: OK @@ -174,25 +225,27 @@ interactions: ParameterSetName: - --resource-group --name --address-prefixes --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"cliakstest000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002\",\r\n - \ \"etag\": \"W/\\\"95f3029c-8753-4a97-92f2-8853c83392d6\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"a36b3d79-29be-49e8-a51d-c5bd31f098a4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.42.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n - \ {\r\n \"name\": \"aks-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"95f3029c-8753-4a97-92f2-8853c83392d6\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.42.1.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false\r\n }\r\n}" + string: "{\r\n \"name\": \"cliakstest000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002\"\ + ,\r\n \"etag\": \"W/\\\"0ff7aa0d-cc00-4085-8840-a87fbd7d5b49\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ + \ \"resourceGuid\": \"8621fe7e-9e0a-40f8-bd36-68364ce53a59\",\r\n \"\ + addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.42.0.0/16\"\ + \r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\"\ + : \"aks-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet\"\ + ,\r\n \"etag\": \"W/\\\"0ff7aa0d-cc00-4085-8840-a87fbd7d5b49\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"addressPrefix\": \"10.42.1.0/24\",\r\n \"delegations\"\ + : [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\ + \n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -201,9 +254,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:22:34 GMT + - Wed, 14 Jun 2023 19:19:40 GMT etag: - - W/"95f3029c-8753-4a97-92f2-8853c83392d6" + - W/"0ff7aa0d-cc00-4085-8840-a87fbd7d5b49" expires: - '-1' pragma: @@ -220,7 +273,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7fefee81-d3d3-4751-86e5-524a35345f46 + - b44aa632-a04d-4576-a645-85b24ae585f1 status: code: 200 message: OK @@ -242,22 +295,22 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name --address-prefix User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/proxy-subnet?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"proxy-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/proxy-subnet\",\r\n - \ \"etag\": \"W/\\\"2c705a01-c204-4630-8e46-41252a116608\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.42.3.0/24\",\r\n - \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: "{\r\n \"name\": \"proxy-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/proxy-subnet\"\ + ,\r\n \"etag\": \"W/\\\"b56677ed-4f38-4b58-a0b7-26563b8905c3\\\"\",\r\n \ + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ + addressPrefix\": \"10.42.3.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ + : \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ + \n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a2dc4947-f2ec-41a9-918d-ceec616d5b98?api-version=2022-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/280a306a-2fef-4f66-971c-0df705631699?api-version=2022-01-01 cache-control: - no-cache content-length: @@ -265,7 +318,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:22:34 GMT + - Wed, 14 Jun 2023 19:19:42 GMT expires: - '-1' pragma: @@ -278,9 +331,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b9705d59-9192-4755-ab03-99c802c6fb2c + - d82b368a-462a-4079-a1ee-1a75eeda6454 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -298,9 +351,58 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name --address-prefix User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/280a306a-2fef-4f66-971c-0df705631699?api-version=2022-01-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 14 Jun 2023 19:19:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - be08bcd2-b2b0-4630-a175-22e2c409128d + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --vnet-name --name --address-prefix + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a2dc4947-f2ec-41a9-918d-ceec616d5b98?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/280a306a-2fef-4f66-971c-0df705631699?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -312,7 +414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:22:37 GMT + - Wed, 14 Jun 2023 19:19:52 GMT expires: - '-1' pragma: @@ -329,7 +431,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e439d815-011f-480e-8657-e1c5e17be128 + - 0b80e68d-7ebb-4124-9b56-f79218861f84 status: code: 200 message: OK @@ -347,17 +449,17 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name --address-prefix User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/proxy-subnet?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"proxy-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/proxy-subnet\",\r\n - \ \"etag\": \"W/\\\"7aff0585-24ae-4ee1-b617-5df036dbebf6\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.42.3.0/24\",\r\n - \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: "{\r\n \"name\": \"proxy-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/proxy-subnet\"\ + ,\r\n \"etag\": \"W/\\\"4bbeed3e-83bd-491e-adde-30ef13559c7e\\\"\",\r\n \ + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ + addressPrefix\": \"10.42.3.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ + : \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ + \n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: cache-control: - no-cache @@ -366,9 +468,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:22:37 GMT + - Wed, 14 Jun 2023 19:19:53 GMT etag: - - W/"7aff0585-24ae-4ee1-b617-5df036dbebf6" + - W/"4bbeed3e-83bd-491e-adde-30ef13559c7e" expires: - '-1' pragma: @@ -385,7 +487,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2a070e61-f5b6-472a-8f1f-ece89115bd28 + - 46ed44ee-1459-46e6-a638-a3f9eab47f5c status: code: 200 message: OK @@ -403,17 +505,17 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"aks-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet\",\r\n - \ \"etag\": \"W/\\\"7aff0585-24ae-4ee1-b617-5df036dbebf6\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.42.1.0/24\",\r\n - \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: "{\r\n \"name\": \"aks-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet\"\ + ,\r\n \"etag\": \"W/\\\"4bbeed3e-83bd-491e-adde-30ef13559c7e\\\"\",\r\n \ + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ + addressPrefix\": \"10.42.1.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ + : \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ + \n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: cache-control: - no-cache @@ -422,9 +524,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:22:38 GMT + - Wed, 14 Jun 2023 19:19:55 GMT etag: - - W/"7aff0585-24ae-4ee1-b617-5df036dbebf6" + - W/"4bbeed3e-83bd-491e-adde-30ef13559c7e" expires: - '-1' pragma: @@ -441,7 +543,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - db42e9c6-8de0-4896-be00-cf6e3b671288 + - 00075827-37ac-4d01-9e2d-6173b65aec8d status: code: 200 message: OK @@ -460,21 +562,21 @@ interactions: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:22:30Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_and_update_with_http_proxy_config","date":"2023-06-14T19:19:25Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '379' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:22:38 GMT + - Wed, 14 Jun 2023 19:19:57 GMT expires: - '-1' pragma: @@ -503,14 +605,14 @@ interactions: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus2\",\r\n \"name\": \"20.04.202303020\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202303020\"\r\n - \ }\r\n]" + string: "[\r\n {\r\n \"location\": \"westus2\",\r\n \"name\": \"20.04.202305150\"\ + ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202305150\"\ + \r\n }\r\n]" headers: cache-control: - no-cache @@ -519,7 +621,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:22:38 GMT + - Wed, 14 Jun 2023 19:19:58 GMT expires: - '-1' pragma: @@ -555,24 +657,26 @@ interactions: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202303020?api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202305150?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n - \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": - \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": - \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n - \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": - 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": - []\r\n },\r\n \"location\": \"westus2\",\r\n \"name\": \"20.04.202303020\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202303020\"\r\n}" + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \ + \ \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n\ + \ \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \ + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\"\ + : false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\"\ + : \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\"\ + : \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n \ + \ },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\":\ + \ \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n\ + \ ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\ + ,\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n \ + \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus2\"\ + ,\r\n \"name\": \"20.04.202305150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202305150\"\ + \r\n}" headers: cache-control: - no-cache @@ -581,7 +685,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:22:39 GMT + - Wed, 14 Jun 2023 19:19:59 GMT expires: - '-1' pragma: @@ -617,12 +721,12 @@ interactions: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e"},{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"38808189-fa7a-4d8a-807f-eba01edacca6","roleDefinitionId":"7dbad3e2-b105-40d5-8fe4-4a9ff6c17ae6"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e"},{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"38808189-fa7a-4d8a-807f-eba01edacca6","roleDefinitionId":"7dbad3e2-b105-40d5-8fe4-4a9ff6c17ae6"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"}],"resourceTypes":[{"resourceType":"virtualNetworks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -630,7 +734,12 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East + US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -639,31 +748,38 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","2","1"]},{"location":"Brazil South","zones":["3","2","1"]},{"location":"Canada - Central","zones":["3","2","1"]},{"location":"Central India","zones":["3","2","1"]},{"location":"Central - US","zones":["3","2","1"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","2","1"]},{"location":"East US","zones":["3","2","1"]},{"location":"East - US 2","zones":["3","2","1"]},{"location":"East US 2 EUAP","zones":["3","2","1"]},{"location":"France - Central","zones":["3","2","1"]},{"location":"Germany West Central","zones":["3","2","1"]},{"location":"Japan - East","zones":["3","2","1"]},{"location":"Korea Central","zones":["3","2","1"]},{"location":"North - Central US","zones":[]},{"location":"North Europe","zones":["3","2","1"]},{"location":"Norway - East","zones":["3","2","1"]},{"location":"Qatar Central","zones":["3","2","1"]},{"location":"South - Africa North","zones":["3","2","1"]},{"location":"South Central US","zones":["3","2","1"]},{"location":"Southeast - Asia","zones":["3","2","1"]},{"location":"Sweden Central","zones":["3","2","1"]},{"location":"Switzerland - North","zones":["3","2","1"]},{"location":"UAE North","zones":["3","2","1"]},{"location":"UK - South","zones":["3","2","1"]},{"location":"West Europe","zones":["3","2","1"]},{"location":"West - US","zones":[]},{"location":"West US 2","zones":["3","2","1"]},{"location":"West - US 3","zones":["3","2","1"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West + US","East US","West Europe","East Asia","Southeast Asia","North Central US","South + Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast","Central India","South India","West India","Canada + Central","Canada East","West Central US","West US 2","UK West","UK South","Korea + Central","Korea South","France Central","Australia Central","South Africa + North","UAE North","Switzerland North","Germany West Central","Norway East","West + US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","North + Europe","Central US EUAP","East US 2 EUAP","France South","Australia Central + 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"North + Central US","zones":[]},{"location":"North Europe","zones":["3","1","2"]},{"location":"Norway + East","zones":["3","1","2"]},{"location":"Poland Central","zones":["3","1","2"]},{"location":"Qatar + Central","zones":["3","1","2"]},{"location":"South Africa North","zones":["3","1","2"]},{"location":"South + Central US","zones":["3","1","2"]},{"location":"Southeast Asia","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US","zones":[]},{"location":"West + US 2","zones":["3","1","2"]},{"location":"West US 3","zones":["3","1","2"]},{"location":"Israel + Central","zones":[]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, + SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -671,22 +787,27 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia - East","zones":["3","2","1"]},{"location":"Brazil South","zones":["3","2","1"]},{"location":"Canada - Central","zones":["3","2","1"]},{"location":"Central India","zones":["3","2","1"]},{"location":"Central - US","zones":["3","2","1"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","2","1"]},{"location":"East US","zones":["3","2","1"]},{"location":"East - US 2","zones":["3","2","1"]},{"location":"East US 2 EUAP","zones":["3","2","1"]},{"location":"France - Central","zones":["3","2","1"]},{"location":"Germany West Central","zones":["3","2","1"]},{"location":"Japan - East","zones":["3","2","1"]},{"location":"Korea Central","zones":["3","2","1"]},{"location":"North - Central US","zones":[]},{"location":"North Europe","zones":["3","2","1"]},{"location":"Norway - East","zones":["3","2","1"]},{"location":"Qatar Central","zones":["3","2","1"]},{"location":"South - Africa North","zones":["3","2","1"]},{"location":"South Central US","zones":["3","2","1"]},{"location":"Southeast - Asia","zones":["3","2","1"]},{"location":"Sweden Central","zones":["3","2","1"]},{"location":"Switzerland - North","zones":["3","2","1"]},{"location":"UAE North","zones":["3","2","1"]},{"location":"UK - South","zones":["3","2","1"]},{"location":"West Europe","zones":["3","2","1"]},{"location":"West - US","zones":[]},{"location":"West US 2","zones":["3","2","1"]},{"location":"West - US 3","zones":["3","2","1"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"North + Central US","zones":[]},{"location":"North Europe","zones":["3","1","2"]},{"location":"Norway + East","zones":["3","1","2"]},{"location":"Poland Central","zones":["3","1","2"]},{"location":"Qatar + Central","zones":["3","1","2"]},{"location":"South Africa North","zones":["3","1","2"]},{"location":"South + Central US","zones":["3","1","2"]},{"location":"Southeast Asia","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US","zones":[]},{"location":"West + US 2","zones":["3","1","2"]},{"location":"West US 3","zones":["3","1","2"]},{"location":"Israel + Central","zones":[]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -695,7 +816,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -703,22 +827,27 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["3","2","1"]},{"location":"Brazil South","zones":["3","2","1"]},{"location":"Canada - Central","zones":["3","2","1"]},{"location":"Central India","zones":["3","2","1"]},{"location":"Central - US","zones":["3","2","1"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","2","1"]},{"location":"East US","zones":["3","2","1"]},{"location":"East - US 2","zones":["3","2","1"]},{"location":"East US 2 EUAP","zones":["3","2","1"]},{"location":"France - Central","zones":["3","2","1"]},{"location":"Germany West Central","zones":["3","2","1"]},{"location":"Japan - East","zones":["3","2","1"]},{"location":"Korea Central","zones":["3","2","1"]},{"location":"North - Central US","zones":[]},{"location":"North Europe","zones":["3","2","1"]},{"location":"Norway - East","zones":["3","2","1"]},{"location":"Qatar Central","zones":["3","2","1"]},{"location":"South - Africa North","zones":["3","2","1"]},{"location":"South Central US","zones":["3","2","1"]},{"location":"Southeast - Asia","zones":["3","2","1"]},{"location":"Sweden Central","zones":["3","2","1"]},{"location":"Switzerland - North","zones":["3","2","1"]},{"location":"UAE North","zones":["3","2","1"]},{"location":"UK - South","zones":["3","2","1"]},{"location":"West Europe","zones":["3","2","1"]},{"location":"West - US","zones":[]},{"location":"West US 2","zones":["3","2","1"]},{"location":"West - US 3","zones":["3","2","1"]}],"capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"North + Central US","zones":[]},{"location":"North Europe","zones":["3","1","2"]},{"location":"Norway + East","zones":["3","1","2"]},{"location":"Poland Central","zones":["3","1","2"]},{"location":"Qatar + Central","zones":["3","1","2"]},{"location":"South Africa North","zones":["3","1","2"]},{"location":"South + Central US","zones":["3","1","2"]},{"location":"Southeast Asia","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US","zones":[]},{"location":"West + US 2","zones":["3","1","2"]},{"location":"West US 3","zones":["3","1","2"]},{"location":"Israel + Central","zones":[]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -727,7 +856,12 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East + US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dscpConfigurations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -736,7 +870,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -745,7 +882,12 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","locationMappings":[{"location":"East + US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints/privateLinkServiceProxies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -754,15 +896,21 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Central US EUAP","East US 2 EUAP","France South","Australia Central","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"loadBalancers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -770,8 +918,13 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Central US EUAP","East US 2 EUAP","France South","Australia Central + 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East + US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -780,7 +933,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -789,7 +945,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"serviceEndpointPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -798,7 +957,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkIntentPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -807,7 +969,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"routeTables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -816,31 +981,39 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPPrefixes","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","2","1"]},{"location":"Brazil South","zones":["3","2","1"]},{"location":"Canada - Central","zones":["3","2","1"]},{"location":"Central India","zones":["3","2","1"]},{"location":"Central - US","zones":["3","2","1"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","2","1"]},{"location":"East US","zones":["3","2","1"]},{"location":"East - US 2","zones":["3","2","1"]},{"location":"East US 2 EUAP","zones":["3","2","1"]},{"location":"France - Central","zones":["3","2","1"]},{"location":"Germany West Central","zones":["3","2","1"]},{"location":"Japan - East","zones":["3","2","1"]},{"location":"Korea Central","zones":["3","2","1"]},{"location":"North - Central US","zones":[]},{"location":"North Europe","zones":["3","2","1"]},{"location":"Norway - East","zones":["3","2","1"]},{"location":"Qatar Central","zones":["3","2","1"]},{"location":"South - Africa North","zones":["3","2","1"]},{"location":"South Central US","zones":["3","2","1"]},{"location":"Southeast - Asia","zones":["3","2","1"]},{"location":"Sweden Central","zones":["3","2","1"]},{"location":"Switzerland - North","zones":["3","2","1"]},{"location":"UAE North","zones":["3","2","1"]},{"location":"UK - South","zones":["3","2","1"]},{"location":"West Europe","zones":["3","2","1"]},{"location":"West - US","zones":[]},{"location":"West US 2","zones":["3","2","1"]},{"location":"West - US 3","zones":["3","2","1"]}],"capabilities":"CrossResourceGroupResourceMove, + US","East US","West Europe","East Asia","Southeast Asia","North Central US","South + Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia + East","Australia Southeast","Central India","South India","West India","Canada + Central","Canada East","West Central US","West US 2","UK West","UK South","Korea + Central","Korea South","France Central","Australia Central","South Africa + North","UAE North","Switzerland North","Germany West Central","Norway East","West + US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","North + Europe","Central US EUAP","East US 2 EUAP","France South","Australia Central + 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"North + Central US","zones":[]},{"location":"North Europe","zones":["3","1","2"]},{"location":"Norway + East","zones":["3","1","2"]},{"location":"Poland Central","zones":["3","1","2"]},{"location":"Qatar + Central","zones":["3","1","2"]},{"location":"South Africa North","zones":["3","1","2"]},{"location":"South + Central US","zones":["3","1","2"]},{"location":"Southeast Asia","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US","zones":[]},{"location":"West + US 2","zones":["3","1","2"]},{"location":"West US 3","zones":["3","1","2"]},{"location":"Israel + Central","zones":[]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -849,7 +1022,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -858,7 +1034,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -867,7 +1046,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","South Central US STG","Brazil Southeast","Jio India Central","Sweden + South","Malaysia South","Israel Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/pingMeshes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -876,7 +1058,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -885,7 +1070,12 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East + US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"localNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -894,7 +1084,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connections","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -903,7 +1096,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -912,22 +1108,26 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","2","1"]},{"location":"Brazil South","zones":["3","2","1"]},{"location":"Canada - Central","zones":["3","2","1"]},{"location":"Central India","zones":["3","2","1"]},{"location":"Central - US","zones":["3","2","1"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","2","1"]},{"location":"East US","zones":["3","2","1"]},{"location":"East - US 2","zones":["3","2","1"]},{"location":"East US 2 EUAP","zones":["3","2","1"]},{"location":"France - Central","zones":["3","2","1"]},{"location":"Germany West Central","zones":["3","2","1"]},{"location":"Japan - East","zones":["3","2","1"]},{"location":"Korea Central","zones":["3","2","1"]},{"location":"North - Central US","zones":[]},{"location":"North Europe","zones":["3","2","1"]},{"location":"Norway - East","zones":["3","2","1"]},{"location":"Qatar Central","zones":["3","2","1"]},{"location":"South - Africa North","zones":["3","2","1"]},{"location":"South Central US","zones":["3","2","1"]},{"location":"Southeast - Asia","zones":["3","2","1"]},{"location":"Sweden Central","zones":["3","2","1"]},{"location":"Switzerland - North","zones":["3","2","1"]},{"location":"UAE North","zones":["3","2","1"]},{"location":"UK - South","zones":["3","2","1"]},{"location":"West Europe","zones":["3","2","1"]},{"location":"West - US","zones":[]},{"location":"West US 2","zones":["3","2","1"]},{"location":"West - US 3","zones":["3","2","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"North + Central US","zones":[]},{"location":"North Europe","zones":["3","1","2"]},{"location":"Norway + East","zones":["3","1","2"]},{"location":"Poland Central","zones":["3","1","2"]},{"location":"Qatar + Central","zones":["3","1","2"]},{"location":"South Africa North","zones":["3","1","2"]},{"location":"South + Central US","zones":["3","1","2"]},{"location":"Southeast Asia","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US","zones":[]},{"location":"West + US 2","zones":["3","1","2"]},{"location":"West US 3","zones":["3","1","2"]},{"location":"Israel + Central","zones":[]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -935,8 +1135,11 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -944,7 +1147,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -952,7 +1158,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -960,7 +1169,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -968,7 +1180,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -976,7 +1191,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -984,7 +1202,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -992,7 +1213,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1000,7 +1224,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1008,7 +1235,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1016,7 +1246,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1024,7 +1257,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1032,7 +1268,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1040,7 +1279,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1048,7 +1290,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1056,7 +1301,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1064,7 +1312,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1072,7 +1323,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1080,7 +1334,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1088,7 +1345,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1096,7 +1356,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1104,7 +1367,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1112,7 +1378,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1120,7 +1389,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1128,7 +1400,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1136,7 +1411,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"dnsResolvers","locations":["West @@ -1146,7 +1424,7 @@ interactions: Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -1154,7 +1432,7 @@ interactions: Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -1162,7 +1440,7 @@ interactions: Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -1170,7 +1448,7 @@ interactions: Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US @@ -1178,29 +1456,29 @@ interactions: Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West Central US","East US 2","West Europe","North Europe","Australia East","UK South","South Central US","East US","North Central US","West US 2","West US 3","Southeast Asia","Central India","Canada Central","Central US","France Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden Central","East Asia","Switzerland North","Brazil South","West US","Norway East","UAE North","Australia Southeast","Canada East","Japan West","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2022-04-01-preview","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2022-04-01-preview","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2022-04-01-preview","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2022-04-01-preview","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2022-04-01-preview","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"expressRouteCircuits","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2022-12-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2022-12-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2022-12-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2022-12-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2022-12-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2022-12-01-preview"],"defaultApiVersion":"2022-12-01-preview","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2022-12-01-preview","2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"expressRouteCircuits","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1208,7 +1486,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteServiceProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1217,7 +1498,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1225,7 +1509,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1233,7 +1520,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1241,7 +1531,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1249,7 +1542,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1257,7 +1553,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1265,7 +1564,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bgpServiceCommunities","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1274,7 +1576,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1282,7 +1587,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"vpnSites","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -1290,8 +1598,11 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Central US EUAP","East US 2 EUAP","France South","Australia Central + 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"vpnServerConfigurations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1299,8 +1610,11 @@ interactions: India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","South Africa North","Switzerland North","Germany West Central","Norway East","West - US 3","Jio India West","Sweden Central","Qatar Central","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Central + US EUAP","East US 2 EUAP","France South","Australia Central","Australia Central + 2","South Africa West","UAE Central","UAE North","Switzerland West","Germany + North","Norway West","Brazil Southeast","Jio India Central","Sweden South","Malaysia + South","Israel Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"virtualHubs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -1308,8 +1622,11 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Central US EUAP","East US 2 EUAP","France South","Australia Central + 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"vpnGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -1317,8 +1634,11 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Central US EUAP","East US 2 EUAP","France South","Australia Central + 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"p2sVpnGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -1326,8 +1646,11 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Central US EUAP","East US 2 EUAP","France South","Australia Central + 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1336,7 +1659,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/hybridEdgeZone","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1345,7 +1671,9 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"expressRoutePortsLocations","locations":["West + Central","Central US EUAP","East US 2 EUAP","France South","Australia Central + 2","South Africa West","UAE Central","Germany North","Norway West","Brazil + Southeast","Jio India Central","Sweden South"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"expressRoutePortsLocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1353,7 +1681,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1361,28 +1692,33 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","UAE North","South Africa North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"firewallPolicies","locations":["Qatar + Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany + North","Central India","Korea South","Switzerland North","Switzerland West","Japan + West","France South","South Africa West","West India","Canada East","South + India","Germany West Central","Norway East","Norway West","South Africa North","East + Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West + US 3","Jio India West","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Central + US EUAP","East US 2 EUAP","Jio India Central","Sweden South"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"ipGroups","locations":["Qatar Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West US 3","Jio India West","Sweden Central","Japan East","UK West","West US","East US","North Europe","West - Europe","West Central US","South Central US","Australia East","Australia Central","Australia + Europe","South Central US","Australia East","Australia Central","Australia Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"ipGroups","locations":["Qatar Central","UAE - North","Australia Central 2","UAE Central","Germany North","Central India","Korea - South","Switzerland North","Switzerland West","Japan West","France South","South - Africa West","West India","Canada East","South India","Germany West Central","Norway - East","Norway West","South Africa North","East Asia","Southeast Asia","Korea - Central","Brazil South","Brazil Southeast","West US 3","Jio India West","Sweden - Central","Japan East","UK West","West US","East US","North Europe","West Europe","South - Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","West Central US","Central US","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"securityPartnerProviders","locations":["West + Central","West Central US","Central US","Central US EUAP","East US 2 EUAP","Jio + India Central","Sweden South"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"securityPartnerProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1390,7 +1726,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewalls","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Brazil South","Australia @@ -1399,22 +1738,26 @@ interactions: Central","Australia Central","Japan West","Japan East","Korea Central","Korea South","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["3","2","1"]},{"location":"Brazil South","zones":["3","2","1"]},{"location":"Canada - Central","zones":["3","2","1"]},{"location":"Central India","zones":["3","2","1"]},{"location":"Central - US","zones":["3","2","1"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East - Asia","zones":["3","2","1"]},{"location":"East US","zones":["3","2","1"]},{"location":"East - US 2","zones":["3","2","1"]},{"location":"East US 2 EUAP","zones":["3","2","1"]},{"location":"France - Central","zones":["3","2","1"]},{"location":"Germany West Central","zones":["3","2","1"]},{"location":"Japan - East","zones":["3","2","1"]},{"location":"Korea Central","zones":["3","2","1"]},{"location":"North - Central US","zones":[]},{"location":"North Europe","zones":["3","2","1"]},{"location":"Norway - East","zones":["3","2","1"]},{"location":"Qatar Central","zones":["3","2","1"]},{"location":"South - Africa North","zones":["3","2","1"]},{"location":"South Central US","zones":["3","2","1"]},{"location":"Southeast - Asia","zones":["3","2","1"]},{"location":"Sweden Central","zones":["3","2","1"]},{"location":"Switzerland - North","zones":["3","2","1"]},{"location":"UAE North","zones":["3","2","1"]},{"location":"UK - South","zones":["3","2","1"]},{"location":"West Europe","zones":["3","2","1"]},{"location":"West - US","zones":[]},{"location":"West US 2","zones":["3","2","1"]},{"location":"West - US 3","zones":["3","2","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["3","1","2"]},{"location":"Brazil South","zones":["3","1","2"]},{"location":"Canada + Central","zones":["3","1","2"]},{"location":"Central India","zones":["3","1","2"]},{"location":"Central + US","zones":["3","1","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["3","1","2"]},{"location":"East US","zones":["3","1","2"]},{"location":"East + US 2","zones":["3","1","2"]},{"location":"East US 2 EUAP","zones":["2","1","3"]},{"location":"France + Central","zones":["3","1","2"]},{"location":"Germany West Central","zones":["3","1","2"]},{"location":"Japan + East","zones":["3","1","2"]},{"location":"Korea Central","zones":["3","1","2"]},{"location":"North + Central US","zones":[]},{"location":"North Europe","zones":["3","1","2"]},{"location":"Norway + East","zones":["3","1","2"]},{"location":"Poland Central","zones":["3","1","2"]},{"location":"Qatar + Central","zones":["3","1","2"]},{"location":"South Africa North","zones":["3","1","2"]},{"location":"South + Central US","zones":["3","1","2"]},{"location":"Southeast Asia","zones":["3","1","2"]},{"location":"Sweden + Central","zones":["3","1","2"]},{"location":"Switzerland North","zones":["3","1","2"]},{"location":"UAE + North","zones":["3","1","2"]},{"location":"UK South","zones":["3","1","2"]},{"location":"West + Europe","zones":["3","1","2"]},{"location":"West US","zones":[]},{"location":"West + US 2","zones":["3","1","2"]},{"location":"West US 3","zones":["3","1","2"]},{"location":"Israel + Central","zones":[]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1422,7 +1765,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1430,7 +1776,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"privateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1439,7 +1788,12 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","locationMappings":[{"location":"East + US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3"]},{"location":"West + US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/privateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1448,7 +1802,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1456,7 +1813,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkProfiles","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil @@ -1464,8 +1824,11 @@ interactions: India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Sweden Central","Qatar Central","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland + Central","Central US EUAP","East US 2 EUAP","France South","Australia Central + 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil @@ -1480,7 +1843,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"bastionHosts","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"bastionHosts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1488,28 +1854,32 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualRouters","locations":["Qatar + Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany + North","Central India","Korea South","Switzerland North","Switzerland West","Japan + West","France South","South Africa West","West India","Canada East","South + India","Germany West Central","Norway East","Norway West","South Africa North","East + Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West + US 3","Jio India West","Sweden Central","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Central + US EUAP","East US 2 EUAP","Jio India Central","Sweden South"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Qatar + Central","Poland Central","Brazil Southeast","West US 3","Jio India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast - Asia","Korea Central","Brazil South","Brazil Southeast","West US 3","Jio India - West","Sweden Central","Japan East","UK West","West US","East US","North Europe","West - Europe","West Central US","South Central US","Australia East","Australia Central","Australia - Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Qatar - Central","Brazil Southeast","West US 3","Jio India West","Sweden Central","UAE - North","Australia Central 2","UAE Central","Germany North","Central India","Korea - South","Switzerland North","Switzerland West","Japan West","France South","South - Africa West","West India","Canada East","South India","Germany West Central","Norway - East","Norway West","South Africa North","East Asia","Southeast Asia","Korea - Central","Brazil South","Japan East","UK West","West US","East US","North - Europe","West Europe","West Central US","South Central US","Australia East","Australia - Central","Australia Southeast","UK South","East US 2","West US 2","North Central - US","Canada Central","France Central","Central US","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, + Asia","Korea Central","Brazil South","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Jio + India Central","Sweden South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"ipAllocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan @@ -1518,19 +1888,22 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagers","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland West","East Asia","Jio India West","South Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2023-03-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2023-03-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West + US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea + South","Brazil Southeast","Korea Central","Southeast Asia","South Central + US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland + North","Qatar Central","Poland Central","East US 2 EUAP","Central US EUAP","Jio + India Central","Sweden South","Sweden Central","Malaysia South","Israel Central"],"apiVersions":["2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West Central US","Jio India West","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central @@ -1539,38 +1912,39 @@ interactions: US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West + East","Canada Central","Switzerland North","Qatar Central","Poland Central","East + US 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Malaysia + South","Israel Central"],"apiVersions":["2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland West","East Asia","Jio India West","South Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2023-03-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea + South","Brazil Southeast","Korea Central","Southeast Asia","South Central + US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland + North","Qatar Central","Poland Central","East US 2 EUAP","Central US EUAP","Jio + India Central","Sweden South","Sweden Central","Malaysia South","Israel Central"],"apiVersions":["2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland West","East Asia","Jio India West","South Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2023-03-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West + US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea + South","Brazil Southeast","Korea Central","Southeast Asia","South Central + US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland + North","Qatar Central","Poland Central","East US 2 EUAP","Central US EUAP","Jio + India Central","Sweden South","Sweden Central","Malaysia South","Israel Central"],"apiVersions":["2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland West","East Asia","Jio India West","South Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Sweden Central","Japan West","Norway East","France Central","West US - 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea + South","Brazil Southeast","Korea Central","Southeast Asia","South Central + US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland + North","Qatar Central","Poland Central","East US 2 EUAP","Central US EUAP","Jio + India Central","Sweden South","Sweden Central","Malaysia South","Israel Central"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -1579,8 +1953,9 @@ interactions: US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2023-03-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + East","Canada Central","Switzerland North","Qatar Central","Poland Central","East + US 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Malaysia + South","Israel Central"],"apiVersions":["2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE @@ -1589,8 +1964,9 @@ interactions: US 2","Sweden Central","Japan West","Norway East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast Asia","South Central US","Norway West","Australia East","Japan East","Canada - East","Canada Central","Switzerland North","Qatar Central","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2023-03-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"locations/serviceTagDetails","locations":["West + East","Canada Central","Switzerland North","Qatar Central","Poland Central","East + US 2 EUAP","Central US EUAP","Jio India Central","Sweden South","Malaysia + South","Israel Central"],"apiVersions":["2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"locations/serviceTagDetails","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1598,7 +1974,10 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South @@ -1606,8 +1985,12 @@ interactions: US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia Central","South Africa North","UAE North","Switzerland North","Germany West Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar - Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"networkWatchers/lenses","locations":["Central - US EUAP","East US 2 EUAP"],"apiVersions":["2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + Central","Poland Central","Central US EUAP","East US 2 EUAP","France South","Australia + Central 2","South Africa West","UAE Central","Switzerland West","Germany North","Norway + West","Brazil Southeast","Jio India Central","Sweden South","Malaysia South","Israel + Central"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"networkWatchers/lenses","locations":["Central + US EUAP","East US 2 EUAP","Australia Central 2","South Africa West","UAE Central","Switzerland + West","Germany North","Norway West"],"apiVersions":["2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East @@ -1636,11 +2019,11 @@ interactions: cache-control: - no-cache content-length: - - '151193' + - '176605' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:22:39 GMT + - Wed, 14 Jun 2023 19:20:02 GMT expires: - '-1' pragma: @@ -1669,28 +2052,23 @@ interactions: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/proxy-subnet?api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/proxy-subnet?api-version=2023-04-01 response: body: - string: "{\r\n \"name\": \"proxy-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/proxy-subnet\",\r\n - \ \"etag\": \"W/\\\"7aff0585-24ae-4ee1-b617-5df036dbebf6\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.42.3.0/24\",\r\n - \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: '{"name":"proxy-subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/proxy-subnet","etag":"W/\"4bbeed3e-83bd-491e-adde-30ef13559c7e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.42.3.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '547' + - '481' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:22:39 GMT + - Wed, 14 Jun 2023 19:20:02 GMT etag: - - W/"7aff0585-24ae-4ee1-b617-5df036dbebf6" + - W/"4bbeed3e-83bd-491e-adde-30ef13559c7e" expires: - '-1' pragma: @@ -1707,7 +2085,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c249720a-b84a-4203-8681-aef1ee491282 + - cbaab900-491f-4fab-8934-464bec7e02c6 status: code: 200 message: OK @@ -1726,14 +2104,14 @@ interactions: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus2\",\r\n \"name\": \"20.04.202303020\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202303020\"\r\n - \ }\r\n]" + string: "[\r\n {\r\n \"location\": \"westus2\",\r\n \"name\": \"20.04.202305150\"\ + ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202305150\"\ + \r\n }\r\n]" headers: cache-control: - no-cache @@ -1742,7 +2120,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:22:39 GMT + - Wed, 14 Jun 2023 19:20:04 GMT expires: - '-1' pragma: @@ -1778,24 +2156,26 @@ interactions: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202303020?api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202305150?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n - \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": - \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": - \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n - \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": - 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": - []\r\n },\r\n \"location\": \"westus2\",\r\n \"name\": \"20.04.202303020\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202303020\"\r\n}" + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \ + \ \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n\ + \ \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \ + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\"\ + : false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\"\ + : \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\"\ + : \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n \ + \ },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\":\ + \ \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n\ + \ ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\ + ,\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n \ + \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus2\"\ + ,\r\n \"name\": \"20.04.202305150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202305150\"\ + \r\n}" headers: cache-control: - no-cache @@ -1804,7 +2184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:22:39 GMT + - Wed, 14 Jun 2023 19:20:04 GMT expires: - '-1' pragma: @@ -1840,14 +2220,14 @@ interactions: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions?$top=1&$orderby=name%20desc&api-version=2022-11-01 response: body: - string: "[\r\n {\r\n \"location\": \"westus2\",\r\n \"name\": \"20.04.202303020\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202303020\"\r\n - \ }\r\n]" + string: "[\r\n {\r\n \"location\": \"westus2\",\r\n \"name\": \"20.04.202305150\"\ + ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202305150\"\ + \r\n }\r\n]" headers: cache-control: - no-cache @@ -1856,7 +2236,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:22:39 GMT + - Wed, 14 Jun 2023 19:20:05 GMT expires: - '-1' pragma: @@ -1892,24 +2272,26 @@ interactions: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202303020?api-version=2022-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/publishers/Canonical/artifacttypes/vmimage/offers/0001-com-ubuntu-server-focal/skus/20_04-lts/versions/20.04.202305150?api-version=2022-11-01 response: body: - string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \"architecture\": - \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n \"disallowed\": {\r\n - \ \"vmDiskType\": \"None\"\r\n },\r\n \"automaticOSUpgradeProperties\": - {\r\n \"automaticOSUpgradeSupported\": false\r\n },\r\n \"imageDeprecationStatus\": - {\r\n \"imageState\": \"Active\"\r\n },\r\n \"features\": [\r\n - \ {\r\n \"name\": \"IsAcceleratedNetworkSupported\",\r\n \"value\": - \"True\"\r\n },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n - \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\": - \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n ],\r\n - \ \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInGb\": - 31,\r\n \"sizeInBytes\": 32213303808\r\n },\r\n \"dataDiskImages\": - []\r\n },\r\n \"location\": \"westus2\",\r\n \"name\": \"20.04.202303020\",\r\n - \ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202303020\"\r\n}" + string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \ + \ \"architecture\": \"x64\",\r\n \"replicaType\": \"Unmanaged\",\r\n\ + \ \"disallowed\": {\r\n \"vmDiskType\": \"None\"\r\n },\r\n \ + \ \"automaticOSUpgradeProperties\": {\r\n \"automaticOSUpgradeSupported\"\ + : false\r\n },\r\n \"imageDeprecationStatus\": {\r\n \"imageState\"\ + : \"Active\"\r\n },\r\n \"features\": [\r\n {\r\n \"name\"\ + : \"IsAcceleratedNetworkSupported\",\r\n \"value\": \"True\"\r\n \ + \ },\r\n {\r\n \"name\": \"DiskControllerTypes\",\r\n \ + \ \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"name\":\ + \ \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n }\r\n\ + \ ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\ + ,\r\n \"sizeInGb\": 31,\r\n \"sizeInBytes\": 32213303808\r\n \ + \ },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus2\"\ + ,\r\n \"name\": \"20.04.202305150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus2/Publishers/Canonical/ArtifactTypes/VMImage/Offers/0001-com-ubuntu-server-focal/Skus/20_04-lts/Versions/20.04.202305150\"\ + \r\n}" headers: cache-control: - no-cache @@ -1918,7 +2300,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:22:40 GMT + - Wed, 14 Jun 2023 19:20:06 GMT expires: - '-1' pragma: @@ -1961,10 +2343,10 @@ interactions: "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": "Canonical", "offer": "0001-com-ubuntu-server-focal", "sku": "20_04-lts", "version": "latest"}}, "osProfile": {"computerName": "cli-proxy-vm", - "adminUsername": "azureuser", "customData": "IyEvdXNyL2Jpbi9lbnYgYmFzaApzZXQgLXgKCmVjaG8gInNldHRpbmcgdXAiCldPUktESVI9IiR7MTotJChta3RlbXAgLWQpfSIKZWNobyAic2V0dGluZyB1cCAke1dPUktESVJ9IgoKcHVzaGQgIiRXT1JLRElSIgoKYXB0IHVwZGF0ZSAteSAmJiBhcHQgaW5zdGFsbCAteSBhcHQtdHJhbnNwb3J0LWh0dHBzIGN1cmwgZ251cGcgbWFrZSBnY2MgPCAvZGV2L251bGwKCiMgYWRkIGRpbGFkZWxlIGFwdCBrZXkKd2dldCAtcU8gLSBodHRwczovL3BhY2thZ2VzLmRpbGFkZWxlLmNvbS9kaWxhZGVsZV9wdWIuYXNjIHwgYXB0LWtleSBhZGQgLQoKIyBhZGQgbmV3IHJlcG8KdGVlIC9ldGMvYXB0L3NvdXJjZXMubGlzdC5kL3NxdWlkNDEzLXVidW50dTIwLmRpbGFkZWxlLmNvbS5saXN0IDw8RU9GCmRlYiBodHRwczovL3NxdWlkNDEzLXVidW50dTIwLmRpbGFkZWxlLmNvbS91YnVudHUvIGZvY2FsIG1haW4KRU9GCgojIGFuZCBpbnN0YWxsCmFwdC1nZXQgdXBkYXRlICYmIGFwdC1nZXQgaW5zdGFsbCAteSBzcXVpZC1jb21tb24gc3F1aWQtb3BlbnNzbCBzcXVpZGNsaWVudCBsaWJlY2FwMyBsaWJlY2FwMy1kZXYgPCAvZGV2L251bGwKCm1rZGlyIC1wIC92YXIvbGliL3NxdWlkCgovdXNyL2xpYi9zcXVpZC9zZWN1cml0eV9maWxlX2NlcnRnZW4gLWMgLXMgL3Zhci9saWIvc3F1aWQvc3NsX2RiIC1NIDRNQiB8fCB0cnVlCgpjaG93biAtUiBwcm94eTpwcm94eSAvdmFyL2xpYi9zcXVpZAoKIyBOYW1lIG9mIHRoZSBWTSBvbiB3aGljaCBTcXVpZCBpcyBob3N0ZWQKSE9TVD0iY2xpLXByb3h5LXZtIgoKdGVlIHNxdWlkYy5wZW0gPiAvZGV2L251bGwgPDxFT0YKLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZHekNDQXdPZ0F3SUJBZ0lVT1FvajhDTFpkc2Vscjk3cnZJd3g1T0xEc3V3d0RRWUpLb1pJaHZjTkFRRUwKQlFBd0Z6RVZNQk1HQTFVRUF3d01ZMnhwTFhCeWIzaDVMWFp0TUI0WERUSXlNRE13T0RFMk5EUTBOMW9YRFRNeQpNRE13TlRFMk5EUTBOMW93RnpFVk1CTUdBMVVFQXd3TVkyeHBMWEJ5YjNoNUxYWnRNSUlDSWpBTkJna3Foa2lHCjl3MEJBUUVGQUFPQ0FnOEFNSUlDQ2dLQ0FnRUEvTVB0VjVCVFB0NmNxaTRSZE1sbXIzeUlzYTJ1anpjaHh2NGgKanNDMUR0blJnb3M1UzQxUEgwcmkrM3RUU1ZYMzJ5cndzWStyRDFZUnVwbTZsbUU3R2hVNUkwR2k5b3prU0YwWgpLS2FKaTJveXBVL0ZCK1FQcXpvQ1JzTUV3R0NibUtGVmw4VnVoeW5kWEs0YjRrYmxyOWJsL2V1d2Q3TThTYnZ6CldVam5lRHJRc2lJc3J6UFQ0S0FaTHFjdHpEZTRsbFBUN1lLYTMzaGlFUE9mdldpWitkcWthUUE5UDY0eFhTeW4KZkhYOHVWQUozdUJWSmVHeEQwcGtOSjdqT3J5YVV1SEh1Y1U4UzltSWpuS2pBQjVhUGpMSDV4QXM2bG1iMzEyMgp5KzF0bkVBbVhNNTBEK1VvRWpmUzZIT2I1cmRpcVhHdmMxS2JvS2p6a1BDUnh4MmE3MmN2ZWdVajZtZ0FKTHpnClRoRTFsbGNtVTRpemd4b0lNa1ZwR1RWT0xMbjFWRkt1TmhNWkN2RnZLZ25Lb0F2M0cwRlVuZldFYVJSalNObUQKTFlhTURUNUg5WnQycERJVWpVR1N0Q2w3Z1J6TUVuWXdKTzN5aURwZzQzbzVkUnlzVXlMOUpmRS9OaDdUZzYxOApuOGNKL1c3K1FZYllsanVyYXA4cjdRRlNyb2wzVkNoRkIrT29yNW5pK3ZvaFNBd0pmMFVsTXBHM3hXbXkxVUk0ClRGS2ZGR1JSVHpyUCs3Yk53WDVoSXZJeTVWdGd5YU9xSndUeGhpL0pkeHRPcjJ0QTVyQ1c3K0N0Z1N2emtxTkUKWHlyN3ZrWWdwNlk1TFpneTR0VWpLMEswT1VnVmRqQk9oRHBFenkvRkY4dzFGRVZnSjBxWS9yV2NMa0JIRFQ4Ugp2SmtoaW84Q0F3RUFBYU5mTUYwd0Z3WURWUjBSQkJBd0RvSU1ZMnhwTFhCeWIzaDVMWFp0TUJJR0ExVWRFd0VCCi93UUlNQVlCQWY4Q0FRQXdEd1lEVlIwUEFRSC9CQVVEQXdmbmdEQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0QKQWdZSUt3WUJCUVVIQXdFd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dJQkFBb21qQ3lYdmFRT3hnWUs1MHNYTEIyKwp3QWZkc3g1bm5HZGd5Zmc0dXJXMlZtMTVEaEd2STdDL250cTBkWXkyNE4vVWJHN1VEWHZseUxJSkZxMVhQN25mCnBaRzBWQ2paNjlibXhLbTNaOG0wL0F3TXZpOGU5ZWR5OHY5a05CQ3dMR2tIYkE4WW85Q0lpUWdlbGZwcDF2VWgKYm5OQmhhRCtpdTZDZmlDTHdnSmIvaXc3ZW8vQ3lvWnF4K3RqWGFPMnpYdm00cC8rUUlmQU9ndEdRTEZVOGNmWgovZ1VyVHE1Z0ZxMCtQOUd5V3NBVEpGNnE3TDZXWlpqME91VHNlN2Y0Q1NpajZNbk9NTXhBK0pvYWhKejdsc1NpClRKSEl3RXA1ci9SeWhweWVwUXhGWWNVSDVKSmY5cmFoWExXWmkrOVRqeFNNMll5aHhmUlBzaVVFdUdEb2s3OFEKbS9RUGlDaTlKSmIxb2NtVGpBVjh4RFNob2NpdlhPRnlobjZMbjc3dkxqWStBYXZ0V0RoUXRocHVQeHNMdFZ6bQplMFNIMTFkRUxSdGI3NG1xWE9yTzdmdS8rSUJzM0pxTEUvVSt4dXhRdHZHOHZHMXlES0hIU1pxUzJoL1dzNGw0Ck5pQXNoSGdlaFFEUEJjWTl3WVl6ZkJnWnBPVU16ZERmNTB4K0ZTbFk0M1dPSkp6U3VRaDR5WjArM2t5Z3VDRjgKcm5NTFNjZXlTNGNpNExtSi9LQ1N1R2RmNlhWWXo4QkU5Z2pqanBDUDZxeTBVbFJlZldzL2lnL3djSysyYkYxVApuL1l2KzZnWGVDVEhKNzVxRElQbHA3RFJVVWswZmJNajRiSWthb2dXV2s0emYydThteFpMYTBsZVBLTktaTi9tCkdDdkZ3cjNlaSt1LzhjenA1RjdUCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0KRU9GCgp0ZWUgc3F1aWRrLnBlbSA+IC9kZXYvbnVsbCA8PEVPRgotLS0tLUJFR0lOIFBSSVZBVEUgS0VZLS0tLS0KTUlJSlJBSUJBREFOQmdrcWhraUc5dzBCQVFFRkFBU0NDUzR3Z2drcUFnRUFBb0lDQVFEOHcrMVhrRk0rM3B5cQpMaEYweVdhdmZJaXhyYTZQTnlIRy9pR093TFVPMmRHQ2l6bExqVThmU3VMN2UxTkpWZmZiS3ZDeGo2c1BWaEc2Cm1icVdZVHNhRlRralFhTDJqT1JJWFJrb3BvbUxhaktsVDhVSDVBK3JPZ0pHd3dUQVlKdVlvVldYeFc2SEtkMWMKcmh2aVJ1V3YxdVg5NjdCM3N6eEp1L05aU09kNE90Q3lJaXl2TTlQZ29Ca3VweTNNTjdpV1U5UHRncHJmZUdJUQo4NSs5YUpuNTJxUnBBRDAvcmpGZExLZDhkZnk1VUFuZTRGVWw0YkVQU21RMG51TTZ2SnBTNGNlNXhUeEwyWWlPCmNxTUFIbG8rTXNmbkVDenFXWnZmWGJiTDdXMmNRQ1pjem5RUDVTZ1NOOUxvYzV2bXQyS3BjYTl6VXB1Z3FQT1EKOEpISEhacnZaeTk2QlNQcWFBQWt2T0JPRVRXV1Z5WlRpTE9ER2dneVJXa1pOVTRzdWZWVVVxNDJFeGtLOFc4cQpDY3FnQy9jYlFWU2Q5WVJwRkdOSTJZTXRob3dOUGtmMW0zYWtNaFNOUVpLMEtYdUJITXdTZGpBazdmS0lPbURqCmVqbDFIS3hUSXYwbDhUODJIdE9Eclh5Znh3bjlidjVCaHRpV082dHFueXZ0QVZLdWlYZFVLRVVINDZpdm1lTDYKK2lGSURBbC9SU1V5a2JmRmFiTFZRamhNVXA4VVpGRlBPcy83dHMzQmZtRWk4akxsVzJESm82b25CUEdHTDhsMwpHMDZ2YTBEbXNKYnY0SzJCSy9PU28wUmZLdnUrUmlDbnBqa3RtRExpMVNNclFyUTVTQlYyTUU2RU9rVFBMOFVYCnpEVVVSV0FuU3BqK3Rad3VRRWNOUHhHOG1TR0tqd0lEQVFBQkFvSUNBRFp3Y0ZiU284cy9vTmhhVWJJb2luQXoKVHpHTmFiSTR1cEtrTzFBR216aFdtM1FWVGtMQ2JZOGN6dVJBL0lBbi90ajZWNXEyaWE0azZHNmJHMysxODBlNwoySEdLZW5IRmlJazVXK2pRYllGVVh4SVJxeXIyNkpVRlNtWTVMSFhPbU5SM3N2cWNNQ0QyV0ZIVXdmYXJORjc1CjF0RW9pUHBPNVNZd1Q4b2tGSTVsaEh0Sk52eUpHaElnQ1N4dUgwUURvRUxvVFJXemNtMjgvTW9QM3BDcHpiZnQKYWttZkhwSHZqM3cwMk9IS2U2TGg1UzVXZktCTENwcHplRCtKRlFHYWkxWmNnR3EzV3pRdTV1VmZOVklhTjI5NworbWYrcU4zVWJPamZ3ellLcmZmZ0xTTUI2Q2RnUUpBajY4M2EwSElSZnpObFk5ZGZyRnNlNkU2SU1hMkQ1OUZJCmdkRjUxZDVPT3FXMDJOR29POWZocDZNNmRHUE54SVVjV3BrOGhqYWdRUXIvQzh5Z01sak1TMC91WGJVOTA0TTIKenlWTk5wU25kVDRzWS9NeGlobG5sOStVbjI2NzJkaENTOFRpUjBKblFicXh2aVpwcnFQOUlVbk9kRVNUNE90VwoyeEZUWUYrYmczUEVLY3VTY2dQcml4OUdoUTc3dVp3K013UGV5enJlWGRVQkwrOWpSQWp1UHFJRTFDcGorNlI2CnpXa21lMDBBZVdudWFCQlMzQUQweE1xc3Q3dE1xcWdYY1RtY2NFYXFOTTNEay8rSVVuREozQXdOeHBYQnE3VUwKVVlyakZpSzVtWHVsNi92RGVYMmQyNzZDcDVNMkxSOFNoODNQZkRHWmRLYW01dkFTaU1HQUdYZEp5Sk1GWnQ3UwpadnhYd0JyUWx5c1RUNnF4MGFWUkFvSUJBUUQvSUl1V1gzWlNYdjRsSzB4NE4xS3FxS0l3VEpqaEE4ZlZERTdZCitQMC9qaDVyb1JZTVhxY0VaeEVSc2RkMEJUNnBZdENhWHVmMWRSN3ludDBQdzVWdHhnaU9pUVd6ME1nZTdPc2gKK0FKVUxtWXNRQk9NMXdCTU1rMG4rVTZaSGw5clNOR2d5WFk3TFdVTFQ4Tmp6TDc0dkpUazBSV3BRRDQ0MFZiZAppK0ZRTUh2QVNCZVErSkk2RzRYR0Vaczh2QjlBcjd2bC8zYXRMcHE3eG1vaWkrajZENWpIZ2psTXRWUkQ2UTloCkJXbjd4TlNmcFEvdGVJbnRqZDYwb3BodlFxblZZd2Eybk43SGxqMGFrNk1JSXFERzVLaUVxREdWQTAwR2FyT2MKVTZFSkRaVng2TmVEWWFPbHQ4SzJ0cHp6cVgrV1huNG1hblJGMDluOHFGZU01dG4zQW9JQkFRRDlvVkF5S3BRdgpTemhXNmNIQlgra1NYNjIzWDNTL2pMY3RmMko0b3RONjZzQnlpMnJKTlhLN1k2OFh1OXVwNTVQU3VCdHlRVHpqCnhTbklGK3U5NlBoV1FzbnlhWHlONDFwcWp5cGVTNXFHQS9KcVBmc0FhMjNqNUxlcFNaUzZhTHRERSt5KzJIZlYKaFBGSHpzNy9sZHA3Ykx2M0I3WHp5TFNFKzJ2NXJleVc1MnZXNEl0YUp4SHN2dWtmLzZnRTNBTVlTTWFIWGFJZApjeWVUVnhVVXMxdElNMUo5V0JqWXpZYSt0MlFMdjIwbFFUelpMMnRaWWNsWDdXUXJwTW9HaWxBWlQzbVRZblBiCnBXZXVkUzM0MjJGeTh3SDRxcDB5dDFvdUkrS1VMNlJpMUFGQXZEU2F1V0hsem5IOVNMRzRTLzBveS90Rys5bWgKNkNKQnNOOFpZKzRwQW9JQkFRQ1JPanQ3VzlnRXg2SXdFbGV6VHZxMXZzeWtaZFhZc01nK0ZJV0ZxU2F2MlB5awpFOHh6T2lZa3NXN2IvYnBCaHdMR2RVTjl2R3lhSXhOODFNWE54VzM0VVBScC9zSEtQQnpPemRxRE9hUkp1eWZhCkpKZDhZcDcrd050KzE4SFFFNlFKZENnd09MNGVyWmFKTzl4am9SZE1qRHpOaTkraXVya3dxcW1oNzVCUWoyakMKYWNkUWRNNzRXTlpyaTNZc3VvR24xdUZFNllqcXlFNjRlUmZObG9zR1hYNkFnemFPM2VHYnpyMDhZMUtUU05ZbwpFbFBndis3ejFRQmpIdk5hMGozUEJGRzcvY3dySFBDbmdrY1p5R3h4QzVTSi94eEtVTmkxd0dPQnAzRlJyL1BVCkpkRVlMcXB6R1FtejdIdW5rR0xhZSt1ZmZwVzFjZ1R5ZC9sdWNiSzlBb0lCQVFEQlAvdEo3aFZ3bjZDeTRITm8KTXZyMHJBQkIyektxakw0NXBYalRNRVZ3djVPWTgwK1BOZkZRaEppeHZjcVdmOE9yWitwSnVSbDY5d3hwMElnbgo4RzNmMUEzcGJhU2d1OTExbWRZUGVRMnBGVExNN3FMa1kvYWNFUFk3djd2WitOak9PRTFIOE1vRjM4QzBGUWkxCngybHNaNklrakRTQUpxb2ROVERGVWxjVmVBazc5V1ZZY0xLQXI4b1RQb200QWljOWhwMzJJRXJZbzVoQTlMWTAKU3FDL3Q1TWZ2Rk5hUmVkb1EzV3dXZEFBOWQ4MklLSnJ2VTFiZUo2OWZsY01lckNqU0dIN0FhWURjdGs0SFVMRQovZXNYV2I5anlDUDBzNjI3d0UzdzJRZ280UjUvUTZmVlNIRW1WNUdWQ3FHWEtoY2YwYVNKSm5aaG5lMFVIbjh1CjZteFpBb0lCQVFDQjRQd3ZxdGdSQWozYnhJeW9QNjVBTjZqMm4yd2syVHBMWVVZQzhYYmdjSlhtWHV2SkJENmYKeXdnRWM5a2hNRXYvWjNyMHZDb1ArZFcwU3lLLys5YmpMSm96cTNCQ05yZGdScVlyZzdjbkVhUGJlc2dPUFdZOQpSNUtnQ044Z2N0aXZaOEczemRlbWJSNHFGeWV5ZWN3Wis5NkpmeUVzazBWMUlwUnJaWmc3c29aNHFzRFJLWmMxCmRrRUI3cHhBZk9sMTdjT3RjWlNRSHVqOFZEdERtVXl5U3p5U0JHUnJGM3FvR2hXYlE1OVdwNDhHdzkvSlovdGgKd21yN0xFblFaTnpvM0liTG5nelVsQ2lSdFJnTmw5aEN3NXZad2ZTOHlFc1MwYTcybG1LWTNxR3lYcjN4QUFoZgowN29pN0VEZG80MkNiYmpBRlZrMkg0MGlNdlZSNWQ0VQotLS0tLUVORCBQUklWQVRFIEtFWS0tLS0tCkVPRgoKY2hvd24gcHJveHk6cHJveHkgc3F1aWRjLnBlbQpjaG93biBwcm94eTpwcm94eSBzcXVpZGsucGVtCmNobW9kIDQwMCBzcXVpZGMucGVtIApjaG1vZCA0MDAgc3F1aWRrLnBlbQpjcCBzcXVpZGMucGVtIC9ldGMvc3F1aWQvc3F1aWRjLnBlbQpjcCBzcXVpZGsucGVtIC9ldGMvc3F1aWQvc3F1aWRrLnBlbQpjcCBzcXVpZGMucGVtIC91c3IvbG9jYWwvc2hhcmUvY2EtY2VydGlmaWNhdGVzL3NxdWlkYy5jcnQKdXBkYXRlLWNhLWNlcnRpZmljYXRlcyAKCnNlZCAtaSAnc35odHRwX2FjY2VzcyBkZW55IGFsbH5odHRwX2FjY2VzcyBhbGxvdyBhbGx+JyAvZXRjL3NxdWlkL3NxdWlkLmNvbmYKc2VkIC1pICJzfmh0dHBfcG9ydCAzMTI4fmh0dHBfcG9ydCAkSE9TVDozMTI4XG5odHRwc19wb3J0ICRIT1NUOjMxMjkgdGxzLWNlcnQ9L2V0Yy9zcXVpZC9zcXVpZGMucGVtIHRscy1rZXk9L2V0Yy9zcXVpZC9zcXVpZGsucGVtfiIgL2V0Yy9zcXVpZC9zcXVpZC5jb25mCgpzeXN0ZW1jdGwgcmVzdGFydCBzcXVpZApzeXN0ZW1jdGwgc3RhdHVzIHNxdWlkCgojIHZhbGlkYXRpb24sIGZhaWxzIFZNIGNyZWF0aW9uIGlmIGNvbW1hbmRzIGZhaWwKY3VybCAtZnNTbCAtbyAvZGV2L251bGwgLXcgJyV7aHR0cF9jb2RlfVxuJyAteCBodHRwOi8vJHtIT1NUfTozMTI4LyAtSSBodHRwOi8vd3d3Lmdvb2dsZS5jb20KY3VybCAtZnNTbCAtbyAvZGV2L251bGwgLXcgJyV7aHR0cF9jb2RlfVxuJyAteCBodHRwOi8vJHtIT1NUfTozMTI4LyAtSSBodHRwczovL3d3dy5nb29nbGUuY29tCmN1cmwgLWZzU2wgLW8gL2Rldi9udWxsIC13ICcle2h0dHBfY29kZX1cbicgLXggaHR0cHM6Ly8ke0hPU1R9OjMxMjkvIC1JIGh0dHA6Ly93d3cuZ29vZ2xlLmNvbQpjdXJsIC1mc1NsIC1vIC9kZXYvbnVsbCAtdyAnJXtodHRwX2NvZGV9XG4nIC14IGh0dHBzOi8vJHtIT1NUfTozMTI5LyAtSSBodHRwczovL3d3dy5nb29nbGUuY29tCg==", + "adminUsername": "xiangweichen", "customData": "IyEvdXNyL2Jpbi9lbnYgYmFzaApzZXQgLXgKCmVjaG8gInNldHRpbmcgdXAiCldPUktESVI9IiR7MTotJChta3RlbXAgLWQpfSIKZWNobyAic2V0dGluZyB1cCAke1dPUktESVJ9IgoKcHVzaGQgIiRXT1JLRElSIgoKYXB0IHVwZGF0ZSAteSAmJiBhcHQgaW5zdGFsbCAteSBhcHQtdHJhbnNwb3J0LWh0dHBzIGN1cmwgZ251cGcgbWFrZSBnY2MgPCAvZGV2L251bGwKCiMgYWRkIGRpbGFkZWxlIGFwdCBrZXkKd2dldCAtcU8gLSBodHRwczovL3BhY2thZ2VzLmRpbGFkZWxlLmNvbS9kaWxhZGVsZV9wdWIuYXNjIHwgYXB0LWtleSBhZGQgLQoKIyBhZGQgbmV3IHJlcG8KdGVlIC9ldGMvYXB0L3NvdXJjZXMubGlzdC5kL3NxdWlkNDEzLXVidW50dTIwLmRpbGFkZWxlLmNvbS5saXN0IDw8RU9GCmRlYiBodHRwczovL3NxdWlkNDEzLXVidW50dTIwLmRpbGFkZWxlLmNvbS91YnVudHUvIGZvY2FsIG1haW4KRU9GCgojIGFuZCBpbnN0YWxsCmFwdC1nZXQgdXBkYXRlICYmIGFwdC1nZXQgaW5zdGFsbCAteSBzcXVpZC1jb21tb24gc3F1aWQtb3BlbnNzbCBzcXVpZGNsaWVudCBsaWJlY2FwMyBsaWJlY2FwMy1kZXYgPCAvZGV2L251bGwKCm1rZGlyIC1wIC92YXIvbGliL3NxdWlkCgovdXNyL2xpYi9zcXVpZC9zZWN1cml0eV9maWxlX2NlcnRnZW4gLWMgLXMgL3Zhci9saWIvc3F1aWQvc3NsX2RiIC1NIDRNQiB8fCB0cnVlCgpjaG93biAtUiBwcm94eTpwcm94eSAvdmFyL2xpYi9zcXVpZAoKIyBOYW1lIG9mIHRoZSBWTSBvbiB3aGljaCBTcXVpZCBpcyBob3N0ZWQKSE9TVD0iY2xpLXByb3h5LXZtIgoKdGVlIHNxdWlkYy5wZW0gPiAvZGV2L251bGwgPDxFT0YKLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZHekNDQXdPZ0F3SUJBZ0lVT1FvajhDTFpkc2Vscjk3cnZJd3g1T0xEc3V3d0RRWUpLb1pJaHZjTkFRRUwKQlFBd0Z6RVZNQk1HQTFVRUF3d01ZMnhwTFhCeWIzaDVMWFp0TUI0WERUSXlNRE13T0RFMk5EUTBOMW9YRFRNeQpNRE13TlRFMk5EUTBOMW93RnpFVk1CTUdBMVVFQXd3TVkyeHBMWEJ5YjNoNUxYWnRNSUlDSWpBTkJna3Foa2lHCjl3MEJBUUVGQUFPQ0FnOEFNSUlDQ2dLQ0FnRUEvTVB0VjVCVFB0NmNxaTRSZE1sbXIzeUlzYTJ1anpjaHh2NGgKanNDMUR0blJnb3M1UzQxUEgwcmkrM3RUU1ZYMzJ5cndzWStyRDFZUnVwbTZsbUU3R2hVNUkwR2k5b3prU0YwWgpLS2FKaTJveXBVL0ZCK1FQcXpvQ1JzTUV3R0NibUtGVmw4VnVoeW5kWEs0YjRrYmxyOWJsL2V1d2Q3TThTYnZ6CldVam5lRHJRc2lJc3J6UFQ0S0FaTHFjdHpEZTRsbFBUN1lLYTMzaGlFUE9mdldpWitkcWthUUE5UDY0eFhTeW4KZkhYOHVWQUozdUJWSmVHeEQwcGtOSjdqT3J5YVV1SEh1Y1U4UzltSWpuS2pBQjVhUGpMSDV4QXM2bG1iMzEyMgp5KzF0bkVBbVhNNTBEK1VvRWpmUzZIT2I1cmRpcVhHdmMxS2JvS2p6a1BDUnh4MmE3MmN2ZWdVajZtZ0FKTHpnClRoRTFsbGNtVTRpemd4b0lNa1ZwR1RWT0xMbjFWRkt1TmhNWkN2RnZLZ25Lb0F2M0cwRlVuZldFYVJSalNObUQKTFlhTURUNUg5WnQycERJVWpVR1N0Q2w3Z1J6TUVuWXdKTzN5aURwZzQzbzVkUnlzVXlMOUpmRS9OaDdUZzYxOApuOGNKL1c3K1FZYllsanVyYXA4cjdRRlNyb2wzVkNoRkIrT29yNW5pK3ZvaFNBd0pmMFVsTXBHM3hXbXkxVUk0ClRGS2ZGR1JSVHpyUCs3Yk53WDVoSXZJeTVWdGd5YU9xSndUeGhpL0pkeHRPcjJ0QTVyQ1c3K0N0Z1N2emtxTkUKWHlyN3ZrWWdwNlk1TFpneTR0VWpLMEswT1VnVmRqQk9oRHBFenkvRkY4dzFGRVZnSjBxWS9yV2NMa0JIRFQ4Ugp2SmtoaW84Q0F3RUFBYU5mTUYwd0Z3WURWUjBSQkJBd0RvSU1ZMnhwTFhCeWIzaDVMWFp0TUJJR0ExVWRFd0VCCi93UUlNQVlCQWY4Q0FRQXdEd1lEVlIwUEFRSC9CQVVEQXdmbmdEQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0QKQWdZSUt3WUJCUVVIQXdFd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dJQkFBb21qQ3lYdmFRT3hnWUs1MHNYTEIyKwp3QWZkc3g1bm5HZGd5Zmc0dXJXMlZtMTVEaEd2STdDL250cTBkWXkyNE4vVWJHN1VEWHZseUxJSkZxMVhQN25mCnBaRzBWQ2paNjlibXhLbTNaOG0wL0F3TXZpOGU5ZWR5OHY5a05CQ3dMR2tIYkE4WW85Q0lpUWdlbGZwcDF2VWgKYm5OQmhhRCtpdTZDZmlDTHdnSmIvaXc3ZW8vQ3lvWnF4K3RqWGFPMnpYdm00cC8rUUlmQU9ndEdRTEZVOGNmWgovZ1VyVHE1Z0ZxMCtQOUd5V3NBVEpGNnE3TDZXWlpqME91VHNlN2Y0Q1NpajZNbk9NTXhBK0pvYWhKejdsc1NpClRKSEl3RXA1ci9SeWhweWVwUXhGWWNVSDVKSmY5cmFoWExXWmkrOVRqeFNNMll5aHhmUlBzaVVFdUdEb2s3OFEKbS9RUGlDaTlKSmIxb2NtVGpBVjh4RFNob2NpdlhPRnlobjZMbjc3dkxqWStBYXZ0V0RoUXRocHVQeHNMdFZ6bQplMFNIMTFkRUxSdGI3NG1xWE9yTzdmdS8rSUJzM0pxTEUvVSt4dXhRdHZHOHZHMXlES0hIU1pxUzJoL1dzNGw0Ck5pQXNoSGdlaFFEUEJjWTl3WVl6ZkJnWnBPVU16ZERmNTB4K0ZTbFk0M1dPSkp6U3VRaDR5WjArM2t5Z3VDRjgKcm5NTFNjZXlTNGNpNExtSi9LQ1N1R2RmNlhWWXo4QkU5Z2pqanBDUDZxeTBVbFJlZldzL2lnL3djSysyYkYxVApuL1l2KzZnWGVDVEhKNzVxRElQbHA3RFJVVWswZmJNajRiSWthb2dXV2s0emYydThteFpMYTBsZVBLTktaTi9tCkdDdkZ3cjNlaSt1LzhjenA1RjdUCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0KRU9GCgp0ZWUgc3F1aWRrLnBlbSA+IC9kZXYvbnVsbCA8PEVPRgotLS0tLUJFR0lOIFBSSVZBVEUgS0VZLS0tLS0KTUlJSlJBSUJBREFOQmdrcWhraUc5dzBCQVFFRkFBU0NDUzR3Z2drcUFnRUFBb0lDQVFEOHcrMVhrRk0rM3B5cQpMaEYweVdhdmZJaXhyYTZQTnlIRy9pR093TFVPMmRHQ2l6bExqVThmU3VMN2UxTkpWZmZiS3ZDeGo2c1BWaEc2Cm1icVdZVHNhRlRralFhTDJqT1JJWFJrb3BvbUxhaktsVDhVSDVBK3JPZ0pHd3dUQVlKdVlvVldYeFc2SEtkMWMKcmh2aVJ1V3YxdVg5NjdCM3N6eEp1L05aU09kNE90Q3lJaXl2TTlQZ29Ca3VweTNNTjdpV1U5UHRncHJmZUdJUQo4NSs5YUpuNTJxUnBBRDAvcmpGZExLZDhkZnk1VUFuZTRGVWw0YkVQU21RMG51TTZ2SnBTNGNlNXhUeEwyWWlPCmNxTUFIbG8rTXNmbkVDenFXWnZmWGJiTDdXMmNRQ1pjem5RUDVTZ1NOOUxvYzV2bXQyS3BjYTl6VXB1Z3FQT1EKOEpISEhacnZaeTk2QlNQcWFBQWt2T0JPRVRXV1Z5WlRpTE9ER2dneVJXa1pOVTRzdWZWVVVxNDJFeGtLOFc4cQpDY3FnQy9jYlFWU2Q5WVJwRkdOSTJZTXRob3dOUGtmMW0zYWtNaFNOUVpLMEtYdUJITXdTZGpBazdmS0lPbURqCmVqbDFIS3hUSXYwbDhUODJIdE9Eclh5Znh3bjlidjVCaHRpV082dHFueXZ0QVZLdWlYZFVLRVVINDZpdm1lTDYKK2lGSURBbC9SU1V5a2JmRmFiTFZRamhNVXA4VVpGRlBPcy83dHMzQmZtRWk4akxsVzJESm82b25CUEdHTDhsMwpHMDZ2YTBEbXNKYnY0SzJCSy9PU28wUmZLdnUrUmlDbnBqa3RtRExpMVNNclFyUTVTQlYyTUU2RU9rVFBMOFVYCnpEVVVSV0FuU3BqK3Rad3VRRWNOUHhHOG1TR0tqd0lEQVFBQkFvSUNBRFp3Y0ZiU284cy9vTmhhVWJJb2luQXoKVHpHTmFiSTR1cEtrTzFBR216aFdtM1FWVGtMQ2JZOGN6dVJBL0lBbi90ajZWNXEyaWE0azZHNmJHMysxODBlNwoySEdLZW5IRmlJazVXK2pRYllGVVh4SVJxeXIyNkpVRlNtWTVMSFhPbU5SM3N2cWNNQ0QyV0ZIVXdmYXJORjc1CjF0RW9pUHBPNVNZd1Q4b2tGSTVsaEh0Sk52eUpHaElnQ1N4dUgwUURvRUxvVFJXemNtMjgvTW9QM3BDcHpiZnQKYWttZkhwSHZqM3cwMk9IS2U2TGg1UzVXZktCTENwcHplRCtKRlFHYWkxWmNnR3EzV3pRdTV1VmZOVklhTjI5NworbWYrcU4zVWJPamZ3ellLcmZmZ0xTTUI2Q2RnUUpBajY4M2EwSElSZnpObFk5ZGZyRnNlNkU2SU1hMkQ1OUZJCmdkRjUxZDVPT3FXMDJOR29POWZocDZNNmRHUE54SVVjV3BrOGhqYWdRUXIvQzh5Z01sak1TMC91WGJVOTA0TTIKenlWTk5wU25kVDRzWS9NeGlobG5sOStVbjI2NzJkaENTOFRpUjBKblFicXh2aVpwcnFQOUlVbk9kRVNUNE90VwoyeEZUWUYrYmczUEVLY3VTY2dQcml4OUdoUTc3dVp3K013UGV5enJlWGRVQkwrOWpSQWp1UHFJRTFDcGorNlI2CnpXa21lMDBBZVdudWFCQlMzQUQweE1xc3Q3dE1xcWdYY1RtY2NFYXFOTTNEay8rSVVuREozQXdOeHBYQnE3VUwKVVlyakZpSzVtWHVsNi92RGVYMmQyNzZDcDVNMkxSOFNoODNQZkRHWmRLYW01dkFTaU1HQUdYZEp5Sk1GWnQ3UwpadnhYd0JyUWx5c1RUNnF4MGFWUkFvSUJBUUQvSUl1V1gzWlNYdjRsSzB4NE4xS3FxS0l3VEpqaEE4ZlZERTdZCitQMC9qaDVyb1JZTVhxY0VaeEVSc2RkMEJUNnBZdENhWHVmMWRSN3ludDBQdzVWdHhnaU9pUVd6ME1nZTdPc2gKK0FKVUxtWXNRQk9NMXdCTU1rMG4rVTZaSGw5clNOR2d5WFk3TFdVTFQ4Tmp6TDc0dkpUazBSV3BRRDQ0MFZiZAppK0ZRTUh2QVNCZVErSkk2RzRYR0Vaczh2QjlBcjd2bC8zYXRMcHE3eG1vaWkrajZENWpIZ2psTXRWUkQ2UTloCkJXbjd4TlNmcFEvdGVJbnRqZDYwb3BodlFxblZZd2Eybk43SGxqMGFrNk1JSXFERzVLaUVxREdWQTAwR2FyT2MKVTZFSkRaVng2TmVEWWFPbHQ4SzJ0cHp6cVgrV1huNG1hblJGMDluOHFGZU01dG4zQW9JQkFRRDlvVkF5S3BRdgpTemhXNmNIQlgra1NYNjIzWDNTL2pMY3RmMko0b3RONjZzQnlpMnJKTlhLN1k2OFh1OXVwNTVQU3VCdHlRVHpqCnhTbklGK3U5NlBoV1FzbnlhWHlONDFwcWp5cGVTNXFHQS9KcVBmc0FhMjNqNUxlcFNaUzZhTHRERSt5KzJIZlYKaFBGSHpzNy9sZHA3Ykx2M0I3WHp5TFNFKzJ2NXJleVc1MnZXNEl0YUp4SHN2dWtmLzZnRTNBTVlTTWFIWGFJZApjeWVUVnhVVXMxdElNMUo5V0JqWXpZYSt0MlFMdjIwbFFUelpMMnRaWWNsWDdXUXJwTW9HaWxBWlQzbVRZblBiCnBXZXVkUzM0MjJGeTh3SDRxcDB5dDFvdUkrS1VMNlJpMUFGQXZEU2F1V0hsem5IOVNMRzRTLzBveS90Rys5bWgKNkNKQnNOOFpZKzRwQW9JQkFRQ1JPanQ3VzlnRXg2SXdFbGV6VHZxMXZzeWtaZFhZc01nK0ZJV0ZxU2F2MlB5awpFOHh6T2lZa3NXN2IvYnBCaHdMR2RVTjl2R3lhSXhOODFNWE54VzM0VVBScC9zSEtQQnpPemRxRE9hUkp1eWZhCkpKZDhZcDcrd050KzE4SFFFNlFKZENnd09MNGVyWmFKTzl4am9SZE1qRHpOaTkraXVya3dxcW1oNzVCUWoyakMKYWNkUWRNNzRXTlpyaTNZc3VvR24xdUZFNllqcXlFNjRlUmZObG9zR1hYNkFnemFPM2VHYnpyMDhZMUtUU05ZbwpFbFBndis3ejFRQmpIdk5hMGozUEJGRzcvY3dySFBDbmdrY1p5R3h4QzVTSi94eEtVTmkxd0dPQnAzRlJyL1BVCkpkRVlMcXB6R1FtejdIdW5rR0xhZSt1ZmZwVzFjZ1R5ZC9sdWNiSzlBb0lCQVFEQlAvdEo3aFZ3bjZDeTRITm8KTXZyMHJBQkIyektxakw0NXBYalRNRVZ3djVPWTgwK1BOZkZRaEppeHZjcVdmOE9yWitwSnVSbDY5d3hwMElnbgo4RzNmMUEzcGJhU2d1OTExbWRZUGVRMnBGVExNN3FMa1kvYWNFUFk3djd2WitOak9PRTFIOE1vRjM4QzBGUWkxCngybHNaNklrakRTQUpxb2ROVERGVWxjVmVBazc5V1ZZY0xLQXI4b1RQb200QWljOWhwMzJJRXJZbzVoQTlMWTAKU3FDL3Q1TWZ2Rk5hUmVkb1EzV3dXZEFBOWQ4MklLSnJ2VTFiZUo2OWZsY01lckNqU0dIN0FhWURjdGs0SFVMRQovZXNYV2I5anlDUDBzNjI3d0UzdzJRZ280UjUvUTZmVlNIRW1WNUdWQ3FHWEtoY2YwYVNKSm5aaG5lMFVIbjh1CjZteFpBb0lCQVFDQjRQd3ZxdGdSQWozYnhJeW9QNjVBTjZqMm4yd2syVHBMWVVZQzhYYmdjSlhtWHV2SkJENmYKeXdnRWM5a2hNRXYvWjNyMHZDb1ArZFcwU3lLLys5YmpMSm96cTNCQ05yZGdScVlyZzdjbkVhUGJlc2dPUFdZOQpSNUtnQ044Z2N0aXZaOEczemRlbWJSNHFGeWV5ZWN3Wis5NkpmeUVzazBWMUlwUnJaWmc3c29aNHFzRFJLWmMxCmRrRUI3cHhBZk9sMTdjT3RjWlNRSHVqOFZEdERtVXl5U3p5U0JHUnJGM3FvR2hXYlE1OVdwNDhHdzkvSlovdGgKd21yN0xFblFaTnpvM0liTG5nelVsQ2lSdFJnTmw5aEN3NXZad2ZTOHlFc1MwYTcybG1LWTNxR3lYcjN4QUFoZgowN29pN0VEZG80MkNiYmpBRlZrMkg0MGlNdlZSNWQ0VQotLS0tLUVORCBQUklWQVRFIEtFWS0tLS0tCkVPRgoKY2hvd24gcHJveHk6cHJveHkgc3F1aWRjLnBlbQpjaG93biBwcm94eTpwcm94eSBzcXVpZGsucGVtCmNobW9kIDQwMCBzcXVpZGMucGVtIApjaG1vZCA0MDAgc3F1aWRrLnBlbQpjcCBzcXVpZGMucGVtIC9ldGMvc3F1aWQvc3F1aWRjLnBlbQpjcCBzcXVpZGsucGVtIC9ldGMvc3F1aWQvc3F1aWRrLnBlbQpjcCBzcXVpZGMucGVtIC91c3IvbG9jYWwvc2hhcmUvY2EtY2VydGlmaWNhdGVzL3NxdWlkYy5jcnQKdXBkYXRlLWNhLWNlcnRpZmljYXRlcyAKCnNlZCAtaSAnc35odHRwX2FjY2VzcyBkZW55IGFsbH5odHRwX2FjY2VzcyBhbGxvdyBhbGx+JyAvZXRjL3NxdWlkL3NxdWlkLmNvbmYKc2VkIC1pICJzfmh0dHBfcG9ydCAzMTI4fmh0dHBfcG9ydCAkSE9TVDozMTI4XG5odHRwc19wb3J0ICRIT1NUOjMxMjkgdGxzLWNlcnQ9L2V0Yy9zcXVpZC9zcXVpZGMucGVtIHRscy1rZXk9L2V0Yy9zcXVpZC9zcXVpZGsucGVtfiIgL2V0Yy9zcXVpZC9zcXVpZC5jb25mCgpzeXN0ZW1jdGwgcmVzdGFydCBzcXVpZApzeXN0ZW1jdGwgc3RhdHVzIHNxdWlkCgojIHZhbGlkYXRpb24sIGZhaWxzIFZNIGNyZWF0aW9uIGlmIGNvbW1hbmRzIGZhaWwKY3VybCAtZnNTbCAtbyAvZGV2L251bGwgLXcgJyV7aHR0cF9jb2RlfVxuJyAteCBodHRwOi8vJHtIT1NUfTozMTI4LyAtSSBodHRwOi8vd3d3Lmdvb2dsZS5jb20KY3VybCAtZnNTbCAtbyAvZGV2L251bGwgLXcgJyV7aHR0cF9jb2RlfVxuJyAteCBodHRwOi8vJHtIT1NUfTozMTI4LyAtSSBodHRwczovL3d3dy5nb29nbGUuY29tCmN1cmwgLWZzU2wgLW8gL2Rldi9udWxsIC13ICcle2h0dHBfY29kZX1cbicgLXggaHR0cHM6Ly8ke0hPU1R9OjMxMjkvIC1JIGh0dHA6Ly93d3cuZ29vZ2xlLmNvbQpjdXJsIC1mc1NsIC1vIC9kZXYvbnVsbCAtdyAnJXtodHRwX2NvZGV9XG4nIC14IGh0dHBzOi8vJHtIT1NUfTozMTI5LyAtSSBodHRwczovL3d3dy5nb29nbGUuY29tCg==", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": - [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com", "path": "/home/azureuser/.ssh/authorized_keys"}]}}}}}], + [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com", "path": "/home/xiangweichen/.ssh/authorized_keys"}]}}}}}], "outputs": {}}, "parameters": {}, "mode": "incremental"}}' headers: Accept: @@ -1976,22 +2358,22 @@ interactions: Connection: - keep-alive Content-Length: - - '12086' + - '12421' Content-Type: - application/json ParameterSetName: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Resources/deployments/vm_deploy_CacsHGKGFFI3dL4DSFt1NBudTVCU9IeZ","name":"vm_deploy_CacsHGKGFFI3dL4DSFt1NBudTVCU9IeZ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5191541614873361202","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-03-15T10:22:41.4656125Z","duration":"PT0.0006516S","correlationId":"cf528c3b-d09b-4b41-ade7-632d1d0693d9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus2"]},{"resourceType":"networkInterfaces","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkSecurityGroups/cli-proxy-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"cli-proxy-vmNSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli-proxy-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli-proxy-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/virtualMachines/cli-proxy-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"cli-proxy-vm"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Resources/deployments/vm_deploy_qlBx24Q3zej0A4LM4I6MMGGsCQhauNTF","name":"vm_deploy_qlBx24Q3zej0A4LM4I6MMGGsCQhauNTF","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6451500133112052670","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-06-14T19:20:11.2750782Z","duration":"PT0.0006629S","correlationId":"de234579-3fab-4ee8-8edf-d4c35f7568dd","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus2"]},{"resourceType":"networkInterfaces","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkSecurityGroups/cli-proxy-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"cli-proxy-vmNSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli-proxy-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli-proxy-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/virtualMachines/cli-proxy-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"cli-proxy-vm"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/vm_deploy_CacsHGKGFFI3dL4DSFt1NBudTVCU9IeZ/operationStatuses/08585227311244410783?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/vm_deploy_qlBx24Q3zej0A4LM4I6MMGGsCQhauNTF/operationStatuses/08585148364765324788?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -1999,7 +2381,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:22:41 GMT + - Wed, 14 Jun 2023 19:20:11 GMT expires: - '-1' pragma: @@ -2009,7 +2391,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -2028,9 +2410,95 @@ interactions: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585227311244410783?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585148364765324788?api-version=2022-09-01 + response: + body: + string: '{"status":"Accepted"}' + headers: + cache-control: + - no-cache + content-length: + - '21' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 14 Jun 2023 19:20:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data + --vnet-name --subnet + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585148364765324788?api-version=2022-09-01 + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 14 Jun 2023 19:20:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - vm create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data + --vnet-name --subnet + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585148364765324788?api-version=2022-09-01 response: body: string: '{"status":"Succeeded"}' @@ -2042,7 +2510,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:23:11 GMT + - Wed, 14 Jun 2023 19:21:12 GMT expires: - '-1' pragma: @@ -2071,12 +2539,12 @@ interactions: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Resources/deployments/vm_deploy_CacsHGKGFFI3dL4DSFt1NBudTVCU9IeZ","name":"vm_deploy_CacsHGKGFFI3dL4DSFt1NBudTVCU9IeZ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5191541614873361202","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-03-15T10:23:09.6448831Z","duration":"PT28.1799222S","correlationId":"cf528c3b-d09b-4b41-ade7-632d1d0693d9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus2"]},{"resourceType":"networkInterfaces","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkSecurityGroups/cli-proxy-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"cli-proxy-vmNSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli-proxy-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli-proxy-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/virtualMachines/cli-proxy-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"cli-proxy-vm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/virtualMachines/cli-proxy-vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkSecurityGroups/cli-proxy-vmNSG"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Resources/deployments/vm_deploy_qlBx24Q3zej0A4LM4I6MMGGsCQhauNTF","name":"vm_deploy_qlBx24Q3zej0A4LM4I6MMGGsCQhauNTF","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6451500133112052670","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-06-14T19:20:53.6229977Z","duration":"PT42.3485824S","correlationId":"de234579-3fab-4ee8-8edf-d4c35f7568dd","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus2"]},{"resourceType":"networkInterfaces","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkSecurityGroups/cli-proxy-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"cli-proxy-vmNSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli-proxy-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"cli-proxy-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/virtualMachines/cli-proxy-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"cli-proxy-vm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/virtualMachines/cli-proxy-vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkSecurityGroups/cli-proxy-vmNSG"}]}}' headers: cache-control: - no-cache @@ -2085,7 +2553,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:23:11 GMT + - Wed, 14 Jun 2023 19:21:12 GMT expires: - '-1' pragma: @@ -2114,65 +2582,71 @@ interactions: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/virtualMachines/cli-proxy-vm?$expand=instanceView&api-version=2022-11-01 response: body: - string: "{\r\n \"name\": \"cli-proxy-vm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/virtualMachines/cli-proxy-vm\",\r\n - \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": - \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"2e0c7650-0166-495d-ac9d-64838b61b7cb\",\r\n - \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n - \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": - \"Canonical\",\r\n \"offer\": \"0001-com-ubuntu-server-focal\",\r\n - \ \"sku\": \"20_04-lts\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": - \"20.04.202303020\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": - \"Linux\",\r\n \"name\": \"cli-proxy-vm_disk1_715177eedac148c4a8e242ac22870e83\",\r\n - \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n - \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/disks/cli-proxy-vm_disk1_715177eedac148c4a8e242ac22870e83\"\r\n - \ },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\": - 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": - {\r\n \"computerName\": \"cli-proxy-vm\",\r\n \"adminUsername\": - \"azureuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": - true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n - \ \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\"\r\n }\r\n ]\r\n },\r\n - \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": - \"ImageDefault\",\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n - \ \"enableVMAgentPlatformUpdates\": false\r\n },\r\n \"secrets\": - [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": - true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic\"}]},\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": - {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n - \ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n - \ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not - Ready\",\r\n \"message\": \"VM status blob is found but not yet - populated.\",\r\n \"time\": \"2023-03-15T10:23:12+00:00\"\r\n }\r\n - \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": - \"cli-proxy-vm_disk1_715177eedac148c4a8e242ac22870e83\",\r\n \"statuses\": - [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-03-15T10:22:48.9952919+00:00\"\r\n - \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": - \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning - succeeded\",\r\n \"time\": \"2023-03-15T10:23:09.0889356+00:00\"\r\n - \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n - \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n - \ }\r\n ]\r\n },\r\n \"timeCreated\": \"2023-03-15T10:22:47.6671277+00:00\"\r\n - \ }\r\n}" + string: "{\r\n \"name\": \"cli-proxy-vm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/virtualMachines/cli-proxy-vm\"\ + ,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\ + : \"westus2\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"type\": \"\ + SystemAssigned\",\r\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n\ + \ \"properties\": {\r\n \"vmId\": \"b35bc11a-4f30-4e9a-bc43-89bc7df13a2f\"\ + ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\ + \n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ + \ \"publisher\": \"Canonical\",\r\n \"offer\": \"0001-com-ubuntu-server-focal\"\ + ,\r\n \"sku\": \"20_04-lts\",\r\n \"version\": \"latest\",\r\ + \n \"exactVersion\": \"20.04.202305150\"\r\n },\r\n \"osDisk\"\ + : {\r\n \"osType\": \"Linux\",\r\n \"name\": \"cli-proxy-vm_disk1_4eacd0b3aa2c4e0b90fe3d1efe23134f\"\ + ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ + ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/disks/cli-proxy-vm_disk1_4eacd0b3aa2c4e0b90fe3d1efe23134f\"\ + \r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\ + : 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\ + : {\r\n \"computerName\": \"cli-proxy-vm\",\r\n \"adminUsername\"\ + : \"xiangweichen\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\ + : true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n \ + \ {\r\n \"path\": \"/home/xiangweichen/.ssh/authorized_keys\"\ + ,\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\"\r\n }\r\n ]\r\n },\r\n \ + \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \ + \ \"patchMode\": \"ImageDefault\",\r\n \"assessmentMode\": \"\ + ImageDefault\"\r\n },\r\n \"enableVMAgentPlatformUpdates\":\ + \ false\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ + : true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"\ + networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic\"\ + }]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\"\ + : {\r\n \"computerName\": \"cli-proxy-vm\",\r\n \"osName\": \"ubuntu\"\ + ,\r\n \"osVersion\": \"20.04\",\r\n \"vmAgent\": {\r\n \"\ + vmAgentVersion\": \"2.9.0.4\",\r\n \"statuses\": [\r\n {\r\ + \n \"code\": \"ProvisioningState/succeeded\",\r\n \"\ + level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ + \ \"message\": \"Guest Agent is running\",\r\n \"time\": \"\ + 2023-06-14T19:21:04+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\"\ + : []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\"\ + : \"cli-proxy-vm_disk1_4eacd0b3aa2c4e0b90fe3d1efe23134f\",\r\n \"\ + statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ + ,\r\n \"level\": \"Info\",\r\n \"displayStatus\"\ + : \"Provisioning succeeded\",\r\n \"time\": \"2023-06-14T19:20:26.9791216+00:00\"\ + \r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\"\ + : \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"\ + ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \ + \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\"\ + : \"2023-06-14T19:20:50.2917959+00:00\"\r\n },\r\n {\r\n \ + \ \"code\": \"PowerState/running\",\r\n \"level\": \"Info\"\ + ,\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\ + \n },\r\n \"timeCreated\": \"2023-06-14T19:20:24.588562+00:00\"\r\n\ + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '3968' + - '4446' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:23:11 GMT + - Wed, 14 Jun 2023 19:21:15 GMT expires: - '-1' pragma: @@ -2189,7 +2663,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31969 + - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31987 status: code: 200 message: OK @@ -2208,35 +2682,35 @@ interactions: - --resource-group --name --image --ssh-key-values --public-ip-address --custom-data --vnet-name --subnet User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"cli-proxy-vmVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic\",\r\n - \ \"etag\": \"W/\\\"fdfda47e-d81d-42ca-beee-af4cffeaa8c9\\\"\",\r\n \"tags\": - {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"1f07aa0c-b63b-4204-8d44-9043103c9340\",\r\n \"ipConfigurations\": - [\r\n {\r\n \"name\": \"ipconfigcli-proxy-vm\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic/ipConfigurations/ipconfigcli-proxy-vm\",\r\n - \ \"etag\": \"W/\\\"fdfda47e-d81d-42ca-beee-af4cffeaa8c9\\\"\",\r\n - \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"privateIPAddress\": \"10.42.3.4\",\r\n \"privateIPAllocationMethod\": - \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/proxy-subnet\"\r\n - \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": - \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": - [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": - \"pe4wxi34fhuetji3yw4td2eyue.xx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": - \"00-22-48-7D-93-15\",\r\n \"enableAcceleratedNetworking\": false,\r\n - \ \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\": false,\r\n - \ \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkSecurityGroups/cli-proxy-vmNSG\"\r\n - \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/virtualMachines/cli-proxy-vm\"\r\n - \ },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n - \ \"nicType\": \"Standard\",\r\n \"allowPort25Out\": true\r\n },\r\n - \ \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus2\",\r\n - \ \"kind\": \"Regular\"\r\n}" + string: "{\r\n \"name\": \"cli-proxy-vmVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic\"\ + ,\r\n \"etag\": \"W/\\\"962de2bb-3f47-4359-9e11-825f1e044317\\\"\",\r\n \ + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"resourceGuid\": \"10722c25-5d26-4e94-91ee-6fd79b80b285\",\r\n \ + \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigcli-proxy-vm\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkInterfaces/cli-proxy-vmVMNic/ipConfigurations/ipconfigcli-proxy-vm\"\ + ,\r\n \"etag\": \"W/\\\"962de2bb-3f47-4359-9e11-825f1e044317\\\"\"\ + ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"privateIPAddress\": \"10.42.3.4\",\r\n \"privateIPAllocationMethod\"\ + : \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/proxy-subnet\"\ + \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\ + : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\ + \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\ + internalDomainNameSuffix\": \"p15cdbqkt12ebpjwna1ezzj0lb.xx.internal.cloudapp.net\"\ + \r\n },\r\n \"macAddress\": \"00-0D-3A-FC-04-DF\",\r\n \"enableAcceleratedNetworking\"\ + : false,\r\n \"vnetEncryptionSupported\": false,\r\n \"enableIPForwarding\"\ + : false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/networkSecurityGroups/cli-proxy-vmNSG\"\ + \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/virtualMachines/cli-proxy-vm\"\ + \r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\ + \n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": true\r\n },\r\ + \n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\":\ + \ \"westus2\",\r\n \"kind\": \"Regular\"\r\n}" headers: cache-control: - no-cache @@ -2245,9 +2719,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:23:12 GMT + - Wed, 14 Jun 2023 19:21:16 GMT etag: - - W/"fdfda47e-d81d-42ca-beee-af4cffeaa8c9" + - W/"962de2bb-3f47-4359-9e11-825f1e044317" expires: - '-1' pragma: @@ -2264,7 +2738,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 62d33493-967e-4d16-b047-859355a1dd3e + - 21490cd6-61c2-4999-a1a3-43893f8238fd status: code: 200 message: OK @@ -2283,8 +2757,8 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -2300,7 +2774,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:23:11 GMT + - Wed, 14 Jun 2023 19:21:16 GMT expires: - '-1' pragma: @@ -2329,21 +2803,21 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:22:30Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_and_update_with_http_proxy_config","date":"2023-06-14T19:19:25Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '379' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:23:12 GMT + - Wed, 14 Jun 2023 19:21:17 GMT expires: - '-1' pragma: @@ -2372,22 +2846,38 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments?$filter=atScope()&api-version=2022-04-01 response: body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-26T05:33:00.7067936Z","updatedOn":"2021-04-26T05:33:00.7067936Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2adf4737-6342-4f63-aeb2-5fcd3426a387","type":"Microsoft.Authorization/roleAssignments","name":"2adf4737-6342-4f63-aeb2-5fcd3426a387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-26T06:09:24.5972802Z","updatedOn":"2021-04-26T06:09:24.5972802Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4572c05-f69f-4e5c-aac6-79afefcf0e2e","type":"Microsoft.Authorization/roleAssignments","name":"c4572c05-f69f-4e5c-aac6-79afefcf0e2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-18T05:18:40.4643436Z","updatedOn":"2021-06-18T05:18:40.4643436Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f926301-cc14-4a88-a3b7-c159d73d01f6","type":"Microsoft.Authorization/roleAssignments","name":"3f926301-cc14-4a88-a3b7-c159d73d01f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:40.4541416Z","updatedOn":"2022-01-25T05:49:40.4541416Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/95e51146-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"95e51146-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:41.6466655Z","updatedOn":"2022-01-25T05:49:41.6466655Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96d4d041-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"96d4d041-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:42.8008295Z","updatedOn":"2022-01-25T05:49:42.8008295Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/978dbc52-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"978dbc52-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:43.7159467Z","updatedOn":"2022-01-25T05:49:43.7159467Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9808753a-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"9808753a-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:44.8535285Z","updatedOn":"2022-01-25T05:49:44.8535285Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9895826c-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"9895826c-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:21.9669611Z","updatedOn":"2022-01-25T06:00:21.9669611Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/143cab45-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"143cab45-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:21.7844500Z","updatedOn":"2022-01-25T06:00:21.7844500Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/143a47b2-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"143a47b2-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:22.8152511Z","updatedOn":"2022-01-25T06:00:22.8152511Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1503a122-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"1503a122-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:22.7549989Z","updatedOn":"2022-01-25T06:00:22.7549989Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14fdfc11-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"14fdfc11-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:47.5002672Z","updatedOn":"2022-01-25T06:00:47.5002672Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23901ba1-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"23901ba1-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:47.9954045Z","updatedOn":"2022-01-25T06:00:47.9954045Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23d4b2c8-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"23d4b2c8-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:48.0124462Z","updatedOn":"2022-01-25T06:00:48.0124462Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23eb1c2a-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"23eb1c2a-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:49.0142818Z","updatedOn":"2022-01-25T06:00:49.0142818Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/248c7804-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"248c7804-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:49.8561822Z","updatedOn":"2022-01-25T06:00:49.8561822Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/25212cc5-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"25212cc5-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:03:00.8232622Z","updatedOn":"2022-01-25T06:03:00.8232622Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/730ae441-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"730ae441-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:03:01.6908492Z","updatedOn":"2022-01-25T06:03:01.6908492Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/73b81c51-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"73b81c51-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:27.0646115Z","updatedOn":"2022-01-25T06:05:27.0646115Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca436279-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"ca436279-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:27.8245772Z","updatedOn":"2022-01-25T06:05:27.8245772Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cad7146c-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cad7146c-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:28.8193427Z","updatedOn":"2022-01-25T06:05:28.8193427Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cb6be874-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cb6be874-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:30.0125029Z","updatedOn":"2022-01-25T06:05:30.0125029Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc20f7f4-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cc20f7f4-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:31.2002633Z","updatedOn":"2022-01-25T06:05:31.2002633Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ccd748dd-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"ccd748dd-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:32.4937030Z","updatedOn":"2022-01-25T06:05:32.4937030Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd4bbd1a-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cd4bbd1a-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:33.6999970Z","updatedOn":"2022-01-25T06:05:33.6999970Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce56964e-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"ce56964e-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:35.3719606Z","updatedOn":"2022-01-25T06:05:35.3719606Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf53c36b-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cf53c36b-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:37.0989473Z","updatedOn":"2022-01-25T06:05:37.0989473Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0537e9f-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d0537e9f-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:37.9186616Z","updatedOn":"2022-01-25T06:05:37.9186616Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0d7c10e-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d0d7c10e-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:39.2245796Z","updatedOn":"2022-01-25T06:05:39.2245796Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d187dc7e-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d187dc7e-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:41.3147495Z","updatedOn":"2022-01-25T06:05:41.3147495Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2d190da-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d2d190da-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:42.0909979Z","updatedOn":"2022-01-25T06:05:42.0909979Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3553305-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d3553305-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T04:11:40.8923959Z","updatedOn":"2023-02-10T04:11:40.8923959Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b9cb4b1-7e07-4127-b87e-47e7ab8ae685","type":"Microsoft.Authorization/roleAssignments","name":"7b9cb4b1-7e07-4127-b87e-47e7ab8ae685"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-18T03:09:33.8702688Z","updatedOn":"2021-09-18T03:09:33.8702688Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99d6fd13-909e-4c52-807e-77f7a5af83c8","type":"Microsoft.Authorization/roleAssignments","name":"99d6fd13-909e-4c52-807e-77f7a5af83c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T17:23:35.8382756Z","updatedOn":"2021-10-08T17:23:35.8382756Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de/providers/Microsoft.Authorization/roleAssignments/ade4333c-4321-4b68-b498-d081d55e2b0c","type":"Microsoft.Authorization/roleAssignments","name":"ade4333c-4321-4b68-b498-d081d55e2b0c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9136073Z","updatedOn":"2019-03-26T22:01:02.9136073Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6f4de15e-9316-4714-a7c4-40c46cf8e067","type":"Microsoft.Authorization/roleAssignments","name":"6f4de15e-9316-4714-a7c4-40c46cf8e067"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:13.2137492Z","updatedOn":"2020-02-25T18:36:13.2137492Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/18fdd87e-1c01-424e-b380-32310f4940c2","type":"Microsoft.Authorization/roleAssignments","name":"18fdd87e-1c01-424e-b380-32310f4940c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:00.4746112Z","updatedOn":"2020-02-25T18:36:00.4746112Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d9bcf58a-6f24-446d-bf60-20ffe5142396","type":"Microsoft.Authorization/roleAssignments","name":"d9bcf58a-6f24-446d-bf60-20ffe5142396"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:55.7490022Z","updatedOn":"2020-02-25T18:35:55.7490022Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6e2b954b-42b2-48e0-997a-622601f0a4b4","type":"Microsoft.Authorization/roleAssignments","name":"6e2b954b-42b2-48e0-997a-622601f0a4b4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:57.9173081Z","updatedOn":"2020-02-25T18:35:57.9173081Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9","type":"Microsoft.Authorization/roleAssignments","name":"8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:23.0673659Z","updatedOn":"2020-02-25T18:36:23.0673659Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d0817c57-3e5b-4363-88b7-52baadd5c362","type":"Microsoft.Authorization/roleAssignments","name":"d0817c57-3e5b-4363-88b7-52baadd5c362"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:31.2596366Z","updatedOn":"2020-02-25T18:36:31.2596366Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0dabf212-a1c7-4af6-ba8b-be045493b368","type":"Microsoft.Authorization/roleAssignments","name":"0dabf212-a1c7-4af6-ba8b-be045493b368"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:52.9188704Z","updatedOn":"2020-02-25T18:35:52.9188704Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d674b853-332e-4437-9ddb-bba8fde7ccce","type":"Microsoft.Authorization/roleAssignments","name":"d674b853-332e-4437-9ddb-bba8fde7ccce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:38.8393742Z","updatedOn":"2020-02-25T18:36:38.8393742Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/00625383-053d-4227-a4db-b098e9bd2289","type":"Microsoft.Authorization/roleAssignments","name":"00625383-053d-4227-a4db-b098e9bd2289"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:05.0954462Z","updatedOn":"2020-02-25T18:36:05.0954462Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/3151fe9c-fcd2-45d3-a256-72fb13b86df5","type":"Microsoft.Authorization/roleAssignments","name":"3151fe9c-fcd2-45d3-a256-72fb13b86df5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-07-06T18:51:23.0753297Z","updatedOn":"2020-07-06T18:51:23.0753297Z","createdBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","updatedBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b3a9e1db-fde1-4ddd-ac1c-91913be67359","type":"Microsoft.Authorization/roleAssignments","name":"b3a9e1db-fde1-4ddd-ac1c-91913be67359"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T21:14:55.1655079Z","updatedOn":"2023-02-28T22:54:18.0450083Z","createdBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","updatedBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6565c104-61e2-5756-96d7-663b216c8b11","type":"Microsoft.Authorization/roleAssignments","name":"6565c104-61e2-5756-96d7-663b216c8b11"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-02-17T00:30:39.4967398Z","updatedOn":"2022-02-17T00:30:39.4967398Z","createdBy":"a4319ad3-20be-4542-8952-685b66e56377","updatedBy":"a4319ad3-20be-4542-8952-685b66e56377","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d8aedac6-3663-42b3-add4-c013b7935fb4","type":"Microsoft.Authorization/roleAssignments","name":"d8aedac6-3663-42b3-add4-c013b7935fb4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-03-02T23:53:39.1630622Z","updatedOn":"2022-03-02T23:53:39.1630622Z","createdBy":"a4319ad3-20be-4542-8952-685b66e56377","updatedBy":"a4319ad3-20be-4542-8952-685b66e56377","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b5f0a13f-ac13-4e45-8588-15f5d9a02b20","type":"Microsoft.Authorization/roleAssignments","name":"b5f0a13f-ac13-4e45-8588-15f5d9a02b20"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:58:05.8353141Z","updatedOn":"2022-03-08T00:58:05.8353141Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/403b97d1-ee0a-4b10-afe1-f36f368d2ced","type":"Microsoft.Authorization/roleAssignments","name":"403b97d1-ee0a-4b10-afe1-f36f368d2ced"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-05-16T23:08:20.8536608Z","updatedOn":"2022-05-16T23:08:20.8536608Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8b338a13-cfa6-42e6-b424-fb375ce9d07c","type":"Microsoft.Authorization/roleAssignments","name":"8b338a13-cfa6-42e6-b424-fb375ce9d07c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-05-17T18:23:54.2264851Z","updatedOn":"2022-05-31T17:20:00.8273681Z","createdBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","updatedBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f0576973-5014-5fe2-b3f2-cf3aace860d6","type":"Microsoft.Authorization/roleAssignments","name":"f0576973-5014-5fe2-b3f2-cf3aace860d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:21.3325762Z","updatedOn":"2022-07-19T00:07:21.3325762Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2697280b-812c-472d-841b-a10a9fe540a5","type":"Microsoft.Authorization/roleAssignments","name":"2697280b-812c-472d-841b-a10a9fe540a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:23.7020980Z","updatedOn":"2022-07-19T00:07:23.7020980Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f4254463-7a28-4d26-b331-5a18c354cbe6","type":"Microsoft.Authorization/roleAssignments","name":"f4254463-7a28-4d26-b331-5a18c354cbe6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:26.4080657Z","updatedOn":"2022-07-19T00:07:26.4080657Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/065a63ba-71cc-4c69-b92b-bc67421e7e64","type":"Microsoft.Authorization/roleAssignments","name":"065a63ba-71cc-4c69-b92b-bc67421e7e64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:33.0012805Z","updatedOn":"2021-08-09T18:17:33.0012805Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/01de8fe7-aae0-4d5c-844a-f0bdb8335252","type":"Microsoft.Authorization/roleAssignments","name":"01de8fe7-aae0-4d5c-844a-f0bdb8335252"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:39.9188336Z","updatedOn":"2021-08-09T18:17:39.9188336Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ab2be506-5489-4c1f-add0-f5ed87a10439","type":"Microsoft.Authorization/roleAssignments","name":"ab2be506-5489-4c1f-add0-f5ed87a10439"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:18.2000692Z","updatedOn":"2021-08-24T19:32:18.2000692Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0ce2f3fb-17ea-4193-9081-09aa4b39fec4","type":"Microsoft.Authorization/roleAssignments","name":"0ce2f3fb-17ea-4193-9081-09aa4b39fec4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:36.6775144Z","updatedOn":"2021-08-24T19:32:36.6775144Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2e95b289-99bd-4e68-83de-5433f2a0428c","type":"Microsoft.Authorization/roleAssignments","name":"2e95b289-99bd-4e68-83de-5433f2a0428c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:09.1056400Z","updatedOn":"2021-11-01T22:46:09.1056400Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/82fe7886-5c1b-42c2-9319-7b4d436d8aba","type":"Microsoft.Authorization/roleAssignments","name":"82fe7886-5c1b-42c2-9319-7b4d436d8aba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:14.7527743Z","updatedOn":"2021-11-01T22:46:14.7527743Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/12162b26-25fb-4ef5-a6e8-651446483cb6","type":"Microsoft.Authorization/roleAssignments","name":"12162b26-25fb-4ef5-a6e8-651446483cb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:20.6399869Z","updatedOn":"2021-11-01T22:46:20.6399869Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870","type":"Microsoft.Authorization/roleAssignments","name":"105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-01-26T20:10:13.8998989Z","updatedOn":"2021-01-26T20:10:13.8998989Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b36517ec-61d3-468d-afdc-eceda8adb4ee","type":"Microsoft.Authorization/roleAssignments","name":"b36517ec-61d3-468d-afdc-eceda8adb4ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-02-06T00:13:19.1780775Z","updatedOn":"2021-02-06T00:13:19.1780775Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5216c1ee-4f58-4d36-b379-6c04b1fbd157","type":"Microsoft.Authorization/roleAssignments","name":"5216c1ee-4f58-4d36-b379-6c04b1fbd157"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:26:34.3109215Z","updatedOn":"2021-04-16T18:26:34.3109215Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/7464f8a3-9f55-443b-a3a5-44a31b100cad","type":"Microsoft.Authorization/roleAssignments","name":"7464f8a3-9f55-443b-a3a5-44a31b100cad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:27:56.4446265Z","updatedOn":"2021-04-16T18:27:56.4446265Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8f430c4c-4317-4495-9f01-4f3d4e1ca111","type":"Microsoft.Authorization/roleAssignments","name":"8f430c4c-4317-4495-9f01-4f3d4e1ca111"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-05-04T19:20:06.7695456Z","updatedOn":"2021-05-04T19:20:06.7695456Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa","type":"Microsoft.Authorization/roleAssignments","name":"fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9176787Z","updatedOn":"2019-03-26T22:01:02.9176787Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320","type":"Microsoft.Authorization/roleAssignments","name":"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:49:37.3000523Z","updatedOn":"2019-03-27T00:49:37.3000523Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29","type":"Microsoft.Authorization/roleAssignments","name":"e6e1fffd-83f7-40c7-9f33-e56e2cf75b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:50:08.3039053Z","updatedOn":"2019-03-27T00:50:08.3039053Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12","type":"Microsoft.Authorization/roleAssignments","name":"3d01f56e-ee3a-41ed-a775-0e067546cb12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T23:11:28.9217618Z","updatedOn":"2022-06-28T23:11:28.9217618Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/869183bd-893a-46f9-bb02-45e48b13f1be","type":"Microsoft.Authorization/roleAssignments","name":"869183bd-893a-46f9-bb02-45e48b13f1be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T22:32:46.2324804Z","updatedOn":"2023-02-21T22:32:46.2324804Z","createdBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","updatedBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/df7c1e07-5c2d-4b22-b7b9-fd11a8569db3","type":"Microsoft.Authorization/roleAssignments","name":"df7c1e07-5c2d-4b22-b7b9-fd11a8569db3"}]}' + string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:58.6582166Z","updatedOn":"2020-08-21T16:23:58.6582166Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ab72fbd-e5fe-4a7d-ae20-baad615d688d","type":"Microsoft.Authorization/roleAssignments","name":"8ab72fbd-e5fe-4a7d-ae20-baad615d688d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:59.5326945Z","updatedOn":"2020-08-21T16:23:59.5326945Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4ed77f1d-82a2-4a02-b48e-fa5776870280","type":"Microsoft.Authorization/roleAssignments","name":"4ed77f1d-82a2-4a02-b48e-fa5776870280"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-02T01:52:45.8299382Z","updatedOn":"2020-09-02T01:52:45.8299382Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3e21284b-6bd7-431a-81ae-ccaf56267ab5","type":"Microsoft.Authorization/roleAssignments","name":"3e21284b-6bd7-431a-81ae-ccaf56267ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-07T09:44:47.3865537Z","updatedOn":"2020-09-07T09:44:47.3865537Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79357f85-973d-4621-b1bd-d1ecb645e146","type":"Microsoft.Authorization/roleAssignments","name":"79357f85-973d-4621-b1bd-d1ecb645e146"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-24T00:04:10.5243862Z","updatedOn":"2020-09-24T00:04:10.5243862Z","createdBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","updatedBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78586b2c-fdf9-11ea-9e5e-8851fb3f4911","type":"Microsoft.Authorization/roleAssignments","name":"78586b2c-fdf9-11ea-9e5e-8851fb3f4911"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-29T10:55:39.3762731Z","updatedOn":"2020-09-29T10:55:39.3762731Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41e159ac-411a-4eed-b319-5b92571d2950","type":"Microsoft.Authorization/roleAssignments","name":"41e159ac-411a-4eed-b319-5b92571d2950"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-06T00:33:22.8792900Z","updatedOn":"2020-10-06T00:33:22.8792900Z","createdBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","updatedBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24d0c5e6-0763-11eb-82a0-d636039e345c","type":"Microsoft.Authorization/roleAssignments","name":"24d0c5e6-0763-11eb-82a0-d636039e345c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-14T00:29:42.9981174Z","updatedOn":"2020-10-14T00:29:42.9981174Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6af4ef5-80f6-4303-a641-45689a1646dc","type":"Microsoft.Authorization/roleAssignments","name":"c6af4ef5-80f6-4303-a641-45689a1646dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-16T16:42:17.7175670Z","updatedOn":"2020-10-16T16:42:17.7175670Z","createdBy":"d69d1d49-5dc8-4c8e-afb6-325d83ddcee8","updatedBy":"d69d1d49-5dc8-4c8e-afb6-325d83ddcee8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5854c7a2-cf00-46f9-9cc1-d977f34324df","type":"Microsoft.Authorization/roleAssignments","name":"5854c7a2-cf00-46f9-9cc1-d977f34324df"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-02T09:02:29.2637630Z","updatedOn":"2020-11-02T09:02:29.2637630Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ad1faa8-8680-4dec-a768-050e8349af33","type":"Microsoft.Authorization/roleAssignments","name":"0ad1faa8-8680-4dec-a768-050e8349af33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-03T22:00:44.4523883Z","updatedOn":"2020-11-03T22:00:44.4523883Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/908aa5ac-22a2-413a-9333-fcb0a1ba2c59","type":"Microsoft.Authorization/roleAssignments","name":"908aa5ac-22a2-413a-9333-fcb0a1ba2c59"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-09T14:00:59.0347294Z","updatedOn":"2020-11-09T14:00:59.0347294Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9541f93-ea4a-4b1b-98bf-839fecfcaa22","type":"Microsoft.Authorization/roleAssignments","name":"e9541f93-ea4a-4b1b-98bf-839fecfcaa22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-12-18T08:00:24.9874024Z","updatedOn":"2020-12-18T08:00:24.9874024Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7f60817e-27b5-486b-bbdb-b748bcb752d4","type":"Microsoft.Authorization/roleAssignments","name":"7f60817e-27b5-486b-bbdb-b748bcb752d4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-12-30T11:06:51.2887287Z","updatedOn":"2020-12-30T11:06:51.2887287Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1cbe1756-4a8f-11eb-b753-720008210d90","type":"Microsoft.Authorization/roleAssignments","name":"1cbe1756-4a8f-11eb-b753-720008210d90"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-01-13T06:12:19.1847916Z","updatedOn":"2021-01-13T06:12:19.1847916Z","createdBy":"241cd743-2c33-4860-bd3a-1df659c06eef","updatedBy":"241cd743-2c33-4860-bd3a-1df659c06eef","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/498bf4f6-5566-11eb-a35b-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"498bf4f6-5566-11eb-a35b-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-04T06:52:05.2038586Z","updatedOn":"2021-02-04T06:52:05.2038586Z","createdBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","updatedBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdf6a314-3605-4944-96c1-08b7364dba54","type":"Microsoft.Authorization/roleAssignments","name":"fdf6a314-3605-4944-96c1-08b7364dba54"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T00:37:53.4699042Z","updatedOn":"2021-02-17T00:37:53.4699042Z","createdBy":"e5ad6d43-d6ac-4061-84cc-f7cb826200a0","updatedBy":"e5ad6d43-d6ac-4061-84cc-f7cb826200a0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c06abb18-9697-41f9-9410-ff0ee9b13ab9","type":"Microsoft.Authorization/roleAssignments","name":"c06abb18-9697-41f9-9410-ff0ee9b13ab9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T01:26:55.0758483Z","updatedOn":"2021-02-17T01:26:55.0758483Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9812b416-33c9-4b88-bcdb-6b8406dd319f","type":"Microsoft.Authorization/roleAssignments","name":"9812b416-33c9-4b88-bcdb-6b8406dd319f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T01:38:17.8125104Z","updatedOn":"2021-02-17T01:38:17.8125104Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82e0c83f-b7dd-49f6-b501-ff05951db69d","type":"Microsoft.Authorization/roleAssignments","name":"82e0c83f-b7dd-49f6-b501-ff05951db69d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-19T01:25:51.9967288Z","updatedOn":"2021-02-19T01:25:51.9967288Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2e4ab306-7ae7-4867-8e22-90215bdbeb9a","type":"Microsoft.Authorization/roleAssignments","name":"2e4ab306-7ae7-4867-8e22-90215bdbeb9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-01T21:51:55.4255791Z","updatedOn":"2021-03-01T21:51:55.4255791Z","createdBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","updatedBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36175f2d-f556-464e-a509-19cbb3f45909","type":"Microsoft.Authorization/roleAssignments","name":"36175f2d-f556-464e-a509-19cbb3f45909"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-21T03:42:13.8891609Z","updatedOn":"2020-02-21T03:42:13.8891609Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c41b0416-12e4-49bb-9e35-411e4f409102","type":"Microsoft.Authorization/roleAssignments","name":"c41b0416-12e4-49bb-9e35-411e4f409102"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-22T07:53:45.7192431Z","updatedOn":"2020-04-22T07:53:45.7192431Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d01cbd3-f3e3-4712-95c6-cf07a0224887","type":"Microsoft.Authorization/roleAssignments","name":"0d01cbd3-f3e3-4712-95c6-cf07a0224887"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-30T06:27:35.9310363Z","updatedOn":"2020-04-30T06:27:35.9310363Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a1327e4-100e-43ee-b04e-1403969b805b","type":"Microsoft.Authorization/roleAssignments","name":"6a1327e4-100e-43ee-b04e-1403969b805b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-06-13T06:44:49.9960198Z","updatedOn":"2019-06-13T06:44:49.9960198Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33958269-41a0-400a-91a1-6303d954c8f0","type":"Microsoft.Authorization/roleAssignments","name":"33958269-41a0-400a-91a1-6303d954c8f0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-04-16T02:04:22.4782415Z","updatedOn":"2019-04-16T02:04:22.4782415Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bacdb283-653c-47eb-a578-11743d7898f8","type":"Microsoft.Authorization/roleAssignments","name":"bacdb283-653c-47eb-a578-11743d7898f8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-27T09:09:33.7347978Z","updatedOn":"2020-03-27T09:09:33.7347978Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d355b17-e9d6-47b7-9181-b54ad0083793","type":"Microsoft.Authorization/roleAssignments","name":"6d355b17-e9d6-47b7-9181-b54ad0083793"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-19T02:50:30.0038186Z","updatedOn":"2019-03-19T02:50:30.0038186Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26adec15-a0e4-4b2e-a437-9b545b9723fc","type":"Microsoft.Authorization/roleAssignments","name":"26adec15-a0e4-4b2e-a437-9b545b9723fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-04-17T00:50:00.2288905Z","updatedOn":"2019-04-17T00:50:00.2288905Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e873fd7-4bdb-4df5-a510-c15f3ce99cd6","type":"Microsoft.Authorization/roleAssignments","name":"0e873fd7-4bdb-4df5-a510-c15f3ce99cd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-08T07:40:31.7235048Z","updatedOn":"2020-05-08T07:40:31.7235048Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbfa0c0c-2653-4fb8-b9e5-d41bd96053a7","type":"Microsoft.Authorization/roleAssignments","name":"cbfa0c0c-2653-4fb8-b9e5-d41bd96053a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-11-15T22:27:15.6601349Z","updatedOn":"2018-11-15T22:27:15.6601349Z","createdBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","updatedBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/418847ec-df97-4b29-9711-fc833817e5d6","type":"Microsoft.Authorization/roleAssignments","name":"418847ec-df97-4b29-9711-fc833817e5d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-28T14:20:52.7506898Z","updatedOn":"2019-08-28T14:20:52.7506898Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/715fd118-93b8-4b09-822d-48de5afb21e3","type":"Microsoft.Authorization/roleAssignments","name":"715fd118-93b8-4b09-822d-48de5afb21e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-06T05:22:04.7673784Z","updatedOn":"2019-01-06T05:22:04.7673784Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba5c8600-8cc9-4778-9735-c3d57d26e50d","type":"Microsoft.Authorization/roleAssignments","name":"ba5c8600-8cc9-4778-9735-c3d57d26e50d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-02T16:21:28.6789246Z","updatedOn":"2020-06-02T16:21:28.6789246Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd6bf5d5-fc1c-4fcd-81f3-0d11d3ff9f42","type":"Microsoft.Authorization/roleAssignments","name":"bd6bf5d5-fc1c-4fcd-81f3-0d11d3ff9f42"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-20T08:42:00.9560545Z","updatedOn":"2020-04-20T08:42:00.9560545Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7a41b62f-97d4-4f4c-8bfc-4a8dd708e00f","type":"Microsoft.Authorization/roleAssignments","name":"7a41b62f-97d4-4f4c-8bfc-4a8dd708e00f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-23T03:10:28.2381030Z","updatedOn":"2020-04-23T03:10:28.2381030Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f98d1512-e634-4663-a219-24be2e6bfe1c","type":"Microsoft.Authorization/roleAssignments","name":"f98d1512-e634-4663-a219-24be2e6bfe1c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-15T02:06:03.3308352Z","updatedOn":"2020-04-15T02:06:03.3308352Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6142150e-c404-48e6-a731-fffb36357051","type":"Microsoft.Authorization/roleAssignments","name":"6142150e-c404-48e6-a731-fffb36357051"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-11-16T23:46:13.9660279Z","updatedOn":"2018-11-16T23:46:13.9660279Z","createdBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","updatedBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b66b1ea-89dd-4bc6-8d89-96298648eb40","type":"Microsoft.Authorization/roleAssignments","name":"2b66b1ea-89dd-4bc6-8d89-96298648eb40"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-10-27T00:03:26.2878499Z","updatedOn":"2018-10-27T00:03:26.2878499Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea920230-1aba-4f80-9eef-3fed8216f594","type":"Microsoft.Authorization/roleAssignments","name":"ea920230-1aba-4f80-9eef-3fed8216f594"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-03T09:55:40.2829720Z","updatedOn":"2020-04-03T09:55:40.2829720Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9c2a551-11aa-4b0a-8816-f8511cd46a32","type":"Microsoft.Authorization/roleAssignments","name":"c9c2a551-11aa-4b0a-8816-f8511cd46a32"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-26T21:10:42.2124416Z","updatedOn":"2020-03-26T21:10:42.2124416Z","createdBy":"50ee185f-0eb1-4577-ae14-4ecf59cfa8f7","updatedBy":"50ee185f-0eb1-4577-ae14-4ecf59cfa8f7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d394da6c-4def-47de-8689-791727331c5b","type":"Microsoft.Authorization/roleAssignments","name":"d394da6c-4def-47de-8689-791727331c5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-21T07:34:50.7125622Z","updatedOn":"2020-04-21T07:34:50.7125622Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ddeb2255-2bb6-458a-a891-532e96ae5483","type":"Microsoft.Authorization/roleAssignments","name":"ddeb2255-2bb6-458a-a891-532e96ae5483"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-23T04:07:45.3308845Z","updatedOn":"2020-06-23T04:07:45.3308845Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15d1dab1-b507-11ea-819c-a28e10bedef6","type":"Microsoft.Authorization/roleAssignments","name":"15d1dab1-b507-11ea-819c-a28e10bedef6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-13T00:09:08.8179220Z","updatedOn":"2020-05-13T00:09:08.8179220Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/08a578f0-4875-47d0-8775-946b3a0f2b06","type":"Microsoft.Authorization/roleAssignments","name":"08a578f0-4875-47d0-8775-946b3a0f2b06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-10T23:15:46.8549700Z","updatedOn":"2020-05-10T23:15:46.8549700Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/22d3da65-7681-445e-9080-e748e494676f","type":"Microsoft.Authorization/roleAssignments","name":"22d3da65-7681-445e-9080-e748e494676f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-29T13:30:14.1177711Z","updatedOn":"2019-08-29T13:30:14.1177711Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a2c1014-c1ba-4ae9-a632-90967c28429d","type":"Microsoft.Authorization/roleAssignments","name":"4a2c1014-c1ba-4ae9-a632-90967c28429d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-27T01:26:21.7189691Z","updatedOn":"2020-02-27T01:26:21.7189691Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28808064-5900-11ea-81c8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"28808064-5900-11ea-81c8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-07-03T01:05:25.8863198Z","updatedOn":"2020-07-03T01:05:25.8863198Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46877403-bcc9-11ea-924f-00155d871f03","type":"Microsoft.Authorization/roleAssignments","name":"46877403-bcc9-11ea-924f-00155d871f03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-28T19:57:23.3708745Z","updatedOn":"2019-03-28T19:57:23.3708745Z","createdBy":"66cb050e-bae1-4005-8c4c-0f6dd9b34978","updatedBy":"66cb050e-bae1-4005-8c4c-0f6dd9b34978","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc796cab-2f6b-4099-b9a3-7500f5516153","type":"Microsoft.Authorization/roleAssignments","name":"cc796cab-2f6b-4099-b9a3-7500f5516153"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-30T22:56:44.9793119Z","updatedOn":"2020-03-30T22:56:44.9793119Z","createdBy":"53bb8815-874d-4b05-9953-1158e05aa080","updatedBy":"53bb8815-874d-4b05-9953-1158e05aa080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/000ea275-41c4-40ce-943f-98a8849a56bc","type":"Microsoft.Authorization/roleAssignments","name":"000ea275-41c4-40ce-943f-98a8849a56bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-10T01:13:53.0806696Z","updatedOn":"2020-06-10T01:13:53.0806696Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a584fad9-aab7-11ea-b7e7-00155d4b0124","type":"Microsoft.Authorization/roleAssignments","name":"a584fad9-aab7-11ea-b7e7-00155d4b0124"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-12T00:23:23.9037436Z","updatedOn":"2020-05-12T00:23:23.9037436Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ff95229-981f-40d7-889f-97bc90b8f387","type":"Microsoft.Authorization/roleAssignments","name":"6ff95229-981f-40d7-889f-97bc90b8f387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-09T00:52:52.1315983Z","updatedOn":"2020-06-09T00:52:52.1315983Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7512dec1-86e5-400d-8bc9-f24f181127f3","type":"Microsoft.Authorization/roleAssignments","name":"7512dec1-86e5-400d-8bc9-f24f181127f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-14T04:03:23.9185561Z","updatedOn":"2020-04-14T04:03:23.9185561Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f0f495d-0356-4239-b966-3f47f5f1054a","type":"Microsoft.Authorization/roleAssignments","name":"0f0f495d-0356-4239-b966-3f47f5f1054a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-14T00:42:59.8868253Z","updatedOn":"2020-05-14T00:42:59.8868253Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b3c8d44-237c-410c-a095-52ded7f5cd26","type":"Microsoft.Authorization/roleAssignments","name":"6b3c8d44-237c-410c-a095-52ded7f5cd26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-11T13:26:01.9493491Z","updatedOn":"2020-02-11T13:26:01.9493491Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8fab1ba3-53c2-4b21-9d32-dc89fd061811","type":"Microsoft.Authorization/roleAssignments","name":"8fab1ba3-53c2-4b21-9d32-dc89fd061811"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-03T05:34:39.2163770Z","updatedOn":"2020-04-03T05:34:39.2163770Z","createdBy":"ed4707f4-8b58-42fe-9afd-0045d7a9b262","updatedBy":"ed4707f4-8b58-42fe-9afd-0045d7a9b262","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e4edc2a-dd1f-469b-9a44-f0693866b843","type":"Microsoft.Authorization/roleAssignments","name":"8e4edc2a-dd1f-469b-9a44-f0693866b843"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-20T19:40:09.1141460Z","updatedOn":"2020-02-20T19:40:09.1141460Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4673bf4-97da-4102-9284-2a7315b88a34","type":"Microsoft.Authorization/roleAssignments","name":"d4673bf4-97da-4102-9284-2a7315b88a34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-21T07:19:44.2488168Z","updatedOn":"2020-04-21T07:19:44.2488168Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fadbe071-d757-48fc-b82a-4784249ded10","type":"Microsoft.Authorization/roleAssignments","name":"fadbe071-d757-48fc-b82a-4784249ded10"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-12T17:29:23.0437979Z","updatedOn":"2019-03-12T17:29:23.0437979Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7e76154-c2a7-4419-b73f-e8c6010318c9","type":"Microsoft.Authorization/roleAssignments","name":"a7e76154-c2a7-4419-b73f-e8c6010318c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-16T23:29:48.3209681Z","updatedOn":"2020-03-16T23:29:48.3209681Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3eb4155b-2965-456b-8f00-bca8a13b1684","type":"Microsoft.Authorization/roleAssignments","name":"3eb4155b-2965-456b-8f00-bca8a13b1684"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:49:54.3783181Z","updatedOn":"2022-01-05T01:49:54.3783181Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/25b4b181-6b51-4bce-beb0-1310829e6de3","type":"Microsoft.Authorization/roleAssignments","name":"25b4b181-6b51-4bce-beb0-1310829e6de3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:50:16.7495633Z","updatedOn":"2022-01-05T01:50:16.7495633Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/093e4a08-9393-4b9d-b3a0-011d77557170","type":"Microsoft.Authorization/roleAssignments","name":"093e4a08-9393-4b9d-b3a0-011d77557170"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:50:40.1521378Z","updatedOn":"2022-01-05T01:50:40.1521378Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e5090ae4-6b40-4bab-9d46-482593ec6229","type":"Microsoft.Authorization/roleAssignments","name":"e5090ae4-6b40-4bab-9d46-482593ec6229"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:52:32.8811339Z","updatedOn":"2022-01-05T01:52:32.8811339Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/923a1dab-e203-422e-bb91-c492a895438e","type":"Microsoft.Authorization/roleAssignments","name":"923a1dab-e203-422e-bb91-c492a895438e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T03:31:42.0793122Z","updatedOn":"2022-01-05T03:31:42.0793122Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6cb2e77-1041-4f33-b449-27f9e8738933","type":"Microsoft.Authorization/roleAssignments","name":"d6cb2e77-1041-4f33-b449-27f9e8738933"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T20:29:36.5271689Z","updatedOn":"2022-01-05T20:29:36.5271689Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3267f83c-6e66-11ec-ae40-aa665a565aa7","type":"Microsoft.Authorization/roleAssignments","name":"3267f83c-6e66-11ec-ae40-aa665a565aa7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-08T01:44:09.0575891Z","updatedOn":"2022-01-08T01:44:09.0575891Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/772c985f-7024-11ec-ab61-00224859aac4","type":"Microsoft.Authorization/roleAssignments","name":"772c985f-7024-11ec-ab61-00224859aac4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-10T07:51:08.0345330Z","updatedOn":"2022-01-10T07:51:08.0345330Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/11391e93-71ea-11ec-97af-0022485937da","type":"Microsoft.Authorization/roleAssignments","name":"11391e93-71ea-11ec-97af-0022485937da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-10T19:52:35.8785494Z","updatedOn":"2022-01-10T19:52:35.8785494Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e403838c-88cd-4fc0-b3e8-45c39ad905c1","type":"Microsoft.Authorization/roleAssignments","name":"e403838c-88cd-4fc0-b3e8-45c39ad905c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-17T09:00:11.8306086Z","updatedOn":"2022-01-17T09:00:11.8306086Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2159ffa-089e-4729-a990-364e13db2a65","type":"Microsoft.Authorization/roleAssignments","name":"b2159ffa-089e-4729-a990-364e13db2a65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-18T13:28:29.0699621Z","updatedOn":"2022-01-18T13:28:29.0699621Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81905706-3ec4-4c25-9c82-d4640a0479c3","type":"Microsoft.Authorization/roleAssignments","name":"81905706-3ec4-4c25-9c82-d4640a0479c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-18T20:11:29.5693659Z","updatedOn":"2022-01-18T20:11:29.5693659Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00f40078-a8bd-4bae-9278-ef9de2d5f632","type":"Microsoft.Authorization/roleAssignments","name":"00f40078-a8bd-4bae-9278-ef9de2d5f632"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-19T08:18:43.7411382Z","updatedOn":"2022-01-19T08:18:43.7411382Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82d96cd7-1671-46d7-afc8-9e3d4c56170d","type":"Microsoft.Authorization/roleAssignments","name":"82d96cd7-1671-46d7-afc8-9e3d4c56170d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-19T18:26:48.3434705Z","updatedOn":"2022-01-19T18:26:48.3434705Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0614428a-cde1-4e89-8202-6cb5cd85e6d8","type":"Microsoft.Authorization/roleAssignments","name":"0614428a-cde1-4e89-8202-6cb5cd85e6d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-20T07:46:22.7990066Z","updatedOn":"2022-01-20T07:46:22.7990066Z","createdBy":"0d969ded-9dc4-4176-8b0f-5194740910bf","updatedBy":"0d969ded-9dc4-4176-8b0f-5194740910bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1134cc98-79c5-11ec-9058-ced79d6624f9","type":"Microsoft.Authorization/roleAssignments","name":"1134cc98-79c5-11ec-9058-ced79d6624f9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-21T02:59:53.1540625Z","updatedOn":"2022-01-21T02:59:53.1540625Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2b558e6-2979-4a34-ba92-81e51afae60d","type":"Microsoft.Authorization/roleAssignments","name":"e2b558e6-2979-4a34-ba92-81e51afae60d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-21T03:51:31.7700381Z","updatedOn":"2022-01-21T03:51:31.7700381Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/774b38ec-8425-4659-9c1c-3662aa0d128a","type":"Microsoft.Authorization/roleAssignments","name":"774b38ec-8425-4659-9c1c-3662aa0d128a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-24T08:18:11.4759466Z","updatedOn":"2022-01-24T08:18:11.4759466Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a6b5b99-dbf6-4270-8c73-cc3e5808e147","type":"Microsoft.Authorization/roleAssignments","name":"9a6b5b99-dbf6-4270-8c73-cc3e5808e147"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-24T08:32:50.8732169Z","updatedOn":"2022-01-24T08:32:50.8732169Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/11d67934-0c51-4dad-8284-f6aced7c815c","type":"Microsoft.Authorization/roleAssignments","name":"11d67934-0c51-4dad-8284-f6aced7c815c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T07:03:14.4901261Z","updatedOn":"2022-01-25T07:03:14.4901261Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dcacb94f-7dac-11ec-be41-c6ce4e0f899a","type":"Microsoft.Authorization/roleAssignments","name":"dcacb94f-7dac-11ec-be41-c6ce4e0f899a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T20:35:15.6769413Z","updatedOn":"2022-01-25T20:35:15.6769413Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9e8bf969-d76d-4923-84d9-d9f98b267d71","type":"Microsoft.Authorization/roleAssignments","name":"9e8bf969-d76d-4923-84d9-d9f98b267d71"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-26T15:50:53.7946290Z","updatedOn":"2022-01-26T15:50:53.7946290Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bdcc5219-7ebf-11ec-bada-00224878d5c3","type":"Microsoft.Authorization/roleAssignments","name":"bdcc5219-7ebf-11ec-bada-00224878d5c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T02:28:59.3221529Z","updatedOn":"2022-01-27T02:28:59.3221529Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28cd45d5-8a0f-4b35-8ee3-f82463ccdf3a","type":"Microsoft.Authorization/roleAssignments","name":"28cd45d5-8a0f-4b35-8ee3-f82463ccdf3a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T02:38:11.8679643Z","updatedOn":"2022-01-27T02:38:11.8679643Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3364749d-7f1a-11ec-9b35-e6e10709004e","type":"Microsoft.Authorization/roleAssignments","name":"3364749d-7f1a-11ec-9b35-e6e10709004e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T03:21:28.9388159Z","updatedOn":"2022-01-27T03:21:28.9388159Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5706d36-4da0-4a7e-abdb-20e8ce5c709d","type":"Microsoft.Authorization/roleAssignments","name":"f5706d36-4da0-4a7e-abdb-20e8ce5c709d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T22:45:56.1614375Z","updatedOn":"2022-01-27T22:45:56.1614375Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8757d35e-c05f-4b14-9b69-94880cf3c630","type":"Microsoft.Authorization/roleAssignments","name":"8757d35e-c05f-4b14-9b69-94880cf3c630"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-31T20:16:07.1248292Z","updatedOn":"2022-01-31T20:16:07.1248292Z","createdBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","updatedBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f16a76e-82d2-11ec-b26c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"9f16a76e-82d2-11ec-b26c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-31T23:19:58.8275488Z","updatedOn":"2022-01-31T23:19:58.8275488Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2192301f-06dd-491e-8e34-93a3cf5c0197","type":"Microsoft.Authorization/roleAssignments","name":"2192301f-06dd-491e-8e34-93a3cf5c0197"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-01T22:56:44.2373253Z","updatedOn":"2022-02-01T22:56:44.2373253Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/395d775a-83b2-11ec-8917-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"395d775a-83b2-11ec-8917-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-01T23:17:51.6753012Z","updatedOn":"2022-02-01T23:17:51.6753012Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb3685a8-f064-431a-8ab6-21f276ae0e4d","type":"Microsoft.Authorization/roleAssignments","name":"fb3685a8-f064-431a-8ab6-21f276ae0e4d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-03T23:18:19.3769285Z","updatedOn":"2022-02-03T23:18:19.3769285Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ff008d0-8547-11ec-87de-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"8ff008d0-8547-11ec-87de-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-05T12:04:01.3658712Z","updatedOn":"2022-02-05T12:04:01.3658712Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3fb26d3-867b-11ec-8bb2-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"b3fb26d3-867b-11ec-8bb2-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-07T19:33:07.4702067Z","updatedOn":"2022-02-07T19:33:07.4702067Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c80d3f4a-065e-4e11-b0a1-9a04f4384563","type":"Microsoft.Authorization/roleAssignments","name":"c80d3f4a-065e-4e11-b0a1-9a04f4384563"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-07T20:03:20.2169334Z","updatedOn":"2022-02-07T20:03:20.2169334Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd6cdc49-8850-11ec-b237-027f0b78f6ab","type":"Microsoft.Authorization/roleAssignments","name":"fd6cdc49-8850-11ec-b237-027f0b78f6ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-08T08:00:07.9076727Z","updatedOn":"2022-02-08T08:00:07.9076727Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cdb4bce2-b187-4057-9fa4-ead6eeb4b442","type":"Microsoft.Authorization/roleAssignments","name":"cdb4bce2-b187-4057-9fa4-ead6eeb4b442"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-08T13:12:19.0792698Z","updatedOn":"2022-02-08T13:12:19.0792698Z","createdBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","updatedBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bccb433c-88e0-11ec-9c26-2e7a733c8e34","type":"Microsoft.Authorization/roleAssignments","name":"bccb433c-88e0-11ec-9c26-2e7a733c8e34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-08T16:00:23.2107710Z","updatedOn":"2022-02-08T16:00:23.2107710Z","createdBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","updatedBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/376f32c6-88f8-11ec-b700-2e7a733c8e34","type":"Microsoft.Authorization/roleAssignments","name":"376f32c6-88f8-11ec-b700-2e7a733c8e34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T08:35:07.6001520Z","updatedOn":"2022-02-11T08:35:07.6001520Z","createdBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","updatedBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8422aed5-8b15-11ec-8a3f-6045bd7c1155","type":"Microsoft.Authorization/roleAssignments","name":"8422aed5-8b15-11ec-8a3f-6045bd7c1155"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T20:16:24.1407485Z","updatedOn":"2022-02-11T20:16:24.1407485Z","createdBy":"c518df35-7e98-4c84-9222-b902d191061e","updatedBy":"c518df35-7e98-4c84-9222-b902d191061e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88cc3504-a850-43bb-a42e-326e300ac247","type":"Microsoft.Authorization/roleAssignments","name":"88cc3504-a850-43bb-a42e-326e300ac247"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T20:17:44.8524024Z","updatedOn":"2022-02-11T20:17:44.8524024Z","createdBy":"c518df35-7e98-4c84-9222-b902d191061e","updatedBy":"c518df35-7e98-4c84-9222-b902d191061e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/270f86d3-cdff-4d1c-8dee-20cbe11a28e0","type":"Microsoft.Authorization/roleAssignments","name":"270f86d3-cdff-4d1c-8dee-20cbe11a28e0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T20:17:45.1659184Z","updatedOn":"2022-02-11T20:17:45.1659184Z","createdBy":"c518df35-7e98-4c84-9222-b902d191061e","updatedBy":"c518df35-7e98-4c84-9222-b902d191061e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a536c303-c7bb-4556-b252-b8faa982403e","type":"Microsoft.Authorization/roleAssignments","name":"a536c303-c7bb-4556-b252-b8faa982403e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-13T11:41:48.7463966Z","updatedOn":"2022-02-13T11:41:48.7463966Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed14b636-8cc1-11ec-b294-002248785c41","type":"Microsoft.Authorization/roleAssignments","name":"ed14b636-8cc1-11ec-b294-002248785c41"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.6113342Z","updatedOn":"2022-02-14T09:22:36.6113342Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca42541d-172f-4c3a-8286-8e260e99050e","type":"Microsoft.Authorization/roleAssignments","name":"ca42541d-172f-4c3a-8286-8e260e99050e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.6424591Z","updatedOn":"2022-02-14T09:22:36.6424591Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8bcdc0e8-d9c2-478a-3363-0965130c9559","type":"Microsoft.Authorization/roleAssignments","name":"8bcdc0e8-d9c2-478a-3363-0965130c9559"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.6556489Z","updatedOn":"2022-02-14T09:22:36.6556489Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdb4d934-dee6-4e1d-d817-9670b25e7200","type":"Microsoft.Authorization/roleAssignments","name":"fdb4d934-dee6-4e1d-d817-9670b25e7200"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.7217526Z","updatedOn":"2022-02-14T09:22:36.7217526Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e9e51fa-3ef2-46c7-ae2b-8a418b68637a","type":"Microsoft.Authorization/roleAssignments","name":"4e9e51fa-3ef2-46c7-ae2b-8a418b68637a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T15:34:50.0327527Z","updatedOn":"2022-02-14T15:34:50.0327527Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5579469-8dab-11ec-aa17-000d3a044b73","type":"Microsoft.Authorization/roleAssignments","name":"a5579469-8dab-11ec-aa17-000d3a044b73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T19:37:05.5912525Z","updatedOn":"2022-02-14T19:37:05.5912525Z","createdBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","updatedBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7aa99c5e-8dcd-11ec-931e-3ee49ac9ec9b","type":"Microsoft.Authorization/roleAssignments","name":"7aa99c5e-8dcd-11ec-931e-3ee49ac9ec9b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T23:14:13.9732126Z","updatedOn":"2022-02-14T23:14:13.9732126Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c604be80-2bb9-48b0-a450-3565ed763f26","type":"Microsoft.Authorization/roleAssignments","name":"c604be80-2bb9-48b0-a450-3565ed763f26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-15T08:25:10.2747643Z","updatedOn":"2022-02-15T08:25:10.2747643Z","createdBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","updatedBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9baa19c-8e38-11ec-8406-000d3a0dff4f","type":"Microsoft.Authorization/roleAssignments","name":"c9baa19c-8e38-11ec-8406-000d3a0dff4f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-15T16:27:03.8176136Z","updatedOn":"2022-02-15T16:27:03.8176136Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1efc7bb8-8e7c-11ec-aba3-5e309da6350b","type":"Microsoft.Authorization/roleAssignments","name":"1efc7bb8-8e7c-11ec-aba3-5e309da6350b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-16T01:17:47.1475801Z","updatedOn":"2022-02-16T01:17:47.1475801Z","createdBy":"20d1aaf0-7699-4c7f-8b08-6e5306613d73","updatedBy":"20d1aaf0-7699-4c7f-8b08-6e5306613d73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3fb9602f-8ec6-11ec-9d90-000d3a6d0522","type":"Microsoft.Authorization/roleAssignments","name":"3fb9602f-8ec6-11ec-9d90-000d3a6d0522"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-16T04:06:52.4519397Z","updatedOn":"2022-02-16T04:06:52.4519397Z","createdBy":"f986308d-63d6-4619-a4f5-851a3bf675cb","updatedBy":"f986308d-63d6-4619-a4f5-851a3bf675cb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/de0a2a00-8edd-11ec-89d6-62e3b50ea3e8","type":"Microsoft.Authorization/roleAssignments","name":"de0a2a00-8edd-11ec-89d6-62e3b50ea3e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-17T07:47:28.0184571Z","updatedOn":"2022-02-17T07:47:28.0184571Z","createdBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","updatedBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/034bc00f-181a-4058-a66b-793a86a3f1d9","type":"Microsoft.Authorization/roleAssignments","name":"034bc00f-181a-4058-a66b-793a86a3f1d9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-18T02:41:56.8572427Z","updatedOn":"2022-02-18T02:41:56.8572427Z","createdBy":"8611abc5-1512-49e0-a6d2-0624ffaf5ef3","updatedBy":"8611abc5-1512-49e0-a6d2-0624ffaf5ef3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/563ddb12-9064-11ec-b259-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"563ddb12-9064-11ec-b259-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-18T02:44:45.0089883Z","updatedOn":"2022-02-18T02:44:45.0089883Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba625e10-9064-11ec-a4c4-000d3a6fbef8","type":"Microsoft.Authorization/roleAssignments","name":"ba625e10-9064-11ec-a4c4-000d3a6fbef8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-21T12:55:18.9707919Z","updatedOn":"2022-02-21T12:55:18.9707919Z","createdBy":"74dcd4fc-6c01-4de6-85b9-6cd3d0b977a0","updatedBy":"74dcd4fc-6c01-4de6-85b9-6cd3d0b977a0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84d1b0a8-9315-11ec-a625-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"84d1b0a8-9315-11ec-a625-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-22T12:02:41.9576481Z","updatedOn":"2022-02-22T12:02:41.9576481Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7ff802f-d555-4740-9446-decc876041c2","type":"Microsoft.Authorization/roleAssignments","name":"f7ff802f-d555-4740-9446-decc876041c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-22T17:40:50.0656641Z","updatedOn":"2022-02-22T17:40:50.0656641Z","createdBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","updatedBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9330f714-9406-11ec-839f-e6018ea1a0b8","type":"Microsoft.Authorization/roleAssignments","name":"9330f714-9406-11ec-839f-e6018ea1a0b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-23T14:56:26.1925430Z","updatedOn":"2022-02-23T14:56:26.1925430Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5f94f93-94b8-11ec-a7aa-ce34ee50a641","type":"Microsoft.Authorization/roleAssignments","name":"c5f94f93-94b8-11ec-a7aa-ce34ee50a641"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-23T19:18:46.5080793Z","updatedOn":"2022-02-23T19:18:46.5080793Z","createdBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","updatedBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6bd539ac-94dd-11ec-af01-8c8590c99d20","type":"Microsoft.Authorization/roleAssignments","name":"6bd539ac-94dd-11ec-af01-8c8590c99d20"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-24T18:48:42.1150127Z","updatedOn":"2022-02-24T18:48:42.1150127Z","createdBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","updatedBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/75d2b821-a297-4959-9c53-d5375978304a","type":"Microsoft.Authorization/roleAssignments","name":"75d2b821-a297-4959-9c53-d5375978304a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-25T19:43:06.0365566Z","updatedOn":"2022-02-25T19:43:06.0365566Z","createdBy":"c2191082-b1ca-4fcd-9645-551452f60be4","updatedBy":"c2191082-b1ca-4fcd-9645-551452f60be4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f5fb238-9673-11ec-87ea-2ef8edc450dc","type":"Microsoft.Authorization/roleAssignments","name":"2f5fb238-9673-11ec-87ea-2ef8edc450dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-28T03:13:54.6616360Z","updatedOn":"2022-02-28T03:13:54.6616360Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/073872ac-f374-444a-ae66-fb821b8532a4","type":"Microsoft.Authorization/roleAssignments","name":"073872ac-f374-444a-ae66-fb821b8532a4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-28T16:39:27.8396295Z","updatedOn":"2022-02-28T16:39:27.8396295Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/60241af8-7226-485e-a261-c69b2cf152c4","type":"Microsoft.Authorization/roleAssignments","name":"60241af8-7226-485e-a261-c69b2cf152c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-01T13:58:58.0676838Z","updatedOn":"2022-03-01T13:58:58.0676838Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1e29644f-ada5-4d30-9c40-a406758409f1","type":"Microsoft.Authorization/roleAssignments","name":"1e29644f-ada5-4d30-9c40-a406758409f1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-03T10:22:00.9954003Z","updatedOn":"2022-03-03T10:22:00.9954003Z","createdBy":"08de6591-dec9-4255-ab17-d6919151fadd","updatedBy":"08de6591-dec9-4255-ab17-d6919151fadd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c30b494c-9adb-11ec-ae58-4a123144b5f6","type":"Microsoft.Authorization/roleAssignments","name":"c30b494c-9adb-11ec-ae58-4a123144b5f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-03T15:10:52.8750196Z","updatedOn":"2022-03-03T15:10:52.8750196Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1d1f5e12-9b04-11ec-bf9f-000d3ac561f6","type":"Microsoft.Authorization/roleAssignments","name":"1d1f5e12-9b04-11ec-bf9f-000d3ac561f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T03:22:58.4512023Z","updatedOn":"2022-03-07T03:22:58.4512023Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e234c5f8-9dc5-11ec-993d-0022485937da","type":"Microsoft.Authorization/roleAssignments","name":"e234c5f8-9dc5-11ec-993d-0022485937da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T11:02:56.8448863Z","updatedOn":"2022-03-07T11:02:56.8448863Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/258a4631-9e06-11ec-9362-98e7f4beee90","type":"Microsoft.Authorization/roleAssignments","name":"258a4631-9e06-11ec-9362-98e7f4beee90"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T22:29:31.2927512Z","updatedOn":"2022-03-07T22:29:31.2927512Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef654596-33a1-443e-8a7d-48c0aa96bfcb","type":"Microsoft.Authorization/roleAssignments","name":"ef654596-33a1-443e-8a7d-48c0aa96bfcb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T23:16:52.1440710Z","updatedOn":"2022-03-07T23:16:52.1440710Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3aea3844-0bdd-4673-9a4e-444433ce4230","type":"Microsoft.Authorization/roleAssignments","name":"3aea3844-0bdd-4673-9a4e-444433ce4230"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:15:35.5981652Z","updatedOn":"2022-03-08T00:15:35.5981652Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":"wenxuan-azure-cli"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be01fdd4-3bdf-4a61-8884-59ffb6e82843","type":"Microsoft.Authorization/roleAssignments","name":"be01fdd4-3bdf-4a61-8884-59ffb6e82843"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:22:25.1920031Z","updatedOn":"2022-03-08T00:22:25.1920031Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1433f18e-b3fc-4984-bd98-c93d9244fb18","type":"Microsoft.Authorization/roleAssignments","name":"1433f18e-b3fc-4984-bd98-c93d9244fb18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T18:56:05.1276019Z","updatedOn":"2022-03-08T18:56:05.1276019Z","createdBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","updatedBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67554406-9f11-11ec-b5da-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"67554406-9f11-11ec-b5da-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-09T00:02:42.6050341Z","updatedOn":"2022-03-09T00:02:42.6050341Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/398c74fc-afb6-47dd-bf7a-efcff5dc1b86","type":"Microsoft.Authorization/roleAssignments","name":"398c74fc-afb6-47dd-bf7a-efcff5dc1b86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-05T14:05:58.2716050Z","updatedOn":"2021-04-05T14:05:58.2716050Z","createdBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","updatedBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a9b0e6a-9618-11eb-879a-88e9fe77e044","type":"Microsoft.Authorization/roleAssignments","name":"0a9b0e6a-9618-11eb-879a-88e9fe77e044"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-05T17:37:43.7040494Z","updatedOn":"2021-04-05T17:37:43.7040494Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a04b0948-9635-11eb-b395-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"a04b0948-9635-11eb-b395-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T02:24:39.3826587Z","updatedOn":"2021-04-06T02:24:39.3826587Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c21611b-a840-4166-b9f4-8cec90c17841","type":"Microsoft.Authorization/roleAssignments","name":"6c21611b-a840-4166-b9f4-8cec90c17841"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T02:24:39.4154930Z","updatedOn":"2021-04-06T02:24:39.4154930Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/925d4876-8fde-4334-8f84-4ce52ca7108e","type":"Microsoft.Authorization/roleAssignments","name":"925d4876-8fde-4334-8f84-4ce52ca7108e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T04:46:32.1029699Z","updatedOn":"2021-04-06T04:46:32.1029699Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0dfdb837-9693-11eb-b629-b6178ece78ec","type":"Microsoft.Authorization/roleAssignments","name":"0dfdb837-9693-11eb-b629-b6178ece78ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T11:25:43.5702772Z","updatedOn":"2021-04-06T11:25:43.5702772Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/958a1320-4346-46fb-9722-828af239eb03","type":"Microsoft.Authorization/roleAssignments","name":"958a1320-4346-46fb-9722-828af239eb03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T20:54:21.5921112Z","updatedOn":"2021-04-06T20:54:21.5921112Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42ad5638-971a-11eb-abf6-00155d3a4c00","type":"Microsoft.Authorization/roleAssignments","name":"42ad5638-971a-11eb-abf6-00155d3a4c00"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T23:22:50.4425724Z","updatedOn":"2021-04-06T23:22:50.4425724Z","createdBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","updatedBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00a90f2a-972f-11eb-9121-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"00a90f2a-972f-11eb-9121-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T00:26:49.7250016Z","updatedOn":"2021-04-07T00:26:49.7250016Z","createdBy":"88f18750-8181-4579-8eff-eb44f510655c","updatedBy":"88f18750-8181-4579-8eff-eb44f510655c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dca2df37-fdd1-49dc-a1de-31a70d62e098","type":"Microsoft.Authorization/roleAssignments","name":"dca2df37-fdd1-49dc-a1de-31a70d62e098"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T09:10:47.4905668Z","updatedOn":"2021-04-07T09:10:47.4905668Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a5dbdef-0896-48cd-a325-318e807ea133","type":"Microsoft.Authorization/roleAssignments","name":"8a5dbdef-0896-48cd-a325-318e807ea133"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T19:55:01.1984055Z","updatedOn":"2021-04-07T19:55:01.1984055Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2301d942-97db-11eb-8bf8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2301d942-97db-11eb-8bf8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T22:36:06.7954601Z","updatedOn":"2021-04-07T22:36:06.7954601Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6070c7de-7571-4d55-8b2f-85285b7d9675","type":"Microsoft.Authorization/roleAssignments","name":"6070c7de-7571-4d55-8b2f-85285b7d9675"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-13T03:07:16.5183912Z","updatedOn":"2021-04-13T03:07:16.5183912Z","createdBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","updatedBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59402850-9c05-11eb-8744-20c9d0477c8f","type":"Microsoft.Authorization/roleAssignments","name":"59402850-9c05-11eb-8744-20c9d0477c8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-14T19:16:13.6465266Z","updatedOn":"2021-04-14T19:16:13.6465266Z","createdBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","updatedBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e04efa46-9d55-11eb-9723-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e04efa46-9d55-11eb-9723-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-15T02:29:06.6768532Z","updatedOn":"2021-04-15T02:29:06.6768532Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/19165f29-858f-47fa-befe-cd1babe9df75","type":"Microsoft.Authorization/roleAssignments","name":"19165f29-858f-47fa-befe-cd1babe9df75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-19T08:59:20.4071341Z","updatedOn":"2021-04-19T08:59:20.4071341Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88489205-a0ed-11eb-996c-1a21256cebfc","type":"Microsoft.Authorization/roleAssignments","name":"88489205-a0ed-11eb-996c-1a21256cebfc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-19T22:35:57.5324093Z","updatedOn":"2021-04-19T22:35:57.5324093Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b85c442-a15f-11eb-8a7c-00155d871f03","type":"Microsoft.Authorization/roleAssignments","name":"9b85c442-a15f-11eb-8a7c-00155d871f03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-21T12:31:21.7286225Z","updatedOn":"2021-04-21T12:31:21.7286225Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7770db7c-a29d-11eb-b48f-42472d33150a","type":"Microsoft.Authorization/roleAssignments","name":"7770db7c-a29d-11eb-b48f-42472d33150a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-11T02:49:35.7701861Z","updatedOn":"2021-05-11T02:49:35.7701861Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83c25ed3-b203-11eb-8150-56db513b8477","type":"Microsoft.Authorization/roleAssignments","name":"83c25ed3-b203-11eb-8150-56db513b8477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-12T06:15:49.6202169Z","updatedOn":"2021-05-12T06:15:49.6202169Z","createdBy":"069015af-8ac7-4304-a60f-69a8a50309be","updatedBy":"069015af-8ac7-4304-a60f-69a8a50309be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ecced22-b2e9-11eb-bdc4-da23ac480b85","type":"Microsoft.Authorization/roleAssignments","name":"7ecced22-b2e9-11eb-bdc4-da23ac480b85"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-18T02:08:43.3533001Z","updatedOn":"2021-05-18T02:08:43.3533001Z","createdBy":"069015af-8ac7-4304-a60f-69a8a50309be","updatedBy":"069015af-8ac7-4304-a60f-69a8a50309be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8582f67-b77d-11eb-bffb-52ac6a27ca65","type":"Microsoft.Authorization/roleAssignments","name":"f8582f67-b77d-11eb-bffb-52ac6a27ca65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-24T05:29:46.7966317Z","updatedOn":"2021-05-24T05:29:46.7966317Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d7389dd2-ee8e-4d34-8703-b304716b1761","type":"Microsoft.Authorization/roleAssignments","name":"d7389dd2-ee8e-4d34-8703-b304716b1761"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-01T09:38:20.8655603Z","updatedOn":"2021-06-01T09:38:20.8655603Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18455841-c2bd-11eb-80b3-9a0a2a9b0ea3","type":"Microsoft.Authorization/roleAssignments","name":"18455841-c2bd-11eb-80b3-9a0a2a9b0ea3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-03T16:55:35.8333154Z","updatedOn":"2021-06-03T16:55:35.8333154Z","createdBy":"ae4622a7-bde9-4bca-9599-2d18571bfeba","updatedBy":"ae4622a7-bde9-4bca-9599-2d18571bfeba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83e4c5e8-c48c-11eb-b991-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"83e4c5e8-c48c-11eb-b991-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-07T22:29:50.4448757Z","updatedOn":"2021-06-07T22:29:50.4448757Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/decef2d4-c7df-11eb-a83e-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"decef2d4-c7df-11eb-a83e-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-08T21:20:41.4426747Z","updatedOn":"2021-06-08T21:20:41.4426747Z","createdBy":"39fc5957-4b28-4245-a1ca-0c05574dd32b","updatedBy":"39fc5957-4b28-4245-a1ca-0c05574dd32b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/607bf63e-c89f-11eb-8348-eecc6a504bf0","type":"Microsoft.Authorization/roleAssignments","name":"607bf63e-c89f-11eb-8348-eecc6a504bf0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T14:35:18.7357331Z","updatedOn":"2021-06-15T14:35:18.7357331Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1151242-c950-413d-a273-4109579eac8a","type":"Microsoft.Authorization/roleAssignments","name":"b1151242-c950-413d-a273-4109579eac8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T14:35:18.7937546Z","updatedOn":"2021-06-15T14:35:18.7937546Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dc21aa69-a99c-435e-a256-64885b24ec34","type":"Microsoft.Authorization/roleAssignments","name":"dc21aa69-a99c-435e-a256-64885b24ec34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T15:23:52.9337722Z","updatedOn":"2021-06-15T15:23:52.9337722Z","createdBy":"1faabf99-27a1-4d2e-9e28-295923ee7a14","updatedBy":"1faabf99-27a1-4d2e-9e28-295923ee7a14","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1f9ad80-cded-11eb-81da-86d728f15930","type":"Microsoft.Authorization/roleAssignments","name":"b1f9ad80-cded-11eb-81da-86d728f15930"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-24T01:15:20.6480687Z","updatedOn":"2021-06-24T01:15:20.6480687Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3fe463a-d489-11eb-bcf6-88e9fe77d9d9","type":"Microsoft.Authorization/roleAssignments","name":"a3fe463a-d489-11eb-bcf6-88e9fe77d9d9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T00:02:18.3011415Z","updatedOn":"2021-06-29T00:02:18.3011415Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ba1c6ba-8f43-4749-9af5-b852adc24ec4","type":"Microsoft.Authorization/roleAssignments","name":"6ba1c6ba-8f43-4749-9af5-b852adc24ec4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T00:02:18.3104039Z","updatedOn":"2021-06-29T00:02:18.3104039Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1b67008-79aa-4059-a618-9f31a59e17ad","type":"Microsoft.Authorization/roleAssignments","name":"f1b67008-79aa-4059-a618-9f31a59e17ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T03:26:28.3273724Z","updatedOn":"2021-06-29T03:26:28.3273724Z","createdBy":"5dc8b685-8bb3-4140-b266-34da5be22de8","updatedBy":"5dc8b685-8bb3-4140-b266-34da5be22de8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cacd20e2-d889-11eb-8faf-365b90995dcc","type":"Microsoft.Authorization/roleAssignments","name":"cacd20e2-d889-11eb-8faf-365b90995dcc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T16:47:51.6512150Z","updatedOn":"2021-07-02T16:47:51.6512150Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ce776fa-db55-11eb-9c3e-0ee0ced9a7ad","type":"Microsoft.Authorization/roleAssignments","name":"3ce776fa-db55-11eb-9c3e-0ee0ced9a7ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T18:02:58.7913777Z","updatedOn":"2021-07-02T18:02:58.7913777Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb92467e-db5f-11eb-93bb-52bfc6c4d939","type":"Microsoft.Authorization/roleAssignments","name":"bb92467e-db5f-11eb-93bb-52bfc6c4d939"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T18:34:50.6034803Z","updatedOn":"2021-07-02T18:34:50.6034803Z","createdBy":"88f18750-8181-4579-8eff-eb44f510655c","updatedBy":"88f18750-8181-4579-8eff-eb44f510655c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e537d7a-5a2e-419c-8c51-0f55adab0793","type":"Microsoft.Authorization/roleAssignments","name":"4e537d7a-5a2e-419c-8c51-0f55adab0793"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-12T18:22:41.0622548Z","updatedOn":"2021-07-12T18:22:41.0622548Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a840989-f344-4bca-97c4-0f91fa1537c6","type":"Microsoft.Authorization/roleAssignments","name":"0a840989-f344-4bca-97c4-0f91fa1537c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-14T19:03:30.7799600Z","updatedOn":"2021-07-14T19:03:30.7799600Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d4385bd-e4d6-11eb-9e75-0a4737195831","type":"Microsoft.Authorization/roleAssignments","name":"2d4385bd-e4d6-11eb-9e75-0a4737195831"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-26T03:44:43.4505353Z","updatedOn":"2021-07-26T03:44:43.4505353Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79b52c96-edc4-11eb-8bd7-1e3bd0e19ace","type":"Microsoft.Authorization/roleAssignments","name":"79b52c96-edc4-11eb-8bd7-1e3bd0e19ace"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-28T21:04:39.7105526Z","updatedOn":"2021-07-28T21:04:39.7105526Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b9c8936-efe7-11eb-9484-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6b9c8936-efe7-11eb-9484-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-04T02:14:38.2049441Z","updatedOn":"2021-08-04T02:14:38.2049441Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b8013ec0-f4c9-11eb-999a-000d3a4fc0a9","type":"Microsoft.Authorization/roleAssignments","name":"b8013ec0-f4c9-11eb-999a-000d3a4fc0a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e3c35f4c-e0ca-4b9e-a01e-5ebdd17e2ee7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-04T18:45:22.7030533Z","updatedOn":"2021-08-04T18:45:22.7030533Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b007f9b6-e259-4c24-b8f1-4b74e434b776","type":"Microsoft.Authorization/roleAssignments","name":"b007f9b6-e259-4c24-b8f1-4b74e434b776"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-10T18:57:36.3877809Z","updatedOn":"2021-08-10T18:57:36.3877809Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d31d5edd-fa0c-11eb-a4e8-00155d4b0124","type":"Microsoft.Authorization/roleAssignments","name":"d31d5edd-fa0c-11eb-a4e8-00155d4b0124"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-11T13:17:28.5790828Z","updatedOn":"2021-08-11T13:17:28.5790828Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79c9ac4e-faa6-11eb-9265-9e748a6ca3f5","type":"Microsoft.Authorization/roleAssignments","name":"79c9ac4e-faa6-11eb-9265-9e748a6ca3f5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T20:40:36.9427810Z","updatedOn":"2021-08-24T20:40:36.9427810Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89077b4a-051b-11ec-b690-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"89077b4a-051b-11ec-b690-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-25T04:55:32.8103400Z","updatedOn":"2021-08-25T04:55:32.8103400Z","createdBy":"d8f2c3f8-41bf-41ae-aedb-23c9387322a8","updatedBy":"d8f2c3f8-41bf-41ae-aedb-23c9387322a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad278da4-0560-11ec-bfcc-00249b623abd","type":"Microsoft.Authorization/roleAssignments","name":"ad278da4-0560-11ec-bfcc-00249b623abd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-31T23:45:51.8536519Z","updatedOn":"2021-08-31T23:45:51.8536519Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92d8ca73-0ab5-11ec-9a80-00224809727f","type":"Microsoft.Authorization/roleAssignments","name":"92d8ca73-0ab5-11ec-9a80-00224809727f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-13T19:32:31.3713301Z","updatedOn":"2021-09-13T19:32:31.3713301Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/55fb0a56-14c9-11ec-ba1a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"55fb0a56-14c9-11ec-ba1a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-17T20:45:08.1118919Z","updatedOn":"2021-09-17T20:45:08.1118919Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/246a4240-17f8-11ec-a87c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"246a4240-17f8-11ec-a87c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T13:55:46.1211332Z","updatedOn":"2021-09-20T13:55:46.1211332Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/738cb0ee-1a1a-11ec-bce5-7a98cea1d963","type":"Microsoft.Authorization/roleAssignments","name":"738cb0ee-1a1a-11ec-bce5-7a98cea1d963"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T16:02:49.0433199Z","updatedOn":"2021-09-20T16:02:49.0433199Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/332824b6-1a2c-11ec-94e6-dadb5e134e96","type":"Microsoft.Authorization/roleAssignments","name":"332824b6-1a2c-11ec-94e6-dadb5e134e96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T18:45:44.1610490Z","updatedOn":"2021-09-20T18:45:44.1610490Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5aacbbc-1a42-11ec-82e7-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f5aacbbc-1a42-11ec-82e7-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-23T14:26:16.9983531Z","updatedOn":"2021-09-23T14:26:16.9983531Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35e02c16-1c7a-11ec-aba5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"35e02c16-1c7a-11ec-aba5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-29T01:26:50.3419658Z","updatedOn":"2021-09-29T01:26:50.3419658Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47eee8e3-89cd-4112-86a8-19f848334dd1","type":"Microsoft.Authorization/roleAssignments","name":"47eee8e3-89cd-4112-86a8-19f848334dd1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-04T20:39:52.4258668Z","updatedOn":"2021-10-04T20:39:52.4258668Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/395b589c-2553-11ec-8d77-000d3af95835","type":"Microsoft.Authorization/roleAssignments","name":"395b589c-2553-11ec-8d77-000d3af95835"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-07T22:03:00.0914961Z","updatedOn":"2021-10-07T22:03:00.0914961Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/554cbdbb-27ba-11ec-9441-ba8d312253c4","type":"Microsoft.Authorization/roleAssignments","name":"554cbdbb-27ba-11ec-9441-ba8d312253c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-07T22:03:56.3285135Z","updatedOn":"2021-10-07T22:03:56.3285135Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/76aa862c-27ba-11ec-a4ef-ba8d312253c4","type":"Microsoft.Authorization/roleAssignments","name":"76aa862c-27ba-11ec-a4ef-ba8d312253c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T18:53:10.3503826Z","updatedOn":"2021-10-08T18:53:10.3503826Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d9510e6f-d37b-4ce8-8a3b-78e5447b11c4","type":"Microsoft.Authorization/roleAssignments","name":"d9510e6f-d37b-4ce8-8a3b-78e5447b11c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T18:59:59.4287762Z","updatedOn":"2021-10-08T18:59:59.4287762Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d1a6d17-6c0a-4105-b86a-dcc55fe735e7","type":"Microsoft.Authorization/roleAssignments","name":"3d1a6d17-6c0a-4105-b86a-dcc55fe735e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-11T22:29:20.4165411Z","updatedOn":"2021-10-11T22:29:20.4165411Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5b65050-4b50-4b02-bea3-5986eccdd944","type":"Microsoft.Authorization/roleAssignments","name":"b5b65050-4b50-4b02-bea3-5986eccdd944"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-12T21:09:25.3258237Z","updatedOn":"2021-10-12T21:09:25.3258237Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/869d24c2-b6b1-4a26-9b9c-c50ecb64bc31","type":"Microsoft.Authorization/roleAssignments","name":"869d24c2-b6b1-4a26-9b9c-c50ecb64bc31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-13T08:19:03.1448099Z","updatedOn":"2021-10-13T08:19:03.1448099Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8869be9-f94e-47ae-90cb-c4d9bcb5b629","type":"Microsoft.Authorization/roleAssignments","name":"f8869be9-f94e-47ae-90cb-c4d9bcb5b629"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T04:53:25.9502873Z","updatedOn":"2021-10-14T04:53:36.3280652Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f622c27f-a03d-4fb8-b17d-7281dc0a984f","type":"Microsoft.Authorization/roleAssignments","name":"f622c27f-a03d-4fb8-b17d-7281dc0a984f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:26:21.6452814Z","updatedOn":"2021-10-14T05:26:21.6452814Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/439e7a28-2caf-11ec-ae23-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"439e7a28-2caf-11ec-ae23-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:54.7980840Z","updatedOn":"2021-10-14T05:37:54.7980840Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e049894b-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e049894b-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:56.1220463Z","updatedOn":"2021-10-14T05:37:56.1220463Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e1920687-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e1920687-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:58.2164501Z","updatedOn":"2021-10-14T05:37:58.2164501Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2809f7d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e2809f7d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:00.1774570Z","updatedOn":"2021-10-14T05:38:00.1774570Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3b78568-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e3b78568-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:01.6914375Z","updatedOn":"2021-10-14T05:38:01.6914375Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4e3f0fc-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e4e3f0fc-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:03.1856045Z","updatedOn":"2021-10-14T05:38:03.1856045Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e5c7c168-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e5c7c168-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:04.4121266Z","updatedOn":"2021-10-14T05:38:04.4121266Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e6847f02-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e6847f02-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:05.9623251Z","updatedOn":"2021-10-14T05:38:05.9623251Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7681b77-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e7681b77-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:07.5974823Z","updatedOn":"2021-10-14T05:38:07.5974823Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e82df158-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e82df158-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:09.3591403Z","updatedOn":"2021-10-14T05:38:09.3591403Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e94e3dd9-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e94e3dd9-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:11.1652349Z","updatedOn":"2021-10-14T05:38:11.1652349Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea5dbe0d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"ea5dbe0d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:12.6474393Z","updatedOn":"2021-10-14T05:38:12.6474393Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb6e896d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"eb6e896d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:15.1702403Z","updatedOn":"2021-10-14T05:38:15.1702403Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eceee9a0-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"eceee9a0-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T06:22:44.8991960Z","updatedOn":"2021-10-14T06:22:44.8991960Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2447d2a2-2cb7-11ec-91be-00224878e942","type":"Microsoft.Authorization/roleAssignments","name":"2447d2a2-2cb7-11ec-91be-00224878e942"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T06:22:46.4374928Z","updatedOn":"2021-10-14T06:22:46.4374928Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/251fc151-2cb7-11ec-91be-00224878e942","type":"Microsoft.Authorization/roleAssignments","name":"251fc151-2cb7-11ec-91be-00224878e942"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:33:15.8218562Z","updatedOn":"2021-10-14T07:33:15.8218562Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe04afe4-2cc0-11ec-81ff-0022487b1e92","type":"Microsoft.Authorization/roleAssignments","name":"fe04afe4-2cc0-11ec-81ff-0022487b1e92"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:18.3020716Z","updatedOn":"2021-10-14T07:59:18.3020716Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a1518374-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a1518374-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:20.8876342Z","updatedOn":"2021-10-14T07:59:20.8876342Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a311df17-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a311df17-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:22.4477860Z","updatedOn":"2021-10-14T07:59:22.4477860Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3c5b71e-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a3c5b71e-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:23.1051657Z","updatedOn":"2021-10-14T08:07:23.1051657Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c227b3cc-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c227b3cc-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:23.5151178Z","updatedOn":"2021-10-14T08:07:23.5151178Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c29ac901-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c29ac901-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:25.7287942Z","updatedOn":"2021-10-14T08:07:25.7287942Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c40b5411-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c40b5411-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:27.2660976Z","updatedOn":"2021-10-14T08:07:27.2660976Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4cb6a30-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c4cb6a30-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:08:16.5190337Z","updatedOn":"2021-10-14T08:08:16.5190337Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e226a828-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"e226a828-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:08:17.7439429Z","updatedOn":"2021-10-14T08:08:17.7439429Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2e43f64-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"e2e43f64-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T09:12:04.1832243Z","updatedOn":"2021-10-14T09:12:04.1832243Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5c9e442c-9d64-4022-9246-0c1c21af04be","type":"Microsoft.Authorization/roleAssignments","name":"5c9e442c-9d64-4022-9246-0c1c21af04be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T17:07:28.8635845Z","updatedOn":"2021-10-14T17:07:28.8635845Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed48d615-e7d8-4aef-90c7-332d7329e41c","type":"Microsoft.Authorization/roleAssignments","name":"ed48d615-e7d8-4aef-90c7-332d7329e41c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T18:16:37.9837987Z","updatedOn":"2021-10-14T18:16:37.9837987Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/debb0903-2d1a-11ec-a603-000d3a06aaec","type":"Microsoft.Authorization/roleAssignments","name":"debb0903-2d1a-11ec-a603-000d3a06aaec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T18:39:15.5366398Z","updatedOn":"2021-10-14T18:39:15.5366398Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07caa301-2d1e-11ec-a2ea-0022487748c3","type":"Microsoft.Authorization/roleAssignments","name":"07caa301-2d1e-11ec-a2ea-0022487748c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-15T17:37:53.7293023Z","updatedOn":"2021-10-15T17:37:53.7293023Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fbd09f2-2dde-11ec-b3e4-000d3a064a8a","type":"Microsoft.Authorization/roleAssignments","name":"9fbd09f2-2dde-11ec-b3e4-000d3a064a8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-18T06:22:38.4617338Z","updatedOn":"2021-10-18T06:22:38.4617338Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70844448-8be3-4c6f-9edf-443944f85a5a","type":"Microsoft.Authorization/roleAssignments","name":"70844448-8be3-4c6f-9edf-443944f85a5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-19T11:29:40.0474212Z","updatedOn":"2021-10-19T11:29:40.0474212Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d86e727f-30cf-11ec-bc8b-000d3ac2ec2b","type":"Microsoft.Authorization/roleAssignments","name":"d86e727f-30cf-11ec-bc8b-000d3ac2ec2b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-20T20:57:56.8996523Z","updatedOn":"2021-10-20T20:57:56.8996523Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66303328-31e8-11ec-99f4-000d3ac5c858","type":"Microsoft.Authorization/roleAssignments","name":"66303328-31e8-11ec-99f4-000d3ac5c858"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-21T15:12:00.0677049Z","updatedOn":"2021-10-21T15:12:00.0677049Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b630a77a-9e75-417f-b251-1584163d8926","type":"Microsoft.Authorization/roleAssignments","name":"b630a77a-9e75-417f-b251-1584163d8926"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-25T21:32:26.0121360Z","updatedOn":"2021-10-25T21:32:26.0121360Z","createdBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","updatedBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b15fba8-35db-11ec-b404-8c8590c603ee","type":"Microsoft.Authorization/roleAssignments","name":"0b15fba8-35db-11ec-b404-8c8590c603ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T07:30:52.4116907Z","updatedOn":"2021-10-26T07:30:52.4116907Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e78ac58b-8cfe-4ff6-9ac6-41453615c7e8","type":"Microsoft.Authorization/roleAssignments","name":"e78ac58b-8cfe-4ff6-9ac6-41453615c7e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T13:47:01.3444676Z","updatedOn":"2021-10-26T13:47:01.3444676Z","createdBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","updatedBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4933f1cd-0863-4429-a5be-3a81b2f80105","type":"Microsoft.Authorization/roleAssignments","name":"4933f1cd-0863-4429-a5be-3a81b2f80105"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T20:43:39.1375235Z","updatedOn":"2021-10-26T20:43:39.1375235Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad8f56c5-19b6-4e9f-b20f-8e3789a93873","type":"Microsoft.Authorization/roleAssignments","name":"ad8f56c5-19b6-4e9f-b20f-8e3789a93873"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-27T01:02:05.1338691Z","updatedOn":"2021-10-27T01:02:05.1338691Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a83de9c2-2bd5-4ba1-bc50-08d475a290a0","type":"Microsoft.Authorization/roleAssignments","name":"a83de9c2-2bd5-4ba1-bc50-08d475a290a0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-28T00:14:34.9745357Z","updatedOn":"2021-10-28T00:14:34.9745357Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3366cd2-4d12-4dbb-b05d-5e914628e986","type":"Microsoft.Authorization/roleAssignments","name":"e3366cd2-4d12-4dbb-b05d-5e914628e986"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-02T23:39:52.9481031Z","updatedOn":"2021-11-02T23:39:52.9481031Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0e37c03-a8a7-4765-af41-9a8584ad6413","type":"Microsoft.Authorization/roleAssignments","name":"b0e37c03-a8a7-4765-af41-9a8584ad6413"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c7393b34-138c-406f-901b-d8cf2b17e6ae","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T15:46:17.8935538Z","updatedOn":"2021-11-03T15:46:17.8935538Z","createdBy":"","updatedBy":"","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5b0e8d6-e30f-42a5-918c-01299416da2c","type":"Microsoft.Authorization/roleAssignments","name":"b5b0e8d6-e30f-42a5-918c-01299416da2c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T21:43:39.4750265Z","updatedOn":"2021-11-03T21:43:39.4750265Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/683b4375-f318-428e-a885-232a29ec8559","type":"Microsoft.Authorization/roleAssignments","name":"683b4375-f318-428e-a885-232a29ec8559"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T21:56:29.9810805Z","updatedOn":"2021-11-03T21:56:29.9810805Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e560c31c-8c6e-4bf0-9828-b2db658455b7","type":"Microsoft.Authorization/roleAssignments","name":"e560c31c-8c6e-4bf0-9828-b2db658455b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T06:06:21.8922666Z","updatedOn":"2021-11-04T06:06:21.8922666Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e1dcc78b-03c3-4db3-95a8-643dbcbbf2a3","type":"Microsoft.Authorization/roleAssignments","name":"e1dcc78b-03c3-4db3-95a8-643dbcbbf2a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T17:22:28.0293110Z","updatedOn":"2021-11-04T17:22:28.0293110Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84a6167f-c7d5-4404-b786-85fe4327c0ba","type":"Microsoft.Authorization/roleAssignments","name":"84a6167f-c7d5-4404-b786-85fe4327c0ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T17:24:51.0627597Z","updatedOn":"2021-11-04T17:24:51.0627597Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ff23217-f8a8-4e77-baee-41850cfb5554","type":"Microsoft.Authorization/roleAssignments","name":"8ff23217-f8a8-4e77-baee-41850cfb5554"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T05:21:11.0446928Z","updatedOn":"2021-11-16T05:21:11.0446928Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d01bef88-e1fa-4fc2-bd98-6845063b53b9","type":"Microsoft.Authorization/roleAssignments","name":"d01bef88-e1fa-4fc2-bd98-6845063b53b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T05:22:06.5362889Z","updatedOn":"2021-11-16T05:22:06.5362889Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/784d9b03-5635-4c89-ae5b-5c11ceff8a4c","type":"Microsoft.Authorization/roleAssignments","name":"784d9b03-5635-4c89-ae5b-5c11ceff8a4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T21:47:20.3762106Z","updatedOn":"2021-11-16T21:47:20.3762106Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/19b8a839-de9e-4712-a227-686679e98414","type":"Microsoft.Authorization/roleAssignments","name":"19b8a839-de9e-4712-a227-686679e98414"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T05:28:26.3873952Z","updatedOn":"2021-11-17T05:28:26.3873952Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a6cb292-435b-45d4-9f44-2dedb6f80804","type":"Microsoft.Authorization/roleAssignments","name":"4a6cb292-435b-45d4-9f44-2dedb6f80804"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T08:37:53.6375476Z","updatedOn":"2021-11-17T08:37:53.6375476Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7314a76-4781-11ec-9554-2eaf851e2751","type":"Microsoft.Authorization/roleAssignments","name":"a7314a76-4781-11ec-9554-2eaf851e2751"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T20:29:38.7986222Z","updatedOn":"2021-11-17T20:29:38.7986222Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41224d04-5912-49e9-98f2-df2d0c5768ed","type":"Microsoft.Authorization/roleAssignments","name":"41224d04-5912-49e9-98f2-df2d0c5768ed"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-23T02:37:39.0525328Z","updatedOn":"2021-11-23T02:37:39.0525328Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2917b10b-1776-4726-9e2a-1406d35584aa","type":"Microsoft.Authorization/roleAssignments","name":"2917b10b-1776-4726-9e2a-1406d35584aa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-24T04:19:48.8430130Z","updatedOn":"2021-11-24T04:19:48.8430130Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4738453f-e889-4428-817e-a18655a6df71","type":"Microsoft.Authorization/roleAssignments","name":"4738453f-e889-4428-817e-a18655a6df71"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-29T22:16:27.4091202Z","updatedOn":"2021-11-29T22:16:27.4091202Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dfaf3275-7f8c-449f-875f-d74ca2998764","type":"Microsoft.Authorization/roleAssignments","name":"dfaf3275-7f8c-449f-875f-d74ca2998764"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T06:59:34.7676928Z","updatedOn":"2021-11-30T06:59:34.7676928Z","createdBy":"471feb6d-5a83-439e-af7b-311f4eee2d0c","updatedBy":"471feb6d-5a83-439e-af7b-311f4eee2d0c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5848b58-7658-45ae-b979-fb230968ddf7","type":"Microsoft.Authorization/roleAssignments","name":"d5848b58-7658-45ae-b979-fb230968ddf7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T20:03:43.2359682Z","updatedOn":"2021-11-30T20:03:43.2359682Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3be3018e-84c0-48a4-bb36-fa997df4a911","type":"Microsoft.Authorization/roleAssignments","name":"3be3018e-84c0-48a4-bb36-fa997df4a911"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T22:23:07.4635927Z","updatedOn":"2021-11-30T22:23:07.4635927Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc52b5ce-1a69-4afd-aaab-745522d55219","type":"Microsoft.Authorization/roleAssignments","name":"fc52b5ce-1a69-4afd-aaab-745522d55219"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T02:05:06.3947111Z","updatedOn":"2021-12-01T02:05:06.3947111Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bfd977a2-74fb-4e8f-88a6-72b675ad0813","type":"Microsoft.Authorization/roleAssignments","name":"bfd977a2-74fb-4e8f-88a6-72b675ad0813"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T23:14:48.6056041Z","updatedOn":"2021-12-01T23:14:48.6056041Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2c2675a2-a48c-492f-a4d5-835ffdf8e57e","type":"Microsoft.Authorization/roleAssignments","name":"2c2675a2-a48c-492f-a4d5-835ffdf8e57e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T23:44:16.3921051Z","updatedOn":"2021-12-01T23:44:16.3921051Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc791163-7d7a-4988-96f8-969053cb4d75","type":"Microsoft.Authorization/roleAssignments","name":"bc791163-7d7a-4988-96f8-969053cb4d75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T07:40:53.7263371Z","updatedOn":"2021-12-02T07:40:53.7263371Z","createdBy":"027bf6cf-7fd4-4a57-80d7-4e52bd1fea5b","updatedBy":"027bf6cf-7fd4-4a57-80d7-4e52bd1fea5b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c592d108-71a6-4fbd-89f7-06c1656d0c93","type":"Microsoft.Authorization/roleAssignments","name":"c592d108-71a6-4fbd-89f7-06c1656d0c93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:36.8568746Z","updatedOn":"2021-12-02T08:41:36.8568746Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a8b008b0-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a8b008b0-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:38.4974834Z","updatedOn":"2021-12-02T08:41:38.4974834Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9ad9deb-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a9ad9deb-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:38.6316008Z","updatedOn":"2021-12-02T08:41:38.6316008Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9aa81cd-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a9aa81cd-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:38.6311993Z","updatedOn":"2021-12-02T08:41:38.6311993Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9c0a1a6-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a9c0a1a6-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T21:35:31.3727027Z","updatedOn":"2021-12-02T21:35:31.3727027Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/663204fa-95cb-45a0-938f-d817824509dd","type":"Microsoft.Authorization/roleAssignments","name":"663204fa-95cb-45a0-938f-d817824509dd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T22:09:46.1565055Z","updatedOn":"2021-12-02T22:09:46.1565055Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e97a88c4-e035-453b-b767-a3dbfadfd28d","type":"Microsoft.Authorization/roleAssignments","name":"e97a88c4-e035-453b-b767-a3dbfadfd28d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T23:10:20.2170014Z","updatedOn":"2021-12-02T23:10:20.2170014Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/afd2116e-f2ce-4bc2-8924-fb6f0c620d64","type":"Microsoft.Authorization/roleAssignments","name":"afd2116e-f2ce-4bc2-8924-fb6f0c620d64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-03T00:07:35.7286641Z","updatedOn":"2021-12-03T00:07:35.7286641Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/56d1c441-73b9-4b86-acc9-260016c81330","type":"Microsoft.Authorization/roleAssignments","name":"56d1c441-73b9-4b86-acc9-260016c81330"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-03T18:42:59.5078987Z","updatedOn":"2021-12-03T18:42:59.5078987Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b083534f-ae88-4db8-b65f-150284339772","type":"Microsoft.Authorization/roleAssignments","name":"b083534f-ae88-4db8-b65f-150284339772"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-03T21:00:00.5789423Z","updatedOn":"2021-12-03T21:00:00.5789423Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8684384c-7276-4e65-b708-6766a7c3a876","type":"Microsoft.Authorization/roleAssignments","name":"8684384c-7276-4e65-b708-6766a7c3a876"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-04T00:50:10.8909441Z","updatedOn":"2021-12-04T00:50:10.8909441Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cb7855e-82da-4910-b4ce-5f38896c067a","type":"Microsoft.Authorization/roleAssignments","name":"3cb7855e-82da-4910-b4ce-5f38896c067a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-07T12:35:57.6917673Z","updatedOn":"2021-12-07T12:35:57.6917673Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39e64286-575a-11ec-95aa-002248232e56","type":"Microsoft.Authorization/roleAssignments","name":"39e64286-575a-11ec-95aa-002248232e56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-07T23:18:12.3548251Z","updatedOn":"2021-12-07T23:18:12.3548251Z","createdBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","updatedBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f2265a95-57b3-11ec-a8e6-de1bbdf97372","type":"Microsoft.Authorization/roleAssignments","name":"f2265a95-57b3-11ec-a8e6-de1bbdf97372"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-08T03:01:28.5641674Z","updatedOn":"2021-12-08T03:01:28.5641674Z","createdBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","updatedBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2232ec95-57d3-11ec-bbe2-de1bbdf97372","type":"Microsoft.Authorization/roleAssignments","name":"2232ec95-57d3-11ec-bbe2-de1bbdf97372"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-08T03:07:36.8342803Z","updatedOn":"2021-12-08T03:07:36.8342803Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f1920cc-5cca-44c7-8175-d46948a9283f","type":"Microsoft.Authorization/roleAssignments","name":"9f1920cc-5cca-44c7-8175-d46948a9283f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-08T13:07:30.9635867Z","updatedOn":"2021-12-08T13:07:30.9635867Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc6359bd-5827-11ec-a516-000d3afc9734","type":"Microsoft.Authorization/roleAssignments","name":"cc6359bd-5827-11ec-a516-000d3afc9734"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-09T17:37:01.4296706Z","updatedOn":"2021-12-09T17:37:01.4296706Z","createdBy":"ae195f21-9b44-473d-9920-601e7899b56d","updatedBy":"ae195f21-9b44-473d-9920-601e7899b56d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9be22fd0-5916-11ec-b5a3-469e91f29611","type":"Microsoft.Authorization/roleAssignments","name":"9be22fd0-5916-11ec-b5a3-469e91f29611"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-10T14:31:24.3746709Z","updatedOn":"2021-12-10T14:31:24.3746709Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d9b6ef44-59c5-11ec-800e-0022487c3cbe","type":"Microsoft.Authorization/roleAssignments","name":"d9b6ef44-59c5-11ec-800e-0022487c3cbe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-13T07:46:54.6104588Z","updatedOn":"2021-12-13T07:46:54.6104588Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c65fe6b5-5be8-11ec-b892-000d3a518d38","type":"Microsoft.Authorization/roleAssignments","name":"c65fe6b5-5be8-11ec-b892-000d3a518d38"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-17T03:03:12.7081063Z","updatedOn":"2021-12-17T03:03:12.7081063Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/deb2cb98-5ee5-11ec-bd7f-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"deb2cb98-5ee5-11ec-bd7f-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-18T06:04:20.9532091Z","updatedOn":"2021-12-18T06:04:20.9532091Z","createdBy":"19263705-0667-497e-85e7-a930fa3441ec","updatedBy":"19263705-0667-497e-85e7-a930fa3441ec","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6eb35762-bc37-4c24-aec0-389e7cb97f95","type":"Microsoft.Authorization/roleAssignments","name":"6eb35762-bc37-4c24-aec0-389e7cb97f95"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-22T09:15:23.9226458Z","updatedOn":"2021-12-22T09:15:23.9226458Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7a9e1ec4-8728-4723-9fca-709f8549e3ac","type":"Microsoft.Authorization/roleAssignments","name":"7a9e1ec4-8728-4723-9fca-709f8549e3ac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-22T19:37:32.9555793Z","updatedOn":"2021-12-22T19:37:32.9555793Z","createdBy":"121978e2-c5f7-437f-b950-07f832f9f06c","updatedBy":"121978e2-c5f7-437f-b950-07f832f9f06c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a77cfdf9-fd0d-43f5-ba0d-0d36c8c1818e","type":"Microsoft.Authorization/roleAssignments","name":"a77cfdf9-fd0d-43f5-ba0d-0d36c8c1818e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-28T17:11:37.6373944Z","updatedOn":"2022-09-28T17:11:37.6373944Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b564621-3f50-11ed-918f-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"9b564621-3f50-11ed-918f-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-28T17:11:52.2247561Z","updatedOn":"2022-09-28T17:11:52.2247561Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3d8aeee-3f50-11ed-918f-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"a3d8aeee-3f50-11ed-918f-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-28T18:45:35.3728959Z","updatedOn":"2022-09-28T18:45:35.3728959Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5bb18d5f-3c20-4899-a01f-58313b28c345","type":"Microsoft.Authorization/roleAssignments","name":"5bb18d5f-3c20-4899-a01f-58313b28c345"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-30T18:34:26.1480517Z","updatedOn":"2022-09-30T18:34:26.1480517Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/828f43f9-40ee-11ed-9683-0022482b84fb","type":"Microsoft.Authorization/roleAssignments","name":"828f43f9-40ee-11ed-9683-0022482b84fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-30T18:34:28.0235766Z","updatedOn":"2022-09-30T18:34:28.0235766Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83a3304a-40ee-11ed-9683-0022482b84fb","type":"Microsoft.Authorization/roleAssignments","name":"83a3304a-40ee-11ed-9683-0022482b84fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T14:35:19.0321994Z","updatedOn":"2022-10-03T14:35:19.0321994Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99965ae6-4328-11ed-939f-aae2aa7b83bb","type":"Microsoft.Authorization/roleAssignments","name":"99965ae6-4328-11ed-939f-aae2aa7b83bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T14:35:23.0970392Z","updatedOn":"2022-10-03T14:35:23.0970392Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9c1721f9-4328-11ed-939f-aae2aa7b83bb","type":"Microsoft.Authorization/roleAssignments","name":"9c1721f9-4328-11ed-939f-aae2aa7b83bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T18:39:25.8455066Z","updatedOn":"2022-10-03T18:39:25.8455066Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":"adding + my aksdev SPs per https://dev.azure.com/msazure/CloudNativeCompute/_wiki/wikis/CloudNativeCompute.wiki/54089/Standalone-Environment-Usage?anchor=authentication-failed-issues"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b4fc89b2-a0bc-4661-a4f4-96170e3da3c3","type":"Microsoft.Authorization/roleAssignments","name":"b4fc89b2-a0bc-4661-a4f4-96170e3da3c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T21:14:21.6709207Z","updatedOn":"2022-10-03T21:14:21.6709207Z","createdBy":"2182129f-e575-4986-a7fb-2be7772ba46f","updatedBy":"2182129f-e575-4986-a7fb-2be7772ba46f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/58ef0b60-4360-11ed-84ae-4ef510510e8a","type":"Microsoft.Authorization/roleAssignments","name":"58ef0b60-4360-11ed-84ae-4ef510510e8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T21:14:25.9942421Z","updatedOn":"2022-10-03T21:14:25.9942421Z","createdBy":"2182129f-e575-4986-a7fb-2be7772ba46f","updatedBy":"2182129f-e575-4986-a7fb-2be7772ba46f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5b271148-4360-11ed-84ae-4ef510510e8a","type":"Microsoft.Authorization/roleAssignments","name":"5b271148-4360-11ed-84ae-4ef510510e8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T08:46:58.1120536Z","updatedOn":"2022-10-04T08:46:58.1120536Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46d7c91e-4182-4715-9d5c-c143514d0e96","type":"Microsoft.Authorization/roleAssignments","name":"46d7c91e-4182-4715-9d5c-c143514d0e96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T08:46:58.7908585Z","updatedOn":"2022-10-04T08:46:58.7908585Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0215f1ea-81dc-42cd-b2b0-62ed51ec1e8f","type":"Microsoft.Authorization/roleAssignments","name":"0215f1ea-81dc-42cd-b2b0-62ed51ec1e8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T15:17:47.0575990Z","updatedOn":"2022-10-04T15:17:47.0575990Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09dff59a-a350-4eb7-b515-b439773bf953","type":"Microsoft.Authorization/roleAssignments","name":"09dff59a-a350-4eb7-b515-b439773bf953"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T20:25:24.7922965Z","updatedOn":"2022-10-04T20:25:24.7922965Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac245566-4422-11ed-b4e4-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"ac245566-4422-11ed-b4e4-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T20:25:29.7192947Z","updatedOn":"2022-10-04T20:25:29.7192947Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/af78cdbe-4422-11ed-b4e4-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"af78cdbe-4422-11ed-b4e4-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-05T17:17:50.2296097Z","updatedOn":"2022-10-05T17:17:50.2296097Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18d61426-19b2-45ab-a04c-35bf0954b5f2","type":"Microsoft.Authorization/roleAssignments","name":"18d61426-19b2-45ab-a04c-35bf0954b5f2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T21:18:34.5111716Z","updatedOn":"2022-10-06T21:18:34.5111716Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/90e84a6f-382e-4cd0-8b7c-249f30414d26","type":"Microsoft.Authorization/roleAssignments","name":"90e84a6f-382e-4cd0-8b7c-249f30414d26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T21:19:26.0775289Z","updatedOn":"2022-10-06T21:19:26.0775289Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/245ffe6b-708b-41b4-b4a5-0328063f9511","type":"Microsoft.Authorization/roleAssignments","name":"245ffe6b-708b-41b4-b4a5-0328063f9511"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T22:01:04.9042316Z","updatedOn":"2022-10-06T22:01:04.9042316Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/809518d2-215b-449f-9909-1cf5275f82ff","type":"Microsoft.Authorization/roleAssignments","name":"809518d2-215b-449f-9909-1cf5275f82ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T22:01:18.8874783Z","updatedOn":"2022-10-06T22:01:18.8874783Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/50ca23bf-0051-4116-a073-86a9415cc7e4","type":"Microsoft.Authorization/roleAssignments","name":"50ca23bf-0051-4116-a073-86a9415cc7e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T00:36:14.3318961Z","updatedOn":"2022-10-07T00:36:14.3318961Z","createdBy":"b3ae1fad-98a9-46c4-bd0b-193e8efd9450","updatedBy":"b3ae1fad-98a9-46c4-bd0b-193e8efd9450","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ba8ceaf-45d8-11ed-bb9e-0eabbd04010c","type":"Microsoft.Authorization/roleAssignments","name":"0ba8ceaf-45d8-11ed-bb9e-0eabbd04010c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:18.2176259Z","updatedOn":"2022-10-07T16:36:18.2176259Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0eafb5be-ea9a-495c-82c9-8337449b1150","type":"Microsoft.Authorization/roleAssignments","name":"0eafb5be-ea9a-495c-82c9-8337449b1150"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:22.7662640Z","updatedOn":"2022-10-07T16:36:22.7662640Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7cb15a6c-7b73-430f-91aa-02113db930cb","type":"Microsoft.Authorization/roleAssignments","name":"7cb15a6c-7b73-430f-91aa-02113db930cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:29.4358024Z","updatedOn":"2022-10-07T16:36:29.4358024Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1b259a44-7824-434b-8f81-8df465b85fd5","type":"Microsoft.Authorization/roleAssignments","name":"1b259a44-7824-434b-8f81-8df465b85fd5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:33.7158336Z","updatedOn":"2022-10-07T16:36:33.7158336Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3156b3a1-bc03-4d84-b2df-09d0d0eab4b1","type":"Microsoft.Authorization/roleAssignments","name":"3156b3a1-bc03-4d84-b2df-09d0d0eab4b1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:35.7999116Z","updatedOn":"2022-10-07T16:36:35.7999116Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1d30073-ff57-48fa-96e7-dfc85b8c7975","type":"Microsoft.Authorization/roleAssignments","name":"b1d30073-ff57-48fa-96e7-dfc85b8c7975"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-09T05:08:21.9096837Z","updatedOn":"2022-10-09T05:08:21.9096837Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d747b25-fa91-4429-a72b-0a4e2079ed03","type":"Microsoft.Authorization/roleAssignments","name":"8d747b25-fa91-4429-a72b-0a4e2079ed03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-10T05:53:40.9849719Z","updatedOn":"2022-10-10T05:53:40.9849719Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3cfb29d-485f-11ed-b38e-562c47d8c70b","type":"Microsoft.Authorization/roleAssignments","name":"e3cfb29d-485f-11ed-b38e-562c47d8c70b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-10T05:53:46.7676576Z","updatedOn":"2022-10-10T05:53:46.7676576Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e6c4b18f-485f-11ed-b38e-562c47d8c70b","type":"Microsoft.Authorization/roleAssignments","name":"e6c4b18f-485f-11ed-b38e-562c47d8c70b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-10T19:26:54.0213364Z","updatedOn":"2022-10-10T19:26:54.0213364Z","createdBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","updatedBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ed9bd3d-48d1-11ed-8d0c-000d3af6a88e","type":"Microsoft.Authorization/roleAssignments","name":"7ed9bd3d-48d1-11ed-8d0c-000d3af6a88e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T05:01:21.4237199Z","updatedOn":"2022-10-11T05:01:21.4237199Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbc092b8-61c0-429f-bc40-457c06ef2ae3","type":"Microsoft.Authorization/roleAssignments","name":"bbc092b8-61c0-429f-bc40-457c06ef2ae3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T06:32:06.2810453Z","updatedOn":"2022-10-11T06:32:06.2810453Z","createdBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","updatedBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c482116-492e-11ed-b1e5-50814031cc1b","type":"Microsoft.Authorization/roleAssignments","name":"6c482116-492e-11ed-b1e5-50814031cc1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T06:32:11.8691902Z","updatedOn":"2022-10-11T06:32:11.8691902Z","createdBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","updatedBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6f333b0b-492e-11ed-b1e5-50814031cc1b","type":"Microsoft.Authorization/roleAssignments","name":"6f333b0b-492e-11ed-b1e5-50814031cc1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T10:41:27.4966216Z","updatedOn":"2022-10-11T10:41:27.4966216Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4aaba87d-be3b-49d5-90e6-02100140c50d","type":"Microsoft.Authorization/roleAssignments","name":"4aaba87d-be3b-49d5-90e6-02100140c50d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-12T06:14:22.3962768Z","updatedOn":"2022-10-12T06:14:22.3962768Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c7ad8940-3c2c-4a0a-b59a-5c6408cce033","type":"Microsoft.Authorization/roleAssignments","name":"c7ad8940-3c2c-4a0a-b59a-5c6408cce033"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-12T23:06:16.2844894Z","updatedOn":"2022-10-12T23:06:16.2844894Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8434c983-cdd3-40c4-9531-78b5f16fea23","type":"Microsoft.Authorization/roleAssignments","name":"8434c983-cdd3-40c4-9531-78b5f16fea23"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-12T23:06:16.4551494Z","updatedOn":"2022-10-12T23:06:16.4551494Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4281f456-78ed-4ef7-b058-d980c90bf6f9","type":"Microsoft.Authorization/roleAssignments","name":"4281f456-78ed-4ef7-b058-d980c90bf6f9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-18T14:04:58.5223716Z","updatedOn":"2022-10-18T14:04:58.5223716Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9158a450-cec7-48ba-8469-fc085e252e56","type":"Microsoft.Authorization/roleAssignments","name":"9158a450-cec7-48ba-8469-fc085e252e56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-19T17:08:57.8704270Z","updatedOn":"2022-10-19T17:08:57.8704270Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf874421-44f9-4a19-8abd-da0f4f04a24f","type":"Microsoft.Authorization/roleAssignments","name":"bf874421-44f9-4a19-8abd-da0f4f04a24f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-19T23:09:40.3682015Z","updatedOn":"2022-10-19T23:09:40.3682015Z","createdBy":"57440c04-5eed-4c74-92b6-44b016b882f2","updatedBy":"57440c04-5eed-4c74-92b6-44b016b882f2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2bafd93-beec-4d8b-b5f0-9893ef27a090","type":"Microsoft.Authorization/roleAssignments","name":"b2bafd93-beec-4d8b-b5f0-9893ef27a090"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-25T20:45:40.4378406Z","updatedOn":"2022-10-25T20:45:40.4378406Z","createdBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","updatedBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbadcf84-54a5-11ed-b2c3-0e0011011627","type":"Microsoft.Authorization/roleAssignments","name":"fbadcf84-54a5-11ed-b2c3-0e0011011627"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-25T20:45:44.2349413Z","updatedOn":"2022-10-25T20:45:44.2349413Z","createdBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","updatedBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fde7916d-54a5-11ed-b2c3-0e0011011627","type":"Microsoft.Authorization/roleAssignments","name":"fde7916d-54a5-11ed-b2c3-0e0011011627"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T16:44:45.2471286Z","updatedOn":"2022-10-26T16:44:45.2471286Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6649fcf-1731-4db5-8e3b-31af16600402","type":"Microsoft.Authorization/roleAssignments","name":"c6649fcf-1731-4db5-8e3b-31af16600402"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T21:24:42.6980121Z","updatedOn":"2022-10-26T21:24:42.6980121Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b1323cf-e4ec-4454-ac08-5f88d588f133","type":"Microsoft.Authorization/roleAssignments","name":"9b1323cf-e4ec-4454-ac08-5f88d588f133"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T23:12:13.5663015Z","updatedOn":"2022-10-26T23:12:13.5663015Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9db19562-5583-11ed-a49b-aa665a565a49","type":"Microsoft.Authorization/roleAssignments","name":"9db19562-5583-11ed-a49b-aa665a565a49"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-27T20:49:50.5273108Z","updatedOn":"2022-10-27T20:49:50.5273108Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1a0bbbc6-febb-4d40-9e39-5274a2edd538","type":"Microsoft.Authorization/roleAssignments","name":"1a0bbbc6-febb-4d40-9e39-5274a2edd538"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-31T21:38:36.6886945Z","updatedOn":"2022-10-31T21:38:36.6886945Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a85bdf2-6490-4989-9276-f2071fcf02c7","type":"Microsoft.Authorization/roleAssignments","name":"6a85bdf2-6490-4989-9276-f2071fcf02c7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-01T17:32:59.4211774Z","updatedOn":"2022-11-01T17:32:59.4211774Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a3d71f8-5a0b-11ed-ae92-000d3a6dafe7","type":"Microsoft.Authorization/roleAssignments","name":"3a3d71f8-5a0b-11ed-ae92-000d3a6dafe7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-03T20:33:30.2762577Z","updatedOn":"2022-11-03T20:33:30.2762577Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6983693-5bb6-11ed-ae23-72674b3691e8","type":"Microsoft.Authorization/roleAssignments","name":"c6983693-5bb6-11ed-ae23-72674b3691e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-03T20:33:33.9941086Z","updatedOn":"2022-11-03T20:33:33.9941086Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c90a1190-5bb6-11ed-ae23-72674b3691e8","type":"Microsoft.Authorization/roleAssignments","name":"c90a1190-5bb6-11ed-ae23-72674b3691e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-03T22:01:34.3526622Z","updatedOn":"2022-11-03T22:01:34.3526622Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/572d1281-1073-4df2-a41a-6ec6ab01ccf4","type":"Microsoft.Authorization/roleAssignments","name":"572d1281-1073-4df2-a41a-6ec6ab01ccf4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-04T17:44:58.1069368Z","updatedOn":"2022-11-04T17:44:58.1069368Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65ead23f-5c68-11ed-81d0-000d3ac6042c","type":"Microsoft.Authorization/roleAssignments","name":"65ead23f-5c68-11ed-81d0-000d3ac6042c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-04T17:44:58.3889675Z","updatedOn":"2022-11-04T17:44:58.3889675Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65f36b55-5c68-11ed-81d0-000d3ac6042c","type":"Microsoft.Authorization/roleAssignments","name":"65f36b55-5c68-11ed-81d0-000d3ac6042c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-07T21:00:30.9927458Z","updatedOn":"2022-11-07T21:00:30.9927458Z","createdBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","updatedBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3631fc51-5edf-11ed-b8d9-bee096dd1f56","type":"Microsoft.Authorization/roleAssignments","name":"3631fc51-5edf-11ed-b8d9-bee096dd1f56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-07T23:06:40.7350135Z","updatedOn":"2022-11-07T23:06:40.7350135Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82f4d8cb-f92b-4183-8a57-9a266f8ed475","type":"Microsoft.Authorization/roleAssignments","name":"82f4d8cb-f92b-4183-8a57-9a266f8ed475"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T00:45:45.2308519Z","updatedOn":"2022-11-08T00:45:45.2308519Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad83b644-5efe-11ed-9afa-76a84c3a8985","type":"Microsoft.Authorization/roleAssignments","name":"ad83b644-5efe-11ed-9afa-76a84c3a8985"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T00:45:54.5576407Z","updatedOn":"2022-11-08T00:45:54.5576407Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2f5ecd2-5efe-11ed-9afa-76a84c3a8985","type":"Microsoft.Authorization/roleAssignments","name":"b2f5ecd2-5efe-11ed-9afa-76a84c3a8985"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T17:38:14.0062888Z","updatedOn":"2022-11-08T17:38:14.0062888Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5a5cfdf-e8ad-4d53-a1a9-3a7191efa68a","type":"Microsoft.Authorization/roleAssignments","name":"b5a5cfdf-e8ad-4d53-a1a9-3a7191efa68a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T20:41:35.2460898Z","updatedOn":"2022-11-08T20:41:35.2460898Z","createdBy":"77ac7883-1816-45e5-8784-444d95195dfe","updatedBy":"77ac7883-1816-45e5-8784-444d95195dfe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbdb8a06-5fa5-11ed-87b5-52a0a45b7fbb","type":"Microsoft.Authorization/roleAssignments","name":"bbdb8a06-5fa5-11ed-87b5-52a0a45b7fbb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T20:41:39.0095016Z","updatedOn":"2022-11-08T20:41:39.0095016Z","createdBy":"77ac7883-1816-45e5-8784-444d95195dfe","updatedBy":"77ac7883-1816-45e5-8784-444d95195dfe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be17ddaf-5fa5-11ed-87b5-52a0a45b7fbb","type":"Microsoft.Authorization/roleAssignments","name":"be17ddaf-5fa5-11ed-87b5-52a0a45b7fbb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T04:24:29.2903032Z","updatedOn":"2022-11-09T04:24:29.2903032Z","createdBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","updatedBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6672401b-5fe6-11ed-8d26-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"6672401b-5fe6-11ed-8d26-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T04:24:32.7816834Z","updatedOn":"2022-11-09T04:24:32.7816834Z","createdBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","updatedBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/687908be-5fe6-11ed-8d26-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"687908be-5fe6-11ed-8d26-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T06:49:46.3320446Z","updatedOn":"2022-11-09T06:49:46.3320446Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40e96901-a9d4-4fc3-8d80-c55979cad3f4","type":"Microsoft.Authorization/roleAssignments","name":"40e96901-a9d4-4fc3-8d80-c55979cad3f4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T06:57:50.8140024Z","updatedOn":"2022-11-09T06:57:50.8140024Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54117e37-77ed-4fc2-a64e-7f5cfee1e3cb","type":"Microsoft.Authorization/roleAssignments","name":"54117e37-77ed-4fc2-a64e-7f5cfee1e3cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-15T17:00:53.9224351Z","updatedOn":"2022-11-15T17:00:53.9224351Z","createdBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","updatedBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb3fa35d-14c6-476e-965d-3287df835fb6","type":"Microsoft.Authorization/roleAssignments","name":"eb3fa35d-14c6-476e-965d-3287df835fb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-16T17:45:41.6438991Z","updatedOn":"2022-11-16T18:12:21.7351318Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89d1db20-3058-52b8-8e72-ffbee92652bc","type":"Microsoft.Authorization/roleAssignments","name":"89d1db20-3058-52b8-8e72-ffbee92652bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-17T20:00:21.8300657Z","updatedOn":"2022-11-17T20:00:21.8300657Z","createdBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","updatedBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/770d246f-66b2-11ed-9a7a-5eff6da83896","type":"Microsoft.Authorization/roleAssignments","name":"770d246f-66b2-11ed-9a7a-5eff6da83896"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:13:16.4073065Z","updatedOn":"2023-05-12T17:27:11.5958673Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d9c1e76-d133-5014-a053-fa81b5a5ddcc","type":"Microsoft.Authorization/roleAssignments","name":"8d9c1e76-d133-5014-a053-fa81b5a5ddcc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:13:16.3810810Z","updatedOn":"2023-05-12T17:27:11.6002511Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9589fe9-37b5-52e8-b6a1-05baa0e40ea2","type":"Microsoft.Authorization/roleAssignments","name":"b9589fe9-37b5-52e8-b6a1-05baa0e40ea2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:13:16.4335352Z","updatedOn":"2023-05-12T17:27:11.6253602Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df3deb96-df88-5ecf-9db1-b40cda69a5b1","type":"Microsoft.Authorization/roleAssignments","name":"df3deb96-df88-5ecf-9db1-b40cda69a5b1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-29T22:31:21.5082047Z","updatedOn":"2023-05-12T17:27:12.7611677Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe4c31ea-8d12-5bbd-80e8-749dd04c242c","type":"Microsoft.Authorization/roleAssignments","name":"fe4c31ea-8d12-5bbd-80e8-749dd04c242c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-18T19:59:52.7113168Z","updatedOn":"2022-11-18T19:59:52.7113168Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/909e97c0-677b-11ed-b3d1-4e4b7fc6d2d7","type":"Microsoft.Authorization/roleAssignments","name":"909e97c0-677b-11ed-b3d1-4e4b7fc6d2d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-18T19:59:56.7899280Z","updatedOn":"2022-11-18T19:59:56.7899280Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9302a900-677b-11ed-b3d1-4e4b7fc6d2d7","type":"Microsoft.Authorization/roleAssignments","name":"9302a900-677b-11ed-b3d1-4e4b7fc6d2d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-18T22:57:24.7333928Z","updatedOn":"2022-11-18T22:57:24.7333928Z","createdBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","updatedBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/616b0a5c-ef17-4f5c-8f54-932fb42ed1b6","type":"Microsoft.Authorization/roleAssignments","name":"616b0a5c-ef17-4f5c-8f54-932fb42ed1b6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-20T08:02:14.3563436Z","updatedOn":"2022-11-20T08:02:14.3563436Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59455a7f-8688-4fa9-bca1-b14ff86b45d8","type":"Microsoft.Authorization/roleAssignments","name":"59455a7f-8688-4fa9-bca1-b14ff86b45d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-22T12:28:29.6735062Z","updatedOn":"2022-11-22T12:28:29.6735062Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a01068c-6a61-11ed-b280-38f9d359b369","type":"Microsoft.Authorization/roleAssignments","name":"2a01068c-6a61-11ed-b280-38f9d359b369"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-22T12:28:35.6487701Z","updatedOn":"2022-11-22T12:28:35.6487701Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2dec6a7a-6a61-11ed-b280-38f9d359b369","type":"Microsoft.Authorization/roleAssignments","name":"2dec6a7a-6a61-11ed-b280-38f9d359b369"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-23T19:27:15.6029824Z","updatedOn":"2022-11-23T19:27:15.6029824Z","createdBy":"573ee898-c9b5-4556-b5b7-ba398712832e","updatedBy":"573ee898-c9b5-4556-b5b7-ba398712832e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5624ab6-6b64-11ed-99e5-a29c0e078d5a","type":"Microsoft.Authorization/roleAssignments","name":"d5624ab6-6b64-11ed-99e5-a29c0e078d5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-23T19:27:29.8496193Z","updatedOn":"2022-11-23T19:27:29.8496193Z","createdBy":"573ee898-c9b5-4556-b5b7-ba398712832e","updatedBy":"573ee898-c9b5-4556-b5b7-ba398712832e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ddce2c51-6b64-11ed-99e5-a29c0e078d5a","type":"Microsoft.Authorization/roleAssignments","name":"ddce2c51-6b64-11ed-99e5-a29c0e078d5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-24T08:00:52.4569469Z","updatedOn":"2022-11-24T08:00:52.4569469Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ea38765-a469-4975-a3b3-69c47e46e70b","type":"Microsoft.Authorization/roleAssignments","name":"9ea38765-a469-4975-a3b3-69c47e46e70b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-24T08:01:11.1412012Z","updatedOn":"2022-11-24T08:01:11.1412012Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f7e731a-0d5b-4591-a97d-0ee2053825bb","type":"Microsoft.Authorization/roleAssignments","name":"9f7e731a-0d5b-4591-a97d-0ee2053825bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T08:56:33.0370700Z","updatedOn":"2022-11-28T08:56:33.0370700Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4d08049c-272d-4905-a2b6-cd89456c5382","type":"Microsoft.Authorization/roleAssignments","name":"4d08049c-272d-4905-a2b6-cd89456c5382"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T18:00:17.3116606Z","updatedOn":"2022-11-28T18:00:17.3116606Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/839a632b-6f46-11ed-9f3a-002248be91cc","type":"Microsoft.Authorization/roleAssignments","name":"839a632b-6f46-11ed-9f3a-002248be91cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T21:24:30.3728549Z","updatedOn":"2022-11-28T21:24:30.3728549Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ad622e0-6f63-11ed-a15a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"0ad622e0-6f63-11ed-a15a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T21:24:34.5112467Z","updatedOn":"2022-11-28T21:24:34.5112467Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d6f187c-6f63-11ed-a15a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"0d6f187c-6f63-11ed-a15a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-29T19:42:39.8350492Z","updatedOn":"2022-11-29T19:42:39.8350492Z","createdBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","updatedBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb69dd10-701d-11ed-8940-6ca1001ae258","type":"Microsoft.Authorization/roleAssignments","name":"fb69dd10-701d-11ed-8940-6ca1001ae258"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-29T19:42:43.2096038Z","updatedOn":"2022-11-29T19:42:43.2096038Z","createdBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","updatedBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd6fed09-701d-11ed-8940-6ca1001ae258","type":"Microsoft.Authorization/roleAssignments","name":"fd6fed09-701d-11ed-8940-6ca1001ae258"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-30T07:32:24.0648059Z","updatedOn":"2022-11-30T07:32:24.0648059Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d745d98-b683-45b9-92a8-918aacf64633","type":"Microsoft.Authorization/roleAssignments","name":"2d745d98-b683-45b9-92a8-918aacf64633"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-01T22:00:12.5092022Z","updatedOn":"2022-12-01T22:00:12.5092022Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/29f80035-534e-479f-bf9d-3243cd2eba93","type":"Microsoft.Authorization/roleAssignments","name":"29f80035-534e-479f-bf9d-3243cd2eba93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-02T07:52:06.0754526Z","updatedOn":"2022-12-02T07:52:06.0754526Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/17ce4c2c-8051-4420-a6ac-6aeb91441711","type":"Microsoft.Authorization/roleAssignments","name":"17ce4c2c-8051-4420-a6ac-6aeb91441711"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-02T23:54:37.7637423Z","updatedOn":"2022-12-02T23:54:37.7637423Z","createdBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","updatedBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e8902907-9bef-55f7-9a6d-64e3cf3b1a77","type":"Microsoft.Authorization/roleAssignments","name":"e8902907-9bef-55f7-9a6d-64e3cf3b1a77"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-05T17:29:10.2915092Z","updatedOn":"2022-12-05T17:29:10.2915092Z","createdBy":"500b0839-c682-4003-9106-8f37a381595d","updatedBy":"500b0839-c682-4003-9106-8f37a381595d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/53a3b656-74c2-11ed-b2ea-f21d81f4d94b","type":"Microsoft.Authorization/roleAssignments","name":"53a3b656-74c2-11ed-b2ea-f21d81f4d94b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-05T17:29:19.7335221Z","updatedOn":"2022-12-05T17:29:19.7335221Z","createdBy":"500b0839-c682-4003-9106-8f37a381595d","updatedBy":"500b0839-c682-4003-9106-8f37a381595d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59486582-74c2-11ed-b2ea-f21d81f4d94b","type":"Microsoft.Authorization/roleAssignments","name":"59486582-74c2-11ed-b2ea-f21d81f4d94b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T00:27:21.1321238Z","updatedOn":"2022-12-06T00:27:21.1321238Z","createdBy":"010e39fa-3d22-4576-ad28-9709490d3973","updatedBy":"010e39fa-3d22-4576-ad28-9709490d3973","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bdc7c72a-74fc-11ed-b1d9-fe40d632c9c8","type":"Microsoft.Authorization/roleAssignments","name":"bdc7c72a-74fc-11ed-b1d9-fe40d632c9c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T00:27:26.7978650Z","updatedOn":"2022-12-06T00:27:26.7978650Z","createdBy":"010e39fa-3d22-4576-ad28-9709490d3973","updatedBy":"010e39fa-3d22-4576-ad28-9709490d3973","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c1df0b20-74fc-11ed-b1d9-fe40d632c9c8","type":"Microsoft.Authorization/roleAssignments","name":"c1df0b20-74fc-11ed-b1d9-fe40d632c9c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T08:09:07.9286883Z","updatedOn":"2022-12-06T08:09:07.9286883Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a54f40a-fc73-4967-93de-1fda5f77fa18","type":"Microsoft.Authorization/roleAssignments","name":"8a54f40a-fc73-4967-93de-1fda5f77fa18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T08:09:07.0223985Z","updatedOn":"2022-12-06T08:09:07.0223985Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/37a700cb-bd3a-4961-a7b7-cf21f1049fd6","type":"Microsoft.Authorization/roleAssignments","name":"37a700cb-bd3a-4961-a7b7-cf21f1049fd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-09T14:12:43.2358573Z","updatedOn":"2022-12-09T14:12:43.2358573Z","createdBy":"500b0839-c682-4003-9106-8f37a381595d","updatedBy":"500b0839-c682-4003-9106-8f37a381595d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88d9f0e9-77cb-11ed-a931-4ecc509b30ab","type":"Microsoft.Authorization/roleAssignments","name":"88d9f0e9-77cb-11ed-a931-4ecc509b30ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T12:05:48.4827550Z","updatedOn":"2022-12-12T12:05:48.4827550Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d238237a-b393-4ab0-9f00-cdf16c5d6b05","type":"Microsoft.Authorization/roleAssignments","name":"d238237a-b393-4ab0-9f00-cdf16c5d6b05"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T16:10:53.3465450Z","updatedOn":"2022-12-12T16:10:53.3465450Z","createdBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","updatedBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8bcca047-7a37-11ed-9b42-5a0f21a4ffba","type":"Microsoft.Authorization/roleAssignments","name":"8bcca047-7a37-11ed-9b42-5a0f21a4ffba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T16:10:57.7295344Z","updatedOn":"2022-12-12T16:10:57.7295344Z","createdBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","updatedBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e42900b-7a37-11ed-9b42-5a0f21a4ffba","type":"Microsoft.Authorization/roleAssignments","name":"8e42900b-7a37-11ed-9b42-5a0f21a4ffba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-14T08:51:42.0015523Z","updatedOn":"2022-12-14T08:51:42.0015523Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d01084d-4e3a-414c-ac62-c3ef82dc3302","type":"Microsoft.Authorization/roleAssignments","name":"8d01084d-4e3a-414c-ac62-c3ef82dc3302"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-16T07:20:02.6088062Z","updatedOn":"2022-12-16T07:20:02.6088062Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0cb541fc-7d12-11ed-8232-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"0cb541fc-7d12-11ed-8232-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-20T19:00:39.7938573Z","updatedOn":"2022-12-20T19:00:39.7938573Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/991d89fd-8098-11ed-a1dc-1e0cf6619ffa","type":"Microsoft.Authorization/roleAssignments","name":"991d89fd-8098-11ed-a1dc-1e0cf6619ffa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-21T19:53:55.0673117Z","updatedOn":"2022-12-21T19:53:55.0673117Z","createdBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","updatedBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/31f1b70c-8169-11ed-871d-bc091b9528f6","type":"Microsoft.Authorization/roleAssignments","name":"31f1b70c-8169-11ed-871d-bc091b9528f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-21T19:54:01.7874075Z","updatedOn":"2022-12-21T19:54:01.7874075Z","createdBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","updatedBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35eb2367-8169-11ed-871d-bc091b9528f6","type":"Microsoft.Authorization/roleAssignments","name":"35eb2367-8169-11ed-871d-bc091b9528f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-23T14:42:33.0388657Z","updatedOn":"2022-12-23T14:42:33.0388657Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7077d7fa-4615-4792-b394-80918dd155ce","type":"Microsoft.Authorization/roleAssignments","name":"7077d7fa-4615-4792-b394-80918dd155ce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-28T13:20:44.8421429Z","updatedOn":"2022-12-28T13:20:44.8421429Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b48d252-d31a-57c7-8cf6-cb5fed6d1a67","type":"Microsoft.Authorization/roleAssignments","name":"4b48d252-d31a-57c7-8cf6-cb5fed6d1a67"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-03T12:31:11.2683110Z","updatedOn":"2023-01-03T12:31:11.2683110Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d408ddb7-31cd-4d46-ab59-fe1be61b2bdc","type":"Microsoft.Authorization/roleAssignments","name":"d408ddb7-31cd-4d46-ab59-fe1be61b2bdc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-06T08:15:45.7088191Z","updatedOn":"2023-01-06T08:15:45.7088191Z","createdBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","updatedBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/510806b0-8d9a-11ed-9e4f-000d3ac772b5","type":"Microsoft.Authorization/roleAssignments","name":"510806b0-8d9a-11ed-9e4f-000d3ac772b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-06T08:15:51.6046641Z","updatedOn":"2023-01-06T08:15:51.6046641Z","createdBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","updatedBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54802b41-8d9a-11ed-9e4f-000d3ac772b5","type":"Microsoft.Authorization/roleAssignments","name":"54802b41-8d9a-11ed-9e4f-000d3ac772b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-06T22:24:58.0712756Z","updatedOn":"2023-01-06T22:24:58.0712756Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbcde9e0-3481-49ad-b1f1-e7226db43e33","type":"Microsoft.Authorization/roleAssignments","name":"cbcde9e0-3481-49ad-b1f1-e7226db43e33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-07T00:15:43.3039407Z","updatedOn":"2023-01-07T00:15:43.3039407Z","createdBy":"80a6e936-2bdc-4927-b49e-2a7a19943b90","updatedBy":"80a6e936-2bdc-4927-b49e-2a7a19943b90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7e73e7e9-99f9-5fa0-a5c8-33268a3e7acc","type":"Microsoft.Authorization/roleAssignments","name":"7e73e7e9-99f9-5fa0-a5c8-33268a3e7acc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-08T14:40:12.1322327Z","updatedOn":"2023-01-08T14:40:12.1322327Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9146e5ba-1dce-41c3-bee6-6e854049e485","type":"Microsoft.Authorization/roleAssignments","name":"9146e5ba-1dce-41c3-bee6-6e854049e485"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-08T14:46:46.8171282Z","updatedOn":"2023-01-08T14:46:46.8171282Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3073c0fc-4181-4de7-bb2d-ceb46bd805c2","type":"Microsoft.Authorization/roleAssignments","name":"3073c0fc-4181-4de7-bb2d-ceb46bd805c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-10T05:58:31.6725565Z","updatedOn":"2023-01-10T05:58:31.6725565Z","createdBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","updatedBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce4f420e-90ab-11ed-81da-002248575167","type":"Microsoft.Authorization/roleAssignments","name":"ce4f420e-90ab-11ed-81da-002248575167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-10T05:58:38.3068493Z","updatedOn":"2023-01-10T05:58:38.3068493Z","createdBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","updatedBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2369b82-90ab-11ed-81da-002248575167","type":"Microsoft.Authorization/roleAssignments","name":"d2369b82-90ab-11ed-81da-002248575167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-10T06:45:54.6704864Z","updatedOn":"2023-01-10T06:45:54.6704864Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6de0e553-90b2-11ed-9d42-6045bd78eeea","type":"Microsoft.Authorization/roleAssignments","name":"6de0e553-90b2-11ed-9d42-6045bd78eeea"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-11T22:44:31.5456256Z","updatedOn":"2023-01-11T22:44:31.5456256Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/55a9c9ca-e483-44ad-ab32-17ac0f1905e2","type":"Microsoft.Authorization/roleAssignments","name":"55a9c9ca-e483-44ad-ab32-17ac0f1905e2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-12T07:27:30.7499209Z","updatedOn":"2023-01-12T07:27:30.7499209Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c2fcdf3-9376-46c4-862c-c5478fad402d","type":"Microsoft.Authorization/roleAssignments","name":"6c2fcdf3-9376-46c4-862c-c5478fad402d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-12T20:29:47.8942736Z","updatedOn":"2023-01-12T20:29:47.8942736Z","createdBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","updatedBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dad76eb4-92b7-11ed-9e92-3e22fbc2ce2f","type":"Microsoft.Authorization/roleAssignments","name":"dad76eb4-92b7-11ed-9e92-3e22fbc2ce2f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-12T20:29:51.8091784Z","updatedOn":"2023-01-12T20:29:51.8091784Z","createdBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","updatedBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd198dce-92b7-11ed-9e92-3e22fbc2ce2f","type":"Microsoft.Authorization/roleAssignments","name":"dd198dce-92b7-11ed-9e92-3e22fbc2ce2f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-13T05:50:47.3154688Z","updatedOn":"2023-01-13T05:50:47.3154688Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/38d171ad-9306-11ed-a704-ee47e05c3b1e","type":"Microsoft.Authorization/roleAssignments","name":"38d171ad-9306-11ed-a704-ee47e05c3b1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-13T05:50:53.1628390Z","updatedOn":"2023-01-13T05:50:53.1628390Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3bf43d16-9306-11ed-a704-ee47e05c3b1e","type":"Microsoft.Authorization/roleAssignments","name":"3bf43d16-9306-11ed-a704-ee47e05c3b1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-14T06:07:18.3233862Z","updatedOn":"2023-01-14T06:07:18.3233862Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2587a66-93d1-11ed-a6e9-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"b2587a66-93d1-11ed-a6e9-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-14T06:07:23.4646871Z","updatedOn":"2023-01-14T06:07:23.4646871Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b56e4d80-93d1-11ed-a6e9-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"b56e4d80-93d1-11ed-a6e9-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-16T23:52:20.1337328Z","updatedOn":"2023-01-16T23:52:20.1337328Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/911d588d-e4a0-5501-bd42-db0fe4ac81ea","type":"Microsoft.Authorization/roleAssignments","name":"911d588d-e4a0-5501-bd42-db0fe4ac81ea"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-17T21:03:20.3495010Z","updatedOn":"2023-01-17T21:03:20.3495010Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":"partner + team engineer "},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b200ea13-6210-46cf-b622-5e1fa94d7196","type":"Microsoft.Authorization/roleAssignments","name":"b200ea13-6210-46cf-b622-5e1fa94d7196"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-17T21:55:10.9367237Z","updatedOn":"2023-01-17T21:55:10.9367237Z","createdBy":"252476b5-423c-4de6-8f23-f3b57897abfc","updatedBy":"252476b5-423c-4de6-8f23-f3b57897abfc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9c4d35c3-96b1-11ed-bcb1-aa442d61f9f5","type":"Microsoft.Authorization/roleAssignments","name":"9c4d35c3-96b1-11ed-bcb1-aa442d61f9f5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-18T16:39:36.8544109Z","updatedOn":"2023-01-18T16:39:36.8544109Z","createdBy":"57440c04-5eed-4c74-92b6-44b016b882f2","updatedBy":"57440c04-5eed-4c74-92b6-44b016b882f2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e47587fc-952b-11ed-9582-22998bd40e8c","type":"Microsoft.Authorization/roleAssignments","name":"e47587fc-952b-11ed-9582-22998bd40e8c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-19T06:11:42.7348591Z","updatedOn":"2023-01-19T06:11:42.7348591Z","createdBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","updatedBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dcee111d-97c0-11ed-8b08-5e144daaf885","type":"Microsoft.Authorization/roleAssignments","name":"dcee111d-97c0-11ed-8b08-5e144daaf885"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-19T06:11:46.7450508Z","updatedOn":"2023-01-19T06:11:46.7450508Z","createdBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","updatedBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df259f28-97c0-11ed-8b08-5e144daaf885","type":"Microsoft.Authorization/roleAssignments","name":"df259f28-97c0-11ed-8b08-5e144daaf885"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-20T21:01:23.9458046Z","updatedOn":"2023-05-12T17:27:12.7106298Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f654663-8564-546e-a6fc-452f7b76de5a","type":"Microsoft.Authorization/roleAssignments","name":"5f654663-8564-546e-a6fc-452f7b76de5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T17:09:42.5564083Z","updatedOn":"2023-01-23T17:09:42.5564083Z","createdBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","updatedBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9e2414b-9b40-11ed-96c6-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"b9e2414b-9b40-11ed-96c6-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T17:09:45.5610260Z","updatedOn":"2023-01-23T17:09:45.5610260Z","createdBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","updatedBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbc6263b-9b40-11ed-96c6-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"bbc6263b-9b40-11ed-96c6-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T18:43:59.1011432Z","updatedOn":"2023-01-23T18:43:59.1011432Z","createdBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","updatedBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e58487c6-9b4d-11ed-8c22-8c1645a48227","type":"Microsoft.Authorization/roleAssignments","name":"e58487c6-9b4d-11ed-8c22-8c1645a48227"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T18:44:02.5989503Z","updatedOn":"2023-01-23T18:44:02.5989503Z","createdBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","updatedBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7a002ef-9b4d-11ed-8c22-8c1645a48227","type":"Microsoft.Authorization/roleAssignments","name":"e7a002ef-9b4d-11ed-8c22-8c1645a48227"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-10T06:45:47.1925698Z","updatedOn":"2022-03-10T06:45:47.1925698Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4aaa7af-d414-42e9-bd99-b14d707753a7","type":"Microsoft.Authorization/roleAssignments","name":"e4aaa7af-d414-42e9-bd99-b14d707753a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-11T03:42:35.9073660Z","updatedOn":"2022-03-11T03:42:35.9073660Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a0f9eea-a0ed-11ec-9b90-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"4a0f9eea-a0ed-11ec-9b90-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-11T19:59:10.3149108Z","updatedOn":"2022-03-11T19:59:10.3149108Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b6e06a80-a175-11ec-8f66-002248778035","type":"Microsoft.Authorization/roleAssignments","name":"b6e06a80-a175-11ec-8f66-002248778035"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-14T05:57:31.9169431Z","updatedOn":"2022-03-14T05:57:31.9169431Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/04323e79-5b88-4b91-86e7-b8bfa1c2d8b9","type":"Microsoft.Authorization/roleAssignments","name":"04323e79-5b88-4b91-86e7-b8bfa1c2d8b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-14T23:57:21.8404827Z","updatedOn":"2022-03-14T23:57:21.8404827Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/824ca9a3-a3f2-11ec-b5c2-626147b15e2d","type":"Microsoft.Authorization/roleAssignments","name":"824ca9a3-a3f2-11ec-b5c2-626147b15e2d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-15T05:47:06.0764200Z","updatedOn":"2022-03-15T05:47:06.0764200Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d8c0655-15f2-4864-9ebf-6c5d95ea5797","type":"Microsoft.Authorization/roleAssignments","name":"3d8c0655-15f2-4864-9ebf-6c5d95ea5797"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-15T05:48:19.3617384Z","updatedOn":"2022-03-15T05:48:19.3617384Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5a1298d-008a-4dad-95db-70d41dc0ff2e","type":"Microsoft.Authorization/roleAssignments","name":"b5a1298d-008a-4dad-95db-70d41dc0ff2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-15T19:57:01.4651070Z","updatedOn":"2022-03-15T19:57:01.4651070Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f90898e-0a20-4778-b842-abc610614801","type":"Microsoft.Authorization/roleAssignments","name":"2f90898e-0a20-4778-b842-abc610614801"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-16T02:56:12.3673604Z","updatedOn":"2022-03-16T02:56:12.3673604Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be953738-c4c0-4da0-9b0f-42c89eb31451","type":"Microsoft.Authorization/roleAssignments","name":"be953738-c4c0-4da0-9b0f-42c89eb31451"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T10:12:31.1977135Z","updatedOn":"2022-03-21T10:12:31.1977135Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92ad8cda-f519-4160-b28d-6e0e8d19fb8e","type":"Microsoft.Authorization/roleAssignments","name":"92ad8cda-f519-4160-b28d-6e0e8d19fb8e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T17:57:33.7215077Z","updatedOn":"2022-03-21T17:57:33.7215077Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6210523c-a940-11ec-88f4-00224850c1b5","type":"Microsoft.Authorization/roleAssignments","name":"6210523c-a940-11ec-88f4-00224850c1b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T22:00:37.3135630Z","updatedOn":"2022-03-21T22:00:37.3135630Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5678b88f-a962-11ec-b646-0022487a9d6b","type":"Microsoft.Authorization/roleAssignments","name":"5678b88f-a962-11ec-b646-0022487a9d6b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T23:00:49.2441783Z","updatedOn":"2022-03-21T23:00:49.2441783Z","createdBy":"3a522b7c-61fd-4fcf-aa7f-3e8a6e7cc3af","updatedBy":"3a522b7c-61fd-4fcf-aa7f-3e8a6e7cc3af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bef73288-a96a-11ec-bd2b-6acf089951ab","type":"Microsoft.Authorization/roleAssignments","name":"bef73288-a96a-11ec-bd2b-6acf089951ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-22T04:03:04.2502656Z","updatedOn":"2022-03-22T04:03:04.2502656Z","createdBy":"9d0cc8e5-b005-4b2b-9a31-3b6c624d5330","updatedBy":"9d0cc8e5-b005-4b2b-9a31-3b6c624d5330","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8a4f8a7-a994-11ec-b30e-4a9f38c1a382","type":"Microsoft.Authorization/roleAssignments","name":"f8a4f8a7-a994-11ec-b30e-4a9f38c1a382"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-22T13:40:03.8073664Z","updatedOn":"2022-03-22T13:40:03.8073664Z","createdBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","updatedBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/93f47801-a9e5-11ec-86a5-3a3e6c7e1ac8","type":"Microsoft.Authorization/roleAssignments","name":"93f47801-a9e5-11ec-86a5-3a3e6c7e1ac8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-23T10:14:54.3796697Z","updatedOn":"2022-03-23T10:14:54.3796697Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e3f182b-aa92-11ec-9c92-18c04da96df8","type":"Microsoft.Authorization/roleAssignments","name":"0e3f182b-aa92-11ec-9c92-18c04da96df8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-23T23:47:01.7045602Z","updatedOn":"2022-03-23T23:47:01.7045602Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5312596-61f6-486a-ad10-fdb35f1c1665","type":"Microsoft.Authorization/roleAssignments","name":"d5312596-61f6-486a-ad10-fdb35f1c1665"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-25T05:07:14.4623821Z","updatedOn":"2022-03-25T05:07:14.4623821Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df7fe6e9-3cf1-4547-ba81-c1ad0d7d565d","type":"Microsoft.Authorization/roleAssignments","name":"df7fe6e9-3cf1-4547-ba81-c1ad0d7d565d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-29T14:13:44.9635087Z","updatedOn":"2022-03-29T14:13:44.9635087Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/530db943-4ece-46bc-b456-79374d5ec2ba","type":"Microsoft.Authorization/roleAssignments","name":"530db943-4ece-46bc-b456-79374d5ec2ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-30T16:18:52.9056346Z","updatedOn":"2022-03-30T16:18:52.9056346Z","createdBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","updatedBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3e0d853-568c-4e64-851d-2292fe92a007","type":"Microsoft.Authorization/roleAssignments","name":"d3e0d853-568c-4e64-851d-2292fe92a007"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-05T04:54:30.2719737Z","updatedOn":"2022-04-05T04:54:30.2719737Z","createdBy":"f0b00319-13f5-4c2b-928a-73ccb5edd222","updatedBy":"f0b00319-13f5-4c2b-928a-73ccb5edd222","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78ffc9e7-b49c-11ec-964c-b219be9347e3","type":"Microsoft.Authorization/roleAssignments","name":"78ffc9e7-b49c-11ec-964c-b219be9347e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-05T22:40:43.0016940Z","updatedOn":"2022-04-05T22:40:43.0016940Z","createdBy":"639a731d-01eb-47bc-88aa-c1e2ba14db02","updatedBy":"639a731d-01eb-47bc-88aa-c1e2ba14db02","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c9e0e6c-b531-11ec-aea8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6c9e0e6c-b531-11ec-aea8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-06T12:49:05.2173956Z","updatedOn":"2022-04-06T12:49:05.2173956Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f0a7f4e5-b5a7-11ec-bae5-000d3a6f3c6e","type":"Microsoft.Authorization/roleAssignments","name":"f0a7f4e5-b5a7-11ec-bae5-000d3a6f3c6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-07T01:16:34.9503446Z","updatedOn":"2022-04-07T01:16:34.9503446Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5bdb51f8-5551-44f9-9819-a52fa97c2fef","type":"Microsoft.Authorization/roleAssignments","name":"5bdb51f8-5551-44f9-9819-a52fa97c2fef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-11T05:16:56.1225175Z","updatedOn":"2022-04-11T05:16:56.1225175Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99904768-b956-11ec-a61a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"99904768-b956-11ec-a61a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T23:22:51.6419715Z","updatedOn":"2022-04-12T23:22:51.6419715Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/788b9be6-bab7-11ec-b096-0022487898d6","type":"Microsoft.Authorization/roleAssignments","name":"788b9be6-bab7-11ec-b096-0022487898d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T07:42:38.9160126Z","updatedOn":"2022-04-13T07:42:38.9160126Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a58e304-bafd-11ec-8461-a2dde8388af9","type":"Microsoft.Authorization/roleAssignments","name":"4a58e304-bafd-11ec-8461-a2dde8388af9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T16:12:39.4214747Z","updatedOn":"2022-04-13T16:12:39.4214747Z","createdBy":"c302f71c-7b89-4d55-8c87-135833038531","updatedBy":"c302f71c-7b89-4d55-8c87-135833038531","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3bd4838c-4c24-4bb6-b31f-d055dc68694f","type":"Microsoft.Authorization/roleAssignments","name":"3bd4838c-4c24-4bb6-b31f-d055dc68694f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T09:53:20.2997466Z","updatedOn":"2022-04-14T09:53:20.2997466Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b44f0aaa-bbd8-11ec-8da6-0a4cab55437d","type":"Microsoft.Authorization/roleAssignments","name":"b44f0aaa-bbd8-11ec-8da6-0a4cab55437d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T16:49:01.5455829Z","updatedOn":"2022-04-14T16:49:01.5455829Z","createdBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","updatedBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","delegatedManagedIdentityResourceId":null,"description":"Allows + github actions to run e2e tests. Only the main branch is permitted access, + and credentials are not shared with forks."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4e9d34c-9113-45d4-a0f0-175593c38c33","type":"Microsoft.Authorization/roleAssignments","name":"f4e9d34c-9113-45d4-a0f0-175593c38c33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-20T06:23:32.6340955Z","updatedOn":"2022-04-20T06:23:32.6340955Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6675beb7-c072-11ec-b9ab-000d3ac3f60e","type":"Microsoft.Authorization/roleAssignments","name":"6675beb7-c072-11ec-b9ab-000d3ac3f60e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-20T18:02:47.6341581Z","updatedOn":"2022-04-20T18:02:47.6341581Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/56617dbb-76a1-401d-96fe-8a22f58284d8","type":"Microsoft.Authorization/roleAssignments","name":"56617dbb-76a1-401d-96fe-8a22f58284d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T08:17:07.1604388Z","updatedOn":"2022-04-21T08:17:07.1604388Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6e60c2be-c14b-11ec-82b0-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6e60c2be-c14b-11ec-82b0-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T21:36:13.8709604Z","updatedOn":"2022-04-21T21:36:13.8709604Z","createdBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","updatedBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/10b94b6e-c1bb-11ec-9ff7-523c2f7f99a3","type":"Microsoft.Authorization/roleAssignments","name":"10b94b6e-c1bb-11ec-9ff7-523c2f7f99a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-22T18:55:55.5256074Z","updatedOn":"2022-04-22T18:55:55.5256074Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6917978-c26d-11ec-a699-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"d6917978-c26d-11ec-a699-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-24T10:36:03.4988906Z","updatedOn":"2022-04-24T10:36:03.4988906Z","createdBy":"d3cd2b55-3b25-4b68-b6fd-a08967de9266","updatedBy":"d3cd2b55-3b25-4b68-b6fd-a08967de9266","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/558d3e63-c3ba-11ec-b4f9-000d3ac7d8f0","type":"Microsoft.Authorization/roleAssignments","name":"558d3e63-c3ba-11ec-b4f9-000d3ac7d8f0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-25T06:33:58.7782201Z","updatedOn":"2022-04-25T06:33:58.7782201Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ae507161-c461-11ec-b99d-4a4f5b60a172","type":"Microsoft.Authorization/roleAssignments","name":"ae507161-c461-11ec-b99d-4a4f5b60a172"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-26T16:28:17.7010346Z","updatedOn":"2022-04-26T16:28:17.7010346Z","createdBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","updatedBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e04b1510-c57d-11ec-a3c9-0641de48d9d3","type":"Microsoft.Authorization/roleAssignments","name":"e04b1510-c57d-11ec-a3c9-0641de48d9d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-26T21:31:37.1620998Z","updatedOn":"2022-04-26T21:31:37.1620998Z","createdBy":"9bf576b7-c3cf-492b-9bcf-8c8832e2e0a5","updatedBy":"9bf576b7-c3cf-492b-9bcf-8c8832e2e0a5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/409a9eb9-c5a8-11ec-b358-d20abc546c29","type":"Microsoft.Authorization/roleAssignments","name":"409a9eb9-c5a8-11ec-b358-d20abc546c29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-28T07:13:54.9152651Z","updatedOn":"2022-04-28T07:13:54.9152651Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5f3166a-ed3f-43a7-9b34-bb910beaee12","type":"Microsoft.Authorization/roleAssignments","name":"f5f3166a-ed3f-43a7-9b34-bb910beaee12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T12:14:12.5786055Z","updatedOn":"2022-05-02T12:14:12.5786055Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f06c939-ca11-11ec-9966-da65ad1ab332","type":"Microsoft.Authorization/roleAssignments","name":"5f06c939-ca11-11ec-9966-da65ad1ab332"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:17.4008338Z","updatedOn":"2022-05-02T13:40:17.4008338Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/846f4e2d-0ec9-48ef-fd6e-6ac1cb7586e6","type":"Microsoft.Authorization/roleAssignments","name":"846f4e2d-0ec9-48ef-fd6e-6ac1cb7586e6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.8453423Z","updatedOn":"2022-05-02T13:40:18.8453423Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e72a2b8a-2c36-4ac1-aec3-4fa68f3cae16","type":"Microsoft.Authorization/roleAssignments","name":"e72a2b8a-2c36-4ac1-aec3-4fa68f3cae16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.0609853Z","updatedOn":"2022-05-02T13:40:18.0609853Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/72e6bf18-35fb-436e-3e05-9ba0a0747299","type":"Microsoft.Authorization/roleAssignments","name":"72e6bf18-35fb-436e-3e05-9ba0a0747299"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.1173679Z","updatedOn":"2022-05-02T13:40:18.1173679Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/724e274f-6e37-445c-608e-199fb9eaa982","type":"Microsoft.Authorization/roleAssignments","name":"724e274f-6e37-445c-608e-199fb9eaa982"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T16:59:33.5195217Z","updatedOn":"2022-05-02T16:59:33.5195217Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/98620dcd-bcc5-4828-b846-369c64574ee1","type":"Microsoft.Authorization/roleAssignments","name":"98620dcd-bcc5-4828-b846-369c64574ee1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T06:36:46.9583100Z","updatedOn":"2022-05-09T06:36:46.9583100Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5a313ab-6903-471c-a6bf-8d84989e8cb4","type":"Microsoft.Authorization/roleAssignments","name":"d5a313ab-6903-471c-a6bf-8d84989e8cb4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T22:20:41.5499828Z","updatedOn":"2022-05-09T22:20:41.5499828Z","createdBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","updatedBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/425f8b8d-cfe6-11ec-bbe5-00155ddd560d","type":"Microsoft.Authorization/roleAssignments","name":"425f8b8d-cfe6-11ec-bbe5-00155ddd560d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-10T06:15:39.4482664Z","updatedOn":"2022-05-10T06:15:39.4482664Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a2ff126-fb32-4ca9-8c4d-c8b22209cbc1","type":"Microsoft.Authorization/roleAssignments","name":"8a2ff126-fb32-4ca9-8c4d-c8b22209cbc1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-11T23:10:09.0651064Z","updatedOn":"2022-05-11T23:10:09.0651064Z","createdBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","updatedBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/804a630f-d17f-11ec-bb71-6045bdab52dc","type":"Microsoft.Authorization/roleAssignments","name":"804a630f-d17f-11ec-bb71-6045bdab52dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-12T13:47:03.3832395Z","updatedOn":"2022-05-12T13:47:03.3832395Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00bc6898-d1fa-11ec-974a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"00bc6898-d1fa-11ec-974a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-13T20:36:59.6109396Z","updatedOn":"2022-05-13T20:36:59.6109396Z","createdBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","updatedBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ea3a01d-d2fc-11ec-9997-be6e344e58c1","type":"Microsoft.Authorization/roleAssignments","name":"6ea3a01d-d2fc-11ec-9997-be6e344e58c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-17T06:49:11.7087809Z","updatedOn":"2022-05-17T06:49:11.7087809Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07f76b15-d899-4d21-8542-29c2479e05e1","type":"Microsoft.Authorization/roleAssignments","name":"07f76b15-d899-4d21-8542-29c2479e05e1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-18T13:22:09.5941967Z","updatedOn":"2022-05-18T13:22:09.5941967Z","createdBy":"52d64fbe-1728-4b2b-a0c4-849705cb9c96","updatedBy":"52d64fbe-1728-4b2b-a0c4-849705cb9c96","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/847201fc-d6ad-11ec-a176-000d3a083c47","type":"Microsoft.Authorization/roleAssignments","name":"847201fc-d6ad-11ec-a176-000d3a083c47"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-20T22:35:09.9396236Z","updatedOn":"2022-05-20T22:35:09.9396236Z","createdBy":"1ec25b73-94d5-4bf9-a56f-ca7d9bd4164c","updatedBy":"1ec25b73-94d5-4bf9-a56f-ca7d9bd4164c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5d512f6-fb53-4fad-b3be-ec154c7a6085","type":"Microsoft.Authorization/roleAssignments","name":"c5d512f6-fb53-4fad-b3be-ec154c7a6085"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-22T23:45:36.9119159Z","updatedOn":"2022-05-22T23:45:36.9119159Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46fd33ed-da29-11ec-919f-6045bd7a16bc","type":"Microsoft.Authorization/roleAssignments","name":"46fd33ed-da29-11ec-919f-6045bd7a16bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-23T03:50:38.5802008Z","updatedOn":"2022-05-23T03:50:38.5802008Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ab46785f-2521-4172-871f-91e7dc500a5b","type":"Microsoft.Authorization/roleAssignments","name":"ab46785f-2521-4172-871f-91e7dc500a5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-23T18:09:05.5672217Z","updatedOn":"2022-05-23T18:09:05.5672217Z","createdBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","updatedBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3f47f83-e599-4106-974f-5ff73955ffa6","type":"Microsoft.Authorization/roleAssignments","name":"e3f47f83-e599-4106-974f-5ff73955ffa6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-24T20:49:20.4480948Z","updatedOn":"2022-05-24T20:49:20.4480948Z","createdBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","updatedBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbf490ce-dba2-11ec-b0af-6045bdab52dc","type":"Microsoft.Authorization/roleAssignments","name":"fbf490ce-dba2-11ec-b0af-6045bdab52dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-25T18:39:32.8389167Z","updatedOn":"2022-05-25T18:39:32.8389167Z","createdBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","updatedBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/048a3cf1-dc5a-11ec-8804-6045bdab52dc","type":"Microsoft.Authorization/roleAssignments","name":"048a3cf1-dc5a-11ec-8804-6045bdab52dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T01:53:46.3648590Z","updatedOn":"2022-05-26T01:53:46.3648590Z","createdBy":"834b5e76-453d-44f5-80ff-3481c8415d66","updatedBy":"834b5e76-453d-44f5-80ff-3481c8415d66","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac5ab95a-dc96-11ec-92bb-065f8efd402d","type":"Microsoft.Authorization/roleAssignments","name":"ac5ab95a-dc96-11ec-92bb-065f8efd402d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T06:40:41.8769416Z","updatedOn":"2022-05-26T06:40:41.8769416Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2812727c-1e58-49f0-84a6-13e2b8b7cce7","type":"Microsoft.Authorization/roleAssignments","name":"2812727c-1e58-49f0-84a6-13e2b8b7cce7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T16:39:02.6438636Z","updatedOn":"2022-05-26T16:39:02.6438636Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5bb051d1-dd12-11ec-8dd4-9e3ebf2d444f","type":"Microsoft.Authorization/roleAssignments","name":"5bb051d1-dd12-11ec-8dd4-9e3ebf2d444f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-28T07:02:36.1409282Z","updatedOn":"2022-05-28T07:02:36.1409282Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dbf46cb0-1221-443e-bab0-9cd11b7afece","type":"Microsoft.Authorization/roleAssignments","name":"dbf46cb0-1221-443e-bab0-9cd11b7afece"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-31T03:23:22.9404784Z","updatedOn":"2022-05-31T03:23:22.9404784Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/047700b3-e091-11ec-b7b9-f6caf9b02627","type":"Microsoft.Authorization/roleAssignments","name":"047700b3-e091-11ec-b7b9-f6caf9b02627"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-31T03:25:49.5470268Z","updatedOn":"2022-05-31T03:25:49.5470268Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b03550bc-b4aa-4aab-8bd7-0d27b86c9380","type":"Microsoft.Authorization/roleAssignments","name":"b03550bc-b4aa-4aab-8bd7-0d27b86c9380"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-01T14:15:14.5143992Z","updatedOn":"2022-06-01T14:15:14.5143992Z","createdBy":"572b7854-a995-402b-8482-46e12d3c9665","updatedBy":"572b7854-a995-402b-8482-46e12d3c9665","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41183c3a-e1b5-11ec-bad7-3c7c3f1d0035","type":"Microsoft.Authorization/roleAssignments","name":"41183c3a-e1b5-11ec-bad7-3c7c3f1d0035"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-01T15:59:31.6776783Z","updatedOn":"2022-06-01T15:59:31.6776783Z","createdBy":"203de16f-a918-45b1-bde4-6cc574d16944","updatedBy":"203de16f-a918-45b1-bde4-6cc574d16944","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e0dd4b8a-e1c3-11ec-949c-7a1cf6c5b419","type":"Microsoft.Authorization/roleAssignments","name":"e0dd4b8a-e1c3-11ec-949c-7a1cf6c5b419"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-01T18:14:50.2776576Z","updatedOn":"2022-06-01T18:14:50.2776576Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61f89f02-3565-409f-8e72-fc4e58b40178","type":"Microsoft.Authorization/roleAssignments","name":"61f89f02-3565-409f-8e72-fc4e58b40178"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-02T10:22:35.3875246Z","updatedOn":"2022-06-02T10:22:35.3875246Z","createdBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","updatedBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eabe3f5d-e25d-11ec-9d25-002248575167","type":"Microsoft.Authorization/roleAssignments","name":"eabe3f5d-e25d-11ec-9d25-002248575167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-02T19:10:50.1608669Z","updatedOn":"2022-06-02T19:10:50.1608669Z","createdBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","updatedBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d33bf47-7a98-4cca-84be-a622a8a520ae","type":"Microsoft.Authorization/roleAssignments","name":"2d33bf47-7a98-4cca-84be-a622a8a520ae"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-03T17:52:39.6424601Z","updatedOn":"2022-06-03T17:52:39.6424601Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/808a6fa6-1aa8-401a-b12d-3dbf49678aa5","type":"Microsoft.Authorization/roleAssignments","name":"808a6fa6-1aa8-401a-b12d-3dbf49678aa5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-03T18:32:43.3145647Z","updatedOn":"2022-06-03T18:32:43.3145647Z","createdBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","updatedBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ce8e3fe-e36b-11ec-93c2-0ebbe08470ef","type":"Microsoft.Authorization/roleAssignments","name":"8ce8e3fe-e36b-11ec-93c2-0ebbe08470ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-03T20:51:18.9925616Z","updatedOn":"2022-06-03T20:51:18.9925616Z","createdBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","updatedBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea9b98ba-e37e-11ec-b495-0ebbe08470ef","type":"Microsoft.Authorization/roleAssignments","name":"ea9b98ba-e37e-11ec-b495-0ebbe08470ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-06T19:39:15.5380737Z","updatedOn":"2022-06-06T19:39:15.5380737Z","createdBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","updatedBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57d73d6c-e5d0-11ec-a3ee-c220c0843243","type":"Microsoft.Authorization/roleAssignments","name":"57d73d6c-e5d0-11ec-a3ee-c220c0843243"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-07T02:58:19.0816460Z","updatedOn":"2022-06-07T02:58:19.0816460Z","createdBy":"0bf53c4f-0173-466d-967d-debbe9e551d6","updatedBy":"0bf53c4f-0173-466d-967d-debbe9e551d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/adea0756-e60d-11ec-bd0e-66dbb5eba95d","type":"Microsoft.Authorization/roleAssignments","name":"adea0756-e60d-11ec-bd0e-66dbb5eba95d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-07T18:27:18.2907455Z","updatedOn":"2022-06-07T18:27:18.2907455Z","createdBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","updatedBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/75dc9d88-e68f-11ec-bbbc-aa665a03731d","type":"Microsoft.Authorization/roleAssignments","name":"75dc9d88-e68f-11ec-bbbc-aa665a03731d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-08T18:25:22.6640205Z","updatedOn":"2022-06-08T18:25:22.6640205Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/17b651ab-ff7f-4cf2-833a-27f695725732","type":"Microsoft.Authorization/roleAssignments","name":"17b651ab-ff7f-4cf2-833a-27f695725732"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-08T19:34:11.0218858Z","updatedOn":"2022-06-08T19:34:11.0218858Z","createdBy":"1b51b78e-fd1f-484f-98b6-3423d189977b","updatedBy":"1b51b78e-fd1f-484f-98b6-3423d189977b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5e9c3a1d-3f79-4e4b-9b9d-fbe1f3d09ec5","type":"Microsoft.Authorization/roleAssignments","name":"5e9c3a1d-3f79-4e4b-9b9d-fbe1f3d09ec5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-08T19:46:00.8296947Z","updatedOn":"2022-06-08T19:46:00.8296947Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f2fd786-e763-11ec-b282-000d3af64fa4","type":"Microsoft.Authorization/roleAssignments","name":"9f2fd786-e763-11ec-b282-000d3af64fa4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-09T01:49:44.1244830Z","updatedOn":"2022-06-09T01:49:44.1244830Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14a2ebaa-ca44-4eb7-851c-01d577cb625e","type":"Microsoft.Authorization/roleAssignments","name":"14a2ebaa-ca44-4eb7-851c-01d577cb625e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-09T23:29:31.3797237Z","updatedOn":"2022-06-09T23:29:31.3797237Z","createdBy":"b34e062a-5a73-4cec-af00-1ecb446deb92","updatedBy":"b34e062a-5a73-4cec-af00-1ecb446deb92","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/02f3fb8e-e84c-11ec-bd1c-6045bd7e546a","type":"Microsoft.Authorization/roleAssignments","name":"02f3fb8e-e84c-11ec-bd1c-6045bd7e546a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T15:06:09.3851225Z","updatedOn":"2022-06-10T15:06:09.3851225Z","createdBy":"fb4b724d-4b7e-4756-aa0b-d91dc0c5acc9","updatedBy":"fb4b724d-4b7e-4756-aa0b-d91dc0c5acc9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/db7a073e-e8ce-11ec-8b1d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"db7a073e-e8ce-11ec-8b1d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T18:05:28.7449646Z","updatedOn":"2022-06-10T18:05:28.7449646Z","createdBy":"0e06046f-cf0d-4924-86b0-bbcf36a1936f","updatedBy":"0e06046f-cf0d-4924-86b0-bbcf36a1936f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7824ddb-e8e7-11ec-b465-421b394b7a96","type":"Microsoft.Authorization/roleAssignments","name":"e7824ddb-e8e7-11ec-b465-421b394b7a96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T18:05:29.8303312Z","updatedOn":"2022-06-10T18:05:29.8303312Z","createdBy":"1295ee3f-edbd-4185-9628-13318404c52a","updatedBy":"1295ee3f-edbd-4185-9628-13318404c52a","delegatedManagedIdentityResourceId":null,"description":"New + AKS member"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/609b8d2a-2b4f-4767-aa5e-c5c7f11b687b","type":"Microsoft.Authorization/roleAssignments","name":"609b8d2a-2b4f-4767-aa5e-c5c7f11b687b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T21:18:18.0994828Z","updatedOn":"2022-06-10T21:18:18.0994828Z","createdBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","updatedBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d80f2247-e902-11ec-96de-2edd4b852bcf","type":"Microsoft.Authorization/roleAssignments","name":"d80f2247-e902-11ec-96de-2edd4b852bcf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:19.7988558Z","updatedOn":"2022-06-13T09:20:19.7988558Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/053ff776-f32a-4298-cbeb-0da661875d88","type":"Microsoft.Authorization/roleAssignments","name":"053ff776-f32a-4298-cbeb-0da661875d88"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:19.8466660Z","updatedOn":"2022-06-13T09:20:19.8466660Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b4bd6e6-869b-4da3-a50f-b7eb8b183de5","type":"Microsoft.Authorization/roleAssignments","name":"4b4bd6e6-869b-4da3-a50f-b7eb8b183de5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:20.2195738Z","updatedOn":"2022-06-13T09:20:20.2195738Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/21db9db3-7adc-40f3-5885-af265b9ddad2","type":"Microsoft.Authorization/roleAssignments","name":"21db9db3-7adc-40f3-5885-af265b9ddad2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:19.9439478Z","updatedOn":"2022-06-13T09:20:19.9439478Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2418e820-601e-49da-a20d-4fa1ee6cc4cf","type":"Microsoft.Authorization/roleAssignments","name":"2418e820-601e-49da-a20d-4fa1ee6cc4cf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T17:55:18.4118508Z","updatedOn":"2022-06-13T17:55:18.4118508Z","createdBy":"1295ee3f-edbd-4185-9628-13318404c52a","updatedBy":"1295ee3f-edbd-4185-9628-13318404c52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbcfa2a4-eb41-11ec-b38e-467d14df3056","type":"Microsoft.Authorization/roleAssignments","name":"fbcfa2a4-eb41-11ec-b38e-467d14df3056"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-14T09:33:38.7306445Z","updatedOn":"2022-06-14T09:33:38.7306445Z","createdBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","updatedBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/10ffce40-ebc5-11ec-aebe-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"10ffce40-ebc5-11ec-aebe-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-14T23:20:32.7229029Z","updatedOn":"2022-06-14T23:20:32.7229029Z","createdBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","updatedBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/954903db-ec38-11ec-acd7-72f791cfbed2","type":"Microsoft.Authorization/roleAssignments","name":"954903db-ec38-11ec-acd7-72f791cfbed2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T06:30:47.7914595Z","updatedOn":"2022-06-16T06:30:47.7914595Z","createdBy":"504c34f4-8389-4920-aec9-0c595b508740","updatedBy":"504c34f4-8389-4920-aec9-0c595b508740","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb760c25-af25-412f-a643-93e98c629270","type":"Microsoft.Authorization/roleAssignments","name":"bb760c25-af25-412f-a643-93e98c629270"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T20:16:07.8463557Z","updatedOn":"2022-06-16T20:16:07.8463557Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4555d91-07f5-46d6-b29f-50b0d211c4ae","type":"Microsoft.Authorization/roleAssignments","name":"f4555d91-07f5-46d6-b29f-50b0d211c4ae"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T21:30:16.4420742Z","updatedOn":"2022-06-16T21:30:16.4420742Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":"to + programatically create new resource group, aks cluster, and container registry"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2c2fc915-d722-4dde-b730-7c73c8a87fdc","type":"Microsoft.Authorization/roleAssignments","name":"2c2fc915-d722-4dde-b730-7c73c8a87fdc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T22:19:51.5734675Z","updatedOn":"2022-06-16T22:19:51.5734675Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cca9c113-570a-4969-aa72-45c31091684a","type":"Microsoft.Authorization/roleAssignments","name":"cca9c113-570a-4969-aa72-45c31091684a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-17T02:19:37.1755269Z","updatedOn":"2022-06-17T02:19:37.1755269Z","createdBy":"30db9446-b4f8-4485-8c98-10e17387409d","updatedBy":"30db9446-b4f8-4485-8c98-10e17387409d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eee6dfc9-ede3-11ec-9f6d-902e1612d5d0","type":"Microsoft.Authorization/roleAssignments","name":"eee6dfc9-ede3-11ec-9f6d-902e1612d5d0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-20T22:03:11.1423439Z","updatedOn":"2022-06-20T22:03:11.1423439Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5c2bd4a-f0e4-11ec-bbc1-000d3ac67a2f","type":"Microsoft.Authorization/roleAssignments","name":"c5c2bd4a-f0e4-11ec-bbc1-000d3ac67a2f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-21T16:26:57.9805326Z","updatedOn":"2022-06-21T16:26:57.9805326Z","createdBy":"4d730cf1-e190-49af-af02-ea52983c017e","updatedBy":"4d730cf1-e190-49af-af02-ea52983c017e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f814031e-f17e-11ec-bdc4-72d39f810808","type":"Microsoft.Authorization/roleAssignments","name":"f814031e-f17e-11ec-bdc4-72d39f810808"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-22T23:05:28.0851041Z","updatedOn":"2022-06-22T23:05:28.0851041Z","createdBy":"395c8203-ec60-4c13-9730-5f960088f92b","updatedBy":"395c8203-ec60-4c13-9730-5f960088f92b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e672e20f-477a-4475-a5cf-2f7d8401bbc3","type":"Microsoft.Authorization/roleAssignments","name":"e672e20f-477a-4475-a5cf-2f7d8401bbc3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-23T19:51:00.2507743Z","updatedOn":"2022-06-23T19:51:00.2507743Z","createdBy":"8b564e25-6f45-4437-bf8b-9ac6596a5f15","updatedBy":"8b564e25-6f45-4437-bf8b-9ac6596a5f15","delegatedManagedIdentityResourceId":null,"description":"Adding + permissions to SP for running E2E tests. Currently getting error \"The client + ''0cea35e6-9763-4ef3-b2d2-8c241ab58828'' with object id ''0cea35e6-9763-4ef3-b2d2-8c241ab58828'' + does not have authorization to perform action ''Microsoft.Resources/subscriptions/resourcegroups/write'' + over scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/e2erg-indusridebld56865086-VzY'' + or the scope is invalid. If access was recently granted, please refresh your + credentials.\""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5cfb2437-e152-48d8-bb2a-54c89f27707a","type":"Microsoft.Authorization/roleAssignments","name":"5cfb2437-e152-48d8-bb2a-54c89f27707a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-23T21:01:02.9667346Z","updatedOn":"2022-06-23T21:01:02.9667346Z","createdBy":"34d4f830-f9ea-4525-9ca2-b784e3874713","updatedBy":"34d4f830-f9ea-4525-9ca2-b784e3874713","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9527af65-f337-11ec-a743-daea1d98cac0","type":"Microsoft.Authorization/roleAssignments","name":"9527af65-f337-11ec-a743-daea1d98cac0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-24T17:09:56.9678432Z","updatedOn":"2022-06-24T17:09:56.9678432Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba5c2d82-3e34-4b2b-9c5f-27d9d33955ff","type":"Microsoft.Authorization/roleAssignments","name":"ba5c2d82-3e34-4b2b-9c5f-27d9d33955ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-24T17:36:02.0450264Z","updatedOn":"2022-06-24T17:36:02.0450264Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/16b4850b-3e9c-435e-b3f6-b83e02b9146e","type":"Microsoft.Authorization/roleAssignments","name":"16b4850b-3e9c-435e-b3f6-b83e02b9146e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-27T17:58:47.2112371Z","updatedOn":"2022-06-27T17:58:47.2112371Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca6de50e-f642-11ec-83b8-002248773529","type":"Microsoft.Authorization/roleAssignments","name":"ca6de50e-f642-11ec-83b8-002248773529"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-27T21:10:04.9812035Z","updatedOn":"2022-06-27T21:10:04.9812035Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ad97eed-2e77-485f-a2ec-132f3647aef7","type":"Microsoft.Authorization/roleAssignments","name":"8ad97eed-2e77-485f-a2ec-132f3647aef7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T15:43:32.3787489Z","updatedOn":"2022-06-28T15:43:32.3787489Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a1acaea-f6f9-11ec-9ddd-6e578000e34a","type":"Microsoft.Authorization/roleAssignments","name":"0a1acaea-f6f9-11ec-9ddd-6e578000e34a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-29T05:30:23.4400722Z","updatedOn":"2022-06-29T05:30:23.4400722Z","createdBy":"65cfb39a-5f29-4247-8230-9ec6695c5878","updatedBy":"65cfb39a-5f29-4247-8230-9ec6695c5878","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/546c078e-3855-479c-b7aa-b38d4e68bb9f","type":"Microsoft.Authorization/roleAssignments","name":"546c078e-3855-479c-b7aa-b38d4e68bb9f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-29T17:04:07.7235161Z","updatedOn":"2022-06-29T17:04:07.7235161Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/48cbe38c-7d32-4174-8026-7a16994dcdc8","type":"Microsoft.Authorization/roleAssignments","name":"48cbe38c-7d32-4174-8026-7a16994dcdc8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-30T09:06:03.1760556Z","updatedOn":"2022-06-30T09:06:03.1760556Z","createdBy":"42a33e33-55bb-4995-80a2-d1b745371591","updatedBy":"42a33e33-55bb-4995-80a2-d1b745371591","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd7da313-f853-11ec-9993-000d3ac42d43","type":"Microsoft.Authorization/roleAssignments","name":"dd7da313-f853-11ec-9993-000d3ac42d43"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-30T09:06:06.3942443Z","updatedOn":"2022-06-30T09:06:06.3942443Z","createdBy":"42a33e33-55bb-4995-80a2-d1b745371591","updatedBy":"42a33e33-55bb-4995-80a2-d1b745371591","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df6c9d2d-f853-11ec-9993-000d3ac42d43","type":"Microsoft.Authorization/roleAssignments","name":"df6c9d2d-f853-11ec-9993-000d3ac42d43"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-04T08:11:46.0687018Z","updatedOn":"2022-07-04T08:11:46.0687018Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40b64297-b408-4d22-bf82-9b6897914b91","type":"Microsoft.Authorization/roleAssignments","name":"40b64297-b408-4d22-bf82-9b6897914b91"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T17:33:53.2930064Z","updatedOn":"2022-07-05T17:33:53.2930064Z","createdBy":"8e17b6a3-5430-4318-a670-b9df4d106675","updatedBy":"8e17b6a3-5430-4318-a670-b9df4d106675","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a23e2991-fc88-11ec-b99d-fe2d37eeee3f","type":"Microsoft.Authorization/roleAssignments","name":"a23e2991-fc88-11ec-b99d-fe2d37eeee3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T17:33:56.8130933Z","updatedOn":"2022-07-05T17:33:56.8130933Z","createdBy":"8e17b6a3-5430-4318-a670-b9df4d106675","updatedBy":"8e17b6a3-5430-4318-a670-b9df4d106675","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a45a4b60-fc88-11ec-b99d-fe2d37eeee3f","type":"Microsoft.Authorization/roleAssignments","name":"a45a4b60-fc88-11ec-b99d-fe2d37eeee3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T20:50:59.7297844Z","updatedOn":"2022-07-05T20:50:59.7297844Z","createdBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","updatedBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2bf6d528-fca4-11ec-ae95-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2bf6d528-fca4-11ec-ae95-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T20:51:03.8324709Z","updatedOn":"2022-07-05T20:51:03.8324709Z","createdBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","updatedBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2eb27754-fca4-11ec-ae95-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2eb27754-fca4-11ec-ae95-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-06T18:17:04.1589374Z","updatedOn":"2022-07-06T18:17:04.1589374Z","createdBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","updatedBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d66150ce-778b-48b7-9eec-4af15a62d5fb","type":"Microsoft.Authorization/roleAssignments","name":"d66150ce-778b-48b7-9eec-4af15a62d5fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T04:14:56.8781019Z","updatedOn":"2022-07-07T04:14:56.8781019Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d244381e-1809-4aab-b4bf-f6c45efad8a0","type":"Microsoft.Authorization/roleAssignments","name":"d244381e-1809-4aab-b4bf-f6c45efad8a0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T08:02:02.2250086Z","updatedOn":"2022-07-07T08:02:02.2250086Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/209367bb-572e-4543-8ffa-261ab9e3e98e","type":"Microsoft.Authorization/roleAssignments","name":"209367bb-572e-4543-8ffa-261ab9e3e98e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T09:51:45.7545095Z","updatedOn":"2022-07-07T09:51:45.7545095Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9b5f542-ed8b-4591-902d-70f85896c4a9","type":"Microsoft.Authorization/roleAssignments","name":"a9b5f542-ed8b-4591-902d-70f85896c4a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T10:20:52.8789655Z","updatedOn":"2022-07-07T10:20:52.8789655Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67fb0754-2c67-405f-b195-0fc9fb022fc7","type":"Microsoft.Authorization/roleAssignments","name":"67fb0754-2c67-405f-b195-0fc9fb022fc7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T23:54:13.9262172Z","updatedOn":"2022-07-07T23:54:13.9262172Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a13e2124-87c9-402c-9611-fbb6a1b4e4b8","type":"Microsoft.Authorization/roleAssignments","name":"a13e2124-87c9-402c-9611-fbb6a1b4e4b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T02:43:53.0148931Z","updatedOn":"2022-07-08T02:43:53.0148931Z","createdBy":"34e81c0e-d5e6-478f-8544-2686be295567","updatedBy":"34e81c0e-d5e6-478f-8544-2686be295567","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc3fbff8-fe67-11ec-ac64-f69a873c5ca0","type":"Microsoft.Authorization/roleAssignments","name":"cc3fbff8-fe67-11ec-ac64-f69a873c5ca0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T02:43:59.1573960Z","updatedOn":"2022-07-08T02:43:59.1573960Z","createdBy":"34e81c0e-d5e6-478f-8544-2686be295567","updatedBy":"34e81c0e-d5e6-478f-8544-2686be295567","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cfe77b1e-fe67-11ec-ac64-f69a873c5ca0","type":"Microsoft.Authorization/roleAssignments","name":"cfe77b1e-fe67-11ec-ac64-f69a873c5ca0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T16:06:18.0035556Z","updatedOn":"2022-07-08T16:06:18.0035556Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/72a67832-6c5d-4b3e-9067-ceef4bc5dcba","type":"Microsoft.Authorization/roleAssignments","name":"72a67832-6c5d-4b3e-9067-ceef4bc5dcba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T16:17:28.2042061Z","updatedOn":"2022-07-08T16:17:28.2042061Z","createdBy":"cef6ee5d-6edd-413d-9eb7-c205c9802a3f","updatedBy":"cef6ee5d-6edd-413d-9eb7-c205c9802a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82dd5217-b1f7-4be5-8f03-5899493aa314","type":"Microsoft.Authorization/roleAssignments","name":"82dd5217-b1f7-4be5-8f03-5899493aa314"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T17:53:10.4671781Z","updatedOn":"2022-07-08T17:53:10.4671781Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4227602-fee6-11ec-ab63-000d3af64fa4","type":"Microsoft.Authorization/roleAssignments","name":"d4227602-fee6-11ec-ab63-000d3af64fa4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-11T21:30:54.4523951Z","updatedOn":"2022-07-11T21:30:54.4523951Z","createdBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","updatedBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a77632d-0fee-46d8-9f0d-d2ed44a26602","type":"Microsoft.Authorization/roleAssignments","name":"0a77632d-0fee-46d8-9f0d-d2ed44a26602"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-11T22:18:13.7630778Z","updatedOn":"2022-07-11T22:18:13.7630778Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3abee7ef-2e53-478a-b9cd-911e8768e9d6","type":"Microsoft.Authorization/roleAssignments","name":"3abee7ef-2e53-478a-b9cd-911e8768e9d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T04:19:56.7878684Z","updatedOn":"2022-07-12T04:19:56.7878684Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2335b0a-0199-11ed-9afe-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e2335b0a-0199-11ed-9afe-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T04:20:00.9520791Z","updatedOn":"2022-07-12T04:20:00.9520791Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4b0f194-0199-11ed-9afe-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e4b0f194-0199-11ed-9afe-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T11:12:50.2042423Z","updatedOn":"2022-07-12T11:12:50.2042423Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad70c028-d6b8-4efb-96d4-0bf9aa09566c","type":"Microsoft.Authorization/roleAssignments","name":"ad70c028-d6b8-4efb-96d4-0bf9aa09566c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T17:55:10.7687684Z","updatedOn":"2022-07-12T17:55:10.7687684Z","createdBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","updatedBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c642f341-020b-11ed-bc6a-02136178e3ad","type":"Microsoft.Authorization/roleAssignments","name":"c642f341-020b-11ed-bc6a-02136178e3ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T17:55:14.4120596Z","updatedOn":"2022-07-12T17:55:14.4120596Z","createdBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","updatedBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c87a1349-020b-11ed-bc6a-02136178e3ad","type":"Microsoft.Authorization/roleAssignments","name":"c87a1349-020b-11ed-bc6a-02136178e3ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T18:08:22.2861717Z","updatedOn":"2022-07-12T18:08:22.2861717Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/421ff42e-57e3-4b62-b4e6-e8e561eb7212","type":"Microsoft.Authorization/roleAssignments","name":"421ff42e-57e3-4b62-b4e6-e8e561eb7212"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T00:41:08.5337376Z","updatedOn":"2022-07-13T00:41:08.5337376Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78c85e30-0244-11ed-914f-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"78c85e30-0244-11ed-914f-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T08:27:18.8954270Z","updatedOn":"2022-07-13T08:27:18.8954270Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eda0948f-04c7-43eb-a560-0fe9db9681c5","type":"Microsoft.Authorization/roleAssignments","name":"eda0948f-04c7-43eb-a560-0fe9db9681c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T20:09:22.9119861Z","updatedOn":"2022-07-13T20:09:22.9119861Z","createdBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","updatedBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/af556422-02e7-11ed-b490-3e22fbbb55c2","type":"Microsoft.Authorization/roleAssignments","name":"af556422-02e7-11ed-b490-3e22fbbb55c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T20:09:36.4140354Z","updatedOn":"2022-07-13T20:09:36.4140354Z","createdBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","updatedBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b77f8f56-02e7-11ed-b490-3e22fbbb55c2","type":"Microsoft.Authorization/roleAssignments","name":"b77f8f56-02e7-11ed-b490-3e22fbbb55c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-15T03:29:06.6862069Z","updatedOn":"2022-07-15T03:29:06.6862069Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/77952ad7-ace5-45a1-9395-7025cd43927b","type":"Microsoft.Authorization/roleAssignments","name":"77952ad7-ace5-45a1-9395-7025cd43927b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-15T21:17:33.7746216Z","updatedOn":"2022-07-15T21:17:33.7746216Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8aa04a4a-0483-11ed-bcf7-00155dfde705","type":"Microsoft.Authorization/roleAssignments","name":"8aa04a4a-0483-11ed-bcf7-00155dfde705"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-15T21:17:36.9140017Z","updatedOn":"2022-07-15T21:17:36.9140017Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c49fe02-0483-11ed-bcf7-00155dfde705","type":"Microsoft.Authorization/roleAssignments","name":"8c49fe02-0483-11ed-bcf7-00155dfde705"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-18T18:31:44.6615613Z","updatedOn":"2022-07-18T18:31:44.6615613Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9913aa55-1df8-4b7f-b351-bfb577c653b7","type":"Microsoft.Authorization/roleAssignments","name":"9913aa55-1df8-4b7f-b351-bfb577c653b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T03:14:49.6541206Z","updatedOn":"2022-07-19T03:14:49.6541206Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f2a2c960-0710-11ed-af5f-000d3a183800","type":"Microsoft.Authorization/roleAssignments","name":"f2a2c960-0710-11ed-af5f-000d3a183800"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T03:14:52.8659954Z","updatedOn":"2022-07-19T03:14:52.8659954Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f491d46c-0710-11ed-af5f-000d3a183800","type":"Microsoft.Authorization/roleAssignments","name":"f491d46c-0710-11ed-af5f-000d3a183800"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T17:08:01.7695005Z","updatedOn":"2022-07-19T17:08:01.7695005Z","createdBy":"08a0af07-b641-44c2-a174-9b85f2db0af1","updatedBy":"08a0af07-b641-44c2-a174-9b85f2db0af1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57cd16da-0785-11ed-91ee-06d9bf349677","type":"Microsoft.Authorization/roleAssignments","name":"57cd16da-0785-11ed-91ee-06d9bf349677"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T17:28:52.5405320Z","updatedOn":"2022-07-19T17:28:52.5405320Z","createdBy":"395c8203-ec60-4c13-9730-5f960088f92b","updatedBy":"395c8203-ec60-4c13-9730-5f960088f92b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ab94087-7d29-4798-88b0-5ba408389266","type":"Microsoft.Authorization/roleAssignments","name":"6ab94087-7d29-4798-88b0-5ba408389266"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T20:15:51.4129938Z","updatedOn":"2022-07-19T20:15:51.4129938Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/04aeccd9-485e-4667-83ec-0940615dc03f","type":"Microsoft.Authorization/roleAssignments","name":"04aeccd9-485e-4667-83ec-0940615dc03f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-20T00:07:29.4350314Z","updatedOn":"2022-07-20T00:07:29.4350314Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1165576-07bf-11ed-a49d-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"f1165576-07bf-11ed-a49d-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-20T00:07:32.8732624Z","updatedOn":"2022-07-20T00:07:32.8732624Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f358bfdc-07bf-11ed-a49d-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"f358bfdc-07bf-11ed-a49d-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-21T12:09:08.1001074Z","updatedOn":"2022-07-21T12:09:08.1001074Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ebb1f193-08ed-11ed-a201-00224878d5c3","type":"Microsoft.Authorization/roleAssignments","name":"ebb1f193-08ed-11ed-a201-00224878d5c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-21T12:09:11.3486909Z","updatedOn":"2022-07-21T12:09:11.3486909Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/edaa26e6-08ed-11ed-a201-00224878d5c3","type":"Microsoft.Authorization/roleAssignments","name":"edaa26e6-08ed-11ed-a201-00224878d5c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-22T09:35:51.5690357Z","updatedOn":"2022-07-22T09:35:51.5690357Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd07b0f6-982a-4d85-9fdd-d44049270cbd","type":"Microsoft.Authorization/roleAssignments","name":"dd07b0f6-982a-4d85-9fdd-d44049270cbd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-24T17:57:05.6570323Z","updatedOn":"2022-07-24T17:57:05.6570323Z","createdBy":"567715d4-847a-4def-acb2-d157ebfa8439","updatedBy":"567715d4-847a-4def-acb2-d157ebfa8439","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/069fdbd1-0b7a-11ed-aa35-a2d44093b98e","type":"Microsoft.Authorization/roleAssignments","name":"069fdbd1-0b7a-11ed-aa35-a2d44093b98e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-24T17:57:10.6197123Z","updatedOn":"2022-07-24T17:57:10.6197123Z","createdBy":"567715d4-847a-4def-acb2-d157ebfa8439","updatedBy":"567715d4-847a-4def-acb2-d157ebfa8439","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09844b71-0b7a-11ed-aa35-a2d44093b98e","type":"Microsoft.Authorization/roleAssignments","name":"09844b71-0b7a-11ed-aa35-a2d44093b98e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-25T23:51:56.7193261Z","updatedOn":"2022-07-25T23:51:56.7193261Z","createdBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","updatedBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3d43338-0c74-11ed-a558-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"c3d43338-0c74-11ed-a558-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-25T23:51:59.2783640Z","updatedOn":"2022-07-25T23:51:59.2783640Z","createdBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","updatedBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5533d8a-0c74-11ed-a558-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"c5533d8a-0c74-11ed-a558-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-28T04:50:50.7078047Z","updatedOn":"2022-07-28T04:50:50.7078047Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da343068-0e30-11ed-91a5-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"da343068-0e30-11ed-91a5-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-28T04:50:53.7664793Z","updatedOn":"2022-07-28T04:50:53.7664793Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dbfbe50a-0e30-11ed-91a5-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"dbfbe50a-0e30-11ed-91a5-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-29T16:16:58.9941922Z","updatedOn":"2022-07-29T16:16:58.9941922Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/880fa390-3bd7-4075-8071-e33e45423e36","type":"Microsoft.Authorization/roleAssignments","name":"880fa390-3bd7-4075-8071-e33e45423e36"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-31T19:34:43.4356237Z","updatedOn":"2022-07-31T19:34:43.4356237Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d352709e-1107-11ed-be9f-beee8f4e086d","type":"Microsoft.Authorization/roleAssignments","name":"d352709e-1107-11ed-be9f-beee8f4e086d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-04T04:49:44.0295503Z","updatedOn":"2022-08-04T04:49:44.0295503Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da803814-13b0-11ed-b124-e2848198df96","type":"Microsoft.Authorization/roleAssignments","name":"da803814-13b0-11ed-b124-e2848198df96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-04T04:49:49.5833937Z","updatedOn":"2022-08-04T04:49:49.5833937Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd76350a-13b0-11ed-b124-e2848198df96","type":"Microsoft.Authorization/roleAssignments","name":"dd76350a-13b0-11ed-b124-e2848198df96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-05T14:15:13.1099119Z","updatedOn":"2022-08-05T14:15:13.1099119Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7a4c8f3-b60c-4341-acdb-3b8d60976116","type":"Microsoft.Authorization/roleAssignments","name":"e7a4c8f3-b60c-4341-acdb-3b8d60976116"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-08T08:55:19.4739379Z","updatedOn":"2022-08-08T08:55:19.4739379Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3f792cd-16f7-11ed-afb5-000d3a0611f6","type":"Microsoft.Authorization/roleAssignments","name":"d3f792cd-16f7-11ed-afb5-000d3a0611f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-08T14:33:12.5245418Z","updatedOn":"2022-08-08T14:33:12.5245418Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0184de3c-04d4-433f-9221-2df571d921a5","type":"Microsoft.Authorization/roleAssignments","name":"0184de3c-04d4-433f-9221-2df571d921a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-08T17:41:09.4113992Z","updatedOn":"2022-08-08T17:41:09.4113992Z","createdBy":"19263705-0667-497e-85e7-a930fa3441ec","updatedBy":"19263705-0667-497e-85e7-a930fa3441ec","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4919e77a-1741-11ed-b6db-0022487d76b7","type":"Microsoft.Authorization/roleAssignments","name":"4919e77a-1741-11ed-b6db-0022487d76b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:45:21.8695164Z","updatedOn":"2022-08-12T05:45:21.8695164Z","createdBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","updatedBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f23b86bb-1a01-11ed-b496-66a3f79a5cd7","type":"Microsoft.Authorization/roleAssignments","name":"f23b86bb-1a01-11ed-b496-66a3f79a5cd7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:45:28.6932347Z","updatedOn":"2022-08-12T05:45:28.6932347Z","createdBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","updatedBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6a0cefb-1a01-11ed-b496-66a3f79a5cd7","type":"Microsoft.Authorization/roleAssignments","name":"f6a0cefb-1a01-11ed-b496-66a3f79a5cd7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:57:08.1910800Z","updatedOn":"2022-08-12T05:57:08.1910800Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/97fa583a-1a03-11ed-8141-0022484c72fc","type":"Microsoft.Authorization/roleAssignments","name":"97fa583a-1a03-11ed-8141-0022484c72fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:57:16.8561530Z","updatedOn":"2022-08-12T05:57:16.8561530Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9bed6f7d-1a03-11ed-8141-0022484c72fc","type":"Microsoft.Authorization/roleAssignments","name":"9bed6f7d-1a03-11ed-8141-0022484c72fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T10:56:06.3724576Z","updatedOn":"2022-08-12T10:56:06.3724576Z","createdBy":"312333b2-b433-4e3c-bb6f-f60419faa168","updatedBy":"312333b2-b433-4e3c-bb6f-f60419faa168","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5da07cdc-1a2d-11ed-97c4-36311d0c4477","type":"Microsoft.Authorization/roleAssignments","name":"5da07cdc-1a2d-11ed-97c4-36311d0c4477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T10:56:12.1781791Z","updatedOn":"2022-08-12T10:56:12.1781791Z","createdBy":"312333b2-b433-4e3c-bb6f-f60419faa168","updatedBy":"312333b2-b433-4e3c-bb6f-f60419faa168","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/60dfcd5b-1a2d-11ed-97c4-36311d0c4477","type":"Microsoft.Authorization/roleAssignments","name":"60dfcd5b-1a2d-11ed-97c4-36311d0c4477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T23:47:07.1823504Z","updatedOn":"2022-08-12T23:47:07.1823504Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12955060-1a99-11ed-80ae-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"12955060-1a99-11ed-80ae-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T23:47:10.3981690Z","updatedOn":"2022-08-12T23:47:10.3981690Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1452bfa0-1a99-11ed-80ae-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"1452bfa0-1a99-11ed-80ae-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-14T04:59:52.9674492Z","updatedOn":"2022-08-14T04:59:52.9674492Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee779146-1b8d-11ed-ad0f-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"ee779146-1b8d-11ed-ad0f-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-14T04:59:57.7071631Z","updatedOn":"2022-08-14T04:59:57.7071631Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f13fa4b3-1b8d-11ed-ad0f-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"f13fa4b3-1b8d-11ed-ad0f-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-16T23:10:44.7176056Z","updatedOn":"2022-08-16T23:10:44.7176056Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1d255e1-0f5e-41c4-93eb-e683b5cf2ca4","type":"Microsoft.Authorization/roleAssignments","name":"f1d255e1-0f5e-41c4-93eb-e683b5cf2ca4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-16T23:31:16.6919768Z","updatedOn":"2022-08-16T23:31:16.6919768Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a45cbdf-008d-4716-96eb-38389a417827","type":"Microsoft.Authorization/roleAssignments","name":"2a45cbdf-008d-4716-96eb-38389a417827"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-18T00:30:35.0176680Z","updatedOn":"2022-08-18T00:30:35.0176680Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f91d7aa2-1e8c-11ed-b1a6-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f91d7aa2-1e8c-11ed-b1a6-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-18T00:30:38.2729005Z","updatedOn":"2022-08-18T00:30:38.2729005Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb0d664c-1e8c-11ed-b1a6-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"fb0d664c-1e8c-11ed-b1a6-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-18T15:52:38.7113712Z","updatedOn":"2022-08-18T15:52:38.7113712Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8772ddf6-c657-4010-ab7b-5d8627ba3601","type":"Microsoft.Authorization/roleAssignments","name":"8772ddf6-c657-4010-ab7b-5d8627ba3601"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-22T02:37:48.0231077Z","updatedOn":"2022-08-22T02:37:48.0231077Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7c56d8ab-b9ef-4d93-ae58-838c1209c621","type":"Microsoft.Authorization/roleAssignments","name":"7c56d8ab-b9ef-4d93-ae58-838c1209c621"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-22T02:41:47.6649206Z","updatedOn":"2022-08-22T02:41:47.6649206Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b66d25d3-0cb1-4413-9445-caf5db5b40c9","type":"Microsoft.Authorization/roleAssignments","name":"b66d25d3-0cb1-4413-9445-caf5db5b40c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-22T06:25:39.4709093Z","updatedOn":"2022-08-22T06:25:39.4709093Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb7ca852-9adb-4205-a828-a17ca774a8a4","type":"Microsoft.Authorization/roleAssignments","name":"eb7ca852-9adb-4205-a828-a17ca774a8a4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T02:16:22.3620594Z","updatedOn":"2022-08-23T02:16:22.3620594Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94556c2e-2289-11ed-9371-000d3ac51247","type":"Microsoft.Authorization/roleAssignments","name":"94556c2e-2289-11ed-9371-000d3ac51247"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T08:56:15.8011348Z","updatedOn":"2022-08-23T08:56:15.8011348Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7117911f-22c1-11ed-be42-000d3a084591","type":"Microsoft.Authorization/roleAssignments","name":"7117911f-22c1-11ed-be42-000d3a084591"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T08:56:21.1375800Z","updatedOn":"2022-08-23T08:56:21.1375800Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/73becf7d-22c1-11ed-be42-000d3a084591","type":"Microsoft.Authorization/roleAssignments","name":"73becf7d-22c1-11ed-be42-000d3a084591"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T14:02:07.2343806Z","updatedOn":"2022-08-23T14:02:07.2343806Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b9bf190-22ec-11ed-8f86-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"2b9bf190-22ec-11ed-8f86-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T14:02:10.9785694Z","updatedOn":"2022-08-23T14:02:10.9785694Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2dd0099d-22ec-11ed-8f86-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"2dd0099d-22ec-11ed-8f86-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T23:22:24.8240339Z","updatedOn":"2022-08-23T23:22:24.8240339Z","createdBy":"395c8203-ec60-4c13-9730-5f960088f92b","updatedBy":"395c8203-ec60-4c13-9730-5f960088f92b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/abda2c2b-daa3-42bb-abbd-e13cec5fb6b3","type":"Microsoft.Authorization/roleAssignments","name":"abda2c2b-daa3-42bb-abbd-e13cec5fb6b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T23:23:32.8133517Z","updatedOn":"2022-08-23T23:23:32.8133517Z","createdBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","updatedBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/994cd0f0-233a-11ed-90e8-66137476d927","type":"Microsoft.Authorization/roleAssignments","name":"994cd0f0-233a-11ed-90e8-66137476d927"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T23:23:35.3751695Z","updatedOn":"2022-08-23T23:23:35.3751695Z","createdBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","updatedBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9add5dfe-233a-11ed-90e8-66137476d927","type":"Microsoft.Authorization/roleAssignments","name":"9add5dfe-233a-11ed-90e8-66137476d927"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-26T02:48:17.4348909Z","updatedOn":"2022-08-26T02:48:17.4348909Z","createdBy":"d297f8cf-3724-4da6-ae0c-6ea639225042","updatedBy":"d297f8cf-3724-4da6-ae0c-6ea639225042","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9125ee0-b9af-4d25-a2e5-886ad210b3e8","type":"Microsoft.Authorization/roleAssignments","name":"e9125ee0-b9af-4d25-a2e5-886ad210b3e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-29T22:08:43.6923850Z","updatedOn":"2022-08-29T22:08:43.6923850Z","createdBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","updatedBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24b2acd4-27e7-11ed-aa57-9eb40d98da7e","type":"Microsoft.Authorization/roleAssignments","name":"24b2acd4-27e7-11ed-aa57-9eb40d98da7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-29T22:08:46.8049719Z","updatedOn":"2022-08-29T22:08:46.8049719Z","createdBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","updatedBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26a4fa7f-27e7-11ed-aa57-9eb40d98da7e","type":"Microsoft.Authorization/roleAssignments","name":"26a4fa7f-27e7-11ed-aa57-9eb40d98da7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-29T22:11:06.3024798Z","updatedOn":"2022-08-29T22:11:06.3024798Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63e0b566-276e-405d-8d4e-1c82b1f937c6","type":"Microsoft.Authorization/roleAssignments","name":"63e0b566-276e-405d-8d4e-1c82b1f937c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:50:53.4210961Z","updatedOn":"2022-08-30T23:50:53.4210961Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94aa5054-28be-11ed-a6d3-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"94aa5054-28be-11ed-a6d3-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:50:57.2039466Z","updatedOn":"2022-08-30T23:50:57.2039466Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96f9353c-28be-11ed-a6d3-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"96f9353c-28be-11ed-a6d3-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:55:18.1665901Z","updatedOn":"2022-08-30T23:55:18.1665901Z","createdBy":"08de6591-dec9-4255-ab17-d6919151fadd","updatedBy":"08de6591-dec9-4255-ab17-d6919151fadd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/32738d64-28bf-11ed-8c18-d28ee6de8df0","type":"Microsoft.Authorization/roleAssignments","name":"32738d64-28bf-11ed-8c18-d28ee6de8df0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:55:21.0832794Z","updatedOn":"2022-08-30T23:55:21.0832794Z","createdBy":"08de6591-dec9-4255-ab17-d6919151fadd","updatedBy":"08de6591-dec9-4255-ab17-d6919151fadd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/347773d2-28bf-11ed-8c18-d28ee6de8df0","type":"Microsoft.Authorization/roleAssignments","name":"347773d2-28bf-11ed-8c18-d28ee6de8df0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-31T23:23:54.3892344Z","updatedOn":"2022-08-31T23:23:54.3892344Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa44d69e-2983-11ed-aa08-92f3f7a6dd9b","type":"Microsoft.Authorization/roleAssignments","name":"fa44d69e-2983-11ed-aa08-92f3f7a6dd9b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-31T23:23:57.6913146Z","updatedOn":"2022-08-31T23:23:57.6913146Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc468884-2983-11ed-aa08-92f3f7a6dd9b","type":"Microsoft.Authorization/roleAssignments","name":"fc468884-2983-11ed-aa08-92f3f7a6dd9b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-01T06:08:41.4708815Z","updatedOn":"2022-09-01T06:08:41.4708815Z","createdBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","updatedBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/86088e13-29bc-11ed-9e75-ee990064eed4","type":"Microsoft.Authorization/roleAssignments","name":"86088e13-29bc-11ed-9e75-ee990064eed4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-01T14:36:10.3068118Z","updatedOn":"2022-09-01T14:36:10.3068118Z","createdBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","updatedBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b6d0b78-2a03-11ed-8b33-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6b6d0b78-2a03-11ed-8b33-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-01T14:36:19.4793808Z","updatedOn":"2022-09-01T14:36:19.4793808Z","createdBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","updatedBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70bc79b0-2a03-11ed-8b33-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"70bc79b0-2a03-11ed-8b33-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-05T20:13:38.7677056Z","updatedOn":"2022-09-05T20:13:38.7677056Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/396cb586-2d57-11ed-8f60-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"396cb586-2d57-11ed-8f60-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-06T19:58:31.4389144Z","updatedOn":"2022-09-06T19:58:31.4389144Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47bb56b5-2e1e-11ed-9020-000d3a6d9a18","type":"Microsoft.Authorization/roleAssignments","name":"47bb56b5-2e1e-11ed-9020-000d3a6d9a18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-06T19:58:35.6283701Z","updatedOn":"2022-09-06T19:58:35.6283701Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a30eda3-2e1e-11ed-9020-000d3a6d9a18","type":"Microsoft.Authorization/roleAssignments","name":"4a30eda3-2e1e-11ed-9020-000d3a6d9a18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-08T14:38:34.2901394Z","updatedOn":"2022-09-08T14:38:34.2901394Z","createdBy":"61a5600d-3609-43e4-9dd8-bcf58e3ce51f","updatedBy":"61a5600d-3609-43e4-9dd8-bcf58e3ce51f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea4dcb49-2f83-11ed-9efa-000d3a181b06","type":"Microsoft.Authorization/roleAssignments","name":"ea4dcb49-2f83-11ed-9efa-000d3a181b06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-08T17:46:08.1384737Z","updatedOn":"2022-09-08T17:46:08.1384737Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1dc95ee4-2f9e-11ed-89d2-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"1dc95ee4-2f9e-11ed-89d2-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-08T17:46:11.6717566Z","updatedOn":"2022-09-08T17:46:11.6717566Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2008f142-2f9e-11ed-89d2-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2008f142-2f9e-11ed-89d2-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-12T23:42:55.7564365Z","updatedOn":"2022-09-12T23:42:55.7564365Z","createdBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","updatedBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fa0c69c-32f4-11ed-aee5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"9fa0c69c-32f4-11ed-aee5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-12T23:43:04.5756788Z","updatedOn":"2022-09-12T23:43:04.5756788Z","createdBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","updatedBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a4e1656c-32f4-11ed-aee5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"a4e1656c-32f4-11ed-aee5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T00:18:28.3312561Z","updatedOn":"2022-09-13T00:18:28.3312561Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/965f9705-32f9-11ed-a03a-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"965f9705-32f9-11ed-a03a-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T00:18:32.9627131Z","updatedOn":"2022-09-13T00:18:32.9627131Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9918693b-32f9-11ed-a03a-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"9918693b-32f9-11ed-a03a-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T05:20:21.8356068Z","updatedOn":"2022-09-13T05:20:21.8356068Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14ac626a-3acb-4867-a3ce-32d85da9a0e7","type":"Microsoft.Authorization/roleAssignments","name":"14ac626a-3acb-4867-a3ce-32d85da9a0e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T20:31:46.8554799Z","updatedOn":"2022-09-13T20:31:46.8554799Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d71c7b8-3398-11ed-ad11-e6ebdcb69945","type":"Microsoft.Authorization/roleAssignments","name":"6d71c7b8-3398-11ed-ad11-e6ebdcb69945"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T20:31:50.1456004Z","updatedOn":"2022-09-13T20:31:50.1456004Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ca65e0f-3398-11ed-ad11-e6ebdcb69945","type":"Microsoft.Authorization/roleAssignments","name":"7ca65e0f-3398-11ed-ad11-e6ebdcb69945"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T23:17:04.2606442Z","updatedOn":"2022-09-13T23:17:04.2606442Z","createdBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","updatedBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ecfc544-bb26-4b57-9c52-7a3751bf5b9a","type":"Microsoft.Authorization/roleAssignments","name":"8ecfc544-bb26-4b57-9c52-7a3751bf5b9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-14T20:11:09.0922785Z","updatedOn":"2022-09-14T20:11:09.0922785Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/43c2f0e6-bf81-4e83-bf98-eb7d592639a5","type":"Microsoft.Authorization/roleAssignments","name":"43c2f0e6-bf81-4e83-bf98-eb7d592639a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-15T17:44:22.3186068Z","updatedOn":"2022-09-15T17:44:22.3186068Z","createdBy":"2182129f-e575-4986-a7fb-2be7772ba46f","updatedBy":"2182129f-e575-4986-a7fb-2be7772ba46f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/05e871b7-351e-11ed-8cc7-32a64839c39d","type":"Microsoft.Authorization/roleAssignments","name":"05e871b7-351e-11ed-8cc7-32a64839c39d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ab4d3d-a1bf-4477-8ad9-8359bc988f69","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-15T22:34:54.1872835Z","updatedOn":"2022-09-15T22:34:54.1872835Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9ac6f9f-a6dc-43e5-bc80-6e362547ff03","type":"Microsoft.Authorization/roleAssignments","name":"a9ac6f9f-a6dc-43e5-bc80-6e362547ff03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-15T22:36:25.6520797Z","updatedOn":"2022-09-15T22:36:25.6520797Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a48452ae-2a7a-4a35-bc22-de46608a8c12","type":"Microsoft.Authorization/roleAssignments","name":"a48452ae-2a7a-4a35-bc22-de46608a8c12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ab4d3d-a1bf-4477-8ad9-8359bc988f69","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-16T03:26:44.5972975Z","updatedOn":"2022-09-16T03:26:44.5972975Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7ddb897-f37b-4617-8b62-26a42b72d0fd","type":"Microsoft.Authorization/roleAssignments","name":"b7ddb897-f37b-4617-8b62-26a42b72d0fd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-16T03:27:20.0290180Z","updatedOn":"2022-09-16T03:27:20.0290180Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36cbdcc8-a70b-42a9-836a-9bb89dbd301a","type":"Microsoft.Authorization/roleAssignments","name":"36cbdcc8-a70b-42a9-836a-9bb89dbd301a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-16T14:21:41.5963217Z","updatedOn":"2022-09-16T14:21:41.5963217Z","createdBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","updatedBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc428d08-6f99-4619-9554-500bfc75b861","type":"Microsoft.Authorization/roleAssignments","name":"bc428d08-6f99-4619-9554-500bfc75b861"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T01:59:15.5981081Z","updatedOn":"2022-09-19T01:59:15.5981081Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a92c46b1-37be-11ed-8745-00224857f2c5","type":"Microsoft.Authorization/roleAssignments","name":"a92c46b1-37be-11ed-8745-00224857f2c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T01:59:20.5513267Z","updatedOn":"2022-09-19T01:59:20.5513267Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac11dbd2-37be-11ed-8745-00224857f2c5","type":"Microsoft.Authorization/roleAssignments","name":"ac11dbd2-37be-11ed-8745-00224857f2c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T09:51:42.7586328Z","updatedOn":"2022-09-19T09:51:42.7586328Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1cb1222d-5cb9-4d4a-a901-850f4a0d08da","type":"Microsoft.Authorization/roleAssignments","name":"1cb1222d-5cb9-4d4a-a901-850f4a0d08da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T18:49:44.8806347Z","updatedOn":"2022-09-19T18:49:44.8806347Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9c6a4b4-714e-45fc-8bc4-11c41f8c306a","type":"Microsoft.Authorization/roleAssignments","name":"b9c6a4b4-714e-45fc-8bc4-11c41f8c306a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T22:48:28.6777206Z","updatedOn":"2022-09-19T22:48:28.6777206Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ea76d8b-9daa-4d62-bfc8-bb9013ecec53","type":"Microsoft.Authorization/roleAssignments","name":"3ea76d8b-9daa-4d62-bfc8-bb9013ecec53"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-20T22:34:06.1765862Z","updatedOn":"2022-09-20T22:34:06.1765862Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/475a9fc4-c1a8-42c7-9e4e-d897c83f2a86","type":"Microsoft.Authorization/roleAssignments","name":"475a9fc4-c1a8-42c7-9e4e-d897c83f2a86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/434105ed-43f6-45c7-a02f-909b2ba83430","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-21T00:11:12.3038110Z","updatedOn":"2022-09-21T00:11:12.3038110Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce3975e8-d43d-4f8c-a315-e20609d7472a","type":"Microsoft.Authorization/roleAssignments","name":"ce3975e8-d43d-4f8c-a315-e20609d7472a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T07:30:57.3801733Z","updatedOn":"2022-09-23T07:30:57.3801733Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7a5ed22-3b11-11ed-876d-1a48d609785e","type":"Microsoft.Authorization/roleAssignments","name":"a7a5ed22-3b11-11ed-876d-1a48d609785e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T14:34:07.2104918Z","updatedOn":"2022-09-23T14:34:07.2104918Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c756e2ff-3b4c-11ed-be28-000d3a9e5815","type":"Microsoft.Authorization/roleAssignments","name":"c756e2ff-3b4c-11ed-be28-000d3a9e5815"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T14:34:10.7191458Z","updatedOn":"2022-09-23T14:34:10.7191458Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c96352a0-3b4c-11ed-be28-000d3a9e5815","type":"Microsoft.Authorization/roleAssignments","name":"c96352a0-3b4c-11ed-be28-000d3a9e5815"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T19:05:01.8468743Z","updatedOn":"2022-09-23T19:05:01.8468743Z","createdBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","updatedBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ecc7527-3b72-11ed-92ab-a642c656be12","type":"Microsoft.Authorization/roleAssignments","name":"9ecc7527-3b72-11ed-92ab-a642c656be12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T21:31:12.8549148Z","updatedOn":"2022-09-23T21:31:12.8549148Z","createdBy":"0fa3313e-2eee-4835-aeff-681e46364ab6","updatedBy":"0fa3313e-2eee-4835-aeff-681e46364ab6","delegatedManagedIdentityResourceId":null,"description":"New + AKS SRE team member"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b79302d-37ad-406c-b32d-cddbd2387781","type":"Microsoft.Authorization/roleAssignments","name":"2b79302d-37ad-406c-b32d-cddbd2387781"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-25T18:15:06.7527496Z","updatedOn":"2022-09-25T18:15:06.7527496Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f83fc539-aab6-4862-8635-cbe5472eadad","type":"Microsoft.Authorization/roleAssignments","name":"f83fc539-aab6-4862-8635-cbe5472eadad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-25T17:34:50.8733023Z","updatedOn":"2023-01-25T17:34:50.8733023Z","createdBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","updatedBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/91a85771-9cd6-11ed-a528-6045bd8532c1","type":"Microsoft.Authorization/roleAssignments","name":"91a85771-9cd6-11ed-a528-6045bd8532c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T19:40:10.2077596Z","updatedOn":"2023-01-26T19:40:10.2077596Z","createdBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","updatedBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3deeb34a-9db1-11ed-9882-bad388e32b6e","type":"Microsoft.Authorization/roleAssignments","name":"3deeb34a-9db1-11ed-9882-bad388e32b6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T19:40:13.9767599Z","updatedOn":"2023-01-26T19:40:13.9767599Z","createdBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","updatedBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/405d87d0-9db1-11ed-9882-bad388e32b6e","type":"Microsoft.Authorization/roleAssignments","name":"405d87d0-9db1-11ed-9882-bad388e32b6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T21:29:38.0736564Z","updatedOn":"2023-01-26T21:29:38.0736564Z","createdBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","updatedBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88db6aa7-9dc0-11ed-873b-02af4457d3da","type":"Microsoft.Authorization/roleAssignments","name":"88db6aa7-9dc0-11ed-873b-02af4457d3da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T21:29:41.9721959Z","updatedOn":"2023-01-26T21:29:41.9721959Z","createdBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","updatedBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8b20c92b-9dc0-11ed-873b-02af4457d3da","type":"Microsoft.Authorization/roleAssignments","name":"8b20c92b-9dc0-11ed-873b-02af4457d3da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-28T06:05:38.5919016Z","updatedOn":"2023-01-28T06:05:38.5919016Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ee0fdb3-65a0-4344-a73d-15f6b92ea58b","type":"Microsoft.Authorization/roleAssignments","name":"7ee0fdb3-65a0-4344-a73d-15f6b92ea58b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-29T03:40:38.5139182Z","updatedOn":"2023-01-29T03:40:38.5139182Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1dec2dc-9f86-11ed-a95c-0022487e65a6","type":"Microsoft.Authorization/roleAssignments","name":"b1dec2dc-9f86-11ed-a95c-0022487e65a6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-30T05:50:30.0380171Z","updatedOn":"2023-01-30T05:50:30.0380171Z","createdBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","updatedBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/792989a2-3985-4915-bf5a-4eb5451f731b","type":"Microsoft.Authorization/roleAssignments","name":"792989a2-3985-4915-bf5a-4eb5451f731b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-30T15:03:46.9770738Z","updatedOn":"2023-01-30T15:03:46.9770738Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a97ceb8-a0af-11ed-bf9c-a8a1598cc0f3","type":"Microsoft.Authorization/roleAssignments","name":"4a97ceb8-a0af-11ed-bf9c-a8a1598cc0f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-31T08:45:32.8563782Z","updatedOn":"2023-01-31T08:45:32.8563782Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ea26baa-a143-11ed-85d1-1eb0db5454d6","type":"Microsoft.Authorization/roleAssignments","name":"9ea26baa-a143-11ed-85d1-1eb0db5454d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-31T09:18:23.0405616Z","updatedOn":"2023-01-31T09:18:23.0405616Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9063ace1-9e8e-4195-82f8-39fe17fca5ce","type":"Microsoft.Authorization/roleAssignments","name":"9063ace1-9e8e-4195-82f8-39fe17fca5ce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-01T08:12:47.9822357Z","updatedOn":"2023-02-01T08:12:47.9822357Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/31c05c6a-a87b-4ad2-a07e-7acaadecb649","type":"Microsoft.Authorization/roleAssignments","name":"31c05c6a-a87b-4ad2-a07e-7acaadecb649"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-01T19:03:12.2207490Z","updatedOn":"2023-02-01T19:03:12.2207490Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/153174d5-a263-11ed-bad7-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"153174d5-a263-11ed-bad7-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-01T19:03:15.7264802Z","updatedOn":"2023-02-01T19:03:15.7264802Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/172f1d82-a263-11ed-bad7-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"172f1d82-a263-11ed-bad7-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-02T03:13:38.6056072Z","updatedOn":"2023-02-02T03:13:38.6056072Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88d8d974-d77d-450f-89ee-d4a98efea6d8","type":"Microsoft.Authorization/roleAssignments","name":"88d8d974-d77d-450f-89ee-d4a98efea6d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-02T03:19:55.3070568Z","updatedOn":"2023-02-02T03:19:55.3070568Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f273f651-5bde-4219-ab11-33842c5d3224","type":"Microsoft.Authorization/roleAssignments","name":"f273f651-5bde-4219-ab11-33842c5d3224"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-02T09:43:41.0210838Z","updatedOn":"2023-02-02T09:43:41.0210838Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2e9d149-730b-447b-b3e8-3a1fff80f1e1","type":"Microsoft.Authorization/roleAssignments","name":"b2e9d149-730b-447b-b3e8-3a1fff80f1e1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-03T18:49:50.9127720Z","updatedOn":"2023-02-03T18:49:50.9127720Z","createdBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","updatedBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8984621e-a3f3-11ed-b23c-a08cfdd89f0d","type":"Microsoft.Authorization/roleAssignments","name":"8984621e-a3f3-11ed-b23c-a08cfdd89f0d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-03T18:49:55.4277284Z","updatedOn":"2023-02-03T18:49:55.4277284Z","createdBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","updatedBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c3308b8-a3f3-11ed-b23c-a08cfdd89f0d","type":"Microsoft.Authorization/roleAssignments","name":"8c3308b8-a3f3-11ed-b23c-a08cfdd89f0d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-03T21:54:32.5272557Z","updatedOn":"2023-02-03T21:54:32.5272557Z","createdBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","updatedBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5650998f-a40d-11ed-8cfd-763d1fcabad1","type":"Microsoft.Authorization/roleAssignments","name":"5650998f-a40d-11ed-8cfd-763d1fcabad1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-06T16:05:18.7158859Z","updatedOn":"2023-02-06T16:05:18.7158859Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b2a1bdc-a638-11ed-b0e4-de5d54961c0d","type":"Microsoft.Authorization/roleAssignments","name":"0b2a1bdc-a638-11ed-b0e4-de5d54961c0d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-06T21:22:16.0685608Z","updatedOn":"2023-02-06T21:22:16.0685608Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5372f2e2-a664-11ed-99dd-00155d7b2003","type":"Microsoft.Authorization/roleAssignments","name":"5372f2e2-a664-11ed-99dd-00155d7b2003"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T02:31:53.1943940Z","updatedOn":"2023-02-07T02:31:53.1943940Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/93d9ca8e-a68f-11ed-99fe-82539686faad","type":"Microsoft.Authorization/roleAssignments","name":"93d9ca8e-a68f-11ed-99fe-82539686faad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T17:35:09.5804790Z","updatedOn":"2023-02-07T17:35:09.5804790Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c423996c-a70d-11ed-805e-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"c423996c-a70d-11ed-805e-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T21:59:01.9278864Z","updatedOn":"2023-02-07T21:59:01.9278864Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/415eb8ac-2243-415a-8a6a-692cfd82054b","type":"Microsoft.Authorization/roleAssignments","name":"415eb8ac-2243-415a-8a6a-692cfd82054b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T23:07:32.1844748Z","updatedOn":"2023-02-07T23:07:32.1844748Z","createdBy":"bd73a081-fc57-4d58-adb0-f7b098797225","updatedBy":"bd73a081-fc57-4d58-adb0-f7b098797225","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/32edd9f4-a73c-11ed-a351-64d69a01bd73","type":"Microsoft.Authorization/roleAssignments","name":"32edd9f4-a73c-11ed-a351-64d69a01bd73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T23:07:37.2690514Z","updatedOn":"2023-02-07T23:07:37.2690514Z","createdBy":"bd73a081-fc57-4d58-adb0-f7b098797225","updatedBy":"bd73a081-fc57-4d58-adb0-f7b098797225","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3567b721-a73c-11ed-a351-64d69a01bd73","type":"Microsoft.Authorization/roleAssignments","name":"3567b721-a73c-11ed-a351-64d69a01bd73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T16:04:37.2489661Z","updatedOn":"2023-02-08T16:04:37.2489661Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4891c61c-a7ca-11ed-926c-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"4891c61c-a7ca-11ed-926c-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T19:28:37.4403950Z","updatedOn":"2023-02-08T19:28:37.4403950Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7017b0f-925c-43b0-9416-6eb60d8374e3","type":"Microsoft.Authorization/roleAssignments","name":"a7017b0f-925c-43b0-9416-6eb60d8374e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T19:42:35.5124742Z","updatedOn":"2023-02-08T19:42:35.5124742Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd059c37-a7e8-11ed-8d91-7e3b8160807d","type":"Microsoft.Authorization/roleAssignments","name":"bd059c37-a7e8-11ed-8d91-7e3b8160807d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T19:42:39.7153998Z","updatedOn":"2023-02-08T19:42:39.7153998Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf728611-a7e8-11ed-8d91-7e3b8160807d","type":"Microsoft.Authorization/roleAssignments","name":"bf728611-a7e8-11ed-8d91-7e3b8160807d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T22:45:32.7092683Z","updatedOn":"2023-02-08T22:45:32.7092683Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c82f6230-4661-4b60-9ae4-cbd24bc5971d","type":"Microsoft.Authorization/roleAssignments","name":"c82f6230-4661-4b60-9ae4-cbd24bc5971d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T23:38:55.4476717Z","updatedOn":"2023-02-08T23:38:55.4476717Z","createdBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","updatedBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b563f5e3-a809-11ed-92da-061e1dff6519","type":"Microsoft.Authorization/roleAssignments","name":"b563f5e3-a809-11ed-92da-061e1dff6519"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T17:18:01.5061195Z","updatedOn":"2023-02-09T17:18:01.5061195Z","createdBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","updatedBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b477f0fa-a89d-11ed-9d1f-4e375b705c86","type":"Microsoft.Authorization/roleAssignments","name":"b477f0fa-a89d-11ed-9d1f-4e375b705c86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T17:18:03.2471424Z","updatedOn":"2023-02-09T17:18:03.2471424Z","createdBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","updatedBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b58085bc-a89d-11ed-9d1f-4e375b705c86","type":"Microsoft.Authorization/roleAssignments","name":"b58085bc-a89d-11ed-9d1f-4e375b705c86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T18:21:34.0931358Z","updatedOn":"2023-02-09T18:21:34.0931358Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5fe27fe4-6007-4829-afa0-0a3e3780b6d3","type":"Microsoft.Authorization/roleAssignments","name":"5fe27fe4-6007-4829-afa0-0a3e3780b6d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T21:44:30.2729026Z","updatedOn":"2023-02-09T21:44:30.2729026Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eecd187f-a8c2-11ed-9284-1e4dbb47ca8f","type":"Microsoft.Authorization/roleAssignments","name":"eecd187f-a8c2-11ed-9284-1e4dbb47ca8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T21:44:36.9652403Z","updatedOn":"2023-02-09T21:44:36.9652403Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f27e86e2-a8c2-11ed-9284-1e4dbb47ca8f","type":"Microsoft.Authorization/roleAssignments","name":"f27e86e2-a8c2-11ed-9284-1e4dbb47ca8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T01:19:04.3719723Z","updatedOn":"2023-02-10T01:19:04.3719723Z","createdBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","updatedBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d5cdb0f-1b3b-46f9-8e1b-84661382dfe9","type":"Microsoft.Authorization/roleAssignments","name":"0d5cdb0f-1b3b-46f9-8e1b-84661382dfe9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T22:39:09.0776574Z","updatedOn":"2023-02-10T22:39:09.0776574Z","createdBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","updatedBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb3a8a84-a993-11ed-a433-00155df41803","type":"Microsoft.Authorization/roleAssignments","name":"bb3a8a84-a993-11ed-a433-00155df41803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T22:39:12.9098417Z","updatedOn":"2023-02-10T22:39:12.9098417Z","createdBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","updatedBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd7f173a-a993-11ed-a433-00155df41803","type":"Microsoft.Authorization/roleAssignments","name":"bd7f173a-a993-11ed-a433-00155df41803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e3c35f4c-e0ca-4b9e-a01e-5ebdd17e2ee7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-13T07:08:28.2729144Z","updatedOn":"2023-02-13T07:08:28.2729144Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bba123f0-e027-47b5-9f46-15320b0d6ea2","type":"Microsoft.Authorization/roleAssignments","name":"bba123f0-e027-47b5-9f46-15320b0d6ea2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-13T20:30:01.2193678Z","updatedOn":"2023-02-13T20:30:01.2193678Z","createdBy":"40db9032-6efa-443b-a2df-6b0c1d107875","updatedBy":"40db9032-6efa-443b-a2df-6b0c1d107875","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f3b7710-abdd-11ed-8e93-42746b8cdccc","type":"Microsoft.Authorization/roleAssignments","name":"2f3b7710-abdd-11ed-8e93-42746b8cdccc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-13T20:30:05.9299217Z","updatedOn":"2023-02-13T20:30:05.9299217Z","createdBy":"40db9032-6efa-443b-a2df-6b0c1d107875","updatedBy":"40db9032-6efa-443b-a2df-6b0c1d107875","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/321b80cb-abdd-11ed-8e93-42746b8cdccc","type":"Microsoft.Authorization/roleAssignments","name":"321b80cb-abdd-11ed-8e93-42746b8cdccc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-14T20:20:30.1688349Z","updatedOn":"2023-02-14T20:20:30.1688349Z","createdBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","updatedBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/06359457-aca5-11ed-82a6-00155df41803","type":"Microsoft.Authorization/roleAssignments","name":"06359457-aca5-11ed-82a6-00155df41803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T01:37:21.5709630Z","updatedOn":"2023-02-15T01:37:21.5709630Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a7e1874-acd1-11ed-8639-d691c85c3a02","type":"Microsoft.Authorization/roleAssignments","name":"4a7e1874-acd1-11ed-8639-d691c85c3a02"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T09:59:56.7546952Z","updatedOn":"2023-02-15T09:59:56.7546952Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7fa783e6-ad17-11ed-97ee-000d3a9be92a","type":"Microsoft.Authorization/roleAssignments","name":"7fa783e6-ad17-11ed-97ee-000d3a9be92a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T10:00:02.7311424Z","updatedOn":"2023-02-15T10:00:02.7311424Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/836897a6-ad17-11ed-97ee-000d3a9be92a","type":"Microsoft.Authorization/roleAssignments","name":"836897a6-ad17-11ed-97ee-000d3a9be92a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T16:38:42.0341267Z","updatedOn":"2023-02-15T16:38:42.0341267Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3476476d-ad4f-11ed-8fa2-000d3a984fd4","type":"Microsoft.Authorization/roleAssignments","name":"3476476d-ad4f-11ed-8fa2-000d3a984fd4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T16:38:46.6959293Z","updatedOn":"2023-02-15T16:38:46.6959293Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/375326e5-ad4f-11ed-8fa2-000d3a984fd4","type":"Microsoft.Authorization/roleAssignments","name":"375326e5-ad4f-11ed-8fa2-000d3a984fd4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-17T06:21:34.8976862Z","updatedOn":"2023-02-17T06:21:34.8976862Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/52c15699-ae8b-11ed-b14e-023ef88171a7","type":"Microsoft.Authorization/roleAssignments","name":"52c15699-ae8b-11ed-b14e-023ef88171a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-19T02:02:00.9378377Z","updatedOn":"2023-02-19T02:02:00.9378377Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63ae64e6-aff9-11ed-967a-968963402bc6","type":"Microsoft.Authorization/roleAssignments","name":"63ae64e6-aff9-11ed-967a-968963402bc6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-19T02:02:05.4821651Z","updatedOn":"2023-02-19T02:02:05.4821651Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66639a26-aff9-11ed-967a-968963402bc6","type":"Microsoft.Authorization/roleAssignments","name":"66639a26-aff9-11ed-967a-968963402bc6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T09:22:38.4725256Z","updatedOn":"2023-02-21T09:22:38.4725256Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/48461efc-b1c9-11ed-bd41-3ed144e41689","type":"Microsoft.Authorization/roleAssignments","name":"48461efc-b1c9-11ed-bd41-3ed144e41689"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T09:22:42.2363452Z","updatedOn":"2023-02-21T09:22:42.2363452Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a784b6e-b1c9-11ed-bd41-3ed144e41689","type":"Microsoft.Authorization/roleAssignments","name":"4a784b6e-b1c9-11ed-bd41-3ed144e41689"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-23T03:00:31.5651965Z","updatedOn":"2023-02-23T03:00:31.5651965Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cef217b-a8cc-4115-a4bd-042af84325dc","type":"Microsoft.Authorization/roleAssignments","name":"3cef217b-a8cc-4115-a4bd-042af84325dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-23T06:48:16.8637402Z","updatedOn":"2023-02-23T06:48:16.8637402Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0c91daf6-b346-11ed-a964-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"0c91daf6-b346-11ed-a964-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-23T06:48:21.4826289Z","updatedOn":"2023-02-23T06:48:21.4826289Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f55d0c9-b346-11ed-a964-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"0f55d0c9-b346-11ed-a964-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T00:54:23.0966101Z","updatedOn":"2023-02-24T00:54:23.0966101Z","createdBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","updatedBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6e6a721-b3dd-11ed-b60f-0022481da32e","type":"Microsoft.Authorization/roleAssignments","name":"c6e6a721-b3dd-11ed-b60f-0022481da32e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T00:54:31.9826815Z","updatedOn":"2023-02-24T00:54:31.9826815Z","createdBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","updatedBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc3f3b4e-b3dd-11ed-b60f-0022481da32e","type":"Microsoft.Authorization/roleAssignments","name":"cc3f3b4e-b3dd-11ed-b60f-0022481da32e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T02:50:23.5663680Z","updatedOn":"2023-02-24T02:50:23.5663680Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb698872-b3ed-11ed-8f76-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"fb698872-b3ed-11ed-8f76-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T04:50:44.0913238Z","updatedOn":"2023-02-24T04:50:44.0913238Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cb72426d-4967-427c-8cf6-c167bc26814f","type":"Microsoft.Authorization/roleAssignments","name":"cb72426d-4967-427c-8cf6-c167bc26814f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T23:34:22.8669116Z","updatedOn":"2023-02-24T23:34:22.8669116Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3e6258b-b49b-11ed-90ef-000d3a0168de","type":"Microsoft.Authorization/roleAssignments","name":"c3e6258b-b49b-11ed-90ef-000d3a0168de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T23:34:26.7176031Z","updatedOn":"2023-02-24T23:34:26.7176031Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6438a56-b49b-11ed-90ef-000d3a0168de","type":"Microsoft.Authorization/roleAssignments","name":"c6438a56-b49b-11ed-90ef-000d3a0168de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-27T04:38:09.3994350Z","updatedOn":"2023-02-27T04:38:09.3994350Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b58ab305-83cc-4c4e-924b-3c1ba8ffcb83","type":"Microsoft.Authorization/roleAssignments","name":"b58ab305-83cc-4c4e-924b-3c1ba8ffcb83"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-27T04:38:09.8212573Z","updatedOn":"2023-02-27T04:38:09.8212573Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45883a93-4807-4bb9-a2b3-a7163d6c2031","type":"Microsoft.Authorization/roleAssignments","name":"45883a93-4807-4bb9-a2b3-a7163d6c2031"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T04:01:45.4038947Z","updatedOn":"2023-02-28T04:01:45.4038947Z","createdBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","updatedBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9d7a9b0f-b71c-11ed-b33b-6045bd7c1155","type":"Microsoft.Authorization/roleAssignments","name":"9d7a9b0f-b71c-11ed-b33b-6045bd7c1155"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T06:57:12.2026246Z","updatedOn":"2023-02-28T06:57:12.2026246Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1f6f0732-b735-11ed-be49-962abdd2f2a3","type":"Microsoft.Authorization/roleAssignments","name":"1f6f0732-b735-11ed-be49-962abdd2f2a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T15:32:52.3533623Z","updatedOn":"2023-02-28T15:32:52.3533623Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28e54510-b77d-11ed-bcc0-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"28e54510-b77d-11ed-bcc0-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T17:34:23.5106370Z","updatedOn":"2023-02-28T17:34:23.5106370Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/22f4b3a0-b78e-11ed-8898-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"22f4b3a0-b78e-11ed-8898-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T18:16:58.6154652Z","updatedOn":"2023-02-28T18:16:58.6154652Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15c84290-b794-11ed-ba68-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"15c84290-b794-11ed-ba68-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T19:50:58.1867864Z","updatedOn":"2023-03-01T19:50:58.1867864Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61f54236-b86a-11ed-96f5-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"61f54236-b86a-11ed-96f5-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T22:21:34.1000877Z","updatedOn":"2023-03-01T22:21:34.1000877Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b7ce6fa-b87f-11ed-858b-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"6b7ce6fa-b87f-11ed-858b-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T22:45:09.8437635Z","updatedOn":"2023-03-01T22:45:09.8437635Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7b17d80-b882-11ed-a5f7-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"b7b17d80-b882-11ed-a5f7-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T23:11:15.0259743Z","updatedOn":"2023-03-01T23:11:15.0259743Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5c9278f6-b886-11ed-83fe-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"5c9278f6-b886-11ed-83fe-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T06:31:28.5537789Z","updatedOn":"2023-03-02T06:31:28.5537789Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d301d940-45f5-4242-8a04-8ce059ee9054","type":"Microsoft.Authorization/roleAssignments","name":"d301d940-45f5-4242-8a04-8ce059ee9054"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T16:54:46.5495446Z","updatedOn":"2023-03-02T16:54:46.5495446Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef382e78-b91a-11ed-8fc9-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"ef382e78-b91a-11ed-8fc9-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T18:09:39.0923025Z","updatedOn":"2023-03-02T18:09:39.0923025Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65561192-b925-11ed-8582-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"65561192-b925-11ed-8582-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T18:09:44.0481916Z","updatedOn":"2023-03-02T18:09:44.0481916Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/68443e92-b925-11ed-8582-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"68443e92-b925-11ed-8582-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T20:44:44.0250379Z","updatedOn":"2023-03-02T20:44:44.0250379Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f118b20-b93b-11ed-9771-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"0f118b20-b93b-11ed-9771-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T21:25:21.6836921Z","updatedOn":"2023-03-02T21:25:21.6836921Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb99eb4e-b940-11ed-b11e-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"bb99eb4e-b940-11ed-b11e-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T22:13:06.5481097Z","updatedOn":"2023-03-02T22:13:06.5481097Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/671c9222-b947-11ed-bf55-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"671c9222-b947-11ed-bf55-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T23:21:53.5068345Z","updatedOn":"2023-03-02T23:21:53.5068345Z","createdBy":"6a70a9ce-9405-4447-867c-92746716ef5a","updatedBy":"6a70a9ce-9405-4447-867c-92746716ef5a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/03b3dac0-b951-11ed-a3db-5e7d78be13fb","type":"Microsoft.Authorization/roleAssignments","name":"03b3dac0-b951-11ed-a3db-5e7d78be13fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T23:21:58.2602277Z","updatedOn":"2023-03-02T23:21:58.2602277Z","createdBy":"6a70a9ce-9405-4447-867c-92746716ef5a","updatedBy":"6a70a9ce-9405-4447-867c-92746716ef5a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/06a1f991-b951-11ed-a3db-5e7d78be13fb","type":"Microsoft.Authorization/roleAssignments","name":"06a1f991-b951-11ed-a3db-5e7d78be13fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-03T08:24:31.2215832Z","updatedOn":"2023-03-03T08:24:31.2215832Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c439d06c-2e66-4cbc-9c42-f2e962b394a9","type":"Microsoft.Authorization/roleAssignments","name":"c439d06c-2e66-4cbc-9c42-f2e962b394a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-03T08:25:05.4966158Z","updatedOn":"2023-03-03T08:25:05.4966158Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12c86535-6761-4402-a871-c5ed84a4b236","type":"Microsoft.Authorization/roleAssignments","name":"12c86535-6761-4402-a871-c5ed84a4b236"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-06T23:11:36.9481730Z","updatedOn":"2023-03-06T23:11:36.9481730Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d91d90a-bc74-11ed-a26b-66106f6e7480","type":"Microsoft.Authorization/roleAssignments","name":"3d91d90a-bc74-11ed-a26b-66106f6e7480"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-07T11:10:24.3937430Z","updatedOn":"2023-03-07T11:10:24.3937430Z","createdBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","updatedBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a74aed5f-bcd8-11ed-9f36-2636f0255870","type":"Microsoft.Authorization/roleAssignments","name":"a74aed5f-bcd8-11ed-9f36-2636f0255870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-07T11:10:29.5524963Z","updatedOn":"2023-03-07T11:10:29.5524963Z","createdBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","updatedBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa4ebe62-bcd8-11ed-9f36-2636f0255870","type":"Microsoft.Authorization/roleAssignments","name":"aa4ebe62-bcd8-11ed-9f36-2636f0255870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-08T19:24:26.7238172Z","updatedOn":"2023-03-08T19:24:26.7238172Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d65c4fee-bde6-11ed-8e54-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"d65c4fee-bde6-11ed-8e54-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-08T19:24:31.6398973Z","updatedOn":"2023-03-08T19:24:31.6398973Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d90a67f8-bde6-11ed-8e54-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"d90a67f8-bde6-11ed-8e54-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-08T20:06:19.9493503Z","updatedOn":"2023-03-08T20:06:19.9493503Z","createdBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","updatedBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0af95de-bdec-11ed-9669-3e22fb431907","type":"Microsoft.Authorization/roleAssignments","name":"b0af95de-bdec-11ed-9669-3e22fb431907"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-09T01:58:48.5122241Z","updatedOn":"2023-03-09T01:58:48.5122241Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee1bd122-be1d-11ed-a53c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"ee1bd122-be1d-11ed-a53c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-09T17:44:00.7209931Z","updatedOn":"2023-03-09T17:44:00.7209931Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f932fb60-bea1-11ed-afcf-6e3850888c7e","type":"Microsoft.Authorization/roleAssignments","name":"f932fb60-bea1-11ed-afcf-6e3850888c7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-10T08:26:27.9057589Z","updatedOn":"2023-03-10T08:26:27.9057589Z","createdBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","updatedBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f911d1d-bf1d-11ed-a236-002248824659","type":"Microsoft.Authorization/roleAssignments","name":"3f911d1d-bf1d-11ed-a236-002248824659"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-10T08:26:33.2539857Z","updatedOn":"2023-03-10T08:26:33.2539857Z","createdBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","updatedBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42d7f7e6-bf1d-11ed-a236-002248824659","type":"Microsoft.Authorization/roleAssignments","name":"42d7f7e6-bf1d-11ed-a236-002248824659"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-11T05:53:49.4765844Z","updatedOn":"2023-03-11T05:53:49.4765844Z","createdBy":"d378d978-a2b7-46cf-b57b-1e586d281118","updatedBy":"d378d978-a2b7-46cf-b57b-1e586d281118","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/179b8d2a-bfd1-11ed-bd9a-3c52827953b3","type":"Microsoft.Authorization/roleAssignments","name":"179b8d2a-bfd1-11ed-bd9a-3c52827953b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-11T05:53:53.6955891Z","updatedOn":"2023-03-11T05:53:53.6955891Z","createdBy":"d378d978-a2b7-46cf-b57b-1e586d281118","updatedBy":"d378d978-a2b7-46cf-b57b-1e586d281118","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1a1e6965-bfd1-11ed-bd9a-3c52827953b3","type":"Microsoft.Authorization/roleAssignments","name":"1a1e6965-bfd1-11ed-bd9a-3c52827953b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T06:33:26.4594910Z","updatedOn":"2023-03-13T06:33:26.4594910Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b03e0140-e53e-491a-9a7b-e179fa1b8a7b","type":"Microsoft.Authorization/roleAssignments","name":"b03e0140-e53e-491a-9a7b-e179fa1b8a7b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T12:12:33.0193279Z","updatedOn":"2023-03-13T12:12:33.0193279Z","createdBy":"559c030a-5305-402e-ab3c-018e8b685492","updatedBy":"559c030a-5305-402e-ab3c-018e8b685492","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54e258e9-c198-11ed-8db5-be30b45d791c","type":"Microsoft.Authorization/roleAssignments","name":"54e258e9-c198-11ed-8db5-be30b45d791c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T12:12:36.9894487Z","updatedOn":"2023-03-13T12:12:36.9894487Z","createdBy":"559c030a-5305-402e-ab3c-018e8b685492","updatedBy":"559c030a-5305-402e-ab3c-018e8b685492","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/575c39c1-c198-11ed-8db5-be30b45d791c","type":"Microsoft.Authorization/roleAssignments","name":"575c39c1-c198-11ed-8db5-be30b45d791c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-14T18:19:52.2457482Z","updatedOn":"2023-03-14T18:19:52.2457482Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf500684-c294-11ed-aaa3-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"cf500684-c294-11ed-aaa3-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-15T17:17:49.1398598Z","updatedOn":"2023-03-15T17:17:49.1398598Z","createdBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","updatedBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4edbdd66-c355-11ed-8966-d85ed302bf1b","type":"Microsoft.Authorization/roleAssignments","name":"4edbdd66-c355-11ed-8966-d85ed302bf1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-16T00:14:24.3742157Z","updatedOn":"2023-03-16T00:14:24.3742157Z","createdBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","updatedBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7f7be49f-c38f-11ed-ba47-9e7a3e847acb","type":"Microsoft.Authorization/roleAssignments","name":"7f7be49f-c38f-11ed-ba47-9e7a3e847acb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-16T00:14:28.4721252Z","updatedOn":"2023-03-16T00:14:28.4721252Z","createdBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","updatedBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81c01cec-c38f-11ed-ba47-9e7a3e847acb","type":"Microsoft.Authorization/roleAssignments","name":"81c01cec-c38f-11ed-ba47-9e7a3e847acb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-20T06:05:05.2225187Z","updatedOn":"2023-03-20T06:05:05.2225187Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/27de0b5c-c6e5-11ed-8082-0ab78cd2e1ba","type":"Microsoft.Authorization/roleAssignments","name":"27de0b5c-c6e5-11ed-8082-0ab78cd2e1ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-20T19:31:51.9736494Z","updatedOn":"2023-03-20T19:31:51.9736494Z","createdBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","updatedBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dbc8c438-c755-11ed-8659-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"dbc8c438-c755-11ed-8659-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-20T19:31:55.5444616Z","updatedOn":"2023-03-20T19:31:55.5444616Z","createdBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","updatedBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e111eebf-c755-11ed-8659-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"e111eebf-c755-11ed-8659-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T07:50:31.4771973Z","updatedOn":"2023-03-21T07:50:31.4771973Z","createdBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","updatedBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c95fead-0a2b-4d52-a17d-1d3d17997871","type":"Microsoft.Authorization/roleAssignments","name":"6c95fead-0a2b-4d52-a17d-1d3d17997871"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T08:30:33.5552284Z","updatedOn":"2023-03-21T08:30:33.5552284Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a54293b5-c7c2-11ed-a7e6-000d3a044b73","type":"Microsoft.Authorization/roleAssignments","name":"a54293b5-c7c2-11ed-a7e6-000d3a044b73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T19:10:41.8785727Z","updatedOn":"2023-03-21T19:10:41.8785727Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12487a5a-c81c-11ed-ba46-827f6562cca2","type":"Microsoft.Authorization/roleAssignments","name":"12487a5a-c81c-11ed-ba46-827f6562cca2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T19:10:47.3524534Z","updatedOn":"2023-03-21T19:10:47.3524534Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15881bc6-c81c-11ed-ba46-827f6562cca2","type":"Microsoft.Authorization/roleAssignments","name":"15881bc6-c81c-11ed-ba46-827f6562cca2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-23T04:37:57.4678727Z","updatedOn":"2023-03-23T04:37:57.4678727Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b934178-c934-11ed-b9f7-6045bd80c6e6","type":"Microsoft.Authorization/roleAssignments","name":"7b934178-c934-11ed-b9f7-6045bd80c6e6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-27T05:50:19.8871681Z","updatedOn":"2023-03-27T05:50:19.8871681Z","createdBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","updatedBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/410882d1-cc63-11ed-ae41-0022480f1f08","type":"Microsoft.Authorization/roleAssignments","name":"410882d1-cc63-11ed-ae41-0022480f1f08"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-27T05:50:25.6681144Z","updatedOn":"2023-03-27T05:50:25.6681144Z","createdBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","updatedBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/441bda3a-cc63-11ed-ae41-0022480f1f08","type":"Microsoft.Authorization/roleAssignments","name":"441bda3a-cc63-11ed-ae41-0022480f1f08"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d24ecba3-c1f4-40fa-a7bb-4588a071e8fd","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:06.6052430Z","updatedOn":"2023-03-28T04:20:06.6052430Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/407210a5-bc55-40fb-91a9-92aa082cb413","type":"Microsoft.Authorization/roleAssignments","name":"407210a5-bc55-40fb-91a9-92aa082cb413"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:10.8566627Z","updatedOn":"2023-03-28T04:20:10.8566627Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24f5047d-db77-4702-ffab-aa7c979ea3ff","type":"Microsoft.Authorization/roleAssignments","name":"24f5047d-db77-4702-ffab-aa7c979ea3ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:10.9115871Z","updatedOn":"2023-03-28T04:20:10.9115871Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/58df4b89-0de1-4d34-1767-ac1e33e9acd8","type":"Microsoft.Authorization/roleAssignments","name":"58df4b89-0de1-4d34-1767-ac1e33e9acd8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.4495061Z","updatedOn":"2023-03-28T04:20:11.4495061Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a454de4-a1dc-4273-f384-029257fe5c7f","type":"Microsoft.Authorization/roleAssignments","name":"4a454de4-a1dc-4273-f384-029257fe5c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.2724262Z","updatedOn":"2023-03-28T04:20:11.2724262Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd662e52-e7fa-4eeb-5755-696d2e8169b9","type":"Microsoft.Authorization/roleAssignments","name":"cd662e52-e7fa-4eeb-5755-696d2e8169b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.4717540Z","updatedOn":"2023-03-28T04:20:11.4717540Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4680d2be-be84-417b-d222-07880110ada0","type":"Microsoft.Authorization/roleAssignments","name":"4680d2be-be84-417b-d222-07880110ada0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.5533314Z","updatedOn":"2023-03-28T04:20:11.5533314Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28dadd85-c2a5-420f-1563-a6ec9d26fd9a","type":"Microsoft.Authorization/roleAssignments","name":"28dadd85-c2a5-420f-1563-a6ec9d26fd9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.5554589Z","updatedOn":"2023-03-28T04:20:11.5554589Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d1872322-4fde-43f5-e2b4-325dda9f40ad","type":"Microsoft.Authorization/roleAssignments","name":"d1872322-4fde-43f5-e2b4-325dda9f40ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.8299726Z","updatedOn":"2023-03-28T04:20:11.8299726Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ede81bb8-d3cd-4dc8-0fd3-b0a2a5a42b23","type":"Microsoft.Authorization/roleAssignments","name":"ede81bb8-d3cd-4dc8-0fd3-b0a2a5a42b23"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T14:40:42.0514829Z","updatedOn":"2023-03-29T14:40:42.0514829Z","createdBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","updatedBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ae019e96-ce3f-11ed-aa9b-000d3a142c7f","type":"Microsoft.Authorization/roleAssignments","name":"ae019e96-ce3f-11ed-aa9b-000d3a142c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T14:40:45.8687684Z","updatedOn":"2023-03-29T14:40:45.8687684Z","createdBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","updatedBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0540ef4-ce3f-11ed-aa9b-000d3a142c7f","type":"Microsoft.Authorization/roleAssignments","name":"b0540ef4-ce3f-11ed-aa9b-000d3a142c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T17:23:15.2268767Z","updatedOn":"2023-03-29T17:23:15.2268767Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/636243ad-ce56-11ed-9744-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"636243ad-ce56-11ed-9744-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T17:23:18.8739735Z","updatedOn":"2023-03-29T17:23:18.8739735Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6586219c-ce56-11ed-9744-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"6586219c-ce56-11ed-9744-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T19:32:39.0885013Z","updatedOn":"2023-03-29T19:32:39.0885013Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/76c41cef-ce68-11ed-b18b-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"76c41cef-ce68-11ed-b18b-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T19:32:43.3448308Z","updatedOn":"2023-03-29T19:32:43.3448308Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/793f1b95-ce68-11ed-b18b-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"793f1b95-ce68-11ed-b18b-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T02:24:05.4290067Z","updatedOn":"2023-03-31T02:24:05.4290067Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1ad6198a-cf6b-11ed-8440-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"1ad6198a-cf6b-11ed-8440-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T02:24:09.9883076Z","updatedOn":"2023-03-31T02:24:09.9883076Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1dd45f87-cf6b-11ed-8440-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"1dd45f87-cf6b-11ed-8440-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T07:26:15.0154750Z","updatedOn":"2023-03-31T07:26:15.0154750Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/babc263e-1cc9-429d-babf-2b33c8e79093","type":"Microsoft.Authorization/roleAssignments","name":"babc263e-1cc9-429d-babf-2b33c8e79093"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T07:44:54.6073153Z","updatedOn":"2023-03-31T07:44:54.6073153Z","createdBy":"2996d4bf-d495-49f2-a2cd-8d684c724185","updatedBy":"2996d4bf-d495-49f2-a2cd-8d684c724185","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/828df835-2536-4c50-9397-90aabf94db75","type":"Microsoft.Authorization/roleAssignments","name":"828df835-2536-4c50-9397-90aabf94db75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T19:06:47.3414876Z","updatedOn":"2023-03-31T19:06:47.3414876Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2ea3ab94-cff7-11ed-b393-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"2ea3ab94-cff7-11ed-b393-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T19:08:21.6870221Z","updatedOn":"2023-03-31T19:08:21.6870221Z","createdBy":"367712bd-8587-45ef-9e63-1d269a194d53","updatedBy":"367712bd-8587-45ef-9e63-1d269a194d53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66e7009d-cff7-11ed-a7d9-002248a7a68e","type":"Microsoft.Authorization/roleAssignments","name":"66e7009d-cff7-11ed-a7d9-002248a7a68e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T19:08:26.3035343Z","updatedOn":"2023-03-31T19:08:26.3035343Z","createdBy":"367712bd-8587-45ef-9e63-1d269a194d53","updatedBy":"367712bd-8587-45ef-9e63-1d269a194d53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/69a1dd2e-cff7-11ed-a7d9-002248a7a68e","type":"Microsoft.Authorization/roleAssignments","name":"69a1dd2e-cff7-11ed-a7d9-002248a7a68e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-02T04:28:12.7151802Z","updatedOn":"2023-04-02T04:28:12.7151802Z","createdBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","updatedBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c7830a5d-d10e-11ed-a622-f24a877c1ab5","type":"Microsoft.Authorization/roleAssignments","name":"c7830a5d-d10e-11ed-a622-f24a877c1ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-02T04:28:15.3112141Z","updatedOn":"2023-04-02T04:28:15.3112141Z","createdBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","updatedBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9256530-d10e-11ed-a622-f24a877c1ab5","type":"Microsoft.Authorization/roleAssignments","name":"c9256530-d10e-11ed-a622-f24a877c1ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-05T00:24:25.1673334Z","updatedOn":"2023-04-05T00:24:25.1673334Z","createdBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","updatedBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/376ceec9-d348-11ed-9d01-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"376ceec9-d348-11ed-9d01-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-05T00:24:28.5013634Z","updatedOn":"2023-04-05T00:24:28.5013634Z","createdBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","updatedBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39762108-d348-11ed-9d01-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"39762108-d348-11ed-9d01-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-10T17:47:25.2219893Z","updatedOn":"2023-04-10T17:47:25.2219893Z","createdBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","updatedBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0866ce8-d7c7-11ed-a6a7-9660021dc7a9","type":"Microsoft.Authorization/roleAssignments","name":"c0866ce8-d7c7-11ed-a6a7-9660021dc7a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-10T17:47:29.2984077Z","updatedOn":"2023-04-10T17:47:29.2984077Z","createdBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","updatedBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3089c1c-d7c7-11ed-a6a7-9660021dc7a9","type":"Microsoft.Authorization/roleAssignments","name":"c3089c1c-d7c7-11ed-a6a7-9660021dc7a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-13T19:14:02.9424463Z","updatedOn":"2023-04-13T19:14:02.9424463Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d256d6e-ea9e-4124-8252-9da35a5e074b","type":"Microsoft.Authorization/roleAssignments","name":"0d256d6e-ea9e-4124-8252-9da35a5e074b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-17T15:47:32.8370892Z","updatedOn":"2023-04-17T15:47:32.8370892Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3d0f65d-4923-4776-8fb5-288240615c89","type":"Microsoft.Authorization/roleAssignments","name":"b3d0f65d-4923-4776-8fb5-288240615c89"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-17T16:09:03.8628586Z","updatedOn":"2023-04-17T16:09:03.8628586Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2eb3e3cb-598f-4048-aab3-0bd5a8b262ec","type":"Microsoft.Authorization/roleAssignments","name":"2eb3e3cb-598f-4048-aab3-0bd5a8b262ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-19T18:42:49.4053198Z","updatedOn":"2023-04-19T18:42:49.4053198Z","createdBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","updatedBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fba6c131-dee1-11ed-af88-000d3a23f184","type":"Microsoft.Authorization/roleAssignments","name":"fba6c131-dee1-11ed-af88-000d3a23f184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-19T18:42:53.2275925Z","updatedOn":"2023-04-19T18:42:53.2275925Z","createdBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","updatedBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdf8a1c6-dee1-11ed-af88-000d3a23f184","type":"Microsoft.Authorization/roleAssignments","name":"fdf8a1c6-dee1-11ed-af88-000d3a23f184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-19T20:38:29.3110777Z","updatedOn":"2023-04-19T20:38:29.3110777Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23e3d8f0-def2-11ed-8cbe-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"23e3d8f0-def2-11ed-8cbe-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-20T23:41:52.6427527Z","updatedOn":"2023-04-20T23:41:52.6427527Z","createdBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","updatedBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4daefdda-d51e-55b7-9175-548688500778","type":"Microsoft.Authorization/roleAssignments","name":"4daefdda-d51e-55b7-9175-548688500778"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-21T17:49:07.3103199Z","updatedOn":"2023-04-21T17:49:07.3103199Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cfcbdd18-e06c-11ed-8b1a-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"cfcbdd18-e06c-11ed-8b1a-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-21T19:58:00.4291773Z","updatedOn":"2023-04-21T19:58:00.4291773Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d1321fac-e07e-11ed-9f07-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"d1321fac-e07e-11ed-9f07-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-25T18:19:28.7344580Z","updatedOn":"2023-04-25T18:19:28.7344580Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d940b7e-a372-438c-89b3-fe59be8a3d63","type":"Microsoft.Authorization/roleAssignments","name":"6d940b7e-a372-438c-89b3-fe59be8a3d63"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-26T15:27:00.5297027Z","updatedOn":"2023-04-26T15:27:00.5297027Z","createdBy":"b2192440-253a-42f2-8429-40f3820b89be","updatedBy":"b2192440-253a-42f2-8429-40f3820b89be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9b0c1c0-e446-11ed-a01b-00155d1f6f24","type":"Microsoft.Authorization/roleAssignments","name":"c9b0c1c0-e446-11ed-a01b-00155d1f6f24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-26T15:27:03.8070654Z","updatedOn":"2023-04-26T15:27:03.8070654Z","createdBy":"b2192440-253a-42f2-8429-40f3820b89be","updatedBy":"b2192440-253a-42f2-8429-40f3820b89be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbabbec4-e446-11ed-a01b-00155d1f6f24","type":"Microsoft.Authorization/roleAssignments","name":"cbabbec4-e446-11ed-a01b-00155d1f6f24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-28T14:39:15.9639397Z","updatedOn":"2023-04-28T14:39:15.9639397Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/731ed5b6-e5d2-11ed-b4a6-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"731ed5b6-e5d2-11ed-b4a6-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-28T14:39:19.9194172Z","updatedOn":"2023-04-28T14:39:19.9194172Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/757edff4-e5d2-11ed-b4a6-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"757edff4-e5d2-11ed-b4a6-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/974c5e8b-45b9-4653-ba55-5f855dd0fb88","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-01T21:15:30.3600778Z","updatedOn":"2023-05-01T21:15:30.3600778Z","createdBy":"5bef4afd-1360-40a2-ac51-9339229af623","updatedBy":"5bef4afd-1360-40a2-ac51-9339229af623","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4cff74bd-e865-11ed-bd8b-5e022905d313","type":"Microsoft.Authorization/roleAssignments","name":"4cff74bd-e865-11ed-bd8b-5e022905d313"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-01T21:15:34.1175433Z","updatedOn":"2023-05-01T21:15:34.1175433Z","createdBy":"5bef4afd-1360-40a2-ac51-9339229af623","updatedBy":"5bef4afd-1360-40a2-ac51-9339229af623","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4f3e2c7f-e865-11ed-bd8b-5e022905d313","type":"Microsoft.Authorization/roleAssignments","name":"4f3e2c7f-e865-11ed-bd8b-5e022905d313"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-01T22:25:20.9242136Z","updatedOn":"2023-05-01T22:25:20.9242136Z","createdBy":"1ae4ccb9-fb9e-49c0-b500-10d71ff2e737","updatedBy":"1ae4ccb9-fb9e-49c0-b500-10d71ff2e737","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/112fdd75-6ef8-4016-b550-eec1b3c20720","type":"Microsoft.Authorization/roleAssignments","name":"112fdd75-6ef8-4016-b550-eec1b3c20720"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T12:17:42.9403161Z","updatedOn":"2023-05-04T12:17:42.9403161Z","createdBy":"7206144a-a8f7-442f-994e-850c46730a52","updatedBy":"7206144a-a8f7-442f-994e-850c46730a52","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ab58b8d1-ea75-11ed-8e28-8c164501ca31","type":"Microsoft.Authorization/roleAssignments","name":"ab58b8d1-ea75-11ed-8e28-8c164501ca31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T12:17:48.5968787Z","updatedOn":"2023-05-04T12:17:48.5968787Z","createdBy":"7206144a-a8f7-442f-994e-850c46730a52","updatedBy":"7206144a-a8f7-442f-994e-850c46730a52","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aeac0cc1-ea75-11ed-8e28-8c164501ca31","type":"Microsoft.Authorization/roleAssignments","name":"aeac0cc1-ea75-11ed-8e28-8c164501ca31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T14:59:12.9566578Z","updatedOn":"2023-05-04T14:59:12.9566578Z","createdBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","updatedBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a379e3f-ea8c-11ed-b7f9-5254000f02cc","type":"Microsoft.Authorization/roleAssignments","name":"3a379e3f-ea8c-11ed-b7f9-5254000f02cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T14:59:17.0941141Z","updatedOn":"2023-05-04T14:59:17.0941141Z","createdBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","updatedBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cc57207-ea8c-11ed-b7f9-5254000f02cc","type":"Microsoft.Authorization/roleAssignments","name":"3cc57207-ea8c-11ed-b7f9-5254000f02cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-08T17:20:32.4213470Z","updatedOn":"2023-05-08T17:20:32.4213470Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fcb9cd22-d202-49b5-ac49-63b77db3c355","type":"Microsoft.Authorization/roleAssignments","name":"fcb9cd22-d202-49b5-ac49-63b77db3c355"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-08T18:57:28.0040779Z","updatedOn":"2023-05-08T18:57:28.0040779Z","createdBy":"a4ff7404-5868-4532-ab16-142dad6a55af","updatedBy":"a4ff7404-5868-4532-ab16-142dad6a55af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d38f814-edd2-11ed-b548-000d3af78112","type":"Microsoft.Authorization/roleAssignments","name":"2d38f814-edd2-11ed-b548-000d3af78112"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-08T18:57:31.3014429Z","updatedOn":"2023-05-08T18:57:31.3014429Z","createdBy":"a4ff7404-5868-4532-ab16-142dad6a55af","updatedBy":"a4ff7404-5868-4532-ab16-142dad6a55af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f311f92-edd2-11ed-b548-000d3af78112","type":"Microsoft.Authorization/roleAssignments","name":"2f311f92-edd2-11ed-b548-000d3af78112"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T19:02:07.8525568Z","updatedOn":"2023-05-10T19:02:07.8525568Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dedfb4b8-f315-5b5a-b52f-afbb2a175cd5","type":"Microsoft.Authorization/roleAssignments","name":"dedfb4b8-f315-5b5a-b52f-afbb2a175cd5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T19:02:07.5081592Z","updatedOn":"2023-05-10T19:02:07.5081592Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dcfe553d-97cc-5084-b369-d557cd90b386","type":"Microsoft.Authorization/roleAssignments","name":"dcfe553d-97cc-5084-b369-d557cd90b386"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T08:58:12.7125916Z","updatedOn":"2023-05-10T08:58:12.7125916Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d8f9d929-9d3d-42df-a8fe-5f0ceb0bba3e","type":"Microsoft.Authorization/roleAssignments","name":"d8f9d929-9d3d-42df-a8fe-5f0ceb0bba3e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T09:31:17.2430697Z","updatedOn":"2023-05-10T09:31:17.2430697Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3fd12d91-3e5a-4061-bcb2-05a9732b9159","type":"Microsoft.Authorization/roleAssignments","name":"3fd12d91-3e5a-4061-bcb2-05a9732b9159"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:43:09.6330210Z","updatedOn":"2023-05-10T16:43:09.6330210Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/becaa992-ef51-11ed-bf36-f6f4c2331193","type":"Microsoft.Authorization/roleAssignments","name":"becaa992-ef51-11ed-bf36-f6f4c2331193"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:43:13.3065725Z","updatedOn":"2023-05-10T16:43:13.3065725Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0ffd61a-ef51-11ed-bf36-f6f4c2331193","type":"Microsoft.Authorization/roleAssignments","name":"c0ffd61a-ef51-11ed-bf36-f6f4c2331193"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T21:23:06.4822851Z","updatedOn":"2023-05-10T21:23:06.4822851Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/db3e8912-ef78-11ed-9094-0ed70c823176","type":"Microsoft.Authorization/roleAssignments","name":"db3e8912-ef78-11ed-9094-0ed70c823176"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T21:23:10.1751715Z","updatedOn":"2023-05-10T21:23:10.1751715Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd8c02e4-ef78-11ed-9094-0ed70c823176","type":"Microsoft.Authorization/roleAssignments","name":"dd8c02e4-ef78-11ed-9094-0ed70c823176"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-12T17:27:33.1207504Z","updatedOn":"2023-05-12T17:27:33.1207504Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b59475c1-c560-4221-a59e-8c9f845d824c","type":"Microsoft.Authorization/roleAssignments","name":"b59475c1-c560-4221-a59e-8c9f845d824c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T18:50:21.8951381Z","updatedOn":"2023-05-15T18:50:21.8951381Z","createdBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","updatedBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57f8b39a-f351-11ed-a7a2-d28ee6de8df2","type":"Microsoft.Authorization/roleAssignments","name":"57f8b39a-f351-11ed-a7a2-d28ee6de8df2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T18:50:26.0744382Z","updatedOn":"2023-05-15T18:50:26.0744382Z","createdBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","updatedBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5a738a82-f351-11ed-a7a2-d28ee6de8df2","type":"Microsoft.Authorization/roleAssignments","name":"5a738a82-f351-11ed-a7a2-d28ee6de8df2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T20:09:25.9908381Z","updatedOn":"2023-05-15T20:09:25.9908381Z","createdBy":"1f978537-bb5b-4c76-9021-fb832071f334","updatedBy":"1f978537-bb5b-4c76-9021-fb832071f334","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63c222a4-f35c-11ed-a054-6e098a288f3f","type":"Microsoft.Authorization/roleAssignments","name":"63c222a4-f35c-11ed-a054-6e098a288f3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T20:09:35.2733605Z","updatedOn":"2023-05-15T20:09:35.2733605Z","createdBy":"1f978537-bb5b-4c76-9021-fb832071f334","updatedBy":"1f978537-bb5b-4c76-9021-fb832071f334","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6941144c-f35c-11ed-a054-6e098a288f3f","type":"Microsoft.Authorization/roleAssignments","name":"6941144c-f35c-11ed-a054-6e098a288f3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-17T20:10:57.7226371Z","updatedOn":"2023-05-17T20:10:57.7226371Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eda389e3-f4ee-11ed-b5ec-00155d3916e4","type":"Microsoft.Authorization/roleAssignments","name":"eda389e3-f4ee-11ed-b5ec-00155d3916e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-17T20:11:02.1123126Z","updatedOn":"2023-05-17T20:11:02.1123126Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f013376b-f4ee-11ed-b5ec-00155d3916e4","type":"Microsoft.Authorization/roleAssignments","name":"f013376b-f4ee-11ed-b5ec-00155d3916e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-19T16:27:28.8077810Z","updatedOn":"2023-05-19T16:27:28.8077810Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0bb8ff8d-f662-11ed-8f49-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"0bb8ff8d-f662-11ed-8f49-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-19T16:27:33.8052285Z","updatedOn":"2023-05-19T16:27:33.8052285Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ec6735e-f662-11ed-8f49-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"0ec6735e-f662-11ed-8f49-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-22T21:25:31.6093600Z","updatedOn":"2023-05-22T21:25:31.6093600Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d4e15d6-f8e7-11ed-8d3d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2d4e15d6-f8e7-11ed-8d3d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-22T21:25:39.5158809Z","updatedOn":"2023-05-22T21:25:39.5158809Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3232bc64-f8e7-11ed-8d3d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"3232bc64-f8e7-11ed-8d3d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T14:26:30.7681910Z","updatedOn":"2023-05-23T14:26:30.7681910Z","createdBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","updatedBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","delegatedManagedIdentityResourceId":null,"description":"Test + service principal"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/60f05fed-3b0c-4a91-86aa-44a327ded351","type":"Microsoft.Authorization/roleAssignments","name":"60f05fed-3b0c-4a91-86aa-44a327ded351"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T18:52:45.1223272Z","updatedOn":"2023-05-23T18:52:45.1223272Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47caa5b3-b27e-4f95-82b1-b5f87095df3a","type":"Microsoft.Authorization/roleAssignments","name":"47caa5b3-b27e-4f95-82b1-b5f87095df3a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T21:08:13.2773990Z","updatedOn":"2023-05-23T21:08:13.2773990Z","createdBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","updatedBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","delegatedManagedIdentityResourceId":null,"description":"Test + service principal"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79efe060-bf11-43db-ae9d-b281c8d0a9d8","type":"Microsoft.Authorization/roleAssignments","name":"79efe060-bf11-43db-ae9d-b281c8d0a9d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T23:58:25.0358872Z","updatedOn":"2023-05-23T23:58:25.0358872Z","createdBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","updatedBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3ca2af8-f9c5-11ed-9d5d-e64a5a4d2331","type":"Microsoft.Authorization/roleAssignments","name":"b3ca2af8-f9c5-11ed-9d5d-e64a5a4d2331"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T23:58:29.5965022Z","updatedOn":"2023-05-23T23:58:29.5965022Z","createdBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","updatedBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b699d06c-f9c5-11ed-9d5d-e64a5a4d2331","type":"Microsoft.Authorization/roleAssignments","name":"b699d06c-f9c5-11ed-9d5d-e64a5a4d2331"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-25T17:39:08.1426685Z","updatedOn":"2023-05-25T17:39:08.1426685Z","createdBy":"d87783d5-8706-48d6-ba20-d688d69119b2","updatedBy":"d87783d5-8706-48d6-ba20-d688d69119b2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23e6f3b5-225b-4e09-b962-619645aa3b66","type":"Microsoft.Authorization/roleAssignments","name":"23e6f3b5-225b-4e09-b962-619645aa3b66"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-25T20:11:52.1711289Z","updatedOn":"2023-05-25T20:11:52.1711289Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54d2e488-f4a3-4484-802e-ccd2bf4e0973","type":"Microsoft.Authorization/roleAssignments","name":"54d2e488-f4a3-4484-802e-ccd2bf4e0973"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-26T19:08:12.5337243Z","updatedOn":"2023-05-26T19:08:12.5337243Z","createdBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","updatedBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce436091-fe0c-51ad-a3a4-65285790684d","type":"Microsoft.Authorization/roleAssignments","name":"ce436091-fe0c-51ad-a3a4-65285790684d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-26T23:15:50.9221989Z","updatedOn":"2023-05-26T23:15:50.9221989Z","createdBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","updatedBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42aa6334-fc1b-11ed-8275-faccf5616d1b","type":"Microsoft.Authorization/roleAssignments","name":"42aa6334-fc1b-11ed-8275-faccf5616d1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-26T23:15:55.3490253Z","updatedOn":"2023-05-26T23:15:55.3490253Z","createdBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","updatedBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45629004-fc1b-11ed-8275-faccf5616d1b","type":"Microsoft.Authorization/roleAssignments","name":"45629004-fc1b-11ed-8275-faccf5616d1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-31T01:54:29.1188102Z","updatedOn":"2023-05-31T01:54:29.1188102Z","createdBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","updatedBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/13eebbd0-ff56-11ed-9bfa-02e332bf0a73","type":"Microsoft.Authorization/roleAssignments","name":"13eebbd0-ff56-11ed-9bfa-02e332bf0a73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-31T01:54:33.3318294Z","updatedOn":"2023-05-31T01:54:33.3318294Z","createdBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","updatedBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/166f22cd-ff56-11ed-9bfa-02e332bf0a73","type":"Microsoft.Authorization/roleAssignments","name":"166f22cd-ff56-11ed-9bfa-02e332bf0a73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-01T17:50:33.3890390Z","updatedOn":"2023-06-01T17:50:33.3890390Z","createdBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","updatedBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce40a1ba-00a4-11ee-9cf5-00155d28851f","type":"Microsoft.Authorization/roleAssignments","name":"ce40a1ba-00a4-11ee-9cf5-00155d28851f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-01T17:50:37.1678380Z","updatedOn":"2023-06-01T17:50:37.1678380Z","createdBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","updatedBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0850dfa-00a4-11ee-9cf5-00155d28851f","type":"Microsoft.Authorization/roleAssignments","name":"d0850dfa-00a4-11ee-9cf5-00155d28851f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-02T17:57:26.0215079Z","updatedOn":"2023-06-02T17:57:26.0215079Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd9cd89b-ff35-4fa2-9e07-0680ad3fa370","type":"Microsoft.Authorization/roleAssignments","name":"dd9cd89b-ff35-4fa2-9e07-0680ad3fa370"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-02T18:03:23.7925935Z","updatedOn":"2023-06-02T18:03:23.7925935Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d95aec2a-6adc-44a7-bd96-33d53af658bd","type":"Microsoft.Authorization/roleAssignments","name":"d95aec2a-6adc-44a7-bd96-33d53af658bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-03T02:03:08.3558097Z","updatedOn":"2023-06-03T02:03:08.3558097Z","createdBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","updatedBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c0f55e9-ff8c-410b-84c8-c613d1c425d1","type":"Microsoft.Authorization/roleAssignments","name":"6c0f55e9-ff8c-410b-84c8-c613d1c425d1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:28:30.6187015Z","updatedOn":"2023-06-05T17:28:30.6187015Z","createdBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","updatedBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63598898-03c6-11ee-a3b2-00155d87caab","type":"Microsoft.Authorization/roleAssignments","name":"63598898-03c6-11ee-a3b2-00155d87caab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:28:40.0597663Z","updatedOn":"2023-06-05T17:28:40.0597663Z","createdBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","updatedBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/68f66863-03c6-11ee-a3b2-00155d87caab","type":"Microsoft.Authorization/roleAssignments","name":"68f66863-03c6-11ee-a3b2-00155d87caab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:56:05.4845273Z","updatedOn":"2023-06-05T17:56:05.4845273Z","createdBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","updatedBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3dc7635d-03ca-11ee-aaaf-00155da910be","type":"Microsoft.Authorization/roleAssignments","name":"3dc7635d-03ca-11ee-aaaf-00155da910be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:56:09.7600652Z","updatedOn":"2023-06-05T17:56:09.7600652Z","createdBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","updatedBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40502bdc-03ca-11ee-aaaf-00155da910be","type":"Microsoft.Authorization/roleAssignments","name":"40502bdc-03ca-11ee-aaaf-00155da910be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T01:05:13.7066693Z","updatedOn":"2023-06-06T01:05:13.7066693Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/30f7f3e5-0406-11ee-b551-0022482d400c","type":"Microsoft.Authorization/roleAssignments","name":"30f7f3e5-0406-11ee-b551-0022482d400c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T05:00:05.2963688Z","updatedOn":"2023-06-06T05:00:05.2963688Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":"add + RCG-Read Write-CG-23637\n"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca637efb-b6e1-4bf5-bb88-a6724eacb0a7","type":"Microsoft.Authorization/roleAssignments","name":"ca637efb-b6e1-4bf5-bb88-a6724eacb0a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T17:38:31.9010821Z","updatedOn":"2023-06-06T17:38:31.9010821Z","createdBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","updatedBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4658d49-0490-11ee-994b-00155db896c4","type":"Microsoft.Authorization/roleAssignments","name":"f4658d49-0490-11ee-994b-00155db896c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T17:38:35.1906894Z","updatedOn":"2023-06-06T17:38:35.1906894Z","createdBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","updatedBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6601fef-0490-11ee-994b-00155db896c4","type":"Microsoft.Authorization/roleAssignments","name":"f6601fef-0490-11ee-994b-00155db896c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-07T01:57:45.0424798Z","updatedOn":"2023-06-07T01:57:45.0424798Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b19ebd13-04d6-11ee-b0e1-000d3a1d1b64","type":"Microsoft.Authorization/roleAssignments","name":"b19ebd13-04d6-11ee-b0e1-000d3a1d1b64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-07T18:06:20.2372529Z","updatedOn":"2023-06-07T18:06:20.2372529Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/944021da-5dd6-47df-b8bd-2b702ec66b62","type":"Microsoft.Authorization/roleAssignments","name":"944021da-5dd6-47df-b8bd-2b702ec66b62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-08T18:05:13.4812189Z","updatedOn":"2023-06-08T18:05:13.4812189Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/03b31b12-0627-11ee-a6d2-002248be7b21","type":"Microsoft.Authorization/roleAssignments","name":"03b31b12-0627-11ee-a6d2-002248be7b21"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-08T18:05:17.6164752Z","updatedOn":"2023-06-08T18:05:17.6164752Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/061fcfb9-0627-11ee-a6d2-002248be7b21","type":"Microsoft.Authorization/roleAssignments","name":"061fcfb9-0627-11ee-a6d2-002248be7b21"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T21:54:46.4146879Z","updatedOn":"2023-06-09T21:54:46.4146879Z","createdBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","updatedBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f5dc66d-0710-11ee-931c-00155d54ed98","type":"Microsoft.Authorization/roleAssignments","name":"3f5dc66d-0710-11ee-931c-00155d54ed98"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T21:54:50.2224528Z","updatedOn":"2023-06-09T21:54:50.2224528Z","createdBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","updatedBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41a244d2-0710-11ee-931c-00155d54ed98","type":"Microsoft.Authorization/roleAssignments","name":"41a244d2-0710-11ee-931c-00155d54ed98"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T22:15:22.1460837Z","updatedOn":"2023-06-09T22:15:22.1460837Z","createdBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","updatedBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1f99aa10-0713-11ee-9f64-00155dba898f","type":"Microsoft.Authorization/roleAssignments","name":"1f99aa10-0713-11ee-9f64-00155dba898f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T22:15:26.3614867Z","updatedOn":"2023-06-09T22:15:26.3614867Z","createdBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","updatedBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/221f3106-0713-11ee-9f64-00155dba898f","type":"Microsoft.Authorization/roleAssignments","name":"221f3106-0713-11ee-9f64-00155dba898f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-10T00:10:29.8161145Z","updatedOn":"2023-06-10T00:10:29.8161145Z","createdBy":"7df1b69c-686b-452a-9f60-59b12a299512","updatedBy":"7df1b69c-686b-452a-9f60-59b12a299512","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3547a3a6-0723-11ee-af96-521cf0d5af1e","type":"Microsoft.Authorization/roleAssignments","name":"3547a3a6-0723-11ee-af96-521cf0d5af1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-10T00:10:33.6141995Z","updatedOn":"2023-06-10T00:10:33.6141995Z","createdBy":"7df1b69c-686b-452a-9f60-59b12a299512","updatedBy":"7df1b69c-686b-452a-9f60-59b12a299512","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/377f6236-0723-11ee-af96-521cf0d5af1e","type":"Microsoft.Authorization/roleAssignments","name":"377f6236-0723-11ee-af96-521cf0d5af1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-12T03:43:13.3971745Z","updatedOn":"2023-06-12T03:43:13.3971745Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/417d165a-08d3-11ee-8ac2-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"417d165a-08d3-11ee-8ac2-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-12T05:29:01.6737026Z","updatedOn":"2023-06-12T05:29:01.6737026Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b154a136-cc93-46f2-8a71-079a399ec467","type":"Microsoft.Authorization/roleAssignments","name":"b154a136-cc93-46f2-8a71-079a399ec467"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-12T07:33:06.7743063Z","updatedOn":"2023-06-12T07:33:06.7743063Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5d216b6f-33aa-40e9-8b1d-c399739dab45","type":"Microsoft.Authorization/roleAssignments","name":"5d216b6f-33aa-40e9-8b1d-c399739dab45"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T00:55:32.6278707Z","updatedOn":"2023-06-13T00:55:32.6278707Z","createdBy":"859286db-3db2-4ba3-a081-93ef7001669f","updatedBy":"859286db-3db2-4ba3-a081-93ef7001669f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ff444828-0984-11ee-aeab-a6b46b784ab5","type":"Microsoft.Authorization/roleAssignments","name":"ff444828-0984-11ee-aeab-a6b46b784ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T00:55:37.9764519Z","updatedOn":"2023-06-13T00:55:37.9764519Z","createdBy":"859286db-3db2-4ba3-a081-93ef7001669f","updatedBy":"859286db-3db2-4ba3-a081-93ef7001669f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/02794298-0985-11ee-aeab-a6b46b784ab5","type":"Microsoft.Authorization/roleAssignments","name":"02794298-0985-11ee-aeab-a6b46b784ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T00:56:32.2043149Z","updatedOn":"2023-06-13T00:56:32.2043149Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39cae6b9-bfce-4d39-8a33-55001e8e7b87","type":"Microsoft.Authorization/roleAssignments","name":"39cae6b9-bfce-4d39-8a33-55001e8e7b87"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T17:52:57.9703504Z","updatedOn":"2023-06-13T17:52:57.9703504Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57f9abab-a02d-4961-aa68-f7b9a39940e6","type":"Microsoft.Authorization/roleAssignments","name":"57f9abab-a02d-4961-aa68-f7b9a39940e6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T17:54:34.0715865Z","updatedOn":"2023-06-13T17:54:34.0715865Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4caed6f2-725f-4ba4-918a-6b874a08574f","type":"Microsoft.Authorization/roleAssignments","name":"4caed6f2-725f-4ba4-918a-6b874a08574f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f58310d9-a9f6-439a-9e8d-f62e7b41a168","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T18:35:01.5499775Z","updatedOn":"2023-06-13T18:35:01.5499775Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b89c4524-5b48-40cb-9a55-b9712852158d","type":"Microsoft.Authorization/roleAssignments","name":"b89c4524-5b48-40cb-9a55-b9712852158d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T19:11:38.6491712Z","updatedOn":"2023-06-13T19:11:38.6491712Z","createdBy":"d87783d5-8706-48d6-ba20-d688d69119b2","updatedBy":"d87783d5-8706-48d6-ba20-d688d69119b2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09b91438-5494-4648-9766-b0079f6970de","type":"Microsoft.Authorization/roleAssignments","name":"09b91438-5494-4648-9766-b0079f6970de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T19:56:31.5140590Z","updatedOn":"2023-06-13T19:56:31.5140590Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0042f368-b701-4c14-8177-38b23d027a7e","type":"Microsoft.Authorization/roleAssignments","name":"0042f368-b701-4c14-8177-38b23d027a7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T12:57:07.9074452Z","updatedOn":"2023-06-14T12:57:07.9074452Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7e7c27e-0ab2-11ee-a74d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f7e7c27e-0ab2-11ee-a74d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T12:57:11.6755824Z","updatedOn":"2023-06-14T12:57:11.6755824Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa216932-0ab2-11ee-a74d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"fa216932-0ab2-11ee-a74d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T17:38:49.2228645Z","updatedOn":"2023-06-14T17:38:49.2228645Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84bddd3a-c733-408c-b9f2-689e5458a38f","type":"Microsoft.Authorization/roleAssignments","name":"84bddd3a-c733-408c-b9f2-689e5458a38f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T17:38:48.8722593Z","updatedOn":"2023-06-14T17:38:48.8722593Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8aa8e9b1-633b-4e0d-b371-8d21cfdf950a","type":"Microsoft.Authorization/roleAssignments","name":"8aa8e9b1-633b-4e0d-b371-8d21cfdf950a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T17:38:48.8686689Z","updatedOn":"2023-06-14T17:38:48.8686689Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef3807a5-a1bb-4bae-a3d7-781a09a2a198","type":"Microsoft.Authorization/roleAssignments","name":"ef3807a5-a1bb-4bae-a3d7-781a09a2a198"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-12T17:41:39.7941619Z","updatedOn":"2021-03-12T17:41:39.7941619Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4625aa1-611e-448a-bf3e-f37f2bc878a3","type":"Microsoft.Authorization/roleAssignments","name":"d4625aa1-611e-448a-bf3e-f37f2bc878a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-16T23:49:03.3523073Z","updatedOn":"2021-03-16T23:49:03.3523073Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f33005f1-10be-43e3-a87f-9e2f954fb2db","type":"Microsoft.Authorization/roleAssignments","name":"f33005f1-10be-43e3-a87f-9e2f954fb2db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-25T00:58:10.6501184Z","updatedOn":"2021-03-25T00:58:10.6501184Z","createdBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","updatedBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2aca810c-8d05-11eb-bd25-000d3a4359fa","type":"Microsoft.Authorization/roleAssignments","name":"2aca810c-8d05-11eb-bd25-000d3a4359fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-26T10:24:43.4077585Z","updatedOn":"2021-03-26T10:24:43.4077585Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/779ad30e-8e1d-11eb-8aa9-000d3ac754e3","type":"Microsoft.Authorization/roleAssignments","name":"779ad30e-8e1d-11eb-8aa9-000d3ac754e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/46610f90-7283-a03b-3791-33f202e8180c","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T22:46:23.4119129Z","updatedOn":"2022-01-27T22:46:23.4119129Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/46610f90-7283-a03b-3791-33f202e8180c/providers/Microsoft.Authorization/roleAssignments/d92f870d-03da-4626-a453-84734da0b49c","type":"Microsoft.Authorization/roleAssignments","name":"d92f870d-03da-4626-a453-84734da0b49c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.8423155Z","updatedOn":"2019-03-26T22:01:02.8423155Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad/providers/Microsoft.Authorization/roleAssignments/3d069c98-e792-47bd-b58a-399e2d42dbab","type":"Microsoft.Authorization/roleAssignments","name":"3d069c98-e792-47bd-b58a-399e2d42dbab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad","condition":null,"conditionVersion":null,"createdOn":"2021-04-09T18:15:49.7063250Z","updatedOn":"2021-04-09T18:15:49.7063250Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad/providers/Microsoft.Authorization/roleAssignments/a6b435df-80e6-4a7b-b109-2af5f373d238","type":"Microsoft.Authorization/roleAssignments","name":"a6b435df-80e6-4a7b-b109-2af5f373d238"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9176787Z","updatedOn":"2019-03-26T22:01:02.9176787Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320","type":"Microsoft.Authorization/roleAssignments","name":"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:49:37.3000523Z","updatedOn":"2019-03-27T00:49:37.3000523Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29","type":"Microsoft.Authorization/roleAssignments","name":"e6e1fffd-83f7-40c7-9f33-e56e2cf75b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:50:08.3039053Z","updatedOn":"2019-03-27T00:50:08.3039053Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12","type":"Microsoft.Authorization/roleAssignments","name":"3d01f56e-ee3a-41ed-a775-0e067546cb12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T23:11:28.9217618Z","updatedOn":"2022-06-28T23:11:28.9217618Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/869183bd-893a-46f9-bb02-45e48b13f1be","type":"Microsoft.Authorization/roleAssignments","name":"869183bd-893a-46f9-bb02-45e48b13f1be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T22:32:46.2324804Z","updatedOn":"2023-02-21T22:32:46.2324804Z","createdBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","updatedBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/df7c1e07-5c2d-4b22-b7b9-fd11a8569db3","type":"Microsoft.Authorization/roleAssignments","name":"df7c1e07-5c2d-4b22-b7b9-fd11a8569db3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T20:23:16.3808369Z","updatedOn":"2023-05-04T20:23:16.3808369Z","createdBy":"fa00c2de-57d5-4527-9254-4d513f482d0a","updatedBy":"fa00c2de-57d5-4527-9254-4d513f482d0a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/59109645-7b2b-4278-831a-2e4627ec603d","type":"Microsoft.Authorization/roleAssignments","name":"59109645-7b2b-4278-831a-2e4627ec603d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T18:51:21.0106036Z","updatedOn":"2023-06-14T18:51:21.0106036Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/4b5ec091-6c25-4b0b-ad13-4e5fada13135","type":"Microsoft.Authorization/roleAssignments","name":"4b5ec091-6c25-4b0b-ad13-4e5fada13135"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T18:51:21.3009579Z","updatedOn":"2023-06-14T18:51:21.3009579Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/7611fbf1-4e0a-4de2-b807-18303341b067","type":"Microsoft.Authorization/roleAssignments","name":"7611fbf1-4e0a-4de2-b807-18303341b067"}]}' headers: cache-control: - no-cache content-length: - - '65957' + - '788913' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:23:12 GMT + - Wed, 14 Jun 2023 19:21:17 GMT expires: - '-1' pragma: @@ -2407,7 +2897,7 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestnql4jwkh3-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestcqyjkyn7i-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", @@ -2415,14 +2905,13 @@ interactions: false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "httpProxyConfig": {"httpProxy": "http://cli-proxy-vm:3128/", "httpsProxy": - "https://cli-proxy-vm:3129/", "noProxy": ["localhost", "127.0.0.1"], "trustedCa": - "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZHekNDQXdPZ0F3SUJBZ0lVT1FvajhDTFpkc2Vscjk3cnZJd3g1T0xEc3V3d0RRWUpLb1pJaHZjTkFRRUwKQlFBd0Z6RVZNQk1HQTFVRUF3d01ZMnhwTFhCeWIzaDVMWFp0TUI0WERUSXlNRE13T0RFMk5EUTBOMW9YRFRNeQpNRE13TlRFMk5EUTBOMW93RnpFVk1CTUdBMVVFQXd3TVkyeHBMWEJ5YjNoNUxYWnRNSUlDSWpBTkJna3Foa2lHCjl3MEJBUUVGQUFPQ0FnOEFNSUlDQ2dLQ0FnRUEvTVB0VjVCVFB0NmNxaTRSZE1sbXIzeUlzYTJ1anpjaHh2NGgKanNDMUR0blJnb3M1UzQxUEgwcmkrM3RUU1ZYMzJ5cndzWStyRDFZUnVwbTZsbUU3R2hVNUkwR2k5b3prU0YwWgpLS2FKaTJveXBVL0ZCK1FQcXpvQ1JzTUV3R0NibUtGVmw4VnVoeW5kWEs0YjRrYmxyOWJsL2V1d2Q3TThTYnZ6CldVam5lRHJRc2lJc3J6UFQ0S0FaTHFjdHpEZTRsbFBUN1lLYTMzaGlFUE9mdldpWitkcWthUUE5UDY0eFhTeW4KZkhYOHVWQUozdUJWSmVHeEQwcGtOSjdqT3J5YVV1SEh1Y1U4UzltSWpuS2pBQjVhUGpMSDV4QXM2bG1iMzEyMgp5KzF0bkVBbVhNNTBEK1VvRWpmUzZIT2I1cmRpcVhHdmMxS2JvS2p6a1BDUnh4MmE3MmN2ZWdVajZtZ0FKTHpnClRoRTFsbGNtVTRpemd4b0lNa1ZwR1RWT0xMbjFWRkt1TmhNWkN2RnZLZ25Lb0F2M0cwRlVuZldFYVJSalNObUQKTFlhTURUNUg5WnQycERJVWpVR1N0Q2w3Z1J6TUVuWXdKTzN5aURwZzQzbzVkUnlzVXlMOUpmRS9OaDdUZzYxOApuOGNKL1c3K1FZYllsanVyYXA4cjdRRlNyb2wzVkNoRkIrT29yNW5pK3ZvaFNBd0pmMFVsTXBHM3hXbXkxVUk0ClRGS2ZGR1JSVHpyUCs3Yk53WDVoSXZJeTVWdGd5YU9xSndUeGhpL0pkeHRPcjJ0QTVyQ1c3K0N0Z1N2emtxTkUKWHlyN3ZrWWdwNlk1TFpneTR0VWpLMEswT1VnVmRqQk9oRHBFenkvRkY4dzFGRVZnSjBxWS9yV2NMa0JIRFQ4Ugp2SmtoaW84Q0F3RUFBYU5mTUYwd0Z3WURWUjBSQkJBd0RvSU1ZMnhwTFhCeWIzaDVMWFp0TUJJR0ExVWRFd0VCCi93UUlNQVlCQWY4Q0FRQXdEd1lEVlIwUEFRSC9CQVVEQXdmbmdEQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0QKQWdZSUt3WUJCUVVIQXdFd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dJQkFBb21qQ3lYdmFRT3hnWUs1MHNYTEIyKwp3QWZkc3g1bm5HZGd5Zmc0dXJXMlZtMTVEaEd2STdDL250cTBkWXkyNE4vVWJHN1VEWHZseUxJSkZxMVhQN25mCnBaRzBWQ2paNjlibXhLbTNaOG0wL0F3TXZpOGU5ZWR5OHY5a05CQ3dMR2tIYkE4WW85Q0lpUWdlbGZwcDF2VWgKYm5OQmhhRCtpdTZDZmlDTHdnSmIvaXc3ZW8vQ3lvWnF4K3RqWGFPMnpYdm00cC8rUUlmQU9ndEdRTEZVOGNmWgovZ1VyVHE1Z0ZxMCtQOUd5V3NBVEpGNnE3TDZXWlpqME91VHNlN2Y0Q1NpajZNbk9NTXhBK0pvYWhKejdsc1NpClRKSEl3RXA1ci9SeWhweWVwUXhGWWNVSDVKSmY5cmFoWExXWmkrOVRqeFNNMll5aHhmUlBzaVVFdUdEb2s3OFEKbS9RUGlDaTlKSmIxb2NtVGpBVjh4RFNob2NpdlhPRnlobjZMbjc3dkxqWStBYXZ0V0RoUXRocHVQeHNMdFZ6bQplMFNIMTFkRUxSdGI3NG1xWE9yTzdmdS8rSUJzM0pxTEUvVSt4dXhRdHZHOHZHMXlES0hIU1pxUzJoL1dzNGw0Ck5pQXNoSGdlaFFEUEJjWTl3WVl6ZkJnWnBPVU16ZERmNTB4K0ZTbFk0M1dPSkp6U3VRaDR5WjArM2t5Z3VDRjgKcm5NTFNjZXlTNGNpNExtSi9LQ1N1R2RmNlhWWXo4QkU5Z2pqanBDUDZxeTBVbFJlZldzL2lnL3djSysyYkYxVApuL1l2KzZnWGVDVEhKNzVxRElQbHA3RFJVVWswZmJNajRiSWthb2dXV2s0emYydThteFpMYTBsZVBLTktaTi9tCkdDdkZ3cjNlaSt1LzhjenA1RjdUCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K"}, + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "httpProxyConfig": {"httpProxy": + "http://cli-proxy-vm:3128/", "httpsProxy": "https://cli-proxy-vm:3129/", "noProxy": + ["localhost", "127.0.0.1"], "trustedCa": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZHekNDQXdPZ0F3SUJBZ0lVT1FvajhDTFpkc2Vscjk3cnZJd3g1T0xEc3V3d0RRWUpLb1pJaHZjTkFRRUwKQlFBd0Z6RVZNQk1HQTFVRUF3d01ZMnhwTFhCeWIzaDVMWFp0TUI0WERUSXlNRE13T0RFMk5EUTBOMW9YRFRNeQpNRE13TlRFMk5EUTBOMW93RnpFVk1CTUdBMVVFQXd3TVkyeHBMWEJ5YjNoNUxYWnRNSUlDSWpBTkJna3Foa2lHCjl3MEJBUUVGQUFPQ0FnOEFNSUlDQ2dLQ0FnRUEvTVB0VjVCVFB0NmNxaTRSZE1sbXIzeUlzYTJ1anpjaHh2NGgKanNDMUR0blJnb3M1UzQxUEgwcmkrM3RUU1ZYMzJ5cndzWStyRDFZUnVwbTZsbUU3R2hVNUkwR2k5b3prU0YwWgpLS2FKaTJveXBVL0ZCK1FQcXpvQ1JzTUV3R0NibUtGVmw4VnVoeW5kWEs0YjRrYmxyOWJsL2V1d2Q3TThTYnZ6CldVam5lRHJRc2lJc3J6UFQ0S0FaTHFjdHpEZTRsbFBUN1lLYTMzaGlFUE9mdldpWitkcWthUUE5UDY0eFhTeW4KZkhYOHVWQUozdUJWSmVHeEQwcGtOSjdqT3J5YVV1SEh1Y1U4UzltSWpuS2pBQjVhUGpMSDV4QXM2bG1iMzEyMgp5KzF0bkVBbVhNNTBEK1VvRWpmUzZIT2I1cmRpcVhHdmMxS2JvS2p6a1BDUnh4MmE3MmN2ZWdVajZtZ0FKTHpnClRoRTFsbGNtVTRpemd4b0lNa1ZwR1RWT0xMbjFWRkt1TmhNWkN2RnZLZ25Lb0F2M0cwRlVuZldFYVJSalNObUQKTFlhTURUNUg5WnQycERJVWpVR1N0Q2w3Z1J6TUVuWXdKTzN5aURwZzQzbzVkUnlzVXlMOUpmRS9OaDdUZzYxOApuOGNKL1c3K1FZYllsanVyYXA4cjdRRlNyb2wzVkNoRkIrT29yNW5pK3ZvaFNBd0pmMFVsTXBHM3hXbXkxVUk0ClRGS2ZGR1JSVHpyUCs3Yk53WDVoSXZJeTVWdGd5YU9xSndUeGhpL0pkeHRPcjJ0QTVyQ1c3K0N0Z1N2emtxTkUKWHlyN3ZrWWdwNlk1TFpneTR0VWpLMEswT1VnVmRqQk9oRHBFenkvRkY4dzFGRVZnSjBxWS9yV2NMa0JIRFQ4Ugp2SmtoaW84Q0F3RUFBYU5mTUYwd0Z3WURWUjBSQkJBd0RvSU1ZMnhwTFhCeWIzaDVMWFp0TUJJR0ExVWRFd0VCCi93UUlNQVlCQWY4Q0FRQXdEd1lEVlIwUEFRSC9CQVVEQXdmbmdEQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0QKQWdZSUt3WUJCUVVIQXdFd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dJQkFBb21qQ3lYdmFRT3hnWUs1MHNYTEIyKwp3QWZkc3g1bm5HZGd5Zmc0dXJXMlZtMTVEaEd2STdDL250cTBkWXkyNE4vVWJHN1VEWHZseUxJSkZxMVhQN25mCnBaRzBWQ2paNjlibXhLbTNaOG0wL0F3TXZpOGU5ZWR5OHY5a05CQ3dMR2tIYkE4WW85Q0lpUWdlbGZwcDF2VWgKYm5OQmhhRCtpdTZDZmlDTHdnSmIvaXc3ZW8vQ3lvWnF4K3RqWGFPMnpYdm00cC8rUUlmQU9ndEdRTEZVOGNmWgovZ1VyVHE1Z0ZxMCtQOUd5V3NBVEpGNnE3TDZXWlpqME91VHNlN2Y0Q1NpajZNbk9NTXhBK0pvYWhKejdsc1NpClRKSEl3RXA1ci9SeWhweWVwUXhGWWNVSDVKSmY5cmFoWExXWmkrOVRqeFNNMll5aHhmUlBzaVVFdUdEb2s3OFEKbS9RUGlDaTlKSmIxb2NtVGpBVjh4RFNob2NpdlhPRnlobjZMbjc3dkxqWStBYXZ0V0RoUXRocHVQeHNMdFZ6bQplMFNIMTFkRUxSdGI3NG1xWE9yTzdmdS8rSUJzM0pxTEUvVSt4dXhRdHZHOHZHMXlES0hIU1pxUzJoL1dzNGw0Ck5pQXNoSGdlaFFEUEJjWTl3WVl6ZkJnWnBPVU16ZERmNTB4K0ZTbFk0M1dPSkp6U3VRaDR5WjArM2t5Z3VDRjgKcm5NTFNjZXlTNGNpNExtSi9LQ1N1R2RmNlhWWXo4QkU5Z2pqanBDUDZxeTBVbFJlZldzL2lnL3djSysyYkYxVApuL1l2KzZnWGVDVEhKNzVxRElQbHA3RFJVVWswZmJNajRiSWthb2dXV2s0emYydThteFpMYTBsZVBLTktaTi9tCkdDdkZ3cjNlaSt1LzhjenA1RjdUCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K"}, "storageProfile": {}}}' headers: Accept: @@ -2434,76 +2923,82 @@ interactions: Connection: - keep-alive Content-Length: - - '4242' + - '4534' Content-Type: - application/json ParameterSetName: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestnql4jwkh3-79a739\",\n \"fqdn\": \"cliakstest-clitestnql4jwkh3-79a739-c4knwdy7.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestnql4jwkh3-79a739-c4knwdy7.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"httpProxyConfig\": - {\n \"httpProxy\": \"http://cli-proxy-vm:3128/\",\n \"httpsProxy\": - \"https://cli-proxy-vm:3129/\",\n \"noProxy\": [\n \"127.0.0.1\",\n - \ \"168.63.129.16\",\n \"169.254.169.254\",\n \"cliakstest-clitestnql4jwkh3-79a739-c4knwdy7.hcp.westus2.azmk8s.io\",\n - \ \"localhost\",\n \"10.0.0.0/16\",\n \"10.42.0.0/16\",\n \"10.244.0.0/16\",\n - \ \"konnectivity\"\n ],\n \"effectiveNoProxy\": [\n \"127.0.0.1\",\n - \ \"168.63.129.16\",\n \"169.254.169.254\",\n \"cliakstest-clitestnql4jwkh3-79a739-c4knwdy7.hcp.westus2.azmk8s.io\",\n - \ \"localhost\",\n \"10.0.0.0/16\",\n \"10.42.0.0/16\",\n \"10.244.0.0/16\",\n - \ \"konnectivity\"\n ],\n \"trustedCa\": \"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZHekNDQXdPZ0F3SUJBZ0lVT1FvajhDTFpkc2Vscjk3cnZJd3g1T0xEc3V3d0RRWUpLb1pJaHZjTkFRRUwKQlFBd0Z6RVZNQk1HQTFVRUF3d01ZMnhwTFhCeWIzaDVMWFp0TUI0WERUSXlNRE13T0RFMk5EUTBOMW9YRFRNeQpNRE13TlRFMk5EUTBOMW93RnpFVk1CTUdBMVVFQXd3TVkyeHBMWEJ5YjNoNUxYWnRNSUlDSWpBTkJna3Foa2lHCjl3MEJBUUVGQUFPQ0FnOEFNSUlDQ2dLQ0FnRUEvTVB0VjVCVFB0NmNxaTRSZE1sbXIzeUlzYTJ1anpjaHh2NGgKanNDMUR0blJnb3M1UzQxUEgwcmkrM3RUU1ZYMzJ5cndzWStyRDFZUnVwbTZsbUU3R2hVNUkwR2k5b3prU0YwWgpLS2FKaTJveXBVL0ZCK1FQcXpvQ1JzTUV3R0NibUtGVmw4VnVoeW5kWEs0YjRrYmxyOWJsL2V1d2Q3TThTYnZ6CldVam5lRHJRc2lJc3J6UFQ0S0FaTHFjdHpEZTRsbFBUN1lLYTMzaGlFUE9mdldpWitkcWthUUE5UDY0eFhTeW4KZkhYOHVWQUozdUJWSmVHeEQwcGtOSjdqT3J5YVV1SEh1Y1U4UzltSWpuS2pBQjVhUGpMSDV4QXM2bG1iMzEyMgp5KzF0bkVBbVhNNTBEK1VvRWpmUzZIT2I1cmRpcVhHdmMxS2JvS2p6a1BDUnh4MmE3MmN2ZWdVajZtZ0FKTHpnClRoRTFsbGNtVTRpemd4b0lNa1ZwR1RWT0xMbjFWRkt1TmhNWkN2RnZLZ25Lb0F2M0cwRlVuZldFYVJSalNObUQKTFlhTURUNUg5WnQycERJVWpVR1N0Q2w3Z1J6TUVuWXdKTzN5aURwZzQzbzVkUnlzVXlMOUpmRS9OaDdUZzYxOApuOGNKL1c3K1FZYllsanVyYXA4cjdRRlNyb2wzVkNoRkIrT29yNW5pK3ZvaFNBd0pmMFVsTXBHM3hXbXkxVUk0ClRGS2ZGR1JSVHpyUCs3Yk53WDVoSXZJeTVWdGd5YU9xSndUeGhpL0pkeHRPcjJ0QTVyQ1c3K0N0Z1N2emtxTkUKWHlyN3ZrWWdwNlk1TFpneTR0VWpLMEswT1VnVmRqQk9oRHBFenkvRkY4dzFGRVZnSjBxWS9yV2NMa0JIRFQ4Ugp2SmtoaW84Q0F3RUFBYU5mTUYwd0Z3WURWUjBSQkJBd0RvSU1ZMnhwTFhCeWIzaDVMWFp0TUJJR0ExVWRFd0VCCi93UUlNQVlCQWY4Q0FRQXdEd1lEVlIwUEFRSC9CQVVEQXdmbmdEQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0QKQWdZSUt3WUJCUVVIQXdFd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dJQkFBb21qQ3lYdmFRT3hnWUs1MHNYTEIyKwp3QWZkc3g1bm5HZGd5Zmc0dXJXMlZtMTVEaEd2STdDL250cTBkWXkyNE4vVWJHN1VEWHZseUxJSkZxMVhQN25mCnBaRzBWQ2paNjlibXhLbTNaOG0wL0F3TXZpOGU5ZWR5OHY5a05CQ3dMR2tIYkE4WW85Q0lpUWdlbGZwcDF2VWgKYm5OQmhhRCtpdTZDZmlDTHdnSmIvaXc3ZW8vQ3lvWnF4K3RqWGFPMnpYdm00cC8rUUlmQU9ndEdRTEZVOGNmWgovZ1VyVHE1Z0ZxMCtQOUd5V3NBVEpGNnE3TDZXWlpqME91VHNlN2Y0Q1NpajZNbk9NTXhBK0pvYWhKejdsc1NpClRKSEl3RXA1ci9SeWhweWVwUXhGWWNVSDVKSmY5cmFoWExXWmkrOVRqeFNNMll5aHhmUlBzaVVFdUdEb2s3OFEKbS9RUGlDaTlKSmIxb2NtVGpBVjh4RFNob2NpdlhPRnlobjZMbjc3dkxqWStBYXZ0V0RoUXRocHVQeHNMdFZ6bQplMFNIMTFkRUxSdGI3NG1xWE9yTzdmdS8rSUJzM0pxTEUvVSt4dXhRdHZHOHZHMXlES0hIU1pxUzJoL1dzNGw0Ck5pQXNoSGdlaFFEUEJjWTl3WVl6ZkJnWnBPVU16ZERmNTB4K0ZTbFk0M1dPSkp6U3VRaDR5WjArM2t5Z3VDRjgKcm5NTFNjZXlTNGNpNExtSi9LQ1N1R2RmNlhWWXo4QkU5Z2pqanBDUDZxeTBVbFJlZldzL2lnL3djSysyYkYxVApuL1l2KzZnWGVDVEhKNzVxRElQbHA3RFJVVWswZmJNajRiSWthb2dXV2s0emYydThteFpMYTBsZVBLTktaTi9tCkdDdkZ3cjNlaSt1LzhjenA1RjdUCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\"\n - \ },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestcqyjkyn7i-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestcqyjkyn7i-8ecadf-ky1mct24.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestcqyjkyn7i-8ecadf-ky1mct24.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"httpProxyConfig\": {\n \"httpProxy\": \"http://cli-proxy-vm:3128/\"\ + ,\n \"httpsProxy\": \"https://cli-proxy-vm:3129/\",\n \"noProxy\": [\n\ + \ \"localhost\",\n \"127.0.0.1\",\n \"10.0.0.0/16\",\n \"\ + 169.254.169.254\",\n \"10.42.0.0/16\",\n \"168.63.129.16\",\n \ + \ \"cliakstest-clitestcqyjkyn7i-8ecadf-ky1mct24.hcp.westus2.azmk8s.io\",\n\ + \ \"konnectivity\",\n \"10.244.0.0/16\"\n ],\n \"effectiveNoProxy\"\ + : [\n \"localhost\",\n \"127.0.0.1\",\n \"10.0.0.0/16\",\n \ + \ \"169.254.169.254\",\n \"10.42.0.0/16\",\n \"168.63.129.16\",\n\ + \ \"cliakstest-clitestcqyjkyn7i-8ecadf-ky1mct24.hcp.westus2.azmk8s.io\"\ + ,\n \"konnectivity\",\n \"10.244.0.0/16\"\n ],\n \"trustedCa\"\ + : \"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZHekNDQXdPZ0F3SUJBZ0lVT1FvajhDTFpkc2Vscjk3cnZJd3g1T0xEc3V3d0RRWUpLb1pJaHZjTkFRRUwKQlFBd0Z6RVZNQk1HQTFVRUF3d01ZMnhwTFhCeWIzaDVMWFp0TUI0WERUSXlNRE13T0RFMk5EUTBOMW9YRFRNeQpNRE13TlRFMk5EUTBOMW93RnpFVk1CTUdBMVVFQXd3TVkyeHBMWEJ5YjNoNUxYWnRNSUlDSWpBTkJna3Foa2lHCjl3MEJBUUVGQUFPQ0FnOEFNSUlDQ2dLQ0FnRUEvTVB0VjVCVFB0NmNxaTRSZE1sbXIzeUlzYTJ1anpjaHh2NGgKanNDMUR0blJnb3M1UzQxUEgwcmkrM3RUU1ZYMzJ5cndzWStyRDFZUnVwbTZsbUU3R2hVNUkwR2k5b3prU0YwWgpLS2FKaTJveXBVL0ZCK1FQcXpvQ1JzTUV3R0NibUtGVmw4VnVoeW5kWEs0YjRrYmxyOWJsL2V1d2Q3TThTYnZ6CldVam5lRHJRc2lJc3J6UFQ0S0FaTHFjdHpEZTRsbFBUN1lLYTMzaGlFUE9mdldpWitkcWthUUE5UDY0eFhTeW4KZkhYOHVWQUozdUJWSmVHeEQwcGtOSjdqT3J5YVV1SEh1Y1U4UzltSWpuS2pBQjVhUGpMSDV4QXM2bG1iMzEyMgp5KzF0bkVBbVhNNTBEK1VvRWpmUzZIT2I1cmRpcVhHdmMxS2JvS2p6a1BDUnh4MmE3MmN2ZWdVajZtZ0FKTHpnClRoRTFsbGNtVTRpemd4b0lNa1ZwR1RWT0xMbjFWRkt1TmhNWkN2RnZLZ25Lb0F2M0cwRlVuZldFYVJSalNObUQKTFlhTURUNUg5WnQycERJVWpVR1N0Q2w3Z1J6TUVuWXdKTzN5aURwZzQzbzVkUnlzVXlMOUpmRS9OaDdUZzYxOApuOGNKL1c3K1FZYllsanVyYXA4cjdRRlNyb2wzVkNoRkIrT29yNW5pK3ZvaFNBd0pmMFVsTXBHM3hXbXkxVUk0ClRGS2ZGR1JSVHpyUCs3Yk53WDVoSXZJeTVWdGd5YU9xSndUeGhpL0pkeHRPcjJ0QTVyQ1c3K0N0Z1N2emtxTkUKWHlyN3ZrWWdwNlk1TFpneTR0VWpLMEswT1VnVmRqQk9oRHBFenkvRkY4dzFGRVZnSjBxWS9yV2NMa0JIRFQ4Ugp2SmtoaW84Q0F3RUFBYU5mTUYwd0Z3WURWUjBSQkJBd0RvSU1ZMnhwTFhCeWIzaDVMWFp0TUJJR0ExVWRFd0VCCi93UUlNQVlCQWY4Q0FRQXdEd1lEVlIwUEFRSC9CQVVEQXdmbmdEQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0QKQWdZSUt3WUJCUVVIQXdFd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dJQkFBb21qQ3lYdmFRT3hnWUs1MHNYTEIyKwp3QWZkc3g1bm5HZGd5Zmc0dXJXMlZtMTVEaEd2STdDL250cTBkWXkyNE4vVWJHN1VEWHZseUxJSkZxMVhQN25mCnBaRzBWQ2paNjlibXhLbTNaOG0wL0F3TXZpOGU5ZWR5OHY5a05CQ3dMR2tIYkE4WW85Q0lpUWdlbGZwcDF2VWgKYm5OQmhhRCtpdTZDZmlDTHdnSmIvaXc3ZW8vQ3lvWnF4K3RqWGFPMnpYdm00cC8rUUlmQU9ndEdRTEZVOGNmWgovZ1VyVHE1Z0ZxMCtQOUd5V3NBVEpGNnE3TDZXWlpqME91VHNlN2Y0Q1NpajZNbk9NTXhBK0pvYWhKejdsc1NpClRKSEl3RXA1ci9SeWhweWVwUXhGWWNVSDVKSmY5cmFoWExXWmkrOVRqeFNNMll5aHhmUlBzaVVFdUdEb2s3OFEKbS9RUGlDaTlKSmIxb2NtVGpBVjh4RFNob2NpdlhPRnlobjZMbjc3dkxqWStBYXZ0V0RoUXRocHVQeHNMdFZ6bQplMFNIMTFkRUxSdGI3NG1xWE9yTzdmdS8rSUJzM0pxTEUvVSt4dXhRdHZHOHZHMXlES0hIU1pxUzJoL1dzNGw0Ck5pQXNoSGdlaFFEUEJjWTl3WVl6ZkJnWnBPVU16ZERmNTB4K0ZTbFk0M1dPSkp6U3VRaDR5WjArM2t5Z3VDRjgKcm5NTFNjZXlTNGNpNExtSi9LQ1N1R2RmNlhWWXo4QkU5Z2pqanBDUDZxeTBVbFJlZldzL2lnL3djSysyYkYxVApuL1l2KzZnWGVDVEhKNzVxRElQbHA3RFJVVWswZmJNajRiSWthb2dXV2s0emYydThteFpMYTBsZVBLTktaTi9tCkdDdkZ3cjNlaSt1LzhjenA1RjdUCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\"\ + \n },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22d80f98-5f98-440c-9658-2faa6213773c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5beb9605-0f66-4ea5-b27a-5db79f1b7e61?api-version=2016-03-30 cache-control: - no-cache content-length: - - '6572' + - '6900' content-type: - application/json date: - - Wed, 15 Mar 2023 10:23:15 GMT + - Wed, 14 Jun 2023 19:21:25 GMT expires: - '-1' pragma: @@ -2515,7 +3010,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -2523,7 +3018,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2534,67 +3029,23 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5beb9605-0f66-4ea5-b27a-5db79f1b7e61?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestnql4jwkh3-79a739\",\n \"fqdn\": \"cliakstest-clitestnql4jwkh3-79a739-c4knwdy7.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestnql4jwkh3-79a739-c4knwdy7.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"httpProxyConfig\": - {\n \"httpProxy\": \"http://cli-proxy-vm:3128/\",\n \"httpsProxy\": - \"https://cli-proxy-vm:3129/\",\n \"noProxy\": [\n \"127.0.0.1\",\n - \ \"168.63.129.16\",\n \"169.254.169.254\",\n \"cliakstest-clitestnql4jwkh3-79a739-c4knwdy7.hcp.westus2.azmk8s.io\",\n - \ \"localhost\",\n \"10.0.0.0/16\",\n \"10.42.0.0/16\",\n \"10.244.0.0/16\",\n - \ \"konnectivity\"\n ],\n \"effectiveNoProxy\": [\n \"127.0.0.1\",\n - \ \"168.63.129.16\",\n \"169.254.169.254\",\n \"cliakstest-clitestnql4jwkh3-79a739-c4knwdy7.hcp.westus2.azmk8s.io\",\n - \ \"localhost\",\n \"10.0.0.0/16\",\n \"10.42.0.0/16\",\n \"10.244.0.0/16\",\n - \ \"konnectivity\"\n ],\n \"trustedCa\": \"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZHekNDQXdPZ0F3SUJBZ0lVT1FvajhDTFpkc2Vscjk3cnZJd3g1T0xEc3V3d0RRWUpLb1pJaHZjTkFRRUwKQlFBd0Z6RVZNQk1HQTFVRUF3d01ZMnhwTFhCeWIzaDVMWFp0TUI0WERUSXlNRE13T0RFMk5EUTBOMW9YRFRNeQpNRE13TlRFMk5EUTBOMW93RnpFVk1CTUdBMVVFQXd3TVkyeHBMWEJ5YjNoNUxYWnRNSUlDSWpBTkJna3Foa2lHCjl3MEJBUUVGQUFPQ0FnOEFNSUlDQ2dLQ0FnRUEvTVB0VjVCVFB0NmNxaTRSZE1sbXIzeUlzYTJ1anpjaHh2NGgKanNDMUR0blJnb3M1UzQxUEgwcmkrM3RUU1ZYMzJ5cndzWStyRDFZUnVwbTZsbUU3R2hVNUkwR2k5b3prU0YwWgpLS2FKaTJveXBVL0ZCK1FQcXpvQ1JzTUV3R0NibUtGVmw4VnVoeW5kWEs0YjRrYmxyOWJsL2V1d2Q3TThTYnZ6CldVam5lRHJRc2lJc3J6UFQ0S0FaTHFjdHpEZTRsbFBUN1lLYTMzaGlFUE9mdldpWitkcWthUUE5UDY0eFhTeW4KZkhYOHVWQUozdUJWSmVHeEQwcGtOSjdqT3J5YVV1SEh1Y1U4UzltSWpuS2pBQjVhUGpMSDV4QXM2bG1iMzEyMgp5KzF0bkVBbVhNNTBEK1VvRWpmUzZIT2I1cmRpcVhHdmMxS2JvS2p6a1BDUnh4MmE3MmN2ZWdVajZtZ0FKTHpnClRoRTFsbGNtVTRpemd4b0lNa1ZwR1RWT0xMbjFWRkt1TmhNWkN2RnZLZ25Lb0F2M0cwRlVuZldFYVJSalNObUQKTFlhTURUNUg5WnQycERJVWpVR1N0Q2w3Z1J6TUVuWXdKTzN5aURwZzQzbzVkUnlzVXlMOUpmRS9OaDdUZzYxOApuOGNKL1c3K1FZYllsanVyYXA4cjdRRlNyb2wzVkNoRkIrT29yNW5pK3ZvaFNBd0pmMFVsTXBHM3hXbXkxVUk0ClRGS2ZGR1JSVHpyUCs3Yk53WDVoSXZJeTVWdGd5YU9xSndUeGhpL0pkeHRPcjJ0QTVyQ1c3K0N0Z1N2emtxTkUKWHlyN3ZrWWdwNlk1TFpneTR0VWpLMEswT1VnVmRqQk9oRHBFenkvRkY4dzFGRVZnSjBxWS9yV2NMa0JIRFQ4Ugp2SmtoaW84Q0F3RUFBYU5mTUYwd0Z3WURWUjBSQkJBd0RvSU1ZMnhwTFhCeWIzaDVMWFp0TUJJR0ExVWRFd0VCCi93UUlNQVlCQWY4Q0FRQXdEd1lEVlIwUEFRSC9CQVVEQXdmbmdEQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0QKQWdZSUt3WUJCUVVIQXdFd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dJQkFBb21qQ3lYdmFRT3hnWUs1MHNYTEIyKwp3QWZkc3g1bm5HZGd5Zmc0dXJXMlZtMTVEaEd2STdDL250cTBkWXkyNE4vVWJHN1VEWHZseUxJSkZxMVhQN25mCnBaRzBWQ2paNjlibXhLbTNaOG0wL0F3TXZpOGU5ZWR5OHY5a05CQ3dMR2tIYkE4WW85Q0lpUWdlbGZwcDF2VWgKYm5OQmhhRCtpdTZDZmlDTHdnSmIvaXc3ZW8vQ3lvWnF4K3RqWGFPMnpYdm00cC8rUUlmQU9ndEdRTEZVOGNmWgovZ1VyVHE1Z0ZxMCtQOUd5V3NBVEpGNnE3TDZXWlpqME91VHNlN2Y0Q1NpajZNbk9NTXhBK0pvYWhKejdsc1NpClRKSEl3RXA1ci9SeWhweWVwUXhGWWNVSDVKSmY5cmFoWExXWmkrOVRqeFNNMll5aHhmUlBzaVVFdUdEb2s3OFEKbS9RUGlDaTlKSmIxb2NtVGpBVjh4RFNob2NpdlhPRnlobjZMbjc3dkxqWStBYXZ0V0RoUXRocHVQeHNMdFZ6bQplMFNIMTFkRUxSdGI3NG1xWE9yTzdmdS8rSUJzM0pxTEUvVSt4dXhRdHZHOHZHMXlES0hIU1pxUzJoL1dzNGw0Ck5pQXNoSGdlaFFEUEJjWTl3WVl6ZkJnWnBPVU16ZERmNTB4K0ZTbFk0M1dPSkp6U3VRaDR5WjArM2t5Z3VDRjgKcm5NTFNjZXlTNGNpNExtSi9LQ1N1R2RmNlhWWXo4QkU5Z2pqanBDUDZxeTBVbFJlZldzL2lnL3djSysyYkYxVApuL1l2KzZnWGVDVEhKNzVxRElQbHA3RFJVVWswZmJNajRiSWthb2dXV2s0emYydThteFpMYTBsZVBLTktaTi9tCkdDdkZ3cjNlaSt1LzhjenA1RjdUCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\"\n - \ },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"0596eb5b-660f-a54e-b27a-5db79f1b7e61\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:21:25.6377968Z\"\n }" headers: cache-control: - no-cache content-length: - - '6572' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:23:16 GMT + - Wed, 14 Jun 2023 19:21:26 GMT expires: - '-1' pragma: @@ -2627,29 +3078,79 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: '{"value":[{"properties":{"roleName":"Network Contributor","type":"BuiltInRole","description":"Lets - you manage networks, but not access to them.","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Network/*","Microsoft.ResourceHealth/availabilityStatuses/read","Microsoft.Resources/deployments/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-06-02T00:18:27.3542698Z","updatedOn":"2021-11-11T20:13:44.6328966Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","type":"Microsoft.Authorization/roleDefinitions","name":"4d97b98b-1d4f-4787-a291-c67834d212e7"}]}' + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestcqyjkyn7i-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestcqyjkyn7i-8ecadf-ky1mct24.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestcqyjkyn7i-8ecadf-ky1mct24.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"httpProxyConfig\": {\n \"httpProxy\": \"http://cli-proxy-vm:3128/\"\ + ,\n \"httpsProxy\": \"https://cli-proxy-vm:3129/\",\n \"noProxy\": [\n\ + \ \"localhost\",\n \"127.0.0.1\",\n \"10.0.0.0/16\",\n \"\ + 169.254.169.254\",\n \"10.42.0.0/16\",\n \"168.63.129.16\",\n \ + \ \"cliakstest-clitestcqyjkyn7i-8ecadf-ky1mct24.hcp.westus2.azmk8s.io\",\n\ + \ \"konnectivity\",\n \"10.244.0.0/16\"\n ],\n \"effectiveNoProxy\"\ + : [\n \"localhost\",\n \"127.0.0.1\",\n \"10.0.0.0/16\",\n \ + \ \"169.254.169.254\",\n \"10.42.0.0/16\",\n \"168.63.129.16\",\n\ + \ \"cliakstest-clitestcqyjkyn7i-8ecadf-ky1mct24.hcp.westus2.azmk8s.io\"\ + ,\n \"konnectivity\",\n \"10.244.0.0/16\"\n ],\n \"trustedCa\"\ + : \"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZHekNDQXdPZ0F3SUJBZ0lVT1FvajhDTFpkc2Vscjk3cnZJd3g1T0xEc3V3d0RRWUpLb1pJaHZjTkFRRUwKQlFBd0Z6RVZNQk1HQTFVRUF3d01ZMnhwTFhCeWIzaDVMWFp0TUI0WERUSXlNRE13T0RFMk5EUTBOMW9YRFRNeQpNRE13TlRFMk5EUTBOMW93RnpFVk1CTUdBMVVFQXd3TVkyeHBMWEJ5YjNoNUxYWnRNSUlDSWpBTkJna3Foa2lHCjl3MEJBUUVGQUFPQ0FnOEFNSUlDQ2dLQ0FnRUEvTVB0VjVCVFB0NmNxaTRSZE1sbXIzeUlzYTJ1anpjaHh2NGgKanNDMUR0blJnb3M1UzQxUEgwcmkrM3RUU1ZYMzJ5cndzWStyRDFZUnVwbTZsbUU3R2hVNUkwR2k5b3prU0YwWgpLS2FKaTJveXBVL0ZCK1FQcXpvQ1JzTUV3R0NibUtGVmw4VnVoeW5kWEs0YjRrYmxyOWJsL2V1d2Q3TThTYnZ6CldVam5lRHJRc2lJc3J6UFQ0S0FaTHFjdHpEZTRsbFBUN1lLYTMzaGlFUE9mdldpWitkcWthUUE5UDY0eFhTeW4KZkhYOHVWQUozdUJWSmVHeEQwcGtOSjdqT3J5YVV1SEh1Y1U4UzltSWpuS2pBQjVhUGpMSDV4QXM2bG1iMzEyMgp5KzF0bkVBbVhNNTBEK1VvRWpmUzZIT2I1cmRpcVhHdmMxS2JvS2p6a1BDUnh4MmE3MmN2ZWdVajZtZ0FKTHpnClRoRTFsbGNtVTRpemd4b0lNa1ZwR1RWT0xMbjFWRkt1TmhNWkN2RnZLZ25Lb0F2M0cwRlVuZldFYVJSalNObUQKTFlhTURUNUg5WnQycERJVWpVR1N0Q2w3Z1J6TUVuWXdKTzN5aURwZzQzbzVkUnlzVXlMOUpmRS9OaDdUZzYxOApuOGNKL1c3K1FZYllsanVyYXA4cjdRRlNyb2wzVkNoRkIrT29yNW5pK3ZvaFNBd0pmMFVsTXBHM3hXbXkxVUk0ClRGS2ZGR1JSVHpyUCs3Yk53WDVoSXZJeTVWdGd5YU9xSndUeGhpL0pkeHRPcjJ0QTVyQ1c3K0N0Z1N2emtxTkUKWHlyN3ZrWWdwNlk1TFpneTR0VWpLMEswT1VnVmRqQk9oRHBFenkvRkY4dzFGRVZnSjBxWS9yV2NMa0JIRFQ4Ugp2SmtoaW84Q0F3RUFBYU5mTUYwd0Z3WURWUjBSQkJBd0RvSU1ZMnhwTFhCeWIzaDVMWFp0TUJJR0ExVWRFd0VCCi93UUlNQVlCQWY4Q0FRQXdEd1lEVlIwUEFRSC9CQVVEQXdmbmdEQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0QKQWdZSUt3WUJCUVVIQXdFd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dJQkFBb21qQ3lYdmFRT3hnWUs1MHNYTEIyKwp3QWZkc3g1bm5HZGd5Zmc0dXJXMlZtMTVEaEd2STdDL250cTBkWXkyNE4vVWJHN1VEWHZseUxJSkZxMVhQN25mCnBaRzBWQ2paNjlibXhLbTNaOG0wL0F3TXZpOGU5ZWR5OHY5a05CQ3dMR2tIYkE4WW85Q0lpUWdlbGZwcDF2VWgKYm5OQmhhRCtpdTZDZmlDTHdnSmIvaXc3ZW8vQ3lvWnF4K3RqWGFPMnpYdm00cC8rUUlmQU9ndEdRTEZVOGNmWgovZ1VyVHE1Z0ZxMCtQOUd5V3NBVEpGNnE3TDZXWlpqME91VHNlN2Y0Q1NpajZNbk9NTXhBK0pvYWhKejdsc1NpClRKSEl3RXA1ci9SeWhweWVwUXhGWWNVSDVKSmY5cmFoWExXWmkrOVRqeFNNMll5aHhmUlBzaVVFdUdEb2s3OFEKbS9RUGlDaTlKSmIxb2NtVGpBVjh4RFNob2NpdlhPRnlobjZMbjc3dkxqWStBYXZ0V0RoUXRocHVQeHNMdFZ6bQplMFNIMTFkRUxSdGI3NG1xWE9yTzdmdS8rSUJzM0pxTEUvVSt4dXhRdHZHOHZHMXlES0hIU1pxUzJoL1dzNGw0Ck5pQXNoSGdlaFFEUEJjWTl3WVl6ZkJnWnBPVU16ZERmNTB4K0ZTbFk0M1dPSkp6U3VRaDR5WjArM2t5Z3VDRjgKcm5NTFNjZXlTNGNpNExtSi9LQ1N1R2RmNlhWWXo4QkU5Z2pqanBDUDZxeTBVbFJlZldzL2lnL3djSysyYkYxVApuL1l2KzZnWGVDVEhKNzVxRElQbHA3RFJVVWswZmJNajRiSWthb2dXV2s0emYydThteFpMYTBsZVBLTktaTi9tCkdDdkZ3cjNlaSt1LzhjenA1RjdUCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\"\ + \n },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '873' + - '6900' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:23:16 GMT + - Wed, 14 Jun 2023 19:21:26 GMT expires: - '-1' pragma: - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2661,62 +3162,6 @@ interactions: status: code: 200 message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '232' - Content-Type: - - application/json - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity - --yes --vnet-subnet-id -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/20d3942d-cbc4-436f-9fa1-50f4df51e926?api-version=2022-04-01 - response: - body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal e3f9764c2bc54a5e88ad8ef2fe30e1ce - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47. Check - that you have the correct principal ID. If you are creating this principal - and then immediately assigning a role, this error might be related to a replication - delay. In this case, set the role assignment principalType property to a value, - such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype"}}' - headers: - cache-control: - - no-cache - content-length: - - '489' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 15 Mar 2023 10:23:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 400 - message: Bad Request - request: body: null headers: @@ -2732,8 +3177,8 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2022-04-01 response: @@ -2748,7 +3193,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:23:18 GMT + - Wed, 14 Jun 2023 19:21:27 GMT expires: - '-1' pragma: @@ -2788,13 +3233,13 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/ce13c851-b27a-4662-9b44-f8a09a473bc2?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/1ecbc8f0-08fd-4210-8d2f-855996bd6098?api-version=2022-04-01 response: body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal e3f9764c2bc54a5e88ad8ef2fe30e1ce + string: '{"error":{"code":"PrincipalNotFound","message":"Principal b143d7a1b3f64f79865deb069963291c does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication @@ -2808,7 +3253,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:23:19 GMT + - Wed, 14 Jun 2023 19:21:28 GMT expires: - '-1' pragma: @@ -2837,8 +3282,8 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2022-04-01 response: @@ -2853,7 +3298,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:23:23 GMT + - Wed, 14 Jun 2023 19:21:32 GMT expires: - '-1' pragma: @@ -2893,13 +3338,13 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/0dea1418-349f-4f7e-aecf-5006f3fed38f?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/a373e9bb-1ab5-4355-8cb9-38073a291eef?api-version=2022-04-01 response: body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal e3f9764c2bc54a5e88ad8ef2fe30e1ce + string: '{"error":{"code":"PrincipalNotFound","message":"Principal b143d7a1b3f64f79865deb069963291c does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication @@ -2913,7 +3358,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:23:24 GMT + - Wed, 14 Jun 2023 19:21:32 GMT expires: - '-1' pragma: @@ -2923,7 +3368,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 400 message: Bad Request @@ -2942,8 +3387,8 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2022-04-01 response: @@ -2958,7 +3403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:23:31 GMT + - Wed, 14 Jun 2023 19:21:38 GMT expires: - '-1' pragma: @@ -2998,27 +3443,22 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/70838d37-c8d0-40ae-93d2-9933308e8b1e?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/df1610dd-b17f-4ee6-a561-43571f602d0c?api-version=2022-04-01 response: body: - string: '{"error":{"code":"PrincipalNotFound","message":"Principal e3f9764c2bc54a5e88ad8ef2fe30e1ce - does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47. Check - that you have the correct principal ID. If you are creating this principal - and then immediately assigning a role, this error might be related to a replication - delay. In this case, set the role assignment principalType property to a value, - such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype"}}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T19:21:40.1680787Z","updatedOn":"2023-06-14T19:21:40.4690828Z","createdBy":null,"updatedBy":"4d730cf1-e190-49af-af02-ea52983c017e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/df1610dd-b17f-4ee6-a561-43571f602d0c","type":"Microsoft.Authorization/roleAssignments","name":"df1610dd-b17f-4ee6-a561-43571f602d0c"}' headers: cache-control: - no-cache content-length: - - '489' + - '1041' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:23:31 GMT + - Wed, 14 Jun 2023 19:21:43 GMT expires: - '-1' pragma: @@ -3030,13 +3470,13 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' status: - code: 400 - message: Bad Request + code: 201 + message: Created - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -3047,29 +3487,29 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5beb9605-0f66-4ea5-b27a-5db79f1b7e61?api-version=2016-03-30 response: body: - string: '{"value":[{"properties":{"roleName":"Network Contributor","type":"BuiltInRole","description":"Lets - you manage networks, but not access to them.","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Network/*","Microsoft.ResourceHealth/availabilityStatuses/read","Microsoft.Resources/deployments/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-06-02T00:18:27.3542698Z","updatedOn":"2021-11-11T20:13:44.6328966Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","type":"Microsoft.Authorization/roleDefinitions","name":"4d97b98b-1d4f-4787-a291-c67834d212e7"}]}' + string: "{\n \"name\": \"0596eb5b-660f-a54e-b27a-5db79f1b7e61\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:21:25.6377968Z\"\n }" headers: cache-control: - no-cache content-length: - - '873' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:23:39 GMT + - Wed, 14 Jun 2023 19:21:56 GMT expires: - '-1' pragma: - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3081,57 +3521,6 @@ interactions: status: code: 200 message: OK -- request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", - "principalId":"00000000-0000-0000-0000-000000000001"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '232' - Content-Type: - - application/json - Cookie: - - x-ms-gateway-slice=Production - ParameterSetName: - - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity - --yes --vnet-subnet-id -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/89dee4f7-8941-4b25-b8ac-9b46bf6b7299?api-version=2022-04-01 - response: - body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet","condition":null,"conditionVersion":null,"createdOn":"2023-03-15T10:23:40.4807459Z","updatedOn":"2023-03-15T10:23:40.9837510Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet/providers/Microsoft.Authorization/roleAssignments/89dee4f7-8941-4b25-b8ac-9b46bf6b7299","type":"Microsoft.Authorization/roleAssignments","name":"89dee4f7-8941-4b25-b8ac-9b46bf6b7299"}' - headers: - cache-control: - - no-cache - content-length: - - '1041' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 15 Mar 2023 10:23:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created - request: body: null headers: @@ -3147,14 +3536,14 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22d80f98-5f98-440c-9658-2faa6213773c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5beb9605-0f66-4ea5-b27a-5db79f1b7e61?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"980fd822-985f-0c44-9658-2faa6213773c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:23:16.4191924Z\"\n }" + string: "{\n \"name\": \"0596eb5b-660f-a54e-b27a-5db79f1b7e61\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:21:25.6377968Z\"\n }" headers: cache-control: - no-cache @@ -3163,7 +3552,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:23:46 GMT + - Wed, 14 Jun 2023 19:22:27 GMT expires: - '-1' pragma: @@ -3196,14 +3585,14 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22d80f98-5f98-440c-9658-2faa6213773c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5beb9605-0f66-4ea5-b27a-5db79f1b7e61?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"980fd822-985f-0c44-9658-2faa6213773c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:23:16.4191924Z\"\n }" + string: "{\n \"name\": \"0596eb5b-660f-a54e-b27a-5db79f1b7e61\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:21:25.6377968Z\"\n }" headers: cache-control: - no-cache @@ -3212,7 +3601,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:24:16 GMT + - Wed, 14 Jun 2023 19:22:57 GMT expires: - '-1' pragma: @@ -3245,14 +3634,14 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22d80f98-5f98-440c-9658-2faa6213773c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5beb9605-0f66-4ea5-b27a-5db79f1b7e61?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"980fd822-985f-0c44-9658-2faa6213773c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:23:16.4191924Z\"\n }" + string: "{\n \"name\": \"0596eb5b-660f-a54e-b27a-5db79f1b7e61\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:21:25.6377968Z\"\n }" headers: cache-control: - no-cache @@ -3261,7 +3650,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:24:46 GMT + - Wed, 14 Jun 2023 19:23:27 GMT expires: - '-1' pragma: @@ -3294,14 +3683,14 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22d80f98-5f98-440c-9658-2faa6213773c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5beb9605-0f66-4ea5-b27a-5db79f1b7e61?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"980fd822-985f-0c44-9658-2faa6213773c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:23:16.4191924Z\"\n }" + string: "{\n \"name\": \"0596eb5b-660f-a54e-b27a-5db79f1b7e61\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:21:25.6377968Z\"\n }" headers: cache-control: - no-cache @@ -3310,7 +3699,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:25:16 GMT + - Wed, 14 Jun 2023 19:23:57 GMT expires: - '-1' pragma: @@ -3343,14 +3732,14 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22d80f98-5f98-440c-9658-2faa6213773c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5beb9605-0f66-4ea5-b27a-5db79f1b7e61?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"980fd822-985f-0c44-9658-2faa6213773c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:23:16.4191924Z\"\n }" + string: "{\n \"name\": \"0596eb5b-660f-a54e-b27a-5db79f1b7e61\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:21:25.6377968Z\"\n }" headers: cache-control: - no-cache @@ -3359,7 +3748,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:25:46 GMT + - Wed, 14 Jun 2023 19:24:28 GMT expires: - '-1' pragma: @@ -3392,23 +3781,24 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22d80f98-5f98-440c-9658-2faa6213773c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5beb9605-0f66-4ea5-b27a-5db79f1b7e61?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"980fd822-985f-0c44-9658-2faa6213773c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:23:16.4191924Z\"\n }" + string: "{\n \"name\": \"0596eb5b-660f-a54e-b27a-5db79f1b7e61\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T19:21:25.6377968Z\",\n \"\ + endTime\": \"2023-06-14T19:24:46.0479097Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 10:26:16 GMT + - Wed, 14 Jun 2023 19:24:57 GMT expires: - '-1' pragma: @@ -3441,23 +3831,78 @@ interactions: - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity --yes --vnet-subnet-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22d80f98-5f98-440c-9658-2faa6213773c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"980fd822-985f-0c44-9658-2faa6213773c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:23:16.4191924Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestcqyjkyn7i-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestcqyjkyn7i-8ecadf-ky1mct24.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestcqyjkyn7i-8ecadf-ky1mct24.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1e163633-5baf-4745-96ad-2aad20605161\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"httpProxyConfig\": {\n \"httpProxy\": \"http://cli-proxy-vm:3128/\"\ + ,\n \"httpsProxy\": \"https://cli-proxy-vm:3129/\",\n \"noProxy\": [\n\ + \ \"localhost\",\n \"127.0.0.1\",\n \"10.0.0.0/16\",\n \"\ + 169.254.169.254\",\n \"10.42.0.0/16\",\n \"168.63.129.16\",\n \ + \ \"cliakstest-clitestcqyjkyn7i-8ecadf-ky1mct24.hcp.westus2.azmk8s.io\",\n\ + \ \"konnectivity\",\n \"10.244.0.0/16\"\n ],\n \"effectiveNoProxy\"\ + : [\n \"localhost\",\n \"127.0.0.1\",\n \"10.0.0.0/16\",\n \ + \ \"169.254.169.254\",\n \"10.42.0.0/16\",\n \"168.63.129.16\",\n\ + \ \"cliakstest-clitestcqyjkyn7i-8ecadf-ky1mct24.hcp.westus2.azmk8s.io\"\ + ,\n \"konnectivity\",\n \"10.244.0.0/16\"\n ],\n \"trustedCa\"\ + : \"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZHekNDQXdPZ0F3SUJBZ0lVT1FvajhDTFpkc2Vscjk3cnZJd3g1T0xEc3V3d0RRWUpLb1pJaHZjTkFRRUwKQlFBd0Z6RVZNQk1HQTFVRUF3d01ZMnhwTFhCeWIzaDVMWFp0TUI0WERUSXlNRE13T0RFMk5EUTBOMW9YRFRNeQpNRE13TlRFMk5EUTBOMW93RnpFVk1CTUdBMVVFQXd3TVkyeHBMWEJ5YjNoNUxYWnRNSUlDSWpBTkJna3Foa2lHCjl3MEJBUUVGQUFPQ0FnOEFNSUlDQ2dLQ0FnRUEvTVB0VjVCVFB0NmNxaTRSZE1sbXIzeUlzYTJ1anpjaHh2NGgKanNDMUR0blJnb3M1UzQxUEgwcmkrM3RUU1ZYMzJ5cndzWStyRDFZUnVwbTZsbUU3R2hVNUkwR2k5b3prU0YwWgpLS2FKaTJveXBVL0ZCK1FQcXpvQ1JzTUV3R0NibUtGVmw4VnVoeW5kWEs0YjRrYmxyOWJsL2V1d2Q3TThTYnZ6CldVam5lRHJRc2lJc3J6UFQ0S0FaTHFjdHpEZTRsbFBUN1lLYTMzaGlFUE9mdldpWitkcWthUUE5UDY0eFhTeW4KZkhYOHVWQUozdUJWSmVHeEQwcGtOSjdqT3J5YVV1SEh1Y1U4UzltSWpuS2pBQjVhUGpMSDV4QXM2bG1iMzEyMgp5KzF0bkVBbVhNNTBEK1VvRWpmUzZIT2I1cmRpcVhHdmMxS2JvS2p6a1BDUnh4MmE3MmN2ZWdVajZtZ0FKTHpnClRoRTFsbGNtVTRpemd4b0lNa1ZwR1RWT0xMbjFWRkt1TmhNWkN2RnZLZ25Lb0F2M0cwRlVuZldFYVJSalNObUQKTFlhTURUNUg5WnQycERJVWpVR1N0Q2w3Z1J6TUVuWXdKTzN5aURwZzQzbzVkUnlzVXlMOUpmRS9OaDdUZzYxOApuOGNKL1c3K1FZYllsanVyYXA4cjdRRlNyb2wzVkNoRkIrT29yNW5pK3ZvaFNBd0pmMFVsTXBHM3hXbXkxVUk0ClRGS2ZGR1JSVHpyUCs3Yk53WDVoSXZJeTVWdGd5YU9xSndUeGhpL0pkeHRPcjJ0QTVyQ1c3K0N0Z1N2emtxTkUKWHlyN3ZrWWdwNlk1TFpneTR0VWpLMEswT1VnVmRqQk9oRHBFenkvRkY4dzFGRVZnSjBxWS9yV2NMa0JIRFQ4Ugp2SmtoaW84Q0F3RUFBYU5mTUYwd0Z3WURWUjBSQkJBd0RvSU1ZMnhwTFhCeWIzaDVMWFp0TUJJR0ExVWRFd0VCCi93UUlNQVlCQWY4Q0FRQXdEd1lEVlIwUEFRSC9CQVVEQXdmbmdEQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0QKQWdZSUt3WUJCUVVIQXdFd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dJQkFBb21qQ3lYdmFRT3hnWUs1MHNYTEIyKwp3QWZkc3g1bm5HZGd5Zmc0dXJXMlZtMTVEaEd2STdDL250cTBkWXkyNE4vVWJHN1VEWHZseUxJSkZxMVhQN25mCnBaRzBWQ2paNjlibXhLbTNaOG0wL0F3TXZpOGU5ZWR5OHY5a05CQ3dMR2tIYkE4WW85Q0lpUWdlbGZwcDF2VWgKYm5OQmhhRCtpdTZDZmlDTHdnSmIvaXc3ZW8vQ3lvWnF4K3RqWGFPMnpYdm00cC8rUUlmQU9ndEdRTEZVOGNmWgovZ1VyVHE1Z0ZxMCtQOUd5V3NBVEpGNnE3TDZXWlpqME91VHNlN2Y0Q1NpajZNbk9NTXhBK0pvYWhKejdsc1NpClRKSEl3RXA1ci9SeWhweWVwUXhGWWNVSDVKSmY5cmFoWExXWmkrOVRqeFNNMll5aHhmUlBzaVVFdUdEb2s3OFEKbS9RUGlDaTlKSmIxb2NtVGpBVjh4RFNob2NpdlhPRnlobjZMbjc3dkxqWStBYXZ0V0RoUXRocHVQeHNMdFZ6bQplMFNIMTFkRUxSdGI3NG1xWE9yTzdmdS8rSUJzM0pxTEUvVSt4dXhRdHZHOHZHMXlES0hIU1pxUzJoL1dzNGw0Ck5pQXNoSGdlaFFEUEJjWTl3WVl6ZkJnWnBPVU16ZERmNTB4K0ZTbFk0M1dPSkp6U3VRaDR5WjArM2t5Z3VDRjgKcm5NTFNjZXlTNGNpNExtSi9LQ1N1R2RmNlhWWXo4QkU5Z2pqanBDUDZxeTBVbFJlZldzL2lnL3djSysyYkYxVApuL1l2KzZnWGVDVEhKNzVxRElQbHA3RFJVVWswZmJNajRiSWthb2dXV2s0emYydThteFpMYTBsZVBLTktaTi9tCkdDdkZ3cjNlaSt1LzhjenA1RjdUCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\"\ + \n },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '7553' content-type: - application/json date: - - Wed, 15 Mar 2023 10:26:47 GMT + - Wed, 14 Jun 2023 19:24:58 GMT expires: - '-1' pragma: @@ -3479,35 +3924,88 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive ParameterSetName: - - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity - --yes --vnet-subnet-id -o + - --resource-group --name --http-proxy-config User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22d80f98-5f98-440c-9658-2faa6213773c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"980fd822-985f-0c44-9658-2faa6213773c\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:23:16.4191924Z\",\n \"endTime\": - \"2023-03-15T10:26:54.3263038Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestcqyjkyn7i-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestcqyjkyn7i-8ecadf-ky1mct24.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestcqyjkyn7i-8ecadf-ky1mct24.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1e163633-5baf-4745-96ad-2aad20605161\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"httpProxyConfig\": {\n \"httpProxy\": \"http://cli-proxy-vm:3128/\"\ + ,\n \"httpsProxy\": \"https://cli-proxy-vm:3129/\",\n \"noProxy\": [\n\ + \ \"localhost\",\n \"127.0.0.1\",\n \"10.0.0.0/16\",\n \"\ + 169.254.169.254\",\n \"10.42.0.0/16\",\n \"168.63.129.16\",\n \ + \ \"cliakstest-clitestcqyjkyn7i-8ecadf-ky1mct24.hcp.westus2.azmk8s.io\",\n\ + \ \"konnectivity\",\n \"10.244.0.0/16\"\n ],\n \"effectiveNoProxy\"\ + : [\n \"localhost\",\n \"127.0.0.1\",\n \"10.0.0.0/16\",\n \ + \ \"169.254.169.254\",\n \"10.42.0.0/16\",\n \"168.63.129.16\",\n\ + \ \"cliakstest-clitestcqyjkyn7i-8ecadf-ky1mct24.hcp.westus2.azmk8s.io\"\ + ,\n \"konnectivity\",\n \"10.244.0.0/16\"\n ],\n \"trustedCa\"\ + : \"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZHekNDQXdPZ0F3SUJBZ0lVT1FvajhDTFpkc2Vscjk3cnZJd3g1T0xEc3V3d0RRWUpLb1pJaHZjTkFRRUwKQlFBd0Z6RVZNQk1HQTFVRUF3d01ZMnhwTFhCeWIzaDVMWFp0TUI0WERUSXlNRE13T0RFMk5EUTBOMW9YRFRNeQpNRE13TlRFMk5EUTBOMW93RnpFVk1CTUdBMVVFQXd3TVkyeHBMWEJ5YjNoNUxYWnRNSUlDSWpBTkJna3Foa2lHCjl3MEJBUUVGQUFPQ0FnOEFNSUlDQ2dLQ0FnRUEvTVB0VjVCVFB0NmNxaTRSZE1sbXIzeUlzYTJ1anpjaHh2NGgKanNDMUR0blJnb3M1UzQxUEgwcmkrM3RUU1ZYMzJ5cndzWStyRDFZUnVwbTZsbUU3R2hVNUkwR2k5b3prU0YwWgpLS2FKaTJveXBVL0ZCK1FQcXpvQ1JzTUV3R0NibUtGVmw4VnVoeW5kWEs0YjRrYmxyOWJsL2V1d2Q3TThTYnZ6CldVam5lRHJRc2lJc3J6UFQ0S0FaTHFjdHpEZTRsbFBUN1lLYTMzaGlFUE9mdldpWitkcWthUUE5UDY0eFhTeW4KZkhYOHVWQUozdUJWSmVHeEQwcGtOSjdqT3J5YVV1SEh1Y1U4UzltSWpuS2pBQjVhUGpMSDV4QXM2bG1iMzEyMgp5KzF0bkVBbVhNNTBEK1VvRWpmUzZIT2I1cmRpcVhHdmMxS2JvS2p6a1BDUnh4MmE3MmN2ZWdVajZtZ0FKTHpnClRoRTFsbGNtVTRpemd4b0lNa1ZwR1RWT0xMbjFWRkt1TmhNWkN2RnZLZ25Lb0F2M0cwRlVuZldFYVJSalNObUQKTFlhTURUNUg5WnQycERJVWpVR1N0Q2w3Z1J6TUVuWXdKTzN5aURwZzQzbzVkUnlzVXlMOUpmRS9OaDdUZzYxOApuOGNKL1c3K1FZYllsanVyYXA4cjdRRlNyb2wzVkNoRkIrT29yNW5pK3ZvaFNBd0pmMFVsTXBHM3hXbXkxVUk0ClRGS2ZGR1JSVHpyUCs3Yk53WDVoSXZJeTVWdGd5YU9xSndUeGhpL0pkeHRPcjJ0QTVyQ1c3K0N0Z1N2emtxTkUKWHlyN3ZrWWdwNlk1TFpneTR0VWpLMEswT1VnVmRqQk9oRHBFenkvRkY4dzFGRVZnSjBxWS9yV2NMa0JIRFQ4Ugp2SmtoaW84Q0F3RUFBYU5mTUYwd0Z3WURWUjBSQkJBd0RvSU1ZMnhwTFhCeWIzaDVMWFp0TUJJR0ExVWRFd0VCCi93UUlNQVlCQWY4Q0FRQXdEd1lEVlIwUEFRSC9CQVVEQXdmbmdEQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0QKQWdZSUt3WUJCUVVIQXdFd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dJQkFBb21qQ3lYdmFRT3hnWUs1MHNYTEIyKwp3QWZkc3g1bm5HZGd5Zmc0dXJXMlZtMTVEaEd2STdDL250cTBkWXkyNE4vVWJHN1VEWHZseUxJSkZxMVhQN25mCnBaRzBWQ2paNjlibXhLbTNaOG0wL0F3TXZpOGU5ZWR5OHY5a05CQ3dMR2tIYkE4WW85Q0lpUWdlbGZwcDF2VWgKYm5OQmhhRCtpdTZDZmlDTHdnSmIvaXc3ZW8vQ3lvWnF4K3RqWGFPMnpYdm00cC8rUUlmQU9ndEdRTEZVOGNmWgovZ1VyVHE1Z0ZxMCtQOUd5V3NBVEpGNnE3TDZXWlpqME91VHNlN2Y0Q1NpajZNbk9NTXhBK0pvYWhKejdsc1NpClRKSEl3RXA1ci9SeWhweWVwUXhGWWNVSDVKSmY5cmFoWExXWmkrOVRqeFNNMll5aHhmUlBzaVVFdUdEb2s3OFEKbS9RUGlDaTlKSmIxb2NtVGpBVjh4RFNob2NpdlhPRnlobjZMbjc3dkxqWStBYXZ0V0RoUXRocHVQeHNMdFZ6bQplMFNIMTFkRUxSdGI3NG1xWE9yTzdmdS8rSUJzM0pxTEUvVSt4dXhRdHZHOHZHMXlES0hIU1pxUzJoL1dzNGw0Ck5pQXNoSGdlaFFEUEJjWTl3WVl6ZkJnWnBPVU16ZERmNTB4K0ZTbFk0M1dPSkp6U3VRaDR5WjArM2t5Z3VDRjgKcm5NTFNjZXlTNGNpNExtSi9LQ1N1R2RmNlhWWXo4QkU5Z2pqanBDUDZxeTBVbFJlZldzL2lnL3djSysyYkYxVApuL1l2KzZnWGVDVEhKNzVxRElQbHA3RFJVVWswZmJNajRiSWthb2dXV2s0emYydThteFpMYTBsZVBLTktaTi9tCkdDdkZ3cjNlaSt1LzhjenA1RjdUCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\"\ + \n },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '170' + - '7553' content-type: - application/json date: - - Wed, 15 Mar 2023 10:27:17 GMT + - Wed, 14 Jun 2023 19:25:00 GMT expires: - '-1' pragma: @@ -3526,86 +4024,120 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestcqyjkyn7i-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": + "OS", "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet", + "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, + "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1e163633-5baf-4745-96ad-2aad20605161"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false, "httpProxyConfig": {"httpProxy": "http://cli-proxy-vm:3128/", + "httpsProxy": "https://cli-proxy-vm:3129/", "noProxy": ["localhost", "127.0.0.1"], + "trustedCa": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZERENDQXZTZ0F3SUJBZ0lVQlJ3cGs1eTh5ckdrNmtYTjhkSHlMRUNvaHBrd0RRWUpLb1pJaHZjTkFRRUwKQlFBd0VqRVFNQTRHQTFVRUF3d0habTl2TFdKaGNqQWVGdzB5TVRFd01UTXdNekU1TlRoYUZ3MHpNVEV3TVRFdwpNekU1TlRoYU1CSXhFREFPQmdOVkJBTU1CMlp2YnkxaVlYSXdnZ0lpTUEwR0NTcUdTSWIzRFFFQkFRVUFBNElDCkR3QXdnZ0lLQW9JQ0FRRFcwRE9sVC9yci9xUEZIUU9lNndBNDkyVGh3VWxZaDhCQkszTW9VWVZLNjEvL2xXekEKeFkrYzlmazlvckUrZXhMSVpwdUg1VnNZR21MNUFyc05sVmNBMkU4MWgwSlBPYUo1eEpiZG40YldpZG9vdXRVVwpXeDNhYUJLSEt0RWdZbUNmTjliWXlZMlNWRWQvNS9HeGh0akVabHJ1aEtRdkZVa3hwR0xKK1JRQ25oNklZakQwCnNpQ0YyTjJhVUJ4RE5KaUdmeHlHSVIrY2p4Vlcrd01md05CQ0l6QVkxMnY4WmpzUXdmUWlhOE5oWEx3M0tuRm0KdzUrcHN2bU1HL1FFUUtZMXNOTnk2dS9DZkI3cmIxQ0EwcjdNNnFsNFMrWHJjZUVRcXpDUWR6NWJueGNYbmFkbwp5MDlhdm5OSGRqbmpvcHNPSkxhd2hzb3RGNWFrL1FLdjYzdU9yVFFlOHlPSWlCZ3JSUzdwejcxbVlhRGNMcXFtCmtmdDVLYnFnMHNZYmo0M09LSm5aZ3crTUtackhoSFJKNi9BcWxOclZML3pFUytHU0ozQ1lSaE5nYXdDQ0Nqd1gKanZYZnkycWFEV2NQbWZaSWVVMVNzdE05THBVRWFQNjJzUVNmb3NEdnZFbUFyUVgwcmd1WGhvZ3pRUFdGWVlEKwo4SUNFYkNFc21hVnN3MzhVUzgzbFlGVCtyTHh3cm5UK1JXSUZ2WFRXbHhCNm5JeWpsOXBhNzlkdU5ocjJxN2RzCjVOU3ZWWHg5UGNqVTQ2VUZ6QnVTbUl0Q0M0Y1NadFRWc3l6ZnpMd2hKbGlqV0czTkp5TnpHUkZQcUpQdTNJUzEKZ3VtKytqdWx4bXZNWm1vM1RqSE5JRm90a0kyd3d3ZUtIcWpYcW9STmwvVnZobE5CaXZRR2gxeGovd0lEQVFBQgpvMW93V0RBU0JnTlZIUkVFQ3pBSmdnZG1iMjh0WW1GeU1CSUdBMVVkRXdFQi93UUlNQVlCQWY4Q0FRQXdEd1lEClZSMFBBUUgvQkFVREF3Zm5nREFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQWdZSUt3WUJCUVVIQXdFd0RRWUoKS29aSWh2Y05BUUVMQlFBRGdnSUJBTDF3RlpTdUw4NTM3aHpUTXhSUWJjcWdEU2F4RUd0ZDJaNTVCcnVWQVloagpxQjR6STd1UVZ2SkNpeXdmQm5BNnZmejh2UDBzdGJJbkVtajh1dS9CSS81NzZqR0tWUWRQSDhqMnQvN1NQWjFKClhBWk9wc1hoVll2RmtpQlhVeW1RMnAvRjFqb2ZRRE1JQ0htdHhRUSthakJQNjBpcnFnVnpsRi95NlQySUgzOHYKbGordndIam52WW5vVmhGNEY0TlE5amp6S3Y1NUhVTk0xUEJKZkFaOTJqeXovczdPMmN2cjhNWlNkT2s5QVk1RQp5RXRlQjBTSjdLS0tUZklBVmVMQzdrRnBHR3FsRkRBNzhPSS9YakNZViswRjk4MHdNOVkxTEVUa3ZMamVSMEFyCnVzZDNIS1Vtd2EwTVEwUTNZNGxma0ZtNjJTclhvcjJURC9WZHpFZWNOTnVmV1VJTVNuaEJDNTVHWjBOTVYvR0QKRXhGZTVWQkhUZEZVNlIwb3JCOVFjVll1Mzk0MEt5NXhkbHNaUHZlMmRJNS9WOXhzY0Zad3cxWWs4K21RK3NVeQp2UVBoL2ZmK0tTQjdVVkdvTVNXUlg3YjFFMGVzZSs4QzZlaVV2OXpDR0VRbkVCcnFIQWxSUDJ2ZzQ0bXFJSnRzCjN2NUt1NW0ySmJoeWNsQVR3VUNQZkN3a2tLRTg0MzZGRitDK0ZUVTJ1OWVpL2t5QTAxYi9zRFl2cWdsS2FWK3MKbEVHRkhjd05Ea2VrS1BFUEZxNkpnZ3R0WlNidE5SMnFadzl3cExIbDVuVlVXdnBGa2hvcW1KVkphK0VBSTQ1LwpqRkh4VG9PMHp1NlBxc1p5SnM2TC84Z3BhbTcwMDV6b0VETVRjcFltMlduMFBKcEg3NE9zUHJVRDVJWVA5ZEt5Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K"}, + "securityProfile": {}, "storageProfile": {}, "workloadAutoScalerProfile": {}}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive + Content-Length: + - '5567' + Content-Type: + - application/json ParameterSetName: - - --resource-group --name --http-proxy-config --ssh-key-value --enable-managed-identity - --yes --vnet-subnet-id -o + - --resource-group --name --http-proxy-config User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestnql4jwkh3-79a739\",\n \"fqdn\": \"cliakstest-clitestnql4jwkh3-79a739-c4knwdy7.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestnql4jwkh3-79a739-c4knwdy7.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/eb7cc173-e60f-4dd6-b62d-3c783e1c84b5\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"httpProxyConfig\": - {\n \"httpProxy\": \"http://cli-proxy-vm:3128/\",\n \"httpsProxy\": - \"https://cli-proxy-vm:3129/\",\n \"noProxy\": [\n \"127.0.0.1\",\n - \ \"168.63.129.16\",\n \"169.254.169.254\",\n \"cliakstest-clitestnql4jwkh3-79a739-c4knwdy7.hcp.westus2.azmk8s.io\",\n - \ \"localhost\",\n \"10.0.0.0/16\",\n \"10.42.0.0/16\",\n \"10.244.0.0/16\",\n - \ \"konnectivity\"\n ],\n \"effectiveNoProxy\": [\n \"127.0.0.1\",\n - \ \"168.63.129.16\",\n \"169.254.169.254\",\n \"cliakstest-clitestnql4jwkh3-79a739-c4knwdy7.hcp.westus2.azmk8s.io\",\n - \ \"localhost\",\n \"10.0.0.0/16\",\n \"10.42.0.0/16\",\n \"10.244.0.0/16\",\n - \ \"konnectivity\"\n ],\n \"trustedCa\": \"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZHekNDQXdPZ0F3SUJBZ0lVT1FvajhDTFpkc2Vscjk3cnZJd3g1T0xEc3V3d0RRWUpLb1pJaHZjTkFRRUwKQlFBd0Z6RVZNQk1HQTFVRUF3d01ZMnhwTFhCeWIzaDVMWFp0TUI0WERUSXlNRE13T0RFMk5EUTBOMW9YRFRNeQpNRE13TlRFMk5EUTBOMW93RnpFVk1CTUdBMVVFQXd3TVkyeHBMWEJ5YjNoNUxYWnRNSUlDSWpBTkJna3Foa2lHCjl3MEJBUUVGQUFPQ0FnOEFNSUlDQ2dLQ0FnRUEvTVB0VjVCVFB0NmNxaTRSZE1sbXIzeUlzYTJ1anpjaHh2NGgKanNDMUR0blJnb3M1UzQxUEgwcmkrM3RUU1ZYMzJ5cndzWStyRDFZUnVwbTZsbUU3R2hVNUkwR2k5b3prU0YwWgpLS2FKaTJveXBVL0ZCK1FQcXpvQ1JzTUV3R0NibUtGVmw4VnVoeW5kWEs0YjRrYmxyOWJsL2V1d2Q3TThTYnZ6CldVam5lRHJRc2lJc3J6UFQ0S0FaTHFjdHpEZTRsbFBUN1lLYTMzaGlFUE9mdldpWitkcWthUUE5UDY0eFhTeW4KZkhYOHVWQUozdUJWSmVHeEQwcGtOSjdqT3J5YVV1SEh1Y1U4UzltSWpuS2pBQjVhUGpMSDV4QXM2bG1iMzEyMgp5KzF0bkVBbVhNNTBEK1VvRWpmUzZIT2I1cmRpcVhHdmMxS2JvS2p6a1BDUnh4MmE3MmN2ZWdVajZtZ0FKTHpnClRoRTFsbGNtVTRpemd4b0lNa1ZwR1RWT0xMbjFWRkt1TmhNWkN2RnZLZ25Lb0F2M0cwRlVuZldFYVJSalNObUQKTFlhTURUNUg5WnQycERJVWpVR1N0Q2w3Z1J6TUVuWXdKTzN5aURwZzQzbzVkUnlzVXlMOUpmRS9OaDdUZzYxOApuOGNKL1c3K1FZYllsanVyYXA4cjdRRlNyb2wzVkNoRkIrT29yNW5pK3ZvaFNBd0pmMFVsTXBHM3hXbXkxVUk0ClRGS2ZGR1JSVHpyUCs3Yk53WDVoSXZJeTVWdGd5YU9xSndUeGhpL0pkeHRPcjJ0QTVyQ1c3K0N0Z1N2emtxTkUKWHlyN3ZrWWdwNlk1TFpneTR0VWpLMEswT1VnVmRqQk9oRHBFenkvRkY4dzFGRVZnSjBxWS9yV2NMa0JIRFQ4Ugp2SmtoaW84Q0F3RUFBYU5mTUYwd0Z3WURWUjBSQkJBd0RvSU1ZMnhwTFhCeWIzaDVMWFp0TUJJR0ExVWRFd0VCCi93UUlNQVlCQWY4Q0FRQXdEd1lEVlIwUEFRSC9CQVVEQXdmbmdEQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0QKQWdZSUt3WUJCUVVIQXdFd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dJQkFBb21qQ3lYdmFRT3hnWUs1MHNYTEIyKwp3QWZkc3g1bm5HZGd5Zmc0dXJXMlZtMTVEaEd2STdDL250cTBkWXkyNE4vVWJHN1VEWHZseUxJSkZxMVhQN25mCnBaRzBWQ2paNjlibXhLbTNaOG0wL0F3TXZpOGU5ZWR5OHY5a05CQ3dMR2tIYkE4WW85Q0lpUWdlbGZwcDF2VWgKYm5OQmhhRCtpdTZDZmlDTHdnSmIvaXc3ZW8vQ3lvWnF4K3RqWGFPMnpYdm00cC8rUUlmQU9ndEdRTEZVOGNmWgovZ1VyVHE1Z0ZxMCtQOUd5V3NBVEpGNnE3TDZXWlpqME91VHNlN2Y0Q1NpajZNbk9NTXhBK0pvYWhKejdsc1NpClRKSEl3RXA1ci9SeWhweWVwUXhGWWNVSDVKSmY5cmFoWExXWmkrOVRqeFNNMll5aHhmUlBzaVVFdUdEb2s3OFEKbS9RUGlDaTlKSmIxb2NtVGpBVjh4RFNob2NpdlhPRnlobjZMbjc3dkxqWStBYXZ0V0RoUXRocHVQeHNMdFZ6bQplMFNIMTFkRUxSdGI3NG1xWE9yTzdmdS8rSUJzM0pxTEUvVSt4dXhRdHZHOHZHMXlES0hIU1pxUzJoL1dzNGw0Ck5pQXNoSGdlaFFEUEJjWTl3WVl6ZkJnWnBPVU16ZERmNTB4K0ZTbFk0M1dPSkp6U3VRaDR5WjArM2t5Z3VDRjgKcm5NTFNjZXlTNGNpNExtSi9LQ1N1R2RmNlhWWXo4QkU5Z2pqanBDUDZxeTBVbFJlZldzL2lnL3djSysyYkYxVApuL1l2KzZnWGVDVEhKNzVxRElQbHA3RFJVVWswZmJNajRiSWthb2dXV2s0emYydThteFpMYTBsZVBLTktaTi9tCkdDdkZ3cjNlaSt1LzhjenA1RjdUCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\"\n - \ },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestcqyjkyn7i-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestcqyjkyn7i-8ecadf-ky1mct24.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestcqyjkyn7i-8ecadf-ky1mct24.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1e163633-5baf-4745-96ad-2aad20605161\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"httpProxyConfig\": {\n \"httpProxy\": \"http://cli-proxy-vm:3128/\"\ + ,\n \"httpsProxy\": \"https://cli-proxy-vm:3129/\",\n \"noProxy\": [\n\ + \ \"10.0.0.0/16\",\n \"127.0.0.1\",\n \"168.63.129.16\",\n \ + \ \"169.254.169.254\",\n \"cliakstest-clitestcqyjkyn7i-8ecadf-ky1mct24.hcp.westus2.azmk8s.io\"\ + ,\n \"10.244.0.0/16\",\n \"konnectivity\",\n \"10.42.0.0/16\"\ + ,\n \"localhost\"\n ],\n \"effectiveNoProxy\": [\n \"10.0.0.0/16\"\ + ,\n \"127.0.0.1\",\n \"168.63.129.16\",\n \"169.254.169.254\"\ + ,\n \"cliakstest-clitestcqyjkyn7i-8ecadf-ky1mct24.hcp.westus2.azmk8s.io\"\ + ,\n \"10.244.0.0/16\",\n \"konnectivity\",\n \"10.42.0.0/16\"\ + ,\n \"localhost\"\n ],\n \"trustedCa\": \"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZERENDQXZTZ0F3SUJBZ0lVQlJ3cGs1eTh5ckdrNmtYTjhkSHlMRUNvaHBrd0RRWUpLb1pJaHZjTkFRRUwKQlFBd0VqRVFNQTRHQTFVRUF3d0habTl2TFdKaGNqQWVGdzB5TVRFd01UTXdNekU1TlRoYUZ3MHpNVEV3TVRFdwpNekU1TlRoYU1CSXhFREFPQmdOVkJBTU1CMlp2YnkxaVlYSXdnZ0lpTUEwR0NTcUdTSWIzRFFFQkFRVUFBNElDCkR3QXdnZ0lLQW9JQ0FRRFcwRE9sVC9yci9xUEZIUU9lNndBNDkyVGh3VWxZaDhCQkszTW9VWVZLNjEvL2xXekEKeFkrYzlmazlvckUrZXhMSVpwdUg1VnNZR21MNUFyc05sVmNBMkU4MWgwSlBPYUo1eEpiZG40YldpZG9vdXRVVwpXeDNhYUJLSEt0RWdZbUNmTjliWXlZMlNWRWQvNS9HeGh0akVabHJ1aEtRdkZVa3hwR0xKK1JRQ25oNklZakQwCnNpQ0YyTjJhVUJ4RE5KaUdmeHlHSVIrY2p4Vlcrd01md05CQ0l6QVkxMnY4WmpzUXdmUWlhOE5oWEx3M0tuRm0KdzUrcHN2bU1HL1FFUUtZMXNOTnk2dS9DZkI3cmIxQ0EwcjdNNnFsNFMrWHJjZUVRcXpDUWR6NWJueGNYbmFkbwp5MDlhdm5OSGRqbmpvcHNPSkxhd2hzb3RGNWFrL1FLdjYzdU9yVFFlOHlPSWlCZ3JSUzdwejcxbVlhRGNMcXFtCmtmdDVLYnFnMHNZYmo0M09LSm5aZ3crTUtackhoSFJKNi9BcWxOclZML3pFUytHU0ozQ1lSaE5nYXdDQ0Nqd1gKanZYZnkycWFEV2NQbWZaSWVVMVNzdE05THBVRWFQNjJzUVNmb3NEdnZFbUFyUVgwcmd1WGhvZ3pRUFdGWVlEKwo4SUNFYkNFc21hVnN3MzhVUzgzbFlGVCtyTHh3cm5UK1JXSUZ2WFRXbHhCNm5JeWpsOXBhNzlkdU5ocjJxN2RzCjVOU3ZWWHg5UGNqVTQ2VUZ6QnVTbUl0Q0M0Y1NadFRWc3l6ZnpMd2hKbGlqV0czTkp5TnpHUkZQcUpQdTNJUzEKZ3VtKytqdWx4bXZNWm1vM1RqSE5JRm90a0kyd3d3ZUtIcWpYcW9STmwvVnZobE5CaXZRR2gxeGovd0lEQVFBQgpvMW93V0RBU0JnTlZIUkVFQ3pBSmdnZG1iMjh0WW1GeU1CSUdBMVVkRXdFQi93UUlNQVlCQWY4Q0FRQXdEd1lEClZSMFBBUUgvQkFVREF3Zm5nREFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQWdZSUt3WUJCUVVIQXdFd0RRWUoKS29aSWh2Y05BUUVMQlFBRGdnSUJBTDF3RlpTdUw4NTM3aHpUTXhSUWJjcWdEU2F4RUd0ZDJaNTVCcnVWQVloagpxQjR6STd1UVZ2SkNpeXdmQm5BNnZmejh2UDBzdGJJbkVtajh1dS9CSS81NzZqR0tWUWRQSDhqMnQvN1NQWjFKClhBWk9wc1hoVll2RmtpQlhVeW1RMnAvRjFqb2ZRRE1JQ0htdHhRUSthakJQNjBpcnFnVnpsRi95NlQySUgzOHYKbGordndIam52WW5vVmhGNEY0TlE5amp6S3Y1NUhVTk0xUEJKZkFaOTJqeXovczdPMmN2cjhNWlNkT2s5QVk1RQp5RXRlQjBTSjdLS0tUZklBVmVMQzdrRnBHR3FsRkRBNzhPSS9YakNZViswRjk4MHdNOVkxTEVUa3ZMamVSMEFyCnVzZDNIS1Vtd2EwTVEwUTNZNGxma0ZtNjJTclhvcjJURC9WZHpFZWNOTnVmV1VJTVNuaEJDNTVHWjBOTVYvR0QKRXhGZTVWQkhUZEZVNlIwb3JCOVFjVll1Mzk0MEt5NXhkbHNaUHZlMmRJNS9WOXhzY0Zad3cxWWs4K21RK3NVeQp2UVBoL2ZmK0tTQjdVVkdvTVNXUlg3YjFFMGVzZSs4QzZlaVV2OXpDR0VRbkVCcnFIQWxSUDJ2ZzQ0bXFJSnRzCjN2NUt1NW0ySmJoeWNsQVR3VUNQZkN3a2tLRTg0MzZGRitDK0ZUVTJ1OWVpL2t5QTAxYi9zRFl2cWdsS2FWK3MKbEVHRkhjd05Ea2VrS1BFUEZxNkpnZ3R0WlNidE5SMnFadzl3cExIbDVuVlVXdnBGa2hvcW1KVkphK0VBSTQ1LwpqRkh4VG9PMHp1NlBxc1p5SnM2TC84Z3BhbTcwMDV6b0VETVRjcFltMlduMFBKcEg3NE9zUHJVRDVJWVA5ZEt5Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\"\ + \n },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5377a1ed-80be-446b-9d64-cccfe5c092af?api-version=2016-03-30 cache-control: - no-cache content-length: - - '7225' + - '7523' content-type: - application/json date: - - Wed, 15 Mar 2023 10:27:17 GMT + - Wed, 14 Jun 2023 19:25:06 GMT expires: - '-1' pragma: @@ -3620,6 +4152,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -3627,7 +4161,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -3637,72 +4171,23 @@ interactions: ParameterSetName: - --resource-group --name --http-proxy-config User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5377a1ed-80be-446b-9d64-cccfe5c092af?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestnql4jwkh3-79a739\",\n \"fqdn\": \"cliakstest-clitestnql4jwkh3-79a739-c4knwdy7.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestnql4jwkh3-79a739-c4knwdy7.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/eb7cc173-e60f-4dd6-b62d-3c783e1c84b5\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"httpProxyConfig\": - {\n \"httpProxy\": \"http://cli-proxy-vm:3128/\",\n \"httpsProxy\": - \"https://cli-proxy-vm:3129/\",\n \"noProxy\": [\n \"127.0.0.1\",\n - \ \"168.63.129.16\",\n \"169.254.169.254\",\n \"cliakstest-clitestnql4jwkh3-79a739-c4knwdy7.hcp.westus2.azmk8s.io\",\n - \ \"localhost\",\n \"10.0.0.0/16\",\n \"10.42.0.0/16\",\n \"10.244.0.0/16\",\n - \ \"konnectivity\"\n ],\n \"effectiveNoProxy\": [\n \"127.0.0.1\",\n - \ \"168.63.129.16\",\n \"169.254.169.254\",\n \"cliakstest-clitestnql4jwkh3-79a739-c4knwdy7.hcp.westus2.azmk8s.io\",\n - \ \"localhost\",\n \"10.0.0.0/16\",\n \"10.42.0.0/16\",\n \"10.244.0.0/16\",\n - \ \"konnectivity\"\n ],\n \"trustedCa\": \"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZHekNDQXdPZ0F3SUJBZ0lVT1FvajhDTFpkc2Vscjk3cnZJd3g1T0xEc3V3d0RRWUpLb1pJaHZjTkFRRUwKQlFBd0Z6RVZNQk1HQTFVRUF3d01ZMnhwTFhCeWIzaDVMWFp0TUI0WERUSXlNRE13T0RFMk5EUTBOMW9YRFRNeQpNRE13TlRFMk5EUTBOMW93RnpFVk1CTUdBMVVFQXd3TVkyeHBMWEJ5YjNoNUxYWnRNSUlDSWpBTkJna3Foa2lHCjl3MEJBUUVGQUFPQ0FnOEFNSUlDQ2dLQ0FnRUEvTVB0VjVCVFB0NmNxaTRSZE1sbXIzeUlzYTJ1anpjaHh2NGgKanNDMUR0blJnb3M1UzQxUEgwcmkrM3RUU1ZYMzJ5cndzWStyRDFZUnVwbTZsbUU3R2hVNUkwR2k5b3prU0YwWgpLS2FKaTJveXBVL0ZCK1FQcXpvQ1JzTUV3R0NibUtGVmw4VnVoeW5kWEs0YjRrYmxyOWJsL2V1d2Q3TThTYnZ6CldVam5lRHJRc2lJc3J6UFQ0S0FaTHFjdHpEZTRsbFBUN1lLYTMzaGlFUE9mdldpWitkcWthUUE5UDY0eFhTeW4KZkhYOHVWQUozdUJWSmVHeEQwcGtOSjdqT3J5YVV1SEh1Y1U4UzltSWpuS2pBQjVhUGpMSDV4QXM2bG1iMzEyMgp5KzF0bkVBbVhNNTBEK1VvRWpmUzZIT2I1cmRpcVhHdmMxS2JvS2p6a1BDUnh4MmE3MmN2ZWdVajZtZ0FKTHpnClRoRTFsbGNtVTRpemd4b0lNa1ZwR1RWT0xMbjFWRkt1TmhNWkN2RnZLZ25Lb0F2M0cwRlVuZldFYVJSalNObUQKTFlhTURUNUg5WnQycERJVWpVR1N0Q2w3Z1J6TUVuWXdKTzN5aURwZzQzbzVkUnlzVXlMOUpmRS9OaDdUZzYxOApuOGNKL1c3K1FZYllsanVyYXA4cjdRRlNyb2wzVkNoRkIrT29yNW5pK3ZvaFNBd0pmMFVsTXBHM3hXbXkxVUk0ClRGS2ZGR1JSVHpyUCs3Yk53WDVoSXZJeTVWdGd5YU9xSndUeGhpL0pkeHRPcjJ0QTVyQ1c3K0N0Z1N2emtxTkUKWHlyN3ZrWWdwNlk1TFpneTR0VWpLMEswT1VnVmRqQk9oRHBFenkvRkY4dzFGRVZnSjBxWS9yV2NMa0JIRFQ4Ugp2SmtoaW84Q0F3RUFBYU5mTUYwd0Z3WURWUjBSQkJBd0RvSU1ZMnhwTFhCeWIzaDVMWFp0TUJJR0ExVWRFd0VCCi93UUlNQVlCQWY4Q0FRQXdEd1lEVlIwUEFRSC9CQVVEQXdmbmdEQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0QKQWdZSUt3WUJCUVVIQXdFd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dJQkFBb21qQ3lYdmFRT3hnWUs1MHNYTEIyKwp3QWZkc3g1bm5HZGd5Zmc0dXJXMlZtMTVEaEd2STdDL250cTBkWXkyNE4vVWJHN1VEWHZseUxJSkZxMVhQN25mCnBaRzBWQ2paNjlibXhLbTNaOG0wL0F3TXZpOGU5ZWR5OHY5a05CQ3dMR2tIYkE4WW85Q0lpUWdlbGZwcDF2VWgKYm5OQmhhRCtpdTZDZmlDTHdnSmIvaXc3ZW8vQ3lvWnF4K3RqWGFPMnpYdm00cC8rUUlmQU9ndEdRTEZVOGNmWgovZ1VyVHE1Z0ZxMCtQOUd5V3NBVEpGNnE3TDZXWlpqME91VHNlN2Y0Q1NpajZNbk9NTXhBK0pvYWhKejdsc1NpClRKSEl3RXA1ci9SeWhweWVwUXhGWWNVSDVKSmY5cmFoWExXWmkrOVRqeFNNMll5aHhmUlBzaVVFdUdEb2s3OFEKbS9RUGlDaTlKSmIxb2NtVGpBVjh4RFNob2NpdlhPRnlobjZMbjc3dkxqWStBYXZ0V0RoUXRocHVQeHNMdFZ6bQplMFNIMTFkRUxSdGI3NG1xWE9yTzdmdS8rSUJzM0pxTEUvVSt4dXhRdHZHOHZHMXlES0hIU1pxUzJoL1dzNGw0Ck5pQXNoSGdlaFFEUEJjWTl3WVl6ZkJnWnBPVU16ZERmNTB4K0ZTbFk0M1dPSkp6U3VRaDR5WjArM2t5Z3VDRjgKcm5NTFNjZXlTNGNpNExtSi9LQ1N1R2RmNlhWWXo4QkU5Z2pqanBDUDZxeTBVbFJlZldzL2lnL3djSysyYkYxVApuL1l2KzZnWGVDVEhKNzVxRElQbHA3RFJVVWswZmJNajRiSWthb2dXV2s0emYydThteFpMYTBsZVBLTktaTi9tCkdDdkZ3cjNlaSt1LzhjenA1RjdUCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\"\n - \ },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"eda17753-be80-6b44-9d64-cccfe5c092af\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:25:06.5916034Z\"\n }" headers: cache-control: - no-cache content-length: - - '7225' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:27:17 GMT + - Wed, 14 Jun 2023 19:25:07 GMT expires: - '-1' pragma: @@ -3721,116 +4206,36 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestnql4jwkh3-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": - "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": - "OS", "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet", - "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, - "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": - false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, - "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/eb7cc173-e60f-4dd6-b62d-3c783e1c84b5"}]}, - "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": - ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", - "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "httpProxyConfig": {"httpProxy": "http://cli-proxy-vm:3128/", - "httpsProxy": "https://cli-proxy-vm:3129/", "noProxy": ["localhost", "127.0.0.1"], - "trustedCa": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZERENDQXZTZ0F3SUJBZ0lVQlJ3cGs1eTh5ckdrNmtYTjhkSHlMRUNvaHBrd0RRWUpLb1pJaHZjTkFRRUwKQlFBd0VqRVFNQTRHQTFVRUF3d0habTl2TFdKaGNqQWVGdzB5TVRFd01UTXdNekU1TlRoYUZ3MHpNVEV3TVRFdwpNekU1TlRoYU1CSXhFREFPQmdOVkJBTU1CMlp2YnkxaVlYSXdnZ0lpTUEwR0NTcUdTSWIzRFFFQkFRVUFBNElDCkR3QXdnZ0lLQW9JQ0FRRFcwRE9sVC9yci9xUEZIUU9lNndBNDkyVGh3VWxZaDhCQkszTW9VWVZLNjEvL2xXekEKeFkrYzlmazlvckUrZXhMSVpwdUg1VnNZR21MNUFyc05sVmNBMkU4MWgwSlBPYUo1eEpiZG40YldpZG9vdXRVVwpXeDNhYUJLSEt0RWdZbUNmTjliWXlZMlNWRWQvNS9HeGh0akVabHJ1aEtRdkZVa3hwR0xKK1JRQ25oNklZakQwCnNpQ0YyTjJhVUJ4RE5KaUdmeHlHSVIrY2p4Vlcrd01md05CQ0l6QVkxMnY4WmpzUXdmUWlhOE5oWEx3M0tuRm0KdzUrcHN2bU1HL1FFUUtZMXNOTnk2dS9DZkI3cmIxQ0EwcjdNNnFsNFMrWHJjZUVRcXpDUWR6NWJueGNYbmFkbwp5MDlhdm5OSGRqbmpvcHNPSkxhd2hzb3RGNWFrL1FLdjYzdU9yVFFlOHlPSWlCZ3JSUzdwejcxbVlhRGNMcXFtCmtmdDVLYnFnMHNZYmo0M09LSm5aZ3crTUtackhoSFJKNi9BcWxOclZML3pFUytHU0ozQ1lSaE5nYXdDQ0Nqd1gKanZYZnkycWFEV2NQbWZaSWVVMVNzdE05THBVRWFQNjJzUVNmb3NEdnZFbUFyUVgwcmd1WGhvZ3pRUFdGWVlEKwo4SUNFYkNFc21hVnN3MzhVUzgzbFlGVCtyTHh3cm5UK1JXSUZ2WFRXbHhCNm5JeWpsOXBhNzlkdU5ocjJxN2RzCjVOU3ZWWHg5UGNqVTQ2VUZ6QnVTbUl0Q0M0Y1NadFRWc3l6ZnpMd2hKbGlqV0czTkp5TnpHUkZQcUpQdTNJUzEKZ3VtKytqdWx4bXZNWm1vM1RqSE5JRm90a0kyd3d3ZUtIcWpYcW9STmwvVnZobE5CaXZRR2gxeGovd0lEQVFBQgpvMW93V0RBU0JnTlZIUkVFQ3pBSmdnZG1iMjh0WW1GeU1CSUdBMVVkRXdFQi93UUlNQVlCQWY4Q0FRQXdEd1lEClZSMFBBUUgvQkFVREF3Zm5nREFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQWdZSUt3WUJCUVVIQXdFd0RRWUoKS29aSWh2Y05BUUVMQlFBRGdnSUJBTDF3RlpTdUw4NTM3aHpUTXhSUWJjcWdEU2F4RUd0ZDJaNTVCcnVWQVloagpxQjR6STd1UVZ2SkNpeXdmQm5BNnZmejh2UDBzdGJJbkVtajh1dS9CSS81NzZqR0tWUWRQSDhqMnQvN1NQWjFKClhBWk9wc1hoVll2RmtpQlhVeW1RMnAvRjFqb2ZRRE1JQ0htdHhRUSthakJQNjBpcnFnVnpsRi95NlQySUgzOHYKbGordndIam52WW5vVmhGNEY0TlE5amp6S3Y1NUhVTk0xUEJKZkFaOTJqeXovczdPMmN2cjhNWlNkT2s5QVk1RQp5RXRlQjBTSjdLS0tUZklBVmVMQzdrRnBHR3FsRkRBNzhPSS9YakNZViswRjk4MHdNOVkxTEVUa3ZMamVSMEFyCnVzZDNIS1Vtd2EwTVEwUTNZNGxma0ZtNjJTclhvcjJURC9WZHpFZWNOTnVmV1VJTVNuaEJDNTVHWjBOTVYvR0QKRXhGZTVWQkhUZEZVNlIwb3JCOVFjVll1Mzk0MEt5NXhkbHNaUHZlMmRJNS9WOXhzY0Zad3cxWWs4K21RK3NVeQp2UVBoL2ZmK0tTQjdVVkdvTVNXUlg3YjFFMGVzZSs4QzZlaVV2OXpDR0VRbkVCcnFIQWxSUDJ2ZzQ0bXFJSnRzCjN2NUt1NW0ySmJoeWNsQVR3VUNQZkN3a2tLRTg0MzZGRitDK0ZUVTJ1OWVpL2t5QTAxYi9zRFl2cWdsS2FWK3MKbEVHRkhjd05Ea2VrS1BFUEZxNkpnZ3R0WlNidE5SMnFadzl3cExIbDVuVlVXdnBGa2hvcW1KVkphK0VBSTQ1LwpqRkh4VG9PMHp1NlBxc1p5SnM2TC84Z3BhbTcwMDV6b0VETVRjcFltMlduMFBKcEg3NE9zUHJVRDVJWVA5ZEt5Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K"}, - "securityProfile": {}, "storageProfile": {}, "workloadAutoScalerProfile": {}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks update Connection: - keep-alive - Content-Length: - - '5239' - Content-Type: - - application/json ParameterSetName: - --resource-group --name --http-proxy-config User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5377a1ed-80be-446b-9d64-cccfe5c092af?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestnql4jwkh3-79a739\",\n \"fqdn\": \"cliakstest-clitestnql4jwkh3-79a739-c4knwdy7.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestnql4jwkh3-79a739-c4knwdy7.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/eb7cc173-e60f-4dd6-b62d-3c783e1c84b5\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"httpProxyConfig\": - {\n \"httpProxy\": \"http://cli-proxy-vm:3128/\",\n \"httpsProxy\": - \"https://cli-proxy-vm:3129/\",\n \"noProxy\": [\n \"localhost\",\n - \ \"cliakstest-clitestnql4jwkh3-79a739-c4knwdy7.hcp.westus2.azmk8s.io\",\n - \ \"10.42.0.0/16\",\n \"10.0.0.0/16\",\n \"127.0.0.1\",\n \"169.254.169.254\",\n - \ \"10.244.0.0/16\",\n \"168.63.129.16\",\n \"konnectivity\"\n - \ ],\n \"effectiveNoProxy\": [\n \"localhost\",\n \"cliakstest-clitestnql4jwkh3-79a739-c4knwdy7.hcp.westus2.azmk8s.io\",\n - \ \"10.42.0.0/16\",\n \"10.0.0.0/16\",\n \"127.0.0.1\",\n \"169.254.169.254\",\n - \ \"10.244.0.0/16\",\n \"168.63.129.16\",\n \"konnectivity\"\n - \ ],\n \"trustedCa\": \"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZERENDQXZTZ0F3SUJBZ0lVQlJ3cGs1eTh5ckdrNmtYTjhkSHlMRUNvaHBrd0RRWUpLb1pJaHZjTkFRRUwKQlFBd0VqRVFNQTRHQTFVRUF3d0habTl2TFdKaGNqQWVGdzB5TVRFd01UTXdNekU1TlRoYUZ3MHpNVEV3TVRFdwpNekU1TlRoYU1CSXhFREFPQmdOVkJBTU1CMlp2YnkxaVlYSXdnZ0lpTUEwR0NTcUdTSWIzRFFFQkFRVUFBNElDCkR3QXdnZ0lLQW9JQ0FRRFcwRE9sVC9yci9xUEZIUU9lNndBNDkyVGh3VWxZaDhCQkszTW9VWVZLNjEvL2xXekEKeFkrYzlmazlvckUrZXhMSVpwdUg1VnNZR21MNUFyc05sVmNBMkU4MWgwSlBPYUo1eEpiZG40YldpZG9vdXRVVwpXeDNhYUJLSEt0RWdZbUNmTjliWXlZMlNWRWQvNS9HeGh0akVabHJ1aEtRdkZVa3hwR0xKK1JRQ25oNklZakQwCnNpQ0YyTjJhVUJ4RE5KaUdmeHlHSVIrY2p4Vlcrd01md05CQ0l6QVkxMnY4WmpzUXdmUWlhOE5oWEx3M0tuRm0KdzUrcHN2bU1HL1FFUUtZMXNOTnk2dS9DZkI3cmIxQ0EwcjdNNnFsNFMrWHJjZUVRcXpDUWR6NWJueGNYbmFkbwp5MDlhdm5OSGRqbmpvcHNPSkxhd2hzb3RGNWFrL1FLdjYzdU9yVFFlOHlPSWlCZ3JSUzdwejcxbVlhRGNMcXFtCmtmdDVLYnFnMHNZYmo0M09LSm5aZ3crTUtackhoSFJKNi9BcWxOclZML3pFUytHU0ozQ1lSaE5nYXdDQ0Nqd1gKanZYZnkycWFEV2NQbWZaSWVVMVNzdE05THBVRWFQNjJzUVNmb3NEdnZFbUFyUVgwcmd1WGhvZ3pRUFdGWVlEKwo4SUNFYkNFc21hVnN3MzhVUzgzbFlGVCtyTHh3cm5UK1JXSUZ2WFRXbHhCNm5JeWpsOXBhNzlkdU5ocjJxN2RzCjVOU3ZWWHg5UGNqVTQ2VUZ6QnVTbUl0Q0M0Y1NadFRWc3l6ZnpMd2hKbGlqV0czTkp5TnpHUkZQcUpQdTNJUzEKZ3VtKytqdWx4bXZNWm1vM1RqSE5JRm90a0kyd3d3ZUtIcWpYcW9STmwvVnZobE5CaXZRR2gxeGovd0lEQVFBQgpvMW93V0RBU0JnTlZIUkVFQ3pBSmdnZG1iMjh0WW1GeU1CSUdBMVVkRXdFQi93UUlNQVlCQWY4Q0FRQXdEd1lEClZSMFBBUUgvQkFVREF3Zm5nREFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQWdZSUt3WUJCUVVIQXdFd0RRWUoKS29aSWh2Y05BUUVMQlFBRGdnSUJBTDF3RlpTdUw4NTM3aHpUTXhSUWJjcWdEU2F4RUd0ZDJaNTVCcnVWQVloagpxQjR6STd1UVZ2SkNpeXdmQm5BNnZmejh2UDBzdGJJbkVtajh1dS9CSS81NzZqR0tWUWRQSDhqMnQvN1NQWjFKClhBWk9wc1hoVll2RmtpQlhVeW1RMnAvRjFqb2ZRRE1JQ0htdHhRUSthakJQNjBpcnFnVnpsRi95NlQySUgzOHYKbGordndIam52WW5vVmhGNEY0TlE5amp6S3Y1NUhVTk0xUEJKZkFaOTJqeXovczdPMmN2cjhNWlNkT2s5QVk1RQp5RXRlQjBTSjdLS0tUZklBVmVMQzdrRnBHR3FsRkRBNzhPSS9YakNZViswRjk4MHdNOVkxTEVUa3ZMamVSMEFyCnVzZDNIS1Vtd2EwTVEwUTNZNGxma0ZtNjJTclhvcjJURC9WZHpFZWNOTnVmV1VJTVNuaEJDNTVHWjBOTVYvR0QKRXhGZTVWQkhUZEZVNlIwb3JCOVFjVll1Mzk0MEt5NXhkbHNaUHZlMmRJNS9WOXhzY0Zad3cxWWs4K21RK3NVeQp2UVBoL2ZmK0tTQjdVVkdvTVNXUlg3YjFFMGVzZSs4QzZlaVV2OXpDR0VRbkVCcnFIQWxSUDJ2ZzQ0bXFJSnRzCjN2NUt1NW0ySmJoeWNsQVR3VUNQZkN3a2tLRTg0MzZGRitDK0ZUVTJ1OWVpL2t5QTAxYi9zRFl2cWdsS2FWK3MKbEVHRkhjd05Ea2VrS1BFUEZxNkpnZ3R0WlNidE5SMnFadzl3cExIbDVuVlVXdnBGa2hvcW1KVkphK0VBSTQ1LwpqRkh4VG9PMHp1NlBxc1p5SnM2TC84Z3BhbTcwMDV6b0VETVRjcFltMlduMFBKcEg3NE9zUHJVRDVJWVA5ZEt5Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\"\n - \ },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"eda17753-be80-6b44-9d64-cccfe5c092af\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:25:06.5916034Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2fdf8e0a-cbb5-49d3-985a-2aee28be9618?api-version=2016-03-30 cache-control: - no-cache content-length: - - '7195' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:27:20 GMT + - Wed, 14 Jun 2023 19:25:37 GMT expires: - '-1' pragma: @@ -3845,8 +4250,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' status: code: 200 message: OK @@ -3864,14 +4267,14 @@ interactions: ParameterSetName: - --resource-group --name --http-proxy-config User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2fdf8e0a-cbb5-49d3-985a-2aee28be9618?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5377a1ed-80be-446b-9d64-cccfe5c092af?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0a8edf2f-b5cb-d349-985a-2aee28be9618\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:27:21.2482131Z\"\n }" + string: "{\n \"name\": \"eda17753-be80-6b44-9d64-cccfe5c092af\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:25:06.5916034Z\"\n }" headers: cache-control: - no-cache @@ -3880,7 +4283,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:27:51 GMT + - Wed, 14 Jun 2023 19:26:07 GMT expires: - '-1' pragma: @@ -3912,14 +4315,14 @@ interactions: ParameterSetName: - --resource-group --name --http-proxy-config User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2fdf8e0a-cbb5-49d3-985a-2aee28be9618?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5377a1ed-80be-446b-9d64-cccfe5c092af?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0a8edf2f-b5cb-d349-985a-2aee28be9618\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:27:21.2482131Z\"\n }" + string: "{\n \"name\": \"eda17753-be80-6b44-9d64-cccfe5c092af\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:25:06.5916034Z\"\n }" headers: cache-control: - no-cache @@ -3928,7 +4331,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:28:21 GMT + - Wed, 14 Jun 2023 19:26:37 GMT expires: - '-1' pragma: @@ -3960,14 +4363,14 @@ interactions: ParameterSetName: - --resource-group --name --http-proxy-config User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2fdf8e0a-cbb5-49d3-985a-2aee28be9618?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5377a1ed-80be-446b-9d64-cccfe5c092af?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0a8edf2f-b5cb-d349-985a-2aee28be9618\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:27:21.2482131Z\"\n }" + string: "{\n \"name\": \"eda17753-be80-6b44-9d64-cccfe5c092af\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:25:06.5916034Z\"\n }" headers: cache-control: - no-cache @@ -3976,7 +4379,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:28:50 GMT + - Wed, 14 Jun 2023 19:27:07 GMT expires: - '-1' pragma: @@ -4008,15 +4411,15 @@ interactions: ParameterSetName: - --resource-group --name --http-proxy-config User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2fdf8e0a-cbb5-49d3-985a-2aee28be9618?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5377a1ed-80be-446b-9d64-cccfe5c092af?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0a8edf2f-b5cb-d349-985a-2aee28be9618\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:27:21.2482131Z\",\n \"endTime\": - \"2023-03-15T10:29:18.0365184Z\"\n }" + string: "{\n \"name\": \"eda17753-be80-6b44-9d64-cccfe5c092af\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T19:25:06.5916034Z\",\n \"\ + endTime\": \"2023-06-14T19:27:15.9132529Z\"\n }" headers: cache-control: - no-cache @@ -4025,7 +4428,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:29:21 GMT + - Wed, 14 Jun 2023 19:27:38 GMT expires: - '-1' pragma: @@ -4057,73 +4460,77 @@ interactions: ParameterSetName: - --resource-group --name --http-proxy-config User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestnql4jwkh3-79a739\",\n \"fqdn\": \"cliakstest-clitestnql4jwkh3-79a739-c4knwdy7.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestnql4jwkh3-79a739-c4knwdy7.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/eb7cc173-e60f-4dd6-b62d-3c783e1c84b5\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"httpProxyConfig\": - {\n \"httpProxy\": \"http://cli-proxy-vm:3128/\",\n \"httpsProxy\": - \"https://cli-proxy-vm:3129/\",\n \"noProxy\": [\n \"localhost\",\n - \ \"cliakstest-clitestnql4jwkh3-79a739-c4knwdy7.hcp.westus2.azmk8s.io\",\n - \ \"10.42.0.0/16\",\n \"10.0.0.0/16\",\n \"127.0.0.1\",\n \"169.254.169.254\",\n - \ \"10.244.0.0/16\",\n \"168.63.129.16\",\n \"konnectivity\"\n - \ ],\n \"effectiveNoProxy\": [\n \"localhost\",\n \"cliakstest-clitestnql4jwkh3-79a739-c4knwdy7.hcp.westus2.azmk8s.io\",\n - \ \"10.42.0.0/16\",\n \"10.0.0.0/16\",\n \"127.0.0.1\",\n \"169.254.169.254\",\n - \ \"10.244.0.0/16\",\n \"168.63.129.16\",\n \"konnectivity\"\n - \ ],\n \"trustedCa\": \"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZERENDQXZTZ0F3SUJBZ0lVQlJ3cGs1eTh5ckdrNmtYTjhkSHlMRUNvaHBrd0RRWUpLb1pJaHZjTkFRRUwKQlFBd0VqRVFNQTRHQTFVRUF3d0habTl2TFdKaGNqQWVGdzB5TVRFd01UTXdNekU1TlRoYUZ3MHpNVEV3TVRFdwpNekU1TlRoYU1CSXhFREFPQmdOVkJBTU1CMlp2YnkxaVlYSXdnZ0lpTUEwR0NTcUdTSWIzRFFFQkFRVUFBNElDCkR3QXdnZ0lLQW9JQ0FRRFcwRE9sVC9yci9xUEZIUU9lNndBNDkyVGh3VWxZaDhCQkszTW9VWVZLNjEvL2xXekEKeFkrYzlmazlvckUrZXhMSVpwdUg1VnNZR21MNUFyc05sVmNBMkU4MWgwSlBPYUo1eEpiZG40YldpZG9vdXRVVwpXeDNhYUJLSEt0RWdZbUNmTjliWXlZMlNWRWQvNS9HeGh0akVabHJ1aEtRdkZVa3hwR0xKK1JRQ25oNklZakQwCnNpQ0YyTjJhVUJ4RE5KaUdmeHlHSVIrY2p4Vlcrd01md05CQ0l6QVkxMnY4WmpzUXdmUWlhOE5oWEx3M0tuRm0KdzUrcHN2bU1HL1FFUUtZMXNOTnk2dS9DZkI3cmIxQ0EwcjdNNnFsNFMrWHJjZUVRcXpDUWR6NWJueGNYbmFkbwp5MDlhdm5OSGRqbmpvcHNPSkxhd2hzb3RGNWFrL1FLdjYzdU9yVFFlOHlPSWlCZ3JSUzdwejcxbVlhRGNMcXFtCmtmdDVLYnFnMHNZYmo0M09LSm5aZ3crTUtackhoSFJKNi9BcWxOclZML3pFUytHU0ozQ1lSaE5nYXdDQ0Nqd1gKanZYZnkycWFEV2NQbWZaSWVVMVNzdE05THBVRWFQNjJzUVNmb3NEdnZFbUFyUVgwcmd1WGhvZ3pRUFdGWVlEKwo4SUNFYkNFc21hVnN3MzhVUzgzbFlGVCtyTHh3cm5UK1JXSUZ2WFRXbHhCNm5JeWpsOXBhNzlkdU5ocjJxN2RzCjVOU3ZWWHg5UGNqVTQ2VUZ6QnVTbUl0Q0M0Y1NadFRWc3l6ZnpMd2hKbGlqV0czTkp5TnpHUkZQcUpQdTNJUzEKZ3VtKytqdWx4bXZNWm1vM1RqSE5JRm90a0kyd3d3ZUtIcWpYcW9STmwvVnZobE5CaXZRR2gxeGovd0lEQVFBQgpvMW93V0RBU0JnTlZIUkVFQ3pBSmdnZG1iMjh0WW1GeU1CSUdBMVVkRXdFQi93UUlNQVlCQWY4Q0FRQXdEd1lEClZSMFBBUUgvQkFVREF3Zm5nREFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQWdZSUt3WUJCUVVIQXdFd0RRWUoKS29aSWh2Y05BUUVMQlFBRGdnSUJBTDF3RlpTdUw4NTM3aHpUTXhSUWJjcWdEU2F4RUd0ZDJaNTVCcnVWQVloagpxQjR6STd1UVZ2SkNpeXdmQm5BNnZmejh2UDBzdGJJbkVtajh1dS9CSS81NzZqR0tWUWRQSDhqMnQvN1NQWjFKClhBWk9wc1hoVll2RmtpQlhVeW1RMnAvRjFqb2ZRRE1JQ0htdHhRUSthakJQNjBpcnFnVnpsRi95NlQySUgzOHYKbGordndIam52WW5vVmhGNEY0TlE5amp6S3Y1NUhVTk0xUEJKZkFaOTJqeXovczdPMmN2cjhNWlNkT2s5QVk1RQp5RXRlQjBTSjdLS0tUZklBVmVMQzdrRnBHR3FsRkRBNzhPSS9YakNZViswRjk4MHdNOVkxTEVUa3ZMamVSMEFyCnVzZDNIS1Vtd2EwTVEwUTNZNGxma0ZtNjJTclhvcjJURC9WZHpFZWNOTnVmV1VJTVNuaEJDNTVHWjBOTVYvR0QKRXhGZTVWQkhUZEZVNlIwb3JCOVFjVll1Mzk0MEt5NXhkbHNaUHZlMmRJNS9WOXhzY0Zad3cxWWs4K21RK3NVeQp2UVBoL2ZmK0tTQjdVVkdvTVNXUlg3YjFFMGVzZSs4QzZlaVV2OXpDR0VRbkVCcnFIQWxSUDJ2ZzQ0bXFJSnRzCjN2NUt1NW0ySmJoeWNsQVR3VUNQZkN3a2tLRTg0MzZGRitDK0ZUVTJ1OWVpL2t5QTAxYi9zRFl2cWdsS2FWK3MKbEVHRkhjd05Ea2VrS1BFUEZxNkpnZ3R0WlNidE5SMnFadzl3cExIbDVuVlVXdnBGa2hvcW1KVkphK0VBSTQ1LwpqRkh4VG9PMHp1NlBxc1p5SnM2TC84Z3BhbTcwMDV6b0VETVRjcFltMlduMFBKcEg3NE9zUHJVRDVJWVA5ZEt5Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\"\n - \ },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestcqyjkyn7i-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestcqyjkyn7i-8ecadf-ky1mct24.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestcqyjkyn7i-8ecadf-ky1mct24.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/cliakstest000002/subnets/aks-subnet\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1e163633-5baf-4745-96ad-2aad20605161\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"httpProxyConfig\": {\n \"httpProxy\": \"http://cli-proxy-vm:3128/\"\ + ,\n \"httpsProxy\": \"https://cli-proxy-vm:3129/\",\n \"noProxy\": [\n\ + \ \"10.0.0.0/16\",\n \"127.0.0.1\",\n \"168.63.129.16\",\n \ + \ \"169.254.169.254\",\n \"cliakstest-clitestcqyjkyn7i-8ecadf-ky1mct24.hcp.westus2.azmk8s.io\"\ + ,\n \"10.244.0.0/16\",\n \"konnectivity\",\n \"10.42.0.0/16\"\ + ,\n \"localhost\"\n ],\n \"effectiveNoProxy\": [\n \"10.0.0.0/16\"\ + ,\n \"127.0.0.1\",\n \"168.63.129.16\",\n \"169.254.169.254\"\ + ,\n \"cliakstest-clitestcqyjkyn7i-8ecadf-ky1mct24.hcp.westus2.azmk8s.io\"\ + ,\n \"10.244.0.0/16\",\n \"konnectivity\",\n \"10.42.0.0/16\"\ + ,\n \"localhost\"\n ],\n \"trustedCa\": \"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUZERENDQXZTZ0F3SUJBZ0lVQlJ3cGs1eTh5ckdrNmtYTjhkSHlMRUNvaHBrd0RRWUpLb1pJaHZjTkFRRUwKQlFBd0VqRVFNQTRHQTFVRUF3d0habTl2TFdKaGNqQWVGdzB5TVRFd01UTXdNekU1TlRoYUZ3MHpNVEV3TVRFdwpNekU1TlRoYU1CSXhFREFPQmdOVkJBTU1CMlp2YnkxaVlYSXdnZ0lpTUEwR0NTcUdTSWIzRFFFQkFRVUFBNElDCkR3QXdnZ0lLQW9JQ0FRRFcwRE9sVC9yci9xUEZIUU9lNndBNDkyVGh3VWxZaDhCQkszTW9VWVZLNjEvL2xXekEKeFkrYzlmazlvckUrZXhMSVpwdUg1VnNZR21MNUFyc05sVmNBMkU4MWgwSlBPYUo1eEpiZG40YldpZG9vdXRVVwpXeDNhYUJLSEt0RWdZbUNmTjliWXlZMlNWRWQvNS9HeGh0akVabHJ1aEtRdkZVa3hwR0xKK1JRQ25oNklZakQwCnNpQ0YyTjJhVUJ4RE5KaUdmeHlHSVIrY2p4Vlcrd01md05CQ0l6QVkxMnY4WmpzUXdmUWlhOE5oWEx3M0tuRm0KdzUrcHN2bU1HL1FFUUtZMXNOTnk2dS9DZkI3cmIxQ0EwcjdNNnFsNFMrWHJjZUVRcXpDUWR6NWJueGNYbmFkbwp5MDlhdm5OSGRqbmpvcHNPSkxhd2hzb3RGNWFrL1FLdjYzdU9yVFFlOHlPSWlCZ3JSUzdwejcxbVlhRGNMcXFtCmtmdDVLYnFnMHNZYmo0M09LSm5aZ3crTUtackhoSFJKNi9BcWxOclZML3pFUytHU0ozQ1lSaE5nYXdDQ0Nqd1gKanZYZnkycWFEV2NQbWZaSWVVMVNzdE05THBVRWFQNjJzUVNmb3NEdnZFbUFyUVgwcmd1WGhvZ3pRUFdGWVlEKwo4SUNFYkNFc21hVnN3MzhVUzgzbFlGVCtyTHh3cm5UK1JXSUZ2WFRXbHhCNm5JeWpsOXBhNzlkdU5ocjJxN2RzCjVOU3ZWWHg5UGNqVTQ2VUZ6QnVTbUl0Q0M0Y1NadFRWc3l6ZnpMd2hKbGlqV0czTkp5TnpHUkZQcUpQdTNJUzEKZ3VtKytqdWx4bXZNWm1vM1RqSE5JRm90a0kyd3d3ZUtIcWpYcW9STmwvVnZobE5CaXZRR2gxeGovd0lEQVFBQgpvMW93V0RBU0JnTlZIUkVFQ3pBSmdnZG1iMjh0WW1GeU1CSUdBMVVkRXdFQi93UUlNQVlCQWY4Q0FRQXdEd1lEClZSMFBBUUgvQkFVREF3Zm5nREFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQWdZSUt3WUJCUVVIQXdFd0RRWUoKS29aSWh2Y05BUUVMQlFBRGdnSUJBTDF3RlpTdUw4NTM3aHpUTXhSUWJjcWdEU2F4RUd0ZDJaNTVCcnVWQVloagpxQjR6STd1UVZ2SkNpeXdmQm5BNnZmejh2UDBzdGJJbkVtajh1dS9CSS81NzZqR0tWUWRQSDhqMnQvN1NQWjFKClhBWk9wc1hoVll2RmtpQlhVeW1RMnAvRjFqb2ZRRE1JQ0htdHhRUSthakJQNjBpcnFnVnpsRi95NlQySUgzOHYKbGordndIam52WW5vVmhGNEY0TlE5amp6S3Y1NUhVTk0xUEJKZkFaOTJqeXovczdPMmN2cjhNWlNkT2s5QVk1RQp5RXRlQjBTSjdLS0tUZklBVmVMQzdrRnBHR3FsRkRBNzhPSS9YakNZViswRjk4MHdNOVkxTEVUa3ZMamVSMEFyCnVzZDNIS1Vtd2EwTVEwUTNZNGxma0ZtNjJTclhvcjJURC9WZHpFZWNOTnVmV1VJTVNuaEJDNTVHWjBOTVYvR0QKRXhGZTVWQkhUZEZVNlIwb3JCOVFjVll1Mzk0MEt5NXhkbHNaUHZlMmRJNS9WOXhzY0Zad3cxWWs4K21RK3NVeQp2UVBoL2ZmK0tTQjdVVkdvTVNXUlg3YjFFMGVzZSs4QzZlaVV2OXpDR0VRbkVCcnFIQWxSUDJ2ZzQ0bXFJSnRzCjN2NUt1NW0ySmJoeWNsQVR3VUNQZkN3a2tLRTg0MzZGRitDK0ZUVTJ1OWVpL2t5QTAxYi9zRFl2cWdsS2FWK3MKbEVHRkhjd05Ea2VrS1BFUEZxNkpnZ3R0WlNidE5SMnFadzl3cExIbDVuVlVXdnBGa2hvcW1KVkphK0VBSTQ1LwpqRkh4VG9PMHp1NlBxc1p5SnM2TC84Z3BhbTcwMDV6b0VETVRjcFltMlduMFBKcEg3NE9zUHJVRDVJWVA5ZEt5Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K\"\ + \n },\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '7197' + - '7525' content-type: - application/json date: - - Wed, 15 Mar 2023 10:29:22 GMT + - Wed, 14 Jun 2023 19:27:39 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_and_update_with_managed_nat_gateway_outbound.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_and_update_with_managed_nat_gateway_outbound.yaml old mode 100755 new mode 100644 index 85fe36a4875..585bbf5e4aa --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_and_update_with_managed_nat_gateway_outbound.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_and_update_with_managed_nat_gateway_outbound.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --vm-set-type -c --outbound-type --generate-ssh-keys --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout --location User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 09:56:26 GMT + - Wed, 14 Jun 2023 19:27:43 GMT expires: - '-1' pragma: @@ -47,19 +47,19 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestocmbfzro5-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestpf56qxr6a-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsUNxyxr64cgmW2DeA1l9gyK/y7ju7yByewyVXKzMCyus691v155Wlojgjf55QrjZEeh3CyY0sOMiUZeTTFNs9AeJuFeaOBn1uWTSbFB/cyoaVwyGCxt3BGxc4g8viIllhVgAo4ZCo9sVLm3t+89irXsvWmQnKUl3eKY5tmp47q8XjWowWtANK/26rpawOXwJlVxoL9dZaKmp6WBF8uL2LwULpZr+vOurWd1qSyJprcxFMjnK+3wFEfQuaSuEHfXIPuVBv34wHFMALj4hz5xZ0fiZAUrFNhUo4pfNFtcdV+rfV7mCYcPReLm9pUTv+Lqkk0sdRc4XBI5iUVxrtQtuL"}]}}, - "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": - "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": - "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "managedNATGateway", - "loadBalancerSku": "standard", "natGatewayProfile": {"managedOutboundIPProfile": - {"count": 1}, "idleTimeoutInMinutes": 4}}, "disableLocalAccounts": false, "storageProfile": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDpX1rdEYwy8z3kRUtRfwnjcaa5sVBDlUyteEiAVG60B6vO74sUT/s0cmvOGRY56u17SQxCQdf7Y8rapBYnkCybdcP8Vh6SoQszHc2N5LbcfHLoeA9wrFvW74ZZHmld34yo1OeU3xKZVlGB+xP54En93j1zYZa7WFQz20r/R4JR2koF6h1W4jxneKXzRTs/KoZyBAHhM1YuqQiEohJHxccmFlAm1pvzwaEtBMeGQdu3wjSL9CGOGsBTcnSo06LkZ1EXdd9zgSO5Vma/qBA4ZcP7rG6ght3ajBs5b7TqabuISOeWiu9y8GxY+lxiolSmE/MyKAaoJJ8nxHrbjom+gLtsGhW79FqoqySDkN+qK1h/L5YEIjgfx0L4bJkeKGXWNXmGGJE1tEkV0ob9EBpJAMEza46N+LImo/q465+vUG2nOS/cgFkMG4yclVe6f7kyOWWbijFMTcInThhtMoJUBfikOTguGlAIIjMphhaWyAXIjmbpiyDppctW0OrF4ljGx9E= + henrychen@microsoft.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "managedNATGateway", "loadBalancerSku": + "standard", "natGatewayProfile": {"managedOutboundIPProfile": {"count": 1}, + "idleTimeoutInMinutes": 4}}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: @@ -71,68 +71,72 @@ interactions: Connection: - keep-alive Content-Length: - - '1522' + - '1683' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type -c --outbound-type --generate-ssh-keys --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout --location User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestocmbfzro5-79a739\",\n \"fqdn\": \"cliakstest-clitestocmbfzro5-79a739-1rvh4fbf.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestocmbfzro5-79a739-1rvh4fbf.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsUNxyxr64cgmW2DeA1l9gyK/y7ju7yByewyVXKzMCyus691v155Wlojgjf55QrjZEeh3CyY0sOMiUZeTTFNs9AeJuFeaOBn1uWTSbFB/cyoaVwyGCxt3BGxc4g8viIllhVgAo4ZCo9sVLm3t+89irXsvWmQnKUl3eKY5tmp47q8XjWowWtANK/26rpawOXwJlVxoL9dZaKmp6WBF8uL2LwULpZr+vOurWd1qSyJprcxFMjnK+3wFEfQuaSuEHfXIPuVBv34wHFMALj4hz5xZ0fiZAUrFNhUo4pfNFtcdV+rfV7mCYcPReLm9pUTv+Lqkk0sdRc4XBI5iUVxrtQtuL\"\n - \ }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {},\n \"natGatewayProfile\": {\n \"managedOutboundIPProfile\": {\n - \ \"count\": 1\n },\n \"idleTimeoutInMinutes\": 4\n },\n \"podCidr\": - \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"managedNATGateway\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n - \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestpf56qxr6a-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestpf56qxr6a-8ecadf-ajcgf61t.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestpf56qxr6a-8ecadf-ajcgf61t.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDpX1rdEYwy8z3kRUtRfwnjcaa5sVBDlUyteEiAVG60B6vO74sUT/s0cmvOGRY56u17SQxCQdf7Y8rapBYnkCybdcP8Vh6SoQszHc2N5LbcfHLoeA9wrFvW74ZZHmld34yo1OeU3xKZVlGB+xP54En93j1zYZa7WFQz20r/R4JR2koF6h1W4jxneKXzRTs/KoZyBAHhM1YuqQiEohJHxccmFlAm1pvzwaEtBMeGQdu3wjSL9CGOGsBTcnSo06LkZ1EXdd9zgSO5Vma/qBA4ZcP7rG6ght3ajBs5b7TqabuISOeWiu9y8GxY+lxiolSmE/MyKAaoJJ8nxHrbjom+gLtsGhW79FqoqySDkN+qK1h/L5YEIjgfx0L4bJkeKGXWNXmGGJE1tEkV0ob9EBpJAMEza46N+LImo/q465+vUG2nOS/cgFkMG4yclVe6f7kyOWWbijFMTcInThhtMoJUBfikOTguGlAIIjMphhaWyAXIjmbpiyDppctW0OrF4ljGx9E=\ + \ henrychen@microsoft.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {},\n \"natGatewayProfile\"\ + : {\n \"managedOutboundIPProfile\": {\n \"count\": 1\n },\n \ + \ \"idleTimeoutInMinutes\": 4\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"managedNATGateway\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ + : 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n\ + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n\ + \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"\ + snapshotController\": {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\"\ + : {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": {}\n\ + \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/799057d8-3b9b-4d38-8bff-e424217a9ad0?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/da2fbcb2-d883-4ece-8a37-6a381a3e8cdf?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3306' + - '3503' content-type: - application/json date: - - Wed, 15 Mar 2023 09:56:30 GMT + - Wed, 14 Jun 2023 19:27:50 GMT expires: - '-1' pragma: @@ -163,14 +167,63 @@ interactions: - --resource-group --name --vm-set-type -c --outbound-type --generate-ssh-keys --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout --location User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/da2fbcb2-d883-4ece-8a37-6a381a3e8cdf?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b2bc2fda-83d8-ce4e-8a37-6a381a3e8cdf\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:27:51.248287Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 19:27:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --outbound-type --generate-ssh-keys + --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout --location + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/799057d8-3b9b-4d38-8bff-e424217a9ad0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/da2fbcb2-d883-4ece-8a37-6a381a3e8cdf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d8579079-9b3b-384d-8bff-e424217a9ad0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:30.897333Z\"\n }" + string: "{\n \"name\": \"b2bc2fda-83d8-ce4e-8a37-6a381a3e8cdf\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:27:51.248287Z\"\n }" headers: cache-control: - no-cache @@ -179,7 +232,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:57:01 GMT + - Wed, 14 Jun 2023 19:28:22 GMT expires: - '-1' pragma: @@ -212,14 +265,14 @@ interactions: - --resource-group --name --vm-set-type -c --outbound-type --generate-ssh-keys --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout --location User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/799057d8-3b9b-4d38-8bff-e424217a9ad0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/da2fbcb2-d883-4ece-8a37-6a381a3e8cdf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d8579079-9b3b-384d-8bff-e424217a9ad0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:30.897333Z\"\n }" + string: "{\n \"name\": \"b2bc2fda-83d8-ce4e-8a37-6a381a3e8cdf\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:27:51.248287Z\"\n }" headers: cache-control: - no-cache @@ -228,7 +281,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:57:31 GMT + - Wed, 14 Jun 2023 19:28:52 GMT expires: - '-1' pragma: @@ -261,14 +314,14 @@ interactions: - --resource-group --name --vm-set-type -c --outbound-type --generate-ssh-keys --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout --location User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/799057d8-3b9b-4d38-8bff-e424217a9ad0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/da2fbcb2-d883-4ece-8a37-6a381a3e8cdf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d8579079-9b3b-384d-8bff-e424217a9ad0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:30.897333Z\"\n }" + string: "{\n \"name\": \"b2bc2fda-83d8-ce4e-8a37-6a381a3e8cdf\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:27:51.248287Z\"\n }" headers: cache-control: - no-cache @@ -277,7 +330,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:58:01 GMT + - Wed, 14 Jun 2023 19:29:22 GMT expires: - '-1' pragma: @@ -310,14 +363,14 @@ interactions: - --resource-group --name --vm-set-type -c --outbound-type --generate-ssh-keys --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout --location User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/799057d8-3b9b-4d38-8bff-e424217a9ad0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/da2fbcb2-d883-4ece-8a37-6a381a3e8cdf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d8579079-9b3b-384d-8bff-e424217a9ad0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:30.897333Z\"\n }" + string: "{\n \"name\": \"b2bc2fda-83d8-ce4e-8a37-6a381a3e8cdf\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:27:51.248287Z\"\n }" headers: cache-control: - no-cache @@ -326,7 +379,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:58:30 GMT + - Wed, 14 Jun 2023 19:29:52 GMT expires: - '-1' pragma: @@ -359,14 +412,14 @@ interactions: - --resource-group --name --vm-set-type -c --outbound-type --generate-ssh-keys --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout --location User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/799057d8-3b9b-4d38-8bff-e424217a9ad0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/da2fbcb2-d883-4ece-8a37-6a381a3e8cdf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d8579079-9b3b-384d-8bff-e424217a9ad0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:30.897333Z\"\n }" + string: "{\n \"name\": \"b2bc2fda-83d8-ce4e-8a37-6a381a3e8cdf\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:27:51.248287Z\"\n }" headers: cache-control: - no-cache @@ -375,7 +428,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:59:00 GMT + - Wed, 14 Jun 2023 19:30:22 GMT expires: - '-1' pragma: @@ -408,14 +461,14 @@ interactions: - --resource-group --name --vm-set-type -c --outbound-type --generate-ssh-keys --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout --location User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/799057d8-3b9b-4d38-8bff-e424217a9ad0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/da2fbcb2-d883-4ece-8a37-6a381a3e8cdf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d8579079-9b3b-384d-8bff-e424217a9ad0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:30.897333Z\"\n }" + string: "{\n \"name\": \"b2bc2fda-83d8-ce4e-8a37-6a381a3e8cdf\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:27:51.248287Z\"\n }" headers: cache-control: - no-cache @@ -424,7 +477,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:59:30 GMT + - Wed, 14 Jun 2023 19:30:53 GMT expires: - '-1' pragma: @@ -457,14 +510,14 @@ interactions: - --resource-group --name --vm-set-type -c --outbound-type --generate-ssh-keys --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout --location User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/799057d8-3b9b-4d38-8bff-e424217a9ad0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/da2fbcb2-d883-4ece-8a37-6a381a3e8cdf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d8579079-9b3b-384d-8bff-e424217a9ad0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:30.897333Z\"\n }" + string: "{\n \"name\": \"b2bc2fda-83d8-ce4e-8a37-6a381a3e8cdf\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:27:51.248287Z\"\n }" headers: cache-control: - no-cache @@ -473,7 +526,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:01 GMT + - Wed, 14 Jun 2023 19:31:23 GMT expires: - '-1' pragma: @@ -506,15 +559,15 @@ interactions: - --resource-group --name --vm-set-type -c --outbound-type --generate-ssh-keys --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout --location User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/799057d8-3b9b-4d38-8bff-e424217a9ad0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/da2fbcb2-d883-4ece-8a37-6a381a3e8cdf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d8579079-9b3b-384d-8bff-e424217a9ad0\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T09:56:30.897333Z\",\n \"endTime\": - \"2023-03-15T10:00:16.9601909Z\"\n }" + string: "{\n \"name\": \"b2bc2fda-83d8-ce4e-8a37-6a381a3e8cdf\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T19:27:51.248287Z\",\n \"\ + endTime\": \"2023-06-14T19:31:34.3776474Z\"\n }" headers: cache-control: - no-cache @@ -523,7 +576,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:31 GMT + - Wed, 14 Jun 2023 19:31:53 GMT expires: - '-1' pragma: @@ -556,64 +609,67 @@ interactions: - --resource-group --name --vm-set-type -c --outbound-type --generate-ssh-keys --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout --location User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestocmbfzro5-79a739\",\n \"fqdn\": \"cliakstest-clitestocmbfzro5-79a739-1rvh4fbf.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestocmbfzro5-79a739-1rvh4fbf.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsUNxyxr64cgmW2DeA1l9gyK/y7ju7yByewyVXKzMCyus691v155Wlojgjf55QrjZEeh3CyY0sOMiUZeTTFNs9AeJuFeaOBn1uWTSbFB/cyoaVwyGCxt3BGxc4g8viIllhVgAo4ZCo9sVLm3t+89irXsvWmQnKUl3eKY5tmp47q8XjWowWtANK/26rpawOXwJlVxoL9dZaKmp6WBF8uL2LwULpZr+vOurWd1qSyJprcxFMjnK+3wFEfQuaSuEHfXIPuVBv34wHFMALj4hz5xZ0fiZAUrFNhUo4pfNFtcdV+rfV7mCYcPReLm9pUTv+Lqkk0sdRc4XBI5iUVxrtQtuL\"\n - \ }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {},\n \"natGatewayProfile\": {\n \"managedOutboundIPProfile\": {\n - \ \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5f56e6ff-d946-473f-8ca8-b87697925597\"\n - \ }\n ],\n \"idleTimeoutInMinutes\": 4\n },\n \"podCidr\": - \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"managedNATGateway\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n - \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestpf56qxr6a-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestpf56qxr6a-8ecadf-ajcgf61t.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestpf56qxr6a-8ecadf-ajcgf61t.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDpX1rdEYwy8z3kRUtRfwnjcaa5sVBDlUyteEiAVG60B6vO74sUT/s0cmvOGRY56u17SQxCQdf7Y8rapBYnkCybdcP8Vh6SoQszHc2N5LbcfHLoeA9wrFvW74ZZHmld34yo1OeU3xKZVlGB+xP54En93j1zYZa7WFQz20r/R4JR2koF6h1W4jxneKXzRTs/KoZyBAHhM1YuqQiEohJHxccmFlAm1pvzwaEtBMeGQdu3wjSL9CGOGsBTcnSo06LkZ1EXdd9zgSO5Vma/qBA4ZcP7rG6ght3ajBs5b7TqabuISOeWiu9y8GxY+lxiolSmE/MyKAaoJJ8nxHrbjom+gLtsGhW79FqoqySDkN+qK1h/L5YEIjgfx0L4bJkeKGXWNXmGGJE1tEkV0ob9EBpJAMEza46N+LImo/q465+vUG2nOS/cgFkMG4yclVe6f7kyOWWbijFMTcInThhtMoJUBfikOTguGlAIIjMphhaWyAXIjmbpiyDppctW0OrF4ljGx9E=\ + \ henrychen@microsoft.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {},\n \"natGatewayProfile\"\ + : {\n \"managedOutboundIPProfile\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3dbba39f-2eb3-4364-847f-8804726edcda\"\ + \n }\n ],\n \"idleTimeoutInMinutes\": 4\n },\n \"podCidr\"\ + : \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"managedNATGateway\",\n \"podCidrs\"\ + : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ + : 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3959' + - '4156' content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:32 GMT + - Wed, 14 Jun 2023 19:31:53 GMT expires: - '-1' pragma: @@ -645,64 +701,67 @@ interactions: ParameterSetName: - --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestocmbfzro5-79a739\",\n \"fqdn\": \"cliakstest-clitestocmbfzro5-79a739-1rvh4fbf.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestocmbfzro5-79a739-1rvh4fbf.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsUNxyxr64cgmW2DeA1l9gyK/y7ju7yByewyVXKzMCyus691v155Wlojgjf55QrjZEeh3CyY0sOMiUZeTTFNs9AeJuFeaOBn1uWTSbFB/cyoaVwyGCxt3BGxc4g8viIllhVgAo4ZCo9sVLm3t+89irXsvWmQnKUl3eKY5tmp47q8XjWowWtANK/26rpawOXwJlVxoL9dZaKmp6WBF8uL2LwULpZr+vOurWd1qSyJprcxFMjnK+3wFEfQuaSuEHfXIPuVBv34wHFMALj4hz5xZ0fiZAUrFNhUo4pfNFtcdV+rfV7mCYcPReLm9pUTv+Lqkk0sdRc4XBI5iUVxrtQtuL\"\n - \ }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {},\n \"natGatewayProfile\": {\n \"managedOutboundIPProfile\": {\n - \ \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5f56e6ff-d946-473f-8ca8-b87697925597\"\n - \ }\n ],\n \"idleTimeoutInMinutes\": 4\n },\n \"podCidr\": - \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"managedNATGateway\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n - \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestpf56qxr6a-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestpf56qxr6a-8ecadf-ajcgf61t.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestpf56qxr6a-8ecadf-ajcgf61t.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDpX1rdEYwy8z3kRUtRfwnjcaa5sVBDlUyteEiAVG60B6vO74sUT/s0cmvOGRY56u17SQxCQdf7Y8rapBYnkCybdcP8Vh6SoQszHc2N5LbcfHLoeA9wrFvW74ZZHmld34yo1OeU3xKZVlGB+xP54En93j1zYZa7WFQz20r/R4JR2koF6h1W4jxneKXzRTs/KoZyBAHhM1YuqQiEohJHxccmFlAm1pvzwaEtBMeGQdu3wjSL9CGOGsBTcnSo06LkZ1EXdd9zgSO5Vma/qBA4ZcP7rG6ght3ajBs5b7TqabuISOeWiu9y8GxY+lxiolSmE/MyKAaoJJ8nxHrbjom+gLtsGhW79FqoqySDkN+qK1h/L5YEIjgfx0L4bJkeKGXWNXmGGJE1tEkV0ob9EBpJAMEza46N+LImo/q465+vUG2nOS/cgFkMG4yclVe6f7kyOWWbijFMTcInThhtMoJUBfikOTguGlAIIjMphhaWyAXIjmbpiyDppctW0OrF4ljGx9E=\ + \ henrychen@microsoft.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {},\n \"natGatewayProfile\"\ + : {\n \"managedOutboundIPProfile\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3dbba39f-2eb3-4364-847f-8804726edcda\"\ + \n }\n ],\n \"idleTimeoutInMinutes\": 4\n },\n \"podCidr\"\ + : \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"managedNATGateway\",\n \"podCidrs\"\ + : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ + : 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3959' + - '4156' content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:33 GMT + - Wed, 14 Jun 2023 19:31:56 GMT expires: - '-1' pragma: @@ -721,23 +780,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestocmbfzro5-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestpf56qxr6a-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsUNxyxr64cgmW2DeA1l9gyK/y7ju7yByewyVXKzMCyus691v155Wlojgjf55QrjZEeh3CyY0sOMiUZeTTFNs9AeJuFeaOBn1uWTSbFB/cyoaVwyGCxt3BGxc4g8viIllhVgAo4ZCo9sVLm3t+89irXsvWmQnKUl3eKY5tmp47q8XjWowWtANK/26rpawOXwJlVxoL9dZaKmp6WBF8uL2LwULpZr+vOurWd1qSyJprcxFMjnK+3wFEfQuaSuEHfXIPuVBv34wHFMALj4hz5xZ0fiZAUrFNhUo4pfNFtcdV+rfV7mCYcPReLm9pUTv+Lqkk0sdRc4XBI5iUVxrtQtuL"}]}}, - "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDpX1rdEYwy8z3kRUtRfwnjcaa5sVBDlUyteEiAVG60B6vO74sUT/s0cmvOGRY56u17SQxCQdf7Y8rapBYnkCybdcP8Vh6SoQszHc2N5LbcfHLoeA9wrFvW74ZZHmld34yo1OeU3xKZVlGB+xP54En93j1zYZa7WFQz20r/R4JR2koF6h1W4jxneKXzRTs/KoZyBAHhM1YuqQiEohJHxccmFlAm1pvzwaEtBMeGQdu3wjSL9CGOGsBTcnSo06LkZ1EXdd9zgSO5Vma/qBA4ZcP7rG6ght3ajBs5b7TqabuISOeWiu9y8GxY+lxiolSmE/MyKAaoJJ8nxHrbjom+gLtsGhW79FqoqySDkN+qK1h/L5YEIjgfx0L4bJkeKGXWNXmGGJE1tEkV0ob9EBpJAMEza46N+LImo/q465+vUG2nOS/cgFkMG4yclVe6f7kyOWWbijFMTcInThhtMoJUBfikOTguGlAIIjMphhaWyAXIjmbpiyDppctW0OrF4ljGx9E= + henrychen@microsoft.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "managedNATGateway", "loadBalancerSku": - "Standard", "loadBalancerProfile": {}, "natGatewayProfile": {"managedOutboundIPProfile": - {"count": 2}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5f56e6ff-d946-473f-8ca8-b87697925597"}], + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "managedNATGateway", "loadBalancerSku": "Standard", + "loadBalancerProfile": {}, "natGatewayProfile": {"managedOutboundIPProfile": + {"count": 2}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3dbba39f-2eb3-4364-847f-8804726edcda"}], "idleTimeoutInMinutes": 30}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", @@ -754,72 +813,75 @@ interactions: Connection: - keep-alive Content-Length: - - '2514' + - '2711' Content-Type: - application/json ParameterSetName: - --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestocmbfzro5-79a739\",\n \"fqdn\": \"cliakstest-clitestocmbfzro5-79a739-1rvh4fbf.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestocmbfzro5-79a739-1rvh4fbf.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsUNxyxr64cgmW2DeA1l9gyK/y7ju7yByewyVXKzMCyus691v155Wlojgjf55QrjZEeh3CyY0sOMiUZeTTFNs9AeJuFeaOBn1uWTSbFB/cyoaVwyGCxt3BGxc4g8viIllhVgAo4ZCo9sVLm3t+89irXsvWmQnKUl3eKY5tmp47q8XjWowWtANK/26rpawOXwJlVxoL9dZaKmp6WBF8uL2LwULpZr+vOurWd1qSyJprcxFMjnK+3wFEfQuaSuEHfXIPuVBv34wHFMALj4hz5xZ0fiZAUrFNhUo4pfNFtcdV+rfV7mCYcPReLm9pUTv+Lqkk0sdRc4XBI5iUVxrtQtuL\"\n - \ }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {},\n \"natGatewayProfile\": {\n \"managedOutboundIPProfile\": {\n - \ \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5f56e6ff-d946-473f-8ca8-b87697925597\"\n - \ }\n ],\n \"idleTimeoutInMinutes\": 30\n },\n \"podCidr\": - \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"managedNATGateway\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n - \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestpf56qxr6a-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestpf56qxr6a-8ecadf-ajcgf61t.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestpf56qxr6a-8ecadf-ajcgf61t.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDpX1rdEYwy8z3kRUtRfwnjcaa5sVBDlUyteEiAVG60B6vO74sUT/s0cmvOGRY56u17SQxCQdf7Y8rapBYnkCybdcP8Vh6SoQszHc2N5LbcfHLoeA9wrFvW74ZZHmld34yo1OeU3xKZVlGB+xP54En93j1zYZa7WFQz20r/R4JR2koF6h1W4jxneKXzRTs/KoZyBAHhM1YuqQiEohJHxccmFlAm1pvzwaEtBMeGQdu3wjSL9CGOGsBTcnSo06LkZ1EXdd9zgSO5Vma/qBA4ZcP7rG6ght3ajBs5b7TqabuISOeWiu9y8GxY+lxiolSmE/MyKAaoJJ8nxHrbjom+gLtsGhW79FqoqySDkN+qK1h/L5YEIjgfx0L4bJkeKGXWNXmGGJE1tEkV0ob9EBpJAMEza46N+LImo/q465+vUG2nOS/cgFkMG4yclVe6f7kyOWWbijFMTcInThhtMoJUBfikOTguGlAIIjMphhaWyAXIjmbpiyDppctW0OrF4ljGx9E=\ + \ henrychen@microsoft.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {},\n \"natGatewayProfile\"\ + : {\n \"managedOutboundIPProfile\": {\n \"count\": 2\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3dbba39f-2eb3-4364-847f-8804726edcda\"\ + \n }\n ],\n \"idleTimeoutInMinutes\": 30\n },\n \"podCidr\"\ + : \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"managedNATGateway\",\n \"podCidrs\"\ + : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ + : 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a1e6906b-025b-4f74-bc59-3dd3e7ab780a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c5ac5147-79ba-47ee-83fd-4230734575c7?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3958' + - '4155' content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:36 GMT + - Wed, 14 Jun 2023 19:32:02 GMT expires: - '-1' pragma: @@ -835,7 +897,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c5ac5147-79ba-47ee-83fd-4230734575c7?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4751acc5-ba79-ee47-83fd-4230734575c7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:32:02.0925829Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 19:32:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -853,14 +963,14 @@ interactions: ParameterSetName: - --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a1e6906b-025b-4f74-bc59-3dd3e7ab780a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c5ac5147-79ba-47ee-83fd-4230734575c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6b90e6a1-5b02-744f-bc59-3dd3e7ab780a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:00:36.4917977Z\"\n }" + string: "{\n \"name\": \"4751acc5-ba79-ee47-83fd-4230734575c7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:32:02.0925829Z\"\n }" headers: cache-control: - no-cache @@ -869,7 +979,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:01:06 GMT + - Wed, 14 Jun 2023 19:32:32 GMT expires: - '-1' pragma: @@ -901,14 +1011,14 @@ interactions: ParameterSetName: - --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a1e6906b-025b-4f74-bc59-3dd3e7ab780a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c5ac5147-79ba-47ee-83fd-4230734575c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6b90e6a1-5b02-744f-bc59-3dd3e7ab780a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:00:36.4917977Z\"\n }" + string: "{\n \"name\": \"4751acc5-ba79-ee47-83fd-4230734575c7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:32:02.0925829Z\"\n }" headers: cache-control: - no-cache @@ -917,7 +1027,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:01:36 GMT + - Wed, 14 Jun 2023 19:33:03 GMT expires: - '-1' pragma: @@ -949,14 +1059,14 @@ interactions: ParameterSetName: - --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a1e6906b-025b-4f74-bc59-3dd3e7ab780a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c5ac5147-79ba-47ee-83fd-4230734575c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6b90e6a1-5b02-744f-bc59-3dd3e7ab780a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:00:36.4917977Z\"\n }" + string: "{\n \"name\": \"4751acc5-ba79-ee47-83fd-4230734575c7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:32:02.0925829Z\"\n }" headers: cache-control: - no-cache @@ -965,7 +1075,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:02:06 GMT + - Wed, 14 Jun 2023 19:33:33 GMT expires: - '-1' pragma: @@ -997,15 +1107,15 @@ interactions: ParameterSetName: - --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a1e6906b-025b-4f74-bc59-3dd3e7ab780a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c5ac5147-79ba-47ee-83fd-4230734575c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6b90e6a1-5b02-744f-bc59-3dd3e7ab780a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:00:36.4917977Z\",\n \"endTime\": - \"2023-03-15T10:02:08.6467805Z\"\n }" + string: "{\n \"name\": \"4751acc5-ba79-ee47-83fd-4230734575c7\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T19:32:02.0925829Z\",\n \"\ + endTime\": \"2023-06-14T19:33:58.9588226Z\"\n }" headers: cache-control: - no-cache @@ -1014,7 +1124,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:02:37 GMT + - Wed, 14 Jun 2023 19:34:05 GMT expires: - '-1' pragma: @@ -1046,65 +1156,68 @@ interactions: ParameterSetName: - --resource-group --name --nat-gateway-managed-outbound-ip-count --nat-gateway-idle-timeout User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestocmbfzro5-79a739\",\n \"fqdn\": \"cliakstest-clitestocmbfzro5-79a739-1rvh4fbf.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestocmbfzro5-79a739-1rvh4fbf.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsUNxyxr64cgmW2DeA1l9gyK/y7ju7yByewyVXKzMCyus691v155Wlojgjf55QrjZEeh3CyY0sOMiUZeTTFNs9AeJuFeaOBn1uWTSbFB/cyoaVwyGCxt3BGxc4g8viIllhVgAo4ZCo9sVLm3t+89irXsvWmQnKUl3eKY5tmp47q8XjWowWtANK/26rpawOXwJlVxoL9dZaKmp6WBF8uL2LwULpZr+vOurWd1qSyJprcxFMjnK+3wFEfQuaSuEHfXIPuVBv34wHFMALj4hz5xZ0fiZAUrFNhUo4pfNFtcdV+rfV7mCYcPReLm9pUTv+Lqkk0sdRc4XBI5iUVxrtQtuL\"\n - \ }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {},\n \"natGatewayProfile\": {\n \"managedOutboundIPProfile\": {\n - \ \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5f56e6ff-d946-473f-8ca8-b87697925597\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9f9f7709-b86f-4a2e-9aa4-8067d3057de4\"\n - \ }\n ],\n \"idleTimeoutInMinutes\": 30\n },\n \"podCidr\": - \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"managedNATGateway\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n - \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestpf56qxr6a-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestpf56qxr6a-8ecadf-ajcgf61t.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestpf56qxr6a-8ecadf-ajcgf61t.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDpX1rdEYwy8z3kRUtRfwnjcaa5sVBDlUyteEiAVG60B6vO74sUT/s0cmvOGRY56u17SQxCQdf7Y8rapBYnkCybdcP8Vh6SoQszHc2N5LbcfHLoeA9wrFvW74ZZHmld34yo1OeU3xKZVlGB+xP54En93j1zYZa7WFQz20r/R4JR2koF6h1W4jxneKXzRTs/KoZyBAHhM1YuqQiEohJHxccmFlAm1pvzwaEtBMeGQdu3wjSL9CGOGsBTcnSo06LkZ1EXdd9zgSO5Vma/qBA4ZcP7rG6ght3ajBs5b7TqabuISOeWiu9y8GxY+lxiolSmE/MyKAaoJJ8nxHrbjom+gLtsGhW79FqoqySDkN+qK1h/L5YEIjgfx0L4bJkeKGXWNXmGGJE1tEkV0ob9EBpJAMEza46N+LImo/q465+vUG2nOS/cgFkMG4yclVe6f7kyOWWbijFMTcInThhtMoJUBfikOTguGlAIIjMphhaWyAXIjmbpiyDppctW0OrF4ljGx9E=\ + \ henrychen@microsoft.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {},\n \"natGatewayProfile\"\ + : {\n \"managedOutboundIPProfile\": {\n \"count\": 2\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3dbba39f-2eb3-4364-847f-8804726edcda\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5d230049-d956-404b-a136-c4df1c44a9ab\"\ + \n }\n ],\n \"idleTimeoutInMinutes\": 30\n },\n \"podCidr\"\ + : \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"managedNATGateway\",\n \"podCidrs\"\ + : [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ + : 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4184' + - '4381' content-type: - application/json date: - - Wed, 15 Mar 2023 10:02:37 GMT + - Wed, 14 Jun 2023 19:34:06 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_autoscaler_then_update.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_autoscaler_then_update.yaml index a0741bcbdc9..882ecf0cc5f 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_autoscaler_then_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_autoscaler_then_update.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --tags --ssh-key-value --enable-cluster-autoscaler -c --min-count --max-count --cluster-autoscaler-profile User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:02:38 GMT + - Wed, 14 Jun 2023 19:34:12 GMT expires: - '-1' pragma: @@ -60,21 +60,21 @@ interactions: - --resource-group --name --tags --ssh-key-value --enable-cluster-autoscaler -c --min-count --max-count --cluster-autoscaler-profile User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:02:38Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_autoscaler_then_update","date":"2023-06-14T19:34:09Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '368' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:02:38 GMT + - Wed, 14 Jun 2023 19:34:11 GMT expires: - '-1' pragma: @@ -91,20 +91,19 @@ interactions: - request: body: '{"tags": {"tag1": "v1", "tag2": "v2"}, "location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliakstest-clitestbsuzb7ojt-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestqlc4azdb5-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "maxCount": 5, "minCount": 1, "enableAutoScaling": true, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "autoScalerProfile": - {"expander": "least-waste", "scan-interval": "30s"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "autoScalerProfile": {"expander": "least-waste", "scan-interval": + "30s"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -115,78 +114,80 @@ interactions: Connection: - keep-alive Content-Length: - - '1600' + - '1892' Content-Type: - application/json ParameterSetName: - --resource-group --name --tags --ssh-key-value --enable-cluster-autoscaler -c --min-count --max-count --cluster-autoscaler-profile User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\": - {\n \"tag1\": \"v1\",\n \"tag2\": \"v2\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestbsuzb7ojt-79a739\",\n - \ \"fqdn\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"maxCount\": 5,\n \"minCount\": - 1,\n \"enableAutoScaling\": true,\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": - \"false\",\n \"expander\": \"least-waste\",\n \"max-empty-bulk-delete\": - \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": - \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": - \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": - \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": - \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": - \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": - \"30s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": - \"true\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\"\ + : {\n \"tag1\": \"v1\",\n \"tag2\": \"v2\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestqlc4azdb5-8ecadf\"\ + ,\n \"fqdn\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"maxCount\": 5,\n \"minCount\": 1,\n \"enableAutoScaling\":\ + \ true,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"autoScalerProfile\"\ + : {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"\ + least-waste\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\"\ + : \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\"\ + : \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\"\ + : \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\"\ + : \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\"\ + : \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\"\ + : \"0.5\",\n \"scan-interval\": \"30s\",\n \"skip-nodes-with-local-storage\"\ + : \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"\ + disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\"\ + : {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/296ab806-2e0b-4b2b-b0e7-08063e90e00d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17f0a0ae-6aa1-4746-8ea2-3cdd16f6e4da?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4062' + - '4390' content-type: - application/json date: - - Wed, 15 Mar 2023 10:02:41 GMT + - Wed, 14 Jun 2023 19:34:18 GMT expires: - '-1' pragma: @@ -217,14 +218,14 @@ interactions: - --resource-group --name --tags --ssh-key-value --enable-cluster-autoscaler -c --min-count --max-count --cluster-autoscaler-profile User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/296ab806-2e0b-4b2b-b0e7-08063e90e00d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17f0a0ae-6aa1-4746-8ea2-3cdd16f6e4da?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"06b86a29-0b2e-2b4b-b0e7-08063e90e00d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:02:42.3822701Z\"\n }" + string: "{\n \"name\": \"aea0f017-a16a-4647-8ea2-3cdd16f6e4da\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:34:18.1554253Z\"\n }" headers: cache-control: - no-cache @@ -233,7 +234,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:03:12 GMT + - Wed, 14 Jun 2023 19:34:19 GMT expires: - '-1' pragma: @@ -266,14 +267,14 @@ interactions: - --resource-group --name --tags --ssh-key-value --enable-cluster-autoscaler -c --min-count --max-count --cluster-autoscaler-profile User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/296ab806-2e0b-4b2b-b0e7-08063e90e00d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17f0a0ae-6aa1-4746-8ea2-3cdd16f6e4da?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"06b86a29-0b2e-2b4b-b0e7-08063e90e00d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:02:42.3822701Z\"\n }" + string: "{\n \"name\": \"aea0f017-a16a-4647-8ea2-3cdd16f6e4da\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:34:18.1554253Z\"\n }" headers: cache-control: - no-cache @@ -282,7 +283,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:03:42 GMT + - Wed, 14 Jun 2023 19:34:49 GMT expires: - '-1' pragma: @@ -315,14 +316,14 @@ interactions: - --resource-group --name --tags --ssh-key-value --enable-cluster-autoscaler -c --min-count --max-count --cluster-autoscaler-profile User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/296ab806-2e0b-4b2b-b0e7-08063e90e00d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17f0a0ae-6aa1-4746-8ea2-3cdd16f6e4da?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"06b86a29-0b2e-2b4b-b0e7-08063e90e00d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:02:42.3822701Z\"\n }" + string: "{\n \"name\": \"aea0f017-a16a-4647-8ea2-3cdd16f6e4da\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:34:18.1554253Z\"\n }" headers: cache-control: - no-cache @@ -331,7 +332,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:04:12 GMT + - Wed, 14 Jun 2023 19:35:19 GMT expires: - '-1' pragma: @@ -364,14 +365,14 @@ interactions: - --resource-group --name --tags --ssh-key-value --enable-cluster-autoscaler -c --min-count --max-count --cluster-autoscaler-profile User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/296ab806-2e0b-4b2b-b0e7-08063e90e00d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17f0a0ae-6aa1-4746-8ea2-3cdd16f6e4da?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"06b86a29-0b2e-2b4b-b0e7-08063e90e00d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:02:42.3822701Z\"\n }" + string: "{\n \"name\": \"aea0f017-a16a-4647-8ea2-3cdd16f6e4da\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:34:18.1554253Z\"\n }" headers: cache-control: - no-cache @@ -380,7 +381,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:04:42 GMT + - Wed, 14 Jun 2023 19:35:49 GMT expires: - '-1' pragma: @@ -413,14 +414,14 @@ interactions: - --resource-group --name --tags --ssh-key-value --enable-cluster-autoscaler -c --min-count --max-count --cluster-autoscaler-profile User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/296ab806-2e0b-4b2b-b0e7-08063e90e00d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17f0a0ae-6aa1-4746-8ea2-3cdd16f6e4da?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"06b86a29-0b2e-2b4b-b0e7-08063e90e00d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:02:42.3822701Z\"\n }" + string: "{\n \"name\": \"aea0f017-a16a-4647-8ea2-3cdd16f6e4da\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:34:18.1554253Z\"\n }" headers: cache-control: - no-cache @@ -429,7 +430,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:05:12 GMT + - Wed, 14 Jun 2023 19:36:19 GMT expires: - '-1' pragma: @@ -462,14 +463,14 @@ interactions: - --resource-group --name --tags --ssh-key-value --enable-cluster-autoscaler -c --min-count --max-count --cluster-autoscaler-profile User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/296ab806-2e0b-4b2b-b0e7-08063e90e00d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17f0a0ae-6aa1-4746-8ea2-3cdd16f6e4da?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"06b86a29-0b2e-2b4b-b0e7-08063e90e00d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:02:42.3822701Z\"\n }" + string: "{\n \"name\": \"aea0f017-a16a-4647-8ea2-3cdd16f6e4da\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:34:18.1554253Z\"\n }" headers: cache-control: - no-cache @@ -478,7 +479,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:05:42 GMT + - Wed, 14 Jun 2023 19:36:50 GMT expires: - '-1' pragma: @@ -511,23 +512,24 @@ interactions: - --resource-group --name --tags --ssh-key-value --enable-cluster-autoscaler -c --min-count --max-count --cluster-autoscaler-profile User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/296ab806-2e0b-4b2b-b0e7-08063e90e00d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/17f0a0ae-6aa1-4746-8ea2-3cdd16f6e4da?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"06b86a29-0b2e-2b4b-b0e7-08063e90e00d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:02:42.3822701Z\"\n }" + string: "{\n \"name\": \"aea0f017-a16a-4647-8ea2-3cdd16f6e4da\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T19:34:18.1554253Z\",\n \"\ + endTime\": \"2023-06-14T19:37:12.0250113Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 10:06:13 GMT + - Wed, 14 Jun 2023 19:37:19 GMT expires: - '-1' pragma: @@ -560,24 +562,76 @@ interactions: - --resource-group --name --tags --ssh-key-value --enable-cluster-autoscaler -c --min-count --max-count --cluster-autoscaler-profile User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/296ab806-2e0b-4b2b-b0e7-08063e90e00d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"06b86a29-0b2e-2b4b-b0e7-08063e90e00d\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:02:42.3822701Z\",\n \"endTime\": - \"2023-03-15T10:06:34.3955481Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\"\ + : {\n \"tag1\": \"v1\",\n \"tag2\": \"v2\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestqlc4azdb5-8ecadf\"\ + ,\n \"fqdn\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"maxCount\": 5,\n \"minCount\": 1,\n \"enableAutoScaling\":\ + \ true,\n \"provisioningState\": \"Succeeded\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/40911aa5-18b2-44f2-a8f7-202812ba7924\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"autoScalerProfile\"\ + : {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"\ + least-waste\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\"\ + : \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\"\ + : \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\"\ + : \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\"\ + : \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\"\ + : \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\"\ + : \"0.5\",\n \"scan-interval\": \"30s\",\n \"skip-nodes-with-local-storage\"\ + : \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"\ + disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\"\ + : {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '170' + - '5043' content-type: - application/json date: - - Wed, 15 Mar 2023 10:06:42 GMT + - Wed, 14 Jun 2023 19:37:20 GMT expires: - '-1' pragma: @@ -599,85 +653,86 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive ParameterSetName: - - --resource-group --name --tags --ssh-key-value --enable-cluster-autoscaler - -c --min-count --max-count --cluster-autoscaler-profile + - --resource-group --name --tags --disable-cluster-autoscaler User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\": - {\n \"tag1\": \"v1\",\n \"tag2\": \"v2\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestbsuzb7ojt-79a739\",\n - \ \"fqdn\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"maxCount\": 5,\n \"minCount\": - 1,\n \"enableAutoScaling\": true,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a5417a95-4cc2-4e02-9120-13f2e37ac169\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": - \"false\",\n \"expander\": \"least-waste\",\n \"max-empty-bulk-delete\": - \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": - \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": - \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": - \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": - \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": - \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": - \"30s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": - \"true\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\"\ + : {\n \"tag1\": \"v1\",\n \"tag2\": \"v2\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestqlc4azdb5-8ecadf\"\ + ,\n \"fqdn\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"maxCount\": 5,\n \"minCount\": 1,\n \"enableAutoScaling\":\ + \ true,\n \"provisioningState\": \"Succeeded\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/40911aa5-18b2-44f2-a8f7-202812ba7924\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"autoScalerProfile\"\ + : {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"\ + least-waste\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\"\ + : \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\"\ + : \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\"\ + : \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\"\ + : \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\"\ + : \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\"\ + : \"0.5\",\n \"scan-interval\": \"30s\",\n \"skip-nodes-with-local-storage\"\ + : \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"\ + disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\"\ + : {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4715' + - '5043' content-type: - application/json date: - - Wed, 15 Mar 2023 10:06:43 GMT + - Wed, 14 Jun 2023 19:37:22 GMT expires: - '-1' pragma: @@ -696,7 +751,37 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"tags": {"tag3": "v3"}, "location": "westus2", "sku": {"name": "Base", + "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": + "1.25.6", "dnsPrefix": "cliakstest-clitestqlc4azdb5-8ecadf", "agentPoolProfiles": + [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": + "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": + "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": + "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": + {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/40911aa5-18b2-44f2-a8f7-202812ba7924"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "autoScalerProfile": {"balance-similar-node-groups": "false", "expander": + "least-waste", "max-empty-bulk-delete": "10", "max-graceful-termination-sec": + "600", "max-node-provision-time": "15m", "max-total-unready-percentage": "45", + "new-pod-scale-up-delay": "0s", "ok-total-unready-count": "3", "scan-interval": + "30s", "scale-down-delay-after-add": "10m", "scale-down-delay-after-delete": + "10s", "scale-down-delay-after-failure": "3m", "scale-down-unneeded-time": "10m", + "scale-down-unready-time": "20m", "scale-down-utilization-threshold": "0.5", + "skip-nodes-with-local-storage": "false", "skip-nodes-with-system-pods": "true"}, + "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, + "workloadAutoScalerProfile": {}}}' headers: Accept: - application/json @@ -706,77 +791,84 @@ interactions: - aks update Connection: - keep-alive + Content-Length: + - '3465' + Content-Type: + - application/json ParameterSetName: - --resource-group --name --tags --disable-cluster-autoscaler User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\": - {\n \"tag1\": \"v1\",\n \"tag2\": \"v2\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestbsuzb7ojt-79a739\",\n - \ \"fqdn\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"maxCount\": 5,\n \"minCount\": - 1,\n \"enableAutoScaling\": true,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a5417a95-4cc2-4e02-9120-13f2e37ac169\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": - \"false\",\n \"expander\": \"least-waste\",\n \"max-empty-bulk-delete\": - \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": - \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": - \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": - \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": - \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": - \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": - \"30s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": - \"true\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\"\ + : {\n \"tag3\": \"v3\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestqlc4azdb5-8ecadf\"\ + ,\n \"fqdn\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/40911aa5-18b2-44f2-a8f7-202812ba7924\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"autoScalerProfile\"\ + : {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"\ + least-waste\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\"\ + : \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\"\ + : \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\"\ + : \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\"\ + : \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\"\ + : \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\"\ + : \"0.5\",\n \"scan-interval\": \"30s\",\n \"skip-nodes-with-local-storage\"\ + : \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"\ + disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\"\ + : {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9893d40a-18ec-462c-90bb-0b3cbbcd2578?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4715' + - '4985' content-type: - application/json date: - - Wed, 15 Mar 2023 10:06:43 GMT + - Wed, 14 Jun 2023 19:37:27 GMT expires: - '-1' pragma: @@ -791,127 +883,42 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK - request: - body: '{"tags": {"tag3": "v3"}, "location": "westus2", "sku": {"name": "Basic", - "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.24.9", "dnsPrefix": "cliakstest-clitestbsuzb7ojt-79a739", "agentPoolProfiles": - [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": - "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": - "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": - "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": - {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, - "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a5417a95-4cc2-4e02-9120-13f2e37ac169"}]}, - "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": - ["IPv4"]}, "autoScalerProfile": {"balance-similar-node-groups": "false", "expander": - "least-waste", "max-empty-bulk-delete": "10", "max-graceful-termination-sec": - "600", "max-node-provision-time": "15m", "max-total-unready-percentage": "45", - "new-pod-scale-up-delay": "0s", "ok-total-unready-count": "3", "scan-interval": - "30s", "scale-down-delay-after-add": "10m", "scale-down-delay-after-delete": - "10s", "scale-down-delay-after-failure": "3m", "scale-down-unneeded-time": "10m", - "scale-down-unready-time": "20m", "scale-down-utilization-threshold": "0.5", - "skip-nodes-with-local-storage": "false", "skip-nodes-with-system-pods": "true"}, - "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", - "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, - "workloadAutoScalerProfile": {}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks update Connection: - keep-alive - Content-Length: - - '3137' - Content-Type: - - application/json ParameterSetName: - --resource-group --name --tags --disable-cluster-autoscaler User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9893d40a-18ec-462c-90bb-0b3cbbcd2578?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\": - {\n \"tag3\": \"v3\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestbsuzb7ojt-79a739\",\n - \ \"fqdn\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a5417a95-4cc2-4e02-9120-13f2e37ac169\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": - \"false\",\n \"expander\": \"least-waste\",\n \"max-empty-bulk-delete\": - \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": - \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": - \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": - \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": - \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": - \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": - \"30s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": - \"true\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"0ad49398-ec18-2c46-90bb-0b3cbbcd2578\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:37:27.5151377Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d22c9f71-80f5-432c-959f-f6642b9ec6b5?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4657' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:06:46 GMT + - Wed, 14 Jun 2023 19:37:28 GMT expires: - '-1' pragma: @@ -926,8 +933,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' status: code: 200 message: OK @@ -945,14 +950,14 @@ interactions: ParameterSetName: - --resource-group --name --tags --disable-cluster-autoscaler User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d22c9f71-80f5-432c-959f-f6642b9ec6b5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9893d40a-18ec-462c-90bb-0b3cbbcd2578?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"719f2cd2-f580-2c43-959f-f6642b9ec6b5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:06:46.8372318Z\"\n }" + string: "{\n \"name\": \"0ad49398-ec18-2c46-90bb-0b3cbbcd2578\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:37:27.5151377Z\"\n }" headers: cache-control: - no-cache @@ -961,7 +966,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:07:16 GMT + - Wed, 14 Jun 2023 19:37:58 GMT expires: - '-1' pragma: @@ -993,14 +998,14 @@ interactions: ParameterSetName: - --resource-group --name --tags --disable-cluster-autoscaler User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d22c9f71-80f5-432c-959f-f6642b9ec6b5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9893d40a-18ec-462c-90bb-0b3cbbcd2578?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"719f2cd2-f580-2c43-959f-f6642b9ec6b5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:06:46.8372318Z\"\n }" + string: "{\n \"name\": \"0ad49398-ec18-2c46-90bb-0b3cbbcd2578\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:37:27.5151377Z\"\n }" headers: cache-control: - no-cache @@ -1009,7 +1014,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:07:47 GMT + - Wed, 14 Jun 2023 19:38:28 GMT expires: - '-1' pragma: @@ -1041,14 +1046,14 @@ interactions: ParameterSetName: - --resource-group --name --tags --disable-cluster-autoscaler User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d22c9f71-80f5-432c-959f-f6642b9ec6b5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9893d40a-18ec-462c-90bb-0b3cbbcd2578?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"719f2cd2-f580-2c43-959f-f6642b9ec6b5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:06:46.8372318Z\"\n }" + string: "{\n \"name\": \"0ad49398-ec18-2c46-90bb-0b3cbbcd2578\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:37:27.5151377Z\"\n }" headers: cache-control: - no-cache @@ -1057,7 +1062,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:08:16 GMT + - Wed, 14 Jun 2023 19:38:58 GMT expires: - '-1' pragma: @@ -1089,24 +1094,24 @@ interactions: ParameterSetName: - --resource-group --name --tags --disable-cluster-autoscaler User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d22c9f71-80f5-432c-959f-f6642b9ec6b5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9893d40a-18ec-462c-90bb-0b3cbbcd2578?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"719f2cd2-f580-2c43-959f-f6642b9ec6b5\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:06:46.8372318Z\",\n \"endTime\": - \"2023-03-15T10:08:34.3508848Z\"\n }" + string: "{\n \"name\": \"0ad49398-ec18-2c46-90bb-0b3cbbcd2578\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T19:37:27.5151377Z\",\n \"\ + endTime\": \"2023-06-14T19:39:25.310845Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Wed, 15 Mar 2023 10:08:47 GMT + - Wed, 14 Jun 2023 19:39:29 GMT expires: - '-1' pragma: @@ -1138,74 +1143,75 @@ interactions: ParameterSetName: - --resource-group --name --tags --disable-cluster-autoscaler User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\": - {\n \"tag3\": \"v3\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestbsuzb7ojt-79a739\",\n - \ \"fqdn\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a5417a95-4cc2-4e02-9120-13f2e37ac169\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": - \"false\",\n \"expander\": \"least-waste\",\n \"max-empty-bulk-delete\": - \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": - \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": - \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": - \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": - \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": - \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": - \"30s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": - \"true\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\"\ + : {\n \"tag3\": \"v3\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestqlc4azdb5-8ecadf\"\ + ,\n \"fqdn\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/40911aa5-18b2-44f2-a8f7-202812ba7924\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"autoScalerProfile\"\ + : {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"\ + least-waste\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\"\ + : \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\"\ + : \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\"\ + : \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\"\ + : \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\"\ + : \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\"\ + : \"0.5\",\n \"scan-interval\": \"30s\",\n \"skip-nodes-with-local-storage\"\ + : \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"\ + disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\"\ + : {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4659' + - '4987' content-type: - application/json date: - - Wed, 15 Mar 2023 10:08:47 GMT + - Wed, 14 Jun 2023 19:39:30 GMT expires: - '-1' pragma: @@ -1237,74 +1243,75 @@ interactions: ParameterSetName: - --resource-group --name --tags --enable-cluster-autoscaler --min-count --max-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\": - {\n \"tag3\": \"v3\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestbsuzb7ojt-79a739\",\n - \ \"fqdn\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a5417a95-4cc2-4e02-9120-13f2e37ac169\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": - \"false\",\n \"expander\": \"least-waste\",\n \"max-empty-bulk-delete\": - \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": - \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": - \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": - \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": - \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": - \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": - \"30s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": - \"true\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\"\ + : {\n \"tag3\": \"v3\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestqlc4azdb5-8ecadf\"\ + ,\n \"fqdn\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/40911aa5-18b2-44f2-a8f7-202812ba7924\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"autoScalerProfile\"\ + : {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"\ + least-waste\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\"\ + : \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\"\ + : \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\"\ + : \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\"\ + : \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\"\ + : \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\"\ + : \"0.5\",\n \"scan-interval\": \"30s\",\n \"skip-nodes-with-local-storage\"\ + : \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"\ + disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\"\ + : {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4659' + - '4987' content-type: - application/json date: - - Wed, 15 Mar 2023 10:08:48 GMT + - Wed, 14 Jun 2023 19:39:31 GMT expires: - '-1' pragma: @@ -1323,24 +1330,24 @@ interactions: code: 200 message: OK - request: - body: '{"tags": {}, "location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, + body: '{"tags": {}, "location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.24.9", "dnsPrefix": "cliakstest-clitestbsuzb7ojt-79a739", "agentPoolProfiles": + "1.25.6", "dnsPrefix": "cliakstest-clitestqlc4azdb5-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "maxCount": 5, "minCount": 2, "enableAutoScaling": true, "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": + "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a5417a95-4cc2-4e02-9120-13f2e37ac169"}]}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/40911aa5-18b2-44f2-a8f7-202812ba7924"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "autoScalerProfile": {"balance-similar-node-groups": "false", "expander": "least-waste", "max-empty-bulk-delete": "10", "max-graceful-termination-sec": @@ -1364,81 +1371,84 @@ interactions: Connection: - keep-alive Content-Length: - - '3154' + - '3482' Content-Type: - application/json ParameterSetName: - --resource-group --name --tags --enable-cluster-autoscaler --min-count --max-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestbsuzb7ojt-79a739\",\n \"fqdn\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"maxCount\": 5,\n \"minCount\": - 2,\n \"enableAutoScaling\": true,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a5417a95-4cc2-4e02-9120-13f2e37ac169\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": - \"false\",\n \"expander\": \"least-waste\",\n \"max-empty-bulk-delete\": - \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": - \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": - \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": - \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": - \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": - \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": - \"30s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": - \"true\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestqlc4azdb5-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"maxCount\": 5,\n \"minCount\": 2,\n \"enableAutoScaling\":\ + \ true,\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/40911aa5-18b2-44f2-a8f7-202812ba7924\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"autoScalerProfile\"\ + : {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"\ + least-waste\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\"\ + : \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\"\ + : \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\"\ + : \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\"\ + : \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\"\ + : \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\"\ + : \"0.5\",\n \"scan-interval\": \"30s\",\n \"skip-nodes-with-local-storage\"\ + : \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"\ + disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\"\ + : {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc8ed8b3-6ac4-4922-b195-371d3846d9bb?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7285b2a7-57c4-4ccd-9a39-b22c24083d5a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4663' + - '4991' content-type: - application/json date: - - Wed, 15 Mar 2023 10:08:50 GMT + - Wed, 14 Jun 2023 19:39:37 GMT expires: - '-1' pragma: @@ -1454,7 +1464,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -1472,14 +1482,14 @@ interactions: ParameterSetName: - --resource-group --name --tags --enable-cluster-autoscaler --min-count --max-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc8ed8b3-6ac4-4922-b195-371d3846d9bb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7285b2a7-57c4-4ccd-9a39-b22c24083d5a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b3d88ebc-c46a-2249-b195-371d3846d9bb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:08:50.9940744Z\"\n }" + string: "{\n \"name\": \"a7b28572-c457-cd4c-9a39-b22c24083d5a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:39:36.0622907Z\"\n }" headers: cache-control: - no-cache @@ -1488,7 +1498,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:09:20 GMT + - Wed, 14 Jun 2023 19:39:37 GMT expires: - '-1' pragma: @@ -1520,14 +1530,14 @@ interactions: ParameterSetName: - --resource-group --name --tags --enable-cluster-autoscaler --min-count --max-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc8ed8b3-6ac4-4922-b195-371d3846d9bb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7285b2a7-57c4-4ccd-9a39-b22c24083d5a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b3d88ebc-c46a-2249-b195-371d3846d9bb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:08:50.9940744Z\"\n }" + string: "{\n \"name\": \"a7b28572-c457-cd4c-9a39-b22c24083d5a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:39:36.0622907Z\"\n }" headers: cache-control: - no-cache @@ -1536,7 +1546,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:09:50 GMT + - Wed, 14 Jun 2023 19:40:07 GMT expires: - '-1' pragma: @@ -1568,14 +1578,14 @@ interactions: ParameterSetName: - --resource-group --name --tags --enable-cluster-autoscaler --min-count --max-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc8ed8b3-6ac4-4922-b195-371d3846d9bb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7285b2a7-57c4-4ccd-9a39-b22c24083d5a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b3d88ebc-c46a-2249-b195-371d3846d9bb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:08:50.9940744Z\"\n }" + string: "{\n \"name\": \"a7b28572-c457-cd4c-9a39-b22c24083d5a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:39:36.0622907Z\"\n }" headers: cache-control: - no-cache @@ -1584,7 +1594,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:20 GMT + - Wed, 14 Jun 2023 19:40:37 GMT expires: - '-1' pragma: @@ -1616,15 +1626,63 @@ interactions: ParameterSetName: - --resource-group --name --tags --enable-cluster-autoscaler --min-count --max-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc8ed8b3-6ac4-4922-b195-371d3846d9bb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7285b2a7-57c4-4ccd-9a39-b22c24083d5a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b3d88ebc-c46a-2249-b195-371d3846d9bb\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:08:50.9940744Z\",\n \"endTime\": - \"2023-03-15T10:10:21.7540506Z\"\n }" + string: "{\n \"name\": \"a7b28572-c457-cd4c-9a39-b22c24083d5a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:39:36.0622907Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 19:41:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --tags --enable-cluster-autoscaler --min-count --max-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7285b2a7-57c4-4ccd-9a39-b22c24083d5a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"a7b28572-c457-cd4c-9a39-b22c24083d5a\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T19:39:36.0622907Z\",\n \"\ + endTime\": \"2023-06-14T19:41:37.1766659Z\"\n }" headers: cache-control: - no-cache @@ -1633,7 +1691,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:50 GMT + - Wed, 14 Jun 2023 19:41:37 GMT expires: - '-1' pragma: @@ -1665,73 +1723,76 @@ interactions: ParameterSetName: - --resource-group --name --tags --enable-cluster-autoscaler --min-count --max-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestbsuzb7ojt-79a739\",\n \"fqdn\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"maxCount\": 5,\n \"minCount\": - 2,\n \"enableAutoScaling\": true,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a5417a95-4cc2-4e02-9120-13f2e37ac169\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": - \"false\",\n \"expander\": \"least-waste\",\n \"max-empty-bulk-delete\": - \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": - \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": - \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": - \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": - \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": - \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": - \"30s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": - \"true\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestqlc4azdb5-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"maxCount\": 5,\n \"minCount\": 2,\n \"enableAutoScaling\":\ + \ true,\n \"provisioningState\": \"Succeeded\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/40911aa5-18b2-44f2-a8f7-202812ba7924\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"autoScalerProfile\"\ + : {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"\ + least-waste\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\"\ + : \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\"\ + : \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\"\ + : \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\"\ + : \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\"\ + : \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\"\ + : \"0.5\",\n \"scan-interval\": \"30s\",\n \"skip-nodes-with-local-storage\"\ + : \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"\ + disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\"\ + : {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4665' + - '4993' content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:51 GMT + - Wed, 14 Jun 2023 19:41:38 GMT expires: - '-1' pragma: @@ -1763,73 +1824,76 @@ interactions: ParameterSetName: - --resource-group --name --cluster-autoscaler-profile User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestbsuzb7ojt-79a739\",\n \"fqdn\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"maxCount\": 5,\n \"minCount\": - 2,\n \"enableAutoScaling\": true,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a5417a95-4cc2-4e02-9120-13f2e37ac169\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": - \"false\",\n \"expander\": \"least-waste\",\n \"max-empty-bulk-delete\": - \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": - \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": - \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": - \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": - \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": - \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": - \"30s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": - \"true\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestqlc4azdb5-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"maxCount\": 5,\n \"minCount\": 2,\n \"enableAutoScaling\":\ + \ true,\n \"provisioningState\": \"Succeeded\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/40911aa5-18b2-44f2-a8f7-202812ba7924\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"autoScalerProfile\"\ + : {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"\ + least-waste\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\"\ + : \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\"\ + : \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\"\ + : \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\"\ + : \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\"\ + : \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\"\ + : \"0.5\",\n \"scan-interval\": \"30s\",\n \"skip-nodes-with-local-storage\"\ + : \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"\ + disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\"\ + : {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4665' + - '4993' content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:52 GMT + - Wed, 14 Jun 2023 19:41:40 GMT expires: - '-1' pragma: @@ -1848,23 +1912,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestbsuzb7ojt-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestqlc4azdb5-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "maxCount": 5, "minCount": 2, "enableAutoScaling": true, "type": "VirtualMachineScaleSets", "mode": "System", - "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": {"code": + "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a5417a95-4cc2-4e02-9120-13f2e37ac169"}]}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/40911aa5-18b2-44f2-a8f7-202812ba7924"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "autoScalerProfile": {}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", @@ -1881,72 +1945,75 @@ interactions: Connection: - keep-alive Content-Length: - - '2538' + - '2866' Content-Type: - application/json ParameterSetName: - --resource-group --name --cluster-autoscaler-profile User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestbsuzb7ojt-79a739\",\n \"fqdn\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"maxCount\": 5,\n \"minCount\": - 2,\n \"enableAutoScaling\": true,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a5417a95-4cc2-4e02-9120-13f2e37ac169\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestqlc4azdb5-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"maxCount\": 5,\n \"minCount\": 2,\n \"enableAutoScaling\":\ + \ true,\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/40911aa5-18b2-44f2-a8f7-202812ba7924\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56257c03-df0c-4183-a761-d8b0c5a304ce?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f494d1da-d81e-42a3-a540-f88187b9aa83?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3958' + - '4286' content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:55 GMT + - Wed, 14 Jun 2023 19:41:46 GMT expires: - '-1' pragma: @@ -1962,7 +2029,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -1980,14 +2047,14 @@ interactions: ParameterSetName: - --resource-group --name --cluster-autoscaler-profile User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56257c03-df0c-4183-a761-d8b0c5a304ce?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f494d1da-d81e-42a3-a540-f88187b9aa83?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"037c2556-0cdf-8341-a761-d8b0c5a304ce\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:10:55.4789415Z\"\n }" + string: "{\n \"name\": \"dad194f4-1ed8-a342-a540-f88187b9aa83\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:41:45.5784319Z\"\n }" headers: cache-control: - no-cache @@ -1996,7 +2063,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:11:25 GMT + - Wed, 14 Jun 2023 19:41:47 GMT expires: - '-1' pragma: @@ -2028,14 +2095,14 @@ interactions: ParameterSetName: - --resource-group --name --cluster-autoscaler-profile User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56257c03-df0c-4183-a761-d8b0c5a304ce?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f494d1da-d81e-42a3-a540-f88187b9aa83?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"037c2556-0cdf-8341-a761-d8b0c5a304ce\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:10:55.4789415Z\"\n }" + string: "{\n \"name\": \"dad194f4-1ed8-a342-a540-f88187b9aa83\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:41:45.5784319Z\"\n }" headers: cache-control: - no-cache @@ -2044,7 +2111,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:11:55 GMT + - Wed, 14 Jun 2023 19:42:17 GMT expires: - '-1' pragma: @@ -2076,15 +2143,111 @@ interactions: ParameterSetName: - --resource-group --name --cluster-autoscaler-profile User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56257c03-df0c-4183-a761-d8b0c5a304ce?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f494d1da-d81e-42a3-a540-f88187b9aa83?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"037c2556-0cdf-8341-a761-d8b0c5a304ce\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:10:55.4789415Z\",\n \"endTime\": - \"2023-03-15T10:12:24.6512397Z\"\n }" + string: "{\n \"name\": \"dad194f4-1ed8-a342-a540-f88187b9aa83\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:41:45.5784319Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 19:42:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --cluster-autoscaler-profile + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f494d1da-d81e-42a3-a540-f88187b9aa83?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"dad194f4-1ed8-a342-a540-f88187b9aa83\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:41:45.5784319Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 19:43:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --cluster-autoscaler-profile + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f494d1da-d81e-42a3-a540-f88187b9aa83?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"dad194f4-1ed8-a342-a540-f88187b9aa83\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T19:41:45.5784319Z\",\n \"\ + endTime\": \"2023-06-14T19:43:32.7059144Z\"\n }" headers: cache-control: - no-cache @@ -2093,7 +2256,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:25 GMT + - Wed, 14 Jun 2023 19:43:47 GMT expires: - '-1' pragma: @@ -2125,73 +2288,76 @@ interactions: ParameterSetName: - --resource-group --name --cluster-autoscaler-profile User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestbsuzb7ojt-79a739\",\n \"fqdn\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 2,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"maxCount\": 5,\n \"minCount\": - 2,\n \"enableAutoScaling\": true,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a5417a95-4cc2-4e02-9120-13f2e37ac169\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": - \"false\",\n \"expander\": \"random\",\n \"max-empty-bulk-delete\": - \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": - \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": - \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": - \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": - \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": - \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": - \"10s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": - \"true\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestqlc4azdb5-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"maxCount\": 5,\n \"minCount\": 2,\n \"enableAutoScaling\":\ + \ true,\n \"provisioningState\": \"Succeeded\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/40911aa5-18b2-44f2-a8f7-202812ba7924\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"autoScalerProfile\"\ + : {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"\ + random\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\"\ + : \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\"\ + : \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\"\ + : \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\"\ + : \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\"\ + : \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\"\ + : \"0.5\",\n \"scan-interval\": \"10s\",\n \"skip-nodes-with-local-storage\"\ + : \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"\ + disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\"\ + : {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4660' + - '4988' content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:25 GMT + - Wed, 14 Jun 2023 19:43:48 GMT expires: - '-1' pragma: @@ -2223,73 +2389,76 @@ interactions: ParameterSetName: - --resource-group --name --update-cluster-autoscaler --min-count --max-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestbsuzb7ojt-79a739\",\n \"fqdn\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 2,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"maxCount\": 5,\n \"minCount\": - 2,\n \"enableAutoScaling\": true,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a5417a95-4cc2-4e02-9120-13f2e37ac169\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": - \"false\",\n \"expander\": \"random\",\n \"max-empty-bulk-delete\": - \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": - \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": - \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": - \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": - \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": - \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": - \"10s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": - \"true\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestqlc4azdb5-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"maxCount\": 5,\n \"minCount\": 2,\n \"enableAutoScaling\":\ + \ true,\n \"provisioningState\": \"Succeeded\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/40911aa5-18b2-44f2-a8f7-202812ba7924\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"autoScalerProfile\"\ + : {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"\ + random\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\"\ + : \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\"\ + : \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\"\ + : \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\"\ + : \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\"\ + : \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\"\ + : \"0.5\",\n \"scan-interval\": \"10s\",\n \"skip-nodes-with-local-storage\"\ + : \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"\ + disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\"\ + : {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4660' + - '4988' content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:26 GMT + - Wed, 14 Jun 2023 19:43:49 GMT expires: - '-1' pragma: @@ -2308,24 +2477,24 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestbsuzb7ojt-79a739", "agentPoolProfiles": [{"count": 2, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestqlc4azdb5-8ecadf", "agentPoolProfiles": [{"count": 2, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "maxCount": 101, "minCount": 3, "enableAutoScaling": true, "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": + "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a5417a95-4cc2-4e02-9120-13f2e37ac169"}]}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/40911aa5-18b2-44f2-a8f7-202812ba7924"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "autoScalerProfile": {"balance-similar-node-groups": "false", "expander": "random", "max-empty-bulk-delete": "10", "max-graceful-termination-sec": "600", @@ -2348,81 +2517,84 @@ interactions: Connection: - keep-alive Content-Length: - - '3139' + - '3467' Content-Type: - application/json ParameterSetName: - --resource-group --name --update-cluster-autoscaler --min-count --max-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestbsuzb7ojt-79a739\",\n \"fqdn\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 2,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"maxCount\": 101,\n \"minCount\": - 3,\n \"enableAutoScaling\": true,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a5417a95-4cc2-4e02-9120-13f2e37ac169\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": - \"false\",\n \"expander\": \"random\",\n \"max-empty-bulk-delete\": - \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": - \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": - \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": - \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": - \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": - \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": - \"10s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": - \"true\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestqlc4azdb5-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"maxCount\": 101,\n \"minCount\": 3,\n \"enableAutoScaling\"\ + : true,\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/40911aa5-18b2-44f2-a8f7-202812ba7924\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"autoScalerProfile\"\ + : {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"\ + random\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\"\ + : \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\"\ + : \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\"\ + : \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\"\ + : \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\"\ + : \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\"\ + : \"0.5\",\n \"scan-interval\": \"10s\",\n \"skip-nodes-with-local-storage\"\ + : \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"\ + disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\"\ + : {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd1762df-31e0-40ea-8802-9db8417c35d0?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d55d997-afa7-443d-ba80-c1e32c492b3b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4660' + - '4988' content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:29 GMT + - Wed, 14 Jun 2023 19:43:55 GMT expires: - '-1' pragma: @@ -2438,7 +2610,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -2456,23 +2628,23 @@ interactions: ParameterSetName: - --resource-group --name --update-cluster-autoscaler --min-count --max-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd1762df-31e0-40ea-8802-9db8417c35d0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d55d997-afa7-443d-ba80-c1e32c492b3b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"df6217bd-e031-ea40-8802-9db8417c35d0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:29.885512Z\"\n }" + string: "{\n \"name\": \"97d9553d-a7af-3d44-ba80-c1e32c492b3b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:43:54.6569849Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:13:00 GMT + - Wed, 14 Jun 2023 19:43:55 GMT expires: - '-1' pragma: @@ -2504,23 +2676,23 @@ interactions: ParameterSetName: - --resource-group --name --update-cluster-autoscaler --min-count --max-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd1762df-31e0-40ea-8802-9db8417c35d0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d55d997-afa7-443d-ba80-c1e32c492b3b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"df6217bd-e031-ea40-8802-9db8417c35d0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:12:29.885512Z\"\n }" + string: "{\n \"name\": \"97d9553d-a7af-3d44-ba80-c1e32c492b3b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:43:54.6569849Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:13:29 GMT + - Wed, 14 Jun 2023 19:44:26 GMT expires: - '-1' pragma: @@ -2552,24 +2724,120 @@ interactions: ParameterSetName: - --resource-group --name --update-cluster-autoscaler --min-count --max-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd1762df-31e0-40ea-8802-9db8417c35d0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d55d997-afa7-443d-ba80-c1e32c492b3b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"df6217bd-e031-ea40-8802-9db8417c35d0\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:12:29.885512Z\",\n \"endTime\": - \"2023-03-15T10:13:56.4513727Z\"\n }" + string: "{\n \"name\": \"97d9553d-a7af-3d44-ba80-c1e32c492b3b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:43:54.6569849Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 19:44:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --update-cluster-autoscaler --min-count --max-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d55d997-afa7-443d-ba80-c1e32c492b3b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"97d9553d-a7af-3d44-ba80-c1e32c492b3b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:43:54.6569849Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 19:45:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --update-cluster-autoscaler --min-count --max-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d55d997-afa7-443d-ba80-c1e32c492b3b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"97d9553d-a7af-3d44-ba80-c1e32c492b3b\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T19:43:54.6569849Z\",\n \"\ + endTime\": \"2023-06-14T19:45:45.1084458Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 10:14:00 GMT + - Wed, 14 Jun 2023 19:45:55 GMT expires: - '-1' pragma: @@ -2601,73 +2869,76 @@ interactions: ParameterSetName: - --resource-group --name --update-cluster-autoscaler --min-count --max-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestbsuzb7ojt-79a739\",\n \"fqdn\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbsuzb7ojt-79a739-oy3hp620.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"maxCount\": 101,\n \"minCount\": - 3,\n \"enableAutoScaling\": true,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a5417a95-4cc2-4e02-9120-13f2e37ac169\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"autoScalerProfile\": {\n \"balance-similar-node-groups\": - \"false\",\n \"expander\": \"random\",\n \"max-empty-bulk-delete\": - \"10\",\n \"max-graceful-termination-sec\": \"600\",\n \"max-node-provision-time\": - \"15m\",\n \"max-total-unready-percentage\": \"45\",\n \"new-pod-scale-up-delay\": - \"0s\",\n \"ok-total-unready-count\": \"3\",\n \"scale-down-delay-after-add\": - \"10m\",\n \"scale-down-delay-after-delete\": \"10s\",\n \"scale-down-delay-after-failure\": - \"3m\",\n \"scale-down-unneeded-time\": \"10m\",\n \"scale-down-unready-time\": - \"20m\",\n \"scale-down-utilization-threshold\": \"0.5\",\n \"scan-interval\": - \"10s\",\n \"skip-nodes-with-local-storage\": \"false\",\n \"skip-nodes-with-system-pods\": - \"true\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestqlc4azdb5-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestqlc4azdb5-8ecadf-4bqsjj7z.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"maxCount\": 101,\n \"minCount\": 3,\n \"enableAutoScaling\"\ + : true,\n \"provisioningState\": \"Succeeded\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/40911aa5-18b2-44f2-a8f7-202812ba7924\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"autoScalerProfile\"\ + : {\n \"balance-similar-node-groups\": \"false\",\n \"expander\": \"\ + random\",\n \"max-empty-bulk-delete\": \"10\",\n \"max-graceful-termination-sec\"\ + : \"600\",\n \"max-node-provision-time\": \"15m\",\n \"max-total-unready-percentage\"\ + : \"45\",\n \"new-pod-scale-up-delay\": \"0s\",\n \"ok-total-unready-count\"\ + : \"3\",\n \"scale-down-delay-after-add\": \"10m\",\n \"scale-down-delay-after-delete\"\ + : \"10s\",\n \"scale-down-delay-after-failure\": \"3m\",\n \"scale-down-unneeded-time\"\ + : \"10m\",\n \"scale-down-unready-time\": \"20m\",\n \"scale-down-utilization-threshold\"\ + : \"0.5\",\n \"scan-interval\": \"10s\",\n \"skip-nodes-with-local-storage\"\ + : \"false\",\n \"skip-nodes-with-system-pods\": \"true\"\n },\n \"\ + disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\"\ + : {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4662' + - '4990' content-type: - application/json date: - - Wed, 15 Mar 2023 10:14:00 GMT + - Wed, 14 Jun 2023 19:45:56 GMT expires: - '-1' pragma: @@ -2701,8 +2972,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -2710,17 +2981,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8395bcec-ba1e-4b85-932e-f525dc47d71c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af8e10df-2433-480f-8705-8e7c21fbbb8e?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:14:01 GMT + - Wed, 14 Jun 2023 19:45:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/8395bcec-ba1e-4b85-932e-f525dc47d71c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/af8e10df-2433-480f-8705-8e7c21fbbb8e?api-version=2016-03-30 pragma: - no-cache server: @@ -2730,7 +3001,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_blb_vmas.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_blb_vmas.yaml old mode 100755 new mode 100644 index 772e5417486..bec35a3f0b5 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_blb_vmas.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_blb_vmas.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:14:02 GMT + - Wed, 14 Jun 2023 19:46:09 GMT expires: - '-1' pragma: @@ -53,13 +53,12 @@ interactions: false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "basic"}, "disableLocalAccounts": false, - "storageProfile": {}}}' + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "basic"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -70,64 +69,33 @@ interactions: Connection: - keep-alive Content-Length: - - '1493' + - '1785' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-uluxs39m.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-uluxs39m.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n - }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"details\": null,\n\ + \ \"message\": \"Service principal clientID: bc05b681-7d99-4e7b-b597-4bcb265ca977\ + \ not found in Active Directory tenant 72f988bf-86f1-41af-91ab-2d7cd011db47,\ + \ Please see https://aka.ms/aks-sp-help for more details.\",\n \"subcode\"\ + : \"ServicePrincipalNotFound\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0eb6f8d-b0e6-4b44-89e4-ea2905677b4c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2880' + - '313' content-type: - application/json date: - - Wed, 15 Mar 2023 10:14:05 GMT + - Wed, 14 Jun 2023 19:46:13 GMT expires: - '-1' pragma: @@ -140,6 +108,171 @@ interactions: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "AvailabilitySet", + "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": + false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": + -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, + "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "basic"}, "disableLocalAccounts": false, "storageProfile": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1785' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --load-balancer-sku --vm-set-type --no-wait + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + response: + body: + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"details\": null,\n\ + \ \"message\": \"Service principal clientID: bc05b681-7d99-4e7b-b597-4bcb265ca977\ + \ not found in Active Directory tenant 72f988bf-86f1-41af-91ab-2d7cd011db47,\ + \ Please see https://aka.ms/aks-sp-help for more details.\",\n \"subcode\"\ + : \"ServicePrincipalNotFound\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '313' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 19:46:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "AvailabilitySet", + "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": + false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": + -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, + "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "basic"}, "disableLocalAccounts": false, "storageProfile": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1785' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --load-balancer-sku --vm-set-type --no-wait + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-91azb4q5.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-91azb4q5.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\"\ + : false,\n \"provisioningState\": \"Creating\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/936e21f4-9134-413c-a637-a5026035ee01?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '3207' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 19:46:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' status: code: 201 message: Created @@ -157,55 +290,139 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-91azb4q5.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-91azb4q5.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\"\ + : false,\n \"provisioningState\": \"Creating\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '3207' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 19:46:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks wait + Connection: + - keep-alive + ParameterSetName: + - -g -n --created + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-uluxs39m.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-uluxs39m.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-91azb4q5.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-91azb4q5.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\"\ + : false,\n \"provisioningState\": \"Creating\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '2880' + - '3207' content-type: - application/json date: - - Wed, 15 Mar 2023 10:14:05 GMT + - Wed, 14 Jun 2023 19:47:02 GMT expires: - '-1' pragma: @@ -237,55 +454,57 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-uluxs39m.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-uluxs39m.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-91azb4q5.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-91azb4q5.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\"\ + : false,\n \"provisioningState\": \"Creating\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '2880' + - '3207' content-type: - application/json date: - - Wed, 15 Mar 2023 10:14:35 GMT + - Wed, 14 Jun 2023 19:47:32 GMT expires: - '-1' pragma: @@ -317,55 +536,57 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-uluxs39m.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-uluxs39m.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-91azb4q5.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-91azb4q5.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\"\ + : false,\n \"provisioningState\": \"Creating\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '2880' + - '3207' content-type: - application/json date: - - Wed, 15 Mar 2023 10:15:05 GMT + - Wed, 14 Jun 2023 19:48:02 GMT expires: - '-1' pragma: @@ -397,55 +618,57 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-uluxs39m.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-uluxs39m.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-91azb4q5.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-91azb4q5.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\"\ + : false,\n \"provisioningState\": \"Creating\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '2880' + - '3207' content-type: - application/json date: - - Wed, 15 Mar 2023 10:15:36 GMT + - Wed, 14 Jun 2023 19:48:32 GMT expires: - '-1' pragma: @@ -477,55 +700,57 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-uluxs39m.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-uluxs39m.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-91azb4q5.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-91azb4q5.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\"\ + : false,\n \"provisioningState\": \"Creating\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '2880' + - '3207' content-type: - application/json date: - - Wed, 15 Mar 2023 10:16:06 GMT + - Wed, 14 Jun 2023 19:49:02 GMT expires: - '-1' pragma: @@ -557,55 +782,57 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-uluxs39m.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-uluxs39m.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-91azb4q5.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-91azb4q5.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\"\ + : false,\n \"provisioningState\": \"Creating\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '2880' + - '3207' content-type: - application/json date: - - Wed, 15 Mar 2023 10:16:36 GMT + - Wed, 14 Jun 2023 19:49:33 GMT expires: - '-1' pragma: @@ -637,55 +864,57 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-uluxs39m.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-uluxs39m.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-91azb4q5.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-91azb4q5.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\"\ + : false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '2882' + - '3209' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:06 GMT + - Wed, 14 Jun 2023 19:50:03 GMT expires: - '-1' pragma: @@ -717,57 +946,61 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.24.9\",\n \"currentKubernetesVersion\": - \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-uluxs39m.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-uluxs39m.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Basic\",\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n - \ ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n - \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n - \ \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-91azb4q5.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-91azb4q5.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n \ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Basic\",\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 1,\n \"disableLocalAccounts\": false,\n \"\ + securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \ + \ \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"\ + enabled\": false\n },\n \"workloadAutoScalerProfile\": {}\n },\n\ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '3103' + - '3430' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:06 GMT + - Wed, 14 Jun 2023 19:50:03 GMT expires: - '-1' pragma: @@ -799,57 +1032,61 @@ interactions: ParameterSetName: - -g -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.24.9\",\n \"currentKubernetesVersion\": - \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-uluxs39m.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-uluxs39m.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Basic\",\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n - \ ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n - \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n - \ \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-91azb4q5.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-91azb4q5.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n \ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Basic\",\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 1,\n \"disableLocalAccounts\": false,\n \"\ + securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \ + \ \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"\ + enabled\": false\n },\n \"workloadAutoScalerProfile\": {}\n },\n\ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '3103' + - '3430' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:05 GMT + - Wed, 14 Jun 2023 19:50:04 GMT expires: - '-1' pragma: @@ -881,55 +1118,57 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-uluxs39m.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-uluxs39m.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-91azb4q5.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-91azb4q5.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\"\ + : false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '2882' + - '3209' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:06 GMT + - Wed, 14 Jun 2023 19:50:05 GMT expires: - '-1' pragma: @@ -963,24 +1202,24 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSVG1OQlJHbEVPRWhQV2tsWlNtTm1aMHR4UlVsQlZFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCZWsxVVZYaE5SRUV3VFdwT1lVZEJPSGxOUkZWNlRVUk5lRTVVUlhkTlZGRjVUVEZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSTUNrbE1jQzlDUVRZMWEwRnhUMDkxTlZGVFUyazBlV2xyTVVSbmVXOWpSV0UwYVRaak9XZE5RVFZ5VmpkRk9IbEdaREI1YlROQmRFc3hXSFJTWlVkVGJESUtZa0pVVGpCQ1YzUm9PU3Q0UlVWYVV6aFJURmhQYkVOU09IWlBOa2hqVVhSdmRHSTNTbmxqVnk5T1REUjNZM05IY0hGb2VtbFFURTAwZVROTEwxVlJOQW8yTTNneE1EVnRURlYzUkRSQk1tMUliWEJJV25CdFJqZ3phRE5YU1hobmFuUkVWalJ1V0hsQ1VHcDJjblZ2Vkd4amN6bDVjR0pIWTNRd04yaEhSek5CQ25oRE5VTkZjVTVOYlVVdmMyMUphVFZrWlZKNGIyc3phbnBEWTA0MVJrcHZRMDlETlZwTFNFOUVNM1ZQWXpFM00yOVJTR3gzVW10V1kxbDJXWGcxVTJzS015dHBOSE5UUVZsRGVWTnZhRGhqTW5kTWVrcG5RbU5rUmtkS1N6TnFWR3hxUnk5a1dpOWxLMlZhWWxobmFHOU1ZMGhYY1VjeE1XVXdUbTl3ZVZGdVV3cHlPRm94TkVFeWNGY3daRXR4ZW5CalJrUnZSalJHV2xoTlVrZ3lXVmhSVUhvNFZXNVdXak01YjBGWGJsZEpOR1ZtTWxCc2FVWkpUMkY2ZURoTVRrZHNDbFF3YzNObGFXaExUbFJOTUdad2JGVklVRUptWVZBNVFWaElNR0ZGYkhrelNtVkdOSGh1TDBWTFVsQTRSV2hvVG1GUlRYaDRUVFpWZEZabFVrVjFObEFLYmtsTksxbFRialJuUjNsd2RXOWlWV1JMTVU1dVpUVlVhR2RxYldOM2MzTTJTbE54VTFaa2NESndMM1p6UkZJeVl6RXZXRVZEUkhWWk4zSXlRVWtyVWdwV2JrdFhUa1Z5YW10eUwzTjZWVkpSYTFsc09VSmxUVmx1TDFnMFRHRm1TV2czTHl0R1NIUnVPVEpwVTJkQlQxQnlaMDVyWW1sR2JIcHRTMHROTUZNeENuaENTVEo1Y0VWMWFrWm5NV3hWUWpSdE9FcHhhMHRPYjJjclMzSlpURWh3Wm5aSlRuUjZSVXROYTBneVkyUkNaRTUzVXpZeFZUWkVkR0ptZHk5V1FuSUtUREUwV0dObU1IWnVUR2RoWjBka01VZHVObTlEZFcxM1lVWnBSRXRCWkVNM00xWnJPVzB2UzJGM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWNFJVMVBNekpUTVhkR2RVWldVRUZIQ21KUU5HTlFNa2hpTlRFNGQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGQ1ZHOVZXbnA1UzBwR2FUQnhURkpYZGpoTU5XeFVibWxxUkRFS1dGWkpZVE12VFhoaVRGZ3JNemhYYW5sWE5qVmhWemxVVmxoalRtSTFZVlJKVW5Zd09UVlNhR2RYUVZaWk1EUnRXWFpKUVhacGRuZ3dTbE5LVkZoSmVBcG5ZVnBxWmtFellVdFRlVGRVT1dseFZIWnBUbHAyVG5Ka1QzRjZUVnBJVURoMWF6bFdTVWh5VVZaV1ZIQnBNRTkxVldGWlZtcEtjWEZYVmxWUGVGQjBDazl3YlhSbmRYcElaMHh0Tms5aFp6TkVUbWswU0ZCRlQyYzRjbE56VEVKS1FXTnZTa0UzUkRGR1VFcFRTSGM1UjBNeksxQlZMelJITUM4elRqUjZTazhLVWxCVVJHTnRVVlpTVkU5TFdUUndlVVV2VG5Ob1puSkVORk5IVEhWdVFtZExUVlV2UW1GYVpHdE5UMmRxZGpCcmJuTkhaREo0VmtSdGQwRlROblZLVmdwUVNHeFBhVlZCUlZWU1ZWWkRlRmRsY1ZjdllYZERPRUl5TUVsVFJXaFFRa050U1VWTmNVSjBTV1Y1TVdONlRsUnRRbmw0VkV4V2NXTlZaRGgxWTNackNtOW9PVlE0UkRab1RIVlpjVWRyY2pKMVZWWTNhelp5UzBWS2F6bHJXa1ZaTkhGdlZrOVlVMjlvVms1WVUyOTBZVU01ZFUxRWVHUlhSV0UwVTFOM09FSUtiMDVQV0hSWFQyWm1lbFJIVmxaME5FaHVSMDlyY0d0dU9FSkRibE55TjNCdlJHVk1hRFpFTDI5NGJUZGtUVlEzVmtsb1QwSklMMGw0UTNwcFdXaHFhUXBaZVV4WGEwUmpiM05ZYm5BMU1FMHdaMlJMV1c1alJGWXdZMkl4T0ZjeVF6SlhhMHR6Um5JdmFHRkVhekJOWmxnelJITnhUbk53VTFoaVVtcEVhMjExQ210Q1dYRnNTbTh6WWpKeGFETlVjRlJqTW5KblRWbDBkRTVUTjJGYWQwSnJORzFKVVV0UmNVVndRV1ZEZGpjcmFVaHhRVzlMUm5VMFdUVXdVRzFqVkVNS1NtVldZbmcxVEVKQmNVUnVkU3N5SzFsc2MwMUlXVzVoVVhoS1RsbDRkMXBKWTBRd1ZFeE5RWFF2VHpZeFdERlJWMVJNYVhRMWFGWlJjMWx1YzFNMGNBcEdPWEZNSzFsSlJrbDZjRFJHYUVJM0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2loNmh2dHgtdWx1eHMzOW0uaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3R4cDNpcGEKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3R4cDNpcGEKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RkZDJzZmpoemNpX2NsaWFrc3Rlc3R4cDNpcGEKICBuYW1lOiBjbGlha3N0ZXN0eHAzaXBhCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdHhwM2lwYQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RkZDJzZmpoemNpX2NsaWFrc3Rlc3R4cDNpcGEKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVXhpZFZOdWEycDRTMk5EY3pRM1VTdFVNMkpFWmpoM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDE2UlRGTlZFRjNUa1JKZWxkb1kwNU5hbFYzVFhwRk1VMVVRWGhPUkVsNlYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCTlhOMllVbGxia3hqWlc5blFtUktNVlZUV21ZS1ZHdDBlbHBPTlcxQlJsVmthMkY1Tm1kcVMzTnFPSGxoVGtkamVtSlRRVU5RTUhWbmF6bElhVUl2YVZGYVZsSk9lbGswVFRjNGRIRk5ibVF3Ym5OU1dRcEVUVk5VYmxSc1JIVXJiRkZhUTBnMFYzcHdTMXBQT0hsNVpqTkRVV0pCVEc1RmMyRXJOVFpHTmxCWlJrVmhUVnB6ZEd0WFNqaE1hWGw1YWtzMU1HRTNDa1JpWkZVeE0zRTFVRXRPYzJ0d2EwOTJZWFkxYkhoRGRrWlJaRWgzVkRReU0zQnJjRWhQWkZOQmJXRXJSRFZ3ZVVwU1lVSjRhSFZqZWxCTFNFVTJTVmtLUjFCRVNrdHRUa2gwT0dneU1DOVBlbUpSV21KWFZFcG1MekJtTUhsa1JuTkRibXN6VHpsVWFtRkVjM1p4V1d0b1ZtbEVTMmhhWWtwU1FVRkthRlJHZFFwb1dHbzBZemxVUWxKMGNEUXJWVXBvWTNGUVdYVnRkbEp4YWpOVFR6VklPV3gzTnpnMWVIaGphRmNyTDFsQmVsRTJNbk12UjJSbVZtZEVWR2gyVmpNeENtUnRVVFUyWkhkbE1ERkJUVFE1T1ZOclZGVlhlWE00WkRCS1NWQkxVa1I2Y1V4VVVXWkVLMlJNU25wU1pHdHBOa0ZhWlhrelVFSTJjbFF4Y0V4UFZEWUthbWwzY0hSTFRuZDNTRnBOVjA1a1luTmFOMjkzWlVGSGNHZGtWbXhwYW1vemMwWnViVGxqUzFJNU5rbFpNWFJJVFZCVk9VaDJUVmhsVEVKcFQyTTRZUXBQZDJaeFdHc3JhRXBZZVVvNFppOTZSVmxTTVcxeldHZFlXbFF4UzBKNlRHOTNaSEpaVVdGV1pXWllaemRpUm10eFkyRmtSVmxxTjI5TVNHcEJabU5aQ2psNVRVVmhhSE12VWtST1RHUlNXbGh1V2t4eWNVeDZVbk4yVXpsc1IyeGllR2htTURZdmMwWXhkMWMyV2tjM2RGbFJORGMyY0haSFZWcHZlbGtyYzFRS1dGbDVhRnBLWjI1SVVrZG5XVXRMVlhWWFRTOVJPSGh3WWxoV1RUQlJkRU5DWTIxd2RYb3lXRk42WjAxVldWcEJOMGgzVTIxWE1ucHBhVkpQZURCTFpRcFJTbnBqVjA1dVRXZzJVbEZaYUhWVmVFNTFjalIyWTBOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWZUVWTlR6TXlVekVLZDBaMVJsWlFRVWRpVURSalVESklZalV4T0hkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCUlcxTmFHTmpTV3d5V1ZkbEsyOXdWVTVLYkFwQ1FtYzRaWGw2UjAxUlN6WjBOVEZpZGxwQ1NETkhlall2Y1VKbGRYQTVhV0ZRV25GR05EbHpTVWhLVDJjMWJGZFJhRWxvTWtsaVNFUktUUzl6VldkSkNrWlZjekJLZUZGVFdISkhkSHBQVlZONGEzZEVWMFp6YldWaldpc3ZObXMwYW05R1dFTnVUbUZRT1cxeFNXODFjRE4xVTFsYVNEQnhOazFQTlV4NmMxVUtRbGhvVGpoTk5XSkZlak5vVUZCa09UVm9jR0ZZVW5kT09HUkpVVFJoY2tKS2JVeHliRUl4YXpoYVEzSlBjM1FyVDBKcUx6aFdWVWMxWnlzMFpVNU9aUXAwWlVndldsWklWMFIzTTNkTmFGQktNMUJoZVhCblpVMXlMMmhqUjJabmVsaDZlbllyUlRBMGR6TXdNMkl5T1doWGFXTm9TM1p2U3paRlZESTROazkzQ2pGRlRHUXZVRFl6YW1oME1YaFljRTlTVXpGdFdFaHdUR0pXU2poMFlsbFFNV2R0UzJRemRqSkxjRkJtUVc5a04yTjZjMkppY2pkMFRsTkZOMXBOZUVVS1dVOUlWakJCY214c1UyVjBlR2swTmxaTE1VdG9UUzh5SzFSWldHcFlSMFJMVnpseFVGcDVTbTFZYkVGa1NuSnZRM2xvTm1oTVNFUjZRM1Z3V0dOWldRcG9XRU5rVFhwVmFIbEZlaTloY1VFeWFWY3pTRUZrZFRSbFltVmtiRlZZU1daSWJteFdibEpzZWpVd05rcHFNVE1yTVV0c01YTTNaM05zSzNkQmVUVldDazQzWlRWRU1UTkNOVzByUTBvMVYzcEtWVE5tZDNGTFpYZDNPRlZNWkZWdVduQlNSRk40WkdoSlZtcGtlR1ZHZUN0UE5rWmxObVZVU20xM1NYUm5WMW9LZVZKTlZIUTFVSGN6VVZvelZVRXlPVFZUT1dWb1kyWk9hVFJ4VWpkSlJYaFNUSGhpYlZSWGRtRk5NbXQ1YW5jemFXWllMMjVWVmxkUFJYQnRZMGhtYkFwVFkyc3ZZemhVV2pNd1ZXOXBUakZWVERscVoxaG1SWGhZTHpST2NHZHFiWFEyVW1FdlpVWlRjREY2WWk5VGVEaHpRWEZuSzFoM1pHeHNTbVZYYW5CQkNrcHRTWGRsYjBwalZVOVFSRGRuYTB4MGRpdHdjakZTT1FvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCTlhOMllVbGxia3hqWlc5blFtUktNVlZUV21aVWEzUjZXazQxYlVGR1ZXUnJZWGsyWjJwTGMybzRlV0ZPUjJONkNtSlRRVU5RTUhWbmF6bElhVUl2YVZGYVZsSk9lbGswVFRjNGRIRk5ibVF3Ym5OU1dVUk5VMVJ1Vkd4RWRTdHNVVnBEU0RSWGVuQkxXazg0ZVhsbU0wTUtVV0pCVEc1RmMyRXJOVFpHTmxCWlJrVmhUVnB6ZEd0WFNqaE1hWGw1YWtzMU1HRTNSR0prVlRFemNUVlFTMDV6YTNCclQzWmhkalZzZUVOMlJsRmtTQXAzVkRReU0zQnJjRWhQWkZOQmJXRXJSRFZ3ZVVwU1lVSjRhSFZqZWxCTFNFVTJTVmxIVUVSS1MyMU9TSFE0YURJd0wwOTZZbEZhWWxkVVNtWXZNR1l3Q25sa1JuTkRibXN6VHpsVWFtRkVjM1p4V1d0b1ZtbEVTMmhhWWtwU1FVRkthRlJHZFdoWWFqUmpPVlJDVW5Sd05DdFZTbWhqY1ZCWmRXMTJVbkZxTTFNS1R6VklPV3gzTnpnMWVIaGphRmNyTDFsQmVsRTJNbk12UjJSbVZtZEVWR2gyVmpNeFpHMVJOVFprZDJVd01VRk5ORGs1VTJ0VVZWZDVjemhrTUVwSlVBcExVa1I2Y1V4VVVXWkVLMlJNU25wU1pHdHBOa0ZhWlhrelVFSTJjbFF4Y0V4UFZEWnFhWGR3ZEV0T2QzZElXazFYVG1SaWMxbzNiM2RsUVVkd1oyUldDbXhwYW1vemMwWnViVGxqUzFJNU5rbFpNWFJJVFZCVk9VaDJUVmhsVEVKcFQyTTRZVTkzWm5GWWF5dG9TbGg1U2pobUwzcEZXVkl4YlhOWVoxaGFWREVLUzBKNlRHOTNaSEpaVVdGV1pXWllaemRpUm10eFkyRmtSVmxxTjI5TVNHcEJabU5aT1hsTlJXRm9jeTlTUkU1TVpGSmFXRzVhVEhKeFRIcFNjM1pUT1Fwc1IyeGllR2htTURZdmMwWXhkMWMyV2tjM2RGbFJORGMyY0haSFZWcHZlbGtyYzFSWVdYbG9Xa3BuYmtoU1IyZFpTMHRWZFZkTkwxRTRlSEJpV0ZaTkNqQlJkRU5DWTIxd2RYb3lXRk42WjAxVldWcEJOMGgzVTIxWE1ucHBhVkpQZURCTFpWRktlbU5YVG01TmFEWlNVVmxvZFZWNFRuVnlOSFpqUTBGM1JVRUtRVkZMUTBGblFucFpVR1V3ZFc5a2RHUkhhamMwUTBkelNuVXpRVmN6U0dSMlJucHllalpHVUc5VVZrRlFOSE5MTDBoTlpYWllWREZIWlhCc2MwTTBaZ3BzS3pWVGJ6Z3lNRU51WnpKNVkzWnVNbEkxU0VOdVluWndRMHROYURNeGQxQlNLME5uYm05b1FrOWFLek5PTkhsS1Z6WlVhMngxV25OVFQzTjRPVTByQ21SU2NHMTNkemN6Y1ZRd1FYSjNkMjVhYjAxM2Izb3dSV0k1VXpGWU4wSXpXa3N2VlVFM1RWVmxjRmh0T1cxR05WSjFjbmRNVlhGUE4yTmFTMk12UldNS2RGQjJTRzVaZEc5cE5FdERlbWRUYTJkRmRHTklaV0YyVW5aeFlrSlZlbUk1ZGxBd2FXRXZNVGszTHpoUmFFSkxkME5rUkc1TWNHZGFiVk5JZFRrclJBbzVjMHRWTm1adVF6TklOR2MyTlZkNlVWSldkUzlGU0VkS01XTnJVRXg1WjFVek1HOUxZa2xQYTJ0UVlrcDBVVVJLYTBkVWVGRkphbkUzUmtZMGExWkhDbGRIVW1Ob1QyWTRXVmwyVlVaVVNtWm1aMjlMTlU5VWVGbFdZVVJJVlVSM05teE5ZM2xrYWpKVWMwbGhWRVZtWW1OUE9XeGFiV3BuV1UxR1IxcE9VMjBLU3pkUFpsRkhOSHA0V21KclozWnJORVJGTWtKUWFXUTJjMFozTXpsdVIzTnFkRWxTUlZCaFZrNDNWR3hhWm1kdlRsZHBUbWxwVUROYWR5dGFiV1EyVGdvemJuQklkRU5yVkRseGRIUnZialJCU25SWFpsWlZMMEl3YkVSelpTdFdNV0ZCTlRCamRrZEJZMnd4TkRkS1ZFMVhaVTFMYUhVMGJHRkpVRFZsV0dKUUNrOVliME5GVkc0NWVVTldVRzlaVTA5WE5rbFlSVVpDTmtsM2FXRnlURXBUSzBKdFUyMVViR05vY2s1d2VUUmxjelZUWldaSE1ISjJTMjR6YTB0MVMxRUtiMlZZWTA1ck9XZEtjRmwxVURWUmNYVTRjMjU1ZEZCRFJEaGpVR1p6UlhGS1JEY3lUbkJTUXpsTldVMWtWVmxXZDNWUFZuaHhXbFZKU2k5dFRWUjFOd3BhTUcxeWF6TktkMGg2VlVaQk5FcDVjeXRQUTJsSWJEbFlUbVoxVFVVd1YwbHFNbk5rZGtKMVYxSlBPWGxFUzFsWFVVdERRVkZGUVRnelp5dFlaMnh4Q2pVeGNteEZUbFYyTTB4eVZWUkdVVE5RVjBsQ2JsUlNZMjlyVTAxaVRsa3hhbnBPZEVGbWNucHliVVJZVTJOVlVIQlFVblJNZFZsaFlYUXlkSGMzUmpFS1JYTlBlV3BRYkM5VloxZHNPSHBUTTNOaFlVUnZZa0pKU0hrMGVsWk1jbXhuVEV4eFFqSTRiRTltVVRsemMwWXJTM1ZyTUU5NE5YaFdTWFZpWTJabU5BcDBPVVpyTVhvMVpYQklXRXcwUjBaWlJYWnFaRE14Wm1Kd1JtWmtTWGN2ZW1Wak0yeExRWGxxZUZKV05tdE1OVGd2WTJJemMwRnpNQ3RJZW1OaVZFRllDak5XV1RoRFVpOXFiM2xFVERCc2VsWXhSRGxzUlRKVE4xSTFTa2RtVG1wSVVYcEZSR1JzTjBnd2NGQjNNbE5oT0V3NGQyOHlja3hIVVdKQ1IwY3lSMVVLVkVaUlkwRkhRMWN3VWxSaGFFRXhUamt2VEM5cGN6QTBUREJCUlRoR2N6TlNkVlJEVFhGM1lVUjNNVzVHU0dsaVVERktjRE4xTVN0VVREbEdXVmhOZVFwMFEwUTVSRnByVFdrNFYyeHRkMHREUVZGRlFUaHhlV2xXVkVoQ1UybzVUMEpEVTI1NFJtWmxOa1ZtYW13dll6WjRWREJ6YzFKM1RHTjVaV3MzUlROVUNuWlNTbGs1YjFWVWJXcFpSbWhVUzA1alJ5OXhjbkEwUjBWeWIwcGhUMWRRYW5WeGJHRTJZM3BQY0d4NVR6Tk5Ta2ROWkVaR1FtMU1lVm92Wmtwa1R6VUtRWFJaV2tNdllrTjNXR3cxYTNCR1lWRjVWV3AwZWpoSVFsVnpRVVpETTBFNVVEZFlUVlVyUzBwWVF6aEllVEJXWlVKR1Rtb3pRM1ZLY0cxMVRIbG1jQXBXWkc1VWFHVmFhVFk1VUVOTldETmlUV3BHTWtwUVZsZHZkeXR2T1ZSMVIxUkNlRTR6TmpsTEwxSnBUeTgxZWxKdVdFODBXRnA1ZVhWalVtNWpOVGhsQ2pWbk1ESm5hMlp1V1daM1NESjFhVWRXYWpoVVkwTnNRVFF3ZEZaR1JFcHRhbGhXVVhBeFNXMTNPVUpCYzJreWMwOVNaakpXTnpGRFUzRnVWV2RJUldnS1JDOTJiVUZ5YjJVdlkzcDJkMUY2Y1ZoSlptdHdkak55V1dsRVdsVnBSblEzTVVKWU5XdEdZakZSUzBOQlVVVkJObkpFZDFCaGJVdFhXRmgxT1ZkcWNncGxSRlJKVkUxUGNHUkJkM3BVYUhsYVduWnVOQ3Q2YTBvMkx6VkJhQzlaYlZNclQyZzBPRk5JY21oVVNEUnlkVUZ1TlRoTmVqSlZVMWMwU1RGaVZuUmlDamxsTjI0MWVXSmpTU3N4UmxkbGExcDJTMVJIWVd4cE1uWnVZVFI2VnpOQlZISnpNMlJyWVRadWFHRnhaVWx4UWpaSFQyazVhSFEwY2pScGVsVnBSVmdLUkdsV1Z6TXZXVEU1YVZCaWFrWXlaWEJwTjJ0U1pGbHpaSGtyV1ZKRFJHSkNWRWxPVFdSWVRtMXlkbVpMZERORGN5OHhORnBtUWtWTlQwaGtaMVpaZVFwRmNDdGpiV2t4VUVkblpqWkpUbGR5UTJaVVp6WmFkakZwVEcxSlozVlJaV0p6YVZwR1JtOVpZMWRMTVhoM2MzQjJWWGd3WVVKVFNqVlpTREprUVRadUNtdDFaM1JOTjIwelprNXVTM0I2ZG01bGRsTldWR3BSTDJSeFJYYzJZazl2WTNaWlUyUldUa1pKTm1OSU1IaE1VQ3R3T0hRdlEwRldjMnBzVTJSWVkyY0tPWFZOVWtoUlMwTkJVVVZCYTAxRFVrSkRhSFJzTlVGNlVsSXhiMUpUU0RGQlRFVkJMMVZEYm1WalpVaDRVVEZ3WkhkTlMzbFViVlJPTlVObFMwVTBkd28xZVdWaFJ6RXlVVXRMVmxwWk1XTXpXVU40UVU5TFdGWXZMMWhRVUcxMU5XcDRZa0Z2VGpFMVlUWktVbVpwTDA5NGFraHhkRmhIV2xKcGRsaFFUaXQzQ2xKQ0wyeGxTblpxVEROSlZETTVXbXR3WVN0aVIwYzFRMVIxUmtWRk1VaFRiMWx4YUdKRFpFVlRlRFZ1UjFWNWNGWk1WVTk0VjI5V1RWQlRRbmszYTJ3S1FVYzJUSGN5U0VSUmFXeHRkelY2YTFaT1pXVm1UV3hKZW14WFJIcG5NazUxV0V4UmRWbEJaRTlOU1hsRmQxUktVbmt6TUZZeU9YVjVkVXhQZUU0clNBcEZWbVEwYVVGa2VrOXFZbVJ5VjFkMVNYVmFiMnhYWlVzM1NUUjRNR1I1WVRaMWNIQTNUalUxWjBsVVpXMUhPVE12TTJ4WFNFWmtaVEZXTXpSVlYwRmlDalZIUVN0RmRsWldVbTFTTkRZelRrTXlTVWR1Yml0dU5ETlhjMkpSTW14NFJWRkxRMEZSUWt0eFVtUllPSFJoZUZNM1FuQk5URFZhTmtaa1pYUmpMMklLVVRSeFZrSjFPR2d3VUhCNWFGUlBZVFZoWmxRMmJrNW9lVk5CU0U5Q01pOVRjRVZRTDFoTWNUZFJSazU1Y1ZjMWNXTlphbEIyV0hSeWNHSnJiRlE0YkFwUGRIUXdNbmc1YlhKeVEzZFdSM1Y2T0U0eGNHaExOVzlDVTFORWJYVXJkMjFLTWxGRE4xVkNTVzgyTVd4eWJFVkxhR0lyWlVGVlptcDVXVlJ5U0ZoeUNuQkJUa1l4ZDFaUmNVSm9lVUpDVDFoclkyRlpRMDVLWms1RVlqSTBOVTAyUmpWMFpHVXZZMWxHWmpKMFlqY3lVRE41THpaWGVuZHhTV1pqZFdaUVVrTUtNVGR2TDJacFRsaGlZelEyZGtoUWVrTjJOVUphTkZoSlMwaG1WRVUwU2xGWVoyVmxjMFJxVFZGdlZqVTFZMnhYUVcxelFVWTBWVk5YVkVOcGFrRlhPUXB5ZFVWNU0xVktaamQxZVhkMFRrdDBOMDAxTDFOdlJqZ3pkVmhzYm01a0wyTmhNelZtTlVwNmN5dGlhWGx0YUZSSU5FUnpNa3BLY3k5bE16TUtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogemtwcDFjNzZxbTF6OGE1dDJya3BpNzNvbzA2Mnd4Zzc0YndvM3hpOWZ0anpiMmR1bm80amR3OTF1Znc2cnZ2ZzhzMm5iejViZWVyMnpvMmd1ZTdjdGw5bnJrbzVsYnNzcW5sMnZnbGJzem1wOXNoajhuemxqdW5teXBsdWpmNGUK\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVV4YU1WcDVjakZtTDJGbVNVaHFXV0ZEUTI0NWExVjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJUQk5WR3Q2VG1wVmVGZG9aMUJOYWtFeFRYcEJNazFVVVhoUFZGRXlUbFJHWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNqSmhUbEJ5ZVVsUmMzWkJNazUxV1ZCNEsyTnFjREYzZUV4NlJrbDZaVVozY3lzdlRXbDZiazVpVjI1Qk5rWmhkRFZGWmpoQ09YaFZXVVJGV0hoQ1dHOEtVWFIyWW5JMWFsUklkRXhQTHpRMk0xTXlNbGxuTUd0T01FNVhaa3BCWWxKRWJrMUlTVkUyWms1T2FXaFRPSFJNTlVwUE9VUkpZbGQyWkhWcmMxcEVkZ281VTBwSGVrY3JVbFZQVURCdlNuSjBSa05NZUhRdmFUSnVNMVZIWWs1VFFsRnhPV2t2TjFRdmVUZHNOM0JyZDFWWlEwYzJhSEl4TWtkM2JqUnJaRnB3Q25WUWQzVXdSMGR4Ym0xWU5qSklSRVZMUVU5aFVHSXpUR2RXTjNGbFJ6QjNNbVptWjNSNVRXdFJkMXBrUTBnMU9YZzBRekpSV0ZJNU5GQXZhMUYwT0VFS1QxaDFjazltYW5GTWRYaGtSbGxMZEc5S09GVjVNbkVyUVdGTVIyTTJObk5XZUV3NWJXaEViVlZ1VTFNNU1DOXRMMmxtWWtwWWRXbzBaVVZYZWxGWlZBcGpOQzlhUnpRd09YZE5aall5UzNoWFMyUkZUbmg1YWs1NFZGTnZjRWxWVldFNGVqQkhkMUEzZWtsM1JsQnNUMjF6U0N0VWJuaFViMGwzVjBwTVJqQlBDbUZwUTNKV05uUkhVbXd5ZWtaRVYxazJhR1ZHVkVSaVdVazVTeTk2Y25GT1FqTllhVmt5TnpOMlRUTmtTMHhEWjJ0b1NXaGxjbEpwVjNOMU5sQlhhWElLVVhjMk5VbEpkamxZT1VGdVdXWnFiWE5NUzA1TlNXbHlTM1pGYzFGWk1tNDRWazlaTTNCRlYwMTNXRzlSYmtWNVVsbE1lSEJ3VDNObFlUSjRhRUZUT0FwNVVVNVhha0ZEZFUxb1VXTjFSMUZrVUVST2VUaG9VRTB4UjNKMVRWWnpRakZCUjA1b1kwTllaWFpuYW5CelptOU5VMjlXU1c1c1QwVjBkbUp4TUdneUNtMU9VR2w2VlRKNlF6bEhkbkZtU0dFNU1FUkJiVlJQUTFKTU0zbG9Rbk14TTJJdmRYZFhaMHhWU2pVdlRDdEpUa2xIWlhCNU9GaDVkV2xJSzBaV1NuWUtXbGxJWVVwek9YRlhRakphUjNKUlV6WkxTbTV4WkhWa2RrRm1hbWROYkcxTmRtSlZSVTlMY2pSM1kwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1FuRkVXVWd4TUVvemJHUlljR1pJQ2tnelZHb3dRMXB0T0ZSRVMwMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlF6VTVWMDFTVFRONVYySlBhbTE0S3pSRU5EQXdRWGhETkVFS1JrcHZORmszVjJOM09HdGpSbWRaUWxaS2Vrd3pibTh4V0VWRE15dGlXVXRCUm0xWlZFMTBOalphY21OMWRWTkNhall4T0RSbmRESnBaVzgwVEdJM01RcEpRMDV4Y3k5UFZHazFXbXd2UVd0c1JqQnljRVkyT0dka2QzVXphVEpyTVc1QlFYTmtSV2RNWmtOTU5HZFRaRmhDYlhwUk1FWlpiaXRXU1dWcFR5OWlDbTVwTkdoa1p5czNZM05FTkRac05GSmtkalkwU0hNdloxQXljRFo0ZDFOcVptMWFka0ZLU25FM05YWXpSR2RCTUVkcUsycHVkM0UxUlV4NWJGTTRLM2tLVTNGUlZWcG1ZbEpoWTFKaWIyc3JaSEZEYVZWeVpGUlBSV2RtUlZJMFdFUTVRM1ZpWkU5UEszVlFUbUY2Vm14SloyaERVWE5oUzA5SE5WbDBNRGxKTndwT1kzRkxWRFJZV21Kc1FUbENRbmxVUjNsdFIydGhSMjlqVG1Gc1ZWSjJPREJCWm1NM1lsaEthVGt5UjFodlNsWjJZalp1YUhCSlRsTkpkVzFQWTFWaUNrbEZaVlkzVGtabmIxRmtiakp0Y0dGSE1XeEZVbWxGYkRWUmJsaGlVMDVaYlRsS1ZrdGFVbFl3WTJSSE5UZ3lVa3BSTUVwWVREVndVVEF5ZVhVNVJXY0tRMjAyUlRabU5GUTRjbmxGVGxkdE1tVmthRkpqY1Rnd2EwdGpkVmxLU2pFM1RUTkhiMU5wZVdWR1REUmljbWxzZUdaTVNVcHFVWGhwV0U5c2VVRjNaQXBYYW1aVWJHSlZOMHBTTWpSb0wwdGliR3hVWkVkcGNWUnpOR053U2xSS1RubGhabGhrUXl0T05EWldNRnBUUlRkdWNGTlpVVlZKUlM5MFFuWmxOMEkzQ21ndmFtTlhaSFpWUWpKWmREVkNUbXBTSzA5Q1dGaGlNMU5xVTB4MFR6Tk1ZbmxqVTBkUFNWWnpUVVZGY0N0eGNESmhUMjlKZERGNFFUbFJOREk1TlVnS09XaFJVSEpOVlVkck0xcEVTRVJtTmxGelRqZERZMnRVV2tnd1dIRkRlV051TUZSblZXNXZjVUlyTlRWYVZ6QjJNRTFDWlZWcE5XRmFSamh3TkRKc1p3b3lhVzlrVTB0VWJ6VkVSbTVyUW5wUWVHYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zYnd4ZjRkdS05MWF6YjRxNS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdGh4c2VjZQpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdGh4c2VjZQogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGI3emdvZWV6anBfY2xpYWtzdGVzdGh4c2VjZQogIG5hbWU6IGNsaWFrc3Rlc3RoeHNlY2UKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0aHhzZWNlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGI3emdvZWV6anBfY2xpYWtzdGVzdGh4c2VjZQogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlNVNTRjbkJ1Y0VWV1MyOU5kVmh4TkZJMFVWUkpSRUZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQk1rMVVVWGhQVkUweVRsUkdZVVozTUhsT1ZFRXlUVlJSZUU5VVVUSk9WRVpoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVUm1SQ3RQZGxGV2NqWjFkMjB3WTNSVlozSkdNbUVLU1hWTWIzTkZORFpwVFhkcFFUVTRkek5MYkUweVQyOXZLMDkzTjJsTVJuRXlLelZaVldWcmIwTmFSRzFvT1hKME5sZHhXVWRaYkZadlNHczBaWGt4TmdweFVreDFiVlJSUjJONmR6VnFaR3BRWWpWRksycHViVXBrU1daaWJVaDJjWHA0V1hkNlQwOXNXWGN2UkZZM1V6RlpUVTlHVkZCUFNVOXBaSEJsY1ZWTUNrUmxjR0ZxUldwWVJISTBTbUpsWlVGMWIweHNRaTlUYkZOc1VsUjZjbFpYVm0wMGVucFNlaXRWSzNwQ1RGcEVWM1ZNZUd4RVJtaDNlV1ZXTUZsNmVYRUtNSGhVZFdaRWRucExjMFJ5VDJWalJXTlRWMlJDV25KYWVIUlhSRGRhWjFRMVYwbHdlVEJtUVRCTWNXaHFhVGRVU1VoMU9UVnVZMmsyV1VwaWEwbzVUUXBsY2tRM09UUjFXSGRwU0cxM2VFRlROVU5DUldKWVNYQnVkRTlOY0RCT1pXcDJMMU00VVdoaWNHeEROVFZpTlZad1RqTk5ibVZaU1dkSGFYQjBLM1pMQ2pSMFVIUnNTV1IyWkU1aFJESlhSa3c1Ym5wd1ZYRjNWMVZuZURkSFZ5dHhWMU5XVkdNeGNHdFRaR2x6VTFrMVVGRnBlRUpOUmtjd1NXeHJSSGhxTld3S2VIWm9iMUJuTW1oc05YRkVaWEJMVjNGVWQybEhNMk55VTNWMGNqWlFRamczU21Sa2NpOTZWbkphWlZkTEwyNXVNWEJuU1djeE1GaHJZakJ6VVdWV1ZBcFFhVE0wZFV4VGIxZFhVRkF5Ym10dlRGZHRkRFoyVTNaeGVVdGFNMVp0YnpSWldFWTJRMFpPWjBSNVRXRjVURmxTYWxoQlZFa3lRMjlzUlRORmRUZ3hDa1ExVDJSeVVVUXZPR1pRYlZNNVRHOUlPSEk0Um1WbGJtcFVaU3R2YW5OMmJXRlNUSGRtWlVwUFowSkRlakZGWW5GSmJrTlNTakZKZFZaUmJXZ3JNRFlLVlVWMmFpOXJWMWhMV1dWUFJuZFZUVUpUZDNwNmFTdHRUR1F2V20xNVVXVXJUbkIwYUVGa0syVlJSblZ1ZWtOWU0wOURjeTlIU2l0TFowMHZjbkp3THdvemJFZFJjR2xtVW5WdVJsSmhhMWRhWVc4ck5YcDNTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsRmhaekpDT1dSRFpEVUtXRlkyV0hoNE9UQTBPVUZ0V25aRmQzbHFRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRjNWV2hCWnpsRFRtTlVTbk5OUzB4T09XaGFSUXBLZWtGaGVrTnhaRkJrZEhOSlJEbDBMMlZDTWxWRlZrWmljV1pvY1daT1NWaHZWekJuTjBKSmNIQlJSbXg1ZUM4d1YxbGhkbVl5WlhONWVWTTJSM0JJQ2tOaU9FUlVUalJIWnpSb2NtazBha3hZY0ZaYWIwZGpLMUpvSzJ4M04wSnZUek5zYldKQmJYbFJhMkZLVTBkNWN6TlNXbGt4UVRWRWFFRnRXVEY1TDNRS01VeEhWbkJZTTA5UmN6TkRiMDV6VUhkc1pqaGpOSGRRVUZOeFZWUjJSa05rZURaQlRFUXhWSHBJUjNkcVpYRndiMnd2T1VGU2VWWlBWbU5HZVZReVZRb3lRME55WlV0MFl6QjJiRVpYU1RsVE15OHpZV3BsYTBwa01WSTJkRE5MY2tzMWJtOWhMMmRvYUhFdmQwRmhXR1oyZWs5SFoweEVaVFJhYUZGalN6TmpDa05uY1cwd2NUZDBSRE55UWxWTlZHVnFhMDQ1TkVabVdqWTBUSFZ6WkRsUU1rOTVVRlEyUWtoYVp6WlhMekJ6ZVc5YVVVMDBkamx4VkhaaVlWZHJiM1lLUmpoNUt6WlpjRTFIUzJabFpsQnNLMmxLTW01bWRYTm1jRVF5U3pVMFMxUldhVEJTT1ZCRk9XVnVWRmR4Y0ZCa1IyOVRPV05KVlV0U00xVTJNV3BRWndweE1EUk9kWFZsUjBWTWJYZFBUMDVOTWs5RVNGcGpjbEJTYWl0c1UwWXliRUpRYmxkWGF6ZEdWVFV5SzBKSFdIbFdUVkl6TjFweFJtdDViemROYzBWcUNtWnJZa1pxUTJoblJYWlFUMHRpV0RWbGEwSkxiMU5OU0cxalMzazJXV3RPVHpKc01DdDBiRFJtUWtWTVVFZHFSamM1YjBkS1RrdGtOVzQwVmxkcVZtb0tlVmMyZEhCYVdtOVFORzlwWjBGeFZYcHFVR0ZGWTIxNmFtSlJkbUowYkhOSVdFRk5lVmR5Y0hSbmRYaDFNSHBVT1hKWVpIaFhiRlUwU2xSTGNtdFdNQXBqVlhGb1JrSjVWVEpGZVhSRU1VeFdla1ptZDBoNk16RnhTRGhGV1VWeU5tYzRXV2RvZFdKcVNtZEJTRTlFVERVMFowMTJTMDVXYTBrd01IRndaWFZvQ21OTmRWZDNSak4xYkRsdFpFeDNiVUZJUkVadWNteG5QUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJNM2N2YW5Jd1JtRXJjbk5LZEVoTVZrbExlR1J0YVV4cE5reENUMDl2YWsxSlowOW1UVTU1Y0ZST2FuRkxVR3B6Q2s4MGFYaGhkSFoxVjBaSWNFdEJiVkUxYjJaaE4yVnNjVzFDYlVwV1lVSTFUMGh6ZEdWeGExTTNjR3N3UW01Tk9FOVpNMWw2TWl0U1VHODFOV2xZVTBnS01qVm9Oelp6T0ZkTlRYcHFjRmROVUhjeFpUQjBWMFJFYUZWNmVtbEViMjVoV0hGc1EzY3pjVmR2ZUVreGR6WXJRMWN6Ym1kTWNVTTFVV1l3Y0ZWd1ZRcFZPRFl4Vm14YWRVMDRNR012YkZCemQxTXlVVEZ5YVRoYVVYaFpZMDF1YkdSSFRUaHhkRTFWTjI1M056aDVja0UyZW01dVFraEZiRzVSVjJFeVkySldDbWNyTWxsRksxWnBTMk4wU0hkT1F6WnZXVFIxTUhsQ04zWmxXak5KZFcxRFZ6VkRabFJJY1hjckwyVk1iRGhKYURWelRWRkZkVkZuVWtjeGVVdGFOMVFLYWt0a1JGaHZOeTh3ZGtWSlZ6WmFVWFZsVnl0V1lWUmtla296YlVOSlFtOXhZbVp5ZVhWTVZEZGFVMGhpTTFSWFp6bHNhRk12V2pnMlZrdHpSbXhKVFFwbGVHeDJjV3hyYkZVelRtRmFSVzVaY2tWdFQxUXdTWE5SVkVKU2RFTktXa0U0V1N0YVkySTBZVVEwVG05YVpXRm5NM0ZUYkhGck9FbG9kRE5MTUhKeUNtRXJhbmRtVDNsWVdHRXZPREZoTWxoc2FYWTFOVGxoV1VOSlRtUkdOVWM1VEVWSWJGVjZOSFFyVEdrd2NVWnNhbm81Y0RWTFF6RndjbVZ5TUhJMmMya0tiV1F4V25GUFIwWjRaV2RvVkZsQk9HcEhjMmt5UlZreGQwVjVUbWR4U2xKT2VFeDJUbEVyVkc1aE1FRXZMMGg2Tld0MlV6WkNMMHN2UWxodWNEUXdNd3AyY1VrM1REVnRhMU00U0ROcFZHOUJVWE01VWtjMmFVcDNhMU5rVTB4c1ZVcHZablJQYkVKTU5DODFSbXg1YlVocWFHTkdSRUZWYzAwNE5IWndhVE5tQ2pKYWMydElkbXBoWWxsUlNHWnVhMEppY0RoM2JEbDZaM0pRZUdsbWFXOUVVRFkyTm1ZNU5WSnJTMWx1TUdKd2VGVlhjRVp0VjNGUWRXTTRRMEYzUlVFS1FWRkxRMEZtT1hvMGN6RnVVRFF3UlhScFpGVnRSbEZvY0ZkeU4zRlRVVFYyTVRkc1Eya3dSR1owTkRGb1J6VjNabXRGY0VORGJYbDRSa1p2VFhSeGFBcENLekJhTXprMWJqVnBlbGhpVjNwNmJVWkVRa3MxTTA5MWFTOXRhV1pDVFVKVmQwTkVaSGM0UTI1WFdsUXhNRzFKZERoQ2FXOXJTMnBUTTFSNk9Fc3pDbXczY1hSTlkyNHJjM0JKZG5GU1dISkxkemxoZEhSMlF6aFFWRTU1VjNvemJtVnZOVEJITjNGa2VUZFBjMmhrVHpWa1RUQkVSMjVFU1V0RlZrOWtTVWdLUmpScU5HMUxSbTUxTUZORlUxaFhXRU5rVEc5NFpuUjJaa0k0U1c5TFJTOVNWWFpuUTFaWmR6TjFVVzFoY1VsbU9HTnRRbGR6ZFZOMmRERkVaVTlwUndwNmFGWTFSblptWlRsMk9XTnpTVTlhU2xOTVFVRktRelZCVjI1Q1ZXWjVaeloyY1dFelZVTXZiM0JsTTA5Tk1rdDJNVWRSVkdaUFlVZ3dkbWN4UjI5VkNreFRWWEZsUkRFMFZuVlBURzE0ZFdkTmJXaFJRVzFhWkhocEt6VlFPRGxFT0VVMk1FUjJaRGN5V0VOVVVHNTNjemQ2WjJoa2VHRlVkMFZqYmxVNFZuY0tSVUpLTW1WQ1lVaHBTbk5KZEZOVmJETTJkakpHYUhsbE9ISm9VM1Z0U0dkNFkweE9jRmxRVTBGcWNXTTBUazFKVFhWcWJ6aHdVbU4yYVVodVNFSXdkUXBEVG1aTlFqRlFTakppU1c5RFlsbEtjVEpDVG1Zd2FsZGthMDRyTDB0NmNHeDFiVXhTV200NVVrSlpWazQ0TWxsTGFqRlZWRGsyY3k4dlFqZDNVRU5rQ2xsWGNHaHZhalYyWkRoeE1qRkVaRFJXYlRKcVJuZ3JUV3cyWkdwNVowaFRRVXA0YW1kU0wzUnlORmx4VWxaT1FVaHFiMmhwZUZaWU4yMVJlVUYzYXpJS1oxUXZWa2gwVW1kM1NsRnhlRUZRZDNKQ1UzcGpSV1pSZG1OWmVrcGFWSEZIT1RCbVVFVlBiVnBWSzNsdWRtMUJORlI1YnpCME16aE1OSEUxWVhOVGN3cDBZVGh4WVZwRU5uVnJhSGxzTDAxUGJVWnFRVE5QY1VkV1NuaFVZU3RzVW5SeVpuaFlRVzgyZERWc01VMXpla0pCYjBsQ1FWRkVlRlo0WlhkRWIxUmlDbXhaY0ZSMVVHcHZObk0xTW1wT1ZEa3ZZbWxPV25kdFRYUnNabVZrTVc4MFZEUm5iaXRQWldGUWJFTkVURGt6YlV4dVpqRlRVMjl4VVhCRFZYbE5OVVlLTHl0WVUweFpZMnhsVjNGdmJuTkpjSEpFVlhaUU1UaDJVMXBJU2tsc09UWnlTa0U1WkhCWlYweFZNMDlKY1hjek9WQXhUaXRpZUd0SWQyOVVlVXRpUndwVWRsWm1TbmhJZG1ZNVZEaEZSMU5RTVZOcGVrZHFWM1Y1YkcxRGFEaDZORzEyTmtKRVRHRmhLMVpOWVU5clJGa3lVRzlITlhWTWVEVkNaSHBrYlhCckNtOW5Oa1ZpU1VoM1dYWjFLMVo1TUVGS2Npc3hOV3hoZUhFMFpVeEVWRXRHZDNkbFQzTlFSRWhsVjNsRFpWTk5WVFp4VnpkYU9UaFliWEpyYkdGWVoxSUtTemswVlU5eFYyTktXRlZET1M4clJFZHFaRU5vYWxZdmJEVm1XRmwxV2s1aFVWRkRXSHBDZFhCd1QzTkRSemRTY0c5dlR5dFVSM0ZFTlRCSWNsbG1VZ281V25saWVHMWxhbWRCTDNaQmIwbENRVkZFYzI1S1JWWmhhbFF5VWpaR1ZuSjZWR1JXWVVSTFEyWlVlR1ZKYzBwaVQySmhSRlZWVEZCdGMzaE5iMk5IQ2xsR1pXNXNZVEZHYVdobmF6ZFpVVUZpUVhsT05GQktVR1l5VEd4Tk4wOHZXbU52UkRSaEt6QmFjVTF0UmtWWFFUWTBjamg1Ykc5T1ZHdGFWRnB3UVhRS1IxaEZVR3gwY1hsbllrUnFVRkJRUm1nMVVuaDVaRlZqYlZCMGVVWkdia2RRYVhKVlVrdDVOVlZSTldkT2JEUnhMMUpQVFZscGVFTTFVV055T1doNmJncDFWMUJZYnpod2VVTnBiWGMyU2twS1VFWk5kMHN6WWs4eVRDdDBSR0ZSYzJrd1NVTk5VbkIyY1haS1ZURlpkRzlDTlhneE9XMXBNVVZET1NzdmNUSm1Da0pzV2podU1WcGpSbVpUUm5Cd2RUQlRZM3AySzBWU00waDNkVzRyWWpScWJHdEJURll4YTFCR1pWRnJPR3RZWVdaV01FdHRWVnBTWmtkdVNqaHBSRzRLV1ZjeGVGUXZTRVV2VUN0TVEzZzRSR3hpU1RkblFYUjNUbUZuVXpOTWVqVk1RbU0wU1ZKUmFFRnZTVUpCVVVOTE5rWTNORGxhU21kMFRsTXlWbHAyYlFweEsyVkVPSEJHVWxVMmVtRnlibWxtY0dkQmVsTnhNRU5DYW5wUVJGRk9OVVYxTjFOWk1GZHpSRUZxT1doRmQyaHZUV2xKTm00NVdHRlBLMFp3Y2tSSUNub3ZaV3M0UTA4dlUzRkJaQzl5UzNocEx6SXJUQ3QxVjNSNVdXRlRiSGRsYWxweVpubzNUV2xVWmpsU01YcEZiM2t6YWtsYVJrRm9hV2xpVDNseVZWZ0tSRnBQZDA1V2N6aE5hWFJJTUhkcll5OTBha0ZQV25WMldqYzJaVEZ2ZEhZM1duUTBWMEpyYXpsMFdVdEVVRU5KTWpScWJqWjZkRmhwY2sxcFdYcFllUW92TTFnMFZ6Qk1TMlZKVFZac2JYUkdkbVl5TkN0cVMyWk1UamN6YzFRMFZrRm1Na1J3TW1WaGVsZG1kekIwZEd0UllXcGFUVXhvY2pSaWVtdEdaRVp0Q21FeVZFc3ZZVlI1WkRZNVozVmtRMjVFVFVSWWRIUlFjSE5GTUdaa1JuaDZRVFoxZUdNdlZXTTVSMk0wVFZKUU1URjVSRUl6TkRWNVQxcFZXRlF2TkhNS04wUlBMMEZ2U1VKQlVVUkdMMEZTVTJaUWIzZEZZVkJ2UWt0RmFHbDVUSFJ5UVUxMloyOVJhM05QUmtOR09WSnpTV2xEYW0wdmJuSXhabGhEYm5KWVRBb3JSVGxZY0hZM1RFMDFORlp2WlVwbWNuVklZbXMzVjFkTkswRnFLekZoUVdneGJVRTFXR3cyT1VwNmNVSlpMM2RxYTNrclVVcFlibWgxUW1GQlVYRnBDbFF5TjNBeFptcE5hMnBSWlU5d2NDdFJWM2N3SzNRMVlubFhNR2hFVVROVFUzZGlVMkoxZGtFMFRqZFpiWFJWWVdKSVdHaDZVMEpIY2xwUWFuWnZVVW9LYUVsT05rdHJSWFF3Y2twNFNHY3haRFl6VVVodkswSTFMMVpUVVdKUVNVZ3JiWGx1YlRjdk5HNXNXRWhTZUZrMlZ6TTNRM0oxZDNOdmNYSXZkMGgzVFFwMFluQlVhM2xQTm1GbU5UTXhZUzlGVmxVdk1XdEVORkJ1VVhWa09HTnlkRzF2TWpaa1NtTkxlV1JrZFhCUE5UUkNUR2x2WVVabmMwSkNVVVoxY2xVNENqbGpORWRXU201M055OVBhRmxtVlhkUlZsZFFOSFpEYkU1elZpOURMemRDUVc5SlFrRklVVzFQUmtaQlFpOXJaRTFIT0ZGbmQydE9hMnhrVmk5VWFFOEtaR1Z3VTNsMlpIZHZhek5rZDNSeWQwRk1aUzlTVVRoelpWWkVSREpqVGtOUFRsTm5PVFZqUTFCUVZVNVRWVmhNZVdKd2VrUnZOSGhRVDB3MmRVTk9hZ3ByTjNGUFNXOTNWVWhKYVhWVWVGcG1hMkl3VEdwVE1VNUZWVXRRTVhCU0wxWm1ha2hGWlVsQ1FtOXpWVTU0YzB0eFMzcENjRlZOV1RKdldUWTFaak00Q2twd1pXVnVUREpyZWpVMU9ISkdXRE5ZYW5oUldscDZaVWh5ZFZKNVlrbzVRUzltVkdac1NVbzJZMEZ3VlZKTmVEUkxjWEZYVm5WQ01UUmpPU3ROY1VJS2IyUTJhVEVyVWpOTVIzUXhSSFpvZVVSblFrcDRVMGRYUzNCUVRGTnNPVTFqUldFd1JVUkhUR05RY1ZGR05XVnNaRE0xVkVwdWNHTkdUVzVOUkZKck9BcHNabVF5U1VWSVl6RlJUazVvUW5OeGNIZHVUSEJGUXpSaVdUWk1aMnRMWW14SVpIVlhRMFZ6Y1c1c2VtTnNkbk5yZEhOSGFuVndOVlJUWnowS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiB2a2d5aW1xYmNiZWFpY2c0c3V5YTJveXM1NnlrYjJoN3diM2JxYm4xZDNzaThuc3VzN2dmOTg0eHU2MDVlaWo0aHZpamw5Yml5ZDV0cDV1aGN5bnY4ZHh1ZTZyMHJhb2V6emc5YW9pMHB6Nnh4MjJ4enBsdmJjZ2k1aml3OHN1Zgo=\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13072' + - '13084' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:06 GMT + - Wed, 14 Jun 2023 19:50:06 GMT expires: - '-1' pragma: @@ -1016,8 +1255,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -1025,17 +1264,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cb7e2b0e-6bc4-4bf1-af5c-13283b086388?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a209e4a-37e1-4382-9dd6-f028b916cde6?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:17:07 GMT + - Wed, 14 Jun 2023 19:50:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/cb7e2b0e-6bc4-4bf1-af5c-13283b086388?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/6a209e4a-37e1-4382-9dd6-f028b916cde6?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_blb_vmas_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_blb_vmas_msi.yaml old mode 100755 new mode 100644 index 698321d4175..a5cfcdf7a3f --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_blb_vmas_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_blb_vmas_msi.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 09:56:27 GMT + - Wed, 14 Jun 2023 19:50:12 GMT expires: - '-1' pragma: @@ -54,12 +54,11 @@ interactions: "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "basic"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "basic"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -70,65 +69,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1429' + - '1721' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-qbr2mho0.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-qbr2mho0.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-0vhu8nsi.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-0vhu8nsi.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\"\ + : false,\n \"provisioningState\": \"Creating\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f87f9c00-e462-4329-8d3d-717c67b7f7d1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b4d59cdd-15a2-44b2-a29a-bc3895c6a7cd?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3041' + - '3368' content-type: - application/json date: - - Wed, 15 Mar 2023 09:56:31 GMT + - Wed, 14 Jun 2023 19:50:18 GMT expires: - '-1' pragma: @@ -158,56 +160,59 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-qbr2mho0.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-qbr2mho0.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-0vhu8nsi.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-0vhu8nsi.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\"\ + : false,\n \"provisioningState\": \"Creating\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3041' + - '3368' content-type: - application/json date: - - Wed, 15 Mar 2023 09:56:30 GMT + - Wed, 14 Jun 2023 19:50:18 GMT expires: - '-1' pragma: @@ -239,56 +244,59 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-qbr2mho0.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-qbr2mho0.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-0vhu8nsi.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-0vhu8nsi.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\"\ + : false,\n \"provisioningState\": \"Creating\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3041' + - '3368' content-type: - application/json date: - - Wed, 15 Mar 2023 09:57:00 GMT + - Wed, 14 Jun 2023 19:50:50 GMT expires: - '-1' pragma: @@ -320,56 +328,59 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-qbr2mho0.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-qbr2mho0.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-0vhu8nsi.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-0vhu8nsi.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\"\ + : false,\n \"provisioningState\": \"Creating\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3041' + - '3368' content-type: - application/json date: - - Wed, 15 Mar 2023 09:57:30 GMT + - Wed, 14 Jun 2023 19:51:20 GMT expires: - '-1' pragma: @@ -401,56 +412,62 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-qbr2mho0.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-qbr2mho0.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-0vhu8nsi.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-0vhu8nsi.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\"\ + : false,\n \"provisioningState\": \"Creating\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3041' + - '3757' content-type: - application/json date: - - Wed, 15 Mar 2023 09:58:00 GMT + - Wed, 14 Jun 2023 19:51:50 GMT expires: - '-1' pragma: @@ -482,59 +499,62 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-qbr2mho0.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-qbr2mho0.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-0vhu8nsi.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-0vhu8nsi.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\"\ + : false,\n \"provisioningState\": \"Creating\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3430' + - '3757' content-type: - application/json date: - - Wed, 15 Mar 2023 09:58:31 GMT + - Wed, 14 Jun 2023 19:52:20 GMT expires: - '-1' pragma: @@ -566,59 +586,62 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-qbr2mho0.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-qbr2mho0.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-0vhu8nsi.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-0vhu8nsi.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\"\ + : false,\n \"provisioningState\": \"Creating\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3430' + - '3757' content-type: - application/json date: - - Wed, 15 Mar 2023 09:59:01 GMT + - Wed, 14 Jun 2023 19:52:50 GMT expires: - '-1' pragma: @@ -650,59 +673,62 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-qbr2mho0.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-qbr2mho0.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-0vhu8nsi.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-0vhu8nsi.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\"\ + : false,\n \"provisioningState\": \"Creating\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3430' + - '3757' content-type: - application/json date: - - Wed, 15 Mar 2023 09:59:31 GMT + - Wed, 14 Jun 2023 19:53:21 GMT expires: - '-1' pragma: @@ -734,59 +760,62 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-qbr2mho0.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-qbr2mho0.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-0vhu8nsi.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-0vhu8nsi.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\"\ + : false,\n \"provisioningState\": \"Creating\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3430' + - '3757' content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:01 GMT + - Wed, 14 Jun 2023 19:53:51 GMT expires: - '-1' pragma: @@ -818,59 +847,62 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-qbr2mho0.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-qbr2mho0.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-0vhu8nsi.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-0vhu8nsi.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\"\ + : false,\n \"provisioningState\": \"Creating\",\n \"powerState\":\ + \ {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3430' + - '3757' content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:32 GMT + - Wed, 14 Jun 2023 19:54:21 GMT expires: - '-1' pragma: @@ -902,59 +934,62 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-qbr2mho0.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-qbr2mho0.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-0vhu8nsi.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-0vhu8nsi.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\"\ + : false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3432' + - '3759' content-type: - application/json date: - - Wed, 15 Mar 2023 10:01:01 GMT + - Wed, 14 Jun 2023 19:54:51 GMT expires: - '-1' pragma: @@ -986,62 +1021,67 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.24.9\",\n \"currentKubernetesVersion\": - \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-qbr2mho0.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-qbr2mho0.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Basic\",\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n - \ ]\n },\n \"maxAgentPools\": 1,\n \"identityProfile\": {\n - \ \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-0vhu8nsi.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-0vhu8nsi.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n \ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Basic\",\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 1,\n \"identityProfile\": {\n \"kubeletidentity\"\ + : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \ + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \ + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n\ + \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n \ + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '3677' + - '4004' content-type: - application/json date: - - Wed, 15 Mar 2023 10:01:02 GMT + - Wed, 14 Jun 2023 19:54:52 GMT expires: - '-1' pragma: @@ -1073,62 +1113,67 @@ interactions: ParameterSetName: - -g -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.24.9\",\n \"currentKubernetesVersion\": - \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-qbr2mho0.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-qbr2mho0.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n - \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Basic\",\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n - \ ]\n },\n \"maxAgentPools\": 1,\n \"identityProfile\": {\n - \ \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-0vhu8nsi.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-0vhu8nsi.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n \ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Basic\",\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 1,\n \"identityProfile\": {\n \"kubeletidentity\"\ + : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \ + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \ + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n\ + \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n \ + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '3677' + - '4004' content-type: - application/json date: - - Wed, 15 Mar 2023 10:01:01 GMT + - Wed, 14 Jun 2023 19:54:52 GMT expires: - '-1' pragma: @@ -1160,59 +1205,62 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-qbr2mho0.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-qbr2mho0.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-0vhu8nsi.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-0vhu8nsi.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"AvailabilitySet\",\n \"enableAutoScaling\"\ + : false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"\ + 1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n\ + \ }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"\ + ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Basic\",\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 1,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3432' + - '3759' content-type: - application/json date: - - Wed, 15 Mar 2023 10:01:02 GMT + - Wed, 14 Jun 2023 19:54:53 GMT expires: - '-1' pragma: @@ -1246,15 +1294,15 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSWW1KNmFuQkZNRlpDVjNsS1JGUkZRbWhXYVRFMFZFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCZWsxVVZYZFBWRkV6VFhwQ1lVZEJPSGxOUkZWNlRVUk5lRTVVUVRWT1ZHTjZUVVp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVObkNtOUNkVkJHZUZneVpXY3hhR3cwZVVaUkwzSjRjbkowY2tob1EwZGtRMEU1TUVGSVJtVjFNSEJ4UzFKRFUzWk1aRGRwYVc1MFREUk9RbmhKTkdNNVNta0tUbEppVG5aUVZXc3ZkSEowSzB4amIwRkpSbFEyTTNoeFZWcG9lRkowVjJOcmVUUTVkR0Y0ZFRKRE1GUjZWV1pFWTJsVFZEVndlVzl3Y2tab2MzRjVaQXAzY1ZWVVNUbHpRbk5KZGpkNmQyRktjbmxpVFhOVVJFeG1SSGR4WlhaUlJYUnFhbUV6VFRaYWNrNUVVbUZQYTBsQ1IzVm5iVE5RVmxSRVlXSmhZMGRrQ2psVmNGTjVNWGhpZVhveVVFOU1ObG8yZDBSVk1rVklOeTgyUzNwNE5rbGFiRFl3TTFkMEwzTnNlSEIxYVhCS1dXaEVMME12UjJsNllrNW9LM1l6TmxvS2FuSjRUV1kyV2xWM1VYcGxjMXBqVmpSa2RGWlBTek55Ykc1YVZFSXdkMmx6ZEVRNGFqTjBUVEZHSzJaU1VqZDBUV2M0VDJOME9WQTFOR00zWTJNd013cEZhWFpLZFc5b1pYSXpVemczYldwc1dsSlRjR012Um5WWWNHMW9ia2MyZDJsd1FrRnFORlp0VDBsck1qWTNZVnBRZUUxdlpFWkJWa05PV1RKSVZsUlZDbVJuZWtVMVdVdEdSR3R6T1VKT1YwMU1WWE5EUmtwdlUzUmxZVEJ5VGs5R2MwaHhWRU5RTmpsQ1ZWaFBhWFJyUVhCcU9WWjVNSGh3YW1sUFdVOHJObUVLYzNsV01EaExaSE5UVFhWRlpuSlNUR3gxZWpWd1NsaEdUMUZESzFWemEzcHVlWGd4TW1ocFJIaEJiMnMzZUdsU1ZIQXphV3hxYmxOeVNIWk5ieloyZVFvemFuaElNekZHV0ZCc01VRjNRVWc0TjJOTVpWZHNTRXAwUzJnMFFXd3JWM05NTWtsWGRqbElUR1poZG1JNE5XWXdXRUUzYURJME5uUlRaRmN2ZFdvMENsSnFWbXAxUW0xb1ptRnFZelYyWlhKa2RUSmFaMEYxVXpkNmRDOVNiQ3R4YzJkVFUyUjVSbVZVYTJKTGFVTkhiVzFDYzJreWF6bEJRM1Z3UWt0clpYWUtaMkV2WWtwM05sTlZSRGh0V1ZScGVrdDRhMnhIWjNjeFZGRTViVUZETlRWMlkyOVhlREJYVFM5M1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZVck5teHVNRTVPVVVNclMwcEpXR2h5Q25sdVR6UnFObUV6UjJSamQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGS1FXMUNOQzlxWTJ4blpsTndORkp1VFRKQ1lWRnZTMEo0Y25NS1YwdzVjemhPY0dKV1NESTVXVUpHV0hSUE4xZzBTa1pISzIxV1FtWnRNRVpKVldKcU1XeDVOa0pJT0U1NlZVd3ZkMUp6YlVnNFpESnZaak0yV1RWNGJRcFNZMDEzVkZKRE1tcDFWalZ0Y1VvMFRqQjRObFV6TVU1eE9YRlNaRGwzU0doMGEwRm1ZVk00Y1hKSFMwUmhjbWt5TDI5Q2NpODRVbmxEVjNwdVozQXZDbGxsWVdvMFlUTXJTR3hTV0dwVFlYcGlkMWd5ZEM5Mk9HcDJTRk40ZDFweFdFbHNSVkl3ZVdONWNVcDRTM3BrT0RGSk0wMTNNVFo2WXpSNVIxZFpUalVLZFhGUVEwNWxkV1IwZGtwREx6QnZXa2t5V2pjd04weDBNR295YVUxWE9VcDFNRlpHUzFwWFl6UlNjRkZxVWtwVWNXcFdOWEpoVWpNclJtdHBMMkphYWdvM2FXNVpOVTVoVVRaS1JFdG9VblZPUWs1NFNteHdOMnAzUVZGWksyZFdkelJYYWxkbFQxaGpaSFJGWVM5UlNIbzVkMkpsTkZoV1dGVkhRaXM1VW1seUNtSXJRV05sVDBwVVMyOUNOVUpsY0djMWJtOTZLMHRpVUZCQ1l6VlFNR05XUVhaa1FUY3JRbmhwVkZwdE0yNTNNaXR4WldOQlJUZDRTMVJZUkhCMlVpc0tTSFJrTkZGcFZqbEtlbEEzVWs0d2J6UmFTakZxYXpGU00yRmlVRW8yU1dGQ1ZXeHBVVk5XVDNOWVZGcGpPWFZ2Wkc1cGEycEtTbFV6VERnNFFWbHdlUXB5YjJOTldISmhXakZFYUdKdFQxbG9ja0pUYUVkUWVVTkZSRGhTY0RabWMyTmhPQ3RJVXpOeVVFaDBlWGxJVDFwdGNqTkVMMVZETlVNd1VIVnRTeTlrQ20xd05qRklRVmh3U1RoMVZuZDRWM0ZNV1hKdFVUSmlVbmswZW5GTU5FTnRUMmt2UWtneWNGaEpiVTVwUVc5Vk5ERm5NV2xyU0VkU2MzTjJSRW9yYmpjS2FWRnhOV1p3U0cwd2FrRTFUM2wwT1VRNWVtNW1lbWs0ZUVGRU5VbDNhRWhaTlZGaGRGb3pRVlYzVVZKTWRDODBRMmRVZUN0V1lWQlZkVEl5SzNNeVFRcFFOVk5aV1RFM2VHVmtSVVJKUlhwc0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3Z1M2RvNXYtcWJyMm1obzAuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3R2azJmbG0KY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3R2azJmbG0KICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RhYjNqcTJjbHN3X2NsaWFrc3Rlc3R2azJmbG0KICBuYW1lOiBjbGlha3N0ZXN0dmsyZmxtCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdHZrMmZsbQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RhYjNqcTJjbHN3X2NsaWFrc3Rlc3R2azJmbG0KICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVkJhTVVoRFNFUktVRmhaWjFsTVYyWkxTamxDWjBsM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDE2UlRGTlJHc3dUbnBOZDFkb1kwNU5hbFYzVFhwRk1VMUVhekZPZWsxM1YycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCZG0xVFpXbHlVMFpvTm1zNWRtbE5PRU5VU0hvS1Yxa3dVM1pJWjFCT05FNWhlVEJ2WVZVcmRYTktSa1prU3pORU9XbE1ObnBHVVdaemEycENjMnBOYnpSNGQxcFdla1pvUVdwMVFqSlZSamhOVmpSbllncEJhblkwYTNKT1YyaDRNRkF3YjBjNGJtRm5hSEJFYmpocmFEQlNjVEJrTmpOc05FMU5Oa3gxUzBkSlpTc3ZlWE5yV25GUk9IcE1aR1pPYjBFNFVIbEpDazlrTXpCV1ZtWTFaM05IUlVwWFJIUkZZbTVtVlhsVGNYTXlRMkZCVGtGSWFqQm5iMHRpTUc1T2EzVnVlVGxuZDNKVFNVTlJlR1J6VXl0RGNtTlpUWElLVEVkTE0wdzNSakpUWmpZelYyTm5VR2w2U21JMVJHaHNPV2R1UjBOVk5HaEJjelY1UkZwSU0xaFdVazVIYWxVM2RuRkllSGhVV0dNNVMxZFNaVkJFVXdwc1ExVTBRV0pOVEN0VlZtNUhOekZOUWs5Q09XWmFjWGd3U0hJMlRtaERNMnB4Tm5KWk1VVnBabmxzYTNsUldFZGlORGxwTUd3eFNXWnBlVzB6VkU0ekNrVlpVRkJwWjFwSE5WQkViVTF5TUVka2NuUlhNVFZtYm05cE9GQlVaVmhMVDBGMWNEWkROMVJTUnpGR2FWRkNVM0ZRVG5sNE9GVXhPVzR5TDJaMFVqTUtiRmhUT0daSU16QjVURVoxYVVneWJHaDZTamN6UkhFMmJIUkROVkl3S3l0dlRGSXlUMk5SZG01WVFsZEdOa0ZMWjFadmRWRm9TSEpYVWpWQ1VuaDFWZ3B3UVZsS1pITmhRMU5DZUZwdWNWQnZUVmxaYmpGME5UWndhMlE0THk4NGRubzBPR3hWZHpOb05rdHNka3BUZUZWNEx6Qk1UaXN2TXpSV2JIZGFiV00zQ2twTVZUZFlMMHh4V25KQ05FbHJhazFRUVdsaWMwNU1Sak16VUhKeFRWVlNkMFpwWW5OTlFXeDRjRmdyVjFkUlRrdHhhbUpxWVZNNFJrdG1TRVphUjJFS2VYZHFiakZ4TTJ0SGJsSnFWakZ3U0RBcmJFNU9OalJOYms5ck9YUTVVQ3N3UkZBMFJtdEdXRTl0U3pOVVpWaGpkbmRGWm5JM2QzcE1iV2RDT1dwb1RRcENlV3gzVmtOQ2JtczBSRlJzWkZKQ1pHSktVbU5KVlVOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWS3pac2JqQk9UbEVLUXl0TFNrbFlhSEo1Yms4MGFqWmhNMGRrWTNkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCU2tSdmVrVklaM2t3WjNWemRrMXZlbnB1ZWdvMFMwOXdkbTVGY0d0V1drZFhNV1pNZGtoak4waDRObEU1YTB0eldHOWhOMmN5SzBwNFJVUXZiRGRzV2pOYU9WVnRlRkpLY0hrd05DdEhLMWhMWjBaVUNrZHhhMnhQUjFwaVMwbFRVRkF3VTNoMWN6a3Jla2hHU2xJeVVsZzRhVEYyV1UxWWFXdHBRMjR3Y0VwblIyRTRaMjgzV0RSTGVVTTRjM0ExZGpsV1RVd0tOMDB4TlZaNVZIRnlTM2QxWldkS1JEaFZaa1JzY25ndlNWWkNNazFwTUVveGVYVnJPVmR4YkRjMFFuRkdka2hsZUVRNGNEZDBkbFZOVFc1SFlWSnBVd3BMZVdrcmNqSktMelozVjIweE0zRnRXR1JpWTFKUGNYcHBjbGcwUmpBdk4xRnROSGRWVW5GVVZHcE1hMFJQVFc5b1kzazNTMWh0TkhkeldXWk1kMlJqQ2xjM1Npc3hSV1ZJWWpVeGJIZ3hjMk0xZFc1Rk1IWjVObWhLY25wMlVsZEhjbE5IWldaQ0wxazBiMjFpTjBWTVZYVlZUeXM0YkVaWGVUSmFTREJsVjJ3S2NWTndSbE5yVlV4MlJHOXJRbXRTVm1nM1QwUXhVM0Z3VHpGdWFGaEJVWEZvVW1acFFrcFNTR1UwVTNCaVVtVkdUbmx5YUhjck9HOTFkV2RHZWpKSlZ3cHVWVmhUVkdOdk5FeENWQzlNVlZKbWVFZzJjbGxTVUc1a1ltcG1ZV3BtTmtWdVMxTTJRMGxSVWs1bE5XcGpiVmxqZGtkSFpuSlVRVE5qTkRKbVJ5OXhDblJaVjBKR1lrSjFWMmRLYUhwT2JtVlZSRGR0VEhNNGQyUTRNbUZzVm1KU2VqVldPV2gwYVVKMGVWbHZiUzl3TldkeVFXeGpjeXN3YlVSTVZVSk1RM0VLYm5wdk5IRk1OM0JhYW1SalpWRnNiWE0yV2xCSFVVMXBibTVvY21SSGRUTnNUM2RhYWpGUlRVaE1VRmhWZUVwTlZHb3daVmhNY0RoYVIyRk9SVUo2VEFvMFprRlNVbVpVYzNkWWNFMXNiMDFMWVhoR2RWQlRRVkJNYXl0dVFqVnpNWEZtUzNseGQyTm5ielZxT1ZWSVNqSTBXamxHS3pWcGFWSlJjVkJ0WVZjM0NqZHBjR2xwZGtjeVNrUTJja1JuUlhreE5raExSWEZCUlFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZG0xVFpXbHlVMFpvTm1zNWRtbE5PRU5VU0hwWFdUQlRka2huVUU0MFRtRjVNRzloVlN0MWMwcEdSbVJMTTBRNUNtbE1ObnBHVVdaemEycENjMnBOYnpSNGQxcFdla1pvUVdwMVFqSlZSamhOVmpSbllrRnFkalJyY2s1WGFIZ3dVREJ2UnpodVlXZG9jRVJ1T0d0b01GSUtjVEJrTmpOc05FMU5Oa3gxUzBkSlpTc3ZlWE5yV25GUk9IcE1aR1pPYjBFNFVIbEpUMlF6TUZaV1pqVm5jMGRGU2xkRWRFVmlibVpWZVZOeGN6SkRZUXBCVGtGSWFqQm5iMHRpTUc1T2EzVnVlVGxuZDNKVFNVTlJlR1J6VXl0RGNtTlpUWEpNUjBzelREZEdNbE5tTmpOWFkyZFFhWHBLWWpWRWFHdzVaMjVIQ2tOVk5HaEJjelY1UkZwSU0xaFdVazVIYWxVM2RuRkllSGhVV0dNNVMxZFNaVkJFVTJ4RFZUUkJZazFNSzFWV2JrYzNNVTFDVDBJNVpscHhlREJJY2pZS1RtaERNMnB4Tm5KWk1VVnBabmxzYTNsUldFZGlORGxwTUd3eFNXWnBlVzB6VkU0elJWbFFVR2xuV2tjMVVFUnRUWEl3UjJSeWRGY3hOV1p1YjJrNFVBcFVaVmhMVDBGMWNEWkROMVJTUnpGR2FWRkNVM0ZRVG5sNE9GVXhPVzR5TDJaMFVqTnNXRk00Wmtnek1IbE1SblZwU0RKc2FIcEtOek5FY1Rac2RFTTFDbEl3S3l0dlRGSXlUMk5SZG01WVFsZEdOa0ZMWjFadmRWRm9TSEpYVWpWQ1VuaDFWbkJCV1Vwa2MyRkRVMEo0V201eFVHOU5XVmx1TVhRMU5uQnJaRGdLTHk4NGRubzBPR3hWZHpOb05rdHNka3BUZUZWNEx6Qk1UaXN2TXpSV2JIZGFiV00zU2t4Vk4xZ3ZUSEZhY2tJMFNXdHFUVkJCYVdKelRreEdNek5RY2dweFRWVlNkMFpwWW5OTlFXeDRjRmdyVjFkUlRrdHhhbUpxWVZNNFJrdG1TRVphUjJGNWQycHVNWEV6YTBkdVVtcFdNWEJJTUN0c1RrNDJORTF1VDJzNUNuUTVVQ3N3UkZBMFJtdEdXRTl0U3pOVVpWaGpkbmRGWm5JM2QzcE1iV2RDT1dwb1RVSjViSGRXUTBKdWF6UkVWR3hrVWtKa1lrcFNZMGxWUTBGM1JVRUtRVkZMUTBGblFXdzFibGhCSzNOeFUwSk9hWEp1ZFhZeWEwdEVNblJMVTBWTVFXOXlZazVUU1Vnd2J6WmFia2QzUlZKd1VUWllPSFV4TTJScGRXdzRXQXBuZEdjME9YQkNlVE5uYmpaVldqaFpWV2R3TjFkV1FteHdSWGh6UmpOQlYwVXJhMjV2Um5ScU9XcDFUSHB6Y0ZSdVRUbDNZbkZVZW5sYWFtdzFlV0poQ25GS1duTktOSGQyWTFVNFVUbFJibWgyT0VKcVpVTnZlbnB5UmpObk16RTVPVGRPVG0xcFVYRktTemxOYkdkdGEzcFhia1p3TTJSQmNtbHBla1o0VVZnS2NYWllRbFY2U1d3eUwxWnJiMW8xT1hGSk5FRldUWE5OU0RaYVlXZGFVV2g0Um5aa2QzWjZVWFpKYVV4c2Qza3ZNRFZLU1dSbk1tTkZTbVF4Y2xrM05ncHpTa2hxV0VWTE1EaDBMMlo0VUVWU05YWlZSRXB0Y0dNdmRVOU5XbWhTVDBWcmVGSTFUVlIyZFhKRlJsUTBUSEp0THpOR2JVcFdlV0ZqVjBGbE4ycFhDbGh1U2xacFpraHpTMjFCYTBkU1JEZ3JNa1JSTjFOaFUxcG5jRkJrUm5sV1JGaG9kM0JJY1RCUlIxQkJUMUkwTm05dGVtVlhVVFpJZDBkaFRqQldLelFLVnpVd2RHUmFhWHBqVjJkeGN6ZFNWMGRhSzA1V1ZITXdSa1JRTWpGTU5YVmhTSFJXTDJWbmRUaFVXR1UyYW1KUVFVOVRSbTQxT1ZNMU9XNXFPRkZwVFFwSllqZERUamRDVHpJcmQyaHdhV04wYjFaUVUzRnVLMWt5Ykc0Mk9IQnpSalZuTlZsUWNtWjFkMng2TjBvNGFFaG1TVEoyYnpGT2JXUnVTMXBhY0VSWENsWTVSbXh3VWtkdVlqUmFLMDVGZGtVdk0xWmlWelZJVDNOSE0xZFdObmt6ZURKbFQxVkdjWFpZVkV4YU5sbE5iblpsVkdGR2FVOU5UWEIxUW5kUFZYa0tRWFZFZDBwbE4zaFdZVVZhVkM5cVNqa3JiVkpuVUVaVFExVnpSekpWTTJSWmN6UTJUSGM1ZW1ORU1tY3pUR3hoYUdocFJsZFNLMmxUZDFwWloyd3hid3B0VW0xTk5rOXNZbEV5UTBkSlduRTBUWEZwZEdKTmVXWkhSWFJHZFRWemNXdEJSWGhzU25wR1JtMDFRMmhzWlM5UlVVdERRVkZGUVRNeWFWSlpSVXhyQ2psQlFpOVpkMEo2WWxsS2VtMVpRalJvVkhrelN5dE5hVFJXVG1Wd2QzaFdjbVJpZUhCU1dFcGxjQzk2YkhZck4yNXJTMFpsYkhOV1VtOVJlblpOWWtVS05teERUVWRsTm5GdFZVWlFWaXRWVTBaTk9HUk5hbGh0Wkhrd1FWaHhaRFp6V20xTFRtTndNVTgwVTNrNEsycFNibVpvUTFBMVQyeGxXRkl2YUhVMWJBcHRWVlJ2UW1OS1YzQXZhVkJ5ZUZnMlVWQnNiVzE0YlcwMGFERnRTblpoU1hkdFRFaEViVmczUVRGWlJXMXhiRFkxVURaMWQzUnlZemhsU0ZGSGJFVTFDbFJMUzI5dWVUWXhlblF2UzBkUmEzTnBXRmw2TVVWc2RHTkJOVFkxYW1kYWJuWTBWVGhSVjFBd1RqWTJXbGRoTjFSME0wVTRlbkF3WlU1TlQycEhXRmtLTURGa2NXd3JVMnhrYm5GNlkyaFNXbkZIZDBZM1EwTmtiQ3RwYzFGcFkzTXpla3gwUXpGSEsxSlpjalp3VDBKTmVrSTRRWEJzWkVodE9GVXlTamtyTUFwRVYwMVBSRzFVVldwVlp6UkRVVXREUVZGRlFUSnBjMDQ1VkdzelEwSm9ZVkJuY1U1eGREbFpWWGszT0hCdFVWbHVTVUp3VjFaTlEzQXJUMnB6WkcxUENrRTBaamgwYlhSRVdGWkNSazR2UVVWVlF6VnhZa3Q1WjBSMmFFaE1XR1I2UmtvMVFXcHJhbG8xUmlzM1dFZ3haR0pRTWpWSU1WUTFibVJVTm5sTWRtWUtNMkZqU2xobVRWTkZaMHh6UVUwNVZYQmhURmRVTkRSeGJWcEJObTk0YjFweGVFTllNMFZZVW5sUFdrMUJjUzlXVlc1MlR6Y3ZRekp1VFVGRmR6aGxNd3BwVDNOS01VbEVZMVJUVEdOV1RGZ3hOalpNVkdOelNIUlZOMjEwY0ZwalZXWlZUblV2UTB4MmJsSXlSWFpzUTBaSE1WTnZNbFZSZVVOM1IxaHZlV0ZXQ2paWmMxcFVPREpLUWxKdlVGcG1Za3d4Y0djMGNIRjNNM05ZTlZGM1N5dFNNekJ3YkZSeFNYVk9LMmQxTUVOdloyaHplalpYTUZKblpsVm5TVWxOVlVRS1VGQnROV2xrWWk5VlUyVm9abVI2VjNsS1VUQkNTSGxzYkUxWVdtMHllVk5wY25NeVlraFZOMjVSUzBOQlVVVkJjVUpZYjNGMVFYQnRiSFF4WmtkemRRcGlWVzlyTlRKNk9WRkhSalV2ZHpoYVozbGFVM0JMVW01SmFrRkRRbmMzY0ZVNVZtTldSazQ0VDFsdllrZDJMMFZrYUZkd1VqTk1WbGhQV0ZaUmRqSkxDbHBXZGpVNGEzUnhNbnBWYnpWcmIyWmFOMHcwUVVRNVNqRkxNazFwZDFGVlVpOHJSRVpJWjNGdVozWlhOMFJoVGpOV0swWlJNbEJEUmxKeUt6VnlXbU1LZEVkM1UzcHplR1ZUVG5oalJXNHlkVlJhYlVrM1pTc3lNMWR0YzBWdE1IWXJhMkZTYlVSMlJFNTBPVmhhVlhRNWVVazNOVWcxVUZVMVNTOU9RbXhqUXdwbGRUbDBRVzlGWjJaU2RuUjVkRFpxT1VKamR6WkdNVEZEVjFwd1NYZ3piMGx0U1hoSk0wZDZielZoTDFFM1JFeFRUWGxwZFZsak0wb3ljM2g1TmpRdkNuWXpRalUyYlRka1RtaGFkMHhyVVhKNlkzUkdUREZEUTA1cWRpdHNVRWRtYTI1elMwMVdjVUUzVjBzeEwyNUVWV00yU21oTFNXSnhNVTVsWlVRM05WWUtTRk5qYXpSUlMwTkJVVUpTVDJSYWIyaHVWRWQyYzNCaFluWk9kblYwWmxodlNtSlJTRVpTVG1ORlNFbDZLemhrVFhSUGRsVTJRbU5GUkZVeVpGcHJVQXBHVDA5M1pqbDNZbEJwZWtKaFZWQjFWSFZIZUU4NVprMTRWalpxYlhSM1JTdDBPVEl2TDFoWmNtdzFUMGhCVlZScWEyZFJiRWRKTURGQmRsbDJjbUp5Q201amNtZFJiRVI0YldvM1VWQTRNemhtYjFwWFZURkdZa3d3U21FNFIwODJkVWxPTUZCTFRHWnZkR3BaTTBoWlozaG9NRUZDTUhRNU0yOVJObUZtSzJJS1pVYzRkakp6T1VWbE9ISmtNM1pZVGxKclVYZGpjRGxsVVRoNksyTnpUbXBoTm05UlkxVnZaR04wWlhGcVNXeFdURGRMVms4M2FEQjVlVlZTV1ZOVGVRcHJXa1pMUmxOcGRreE9NWEZ6U2xCTWMxbDFMMDFhTjA0d05WVkZVV0l5VkdOM05UWXdhbEp3S3poaU5sVXJjbGwxWjJwTmNXOHdZVVp3TDA1blp6VnpDakpMVWpOb09VVjJka2d6YUdKallqUk1VRVp1ZGtoVFV6QnJSR2hCU1ZSQ1FXOUpRa0ZGYXpoTFFUTjZkMnRGTm1KUk9XZHJlRXB1YjBsTmNYWnJabmNLU0N0eFUwTk5PVXBDZEV0UWFpdEVVbVUzUVhKMGJtaExkRTVWYmxGT2JWUlBVQ3N3VkZkRlltcGphazlaWW5OMVIzZENVSGR5TlRWNmFFcEVVVnAxVVFwcE4xWlJjbWxrYUN0T2VuaEhSbmRQY0RsdlRsQm1SV1J5WjFwUFkyRjFUMmRuU1dsRFIxRnhVMEkzZW5GeFFqbGpXa2xaYkdWa2FIaGxaVUpoWTBKT0NqbHdkV1o0Y0c5WVkzVXdOVFZGTjFGcVVUY3daREJtV1VGSVIzbG5aR0pUZUhGUU1uQlFaV3hJVVROQ1drdHVMMWMwYURWT2JHWlRWbWcwV1ZjeU9Fd0taa1pwVDBSUUsyUkJkbVpQZUVaNldWVTNZemg0Y0V4WVFUaHhSbGhRWW5kaVdISnNSRFJWYzBkTVYxUjBZa05YYTB4UVoxZGhkRzg1Y0ZwMmNYTXJOQXB3VERsTE1GUjNZVVJzZUZSRVduQTRSMVJHZFZRME9YZENWRGRWVjBGaVNsaE1jRFJZTmpGNWRFRk9XRWRwUkZoaFRUYzVVVnBxVjNsMll6MEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogemh2OWJucGkzZ2Z4cm10dGwyNzRudThpOXN3N29yanBrOG95Nm96bGQxejAzdWtyYWdwazNzaTR4cXh4MmluaDI0cTUxMmEwMmM1MTdqNnowNng3ZG13c3lmOWx3bDk0eWs5YWZ1OHM0ODl0dzRnYWpuMHMxdzdxZjl5ejRxcTEK\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSVFVzMGRETkZjMGxYY2xSb1EyUnpOMUkzVDJkUWVrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYaFBWRkY0VFZSV1lVZEJPSGxOUkZWNlRVUlplRTVFUlRWT1ZFVjRUbFp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVNeENrODNhbkJDWkZwWVRXRXlSV1pSTmxCTVl6aFFkR1JTVUUxR2RVZFpOMWxKVjNoNVIxaE5XVlk1UzBOWVVqUmFOVmR5UzJWUU1FMVVXVUYyZEM5dGExWUtjR3B2WVZoVlIwNUtLemx5T0hZd1VUaEpSM2gyUzJSbFlpOW1jMDFTVUdadGVVOXJhVGszT0hSUmNsZElWVWRJUW14bllrWmtUemhzYVV0NVZuRkhSUXBoTlhOaE0xTlNjVFY0UldkVGQyVnRjbk4xUlU1T1JEQjZha040VUVodEswVm1Va0Z2YmxGMWVFdDJlRlJ6TVVWRlIxSmFibmd6UlVwTlkzTmtWMmhqQ25CME9YVlZZek51VUZCcVZqUmpVRTlUTmxac2RXUTNSazlUYkdWMVVVSkdSRWxLVmt4M2VsSlNiM2hqWlZsc2JFUlpWM1JyS3pWbGVIQk1WSHBQTHpFS2JGbFlZazVHYkdkVUwzcE5OelZUUTBObk4yOUJNME5rVkdocFprRlBSVFpwUWtkYWEyWmlVRTk0Vkd4U1ZURlhNbTFYYXpkU1JYVXphVE5xVVZCb1ZBbzNWa2hXVG5wR2FtTXhaMVpKVlhob2VWUjZUMmhNUlVwTlIzaDFXVkUwSzIxRVUxSnhTU3RaVFhSRk0xUk5aSGR6TDBwc1ZIb3JhekJJYUcxRU4xTkxDa2xCUTBRMVdFbHRRMmRNYzNkSUwySnFiR2g0Y0VGdlkycDBWbkpTUm5CcFIyOUZSMnM0UXpCcGNFdGhTWFYyU3paQ05WUnpWV1p2Y1U4M01FbE9aVThLZEdkbldrMTRTMGxRWjFOa2NtazBVVGh2TjFCellXNVNiWHB6ZUVORU4wRTNNa3hpWWswclkxSnNUVGwwT0ZKeFpFSm1SR0ZQY0hOR1VVdHdTMVJ1T1FwREwwOVlRWHBFVFVKaVNtTXpOakUwYnpsRWMxSlVSVmhQWlN0cVVFdGtTRGx6VFVRd1QxSnBNbTFxUVZsd05FWjRRMUJGYVVkcVJDOXJUbXhWV2s5dkNuWnBOVVJ6YW01bVpEWlRSSEI2VVN0NGN6VXZWRlIzVWxJMmFHSjBNMWx3VXpkSFRuSndMMll4V1hnemVITlFSMlZpY0ZRd1JYbDFWbTFrYjNJNWNIWUtORlowYWtKREsyeENRVTlxUzI1SlkzWXJPRVpUVm10WlJVbGpTVU5EUjBWMGNHTkJVMUF4VEROM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWbVRXeDRRV0ZVV1hGWlprVm9RU3QwQ214b01XUnVlVTAxVFRWUmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGSWFHdDBXa2RQUm1SR1lrNTJiM2hWVjB0a04zZGhhR0YxY25FS1JscHRVbXB0YzBNM1FuQXpUVU55TkVkcGIwUm9jMmxpWjBwdVJrSk1OamhXTjBRNFdsbGpTbVF6TnpGVWFGSlZXSEJuUTJKUk1ETkZjRVJHV0drcmFncFJXR3d2U0hGUFFrZENRMG93WTNZemFubGljMnhzYzBOalNIbHdOVnBQTjJSdVRsTkRkSEV6T0UxR01sSkpkMFppZUVOME1tTmpVa2hZWWtwd01TdE1DbW93ZG5aM2RVcFpiekpQWnpoWGJGTmxSV3hzU3pWQmFrcHRjbGxOY0ZoT1dWbHhjRzFvVkZab1QwOVRXRU5CZGxOU1lWWkVWVEZNYjNObk9GRjRWM0VLVm5OeFNtUndhVXd2VHpGVlpXUlNPSEl6UjJ4M0wzTXdVVzFvZDFBd1FVbzVkRGg0YlhWTVIydHVZbFI0U0N0NVRsTkhOUzgwY2pRMVpGaGxaMnRCY3dwWFNHSlJUR1ZRU2s1UlEybzFPSFY0ZVVGSmQwMXljbEJwT1c5YVVYVlpTbVEwU1VWelZrOUlNMGhHYjJaeWRIUlhVM0J0TVZGdVNEWnVTRWRXZUhCbUNqbDJjRVJXWVVObGVXWkthRmQyZG5WWWNrbDJkMWgxYkdoWFlqQm9ZV1o0WlROak1sQXZkalZVZUc1aVpFUm5UVm81ZHlzNFoyaERiR0U1VFZoMVdEVUtja0pqYlV0dlNETjJXVGRFZW5Wb2VFWjVhakpoWkd4NU1FNVZRemd5WmxSeFRrVkxZa2M1VVdsVWNWSlpkamN6VjNKa2NXWkhZMjlzTVVkTVNVWm9SQXB3WjNkd1NFRm5Ra2t5TXpWaU5HWTFOSHBhY25vM2MwVk5WMUUzUjFFcmVsVlBORmRYTnpoVE1ITjNia1p2ZGxvclZtazJNR0pSUlZKalZrTkNjelZQQ20wNFVXSlFiRWxaY0VaWVRWcFRNRGREUkdaSVJFNW9WV05zTVhreUsycHFXVWR4TDNCc2FHVkdablk0VUZwSEwyOVpkMW9yY1ZwRGRIaGFOalpHUzBjS2NrMVNhWGg2Tm1aMGJYYzRTSEptY1VSbVlqbERUWGhaZFdZNGEzRTNUVkZ3UTB3M1IwbHlaRzlPUmpsclduaG9NRkpvVEZWRFprdzFZazFRTHpWQ1VncEZZVkJJUWpCeGVuZDJRbmczVDNOdENpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2J0Z202eGotMHZodThuc2kuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RkemRldXUKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RkemRldXUKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RmdWtvenh1NWVoX2NsaWFrc3Rlc3RkemRldXUKICBuYW1lOiBjbGlha3N0ZXN0ZHpkZXV1CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGR6ZGV1dQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RmdWtvenh1NWVoX2NsaWFrc3Rlc3RkemRldXUKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJXblZ2YUZFM1lUTjZTR2xxYldkTlVGRkhlWFl3VkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVVhoUFZGRjRUVlJXWVVaM01IbE9WRUV5VFZSUmVFOVVWWGhOVkZaaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVU4xV2pSNmMweElRbU5KUmtGdlRGVjVUbTFyV1drS2MwTTRTVGc0UTJKNVVXeEJkbTgzYW0xbmVVUm1iR3gxWVdwdFZrMU5OMGc1ZFZOS2IzVjVlRXhvUW1nM1ZUSlBOR2hVUWs1VVVUSllZMUpzYlRnME5ncHhRazl5TTFOdmQzUlpVa1pwU3pkcFIxaDZSRVpZVm1sbVVuaE5UM1pxTW5CSlp6TXlkVEV4TkV4aGFrSXliMUJNVDI5d1pVWjZielpEYTA5V1ZWRmhDa1JVTmpSclpuTlhiWFJVVGs1V01VcHBWa3hqUzNsSlVIcEJPVEpPWm5ScFZsTkVhbHB0Y1dNMGNVTk1VVkJoVTFoRE1XTjZNRTU1ZFROdldrbEhiM2dLV1ZGbFF6aEZRMVJKYjJJcmRVMTRVMW8zVEVWdE1sUk1ObFY2VkU0MGQzTTJZWHBOTlM4d1R6ZEZVV3BxU21Sck5reENaSEJNTTJGbFluSjVTVGRwY1FwRVpqRmlkVTVpZWlzd2JWcDZWbGxVUW1oVFNVbEtTMWRwZVhaa2VYUldUa1JKVFZCd1FYSnlMM0I0ZVZSUE5tNTVVbTB5YW5aelZYbDFVR05TTkdGc0NtVXpTSFpGU21oV1oyeFBaV05zU0d4a1FtWTJObFZ4TWxoT2FsbHlMMHBSUVVaNllUTk9lSGMzV1hOVFpFWmFSR0psWWtKNVZDOXFRMWQxY25aMmRFb0tiMlpZTkZCUVoyTnBkREZwVG1sSlMxbzVWUzgzT0ZWcVJXOUNkamhNSzFGbVZIRnpWekl6ZDNCcFNqUnNUblU1T0RoRWFrRkRTMjV5ZFV4QlREbGhXZ3BQTVhwM1JGZEtORU42VjNwVFZqZHdLMVZtY0dveFJsbHZNblZKUjJjeloyZHBNMHBpVEdGVFYwWndjMFk0TUZZclFTc3ZaVFoxY0dWSVRVd3JNaTlyQ25WbFlqaHJVM0J6Y1hobWQzSnlXRXRTZEZnclZWWnZObWN2ZFdRNFNWWklRVFpNTURaTUswbDJTMGxETkVkMU5FVkZkeTkyTDFsNWFHWlVkakU0U1dZS1VHSlJjVmRKVFZSVmRHb3pOUzluZWpkSk5YaE9ka1paUzBka1Rtc3pOM05hY2t0dVJXUkdWMFZWVFRsa1NDOTJTR1kyU25ad05UWnRUa1ZvYkd0d1dncFVURUkyT0cxMU5FTlRlVEZFTURWbE9HWlpTVUozU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEk0ZVZoRlFuQk9hWEFLYURoVFJVUTJNbGRJVmpKbVNYcHJlbXhFUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZGWWtKUmRVVlRkazlRY0RGMFlqVk5aa0pFWWdwcFZuTXlWMGRoT1VkWVUycExUa05CVTBoRGRtWkpaSGQwU210dlpUYzJOblZvUVRKSFMxYzBSMjlRTmtWbWJIVnFSbTh4Wml0aVVXMXZjbUp5VEZCMENqaGpWRmR0TkZWa1F6bFZjbUUxZEc4dk4zWnNXV3BuVHpWdVdISk1NMFk0V1ZFMFVXWjNaSEpFYkZaclFVRndPVWRSTTAxcmEzbGlXVVEzV1RKWE0zSUtRMjR4WVV0a09WSnVVR3AxUTFGVWRsWmpORlZyUlZWcmFrRlBja2xSTmtWQmFuVXdNbUprVVZKcE5GUXdSbmhIUlhkak9FMVFTV0ZFTjFOV2JpOTZWQXBzUkcxbE1HeHBNVE5JWnpSNmJVVkpXbEIwVHpOTFUyazBTekF4Ym1OWVp6VnVia1ZvTVVWWFlqa3ZlalUwVm5sbVZHMVJaMjlWVEVka1pGRnViV0pNQ21WcE1XWnlPSEpuVm1aRVNtMUhNMnhPT1RGQlJtcFVhUzg1TlU1UFdqVm1ZbGRzUjNRd2JVMUZaMjlLWjJWamNUaDJlVVV5WkU5YVVubGFVbEV6WTBJS2VISnNhM1JpUXpGUVUwTndSVkprTURaUlZGZEdRbEJCTjJOdmRFRjBaakIyV0ZJM2VYSTRObmR6VVdGTmIxbGhRbEU1TjIxV2QyVkhjM1o0VGpFclV3cE9abGhzYTIxQmNHMW9VVmRUTW5KcFNYVnNNMlEyVW1SWVQwMUhOM2d5WjJsalZubFZjVUp4V1VwR2VYQlFZVTFPUkdzNWRVTXlSRkV3T1VGR09YRm9DbkpwTjJsQ1RVbzNkMjByZVRoelJrc3lObXN2WlRaQlptbDJkVXhFUkU4NVRrOUJUbnBzZEZKYWNVeERTVmh1SzJ0R1NFVTJURlpGY0dwaWMyaDJVWFlLTmtvelkxSmxWMkZFYUdGUVlsazVOV2xYYkdadU9YRndjVGczZVZaWGVYWndaVWhOVTJVelpuaHVWVWd3V1hOb2RsSnZVMUpFUVZaT01YbHVWRkJKWmdwUWFuVmhOVGxZYW5aaldGTjVWMmxuTkRsdWJUSnNTWEpSVlhOVVZWUTNXRmxPYldoblVHcGpVemRyZEV3cmMwRkRVRmx5V2k5SGFHdFVMM1JFZVVrM0NtcG1RVlpvUlVrMWRUbHpZMGx5YUhoRWFGcE1ha1kwUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCY20xbFRUZERlSGRZUTBKUlMwTXhUV3BhY0VkSmNrRjJRMUJRUVcwNGEwcFJURFpQTkRWdlRXY3pOVnBpYlc4MUNteFVSRTk0TDJKcmFXRk1jM05UTkZGWlpURk9hblZKVlhkVVZUQk9iRE5GV2xwMlQwOXhaMVJ4T1RCeFRVeFhSVkpaYVhVMGFHdzRkM2hXTVZsdU1HTUtWRVJ5TkRseFUwbE9PWEowWkdWRE1tOTNaSEZFZVhweFMxaG9ZelpQWjNCRWJGWkZSMmN3SzNWS1NEZEdjSEpWZWxSV1pGTlpiRk16UTNOcFJEaDNVQXBrYWxnM1dXeFZaelF5V25GdVQwdG5hVEJFTW10c2QzUllUVGxFWTNKME5rZFRRbkZOVjBWSVozWkNRV3Q1UzBjdmNtcE5WVzFsZVhoS2RHdDVLMnhOQ2pCNlpVMU1UMjF6ZWs5bU9VUjFlRVZKTkhsWVdrOXBkMWhoVXpreWJtMDJPR2xQTkhGbk16bFhOMnBYT0M5MFNtMWpNVmRGZDFsVmFVTkRVMnh2YzNJS00yTnlWbFJSZVVSRU5sRkxOaTgyWTJOcmVuVndPR3RhZEc4M04wWk5jbW96UldWSGNGaDBlRGQ0UTFsV1dVcFVibTVLVWpWWVVWZ3JkV3hMZEd4NldRb3lTeTk1VlVGQ1l6SjBlbU5qVHpKTVJXNVNWMUV5TTIxM1kyc3ZOSGRzY25FM056ZFRZVWd4SzBSNk5FaEpjbVJaYWxscFEyMW1WbEFyTDBaSmVFdEJDbUl2UXk5clNEQTJja1owZERoTFdXbGxTbFJpZG1aUVFUUjNRV2x3TmpkcGQwTXZWMjFVZEdNNFFURnBaVUZ6TVhNd2JHVTJabXhJTmxrNVVsZExUbklLYVVKdlRqUkpTWFI1VjNreWEyeG9ZV0pDWms1R1ptZFFkak4xY25GWWFIcERMM1IyTlV4dWJTOUtSWEZpUzNOWU9FczJNWGxyWWxZdmJFWmhUMjlRTndwdVprTkdVbmRQYVRsUGFTOXBUSGxwUVhWQ2NuVkNRazFRTnk4eVRXOVlNRGM1WmtOSWVqSXdTMnhwUkVVeFRGazVLMlkwVFN0NVQyTlVZbmhYUTJodUNsUmFUaXMzUjJGNWNIaElVbFpvUmtSUVdGSXZOM2d6SzJsaU5tVmxjR3BTU1ZwYVMxZFZlWGRsZGtweWRVRnJjM1JST1U5WWRrZ3lRMEZqUTBGM1JVRUtRVkZMUTBGblJVRnFaRGgxWnk5RGFXUnJOMU0xWkhaNmNXb3dWbFZMUzBKdlNXRnZOa0pHYUhSWmJFOU5NV1prVm1odmVVcGtMMFJrT1d3NFdFczBOZ3AxY25kUFZIaE9jSGRFSzB0R0wwWlNZMDV2VnpONVRHNDBUVUZrZDNoc01qVjRaa05sYkRCMVprZEllalJZYkdGU1JtWjNXbGN6WnpGNVNXZzFTVVo2Q2xSbWVVcHljSEJrT1RoRVVWSm5aMFJrUkdreFZ6aEdMM0JIYXpSUVVHdEtWRXAwZWpWaEswNDNSME00ZDJ4VmVsVnRZa1ZFY0ZkM0wycG9jbWhzU1RVS2NuTkthR1EzTTJwWE1sRTVUVVpLVEd4SVVVZExaemRaUWtKcFlWTm9SR3RUTVN0c1MwRjFkVkpSWlZCTWJtMXpjM05MTVM5RGNVMXNSVlppWjJreVZRcHdRbk5VWjBaQmVVaGlhMEZpZEZoaGIyeExhRWhzYUc0cmVFZFVOWE5JTm13clMwVXJXRkY0UzNsM1pVZE9kVnBYUTAxdVJ6Z3JZVzQxUjJkamEzbzNDbFZJTTJoYVNtZzJTelJFY0c5NFR6QkdkekkwYzJaR1dqWndaRVZ5TkVKQlZETTVlazVJVkRjMloxTjVjMjh2SzNOQmNrcERZbEZ3VDJwaFJVRTFabEVLVm5wM2RqWlRhbWxpVUc5WU0ybFBPWGh5VDFSaFMzTjVNMjB3U0dod1NqUjVWakpGTDBwWFQwcHdhWFY2ZFRWSU4yZFljMVpDYkRGNE1IQndRbGMzT1FwWU4yaHZPR0ZGVG5SdWVsSlVhQ3RSZDBsTk5VWjZhazVHWkVWWmFqaHVNSE5XYUZCaGJFWmpVemRJVjBaNWFXMW1iR1J6VUhWM2VtWmlPSEJJV1V0U0NuZENlWFpFWVUwdlpIaEpObXBaTDNRMmNFaGhkemRtV0c1cGVISkhZbVZhZFdVNE5HOUZkU3RIWVhCMk5GaFFObkZ3WVRoMlJITmhOa0pvTW1VeFpWTUtTblZ5Y2xOQ2JtdDFXbEkxTlM5RU5rSnRjbWxvYTIxR2FFOVZjRVpIV2sxamR6WjRhSFpMUVdGQ1dFbEpUV1l4VFRGU2Vtb3dNelZFZFd4dVNIRk1kd3BSYVVvNFJrZzFTV3hTTm1WRGVFSkNWVkozY1hONldHOUpjR05vY1RKNE0ydFBjVko2U1ZKMGFqWkRTR1ZTYTNGdlFVVkRaMmRGUWtGTlVWb3pNSEZZQ25rMlFuQm9MMjF1VUZsMmFEVnFaMmRYVUZwb01tUTBNbko1YjI0MkwwMVhLMVI2VTBKdmVtZHRZMjE1TWpSUFdsSnZSVXRaTmxVM0x6aEViWEF5Y1hNS2MzTk9aVU5EU1VkdU5GYzFaM0JFYzNkTUswWjFiR0ZsU0dsUFIwVjBlVVpKUnpsQ2NVcFJWakE0TUUxMGQwOXBRbmgzY2xGcVRuTjVWazFzTTIxTlRRbzROSHBZY0VGcGN6bDZTSFk1VGpsa01qRkZMMFZSYUhaQmNIbG1ORVp0ZFdaVlpVUXpXakpoVkRoVE9Ua3pVWGxuVTJFeFpVWkNiak5VZUZkSmREVXhDbEptZEVWdGJ6RTBNRlY0U3pGWllsVjRWWE5aVW5kTFZWbHBkRlppTTJkQ1lscHlSbk52TW5CdVprTTBSVGh6TUM4NFpWQTFWek5aT1VsMmVrVnJjRE1LY2xoUmNXZG9OV2hYU1dKUWFsUlZPRmR0TUVwVWFtUlplV3B0VTBKWWRVTkNiMDV2WVRscmJTOVdWRWhLVG14NFpITkJNRzVwSzAwNVFXVjRjbFZaUVFwMFJuRXlRVFF2YzNWM1Rqa3ZPRVZEWjJkRlFrRlBUM1JJVlhZM1dEQmtiamhRYldGME5VWlFVaTluZDNWSFIyTlNRamgyTUhoeGF6UldVM1prSzBSeENuVnNUMlJOVDBvd2FXNVFkVmsyT1VoSVQzZFZlVXN5T1dKNVQzRnFkR0ZDVG5SME1EbDZRM05YYkdsVFpuazVTVlJuYVVrNFJIcE9kWEo0VmtkTVNGQUtabFZvV0dsSU4wSXlUMjVLVm1aWlpHUkJSelE0V1hZdlMwdGlla3RXTldaM05WWmhiMEl4Ym5ZNVdqUktWVGh4WVROU2ExWnVZaTl0TW1aMUwwZFNaQW81WVdOcE9ISmFRM1kzZFVvNVQyZDVhalprVFdsSFdrWkJkRmxrVVd4TmN6VlRXRTVYTTFWSWVWTkdUMFJJWW1KTWFESTRhbU0wV1hFd1JsUXhZV05IQ2tKRFVFMVJjM0ZaVGxVMVRETjZPWEEwTTNoMmVtZ3pSMDFzY1hwR05rMUhhVXgzYTJ4QlZubHpibk0wVjI5ck4zWjJZa2gyZVhWRk9IRkdhSGw1UVVFS1QwSkNMM2hxYzNObGExRnZiek01WWxCclNGaE5jM28wY1RKWFVrdHJkMjFHUWxOb1NXaFhhV1ZqWTBOblowVkNRVTFQVG5OV1oyNWhORFExTjNKclRncENOV3RaTW05WFdqZEdNREpWZUdJdmJsVnZRM0ZaTm5WdFJHdEphMFJQYjFCdVVXWkJhbmxJWlhkR2RuQk9TeTkwUm14bVMyaENPSGt6T1Rkdk9IbGhDbTlxVjNWUGRpOWxkVWt2UmtGWU9HcERjR05QVDI1NmFETlBhRlp3TlVOVkt6ZE9PVkJJZUVrNVlVbHViVlZ5UXpkNmExWnBSMFp4U25VeVMyeFRPVFVLYmsxRFZuTTNSMVJZVVZBeVUycDNTWGcyWmpnemNrNVJRaXR3Y2tjelRIY3dVamd5SzFNNVRYUm1TWFZCVWpka2JFbGtOSFJwYWpBNVlXRlBWVlJzU0FwQ1EwSTJaRGxwVUVWWVprUmhMM2x6YTBGRU5tNDRRV2xZU0ZJNVRsbFBSRms1WTB4SFpVbEpjR2hGVWpsQk4wbDZXVlpMUkdwR2IybDJXazg1V21KeENrdEhaVE5VWlN0TGEyWnZkSG95ZG5WQ1UzWklOaXRQZDFaSFNubHVVMjVrWTJJNE4wbEJiMlV4Wm1KNVFXUlZWbFZNZW1wbFFrWlpNMjlIWmtKSmNHWUtNMnhoY2t4WlJVTm5aMFZCV1UwNWMzQk1SbTVwZW5CclYyYzFlWFpsVVVSVE1FdFZUa1pWTlVacVdFVjNlRU5ZUXl0YWMzbEJUMjVhVVZKNlJTdG1VUXBOTkcxTVl6WXhLMWM1YUdWdFNtNTZWbmwzWmk5d1FVWkliak15TW1kb0wyaHBaMDB3Y2sxb1JYcHVMMUpUZFVwdGNXeHZhbUp6V0c0MWIzY3pVVEZoQ2xOa1lXeHhZbWhQWVhGclZXUktNM293UlVkWVRuQjZjakJ0WTNSeVJFNUJaa1poYzB4eFVuWXJjR0p5ZFZRdmJ5dGxTRU5EYmpreGFFUk5NVVl4UkRnS2NrTmlNa3cwU0VsWFlrRlBWVGhhUjJSWWMwNW9PR0ZSVkZkdGNqSlFRMDVyYnpkWlpDOVhjeTh4U0RoNmExUndSbE5qY25ONFF6UXdLM1l6TDNGUFNRcEVlRzUwTDAwemRYZERkbVZpWjFOdWVIRTVaV1p4UXpWd1dqWTRTR3BFZFU5aWVqRnhiVXgzVTFscldDOWpOVlJUVmtsSVEwUXhkbTFZZUhKamVDOTJDbWRYYm5sVk5sbGtjU3QwZDIwek1teHBPVTlXVFRkdlFsVmxRazlYVUhFd1dYZExRMEZSUVZjelozQnhWMDVXTlRGd1VsbGxZMUJFV25oSWFHOXVORk1LYjNoMlJUZGpaSEExWldrMFVrcDVTVzFZTVhKSGJsSk1hazFZU0VoTGRXTjBaVVJsVjBOTVl6SllMME13TkhrNUx6VllNM1ZOYUN0aWRGcEhZa1pSWXdwVGR6YzNhRkpIVFZKRFEzUm5UR0ZhU0hKc1NWcFhSV0kxVjNkcGVtaHpXWHBKY2t0M2VFSmFZMk5UWmtaNlJFdEpTR1JITUcwMlUzRk1hbEJMZGk5SUNuVkVVMnBNTnpkaldDOUhSWGhqUVhRNEszbGhURWhxVDJOa05sZDVWSEJFV2poUFJURklabUZETWtOaFNHWXlSVXcxZWtOT00ydFdWbmszTldGQkwyZ0tObk5TUkVSM1F6Vm1ibkZETUVGRmIxa3ZWVnB3VVdkdFpVWXlUbWxsYTJsT01FcDVabGcyV1RrME4ySmlWRlZPYXpkcFRXdDJhelZ0TlZwelJVazFPUW80UmpCdVRpdElhQ3RDTjJsWFIyUjVVV2RQVjBOVVRqQTVhVmN6SzJkV09UTm5SakJQT1RRclQxUkZXWEkzZFVKQmNrVXljbkowV2xZM1YyWUtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogOGs2bG9qZGl1ZjN3NTEyZzNqMzQ5M2tqb3dya3EwOTZ5MnF5b2V5cTNhYXM2ZGNkdTVhZDJiMTdsNDRsbXdvemxieTdranZicjBtMmdkMTdud3RkeDBobzB0aWJ4YXB5dWRjeng5eWpuZG0wMnRyeHoxMHN2anJvbjc2anc2NHQK\"\ + \n }\n ]\n }" headers: cache-control: - no-cache @@ -1263,7 +1311,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:01:02 GMT + - Wed, 14 Jun 2023 19:54:54 GMT expires: - '-1' pragma: @@ -1299,8 +1347,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -1308,17 +1356,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fbe74ebb-152e-4441-abbf-8e64f573f755?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/60650d82-f252-44f8-b057-2ef45f2f92d7?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:01:03 GMT + - Wed, 14 Jun 2023 19:54:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/fbe74ebb-152e-4441-abbf-8e64f573f755?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/60650d82-f252-44f8-b057-2ef45f2f92d7?api-version=2016-03-30 pragma: - no-cache server: @@ -1328,7 +1376,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default.yaml old mode 100755 new mode 100644 index c4913ae6986..3efa1168538 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:01:04 GMT + - Wed, 14 Jun 2023 19:54:58 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: message: Not Found - request: body: '{"tags": {"key1": "value1"}, "location": "westus2", "identity": {"type": - "SystemAssigned"}, "properties": {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestby5lceusw-79a739", + "SystemAssigned"}, "properties": {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestsrtaj3dnw-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": @@ -55,12 +55,11 @@ interactions: -1.0, "tags": {"tag1": "tv1", "tag2": "tv2"}, "nodeLabels": {"label1": "value1", "label2": "value2"}, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -71,71 +70,72 @@ interactions: Connection: - keep-alive Content-Length: - - '1583' + - '1875' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestby5lceusw-79a739\",\n - \ \"fqdn\": \"cliakstest-clitestby5lceusw-79a739-082tmgg3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestby5lceusw-79a739-082tmgg3.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"tag1\": - \"tv1\",\n \"tag2\": \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": - \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestsrtaj3dnw-8ecadf\"\ + ,\n \"fqdn\": \"cliakstest-clitestsrtaj3dnw-8ecadf-ni9evgat.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestsrtaj3dnw-8ecadf-ni9evgat.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\ + \n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ed54f47-2e38-458e-891e-1ecd5ffcc0aa?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63ca612c-99b6-4db7-a0c2-7f904f69b722?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3449' + - '3777' content-type: - application/json date: - - Wed, 15 Mar 2023 10:01:07 GMT + - Wed, 14 Jun 2023 19:55:04 GMT expires: - '-1' pragma: @@ -166,14 +166,14 @@ interactions: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ed54f47-2e38-458e-891e-1ecd5ffcc0aa?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63ca612c-99b6-4db7-a0c2-7f904f69b722?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"474fd54e-382e-8e45-891e-1ecd5ffcc0aa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:01:08.0856254Z\"\n }" + string: "{\n \"name\": \"2c61ca63-b699-b74d-a0c2-7f904f69b722\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T19:55:04.7053328Z\"\n }" headers: cache-control: - no-cache @@ -182,7 +182,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:01:37 GMT + - Wed, 14 Jun 2023 19:55:05 GMT expires: - '-1' pragma: @@ -215,23 +215,24 @@ interactions: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ed54f47-2e38-458e-891e-1ecd5ffcc0aa?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63ca612c-99b6-4db7-a0c2-7f904f69b722?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"474fd54e-382e-8e45-891e-1ecd5ffcc0aa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:01:08.0856254Z\"\n }" + string: "{\n \"name\": \"2c61ca63-b699-b74d-a0c2-7f904f69b722\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T19:55:04.7053328Z\",\n \"\ + endTime\": \"2023-06-14T19:59:00.281243Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '169' content-type: - application/json date: - - Wed, 15 Mar 2023 10:02:07 GMT + - Wed, 14 Jun 2023 20:37:16 GMT expires: - '-1' pragma: @@ -264,23 +265,71 @@ interactions: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ed54f47-2e38-458e-891e-1ecd5ffcc0aa?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"474fd54e-382e-8e45-891e-1ecd5ffcc0aa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:01:08.0856254Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestsrtaj3dnw-8ecadf\"\ + ,\n \"fqdn\": \"cliakstest-clitestsrtaj3dnw-8ecadf-ni9evgat.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestsrtaj3dnw-8ecadf-ni9evgat.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\ + \n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/14b251b7-e3a1-4949-8f98-eef3efe4e2fe\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"defender\": {\n \"logAnalyticsWorkspaceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n }\n\ + \ },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"\ + oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '126' + - '4762' content-type: - application/json date: - - Wed, 15 Mar 2023 10:02:38 GMT + - Wed, 14 Jun 2023 20:37:17 GMT expires: - '-1' pragma: @@ -302,83 +351,81 @@ interactions: body: null headers: Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels - --nodepool-tags - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ed54f47-2e38-458e-891e-1ecd5ffcc0aa?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"474fd54e-382e-8e45-891e-1ecd5ffcc0aa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:01:08.0856254Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - application/json - date: - - Wed, 15 Mar 2023 10:03:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks show Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels - --nodepool-tags + - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ed54f47-2e38-458e-891e-1ecd5ffcc0aa?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"474fd54e-382e-8e45-891e-1ecd5ffcc0aa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:01:08.0856254Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestsrtaj3dnw-8ecadf\"\ + ,\n \"fqdn\": \"cliakstest-clitestsrtaj3dnw-8ecadf-ni9evgat.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestsrtaj3dnw-8ecadf-ni9evgat.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\ + \n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/14b251b7-e3a1-4949-8f98-eef3efe4e2fe\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"defender\": {\n \"logAnalyticsWorkspaceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n }\n\ + \ },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"\ + oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '126' + - '4762' content-type: - application/json date: - - Wed, 15 Mar 2023 10:03:38 GMT + - Wed, 14 Jun 2023 20:37:19 GMT expires: - '-1' pragma: @@ -400,84 +447,85 @@ interactions: body: null headers: Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels - --nodepool-tags - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ed54f47-2e38-458e-891e-1ecd5ffcc0aa?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"474fd54e-382e-8e45-891e-1ecd5ffcc0aa\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:01:08.0856254Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - application/json - date: - - Wed, 15 Mar 2023 10:04:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks list Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels - --nodepool-tags + - -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ed54f47-2e38-458e-891e-1ecd5ffcc0aa?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"474fd54e-382e-8e45-891e-1ecd5ffcc0aa\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:01:08.0856254Z\",\n \"endTime\": - \"2023-03-15T10:04:36.3764528Z\"\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \ + \ \"tags\": {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \ + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\"\ + : \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\"\ + : \"cliakstest-clitestsrtaj3dnw-8ecadf\",\n \"fqdn\": \"cliakstest-clitestsrtaj3dnw-8ecadf-ni9evgat.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestsrtaj3dnw-8ecadf-ni9evgat.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n\ + \ \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\n },\n \ + \ \"nodeLabels\": {\n \"label1\": \"value1\",\n \"label2\":\ + \ \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\"\ + ,\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/14b251b7-e3a1-4949-8f98-eef3efe4e2fe\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ + : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \ + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {\n \"\ + defender\": {\n \"logAnalyticsWorkspaceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n\ + \ }\n },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n\ + \ \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"\ + enabled\": true\n },\n \"snapshotController\": {\n \"enabled\"\ + : true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '170' + - '5065' content-type: - application/json date: - - Wed, 15 Mar 2023 10:04:38 GMT + - Wed, 14 Jun 2023 20:37:20 GMT expires: - '-1' pragma: @@ -499,78 +547,85 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks list Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels - --nodepool-tags + - -g -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestby5lceusw-79a739\",\n - \ \"fqdn\": \"cliakstest-clitestby5lceusw-79a739-082tmgg3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestby5lceusw-79a739-082tmgg3.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"tag1\": - \"tv1\",\n \"tag2\": \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": - \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d95940c8-33a9-4be1-8357-b76bfe43cf66\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \ + \ \"tags\": {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \ + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\"\ + : \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\"\ + : \"cliakstest-clitestsrtaj3dnw-8ecadf\",\n \"fqdn\": \"cliakstest-clitestsrtaj3dnw-8ecadf-ni9evgat.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestsrtaj3dnw-8ecadf-ni9evgat.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n\ + \ \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\n },\n \ + \ \"nodeLabels\": {\n \"label1\": \"value1\",\n \"label2\":\ + \ \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\"\ + ,\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/14b251b7-e3a1-4949-8f98-eef3efe4e2fe\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ + : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \ + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {\n \"\ + defender\": {\n \"logAnalyticsWorkspaceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n\ + \ }\n },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n\ + \ \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"\ + enabled\": true\n },\n \"snapshotController\": {\n \"enabled\"\ + : true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '4102' + - '5065' content-type: - application/json date: - - Wed, 15 Mar 2023 10:04:38 GMT + - Wed, 14 Jun 2023 20:37:21 GMT expires: - '-1' pragma: @@ -596,73 +651,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks show + - aks get-credentials Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -n + - -g -n --file User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestby5lceusw-79a739\",\n - \ \"fqdn\": \"cliakstest-clitestby5lceusw-79a739-082tmgg3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestby5lceusw-79a739-082tmgg3.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"tag1\": - \"tv1\",\n \"tag2\": \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": - \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d95940c8-33a9-4be1-8357-b76bfe43cf66\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSVTIxRlpFRjZTMGxPZFhwRVZFeGtOQzhyVTNkTGVrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYaFBWRkV4VGxSQ1lVZEJPSGxOUkZWNlRVUlplRTVFUlRWT1ZGVXhUVVp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOd0NrcGliM2szYWpKS2VEQXlRVlU0YjJSUEwyRmpkM1pPYUhGVUswd3ZWMk5aZHpSQmRVRXhhMnRXU0VSRmFqZzBRVkJzV0RselUzZFdjV3hFWWtSd1R6WUthMjlGUlc1elNsRXhjMlY1TlU1cVpFaG1iWEkxVDB0d09YQnJUSGM1UW5Fd05WVXJRMnN3WkRsSGVIQmxSMUZTVERKUGVXNUJZM2x6VnpsellUTjBjd3AxWjNGSlNEVkpaV1F6V1hZeFpVVjFkVTlCU1hoNE5rUnBTM0o2YVdOdlJGWktZa1JWUW5SS05YQTJkWEF3WXk5SE5ucGlUa2hNZFdOeVZGTlNTVEZVQ21KWlpuWXZRWFJqVFhWRE16RXphRkZ0WWxaNVRYRnNUV1JNTm14d1FrMWhLMWcwVFU5dVpqVkphME4yUTBScFVtbFBXWEptVWtSRldXVm9OVWRUWVUwS2F5dFBhV3BPUWlzNFNsRTJXRUZLVUdWQ1IwWlpUREJTWkRGT1psRlFWa2RFY2xFMVVGTlROM05VY1UxaFozUkdUbU5CZUV4VmEzSTRUa3h0V1hvMGJBcHdjVFJTUkhCNGVUSXlUWFkxV1RORVRXVXJPRnBYTnpGRFNtVmxhUzkyUTNZelVTc3lTVEZOYVRSUFIxTm5jRkJHVVhCWFlreDFTMU5aTmpObFFrcHVDazFsYURsUlNrRTNOMWRCVlM5R1JGSXlMMUpPYkd4TFJ6ZE9SakU0U0RsWGFISTVSV1JzUW1KQlUybzRjM1JWVEVwVldHSmlOWFU1WlZoVE1tSnBjM29LYTNVM2FVTlNZelY2UTNkTWVuUTRaWFZwUlRCNFJqQk9lVE5YUm1KUWVtVkpMMFkwUms5U1VIRnJlbFl5TjJVNGJVVnlXazV3VjNSSGF6ZEtTemh0Y3dvM01UUlNlWFpqVjJkRk1qWkdVVlprZEVaNlVIbExUbmhOVm5ad2FqSlZaakpHVkhwa09FWmxTMDFGUTFOa2VsTnVjbXh3ZFRCWWJubGxRM1pQWVRoWENsbEtla3hYVFhCNE5HbG1jMVV5UjJ4YVdVMUllbkZXZDBacWVHbFJOa05uV25WdVZrNHlibWx4YTNKVWJYZG9NVEZaV2pneGR6bEVOR1JPZUVkNE5GWUtjMDk0VTBVNWVUazNXRFJXTWxORmJuSllObUppZWxJNVJUUmlRMWhDTDFFM05rYzJlbWsxUm5OUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWRGNtSXljRFp4WTFOMWIxRkZWRXBIQ2t0TmJYRnlOWFJZU0ZCVmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRk9WRktWVGxpUVRsWFF6WlFjalJyZDNkQ1NVMW5aalJSTjJJS1IyTndhbFEwV1hoMFNXOW9lWEZoUm1GaGRTdG5ObTlwYnpFMVpqUkRlVTVrWTJwWlQyMXVVRTFzYm1keE1tRTBlRGxaVERneFNWRlpSbnBEWWpGUmJ3cG9iSGxNTVZoR2VrMXFlWFIxYmxoU1JXdDVPV1p0UmxoVUwyMWhOV0Z1TDFWYU9VczNSWFpuZEN0WFJIWlFTRlJqTDBGSFRERllUSEpQZDA1SVkzWjNDbXBFWmpoc1lqWlVOblo2U1ZaYUwzZGtkVXRoTlhwdVkyTnlWMUY1TkRkUlNIbG1Xak55U0ZORlkyUnhOVWhvWjJObU1rWkVVbFI0VDAxUVNFcGlibFVLZUZZMFpGTk1PVFUzTUc1d1dXRkZNVGhzT0ZGTWVFNURia3B6YWxoNFZUZERZWE5wVlZCMGNtZEhaVzVOYlU4MGVXRmhVbXNyV2xFdmIwbDRjbVV2U2dwMU1VSmpSalExTm5Cc2NuTkZOM00zVVZwWWIxUTVSeXQwYkcxcFRrTlRha05sVG5KcWFGWTViMUJsTURsT1ZFeG5TSGt4UVU1WFpEQTJUbmxKVEZBekNrTldSRXhpU21WUVdWZEhUSFZqTmtaM2RHMXlTR3A2U0VkS1ozazVZbHAxTVhVM1YwbFFWV0ZyYzJoa2VrNXVPV0ZtWVVGeFJVOXNZemc0VGpCclkxa0tWRE5oYUVGVFQzZG1PVUZRUVc5S09WTjRhVlpqVkN0emQyVmFOMFpEU0ZJMmNXdEdiR1ZqYjAxaVVVUnNZVzkyU1ZSUGJWcDRRMjF5Y0dGQmFVSlRad3BIZG1nMWJXaEtjbTl0VTFKdFJUQklka05GVmxsUFEwdHBiakZoUkU5NVZHczRSWFpQUjNNeEx5OHpjRTlrTWpCSFprUm9UMFZSVUdGck1IZFBRM2xyQ25SSFZYSlFTVWRKTW1KRWRWZzVRMUpTVFZwUmJIbG5NMU5CZVRNMVJYaGtNWFZzWlRseVVtdEJNRXBFYW14VVZsQkNiV1J4ZVVkRlpGbHNWVzh2YzJjS1MyeE5ibUl4VEVWSWVDdHJMek0xYkU5YVpHNXNWa0V6WVd0TFVVUTRWRmxPYWtoTVpXMUpXbWN5U0hjeE0wUkZSa3hYUkV0dkwzTlpVVGxHVGs0MVdncDRiVzFyWkVrMFVEaDFOMkZyZVRSNkNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc3Rlc3QtY2xpdGVzdHNydGFqM2Rudy04ZWNhZGYtbmk5ZXZnYXQuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RmcDVnbTUKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RmcDVnbTUKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RzcnRhajNkbndzX2NsaWFrc3Rlc3RmcDVnbTUKICBuYW1lOiBjbGlha3N0ZXN0ZnA1Z201CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGZwNWdtNQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RzcnRhajNkbndzX2NsaWFrc3Rlc3RmcDVnbTUKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJWbWRSVDI1d2EyOTZSRlpNUmpWV1NTOUJXV05CYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVVhoUFZGRXhUbFJDWVVaM01IbE9WRUV5VFZSUmVFOVVWVEZPVkVKaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJMVjNZMVIyTTBWRzFQUlZSSldXZE9TVm8zVTNBS2FEWTRZMGR2ZVRCU1VuZFVjMjVPWTJwYU1VZDNOMWsxWVdSNkswdGpTSGs0T0N0SFZqZHNNa3h0WTFaT01uVTNUM1ZzTVVWblltWlVla1psUWtzNE9BcG9ka0o0ZEdVeWNFSjFjeXRRVEhWek1uQmllRlJLT0d3MVducGtXVGs0VWpkTk4yRTRORFZDVFVOdFZFdzJUWEo2WlhVdlZFaE9PV1EzWVhObFp6QnJDbVYwYVhSamNWZENlSEozVjFNM2FuRndObTlOWmpCSFZWbzJOVGw1U25OT1VGUnlhbkJHYVdFNVJrOTZNemxHV1d4ck4wYzVRM0JxTUdsNWFWb3hXRWNLUkdRNFJHNHZlRlZpY2pBeVdVVnRVVmswYUVKbk0xZHZibXBTVUdvMmNXeEJXbVZxV0dwWWFVSmhPV2xEY3poUWVWTTVjR2hSVTI5dWRFbG9jMlV3ZGdwWk5DdERXbXB0YVVWUFNGcHlOekJVYVdaNUwwTXdWa015VmtwdEsybEVjVE5DU1VSc05VTlRXaXN6Y0hoTFNHTTBjeTlqU0RaQ2VtTnBjbXc1Y1VGcENsTkVjWFZYWW1jMFNrRlROMGR0SzBOamMyVlFWMEk1YzNvNU5TOWlTWGdyTlRFd01FeFBkbkY1V25odWNVOVZUbk53TDA1MVpVcDRORk5SVkhJeFUzb0tTMjFKWkd0eE9FOXpPVk4xU25kWlR6SnVjRmRaVEhJNE1VdHdURUZaUXpFMlNUZ3paM2RsVm5wdWFuaERiVUYxY0U4NE9DOUdkWGRHZW0xT05XTjRSd3BMYm1GcFIzbEVkRk1yY2tkWWNYcGtaV04zY1cxeWJHMHhXbFl3VlhKaWJsUXlNM05NTW01Q1JtMVJOVFZtTW5sSVdtdFliWGgwVGk5c1VWTllaMll4Q21VeVVrSkZjRFJqZVRsWFRXSjRjSEZvUTFCeGRUWlpZMVZ1VFhoUldXaEplbWQxTkVKSWRHUXlZVkF5VXpWSFQwSnhLMmxyZUVObGVqZzNTVk0wTDBvS1dEQk5OV0YzUVVaRWFIZzVNRW96U0d0dWNsZGhjekk1Wm1nd1UybDBZVkEzZFVSSGNFeFFPSE4wZVVkNmVrOXZVRGdyYVZkTGFDOWhiREJvYVZGaGVRb3lVRlJsYVRacGJUZERNMEpNZFVWUWFHWXJiM2hSU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEZMZEhaaGJuRndlRXNLTm1oQlVrMXJXVzk1WVhGMmJURmpZemxVUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZvWldsSFkzTkRkV1prU0RSV2EweHFXRTFTZUFwc2JteEZlbUZ2VGpjdmRGQmpTalZHTkRSR1ZHTmFNRGR5WVcxblZreHdUVXBZT0dwVGNESXlVbkZhTmpVeGFGaEdja0l4U1RaTVJISnVXbVZwVmtGRkNqZDFiVEo1UTBKdGEyaGxkV3RHUjNKelJYcFFRVGRxV1hFcmJtODNjM2RLU0ZodlpXSk5VemhYUVdoNlFVWlNjbVZGYWtwNk1YUXlhbXRPY25GQ1RtVUtjVkJPVkNzeFZsWkpUa052VVRKdGJEUkhabk5QYkRkbVIyMTJZbWRpTm5aVmVFcFhObk5MY1hsWk5uaEZUQzlwYXk5c2EzTmpSRTkzTTFCcGNsTmpXQXB6ZHpadFdVNUxha3RtTkRkbFNFSlNUaTg0Y205eFZVYzVSWG80VjNWT09ISllLM2NyZFVkQ1NsQk1kRVYxTW5KTk1EZE9OWGQ1TUZVMVdFVkhRbkZUQ2xGdlVsTjNUbmd6VG05cldYZ3JPRkowUjJGR1JrVkROMkoyY0ZwT09XNXlabVJFV1doemFrNUJTRmt5V0ZCellYTndNa3BEVERKR1NEUjVSV2s1U1hZS1lreENNV2N5TTNVd1NrWXllVXR5Y0VzME9FSXJVbXBNVDBaaVdXMUhjSHBwVGt4QmVqVjNZM1pJUWtaS1lsUTVWMVJpY0UxQ1RESkJaM1pUWW1KUFdBcEJOREZXZW1wYWJqSXlhVGc1Y21GWGFXOVFjRU5DWjBSS1prNURUVzlQYm05blFXdzVWemRvS3pkbmFXUmhSVGQxZEhKSlMyMWpTRzFJT0RaR05uSk5DbXRsVGtRMVoxWkNPRVpKTkRoaVpGQkNNRFpNY2pCblNuRlRXVFJ2ZUdKWGJIcDZXa1ZwTW5oR1VXZHNNR04yUW01U1prSTFNVmhDSzFKVVFWUjFLMllLTVhZelVEWnZibE5NV0VoSFFucFllRXBHTlhwR05EWmtjbE5EZW01SWJXWXhMM0ZEYWl0VGNIZG1kM0U1YkZoclZsUktSRE5XUlhKbmVGcDZWRTVCWndweU1tdEVNVkJUWkV4UWFFOHlaa2hWYTNoeGQyd3dOVWxqT1VKUFYyOVJXVFpMV0dZNFRuWkZNVWhMVkRWeVF6QmtXblpZVVhobGFreFdURW95VFZjd0NuQkNZemw1TTNjM0wyaGFWVTkyUTFKRUszWTViMFZGUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCZVd4eUsxSnVUMFUxYW1oRmVVZEpSRk5IWlRCeFdXVjJTRUp4VFhSRlZXTkZOMHA2V0VreVpGSnpUekpQVjI1akNpOXBia0k0ZGxCUWFHeGxOV1JwTlc1R1ZHUnlkWHB5Y0dSU1NVY3pNRGg0V0dkVGRsQkpZbmRqWWxoMGNWRmljbEJxZVRkeVRuRlhPRlY1WmtwbFYyTUtNMWRRWmtWbGVrOHlkazlQVVZSQmNHdDVLMnBMT0ROeWRqQjRlbVpZWlRKeVNHOU9Ta2h5V1hKWVMyeG5ZMkU0Um10MU5EWnhaWEZFU0RsQ2JFZGxkUXBtWTJsaVJGUXdOalEyVWxsdGRsSlVjemt2VWxkS1drOTRkbEZ4V1RsSmMyOXRaRlo0WnpObVFUVXZPRlpITmpsT2JVSkthMGRQU1ZGWlRqRnhTalF3Q2xRMEszRndVVWRZYnpFME1UUm5WM1paWjNKUVJEaHJkbUZaVlVWeFNqZFRTV0pJZEV3eVQxQm5iVmsxYjJoRWFESmhLemxGTkc0NGRuZDBSbEYwYkZNS1duWnZaelowZDFOQk5XVlJhMjFtZERaalUyZ3pUMHhRTTBJcloyTXpTWEUxWm1GblNXdG5ObkpzYlRSUFExRkZkWGh3ZG1kdVRFaHFNV2RtWWswdlpRcG1NbmxOWm5Wa1pFNURlbkkyYzIxaldqWnFiRVJpUzJaNlltNXBZMlZGYTBVMk9WVnplWEJwU0ZwTGRrUnlVRlZ5YVdOSFJIUndObFp0UXpZdlRsTnhDbE4zUjBGMFpXbFFUalJOU0d4ak5UUTRVWEJuVEhGVWRsQlFlR0p6UW1NMWFtVllUVkpwY0RKdmFITm5OMVYyY1hoc05uTXpXRzVOUzNCeE5WcDBWMVlLWkVaTE1qVXdPWFEzUXpsd2QxSmFhMDlsV0RsemFESmFSalZ6WWxSbU5WVkZiRFJJT1ZoMGExRlNTMlZJVFhaV2FrYzRZV0Z2VVdvMmNuVnRTRVpLZWdwTlZVZEpVMDAwVEhWQlVqZFlaRzFxT1d0MVVtcG5ZWFp2Y0UxUmJuTXZUM2xGZFZCNVZqbEVUMWR6UVVKUk5HTm1aRU5rZURWS05qRnRjazUyV0RSa0NrVnZjbGRxS3pkbmVIRlRlaTlNVEdOb2N6aDZjVVF2VUc5c2FXOW1NbkJrU1ZsclIzTjBhakF6YjNWdmNIVjNkSGRUTjJoRU5GZ3ZjVTFWUTBGM1JVRUtRVkZMUTBGblFtbHBTSGhaWjJSbGN6UnhiR0pwV2pWbWJURXZNVlJSVTFCbmNqUlJObUpaUzFGV1N6ZE9jRzV0TkRGWVVVUjVVakF2Y0VKaFdsTTBad3BHU1dSVFlreFlNVTV6T1Zkc1FrVndNa2RXVVZJMVpXRlhSakppT0ROclVscGhNR05MVTNCVVZ5czViVGdyYldOQ1pIUlpPRXd5TldJdlFXNUpiRUl6Q21aVVJTOTJUbmRDZERacFZXOHJhWFprWlV0dGNtRjRaSFl2UXpKWGNuTXpaV2xRZEZaWlFYZDFlRFpJTlV0NVFTdFdXazVzVlRjMlNVeDVabUppYkVnS1REZGxWbVpJVG14dGR6WjBVRVZQVUhwVlZESTFiR2xzYlM5MlFWQlFSR3BMZG5kTVoxRkVVbWRaUmxGMFlXRmlaMEV2UXpBMFdsWldNMlZaWTFoWlRncE1jM0VyUkVaaGFWQjJSV3RzY1hCdWFqQllPV1JhYVUxdU56aEhNMFYyT1VONGJqRlBTazVDUmt4dVZUQmtVVzlyY1hobVMwMU9aazFXZW13dk9VMXNDblpLTDBKTGNYQkhjMjFES3pGb1MzYzVVbGRGU1ZsMVVpOXpNWEZDWkU5QlRHWXlORkE1Wnk4MFRuRm1SVTlKYTFvMWMzWkJhMDFLVVN0SlUwUjFhSG9LTXk5UlF6TllabmQ1UVhGeU9Xa3dheXMzTWpoclJFUndjMkpxYm13MmNYWm5NazFpYVdJNGJtbHdVVFFyUm5vNVFtSk1abWhRTUhZeFpGcGhSMmt3TkFwc1IwSmhZek5yTlhacWNWZzNNbkpJUTFKS1MyRnRjRk5NWlZaUWQxWkZTRlZ5YkhWdVlqTnRNMjFuU0ZsVkszaHhVMEYxU2k5UFlsQm5VRTR5YkUxTENqZFJaMUo1VUV0bk1FNW1XalZPYW04dmFVeDVORVZRUWxaTFdFWnBibHBhTmsxeWFGbHpWMFpuYVU0d00yTjRSeXR3WmxwTFUyWTRZMnhqWVRZNFMwWUtkMnM0SzFkeVMwMHJhbGxwVEdGNmExcHpjalIwWkc1dVluRnRMekZtVUZoeWNrTmljR3BxVDB4cFp6aHNVVTh4U1c5cGVreFJRWHBHUTNFNWVtUnFkUXBaY0hsRmFHZDFXblpCT1cwMmVqSklhVmwyWjA1eFdFdFhiM0V2YlRjeU0zcE9ZWEJyT0hJemRHeFdhemRGZDFwQlVVdERRVkZGUVRsTlZUYzFabVo1Q2xkbVMxZDBVRWhRYTNoQ1ozbE5ZMmRLYlhacGNFTkxSbkpXUkRORVMwZDBSVmx5UzFkUFkyYzVlbEV5ZVhOUU1GcFpUQzkzUlRKNlZUSXlMM2d5WnpnS2JIUldNR2hNVFZWVlJUTmxiR1Z5Tm1WSmJXRm5TRGRVZGxkYVEzbENOR1ZWYWs5eFNGRkJSWFJzUkdwaGExSTBhbWRoT0hOSU9XMXBhRTl0V25sTmN3b3lUVkUwVmtaT2RteENWelZqY0ROMWNVRjZPVXQyVFRSV2JVaDNjMDlTYms5bFNpdG1kRVl6VVV4dFVGbFFaVVJIYm00clYyRXpTVlpwZVhKVlZVNW9Dazl3UW5kR04xZ3JWVXhNT0Rac09XVmhkeXRyYW1oaGJHTlVla1p4ZFhBNWNXMUllV05aYUZrNVEzUlVVM0JHVHpWNk1WbENObkp2SzNZNFZsZzRRM2tLYjJObk1GTldSek5IUmt3MVZtZHlORkZPVEN0YU9VVllPRkF3YzBkTGRISXZWWEl6WkRGVlVVOXRiaXN5WjNoTVNuaG1NR3RET1V4M1VrMTJPQzh5T0FwRVUyWmtia0ZaUTI4eEwxTk1VVXREUVZGRlFUQTJUMkpKVFcxdlJVTllTVk14Ym1wcWExRlRUR2MyUWpoMWJsTTVUbmxNYVhCSE1FZDVaMnREVm5WbUNuZEdXbFEyT0hweVozWlhPRlpCTVRBNGIyeEZXVU5XUjJjelJYWnNSbVkwYVRWT1VuVkJUVmxXZUhCd1ptaHdPVnBUZEZocGQzVkxaMVpoVkdZdllXVUtaQ3RZWW5JeFIySmpkbEpZVmtkb1RuUllZamt2YWxSV2VuaEdVVzFOYXpCcGVtdzRkR2h1YTFOR0sxSkJNWEptTkU1MGJEQTFMM1ZhZEVSV1FXZFBPUXBVVDNSVVZubDJTMmd6UkdOUldUa3JRMGxtY1hGQ2MyVndiek4wYkVkNGFXSk5SbUp6Y0VSS1ZESlNPVlphU1ZsNE5VVmlVMUpCUTJFeE0zRkVWakpOQ204d1V6WldhRzlzU2pKTmEyaE5RM2gxU0RWR1RuZzNabXBDZVVaQlR6QmxlVFZtTW10dGJDOTBLMjk0WkZwMk0yMHpLMFZRY1dNcllrOUtlbXBZVlZJS1VGUnZiVllyVW5ReVltRm9aVWt4SzIxb1RqQlpPVXhyYlRodFN6RXJNVmxpWW1ndlZFZEZTQ3RSUzBOQlVVVkJNMVUzYW1KSVl6RmxXbmM0U2xKbmNBcHVVV1ZITm5GSldEaEpWa1pKZWtKUVpYcG5hMVo0YUhKUFpIZHhVR2d5YTBWaU56QTVNMjlpU2tKc1FXdHBablY0Y2xWS1dFRjBhMFpQUTJ0bVJVeExDbFZDTVVnM2JtSktlRzFvY2l0R1ozcHlRME5yY1hadFNWbHllSGg0T0hrelpHWjRSekJzVG1OVFRsaFJhbmxvZUd4MFFsUmxVbU14ZFdwM1dIcHBOblVLVTAwNGJtOUlhM0JUYlhGTlJVOVNaVUZOVTBjNFpteG9WamxZZDJ3d2RHVnlibVpaUzJzeFFVUmFWbFp2ZEVoamRrRlhhRlpHVlN0MVRYWldabUZ5UVFwaFZXbGpTVzVFWlVaeFJFeEpUMnhoTlhKeFV6UnZhMjR6UVVNMVV6SjFSRTlwYkdWSmNVdHNSemRET0ZGb2NVZHJhMHBIYldjdlNuTjZjMjlCTURkT0NqVkZSa3BVVlVkWU1tdDVjbFl3VTFob0x6TjNaVGxIY1ZSNFkxVkVjVWx5YWxKVkwwcDJiRTFxWldzM05UUXpUSGxoVGtkcVV6TlRaRWhoYVVOVGNuRUtRV0owYldSUlMwTkJVVUZCYW1wR1pVTkxiREJSVjFWb1RGZzRNMXBHTlZneVNtNXRkRlUxYTJKb0t5OXZWbkJFY0M5MFVVOTJiRlZYSzFkclprMXJlQXBqYzNWdWRrNUdUbmRoV2pSVGFVUkNVRFEzVFdGT05ubEllRlJpTUhOYVFteEZVWEZ1U1RoMmMwMXNkVUl2TWpWRlV6QmFOMDR2Um0xTmFsY3dVRkZFQ21aVWFYUmtRV2xuVEZWMlJsZDNXV3R2VUhOQ1N6WlpSSEEwWWpSUk1rVm9Mek0wTVRoQmMyVllMMVZKWkZOaUwwSm9Wa3BEUWtZM1NHcE1PWGsxVDJjS1pqRTVWVzVNWmt3NVpUbGlkVnBhTDBGWGFHRk9NVFpoZDI1amJrcE9TV2xpZWxWV1FVZHJiMUJQTVVKYU9WWmFlWE5zVDJRMmVHa3dWVGxpTkc0eWRRcGxUV2RxZDFFeU1sZHFOVGhSYjNnM2NHRmxSSFJTZFdKc1V6WkZaVGx3YkRsVGRHdEVOa00yZFRjM2VFZDVaRU41WlZaaWRtRTNjRFZxYTNKcFpVaDJDamRHWWtsS2FtSnhNa3B2TlcxT1oxbDNTa3R2ZEcxeVFTOTJZakpyUm5Gb1FXOUpRa0ZSUXpod2JVaERMemxaZHpSQ1lVUTVNak5DWTBKSmVYRkxjVUlLWXpCTVlsRmxRM05vZWxoMU9EY3hkMFZqVlZwcU5uaG1WVmhWT1RKUlVVNVZZMVJyY1d4MFFrSnlTV1o0WmpSSE56bDJlR3R2WVdSbGVDOVJZMDlKVEFwWlNYazJXbE5yVTBJM2NWcHhkME5wWTB0eWJ5OVJaV1Z0YmtjME5HSm1jMjFIWm5WSGR6VlZXbXhqYVRVMGJHTXhOMjFGYVZOc2NEaHpSRzkxTjFndkNtZFJjSEV6YW5BeFNHVktNVEFyZVRkNlNXUTJXVzFsVlVab1NreDFPRFY1VEhnMVRWcDZMMHRYTDJkc1JHTTBkMnAyVTAwclJVaHlNMlJyV1hsdFdYQUtWWEl2SzJJd1dYZExORE5YYVhFNFQwTlhibmcyZFhCcWRrMHZWMjVyVVZaa1FqRlFPVE5SVjJOUmRtUmtiSGhVY2xaRFNGUnBWVkJLZUhrek5XMXlUZ3B5YTNsUlowMHlaekpMY3pBMVdHZHRkRWxXYjNwTFpIVXJiRGQwZG5rNVJFUk5iMlpyVURZdlZIaDBWWEUyYmtGVFJFNHJOVkkxVlZkNmQzZ0tMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogc3NnOHJoY21lem4yNnQ4NmZ0c3V1d21jbzJmcmE3YzBwNW54b3R4NmpsbTl4YnIzbzd1dzdqcnF1MHI2NHM4cmd1dGc0Y2xjYW84MmtkNzV5andjYjlxcnRjNWQ4bmFnbWVraGZybDJnZWtoYzRvbnkxOWdmeGdycW00eWJiYngK\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '4102' + - '13096' content-type: - application/json date: - - Wed, 15 Mar 2023 10:04:39 GMT + - Wed, 14 Jun 2023 20:37:23 GMT expires: - '-1' pragma: @@ -677,6 +691,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -688,75 +704,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks list + - aks get-credentials Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g + - -g -n -f User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestby5lceusw-79a739\",\n - \ \"fqdn\": \"cliakstest-clitestby5lceusw-79a739-082tmgg3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestby5lceusw-79a739-082tmgg3.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": - \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n - \ \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": - [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d95940c8-33a9-4be1-8357-b76bfe43cf66\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }\n ]\n - }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSVTIxRlpFRjZTMGxPZFhwRVZFeGtOQzhyVTNkTGVrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYaFBWRkV4VGxSQ1lVZEJPSGxOUkZWNlRVUlplRTVFUlRWT1ZGVXhUVVp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOd0NrcGliM2szYWpKS2VEQXlRVlU0YjJSUEwyRmpkM1pPYUhGVUswd3ZWMk5aZHpSQmRVRXhhMnRXU0VSRmFqZzBRVkJzV0RselUzZFdjV3hFWWtSd1R6WUthMjlGUlc1elNsRXhjMlY1TlU1cVpFaG1iWEkxVDB0d09YQnJUSGM1UW5Fd05WVXJRMnN3WkRsSGVIQmxSMUZTVERKUGVXNUJZM2x6VnpsellUTjBjd3AxWjNGSlNEVkpaV1F6V1hZeFpVVjFkVTlCU1hoNE5rUnBTM0o2YVdOdlJGWktZa1JWUW5SS05YQTJkWEF3WXk5SE5ucGlUa2hNZFdOeVZGTlNTVEZVQ21KWlpuWXZRWFJqVFhWRE16RXphRkZ0WWxaNVRYRnNUV1JNTm14d1FrMWhLMWcwVFU5dVpqVkphME4yUTBScFVtbFBXWEptVWtSRldXVm9OVWRUWVUwS2F5dFBhV3BPUWlzNFNsRTJXRUZLVUdWQ1IwWlpUREJTWkRGT1psRlFWa2RFY2xFMVVGTlROM05VY1UxaFozUkdUbU5CZUV4VmEzSTRUa3h0V1hvMGJBcHdjVFJTUkhCNGVUSXlUWFkxV1RORVRXVXJPRnBYTnpGRFNtVmxhUzkyUTNZelVTc3lTVEZOYVRSUFIxTm5jRkJHVVhCWFlreDFTMU5aTmpObFFrcHVDazFsYURsUlNrRTNOMWRCVlM5R1JGSXlMMUpPYkd4TFJ6ZE9SakU0U0RsWGFISTVSV1JzUW1KQlUybzRjM1JWVEVwVldHSmlOWFU1WlZoVE1tSnBjM29LYTNVM2FVTlNZelY2UTNkTWVuUTRaWFZwUlRCNFJqQk9lVE5YUm1KUWVtVkpMMFkwUms5U1VIRnJlbFl5TjJVNGJVVnlXazV3VjNSSGF6ZEtTemh0Y3dvM01UUlNlWFpqVjJkRk1qWkdVVlprZEVaNlVIbExUbmhOVm5ad2FqSlZaakpHVkhwa09FWmxTMDFGUTFOa2VsTnVjbXh3ZFRCWWJubGxRM1pQWVRoWENsbEtla3hYVFhCNE5HbG1jMVV5UjJ4YVdVMUllbkZXZDBacWVHbFJOa05uV25WdVZrNHlibWx4YTNKVWJYZG9NVEZaV2pneGR6bEVOR1JPZUVkNE5GWUtjMDk0VTBVNWVUazNXRFJXTWxORmJuSllObUppZWxJNVJUUmlRMWhDTDFFM05rYzJlbWsxUm5OUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWRGNtSXljRFp4WTFOMWIxRkZWRXBIQ2t0TmJYRnlOWFJZU0ZCVmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRk9WRktWVGxpUVRsWFF6WlFjalJyZDNkQ1NVMW5aalJSTjJJS1IyTndhbFEwV1hoMFNXOW9lWEZoUm1GaGRTdG5ObTlwYnpFMVpqUkRlVTVrWTJwWlQyMXVVRTFzYm1keE1tRTBlRGxaVERneFNWRlpSbnBEWWpGUmJ3cG9iSGxNTVZoR2VrMXFlWFIxYmxoU1JXdDVPV1p0UmxoVUwyMWhOV0Z1TDFWYU9VczNSWFpuZEN0WFJIWlFTRlJqTDBGSFRERllUSEpQZDA1SVkzWjNDbXBFWmpoc1lqWlVOblo2U1ZaYUwzZGtkVXRoTlhwdVkyTnlWMUY1TkRkUlNIbG1Xak55U0ZORlkyUnhOVWhvWjJObU1rWkVVbFI0VDAxUVNFcGlibFVLZUZZMFpGTk1PVFUzTUc1d1dXRkZNVGhzT0ZGTWVFNURia3B6YWxoNFZUZERZWE5wVlZCMGNtZEhaVzVOYlU4MGVXRmhVbXNyV2xFdmIwbDRjbVV2U2dwMU1VSmpSalExTm5Cc2NuTkZOM00zVVZwWWIxUTVSeXQwYkcxcFRrTlRha05sVG5KcWFGWTViMUJsTURsT1ZFeG5TSGt4UVU1WFpEQTJUbmxKVEZBekNrTldSRXhpU21WUVdWZEhUSFZqTmtaM2RHMXlTR3A2U0VkS1ozazVZbHAxTVhVM1YwbFFWV0ZyYzJoa2VrNXVPV0ZtWVVGeFJVOXNZemc0VGpCclkxa0tWRE5oYUVGVFQzZG1PVUZRUVc5S09WTjRhVlpqVkN0emQyVmFOMFpEU0ZJMmNXdEdiR1ZqYjAxaVVVUnNZVzkyU1ZSUGJWcDRRMjF5Y0dGQmFVSlRad3BIZG1nMWJXaEtjbTl0VTFKdFJUQklka05GVmxsUFEwdHBiakZoUkU5NVZHczRSWFpQUjNNeEx5OHpjRTlrTWpCSFprUm9UMFZSVUdGck1IZFBRM2xyQ25SSFZYSlFTVWRKTW1KRWRWZzVRMUpTVFZwUmJIbG5NMU5CZVRNMVJYaGtNWFZzWlRseVVtdEJNRXBFYW14VVZsQkNiV1J4ZVVkRlpGbHNWVzh2YzJjS1MyeE5ibUl4VEVWSWVDdHJMek0xYkU5YVpHNXNWa0V6WVd0TFVVUTRWRmxPYWtoTVpXMUpXbWN5U0hjeE0wUkZSa3hYUkV0dkwzTlpVVGxHVGs0MVdncDRiVzFyWkVrMFVEaDFOMkZyZVRSNkNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc3Rlc3QtY2xpdGVzdHNydGFqM2Rudy04ZWNhZGYtbmk5ZXZnYXQuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RmcDVnbTUKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RmcDVnbTUKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RzcnRhajNkbndzX2NsaWFrc3Rlc3RmcDVnbTUKICBuYW1lOiBjbGlha3N0ZXN0ZnA1Z201CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGZwNWdtNQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RzcnRhajNkbndzX2NsaWFrc3Rlc3RmcDVnbTUKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJWbWRSVDI1d2EyOTZSRlpNUmpWV1NTOUJXV05CYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVVhoUFZGRXhUbFJDWVVaM01IbE9WRUV5VFZSUmVFOVVWVEZPVkVKaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJMVjNZMVIyTTBWRzFQUlZSSldXZE9TVm8zVTNBS2FEWTRZMGR2ZVRCU1VuZFVjMjVPWTJwYU1VZDNOMWsxWVdSNkswdGpTSGs0T0N0SFZqZHNNa3h0WTFaT01uVTNUM1ZzTVVWblltWlVla1psUWtzNE9BcG9ka0o0ZEdVeWNFSjFjeXRRVEhWek1uQmllRlJLT0d3MVducGtXVGs0VWpkTk4yRTRORFZDVFVOdFZFdzJUWEo2WlhVdlZFaE9PV1EzWVhObFp6QnJDbVYwYVhSamNWZENlSEozVjFNM2FuRndObTlOWmpCSFZWbzJOVGw1U25OT1VGUnlhbkJHYVdFNVJrOTZNemxHV1d4ck4wYzVRM0JxTUdsNWFWb3hXRWNLUkdRNFJHNHZlRlZpY2pBeVdVVnRVVmswYUVKbk0xZHZibXBTVUdvMmNXeEJXbVZxV0dwWWFVSmhPV2xEY3poUWVWTTVjR2hSVTI5dWRFbG9jMlV3ZGdwWk5DdERXbXB0YVVWUFNGcHlOekJVYVdaNUwwTXdWa015VmtwdEsybEVjVE5DU1VSc05VTlRXaXN6Y0hoTFNHTTBjeTlqU0RaQ2VtTnBjbXc1Y1VGcENsTkVjWFZYWW1jMFNrRlROMGR0SzBOamMyVlFWMEk1YzNvNU5TOWlTWGdyTlRFd01FeFBkbkY1V25odWNVOVZUbk53TDA1MVpVcDRORk5SVkhJeFUzb0tTMjFKWkd0eE9FOXpPVk4xU25kWlR6SnVjRmRaVEhJNE1VdHdURUZaUXpFMlNUZ3paM2RsVm5wdWFuaERiVUYxY0U4NE9DOUdkWGRHZW0xT05XTjRSd3BMYm1GcFIzbEVkRk1yY2tkWWNYcGtaV04zY1cxeWJHMHhXbFl3VlhKaWJsUXlNM05NTW01Q1JtMVJOVFZtTW5sSVdtdFliWGgwVGk5c1VWTllaMll4Q21VeVVrSkZjRFJqZVRsWFRXSjRjSEZvUTFCeGRUWlpZMVZ1VFhoUldXaEplbWQxTkVKSWRHUXlZVkF5VXpWSFQwSnhLMmxyZUVObGVqZzNTVk0wTDBvS1dEQk5OV0YzUVVaRWFIZzVNRW96U0d0dWNsZGhjekk1Wm1nd1UybDBZVkEzZFVSSGNFeFFPSE4wZVVkNmVrOXZVRGdyYVZkTGFDOWhiREJvYVZGaGVRb3lVRlJsYVRacGJUZERNMEpNZFVWUWFHWXJiM2hSU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEZMZEhaaGJuRndlRXNLTm1oQlVrMXJXVzk1WVhGMmJURmpZemxVUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZvWldsSFkzTkRkV1prU0RSV2EweHFXRTFTZUFwc2JteEZlbUZ2VGpjdmRGQmpTalZHTkRSR1ZHTmFNRGR5WVcxblZreHdUVXBZT0dwVGNESXlVbkZhTmpVeGFGaEdja0l4U1RaTVJISnVXbVZwVmtGRkNqZDFiVEo1UTBKdGEyaGxkV3RHUjNKelJYcFFRVGRxV1hFcmJtODNjM2RLU0ZodlpXSk5VemhYUVdoNlFVWlNjbVZGYWtwNk1YUXlhbXRPY25GQ1RtVUtjVkJPVkNzeFZsWkpUa052VVRKdGJEUkhabk5QYkRkbVIyMTJZbWRpTm5aVmVFcFhObk5MY1hsWk5uaEZUQzlwYXk5c2EzTmpSRTkzTTFCcGNsTmpXQXB6ZHpadFdVNUxha3RtTkRkbFNFSlNUaTg0Y205eFZVYzVSWG80VjNWT09ISllLM2NyZFVkQ1NsQk1kRVYxTW5KTk1EZE9OWGQ1TUZVMVdFVkhRbkZUQ2xGdlVsTjNUbmd6VG05cldYZ3JPRkowUjJGR1JrVkROMkoyY0ZwT09XNXlabVJFV1doemFrNUJTRmt5V0ZCellYTndNa3BEVERKR1NEUjVSV2s1U1hZS1lreENNV2N5TTNVd1NrWXllVXR5Y0VzME9FSXJVbXBNVDBaaVdXMUhjSHBwVGt4QmVqVjNZM1pJUWtaS1lsUTVWMVJpY0UxQ1RESkJaM1pUWW1KUFdBcEJOREZXZW1wYWJqSXlhVGc1Y21GWGFXOVFjRU5DWjBSS1prNURUVzlQYm05blFXdzVWemRvS3pkbmFXUmhSVGQxZEhKSlMyMWpTRzFJT0RaR05uSk5DbXRsVGtRMVoxWkNPRVpKTkRoaVpGQkNNRFpNY2pCblNuRlRXVFJ2ZUdKWGJIcDZXa1ZwTW5oR1VXZHNNR04yUW01U1prSTFNVmhDSzFKVVFWUjFLMllLTVhZelVEWnZibE5NV0VoSFFucFllRXBHTlhwR05EWmtjbE5EZW01SWJXWXhMM0ZEYWl0VGNIZG1kM0U1YkZoclZsUktSRE5XUlhKbmVGcDZWRTVCWndweU1tdEVNVkJUWkV4UWFFOHlaa2hWYTNoeGQyd3dOVWxqT1VKUFYyOVJXVFpMV0dZNFRuWkZNVWhMVkRWeVF6QmtXblpZVVhobGFreFdURW95VFZjd0NuQkNZemw1TTNjM0wyaGFWVTkyUTFKRUszWTViMFZGUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCZVd4eUsxSnVUMFUxYW1oRmVVZEpSRk5IWlRCeFdXVjJTRUp4VFhSRlZXTkZOMHA2V0VreVpGSnpUekpQVjI1akNpOXBia0k0ZGxCUWFHeGxOV1JwTlc1R1ZHUnlkWHB5Y0dSU1NVY3pNRGg0V0dkVGRsQkpZbmRqWWxoMGNWRmljbEJxZVRkeVRuRlhPRlY1WmtwbFYyTUtNMWRRWmtWbGVrOHlkazlQVVZSQmNHdDVLMnBMT0ROeWRqQjRlbVpZWlRKeVNHOU9Ta2h5V1hKWVMyeG5ZMkU0Um10MU5EWnhaWEZFU0RsQ2JFZGxkUXBtWTJsaVJGUXdOalEyVWxsdGRsSlVjemt2VWxkS1drOTRkbEZ4V1RsSmMyOXRaRlo0WnpObVFUVXZPRlpITmpsT2JVSkthMGRQU1ZGWlRqRnhTalF3Q2xRMEszRndVVWRZYnpFME1UUm5WM1paWjNKUVJEaHJkbUZaVlVWeFNqZFRTV0pJZEV3eVQxQm5iVmsxYjJoRWFESmhLemxGTkc0NGRuZDBSbEYwYkZNS1duWnZaelowZDFOQk5XVlJhMjFtZERaalUyZ3pUMHhRTTBJcloyTXpTWEUxWm1GblNXdG5ObkpzYlRSUFExRkZkWGh3ZG1kdVRFaHFNV2RtWWswdlpRcG1NbmxOWm5Wa1pFNURlbkkyYzIxaldqWnFiRVJpUzJaNlltNXBZMlZGYTBVMk9WVnplWEJwU0ZwTGRrUnlVRlZ5YVdOSFJIUndObFp0UXpZdlRsTnhDbE4zUjBGMFpXbFFUalJOU0d4ak5UUTRVWEJuVEhGVWRsQlFlR0p6UW1NMWFtVllUVkpwY0RKdmFITm5OMVYyY1hoc05uTXpXRzVOUzNCeE5WcDBWMVlLWkVaTE1qVXdPWFEzUXpsd2QxSmFhMDlsV0RsemFESmFSalZ6WWxSbU5WVkZiRFJJT1ZoMGExRlNTMlZJVFhaV2FrYzRZV0Z2VVdvMmNuVnRTRVpLZWdwTlZVZEpVMDAwVEhWQlVqZFlaRzFxT1d0MVVtcG5ZWFp2Y0UxUmJuTXZUM2xGZFZCNVZqbEVUMWR6UVVKUk5HTm1aRU5rZURWS05qRnRjazUyV0RSa0NrVnZjbGRxS3pkbmVIRlRlaTlNVEdOb2N6aDZjVVF2VUc5c2FXOW1NbkJrU1ZsclIzTjBhakF6YjNWdmNIVjNkSGRUTjJoRU5GZ3ZjVTFWUTBGM1JVRUtRVkZMUTBGblFtbHBTSGhaWjJSbGN6UnhiR0pwV2pWbWJURXZNVlJSVTFCbmNqUlJObUpaUzFGV1N6ZE9jRzV0TkRGWVVVUjVVakF2Y0VKaFdsTTBad3BHU1dSVFlreFlNVTV6T1Zkc1FrVndNa2RXVVZJMVpXRlhSakppT0ROclVscGhNR05MVTNCVVZ5czViVGdyYldOQ1pIUlpPRXd5TldJdlFXNUpiRUl6Q21aVVJTOTJUbmRDZERacFZXOHJhWFprWlV0dGNtRjRaSFl2UXpKWGNuTXpaV2xRZEZaWlFYZDFlRFpJTlV0NVFTdFdXazVzVlRjMlNVeDVabUppYkVnS1REZGxWbVpJVG14dGR6WjBVRVZQVUhwVlZESTFiR2xzYlM5MlFWQlFSR3BMZG5kTVoxRkVVbWRaUmxGMFlXRmlaMEV2UXpBMFdsWldNMlZaWTFoWlRncE1jM0VyUkVaaGFWQjJSV3RzY1hCdWFqQllPV1JhYVUxdU56aEhNMFYyT1VONGJqRlBTazVDUmt4dVZUQmtVVzlyY1hobVMwMU9aazFXZW13dk9VMXNDblpLTDBKTGNYQkhjMjFES3pGb1MzYzVVbGRGU1ZsMVVpOXpNWEZDWkU5QlRHWXlORkE1Wnk4MFRuRm1SVTlKYTFvMWMzWkJhMDFLVVN0SlUwUjFhSG9LTXk5UlF6TllabmQ1UVhGeU9Xa3dheXMzTWpoclJFUndjMkpxYm13MmNYWm5NazFpYVdJNGJtbHdVVFFyUm5vNVFtSk1abWhRTUhZeFpGcGhSMmt3TkFwc1IwSmhZek5yTlhacWNWZzNNbkpJUTFKS1MyRnRjRk5NWlZaUWQxWkZTRlZ5YkhWdVlqTnRNMjFuU0ZsVkszaHhVMEYxU2k5UFlsQm5VRTR5YkUxTENqZFJaMUo1VUV0bk1FNW1XalZPYW04dmFVeDVORVZRUWxaTFdFWnBibHBhTmsxeWFGbHpWMFpuYVU0d00yTjRSeXR3WmxwTFUyWTRZMnhqWVRZNFMwWUtkMnM0SzFkeVMwMHJhbGxwVEdGNmExcHpjalIwWkc1dVluRnRMekZtVUZoeWNrTmljR3BxVDB4cFp6aHNVVTh4U1c5cGVreFJRWHBHUTNFNWVtUnFkUXBaY0hsRmFHZDFXblpCT1cwMmVqSklhVmwyWjA1eFdFdFhiM0V2YlRjeU0zcE9ZWEJyT0hJemRHeFdhemRGZDFwQlVVdERRVkZGUVRsTlZUYzFabVo1Q2xkbVMxZDBVRWhRYTNoQ1ozbE5ZMmRLYlhacGNFTkxSbkpXUkRORVMwZDBSVmx5UzFkUFkyYzVlbEV5ZVhOUU1GcFpUQzkzUlRKNlZUSXlMM2d5WnpnS2JIUldNR2hNVFZWVlJUTmxiR1Z5Tm1WSmJXRm5TRGRVZGxkYVEzbENOR1ZWYWs5eFNGRkJSWFJzUkdwaGExSTBhbWRoT0hOSU9XMXBhRTl0V25sTmN3b3lUVkUwVmtaT2RteENWelZqY0ROMWNVRjZPVXQyVFRSV2JVaDNjMDlTYms5bFNpdG1kRVl6VVV4dFVGbFFaVVJIYm00clYyRXpTVlpwZVhKVlZVNW9Dazl3UW5kR04xZ3JWVXhNT0Rac09XVmhkeXRyYW1oaGJHTlVla1p4ZFhBNWNXMUllV05aYUZrNVEzUlVVM0JHVHpWNk1WbENObkp2SzNZNFZsZzRRM2tLYjJObk1GTldSek5IUmt3MVZtZHlORkZPVEN0YU9VVllPRkF3YzBkTGRISXZWWEl6WkRGVlVVOXRiaXN5WjNoTVNuaG1NR3RET1V4M1VrMTJPQzh5T0FwRVUyWmtia0ZaUTI4eEwxTk1VVXREUVZGRlFUQTJUMkpKVFcxdlJVTllTVk14Ym1wcWExRlRUR2MyUWpoMWJsTTVUbmxNYVhCSE1FZDVaMnREVm5WbUNuZEdXbFEyT0hweVozWlhPRlpCTVRBNGIyeEZXVU5XUjJjelJYWnNSbVkwYVRWT1VuVkJUVmxXZUhCd1ptaHdPVnBUZEZocGQzVkxaMVpoVkdZdllXVUtaQ3RZWW5JeFIySmpkbEpZVmtkb1RuUllZamt2YWxSV2VuaEdVVzFOYXpCcGVtdzRkR2h1YTFOR0sxSkJNWEptTkU1MGJEQTFMM1ZhZEVSV1FXZFBPUXBVVDNSVVZubDJTMmd6UkdOUldUa3JRMGxtY1hGQ2MyVndiek4wYkVkNGFXSk5SbUp6Y0VSS1ZESlNPVlphU1ZsNE5VVmlVMUpCUTJFeE0zRkVWakpOQ204d1V6WldhRzlzU2pKTmEyaE5RM2gxU0RWR1RuZzNabXBDZVVaQlR6QmxlVFZtTW10dGJDOTBLMjk0WkZwMk0yMHpLMFZRY1dNcllrOUtlbXBZVlZJS1VGUnZiVllyVW5ReVltRm9aVWt4SzIxb1RqQlpPVXhyYlRodFN6RXJNVmxpWW1ndlZFZEZTQ3RSUzBOQlVVVkJNMVUzYW1KSVl6RmxXbmM0U2xKbmNBcHVVV1ZITm5GSldEaEpWa1pKZWtKUVpYcG5hMVo0YUhKUFpIZHhVR2d5YTBWaU56QTVNMjlpU2tKc1FXdHBablY0Y2xWS1dFRjBhMFpQUTJ0bVJVeExDbFZDTVVnM2JtSktlRzFvY2l0R1ozcHlRME5yY1hadFNWbHllSGg0T0hrelpHWjRSekJzVG1OVFRsaFJhbmxvZUd4MFFsUmxVbU14ZFdwM1dIcHBOblVLVTAwNGJtOUlhM0JUYlhGTlJVOVNaVUZOVTBjNFpteG9WamxZZDJ3d2RHVnlibVpaUzJzeFFVUmFWbFp2ZEVoamRrRlhhRlpHVlN0MVRYWldabUZ5UVFwaFZXbGpTVzVFWlVaeFJFeEpUMnhoTlhKeFV6UnZhMjR6UVVNMVV6SjFSRTlwYkdWSmNVdHNSemRET0ZGb2NVZHJhMHBIYldjdlNuTjZjMjlCTURkT0NqVkZSa3BVVlVkWU1tdDVjbFl3VTFob0x6TjNaVGxIY1ZSNFkxVkVjVWx5YWxKVkwwcDJiRTFxWldzM05UUXpUSGxoVGtkcVV6TlRaRWhoYVVOVGNuRUtRV0owYldSUlMwTkJVVUZCYW1wR1pVTkxiREJSVjFWb1RGZzRNMXBHTlZneVNtNXRkRlUxYTJKb0t5OXZWbkJFY0M5MFVVOTJiRlZYSzFkclprMXJlQXBqYzNWdWRrNUdUbmRoV2pSVGFVUkNVRFEzVFdGT05ubEllRlJpTUhOYVFteEZVWEZ1U1RoMmMwMXNkVUl2TWpWRlV6QmFOMDR2Um0xTmFsY3dVRkZFQ21aVWFYUmtRV2xuVEZWMlJsZDNXV3R2VUhOQ1N6WlpSSEEwWWpSUk1rVm9Mek0wTVRoQmMyVllMMVZKWkZOaUwwSm9Wa3BEUWtZM1NHcE1PWGsxVDJjS1pqRTVWVzVNWmt3NVpUbGlkVnBhTDBGWGFHRk9NVFpoZDI1amJrcE9TV2xpZWxWV1FVZHJiMUJQTVVKYU9WWmFlWE5zVDJRMmVHa3dWVGxpTkc0eWRRcGxUV2RxZDFFeU1sZHFOVGhSYjNnM2NHRmxSSFJTZFdKc1V6WkZaVGx3YkRsVGRHdEVOa00yZFRjM2VFZDVaRU41WlZaaWRtRTNjRFZxYTNKcFpVaDJDamRHWWtsS2FtSnhNa3B2TlcxT1oxbDNTa3R2ZEcxeVFTOTJZakpyUm5Gb1FXOUpRa0ZSUXpod2JVaERMemxaZHpSQ1lVUTVNak5DWTBKSmVYRkxjVUlLWXpCTVlsRmxRM05vZWxoMU9EY3hkMFZqVlZwcU5uaG1WVmhWT1RKUlVVNVZZMVJyY1d4MFFrSnlTV1o0WmpSSE56bDJlR3R2WVdSbGVDOVJZMDlKVEFwWlNYazJXbE5yVTBJM2NWcHhkME5wWTB0eWJ5OVJaV1Z0YmtjME5HSm1jMjFIWm5WSGR6VlZXbXhqYVRVMGJHTXhOMjFGYVZOc2NEaHpSRzkxTjFndkNtZFJjSEV6YW5BeFNHVktNVEFyZVRkNlNXUTJXVzFsVlVab1NreDFPRFY1VEhnMVRWcDZMMHRYTDJkc1JHTTBkMnAyVTAwclJVaHlNMlJyV1hsdFdYQUtWWEl2SzJJd1dYZExORE5YYVhFNFQwTlhibmcyZFhCcWRrMHZWMjVyVVZaa1FqRlFPVE5SVjJOUmRtUmtiSGhVY2xaRFNGUnBWVkJLZUhrek5XMXlUZ3B5YTNsUlowMHlaekpMY3pBMVdHZHRkRWxXYjNwTFpIVXJiRGQwZG5rNVJFUk5iMlpyVURZdlZIaDBWWEUyYmtGVFJFNHJOVkkxVlZkNmQzZ0tMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogc3NnOHJoY21lem4yNnQ4NmZ0c3V1d21jbzJmcmE3YzBwNW54b3R4NmpsbTl4YnIzbzd1dzdqcnF1MHI2NHM4cmd1dGc0Y2xjYW84MmtkNzV5andjYjlxcnRjNWQ4bmFnbWVraGZybDJnZWtoYzRvbnkxOWdmeGdycW00eWJiYngK\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '4391' + - '13096' content-type: - application/json date: - - Wed, 15 Mar 2023 10:04:40 GMT + - Wed, 14 Jun 2023 20:37:24 GMT expires: - '-1' pragma: @@ -771,6 +744,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -782,75 +757,77 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks list + - aks scale Connection: - keep-alive ParameterSetName: - - -g -o + - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestby5lceusw-79a739\",\n - \ \"fqdn\": \"cliakstest-clitestby5lceusw-79a739-082tmgg3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestby5lceusw-79a739-082tmgg3.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": - \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n - \ \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": - [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d95940c8-33a9-4be1-8357-b76bfe43cf66\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }\n ]\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestsrtaj3dnw-8ecadf\"\ + ,\n \"fqdn\": \"cliakstest-clitestsrtaj3dnw-8ecadf-ni9evgat.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestsrtaj3dnw-8ecadf-ni9evgat.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\ + \n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/14b251b7-e3a1-4949-8f98-eef3efe4e2fe\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"defender\": {\n \"logAnalyticsWorkspaceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n }\n\ + \ },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"\ + oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '4391' + - '4762' content-type: - application/json date: - - Wed, 15 Mar 2023 10:04:41 GMT + - Wed, 14 Jun 2023 20:37:25 GMT expires: - '-1' pragma: @@ -869,39 +846,115 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"tags": {"key1": "value1"}, "location": "westus2", "sku": {"name": "Base", + "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": + "1.25.6", "dnsPrefix": "cliakstest-clitestsrtaj3dnw-8ecadf", "agentPoolProfiles": + [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": + "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": + "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": + "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": + {"code": "Running"}, "enableNodePublicIP": false, "tags": {"tag1": "tv1", "tag2": + "tv2"}, "nodeLabels": {"label1": "value1", "label2": "value2"}, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": + "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "supportPlan": + "KubernetesOfficial", "networkProfile": {"networkPlugin": "kubenet", "podCidr": + "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": + {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/14b251b7-e3a1-4949-8f98-eef3efe4e2fe"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false, "securityProfile": {"defender": {"logAnalyticsWorkspaceResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2", + "securityMonitoring": {"enabled": true}}}, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}, "workloadAutoScalerProfile": {}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks get-credentials + - aks scale Connection: - keep-alive Content-Length: - - '0' + - '3261' + Content-Type: + - application/json ParameterSetName: - - -g -n --file + - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/listClusterUserCredential?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVV4bldVNTZWRWhYYUcxNFNuVnpObUU1YkVVclNHOTNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDAxNlJURk5SR3N4VFZSUk5WZG9aMUJOYWtFeFRYcEJlazFVVlhoTlJFRjRUa1JzWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuWTRTa2x3TWtZeWJreEJSMmszUVhGRFNEZG5WbWc1WmpWaFZGSjBRbXByVVVrd2JWbHNPVTluYUdaSk4zRnFWVkozZFVNM04ySk5iREZNY0N0NWIxY0tSRlUzYlc4d1FtaHRTa295WW1vd016SkpNMFJYVkVWbGJWZFJWREJUUkVGM1ZtWm9PVkUzSzJNd1ZsQmFaMnc1TXpKRFFVMTNSVVZZVlZocVRERllhd28wT0dreFJWZFVaR2MxWjBKek1tcHBXV3RRV1ZGblkxcDZhMUpPUTJ0MWFEWnVkRkptUTFSaFRteHZTa0pEVVU5RE0zRkRRWGhoUVZONFRUbG9NekJGQ25BdmFXVldabkZwTjNCaU5rTm5NRmd2VTBKd01WWkVXbmxFTUhkeGJuaHZSbkV5ZFVOSFVGRTJaakYyVVZWdFVWbFhkR3haYnl0alNYQlVWVGN6Y2xVS2VEUnBNazk2VFdobmVYcFNlamhuUVZOM1pIQlljVkp0WVZOYWJ5c3hhV3h4YkhCaFJYcHpWa2REUVU1TlpreG5lSHB4YVZVeE9XWm1kQ3Q0ZEd4MmFRcEVXR3RMVlVoaE5UTjNSU3RsVDJaMFNYWk1WMFpaU0VSTlJXSmFjbEJ2U25JelVFVjJjMFZVYWxJMWNESlhTbU5PTUd0V09XcENPWEpZUlc0eVVsbEtDaXRMYkc1RFVXVk9TMWN3VW5oT1lsaDZWWGR0VXpOcmJYbHZNbXBtWkdweWN6bHJSbG96ZW5ob1lUVnJTUzlUYlhGaGVVZDJhMlpETmxOVmFrd3pXRXNLVms1WFVWbFVaems0UlhOYWNtSnNXRmQyVHpKV1VuTmpSMlpvUW5SWFlYUkdaSE5UVFVwUFZIaHdablpaUVZkRkszSm5RMjEwYjBWVE1GWkpURGRNYkFwR016aFJUalJLVUd0dGFubENUUzlRYkhOb0swUnBZVXRvWjB0M1VXRTRXRFpzUVhkdksyNXZWRWN4TTB3MVpWRjZiVFZLTDNoTlVqZFRVSEZwY2s5a0NrUXdZbXhLZWpaak0zWllaM00xWkVaNVNFdHZUVWRNUXprNGFVRnFUMVYxVWl0M09HZG5aRU5ZVDBSaWFXTXJVMVU1UjFOMWJtTkxjSGhuZWlzMmRFb0thQzlHU21oM2R6ZDNOVWxYUVhwTFpuaEpMM1pKVGt4bVZHTnFhV2t4YmxBdlUxSnVlWEZEUTJaYWEwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1R6TnNXbkpFVG1oMVFXWmxLMEZSQ2xGdUwwcGlhMDFuWlVsaFIwMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlEwNXJObWR5TjJGMVpUQlVPWEZVYjFoR1kzRnRTbU42ZDNjS2FqUmlZMnhRTWtKeVFYaGpabVJsY25oSFUxRk1hbGx2VDBSNlZqWlVkRWxGUTFWc1RFbHhWVEF3YW5wMU9XY3lha3h1TkdSVU5HUmtPWGRSV1V4SmNRcFFZbFJ4TWxCSllUaFBlRmxwU1VneFV6UllSalZoZWswemRVNXZXR2hGVEVkbVkyWmtRVE4zTDJaUVVYbHlNMmQxZVc1S1VITm5TbFpSVjBScldXWmpDbVZzZGxseVNWVkVibUp1UVVkRGJteFphRGRMS3poSFNpOHJUbEpEUm1selVGRlZUM0JTUkZoTFltWjJLemt5U1hWRGRHRnVWSEUwYjBscU1XNDJWMndLTW1sUWVWY3lkMnRvY2t4dFVTOHhaVzQ0T0ZjeFoxSkhibUoyVTJSeE5tOWxOMk41TWswd2FsaGFVazVHTTNNNWVsUldiMGhHZGxad09VOVliSE5PV0FwbWQwVkxkM2h4TDJSU1NVcG5Xa3QwT1ZaU01FZFpiVWx6Wm1wVWEyeFlkV0ZpVmlzNVUybFpibFJXWWpSUWFrUkNlVTF3ZUc0eFpGZExNMWhIUlM5ekNuTnVUV2xDY1ZSWVNUaDFaMlZhZUhOUU1rMVhPRnBKUVV4TFMzZDFlRUZ1S3psamMwc3JRbU56TW1oRmVtMDFObEU1TmpnMFNtWmpNVloxVEVaNll6VUtVWE0yUmpKUlZsaFJZbkpYYUc4eVdrWmpURmR2V0doMU16UjNhRGRDYm5sclNFRmxkamd5VVV0eGExaExkWGxFUTJWS2IzaHlWSFUwWm1SUE1sTkphd3B1TVVVeFYwaFlWVGgyZWxwdU5XdFJiM2xJTVUxeGFteHJVMGd6Vm5sTmMxZ3lNMkZxVVZsQmVXVlVVVTE2V1dsbGVuWXZlalYwTjNkcWRTOHJjV2syQ25CRFRtUjFNa1YxWlhobFF6ZGxXalpJYUhsdWRHSnRVMnhPYzFOSFpVOVpTVzVQZEZKSFRDdEVRWElyUkdka1R6ZGpaRE5FWWxFd2NpOHpZekZQUzNRS2QyMUlOazltY25oaVFXOVVlR3RPU1UxSlZFUk1XakI0VmtVd01FSktUVmR5TW5Kd1JUQk1RMGRSVlhKNlIzRjBjWGxGUmtsWWNXNXViSGcwTlV0d2NBb3dValJXTDNobGJUaElUM2s1Tm5abmQzYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzdGVzdC1jbGl0ZXN0Ynk1bGNldXN3LTc5YTczOS0wODJ0bWdnMy5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdGNsY2ltbQpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdGNsY2ltbQogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGJ5NWxjZXVzd29fY2xpYWtzdGVzdGNsY2ltbQogIG5hbWU6IGNsaWFrc3Rlc3RjbGNpbW0KY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0Y2xjaW1tCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGJ5NWxjZXVzd29fY2xpYWtzdGVzdGNsY2ltbQogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUldYWXJReTlZVjJkRFRUZzVkVFYzVGtOSmNVbElWRUZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQmVrMVVWWGRQVkZWNFRrUnNZVVozTUhsT1ZFRjZUVlJWZUUxRVFYaE9SR3hoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVUktUVGhGUjJ0amRFTXhlREkyVWxSeVFqQkhTRFlLY1RFNVdsRndhV05NVWxaUldscENWMlYwUTFSM1pGWTVRVVJxTTBGSlpXSm1ZME5WWnl0aGFrZEhTMkY0VlVNeVlubDNkbFJ2Ykc1eFJVVlVlbW96WVFwVFJHZFlkbGxZYWtoMVdVdHJUV2h0Wld4dFdqRXdiRzFNUmtacGMweEVjM0ZYUm5WRlFUaG5lbmxTTVZGSFJFeEdWRlZ6T0VocWFTOTFVQ3R1ZFVsTENtOTJVWFZzVGtGWGMzcEtPRlZaTmtZNVpuRnRhVmxXVmxGSFJEaFRjMmh1ZWt4Qk9VeHhWM2xYVmtkV1pFaElXV3d6UVRKMlJYVXJiWFpwVFRsT1ZFd0tiREJGTlRObWVtWm1SVFpDTTFkRGNVc3ZOMFk0UVZWclVGaG1SRFl3THpKaU1HZE5NU3RFVmxOcmMxcHFaRkp0U2pGVVNFRm1PRmRaV205dVNXUlJVUXBGV2t0dUwyNVVjbEIxVlhGcGVsUXlNekZsVG10Q1FtSm9UM0pYY0VWTE5VWnhTV3RZYTNkd1ZGRlhRMGhhUkRScWRFVkZhVGczWVhGR1JIUjFLMkpGQ2k4MFYxSmpWM0kyV2xKcGJrVkdZazVQVUVwWmVUSXlObGxNUldwR1dXRjRSVlI2Y0dGRVoxWlFiMlF6TWpobWRHNUxPR0Z5YkRNeGNYaE5lSHB1YVRVS1NqUkZTM2xpYjJweFRrOUNibGxPZWpJNVJVWnhObEJWV2xoSE5ERjJhbk5TTW5wd05IWXlTaTl1V2s5T2VEVnBhVFJ4YkVSbWVHcElVMWxEY0dReFpncHNWMDU1T1c5UlZXWXhlbVJSVjJrd1JraDBjSGRXVUhadVFYb3ZNelJuTlhWdkswb3ZZMkZyVUhWUmRqRTFjSE4wUkRSSU5rWTJRbk5sY0hZNFowZEtDakY1UlZkNFdrNVFOa2g1UW5KS1YzSmxiVmhIU2pkRmEzcEpja2t6TlhCS2VGbzRRV05VV21GemQzQTRZMFJEVmxsdFRWQkRURXBVZDNadmQxaFZiVThLTUVKc1JVbHJlRFJ6V1Rob1NTdHpjblkxZDB4VldITTFSR2RIY2xCTU1reDFaVTlFVEhOM2EyaDVkVEoxVUN0VmVWVktTRVl6VkdselQwMHdhalJDU1FweGVsaDJiWHAwUzJ4VVRTOXVXSFZDYUhKTmFqZDNTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsUjBOVmRoZDNwWlltY0tTRE4yWjBWRlNpOTVWelZFU1VocFIyaHFRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRllZMlJCTWtKbFpWcG1LemhsU1doeFFWWTVOQXBYYld4blNuTmpSV3hZTlRnckwwRTJNV2xGUm5Sc1pGaDVlRlZWZEV0S1duUlhUV1pOVm5wU1JWUlpkM1ZOTm5sdlNISktkelJITlhKdFpXeHZibXh0Q2pkWVVFbGtUamhhTkVoc2VscHFVRXhVU1RVd1FVNUhhamhUVTAxT1RqWm1RM2xDWlRGVlZGSnhMM0JvVXprMlkzQXpRVUZNVkRSRk5ITm5RM0JFU1djS04yaFpkM1p3YlZSSWVFcG5abVJrVG5GWE1pdFlSRUZUVkdZdmFHWnhiVEZhZGpWb2JXaG1XR3BtY2tsQmNtTmtNak5LTVZsNFFrcEtlSFJCZDA5YWJBcEpiVTQ0ZEhaSFRWWlVaalZCVEhocU5XaEtWbVJYYVVwRVdFcG5aRmRDVUhCM2EwVkZOR2hXVUhSMWNuaGlSVXRXT0hKaGRVMW1VbmxSVG05eFNFNXFDbVp6ZDFGc01FUXhOeXN5WWtoeU1IaHVNbk14TURSalNDOVVVbU5DTldGT1JYVmpNblZzSzJKMWJVVkhkbGxMY0cxeU4yZDJUbXhIVDBOdE9GbEpVWGdLY2xwM2JYTm1lVEJ3VERCTGFXMTRNWFV4T1hKUGJuRlJhbTFVY0ZOQ00wNTZaMk01T1hSeWVtWjBWVlF6WlRsdlNTOTBjRWhJV0VWeWNYb3hZek5IVmdwUVdXUnNlVmc0UVdFeVQxRjJOakZMVVVablVYRmlPQzh5TkdNeUswRkRVMHRPZDBSVmNuUkxlVlJFTjBOc2FXTTVPV0o0WmpkVldEbGpaRlpYVVc5bkNrMUdlblYwV1RSVVZHVmxSbFV3YlRobFNGaG1Wa2RyTldnMldUTmxXSE5UZVd0NlZYaHZMMGxCTW5BMlpYbGxlaTlNWlVWVWJuUlFUMVJsTDB4RWJVSUtURTFRWWtoUlNVNXNORXBKTVdWV2NTOTVNa3hIUldWTmEweElkRWRWVERJNWVXeDFOVXRKYzJjM0sxUlJNVkkxUlROTWJXbHNNMWh0U3pReFVrcEJlZ3BzZGtWTWNtWmhVM292Y1hCUFVXMVJUVzUzYldoaldHeHZaRlpxTURSV1puSkVXVU5CT0RaVFZIRjNOMmQxVEhaakx6YzNUbGhqZVZkQ1JFOXVSbm8xQ21zMVNqTlZWVzFDU0ZOVlNFNU1SRFpMY25KRFdIWlZQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJlVlJRUWtKd1NFeFJkR05rZFd0Vk5uZGtRbWdyY1hSbVYxVkxXVzVETUZaVlIxZFJWbTV5VVdzNFNGWm1VVUUwQ2psM1EwaHRNek5CYkVsUWJXOTRhR2x0YzFaQmRHMDRjMHd3TmtwYU5taENSVGcwT1RKclp6UkdOekpHTkhnM2JVTndSRWxhYm5CYWJXUmtTbHBwZUZJS1dYSkRkemRMYkdoaWFFRlFTVTA0YTJSVlFtZDVlRlV4VEZCQ05EUjJOMm92Y0RkcFEzRk1NRXh3VkZGR2NrMTVaa1pIVDJobVdEWndiMjFHVmxWQ1p3b3ZSWEpKV2poNWQxQlRObXh6Ykd4U2JGaFNlREpLWkhkT2NuaE1kbkJ5TkdwUVZGVjVOV1JDVDJRek9ETXplRTluWkRGbmNXbDJLM2htUVVaS1JERXpDbmNyZEZBNWJUbEpSRTVtWnpGVmNFeEhXVE5WV21sa1ZYaDNTQzlHYlVkaFNubElWVVZDUjFOd0x6VXdObm8zYkV0dmN6QTVkRGxZYWxwQlVWYzBWSEVLTVhGU1EzVlNZV2xLUmpWTlMxVXdSbWRvTWxFclNUZFNRa2wyVHpKeGFGRTNZblp0ZUZBclJtdFlSbkVyYlZWWmNIaENWM3BVYW5sWFRYUjBkVzFEZUFwSmVGZEhjMUpGT0RaWFp6UkdWRFpJWkRsMlNEZGFlWFpIY1RWa09XRnpWRTFqTlRSMVUyVkNRM050TmtrMmFsUm5XakpFWXpsMlVrSmhkV294UjFaNENuVk9ZalEzUldSek5tVk1PV2xtTlRKVWFtTmxXVzkxUzNCUk16aFplREJ0UVhGWVpGZzFWbXBqZG1GRlJrZzVZek5WUm05MFFsSTNZV05HVkRjMWQwMEtMemtyU1U5aWNWQnBaak5IY0VRM2EwdzVaV0ZpVEZFclFpdG9aV2RpU0hGaUwwbENhV1JqYUVaelYxUlVLMmc0WjJGNVZuRXpjR3g0YVdWNFNrMTVTd3A1VGl0aFUyTlhaa0ZJUlRKWGNrMUxaa2hCZDJ4WFNtcEVkMmw1VlRoTU5rMUdNVXBxZEVGYVVrTktUV1ZNUjFCSlUxQnlTemNyWTBNeFJqZFBVVFJDQ25GNmVUbHBOMjVxWjNrM1RVcEpZM0owY21vdmJFMXNRMUo0WkRBMGNrUnFUa2tyUVZOTGN6RTNOWE0zVTNCVmVsQTFNVGRuV1dGNlNTczRRMEYzUlVFS1FWRkxRMEZuUlVGb1duTlFXRFI0Y1RORGVUWjFaRzFGTldaVE5WTXhjVWhUTVN0VmRGbHBaV05oSzNaNFF6RjZNbVJ3UzB0UFNpODRWVEY0ZGpCbmJncElUR1pzTjBsSGFEUk5TMEpqVjA5eWFFcEtlbGhrYWpGMFprRnlWa2x5UjJKTlZsZGFabGszY21WS2MyOU9aelJNV21OMlZESkROR1p1T1RCVVVVNUNDa0p1VVRGb05GUnNOR1JLY0U1Q1NWZExTWGhoZVdWdFYyWndjMFUwVTJ4TFYzSkNTVFptYmlzeVZucFRPWEJRWWpaTlJFUlJSbEZ4TUhZelducEZkVFFLT0VSbVRXOW1lamN4ZGtodVRUTjFSV05YVW1sTEsxUXJhbUZPTm5SMVRIVXhhakZhTUZKSVlteENUSE5SVEZKTlZIbGFUMVUzTVZwcVZXcDROVmRSU3dwQ1ZGWktVVWhzUVVjeWVqWkZVV1Z1U0ZOMGRrNHlOa05xWkM5Q01GSllTMUJFU1Zaak5qRnNVV1paUlhGeVlYVnFablZRVlZOaFdGSjNZakp2Tml0eENqVmtiVlZYTkhsbmVuTkdVbHBwZURSRlluWkNSbUZRVm1OaWFHNTVWbGQwTUN0UVMxcG5ZV3BPVDFOT1FWZE9PWFp6WlVGRloxVk1aekZXYUZreVVWQUtVamg1VERVMVltTXpOVTVXUkZCRFprTlpVelpEVmtFdmQzcExVWEkyVm5OaVFYQldOM016Y2tsSE1uUllSa3h3VGxGdmQxaGpZV2dyZWxjMGNYUnlSQXB5TkVGdlYzSlhjVFF4UVRJNVExSmxVR2hxZVhKcE1EUk5NVVZZZHpOTFRXbGxTVmx4YkRZMlQxcGtPVVk1VkV3dmF6RXJTMWh4VlZOc1QzUk1lSGgyQ2tWMmJuWkdVbXRyVkRVMGRGRktZVEJCY21zeFFTOVlXa0ZYZEdjd1lYTkxSMEZrV2s5bFJsRjZiVGswYUdnMGVIZDBPRFJvWm1kMFIweDViWGxqWjBVS1EyeHFkRXhaUWxkQ2JrOXdLMGhDWjBWSlVVSTRkRTk0TUZkT1JWVjNlRXBSV25wU1kzUlRSMmMzVWtwNFZGRlBibkUwYlRadlVFaFJRMU5RYUc1d09BbzRjVlZTYVRCS1drRldUMVpDTldacWREa3hOa3MxV0hvdmVDOXVVV3d2VVZrNE9HVkpkR2wyUkhwSGNESjFRemM0Y2tWRFoyZEZRa0ZPSzNBck5FZDRDa05YY0dKRU1qUk5Va1VyZUV4M1RHWXJhQ3RIVEVNd1NGQnVObmxhY0ZNeE9GVklOV2RqZVdGYU1FUnZNalV2VjJjelprRkVVak40VGxkbldEUldUemtLUW5OckswWmhRVzB3TmpGRVRIZDJlSGR0Wm1VemJHTlBURmQ1U3psVVRWSktlVGgxTjBScFVDdHVUbU4xY1dSNUsxVnFaSEZ6YlUxRGRXWnRlVlEzYndwWWJtVlNWMFpyTDBzM2JGaEZkbGxOT0VOYVJXTkZOMDVGWVRGb00yZzFWRzlVTlhoVGRHVnFNR0l6Y0ZKeVdWSlZaRkZRUmtGblRFdDVWMHRrY0dKbENqaEVUVFJFTm5aUlNWbFpWMDF0WVRodWRFZDRZakl4SzJKWFlrOHhNbVJ6VEdack0zZDBVekZ5WkdjeFoyRnlkQzlGYWtFM1MyRjNkbGhGVldFdk9HSUtjV2RNT0VkRFFWcFJVbVI2UTAxdk1HaGtObTlpZHpZdmREbFNjVXBtWjNWeFVqSlVjWFJPU21SNVYyOUtZbklyZFdOVldFaENhV3d3VTJaYVZVc3dhQW94Vnl0dlVqRkVNblEwWmxsRFRHdERaMmRGUWtGUFdrdGpRbGMxZFhkeWRrTkNSUzlUZWtoMWEwMTJUbEJzWWxKalZYUkRkRTVIUVRGak5EZDRORXBwQ2xsYVJVSnlUbVkyVG1nemEwVk5NWFJwVWtWQmRXeHhjMDk2YnpWRFdFSkRSRUp6TVRrd2RFVTNUblF6Umt4V1VFSTBUMnRNVVVsSmFIQlljR05KZFZBS016TkJWWE5wUzNJMVIzRTNaRE13YzB0RVVuaFhhRTU1ZG1oamJDOVBjME5MSzJGUldtUm5XSGxSVW5kNlNYZ3lUaXRIVms1NlZDczRZMGMzUWl0VlNRcDBTWGd2UzBOd2RIZHFWRGw1VERsWGRIQmpXVXRLZUcxeE9XaEdhbGRVYjJ4bWNVc3hXVmNyYVRCV2VrMDFNWHA2YmtGeFNHY3JkVEZZYWtsb0t6VkxDblJvTVhVdlIxZHFhWHBhSzBwQ01GbElNRVJNZDJsT1NIcExUVU41VDNKUmJrcDFVekpRYzJwMldqbFBLMjlOVGxJcldWQXJXbVJsY1dGbU4wOXlaWFVLYzJselZGZHBhVms0UVdWTlRXWXlPRkVyZVRNNGJDOVdVRTVIYlRkUU9XUjBabFV3V1RsQmR6ZGxZME5uWjBWQlEwWnlRa2RyWTFOdmRscHFlbE5wU1FwS1RFaHdialpJWlVwbE9VNUdlVVlyU2tJeGJERTBaekJUZEV0WVJuQXhkRE5sTjFWNFZrOTBPVmh6YmtGclpGRlNNazFqT1RWUVNDOVNlR3RyYldKbkNqUlZabmhMWmtWT05HWk9hRTl5T0Rnd2VVVmtjRFZ4YzJKQllrVnlRbWN3YzNKd2VpOXRNRGxCYjNaR1NsZEpiSGhwVUVsM1MwUk9XbTl1TTFWME5Gb0tUa0ZOWTI5cVVUVm9SRkp4VUZsa1RHTmlOa2RJV0hacFQyZE1hRmROZVRGMVVFcE9kMlE1UkhaNloxRTVNM1o2VlV0UGNtRnNaRXBuWVVKSFpGcFRRUXB5UWtkSlRVYzBOMUZJYm5kUU5XSktXREV5Tm1wb1NuTmFWRXhCUWtaSlJTOUdOa1JUVnpnMlZGUXhibTFhU21kblUycFRTQ3RXV1hCSFVHMVJjM2wxQ25OalIwdFJiMDVVZGsweGRESkpPSGQyY1RVMFdFcDZhR3hGYXk5NVJWTnRVSEpJV2s1MlRITXpXQzlRWms1M01IYzVhRXRQZVRGWlZ6Wk9aR2h3YVhjS2IyeEtabWRSUzBOQlVVRXZSRE00YkRBNVozVktSWEJZVUhKbEsydHZPQzh6TlVsRlowSklRVUpEU1hwb1JUUkllbFZNVTNBeFNVVlFVM040WTFOcVJRcG5jVVV2VURWR1lrRktTVWhLYTJGS2NWQnBNbkp5T1ZZM1F6aDBaekZDUVhkS2EwSkdVVlF2ZGxWTk9UTlZkazVZVlVWbFZtMVdaVGhoZG1RMWNXZEVDblZvV0RoU2N6QjZibmcyUmxkT1VrbDZibEV4Wm10RE4xRkRkRVJSZWtGbFkxTjZlVUZoVmtoMGJUWktjVzgxVlN0SWQzVTRXRlpRVXpkeFdqZzNhRTBLWm01dmMwOTJhVUUwTTB0eVkxVnVOVlJSU25NNFYzVjNWV0puY1dsWlZHeHVZV2Q1YnpOWFUweFdXbE5CVWxGbWIxQnViaTlNYkd3d1prSXpaa3BOZHdwa2RGazBlVlpSTVd0Q1dUTlNkaTgwVnpGcVpGSkJZU3RoZWxoVVpqTlFOMWhqYzI1bE9HMUhZa1JXZVdnNE9UVlhhMmN6TmtSVFRuRjRlbnBLVURSR0NtTjRVakZaVFhCUk1XZFpaWGtyZERsc1dFbHpZekpNVTBwSGFEUnhRVEZrUVc5SlFrRlJRMW94YlZRdldEbFVTakkwVkV4TlNESXZVemx3VlVSUmRsWUtWMG92VjFCc1dFc3djMFJIWkVFdk4xZ3labU5oUVZOMllrTklSbTAxV1dWSFJFWm9URTlEU2xoWFYzSk5iRTVNTWxsRFYyUjZhWHBKYkZWcmRYaExOQXBzVkZaak1ESjBUVkZ3TlhodlNrRlVNSFF4ZERjMGJsTk1UblJzVFVaWmVGWXhja05IY1ZsbVJtMWlVVzFNYkRacU5FZHFPWGhPV1ZkaVF6RnVTMjF1Q2tGWWRqQXJRVEIzYTNOWk5uRkNXRTFUTm1aelNUUlpjRW93ZUM5b2RtOXBNMlJxWjBwa2JtRnNSVlJWSzNGWWFFTXhkekUyTVdGMVZreERiV2RCSzFnS2JYTlFRbmg1TVRFd1l6UlJTbVJOUVROR1JXMVllbmxLV1RacVpuaEZjRW8xVTJObk5FVkhlVGxCTkRCUlR6UkxjRmhoWTBOQ1NXaEdNemxKVEhscFV3cDBjSFF4V0V0T1RVbENaSEJsY0RsTVRsSklTRzVJZDAxaFVGcHBibkF6ZDNNdlkyZEZVRTlxVWpOVlVuQjVNMlJsVEU1c1UwRlNNVWRFY2s4S0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiB3OHcydnBuaWZtOGt4Z2tlMmFmcjQyeDV5d3U3ZzAxYnB3b3BzYmNiNTVscXR1MG5jbDM1emNuN3o3MjN1OTc2aHFlZXpocW45bDRsZTR3MnMxb2U5NmQyZzJlNHV4dmxrdGtmOGdyZ254ZzUxYmZnd3kwb3JneHNuZjI1djFkMAo=\"\n - \ }\n ]\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestsrtaj3dnw-8ecadf\"\ + ,\n \"fqdn\": \"cliakstest-clitestsrtaj3dnw-8ecadf-ni9evgat.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestsrtaj3dnw-8ecadf-ni9evgat.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\ + \n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/14b251b7-e3a1-4949-8f98-eef3efe4e2fe\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"defender\": {\n \"logAnalyticsWorkspaceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n }\n\ + \ },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"\ + oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/def041d5-d6fd-4628-a390-dcbc13e0cf8e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '13108' + - '4760' content-type: - application/json date: - - Wed, 15 Mar 2023 10:04:41 GMT + - Wed, 14 Jun 2023 20:37:32 GMT expires: - '-1' pragma: @@ -925,36 +978,33 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks get-credentials + - aks scale Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -n -f + - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/listClusterUserCredential?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/def041d5-d6fd-4628-a390-dcbc13e0cf8e?api-version=2016-03-30 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVV4bldVNTZWRWhYYUcxNFNuVnpObUU1YkVVclNHOTNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDAxNlJURk5SR3N4VFZSUk5WZG9aMUJOYWtFeFRYcEJlazFVVlhoTlJFRjRUa1JzWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuWTRTa2x3TWtZeWJreEJSMmszUVhGRFNEZG5WbWc1WmpWaFZGSjBRbXByVVVrd2JWbHNPVTluYUdaSk4zRnFWVkozZFVNM04ySk5iREZNY0N0NWIxY0tSRlUzYlc4d1FtaHRTa295WW1vd016SkpNMFJYVkVWbGJWZFJWREJUUkVGM1ZtWm9PVkUzSzJNd1ZsQmFaMnc1TXpKRFFVMTNSVVZZVlZocVRERllhd28wT0dreFJWZFVaR2MxWjBKek1tcHBXV3RRV1ZGblkxcDZhMUpPUTJ0MWFEWnVkRkptUTFSaFRteHZTa0pEVVU5RE0zRkRRWGhoUVZONFRUbG9NekJGQ25BdmFXVldabkZwTjNCaU5rTm5NRmd2VTBKd01WWkVXbmxFTUhkeGJuaHZSbkV5ZFVOSFVGRTJaakYyVVZWdFVWbFhkR3haYnl0alNYQlVWVGN6Y2xVS2VEUnBNazk2VFdobmVYcFNlamhuUVZOM1pIQlljVkp0WVZOYWJ5c3hhV3h4YkhCaFJYcHpWa2REUVU1TlpreG5lSHB4YVZVeE9XWm1kQ3Q0ZEd4MmFRcEVXR3RMVlVoaE5UTjNSU3RsVDJaMFNYWk1WMFpaU0VSTlJXSmFjbEJ2U25JelVFVjJjMFZVYWxJMWNESlhTbU5PTUd0V09XcENPWEpZUlc0eVVsbEtDaXRMYkc1RFVXVk9TMWN3VW5oT1lsaDZWWGR0VXpOcmJYbHZNbXBtWkdweWN6bHJSbG96ZW5ob1lUVnJTUzlUYlhGaGVVZDJhMlpETmxOVmFrd3pXRXNLVms1WFVWbFVaems0UlhOYWNtSnNXRmQyVHpKV1VuTmpSMlpvUW5SWFlYUkdaSE5UVFVwUFZIaHdablpaUVZkRkszSm5RMjEwYjBWVE1GWkpURGRNYkFwR016aFJUalJLVUd0dGFubENUUzlRYkhOb0swUnBZVXRvWjB0M1VXRTRXRFpzUVhkdksyNXZWRWN4TTB3MVpWRjZiVFZLTDNoTlVqZFRVSEZwY2s5a0NrUXdZbXhLZWpaak0zWllaM00xWkVaNVNFdHZUVWRNUXprNGFVRnFUMVYxVWl0M09HZG5aRU5ZVDBSaWFXTXJVMVU1UjFOMWJtTkxjSGhuZWlzMmRFb0thQzlHU21oM2R6ZDNOVWxYUVhwTFpuaEpMM1pKVGt4bVZHTnFhV2t4YmxBdlUxSnVlWEZEUTJaYWEwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1R6TnNXbkpFVG1oMVFXWmxLMEZSQ2xGdUwwcGlhMDFuWlVsaFIwMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlEwNXJObWR5TjJGMVpUQlVPWEZVYjFoR1kzRnRTbU42ZDNjS2FqUmlZMnhRTWtKeVFYaGpabVJsY25oSFUxRk1hbGx2VDBSNlZqWlVkRWxGUTFWc1RFbHhWVEF3YW5wMU9XY3lha3h1TkdSVU5HUmtPWGRSV1V4SmNRcFFZbFJ4TWxCSllUaFBlRmxwU1VneFV6UllSalZoZWswemRVNXZXR2hGVEVkbVkyWmtRVE4zTDJaUVVYbHlNMmQxZVc1S1VITm5TbFpSVjBScldXWmpDbVZzZGxseVNWVkVibUp1UVVkRGJteFphRGRMS3poSFNpOHJUbEpEUm1selVGRlZUM0JTUkZoTFltWjJLemt5U1hWRGRHRnVWSEUwYjBscU1XNDJWMndLTW1sUWVWY3lkMnRvY2t4dFVTOHhaVzQ0T0ZjeFoxSkhibUoyVTJSeE5tOWxOMk41TWswd2FsaGFVazVHTTNNNWVsUldiMGhHZGxad09VOVliSE5PV0FwbWQwVkxkM2h4TDJSU1NVcG5Xa3QwT1ZaU01FZFpiVWx6Wm1wVWEyeFlkV0ZpVmlzNVUybFpibFJXWWpSUWFrUkNlVTF3ZUc0eFpGZExNMWhIUlM5ekNuTnVUV2xDY1ZSWVNUaDFaMlZhZUhOUU1rMVhPRnBKUVV4TFMzZDFlRUZ1S3psamMwc3JRbU56TW1oRmVtMDFObEU1TmpnMFNtWmpNVloxVEVaNll6VUtVWE0yUmpKUlZsaFJZbkpYYUc4eVdrWmpURmR2V0doMU16UjNhRGRDYm5sclNFRmxkamd5VVV0eGExaExkWGxFUTJWS2IzaHlWSFUwWm1SUE1sTkphd3B1TVVVeFYwaFlWVGgyZWxwdU5XdFJiM2xJTVUxeGFteHJVMGd6Vm5sTmMxZ3lNMkZxVVZsQmVXVlVVVTE2V1dsbGVuWXZlalYwTjNkcWRTOHJjV2syQ25CRFRtUjFNa1YxWlhobFF6ZGxXalpJYUhsdWRHSnRVMnhPYzFOSFpVOVpTVzVQZEZKSFRDdEVRWElyUkdka1R6ZGpaRE5FWWxFd2NpOHpZekZQUzNRS2QyMUlOazltY25oaVFXOVVlR3RPU1UxSlZFUk1XakI0VmtVd01FSktUVmR5TW5Kd1JUQk1RMGRSVlhKNlIzRjBjWGxGUmtsWWNXNXViSGcwTlV0d2NBb3dValJXTDNobGJUaElUM2s1Tm5abmQzYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzdGVzdC1jbGl0ZXN0Ynk1bGNldXN3LTc5YTczOS0wODJ0bWdnMy5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdGNsY2ltbQpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdGNsY2ltbQogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGJ5NWxjZXVzd29fY2xpYWtzdGVzdGNsY2ltbQogIG5hbWU6IGNsaWFrc3Rlc3RjbGNpbW0KY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0Y2xjaW1tCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGJ5NWxjZXVzd29fY2xpYWtzdGVzdGNsY2ltbQogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUldYWXJReTlZVjJkRFRUZzVkVFYzVGtOSmNVbElWRUZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQmVrMVVWWGRQVkZWNFRrUnNZVVozTUhsT1ZFRjZUVlJWZUUxRVFYaE9SR3hoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVUktUVGhGUjJ0amRFTXhlREkyVWxSeVFqQkhTRFlLY1RFNVdsRndhV05NVWxaUldscENWMlYwUTFSM1pGWTVRVVJxTTBGSlpXSm1ZME5WWnl0aGFrZEhTMkY0VlVNeVlubDNkbFJ2Ykc1eFJVVlVlbW96WVFwVFJHZFlkbGxZYWtoMVdVdHJUV2h0Wld4dFdqRXdiRzFNUmtacGMweEVjM0ZYUm5WRlFUaG5lbmxTTVZGSFJFeEdWRlZ6T0VocWFTOTFVQ3R1ZFVsTENtOTJVWFZzVGtGWGMzcEtPRlZaTmtZNVpuRnRhVmxXVmxGSFJEaFRjMmh1ZWt4Qk9VeHhWM2xYVmtkV1pFaElXV3d6UVRKMlJYVXJiWFpwVFRsT1ZFd0tiREJGTlRObWVtWm1SVFpDTTFkRGNVc3ZOMFk0UVZWclVGaG1SRFl3THpKaU1HZE5NU3RFVmxOcmMxcHFaRkp0U2pGVVNFRm1PRmRaV205dVNXUlJVUXBGV2t0dUwyNVVjbEIxVlhGcGVsUXlNekZsVG10Q1FtSm9UM0pYY0VWTE5VWnhTV3RZYTNkd1ZGRlhRMGhhUkRScWRFVkZhVGczWVhGR1JIUjFLMkpGQ2k4MFYxSmpWM0kyV2xKcGJrVkdZazVQVUVwWmVUSXlObGxNUldwR1dXRjRSVlI2Y0dGRVoxWlFiMlF6TWpobWRHNUxPR0Z5YkRNeGNYaE5lSHB1YVRVS1NqUkZTM2xpYjJweFRrOUNibGxPZWpJNVJVWnhObEJWV2xoSE5ERjJhbk5TTW5wd05IWXlTaTl1V2s5T2VEVnBhVFJ4YkVSbWVHcElVMWxEY0dReFpncHNWMDU1T1c5UlZXWXhlbVJSVjJrd1JraDBjSGRXVUhadVFYb3ZNelJuTlhWdkswb3ZZMkZyVUhWUmRqRTFjSE4wUkRSSU5rWTJRbk5sY0hZNFowZEtDakY1UlZkNFdrNVFOa2g1UW5KS1YzSmxiVmhIU2pkRmEzcEpja2t6TlhCS2VGbzRRV05VV21GemQzQTRZMFJEVmxsdFRWQkRURXBVZDNadmQxaFZiVThLTUVKc1JVbHJlRFJ6V1Rob1NTdHpjblkxZDB4VldITTFSR2RIY2xCTU1reDFaVTlFVEhOM2EyaDVkVEoxVUN0VmVWVktTRVl6VkdselQwMHdhalJDU1FweGVsaDJiWHAwUzJ4VVRTOXVXSFZDYUhKTmFqZDNTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsUjBOVmRoZDNwWlltY0tTRE4yWjBWRlNpOTVWelZFU1VocFIyaHFRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRllZMlJCTWtKbFpWcG1LemhsU1doeFFWWTVOQXBYYld4blNuTmpSV3hZTlRnckwwRTJNV2xGUm5Sc1pGaDVlRlZWZEV0S1duUlhUV1pOVm5wU1JWUlpkM1ZOTm5sdlNISktkelJITlhKdFpXeHZibXh0Q2pkWVVFbGtUamhhTkVoc2VscHFVRXhVU1RVd1FVNUhhamhUVTAxT1RqWm1RM2xDWlRGVlZGSnhMM0JvVXprMlkzQXpRVUZNVkRSRk5ITm5RM0JFU1djS04yaFpkM1p3YlZSSWVFcG5abVJrVG5GWE1pdFlSRUZUVkdZdmFHWnhiVEZhZGpWb2JXaG1XR3BtY2tsQmNtTmtNak5LTVZsNFFrcEtlSFJCZDA5YWJBcEpiVTQ0ZEhaSFRWWlVaalZCVEhocU5XaEtWbVJYYVVwRVdFcG5aRmRDVUhCM2EwVkZOR2hXVUhSMWNuaGlSVXRXT0hKaGRVMW1VbmxSVG05eFNFNXFDbVp6ZDFGc01FUXhOeXN5WWtoeU1IaHVNbk14TURSalNDOVVVbU5DTldGT1JYVmpNblZzSzJKMWJVVkhkbGxMY0cxeU4yZDJUbXhIVDBOdE9GbEpVWGdLY2xwM2JYTm1lVEJ3VERCTGFXMTRNWFV4T1hKUGJuRlJhbTFVY0ZOQ00wNTZaMk01T1hSeWVtWjBWVlF6WlRsdlNTOTBjRWhJV0VWeWNYb3hZek5IVmdwUVdXUnNlVmc0UVdFeVQxRjJOakZMVVVablVYRmlPQzh5TkdNeUswRkRVMHRPZDBSVmNuUkxlVlJFTjBOc2FXTTVPV0o0WmpkVldEbGpaRlpYVVc5bkNrMUdlblYwV1RSVVZHVmxSbFV3YlRobFNGaG1Wa2RyTldnMldUTmxXSE5UZVd0NlZYaHZMMGxCTW5BMlpYbGxlaTlNWlVWVWJuUlFUMVJsTDB4RWJVSUtURTFRWWtoUlNVNXNORXBKTVdWV2NTOTVNa3hIUldWTmEweElkRWRWVERJNWVXeDFOVXRKYzJjM0sxUlJNVkkxUlROTWJXbHNNMWh0U3pReFVrcEJlZ3BzZGtWTWNtWmhVM292Y1hCUFVXMVJUVzUzYldoaldHeHZaRlpxTURSV1puSkVXVU5CT0RaVFZIRjNOMmQxVEhaakx6YzNUbGhqZVZkQ1JFOXVSbm8xQ21zMVNqTlZWVzFDU0ZOVlNFNU1SRFpMY25KRFdIWlZQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJlVlJRUWtKd1NFeFJkR05rZFd0Vk5uZGtRbWdyY1hSbVYxVkxXVzVETUZaVlIxZFJWbTV5VVdzNFNGWm1VVUUwQ2psM1EwaHRNek5CYkVsUWJXOTRhR2x0YzFaQmRHMDRjMHd3TmtwYU5taENSVGcwT1RKclp6UkdOekpHTkhnM2JVTndSRWxhYm5CYWJXUmtTbHBwZUZJS1dYSkRkemRMYkdoaWFFRlFTVTA0YTJSVlFtZDVlRlV4VEZCQ05EUjJOMm92Y0RkcFEzRk1NRXh3VkZGR2NrMTVaa1pIVDJobVdEWndiMjFHVmxWQ1p3b3ZSWEpKV2poNWQxQlRObXh6Ykd4U2JGaFNlREpLWkhkT2NuaE1kbkJ5TkdwUVZGVjVOV1JDVDJRek9ETXplRTluWkRGbmNXbDJLM2htUVVaS1JERXpDbmNyZEZBNWJUbEpSRTVtWnpGVmNFeEhXVE5WV21sa1ZYaDNTQzlHYlVkaFNubElWVVZDUjFOd0x6VXdObm8zYkV0dmN6QTVkRGxZYWxwQlVWYzBWSEVLTVhGU1EzVlNZV2xLUmpWTlMxVXdSbWRvTWxFclNUZFNRa2wyVHpKeGFGRTNZblp0ZUZBclJtdFlSbkVyYlZWWmNIaENWM3BVYW5sWFRYUjBkVzFEZUFwSmVGZEhjMUpGT0RaWFp6UkdWRFpJWkRsMlNEZGFlWFpIY1RWa09XRnpWRTFqTlRSMVUyVkNRM050TmtrMmFsUm5XakpFWXpsMlVrSmhkV294UjFaNENuVk9ZalEzUldSek5tVk1PV2xtTlRKVWFtTmxXVzkxUzNCUk16aFplREJ0UVhGWVpGZzFWbXBqZG1GRlJrZzVZek5WUm05MFFsSTNZV05HVkRjMWQwMEtMemtyU1U5aWNWQnBaak5IY0VRM2EwdzVaV0ZpVEZFclFpdG9aV2RpU0hGaUwwbENhV1JqYUVaelYxUlVLMmc0WjJGNVZuRXpjR3g0YVdWNFNrMTVTd3A1VGl0aFUyTlhaa0ZJUlRKWGNrMUxaa2hCZDJ4WFNtcEVkMmw1VlRoTU5rMUdNVXBxZEVGYVVrTktUV1ZNUjFCSlUxQnlTemNyWTBNeFJqZFBVVFJDQ25GNmVUbHBOMjVxWjNrM1RVcEpZM0owY21vdmJFMXNRMUo0WkRBMGNrUnFUa2tyUVZOTGN6RTNOWE0zVTNCVmVsQTFNVGRuV1dGNlNTczRRMEYzUlVFS1FWRkxRMEZuUlVGb1duTlFXRFI0Y1RORGVUWjFaRzFGTldaVE5WTXhjVWhUTVN0VmRGbHBaV05oSzNaNFF6RjZNbVJ3UzB0UFNpODRWVEY0ZGpCbmJncElUR1pzTjBsSGFEUk5TMEpqVjA5eWFFcEtlbGhrYWpGMFprRnlWa2x5UjJKTlZsZGFabGszY21WS2MyOU9aelJNV21OMlZESkROR1p1T1RCVVVVNUNDa0p1VVRGb05GUnNOR1JLY0U1Q1NWZExTWGhoZVdWdFYyWndjMFUwVTJ4TFYzSkNTVFptYmlzeVZucFRPWEJRWWpaTlJFUlJSbEZ4TUhZelducEZkVFFLT0VSbVRXOW1lamN4ZGtodVRUTjFSV05YVW1sTEsxUXJhbUZPTm5SMVRIVXhhakZhTUZKSVlteENUSE5SVEZKTlZIbGFUMVUzTVZwcVZXcDROVmRSU3dwQ1ZGWktVVWhzUVVjeWVqWkZVV1Z1U0ZOMGRrNHlOa05xWkM5Q01GSllTMUJFU1Zaak5qRnNVV1paUlhGeVlYVnFablZRVlZOaFdGSjNZakp2Tml0eENqVmtiVlZYTkhsbmVuTkdVbHBwZURSRlluWkNSbUZRVm1OaWFHNTVWbGQwTUN0UVMxcG5ZV3BPVDFOT1FWZE9PWFp6WlVGRloxVk1aekZXYUZreVVWQUtVamg1VERVMVltTXpOVTVXUkZCRFprTlpVelpEVmtFdmQzcExVWEkyVm5OaVFYQldOM016Y2tsSE1uUllSa3h3VGxGdmQxaGpZV2dyZWxjMGNYUnlSQXB5TkVGdlYzSlhjVFF4UVRJNVExSmxVR2hxZVhKcE1EUk5NVVZZZHpOTFRXbGxTVmx4YkRZMlQxcGtPVVk1VkV3dmF6RXJTMWh4VlZOc1QzUk1lSGgyQ2tWMmJuWkdVbXRyVkRVMGRGRktZVEJCY21zeFFTOVlXa0ZYZEdjd1lYTkxSMEZrV2s5bFJsRjZiVGswYUdnMGVIZDBPRFJvWm1kMFIweDViWGxqWjBVS1EyeHFkRXhaUWxkQ2JrOXdLMGhDWjBWSlVVSTRkRTk0TUZkT1JWVjNlRXBSV25wU1kzUlRSMmMzVWtwNFZGRlBibkUwYlRadlVFaFJRMU5RYUc1d09BbzRjVlZTYVRCS1drRldUMVpDTldacWREa3hOa3MxV0hvdmVDOXVVV3d2VVZrNE9HVkpkR2wyUkhwSGNESjFRemM0Y2tWRFoyZEZRa0ZPSzNBck5FZDRDa05YY0dKRU1qUk5Va1VyZUV4M1RHWXJhQ3RIVEVNd1NGQnVObmxhY0ZNeE9GVklOV2RqZVdGYU1FUnZNalV2VjJjelprRkVVak40VGxkbldEUldUemtLUW5OckswWmhRVzB3TmpGRVRIZDJlSGR0Wm1VemJHTlBURmQ1U3psVVRWSktlVGgxTjBScFVDdHVUbU4xY1dSNUsxVnFaSEZ6YlUxRGRXWnRlVlEzYndwWWJtVlNWMFpyTDBzM2JGaEZkbGxOT0VOYVJXTkZOMDVGWVRGb00yZzFWRzlVTlhoVGRHVnFNR0l6Y0ZKeVdWSlZaRkZRUmtGblRFdDVWMHRrY0dKbENqaEVUVFJFTm5aUlNWbFpWMDF0WVRodWRFZDRZakl4SzJKWFlrOHhNbVJ6VEdack0zZDBVekZ5WkdjeFoyRnlkQzlGYWtFM1MyRjNkbGhGVldFdk9HSUtjV2RNT0VkRFFWcFJVbVI2UTAxdk1HaGtObTlpZHpZdmREbFNjVXBtWjNWeFVqSlVjWFJPU21SNVYyOUtZbklyZFdOVldFaENhV3d3VTJaYVZVc3dhQW94Vnl0dlVqRkVNblEwWmxsRFRHdERaMmRGUWtGUFdrdGpRbGMxZFhkeWRrTkNSUzlUZWtoMWEwMTJUbEJzWWxKalZYUkRkRTVIUVRGak5EZDRORXBwQ2xsYVJVSnlUbVkyVG1nemEwVk5NWFJwVWtWQmRXeHhjMDk2YnpWRFdFSkRSRUp6TVRrd2RFVTNUblF6Umt4V1VFSTBUMnRNVVVsSmFIQlljR05KZFZBS016TkJWWE5wUzNJMVIzRTNaRE13YzB0RVVuaFhhRTU1ZG1oamJDOVBjME5MSzJGUldtUm5XSGxSVW5kNlNYZ3lUaXRIVms1NlZDczRZMGMzUWl0VlNRcDBTWGd2UzBOd2RIZHFWRGw1VERsWGRIQmpXVXRLZUcxeE9XaEdhbGRVYjJ4bWNVc3hXVmNyYVRCV2VrMDFNWHA2YmtGeFNHY3JkVEZZYWtsb0t6VkxDblJvTVhVdlIxZHFhWHBhSzBwQ01GbElNRVJNZDJsT1NIcExUVU41VDNKUmJrcDFVekpRYzJwMldqbFBLMjlOVGxJcldWQXJXbVJsY1dGbU4wOXlaWFVLYzJselZGZHBhVms0UVdWTlRXWXlPRkVyZVRNNGJDOVdVRTVIYlRkUU9XUjBabFV3V1RsQmR6ZGxZME5uWjBWQlEwWnlRa2RyWTFOdmRscHFlbE5wU1FwS1RFaHdialpJWlVwbE9VNUdlVVlyU2tJeGJERTBaekJUZEV0WVJuQXhkRE5sTjFWNFZrOTBPVmh6YmtGclpGRlNNazFqT1RWUVNDOVNlR3RyYldKbkNqUlZabmhMWmtWT05HWk9hRTl5T0Rnd2VVVmtjRFZ4YzJKQllrVnlRbWN3YzNKd2VpOXRNRGxCYjNaR1NsZEpiSGhwVUVsM1MwUk9XbTl1TTFWME5Gb0tUa0ZOWTI5cVVUVm9SRkp4VUZsa1RHTmlOa2RJV0hacFQyZE1hRmROZVRGMVVFcE9kMlE1UkhaNloxRTVNM1o2VlV0UGNtRnNaRXBuWVVKSFpGcFRRUXB5UWtkSlRVYzBOMUZJYm5kUU5XSktXREV5Tm1wb1NuTmFWRXhCUWtaSlJTOUdOa1JUVnpnMlZGUXhibTFhU21kblUycFRTQ3RXV1hCSFVHMVJjM2wxQ25OalIwdFJiMDVVZGsweGRESkpPSGQyY1RVMFdFcDZhR3hGYXk5NVJWTnRVSEpJV2s1MlRITXpXQzlRWms1M01IYzVhRXRQZVRGWlZ6Wk9aR2h3YVhjS2IyeEtabWRSUzBOQlVVRXZSRE00YkRBNVozVktSWEJZVUhKbEsydHZPQzh6TlVsRlowSklRVUpEU1hwb1JUUkllbFZNVTNBeFNVVlFVM040WTFOcVJRcG5jVVV2VURWR1lrRktTVWhLYTJGS2NWQnBNbkp5T1ZZM1F6aDBaekZDUVhkS2EwSkdVVlF2ZGxWTk9UTlZkazVZVlVWbFZtMVdaVGhoZG1RMWNXZEVDblZvV0RoU2N6QjZibmcyUmxkT1VrbDZibEV4Wm10RE4xRkRkRVJSZWtGbFkxTjZlVUZoVmtoMGJUWktjVzgxVlN0SWQzVTRXRlpRVXpkeFdqZzNhRTBLWm01dmMwOTJhVUUwTTB0eVkxVnVOVlJSU25NNFYzVjNWV0puY1dsWlZHeHVZV2Q1YnpOWFUweFdXbE5CVWxGbWIxQnViaTlNYkd3d1prSXpaa3BOZHdwa2RGazBlVlpSTVd0Q1dUTlNkaTgwVnpGcVpGSkJZU3RoZWxoVVpqTlFOMWhqYzI1bE9HMUhZa1JXZVdnNE9UVlhhMmN6TmtSVFRuRjRlbnBLVURSR0NtTjRVakZaVFhCUk1XZFpaWGtyZERsc1dFbHpZekpNVTBwSGFEUnhRVEZrUVc5SlFrRlJRMW94YlZRdldEbFVTakkwVkV4TlNESXZVemx3VlVSUmRsWUtWMG92VjFCc1dFc3djMFJIWkVFdk4xZ3labU5oUVZOMllrTklSbTAxV1dWSFJFWm9URTlEU2xoWFYzSk5iRTVNTWxsRFYyUjZhWHBKYkZWcmRYaExOQXBzVkZaak1ESjBUVkZ3TlhodlNrRlVNSFF4ZERjMGJsTk1UblJzVFVaWmVGWXhja05IY1ZsbVJtMWlVVzFNYkRacU5FZHFPWGhPV1ZkaVF6RnVTMjF1Q2tGWWRqQXJRVEIzYTNOWk5uRkNXRTFUTm1aelNUUlpjRW93ZUM5b2RtOXBNMlJxWjBwa2JtRnNSVlJWSzNGWWFFTXhkekUyTVdGMVZreERiV2RCSzFnS2JYTlFRbmg1TVRFd1l6UlJTbVJOUVROR1JXMVllbmxLV1RacVpuaEZjRW8xVTJObk5FVkhlVGxCTkRCUlR6UkxjRmhoWTBOQ1NXaEdNemxKVEhscFV3cDBjSFF4V0V0T1RVbENaSEJsY0RsTVRsSklTRzVJZDAxaFVGcHBibkF6ZDNNdlkyZEZVRTlxVWpOVlVuQjVNMlJsVEU1c1UwRlNNVWRFY2s4S0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiB3OHcydnBuaWZtOGt4Z2tlMmFmcjQyeDV5d3U3ZzAxYnB3b3BzYmNiNTVscXR1MG5jbDM1emNuN3o3MjN1OTc2aHFlZXpocW45bDRsZTR3MnMxb2U5NmQyZzJlNHV4dmxrdGtmOGdyZ254ZzUxYmZnd3kwb3JneHNuZjI1djFkMAo=\"\n - \ }\n ]\n }" + string: "{\n \"name\": \"d541f0de-fdd6-2846-a390-dcbc13e0cf8e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:37:32.2118226Z\"\n }" headers: cache-control: - no-cache content-length: - - '13108' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:04:41 GMT + - Wed, 14 Jun 2023 20:37:32 GMT expires: - '-1' pragma: @@ -969,8 +1019,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -978,7 +1026,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -988,67 +1036,23 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/def041d5-d6fd-4628-a390-dcbc13e0cf8e?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestby5lceusw-79a739\",\n - \ \"fqdn\": \"cliakstest-clitestby5lceusw-79a739-082tmgg3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestby5lceusw-79a739-082tmgg3.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"tag1\": - \"tv1\",\n \"tag2\": \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": - \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d95940c8-33a9-4be1-8357-b76bfe43cf66\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"d541f0de-fdd6-2846-a390-dcbc13e0cf8e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:37:32.2118226Z\"\n }" headers: cache-control: - no-cache content-length: - - '4102' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:04:42 GMT + - Wed, 14 Jun 2023 20:38:02 GMT expires: - '-1' pragma: @@ -1067,110 +1071,36 @@ interactions: code: 200 message: OK - request: - body: '{"tags": {"key1": "value1"}, "location": "westus2", "sku": {"name": "Basic", - "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.24.9", "dnsPrefix": "cliakstest-clitestby5lceusw-79a739", "agentPoolProfiles": - [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": - "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": - "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": - "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": - {"code": "Running"}, "enableNodePublicIP": false, "tags": {"tag1": "tv1", "tag2": - "tv2"}, "nodeLabels": {"label1": "value1", "label2": "value2"}, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, - "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", - "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d95940c8-33a9-4be1-8357-b76bfe43cf66"}]}, - "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": - ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", - "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": - {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": - {"enabled": true}}, "workloadAutoScalerProfile": {}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks scale Connection: - keep-alive - Content-Length: - - '2639' - Content-Type: - - application/json ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/def041d5-d6fd-4628-a390-dcbc13e0cf8e?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestby5lceusw-79a739\",\n - \ \"fqdn\": \"cliakstest-clitestby5lceusw-79a739-082tmgg3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestby5lceusw-79a739-082tmgg3.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"tag1\": - \"tv1\",\n \"tag2\": \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": - \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d95940c8-33a9-4be1-8357-b76bfe43cf66\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"d541f0de-fdd6-2846-a390-dcbc13e0cf8e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:37:32.2118226Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7982f048-bc0c-44ba-937f-34ae4da59aca?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4100' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:04:45 GMT + - Wed, 14 Jun 2023 20:38:33 GMT expires: - '-1' pragma: @@ -1185,8 +1115,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -1204,14 +1132,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7982f048-bc0c-44ba-937f-34ae4da59aca?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/def041d5-d6fd-4628-a390-dcbc13e0cf8e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"48f08279-0cbc-ba44-937f-34ae4da59aca\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:04:45.5708548Z\"\n }" + string: "{\n \"name\": \"d541f0de-fdd6-2846-a390-dcbc13e0cf8e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:37:32.2118226Z\"\n }" headers: cache-control: - no-cache @@ -1220,7 +1148,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:05:15 GMT + - Wed, 14 Jun 2023 20:39:03 GMT expires: - '-1' pragma: @@ -1252,14 +1180,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7982f048-bc0c-44ba-937f-34ae4da59aca?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/def041d5-d6fd-4628-a390-dcbc13e0cf8e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"48f08279-0cbc-ba44-937f-34ae4da59aca\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:04:45.5708548Z\"\n }" + string: "{\n \"name\": \"d541f0de-fdd6-2846-a390-dcbc13e0cf8e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:37:32.2118226Z\"\n }" headers: cache-control: - no-cache @@ -1268,7 +1196,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:05:46 GMT + - Wed, 14 Jun 2023 20:39:34 GMT expires: - '-1' pragma: @@ -1300,14 +1228,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7982f048-bc0c-44ba-937f-34ae4da59aca?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/def041d5-d6fd-4628-a390-dcbc13e0cf8e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"48f08279-0cbc-ba44-937f-34ae4da59aca\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:04:45.5708548Z\"\n }" + string: "{\n \"name\": \"d541f0de-fdd6-2846-a390-dcbc13e0cf8e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:37:32.2118226Z\"\n }" headers: cache-control: - no-cache @@ -1316,7 +1244,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:06:16 GMT + - Wed, 14 Jun 2023 20:40:03 GMT expires: - '-1' pragma: @@ -1348,14 +1276,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7982f048-bc0c-44ba-937f-34ae4da59aca?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/def041d5-d6fd-4628-a390-dcbc13e0cf8e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"48f08279-0cbc-ba44-937f-34ae4da59aca\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:04:45.5708548Z\"\n }" + string: "{\n \"name\": \"d541f0de-fdd6-2846-a390-dcbc13e0cf8e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:37:32.2118226Z\"\n }" headers: cache-control: - no-cache @@ -1364,7 +1292,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:06:45 GMT + - Wed, 14 Jun 2023 20:40:33 GMT expires: - '-1' pragma: @@ -1396,14 +1324,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7982f048-bc0c-44ba-937f-34ae4da59aca?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/def041d5-d6fd-4628-a390-dcbc13e0cf8e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"48f08279-0cbc-ba44-937f-34ae4da59aca\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:04:45.5708548Z\"\n }" + string: "{\n \"name\": \"d541f0de-fdd6-2846-a390-dcbc13e0cf8e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:37:32.2118226Z\"\n }" headers: cache-control: - no-cache @@ -1412,7 +1340,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:07:15 GMT + - Wed, 14 Jun 2023 20:41:04 GMT expires: - '-1' pragma: @@ -1444,15 +1372,15 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7982f048-bc0c-44ba-937f-34ae4da59aca?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/def041d5-d6fd-4628-a390-dcbc13e0cf8e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"48f08279-0cbc-ba44-937f-34ae4da59aca\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:04:45.5708548Z\",\n \"endTime\": - \"2023-03-15T10:07:31.8255601Z\"\n }" + string: "{\n \"name\": \"d541f0de-fdd6-2846-a390-dcbc13e0cf8e\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T20:37:32.2118226Z\",\n \"\ + endTime\": \"2023-06-14T20:41:16.7007893Z\"\n }" headers: cache-control: - no-cache @@ -1461,7 +1389,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:07:45 GMT + - Wed, 14 Jun 2023 20:41:34 GMT expires: - '-1' pragma: @@ -1493,67 +1421,71 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestby5lceusw-79a739\",\n - \ \"fqdn\": \"cliakstest-clitestby5lceusw-79a739-082tmgg3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestby5lceusw-79a739-082tmgg3.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"tag1\": - \"tv1\",\n \"tag2\": \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": - \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d95940c8-33a9-4be1-8357-b76bfe43cf66\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestsrtaj3dnw-8ecadf\"\ + ,\n \"fqdn\": \"cliakstest-clitestsrtaj3dnw-8ecadf-ni9evgat.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestsrtaj3dnw-8ecadf-ni9evgat.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\ + \n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/14b251b7-e3a1-4949-8f98-eef3efe4e2fe\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"defender\": {\n \"logAnalyticsWorkspaceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n }\n\ + \ },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"\ + oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '4102' + - '4762' content-type: - application/json date: - - Wed, 15 Mar 2023 10:07:46 GMT + - Wed, 14 Jun 2023 20:41:35 GMT expires: - '-1' pragma: @@ -1585,67 +1517,71 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestby5lceusw-79a739\",\n - \ \"fqdn\": \"cliakstest-clitestby5lceusw-79a739-082tmgg3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestby5lceusw-79a739-082tmgg3.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"tag1\": - \"tv1\",\n \"tag2\": \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": - \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d95940c8-33a9-4be1-8357-b76bfe43cf66\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestsrtaj3dnw-8ecadf\"\ + ,\n \"fqdn\": \"cliakstest-clitestsrtaj3dnw-8ecadf-ni9evgat.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestsrtaj3dnw-8ecadf-ni9evgat.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\ + \n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/14b251b7-e3a1-4949-8f98-eef3efe4e2fe\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"defender\": {\n \"logAnalyticsWorkspaceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n }\n\ + \ },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"\ + oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '4102' + - '4762' content-type: - application/json date: - - Wed, 15 Mar 2023 10:07:47 GMT + - Wed, 14 Jun 2023 20:41:36 GMT expires: - '-1' pragma: @@ -1679,8 +1615,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -1688,17 +1624,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0d1f4499-f63b-4dfb-97bd-bb95fad2e290?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6d7aa8df-0dff-4c5e-92c9-e67a6b053141?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:07:47 GMT + - Wed, 14 Jun 2023 20:41:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/0d1f4499-f63b-4dfb-97bd-bb95fad2e290?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/6d7aa8df-0dff-4c5e-92c9-e67a6b053141?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service.yaml old mode 100755 new mode 100644 index 9073cd6b5ca..8857ef47ebe --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service.yaml @@ -15,8 +15,8 @@ interactions: --service-principal --client-secret --tags --nodepool-labels --nodepool-tags --max-pods --admin-username User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:07:48 GMT + - Wed, 14 Jun 2023 20:41:47 GMT expires: - '-1' pragma: @@ -56,13 +56,12 @@ interactions: {"tag1": "tv1", "tag2": "tv2"}, "nodeLabels": {"label1": "value1", "label2": "value2"}, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "adminuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "adminuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, - "storageProfile": {}}}' + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -73,7 +72,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1644' + - '1936' Content-Type: - application/json ParameterSetName: @@ -81,62 +80,63 @@ interactions: --service-principal --client-secret --tags --nodepool-labels --nodepool-tags --max-pods --admin-username User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-rwqu7tp1.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-rwqu7tp1.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 100,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"tag1\": - \"tv1\",\n \"tag2\": \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": - \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"adminuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-81c5hoai.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-81c5hoai.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 100,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\ + \n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"adminuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33bac250-1c46-42ff-9999-85fbf88f191c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c101f0c-f19d-4764-9b10-cad2e47ebe6a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3231' + - '3559' content-type: - application/json date: - - Wed, 15 Mar 2023 10:07:51 GMT + - Wed, 14 Jun 2023 20:41:57 GMT expires: - '-1' pragma: @@ -148,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 201 message: Created @@ -168,14 +168,14 @@ interactions: --service-principal --client-secret --tags --nodepool-labels --nodepool-tags --max-pods --admin-username User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33bac250-1c46-42ff-9999-85fbf88f191c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c101f0c-f19d-4764-9b10-cad2e47ebe6a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"50c2ba33-461c-ff42-9999-85fbf88f191c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:07:51.9625584Z\"\n }" + string: "{\n \"name\": \"0c1f108c-9df1-6447-9b10-cad2e47ebe6a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:41:57.4154795Z\"\n }" headers: cache-control: - no-cache @@ -184,7 +184,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:08:21 GMT + - Wed, 14 Jun 2023 20:41:57 GMT expires: - '-1' pragma: @@ -218,14 +218,14 @@ interactions: --service-principal --client-secret --tags --nodepool-labels --nodepool-tags --max-pods --admin-username User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33bac250-1c46-42ff-9999-85fbf88f191c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c101f0c-f19d-4764-9b10-cad2e47ebe6a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"50c2ba33-461c-ff42-9999-85fbf88f191c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:07:51.9625584Z\"\n }" + string: "{\n \"name\": \"0c1f108c-9df1-6447-9b10-cad2e47ebe6a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:41:57.4154795Z\"\n }" headers: cache-control: - no-cache @@ -234,7 +234,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:08:52 GMT + - Wed, 14 Jun 2023 20:42:27 GMT expires: - '-1' pragma: @@ -268,14 +268,14 @@ interactions: --service-principal --client-secret --tags --nodepool-labels --nodepool-tags --max-pods --admin-username User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33bac250-1c46-42ff-9999-85fbf88f191c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c101f0c-f19d-4764-9b10-cad2e47ebe6a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"50c2ba33-461c-ff42-9999-85fbf88f191c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:07:51.9625584Z\"\n }" + string: "{\n \"name\": \"0c1f108c-9df1-6447-9b10-cad2e47ebe6a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:41:57.4154795Z\"\n }" headers: cache-control: - no-cache @@ -284,7 +284,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:09:21 GMT + - Wed, 14 Jun 2023 20:42:57 GMT expires: - '-1' pragma: @@ -318,14 +318,14 @@ interactions: --service-principal --client-secret --tags --nodepool-labels --nodepool-tags --max-pods --admin-username User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33bac250-1c46-42ff-9999-85fbf88f191c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c101f0c-f19d-4764-9b10-cad2e47ebe6a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"50c2ba33-461c-ff42-9999-85fbf88f191c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:07:51.9625584Z\"\n }" + string: "{\n \"name\": \"0c1f108c-9df1-6447-9b10-cad2e47ebe6a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:41:57.4154795Z\"\n }" headers: cache-control: - no-cache @@ -334,7 +334,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:09:52 GMT + - Wed, 14 Jun 2023 20:43:28 GMT expires: - '-1' pragma: @@ -368,14 +368,14 @@ interactions: --service-principal --client-secret --tags --nodepool-labels --nodepool-tags --max-pods --admin-username User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33bac250-1c46-42ff-9999-85fbf88f191c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c101f0c-f19d-4764-9b10-cad2e47ebe6a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"50c2ba33-461c-ff42-9999-85fbf88f191c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:07:51.9625584Z\"\n }" + string: "{\n \"name\": \"0c1f108c-9df1-6447-9b10-cad2e47ebe6a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:41:57.4154795Z\"\n }" headers: cache-control: - no-cache @@ -384,7 +384,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:21 GMT + - Wed, 14 Jun 2023 20:43:58 GMT expires: - '-1' pragma: @@ -418,14 +418,14 @@ interactions: --service-principal --client-secret --tags --nodepool-labels --nodepool-tags --max-pods --admin-username User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33bac250-1c46-42ff-9999-85fbf88f191c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c101f0c-f19d-4764-9b10-cad2e47ebe6a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"50c2ba33-461c-ff42-9999-85fbf88f191c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:07:51.9625584Z\"\n }" + string: "{\n \"name\": \"0c1f108c-9df1-6447-9b10-cad2e47ebe6a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:41:57.4154795Z\"\n }" headers: cache-control: - no-cache @@ -434,7 +434,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:52 GMT + - Wed, 14 Jun 2023 20:44:28 GMT expires: - '-1' pragma: @@ -468,15 +468,15 @@ interactions: --service-principal --client-secret --tags --nodepool-labels --nodepool-tags --max-pods --admin-username User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/33bac250-1c46-42ff-9999-85fbf88f191c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c101f0c-f19d-4764-9b10-cad2e47ebe6a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"50c2ba33-461c-ff42-9999-85fbf88f191c\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:07:51.9625584Z\",\n \"endTime\": - \"2023-03-15T10:10:59.8552602Z\"\n }" + string: "{\n \"name\": \"0c1f108c-9df1-6447-9b10-cad2e47ebe6a\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T20:41:57.4154795Z\",\n \"\ + endTime\": \"2023-06-14T20:44:54.9630337Z\"\n }" headers: cache-control: - no-cache @@ -485,7 +485,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:11:21 GMT + - Wed, 14 Jun 2023 20:44:58 GMT expires: - '-1' pragma: @@ -519,62 +519,63 @@ interactions: --service-principal --client-secret --tags --nodepool-labels --nodepool-tags --max-pods --admin-username User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-rwqu7tp1.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-rwqu7tp1.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 100,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"tag1\": - \"tv1\",\n \"tag2\": \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": - \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"adminuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/0f5437e0-2f0b-40db-b582-539ad130287b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-81c5hoai.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-81c5hoai.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 100,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\ + \n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"adminuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/52db1660-5223-498f-8bea-636e508940a5\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3495' + - '3823' content-type: - application/json date: - - Wed, 15 Mar 2023 10:11:22 GMT + - Wed, 14 Jun 2023 20:44:59 GMT expires: - '-1' pragma: @@ -606,64 +607,67 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-rwqu7tp1.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-rwqu7tp1.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 100,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": - \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n - \ \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": - {\n \"adminUsername\": \"adminuser\",\n \"ssh\": {\n \"publicKeys\": - [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/0f5437e0-2f0b-40db-b582-539ad130287b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n - \ }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"tags\": {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \ + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\"\ + : \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\"\ + : \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-81c5hoai.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-81c5hoai.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 100,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n\ + \ \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\n },\n \ + \ \"nodeLabels\": {\n \"label1\": \"value1\",\n \"label2\":\ + \ \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\"\ + ,\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"adminuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/52db1660-5223-498f-8bea-636e508940a5\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \ + \ \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"\ + enabled\": false\n },\n \"workloadAutoScalerProfile\": {}\n },\n\ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '3760' + - '4088' content-type: - application/json date: - - Wed, 15 Mar 2023 10:11:23 GMT + - Wed, 14 Jun 2023 20:45:02 GMT expires: - '-1' pragma: @@ -695,64 +699,67 @@ interactions: ParameterSetName: - -g -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-rwqu7tp1.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-rwqu7tp1.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 100,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": - \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n - \ \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": - {\n \"adminUsername\": \"adminuser\",\n \"ssh\": {\n \"publicKeys\": - [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/0f5437e0-2f0b-40db-b582-539ad130287b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n - \ }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"tags\": {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \ + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\"\ + : \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\"\ + : \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-81c5hoai.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-81c5hoai.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 100,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n\ + \ \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\n },\n \ + \ \"nodeLabels\": {\n \"label1\": \"value1\",\n \"label2\":\ + \ \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\"\ + ,\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"adminuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/52db1660-5223-498f-8bea-636e508940a5\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \ + \ \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"\ + enabled\": false\n },\n \"workloadAutoScalerProfile\": {}\n },\n\ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '3760' + - '4088' content-type: - application/json date: - - Wed, 15 Mar 2023 10:11:24 GMT + - Wed, 14 Jun 2023 20:45:02 GMT expires: - '-1' pragma: @@ -784,62 +791,63 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-rwqu7tp1.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-rwqu7tp1.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 100,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"tag1\": - \"tv1\",\n \"tag2\": \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": - \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"adminuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/0f5437e0-2f0b-40db-b582-539ad130287b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-81c5hoai.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-81c5hoai.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 100,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\ + \n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"adminuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/52db1660-5223-498f-8bea-636e508940a5\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3495' + - '3823' content-type: - application/json date: - - Wed, 15 Mar 2023 10:11:24 GMT + - Wed, 14 Jun 2023 20:45:04 GMT expires: - '-1' pragma: @@ -873,24 +881,24 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVV0NmRHWndUVGhwYmpJelNrdDVOMlYyU0VvMVEzTjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDAxNlJURk5SR3N4VDBSRk0xZG9aMUJOYWtFeFRYcEJlazFVVlhoTlJFRTBUVlJrWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNqUkpSWGN6VGtWaGIyWm9Za3BYYzJZMFZWUjNUR2hMYlhSUFZIcHRjVWs0Wm5wTVYxaFlSa2t6ZEdGU01HRnJibWhFTkV4MmJtdHZPRFZUTjB0MU9VUUtLMEpTUlhGVVIyNUlZa1JGWjJOSlFscGlWekpwWVRCNldUaEJhR2w0WkRkb01FRTRWemRTZUZVek0yVlhXVlZQVkhSNmMwZEtiRGgzTjBGUVNXRXJUQXB0S3pVMVMxb3hTa2R1ZUZkSldWaFNkRU5ZUjB3d00zaGxNMDFrVkZWNWQyZ3pOMFZHU1cxMlZteG9RM2xoWlVaNU1IUlVhREp5TXk5eU0xQXphbko1Q2tkTmJHTkpUbFZZZUdWWmNEUnZWVWQzUmxCR1JGZFVlVzF2TW5Ca01tcGpPV2h4UzFwRlJTOXRRamx5ZHpKTWIxaFBTVXRVTmprMVl5OTViV3RYVGxrS2NIUkJSbXA0Vm5NMlNURlhaVVJvY3pkRFRrdFdlWGd3UldZNGVEZHZkbGd3Y0dSTVV6SnRNMmMyV2tsSE5raEljM2RXTkZKb1lqSnlSbUZoVEdad013cDBVWGMzU21KUGVEUmFibEJFWWt4T01EaHdiMHhyUmxsTWFucHlWRFJSYVdkRldXZ3JXWEJ4Tmswck56RXJlblUxVERaNlZ6VnlSekF2TUZrM1pGZHdDamhaV1VGa2RIRTBaRTV3U0VKblRVNWpTRFpwVDI1UWRuTjJZaXREZGxkVmEzQk9Va05WWVVSWVFuZFNURGRGZDA5TGRreERlSFZRT0VrdlZFZEJkakFLYzNGVFEyUlhjbE5OVWpOdFZESk1lVko0UjJwTU1EVnVLMDQxZEdGNWJsSk1TSEkzTlU1NFVtdERObXRVV1VKMWJFTlNXakkyVEVsSlVrOTVSM1ZMV0FwUVJGSkxObHBHY1dKWlYzaGFhVUZ4YUZWSVoxSTNXV2c0TVhsbU5FdENTa1pGVDJVMllsUldXbUZVTkdveFpWUkRlVUZDVFhkalJrTnVhSFl2UkZCQkNub3dRelJZZFdrNE5GRmlXR0V6VW1OdmRITkdOems1UjJaMGJFSm1jVkpoYWxWdWFWTnJVVzlPZGpWU1luUlZTVXRVZUZaQlRrOUpWRmRqYUVWMlRuRUtablJZWkdkSWFIRjNNakU0ZEZvemVEQkNRMXBYU1ZKd05tcDFUSFJ4WjFCbmVFcHJMM05uYW5aeVRVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1F5OVpVemxwYkV0RFZ6ZFlORlZ1Q2swNWVERkVSRkJzVlhGTldVMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFVOVNWblp5TlVkV1lqTmtRazQ0ZWpnemRXTnFiMWxFTTJvS0syaFhNRTh4ZG5GbFNtVmFUSGRKZW5WRFNuTmphSGRrWWt0eVJYTnRNVTQ0ZDFZeFpITmtVa3QwTUcxS05ISmhjRXN3VUZwaFJGaE9VV2wyWnpseU53cG5RbTV0TTNOS09VcGpXRnBSVEVSR2FERjNhbTVoYzNwd1JuTkNhbVZQWWs1aFZuTlNhRGxKWmtoVFdFeElaamt6TkVaUWJYZFdRelk0UkM5NVpVa3JDbmgzYjJSdFRrOHJNU3RtY0VOcVZtSlpjMWhQTkdVeloyVklhV2hpTlcxMWVrbEJUelZNWmxGVGQwcE9OeTl4VFZWclQyMXZkemd3UW5NeFlta3JRWGdLVWprMldqUnBMMnhpUTFaSGRtcEJTbVF3Wm5aNFZHVlBRMmx0Tkd4VGNITk1NVWhYTWs5d09HZDJZM1ZxT0cxTVJIWTNRWGR4YlRKcU4xaEhNMFI2WndwT01rUnNPWGRaWTJJMGJXVnBhMGgxVmtkQmRtSjZlR2xvVDNjd2JVNWpUWFYwZGtRMVlreFFOSEZxTTBRNWQydFRSa05WT1ZCaFNFbHpWa3h1WlM4eENqWmxkMkZETDJKbWRGVldXakJMYTNOVU4yOVJlbEZEVUU5TUswRmpUMkpHUTAxTk1tTk1kRlZPUzBKeVRYUXdlR3AwTjB3NGEyVlZVbkZuU0hwTGIxSUtkWEZTVjI5bmRHTlNlVUk0YVcxTWEzWlNja1ZrVjNWeWJrdHJNRXRXY21SdVVWbDBaMGhFVmxwS2NVZG9aQzkzTmpWclJHNW9TSFpFTVc4NE5EVlJRUXByT1U5V2NXbGxkMVJWVUVrM09VRk5ZbE5DY3l0WWJITmlWa1pKVkhWc1NFUXJXWFJwTWxkRWNIbHRXa3QyUVRWdFJXTktNM2hDYXpBMmRrTXhTM2hyQ2pOdmRGWnRaWGRGVlVsYWVWUlFXbEJFTDFCRWVFOUZSSGxrTUhoU1pIUkRlSElyVTJaSWNHOTRZMUl4WWxONllrWmpWSEJ2Y2prMVZHUlZWVFl2YjNjS2RtMXlOV1JrUlc1c1VuRlpNVFF4WjI1elFqQk1UelpVTDJoV1dsQXpiazFzTW1GeGNXbE5XalpXWVd0dE1XOU5RbWRxSzB0ek9FSlpka2s1ZVZWVlJBb3pjbkp4V2t0M1psWXZVWEZ5VjA5cFFYYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zdDduaW5ieC1yd3F1N3RwMS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdGM0a2sycgpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdGM0a2sycgogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGRtZDdpaTRtNWlfY2xpYWtzdGVzdGM0a2sycgogIG5hbWU6IGNsaWFrc3Rlc3RjNGtrMnIKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0YzRrazJyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGRtZDdpaTRtNWlfY2xpYWtzdGVzdGM0a2sycgogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUldIUk1RVFZaVDJ3NFdYTlNVbFJwVlV0SFRuaFdla0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQmVrMVVWWGRQVkZVMFRWUmtZVVozTUhsT1ZFRjZUVlJWZUUxRVFUUk5WR1JoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTTRTRE5uYjBSRk1uaGxRV2RFTjFwaVVUbFFaR0VLV0c5cFVDdENjamhVU0RsalZtYzNSRWx0TjJGdFpIbGFOa1U0ZUVSMVNEVTNiVlprV201bGVHdzViRmQ2VVdOc09UY3dhMWQ2TDNsWFZWQkllbE5FWmdwNmVqRnlXRFV3WWpndmNVVllXVkZMUW5wYWRpdFJWSFprY2tKNFZFOW9ORVUyUmxKTmEyNDVUbmsyWmtSNFFTOVpVRTh2VmpnNWExbGFVMjV2WTFwb0NqaG1RV1I1VnpOcFpUTTBaR0paVFU1TWRtSldORVZTWW1kMGQyZE5PWGhwY0dWMlltSkRZamx6TkRGV1VEaDFOMjFRVURsclNYQlJNV0owTDFJelUwTUtaelJLZDA5VVpVTmtjVkpIVjNoSkt6QkNlVzF2ZG01TVEwNW5RbFV6TUM5ekwxZEVNbGhHWkZWUVJrOUNXVGhWUWxsNGFYVmpRMmxRU1N0NU1uVmFZd3BoY1dwSVNqWmFSWE5OV0ZOQ1kxRmtUVWN5Y2tkU09DODJVREl4YnpacFJsZG9aVVZUUmpWcFNtRllZaTk1Vm1od2RVNXNUREJSYVhsV1p6RlVabWRMQ2lzNVNtNU5jRk5aZVcxb1NIQlNaVU5OVWtoVVIwTlNTREZIY1haUGRETlVVemd6VDBJNVpXcHBhMnhGVUVoNGNqZEdORXBVYjA1NVQxQkdZbll5YzBnS1RUZzJWbkZsY0dnd1RYWmxaMkpVUkZaQloxUjVSbE4yVWxsSmRUSjBNbXhrZEdSNWVVSnhVblJZYzJsSllVVlVNSE5OSzBGcFp6a3dSV00wUmtOVVdBcGlaazFtTTBSQ1ZURnBTaTl6WTBGdGJHeHRiazVwY1VkbVFqRnJMMWs0WkdKalEydGFUV2RVWWxOTmVtdHFjRGxsWTJoaGVISmtSVlZ0TDJoRFYwdGhDbEY0YlhKT2NXWldiak5DVlRFd1Z6SnBUakZ2TUZGNE5HNVlSblZIV1hGdWRIcDZWMkpDWjI5UVF6QndTalZKYjA5TlJtcEpOU3RWVVZwMFUxUmxPV0lLV1VSNFN6WmtNbEIyU1dGSVZVdFVZVUp2V1M4eWRFaHRjVVZyWkVsUGRuaHNRMlk0ZW1GMFpsQkNVR3h5ZUZkTE9FWjZhalZtVlRFM1UwRkdPRE5wVlFwUmRHMTFUa3QzYUVocFNrSjZjM1ZtZVZSSU5FbDNTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsRjJNa1YyV1hCVFoyd0tkVEVyUmtwNlVHTmtVWGQ2TlZaTGFrZEVRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRktRVmxVVUVkb1RFOUdkMFZRV0cxQlJqY3diUXBWZUZwMGJtVjRVblo2VUhwck9IZFFVV1FyZG14dGIwWldjWGR4VURRMmJIWlpZa2Q1VFhCdk1rNVNjVVlyUVhacVNFTXJiQ3Q1YlZwb1FVSmhSbkJtQ25kWFIyZG5MMGhvY2t3ck4zTkpNVzlxYW1FMGRXRm1VVk5WY1VOR2VtVmFPRlpOT0V0VmJraHljVkZXTW1ReVNXVm9Za2hqVGl0MlpuRm1TU3QwTkVjS1kydGFhek01T1VGeGMyNHZaekZXV2pKSlIzZzRlVTlSTjJWWVNWWXdXRFJMYzB4V2JsbDRiVGRVUWtjeGRsTXpZbXczVkc1MlRWWlZhSE54VlUxck1BcGpiWFEwTTJoaVNVcGFXRU0zWW5oVk5YSnZXRU5VY25CTVZrczRSemxrV0RRNE1ERnpUVWxrTjJacU0zazJWbmRDWldJMGRuQXpjRFJ0YzFNMWVGWXdDamwwZFhRdlUwRmxlR2hMYUhvM1dVSTBiMFpGUzJacFpsQlJORTFCZGk5Nk9DdHdSazlTZDJGMFkweGtPVFZIVTBKdVJFWlhNMjB6U0dKVmRVNXZVbFVLWTNOVmN6ZzNLMk0xYnpBd01ETkZjV0pNVVc1MmRVOTBWMWh0WlVGeFYybE1VR2RxVWtwc1NESlBZMUpWUmtWRU9FSXllVEpLU210a1puUXpVVkpXYXdwdFYxZENiME51VkZGWlNGQTRabFoyUTIxYU9HOUtNM0l6ZGswM1pqRnBTelZTY2pWT2FYcExaa2Q2U2tKR1NGSXdSWHBsVGtka1lsVTJSVk5RV1M4eENrdDBjVUpMVEV0bVRFRlVjVFZJU2poQ1dTOXZURFowVFdSMlJIVjRRM1p0SzBoWk1XOUxRVTFUVTNGS1NuaFdXV2hrWWpoTGRUWXdhWE5SZGxKMWVtWUtSamhEUlN0NVVYVXphVmRVYTFkMldVcGFOVmRNV0ZwNGFXUmFXVFJYY1ROc1RWWlRlRFZxS3pGNkx6SkhNeTlJVTI5ek1rNVBZa1I0UjBKU2NqaFFVQXBqWlM5WVNrZ3pURFpHU1daNVdIbzBTM1owTVV3dmVERnVNVTlxYTJkdmVWSkZWbEkwV201WGJHeG1iRkpJV21JcldXTTVkak5UY1c1aE0zQmtWazkwQ2poVE0yTXlSalJ3TnpOaVRUWTFaWGRoTXpkdlJYQTBQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MyZEpRa0ZCUzBOQlowVkJka0k1TkV0QmVFNXpXR2RKUVNzeVZ6QlFWRE5YYkRaSmFpOW5ZUzlGZUM5WVJsbFBkM2xLZFRKd2JtTnRaV2hRQ2sxUk4yZ3JaVFZzV0ZkYU0zTmFabHBXY3pCSVNtWmxPVXBHY3k4NGJHeEVlRGd3WnpNNE9EbGhNU3RrUnk5UU5taEdNa1ZEWjJNeVlpOXJSVGN6WVhjS1kxVjZiMlZDVDJoVlZFcEtMMVJqZFc1M09GRlFNa1I2ZGpGbVVGcEhSMVZ3TmtoSFdXWklkMGhqYkhRMGJuUXJTRmN5UkVSVE56SXhaVUpGVnpSTVl3cEpSRkJqV1hGWWNqSXlkMjB2WWs5T1ZsUXZUSFUxYW5vdldrTkxWVTVYTjJZd1pEQm5iMDlEWTBSck0yZHVZV3RTYkhOVFVIUkJZM0J4VERWNWQycFpDa0ZXVGpsUU4xQXhaemxzZUZoV1JIaFVaMWRRUmtGWFRWbHlia0Z2YW5sUWMzUnliVmhIY1c5NGVXVnRVa3hFUmpCbldFVklWRUowY1hoclpsQXJhamtLZEdGUGIyaFdiMWhvUldobFdXbFhiREl2T0d4WllXSnFXbE01UlVsemJGbE9WVE0wUTNaMlUxcDZTMVZ0VFhCdlVqWlZXR2RxUlZJd2VHZHJVamxTY1FweWVuSmtNREIyVG5wblpsaHZOSEJLVWtSNE9HRXJlR1ZEVlRaRVkycHFlRmMzT1hKQ2VsQlBiR0Z1Y1Zsa1JFd3piMGN3ZHpGUlNVVTRhRlZ5TUZkRENreDBjbVJ3V0dKWVkzTm5ZV3RpVmpkSmFVZG9SVGxNUkZCblNXOVFaRUpJVDBKUmF6RXlNM3BJT1hkM1ZrNVphV1kzU0VGS2NGcGFjSHBaY1dodWQyUUtXbEF5VUVoWE0wRndSMVJKUlRJd2FrMDFTVFptV0c1SlYzTmhNMUpHU25ZMFVXeHBiV3ROV25GNllXNHhXamwzVms1a1JuUnZhbVJoVGtWTlpVb3hlQXBpYUcxTGNEZGpPREZ0ZDFsTFJIZDBTMU5sVTB0RWFrSlplVTltYkVWSFlsVnJNM1pYTWtFNFUzVnVaR28zZVVkb01VTnJNbWRoUjFBNWNsSTFjV2hLQ2toVFJISTRXbEZ1TDAweWNsaDZkMVExWVRoV2FYWkNZelFyV0RGT1pUQm5RbVpPTkd4RlRGcHlhbE56U1ZJMGFWRmpOMHh1T0d0NEswTk5RMEYzUlVFS1FWRkxRMEZuUlVGMFMyZHFORFZIZEV0eWFIbFBhRTR6ZFdOTlJuQjVjMUpUWmtOb1QxcHFZekZtWkhWNFkxaFVXSFZ3VkVKNGIyOXpjSFozVG5WMlVncFFRbWxwTmxaR1FucHFSMjF2TjJRNVZTdFRkRlJFWVdNclRYSnpkbmRHZEc5cFpETTBUbWQ2ZHpsc2NXRTFZbmh0UTFsNmNubE1lak5zY0ZaQ1RITldDazQzZUhKblZtWXdNVnB5U25BMVQySm5RM28zV2xKTGQyaDVjVGhOUjB3cmFrSjRZMEZvZEVaNVZYcGFhRlpsVFdjeVpWUlFZVFF4V214a2JsWlFVM2dLZHpBemFGRTVSMmc0UkZGTWJXMVJVVXN6YTJFeWRsaHNNRko2TVhKclFrMXBlV3B1VUdOd2FHZzBOemwyYjFKelpucHZWRll2T1hWTlFtWldUamd2UWdvdmNGSmhXVnB5VW05SVQwZExNWGRKY2s5YWJFd3laWEJPT0VWMldqWkRiRFZHYzFoUFR5OXdhVkE0ZDJwcVpISnRaSFpQVUhKdGIzRjZORE5JTldsakNqZE9VSGxxTlRWSU5GUlVjekpTU2tSWVdFRXJjRzlzYTNoQmRsVkliRVV3TlVaNmRUWkdOV1F2UVRRM1YwVlJVamxhZG10dFlXVnJNVEkwVDFoa01tUUtkMmwzV2pSRGNYb3JVSEZNTVcxSGJVTXlUalJ3VlRCbFFqQTRjVGhTTVZoQ1JXNTRVekoxTVhoSlNraDRUVUV5TTNkcVNIZG1TMk5xUkVreU1WUTBNUW81YVd0dlowVnViRU50WWxWbVQzaEpTMGRQUVU0eVEzUllNMXBMV0Zkek16ZDZkbFpzYkZNMGJsWnZlRE5JWWk5V2NYVTNZbHBGVUdzNFVGTmFUSEJSQ25GdE1IRndlak40U0doUlVWUndWMm81WXpCdk1uRkpkMjVqTmtWcE5XTlFRMFJNYTA1MmJYcE1XblpUWlhaVmFVeEtUMHBFUjA5d2MxWkJiRE5QZVU0S2FVNXhSelZxVDJkcFZHMW1hUzl6T0dkNGNHeFFWMjVXTDBaellqbDRNMU5HTUhwNWMySTRWVkpLUWpCVk5sbGhObmxSV0d4YWRWQkhheXR0WmtGUFVncG5kVEpPWmxseVNHUlFZa1ZzTld4eFRYWXpjRUV5YjA5Vk9YVXhORE54TW1aMmRVdzNhVTFQWWxOeFRtUlNWVXBSYjBWRFoyZEZRa0ZQTlhaTVZqTjJDakZrYTAxclZXTk9ZM2x5TkdSTWVGcE1kazQxVkVzNVIwZHNSVzl3U0ZJeFFqSnhPVzF6VTBkSVVTOXJPWFo2TWxRNGIwUk1TREppVUcxWmVVUmlPR0lLUVc5cE5YSlpkMVJPUVdGa1RrcEpjbUozYUV4a2JWSmlhbVJJU2s0cmNYbG1OM0pEUm5rMlNEVlRXSEV2ZVhCaGMwOWlSVE5ZWW5acllUTmlOMmR0YlFvdldXeENOR3RsWlVKdFUxRllSV1JXVEVSYUswWmpTSE4wTkc5MU4xUndhbkJQU1ZjeWVWSXpkMUUxVkhwSE9EVmFXbVJZYmtKcVQyVnplVXh2ZGpsT0NqQXZkalIzZW5SaWVqVkxZa0pZSzFvdldqSnNWRXhCYVVRMVdWTlZXSFp4YmpaUWEyRk9VQ3RGVmxWYVlYWmtWbEJzUldOWFpVRlRWVU5EWVVjMGNWa0tjbHBuUm5waVkxQkZNMmRpU3pCVlFYaFFkV05CVlV0VFl5dDVTMEl6VXpCUGJVSnlRMWhtWVU1aVowdHBZVU41WkZOMVpVbHBka2sxYW1oaGVFdEdRZ3BIVkZnMGIyVTVkSEowT0Zwd1RtdERaMmRGUWtGTmJqZGlhRmRGV0VwU01UTlpMMnhCUTJWelNIbFFhRUZrY21SS1prVjRNR2d6TkZScVYxWTJUalZ4Q2tORWRtNW9PVzVLV0V4MlVWWkNiVmxMVTJGYVNscDJhbHBuYmtWTlJscEtXVlZCU1RocmNrMXhVMFVyUVVWRUsyNHJObUY1ZHpSdFdUazJMMEUwTTFJS2NVdHFOV1ZPTWxORFVuQlplVUp0TDJnNGVIcFFNM0pUVlM5R1RUa3ZjREJyWjA5Sk5WVnhlV1poT0RGRVQyUmpNVEZoVG05dVdVd3ZSRzR4WTNaa1p3cE1LekEyT1hSaVZXbGlaR3hRVFUxT01uazVabWg2UW5KR1oyNVFSRWgxZUdSclpGY3ljbkJzVVRsUWNEVXZORTFTTDJObmQxaEtaek0xUTB0a04zQXhDa1ppZW1kNFFXUlNjbGMxU1U5TFowUmhNbmwzZWpodU1UTkNTVEJOWmxaaU5rRlNTV2xuVlhGcEszSkdUblpIVEROR1NYaFBVVkl6WWpWMVltbzFLemNLVG5WSVYyWnlaa2hDZEZoRFZIVnZPVEoxVGxkNEwyeEhRbWh6YVdaWWRFeFliREJRTmsxVVpqa3hjME5uWjBWQlZVd3phbGhuYTIxdlNqWndNelppUmdwV2EzSlhkRk5XTmxOallrMHlhRzVwVGxwUFQzaFZWVkZKZFhoalMyRnlSVEJ4YjFadVlXOUlZMUZDVFVrMmFtSnZOVE5XYlRrMldYRkNXa0ZzT0hVd0NqbFllSE16WjJKS1ZHTlVTVXhqYmpOS05VSTVWMEZRYTFSNWEwVXdjVkZCVkVOMlpFSnpiVFZYUW5oWlduSjBVREpPUlN0T1dsTlJSRTVtTjNWWlltY0tORlpOYkdaS05YbElNak53Ukd0bFRVTTRXa05ZVjBJMk5raHJWemh4TVNzclkzZFZNR0ZHWkV4eVptcFRNVGcwY0VkWGR6VTRXRU5SU0ZOSlNVZFVRZ293VVV0blFsRnlkbTlHTDIxeVZYRk1abkZXY2xwSmQyRlVWbE1yZW5aTlpHbFlWRmhFVkZOWWNYSXpkMFJZYjBkSGJGRXhaVmRUYTJaSVQxTnhlV1l5Q25wMGFHTmxZbmc1SzBSd2JrUjBWWEpZYmtkTVpuUkRPV0ZCVFROTVNtWXZWWFpvTW1wTE1rTkZhV2N4Y1VOQllraG5RbGQ2T0dsTmMyZE5iRk13UVZrS1ZrMUxTbGRSUzBOQlVVVkJiSGRhYzAxeFUwMTNUMnM0Y1V4d1dFZHNUR3d5WlUxR2FYZDJkWE5sUmtwMFpWVlVVRnBuUVhwclZrVk5UalpZVVhFMFFRcHhLMHBETnk5NFNsVk1XVlZYTDBveFQyNXZObXhzYnpVMFJFdFJWVWxQYkU1MGFuZFJZV3BwUm5aM2FFNXJlRmxSY0ZwaE5YWkVUV2h6VVRaeWNHNXBDazl3VVVZd2RFeFhha2hZYTBWclkzZFJkVFJHVVZneGJVeEZVbmhDYVVKbFVDdExVRFp1VFU5Q1NXSlZOR2xXYlVSRlVrOUhWa0ZRY0daa0x6RXZVMFlLYjA0MlQzZ3hORlk1VGpoa05qUk5Nbk5HUkdwcFdqSlJlbWhxVVZwaE1GRlJWMVJXWkdGNmFrcHdTMVZqY0hscGNtRlpUR3BvZVRoRE1GZFpOMk4zVWdwMlRFMDVkMk56UlhsUWJWQTVVR1pxTDB0NVVXRnRRekZLU0dKRk1VMVpVMXB3U0dReWJFSXdhR1pUVDB0S2RsSnNUekpHVURZNGVHZDZNM0E1UTNCaENraDJNSGxIYnpONmJrTmpiMVZYWjJSaGNUWnZWM05rY0VsSVlXb3liMjFKYm5kTFEwRlJSVUY2WXpVMGN6aG5VMGxFVjI1bE0yVm9lWFIzYjIxNVYwWUtPVzh6Ym5aYWVWZEJXVWM1TjJ0eVlucE9UM0pDVFVGS1dsbE9iazF0YTBWdU9HeGFjREpyTVVSNFlXbDNUSGx5VGt3eFpFaG9aVmhUY1VkMFZHNHJiQXBpWldNdk4zZ3JObGxHT1hWVFJ6aDZjVTQ0WWtkS1dHaGFOazAxU2pkdGVUTnlPWEZ3Um1aS2VsUTFZazE0WWpORFVGTkRXamdyTUhOT1JtNUVaV2RWQ2xkNVNWWTRRMFZHT0RkQ1VFRmxhMjF2Vm1WSFZXVnBaak5JVkZwUmF6RnpNRzlJTlhsQlUwSklUR0Z2WTB3MVpHaFRRbkI1U1VwNFlsVjVPSGRSYlhVS01HMHhWelk1WmtkU1REY3ZMMEpIWmtjelVEbGpiMDFLWWxOaU55OTRNeTlKZFZobFRETmFlalZZU1d0b2JISnpNVVpETlV0eVJXY3lOR05DYVhWaFZncGthVk5uVkVoaVNHOTZSbWxTU1docGVYTkVlbXh0YWpaUFUwMVFhV05IUkRoSGREWm9TV3BzVkhSSFZHTkhRVTl3SzJ0ME4yUTRZMnhHVERWTFVUMDlDaTB0TFMwdFJVNUVJRkpUUVNCUVVrbFdRVlJGSUV0RldTMHRMUzB0Q2c9PQogICAgdG9rZW46IG50eWR1NHQ5ZWp2MG9ueTJydTl3N2M2Mnpyd2Q1OWFvdWswamRiMmhjbTRqM3E5ZXZsMW1td2R0MDZ3NnVscGVlMDI3bzN2OXZkamRtOTUxYnlvcG8ydXZ3dzFicXdqMDh1aXAxd2QzNHB0bmdqeDFhbjBvem0xeDE4MDhreGp4Cg==\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVU1TGVsVm1kV2hTTmpFMGJETlhUWE01ZHpoNlJuTjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJUQk5ha0Y2VFdwSmVGZG9aMUJOYWtFeFRYcEJNazFVVVhsTlJGRjVUV3BHWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuUkJXRkYyVWxoMlNURndURWhQTUdkblprUlNTRlZpY2xGU0sySXZWbU5FUm1VelpXaHJWMjExTmk5blZWcDFMelJhZDBOalVHTkRSbkJ0UVhwcGNtSUtZVlJPU2tWNVNVcEdWVUZDT1V4Q2FVUkJORW80TUVnNGQwTlJOMWx6WkhFclNpOHlNRFJFYUd4WWIyOVhZMnBIWnpaUWJrNU9NM0I0VVZkTGVFRm1ZZ3BGTUhCVWRWWjBSamRsYkhVellXOTRVemh6Y2pCR1owWk1iVUpoUlZScVdrdHRjbGM1YzFod1ZFSTFZVXhZWWpKNGRuZGxXRmxwYW10aWF5dDVXalZWQ214Qk5qUmlWM2R0VG1Wc1kwVm9OSGRsUjNWT2VIVmtkMEphWWpCcFJtSlJVbGN5UVcxeGRuZExRMUJzYzFvNVlsVTNSRWN2UjBNNFNuaHNZMEZYWlVjS01Dc3plRXBOT0d0amEwRTRaM0Z1V2pSWGNXTlROalEwZFZWNFpXRm1RV1JNV0ZnelZteFZPRE16UkRKc2VrSjZLM3BKVTNob1UzUnpSRWRaY0RCMWVncEdTbk55T1ZRNVJsQjRNakZZYTFkSkx5dFZMMFZ2WTBsREsxWnFRVGsyTjFsNWQydDVNa0pETWpneVMxTk9XR2d6ZUdjNGRtb3ljVEp6TTJoMloyRTNDbWsyY1c1SlowUjRaMVV5UTJ4emNHUjBabGwwU0VwcWRVZFpSbTVaUjFaR1dWUlZTSGxKTmtaWkwzaHhXSHBXU3poS1RYVnhVVTgzYkVSSVpsbzVVRThLVW10QmRucEhLMjlyTHpCeFZrbHhSemgxTWpOamRWcEhhRGRLVldVd09YVlFSVTVhTkVGUVpYTjNhVUZ6Ym1ZM2F5czFZMnRxZDIwdlFVMU1WR2RVY3dwcGJHcHhNbGxrTTFwdVZXSkpjMUJFTUhWTUsydHJWVzlXYkZsaFdtSnBVR3BZV21kelQwZHBkVWR5WW1aVk1rVnphVGRHUzFweWNUVkdlVEZrZEhabUNqQmhaSGd4TTBGblJUUm9URmxTUTBoMWEwNVNTemsxUjAxRVpYSjNRMlZLVnl0NWFFOTZhR2xGVlhnclRGTkhlVzAyTW1WeVEzTm9UV1JYVlVvd09IY0tkR3gwY21KNGRrUTJOa3hEZVhsMVFVUjZXWGxhY1ZCNmJGZFBURXRrVlc5YVRWZFRjSGQzU0c0NU1FTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1FXZHBTVmg1YW1nMWJUQmtWSEk1Q2xad1l5OU9OQ3RvU0VSbWNFMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFuRnhTSGM0WW5CdVYzazVNalpVVVRCWEwwdDRSM1poTXpJS2JqbEdWMmR1Y0dsRFMxZDNjbFU0YVhGMGVESlNTa0U0ZFdvMWRGQk1jbFJhU1UwMVRVSjZORVZCUld4a2FXeFBlbTFGYm1wTlNHZFBObWxRY2paQ0t3cHRUMnR5WkhOUWRrVXJSR1ZUY3pSalZsVkpUVXRXTHpSQmFIRk5SVTlUV0UxamIwbHdLeXRJVmxsV1ZuRTNSM1JxYnpKTFNFNU5VWFpEZG5SMmFWbHRDbWRKSzA5eWFuSXJMMEl5ZVdGUVNHeHNiVGxGYlZaMGRIYzRVMjA1WVhOblJWRkxNMEZpVHpaT1F6SlNhbFF4YW1oR2JuSlpXbFZaWkdZNVNVbG5OMDBLZEZKeFZXSkZZbk5SWWxWTVp6bHpRM0l6TkhGdU9XdERkazFuT0VKdVNEaFBlUzl4YTJsTU5taGhWbWwzV1VGWk0xZHBXazFRWlVVeVZESTRhRTVXYlFvdllsVkhkazA1TkdKVVpUWkhXREZJYzI5R05rUlRVR1pJTDFSVmIydzFhbVUyU3pnNWRuQnFSVlp2TkVsUlNYaHpka1pRVUdGalMwVlViemgyVEdScENtbHNhbGxWZFc5NU4yRldTbGxLWTI5VFJUbHNUblkyTmpOMFRHMDFibE5XTmt0VVYwbDNXbTVwZWtsVFkyVTNRbFZUUTNGalFWb3hObEF2U0VwaVlWSUtOM1ZEWkU1U01UVldOR055V2pWYWRFZFZNRkVyZFd0R1MzTldlRU01UVhsT2ExbDRiSGhaTHpodVpHSTJiVUZsTDNac2EyMHJSSGN6TDFSNmMweEZMd3BsYTBWUFVIaFJPV0puVkRoRWMwOWhUVVkwYTFsck9EUnNhbkJaTjBObWRVUnlVbkZITVdsSWVYWjBLMDVQVUdaNE1sWXJSSGRSWkM4eVJUUkJja0Z2Q205NVZYbDVRblI2UW0xcGMxQTJjVU5sYW5OU1dXOUVabGhQY25aNmQxbDNUbTVIVERKSFNXbzFjeXN2Y0cxNlpqQnZibkJtWW1WaGQzSlhXVXhPWjFrS1lsbGhVVmRRYVRKSlYydHFibTUzVG1sRFJpdHJiMnAyVWpSU2FHZElUVzQxV1hsVFZERnFkWEJNTUd4TlZVRkpUMUpOWVRkRVNWTnZNalZqVmtGNk9RcHdZMk56UVdzMFVWQndaWHBTYzJJeldGRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zd2RmbW9raS04MWM1aG9haS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdDZsZHpibwpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdDZsZHpibwogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGUyb2F1cTJjaGhfY2xpYWtzdGVzdDZsZHpibwogIG5hbWU6IGNsaWFrc3Rlc3Q2bGR6Ym8KY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0NmxkemJvCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGUyb2F1cTJjaGhfY2xpYWtzdGVzdDZsZHpibwogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVcGxhVlZMUTNaVVoyczFRWGQzUTJ4WU5HUlJlV3QzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFSVEJOYWtGNlRXcEplRmRvWTA1TmFsVjNUbXBGTUUxcVFUQk5ha2w0VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJOeTl0UTIxbFNVOVBVV05LVUZwRVltSnJaSFVLUzA1VGFtUkVZbHAwVGsxSVJ6TjRWMjkzTjJFMVdXNDVSRTFJZDBKTFVWWnRNbEJQYjBFdlVqTTNTak5WZDIwdmQwTnRNSGx5U1VadUx6bE5iWEp1U3dwNmFXNUVTbWhyYVZaUFVYZDRVMjVPUldZeFZqWXlhVVEwVUVzNWVUSTJhV05HTURRM1dVOXhNV3N5Wm5CTFVFVTVTSFZ0VEZWM1VIY3lSVTh5YUV0UkNtRnFjV1JFU3pkU2RDdFliV2hKTm5vMllYTnpNVzB3UTA1WlJsbG1VbkJxYVZKTFpGaG1lV3d6VFhSbmRqQXJSVkkwU1daaWVGVXhPVk56YlVNek9YVUtORXRVUmpsQ1ZFTnZZbG96YkRsU01sWllUekJ0UkROTVpIUndWelpwWTFobk1HMTNTMmd6VGpOUlZtczJWbGRVUkVNclduWlFNWFo2Y1VGYVZUSnpXUXAzTjJ4dlozRmtibXRvWVZaNWRrWlpTemRMUWtsQlRVdzBiVTFOZFRoUU1FRjJTMFoxTWpGUmRHTlFaM3BWT1ZkelVtbHVlRWh4WTNOV1VFMVNTVlp0Q210aVVWbFhhR0l3VFZwTlkxaHFNekp0Y2s1R0wwVnllVFZWV1hWa2NXZHhRalo1VFRkQ1NUaHNka042TW1GVGQwRXZlVmhRYVZwTWF6TkNVbUpIU2xJS05HMTFRVXB2WkRaclFYVk5aMnhKY2pjMk1XMTZjMWxoVkZWcmMzZGtXRkZRWVRGMWVGQmxjMkZCTnk5WFlsSnVNVEZWTURSU1QydFNjRXRxYWpONWFRcFlkR3hJYlhsSVFrSjRkekJtZURkM1VVaFBPV0pLTTFnMVVsWlpaVkJQYUVwVE5Fa3dMeXR4ZFdWdGMybG5aMUZ5WkVKdU5EaGtSblZSZDB0dmVVOXVDbkZwT0UxRmJqVXphMHM1YVZacWFtNWFkSGxCYmtScmJWWnhWbVE0VTBwUVVFZExOREpIYlhSU2MwUnlXSFEyVkZORE1tNUlOSEp4VFVSTll6aHBTREFLZVU1NWVYTlNlblJRTWxodlkyMTBRbEEyVkdoeVpWaFZiV05CVjJkVU1GVTNlSFJoVG1SSlUzWkhOME5IWTBKU1dqUkJTRVpFUldSek1qbElUSFF6S3dwb1pVcG5XVmR1U25kWGRGQmtTRmd3WkVjdlFUVXhPRU5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZRME5KYUdaTFQwZ0tiV0pTTVU5Mk1WZHNlamd6YWpaRlkwNHJhM2RFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJTMUZWZVRGNk56WkdTMjlsWlRGWVpXdEdaQXBzYWxGTFVuUlBVak5uYlUxSk9FRTFValZUUTJZM1VYb3JSWGxyT1N0blpqQmxSak56UW10WU4wOUhMM1IzYWtVMU1FZHlla3RCY3pSdFZGVmllblZEQ2xGeGMxUkRkVEZRVDJKSVF6QlJRbmg1WlRGSFYwOVRTRFJ3WmpoMmFqRkdiM1pwTDA5S2VVYzVRVnBFTlZoU1lWVm1SVko1YkdOT2QySkRjRGw2YW5JS1lUaHVRMWxGTlRWYVlsbHRPRXR5YUZWTVIxRTNkWGhVTlVsS1IzZDRObEVyVWpneFpEVXlkMEpXTDFSeldYWlNXSEl6U0Zkak9FNVFVMHh3Wm5ndmJRcDZWalZZZFhoclVXZHZaWFUxT1dWUFRURTJUR3hTT1hNeVMyZFRjM2swU3k5UFR6aDNhMDl5ZVdwRGNFTldPUzluU0dscWJGQkNjbm8xVWs5NFR6aDVDamhKTkdwdFoyRmhlRU5vVDNCaFJEY3phRzFJWldJNWFXSkdlRlZQTTFKUGJFSm5ZblJNWkRObmNuZzBSbGR3TWs5WFJGY3dhR0Z3VFdSb2NGTmhZM2NLYTB0TVdFWlpkRUZPVG5sWk9ERXpkMFFyZUVwR1RVNHJNMnhhV1hremRtOTRjR3BPVldzNGVsTkNielZvTms5cWQzVkVlRk5USzBwdWJ6STVUV1ozS3dwUWVFOWxSREJqVkVVeVp6ZFVhbGM0TWxvMlp6QXpZa3RNYldKdlpHOWtUbTUxTkZwYWNTODBiRmN6Tm5RME5VOW1XRTV6U0ZkcmNEaDFXSHA0T1VoT0NqVnVSbTVaVDBWcE1GVjViamhUZDNCRmVDdEZaRTl6VUVkdVVqbFZSU3N5TTFCNGRIWktRMHhEYWt0R1RVMHpka05zVTJvd1kzSm5VemxsZUdKUlZIVUtSbWxXTldGc05EQXZVVFJ6V0dSRU5tNUtjelpSV1dSU00wcFdZVlpuYkhCSVkyVlNjbEJ1UWpsUmJURmhNRXBLZVc1b1pYcElkbm81YURsaU9VNVdSZ3B6VGtZd2VHZG5iMGxCVTBST1dYazBRVzVJZDNocmRXbDZTMGc0YjFaYWF5OVRNbWRCVmxOaWFUTkdSVmxKWTFwRFZVa3pkRFZzVkVaUmNuZEVTV0p2Q2xKbVp6WkZUVXRVYTBZd04zUkVOVFZRUTJsa1VUZ3lMd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJOeTl0UTIxbFNVOVBVV05LVUZwRVltSnJaSFZMVGxOcVpFUmlXblJPVFVoSE0zaFhiM2MzWVRWWmJqbEVUVWgzQ2tKTFVWWnRNbEJQYjBFdlVqTTNTak5WZDIwdmQwTnRNSGx5U1VadUx6bE5iWEp1UzNwcGJrUkthR3RwVms5UmQzaFRiazVGWmpGV05qSnBSRFJRU3prS2VUSTJhV05HTURRM1dVOXhNV3N5Wm5CTFVFVTVTSFZ0VEZWM1VIY3lSVTh5YUV0UllXcHhaRVJMTjFKMEsxaHRhRWsyZWpaaGMzTXhiVEJEVGxsR1dRcG1VbkJxYVZKTFpGaG1lV3d6VFhSbmRqQXJSVkkwU1daaWVGVXhPVk56YlVNek9YVTBTMVJHT1VKVVEyOWlXak5zT1ZJeVZsaFBNRzFFTTB4a2RIQlhDalpwWTFobk1HMTNTMmd6VGpOUlZtczJWbGRVUkVNclduWlFNWFo2Y1VGYVZUSnpXWGMzYkc5bmNXUnVhMmhoVm5sMlJsbExOMHRDU1VGTlREUnRUVTBLZFRoUU1FRjJTMFoxTWpGUmRHTlFaM3BWT1ZkelVtbHVlRWh4WTNOV1VFMVNTVlp0YTJKUldWZG9ZakJOV2sxaldHb3pNbTF5VGtZdlJYSjVOVlZaZFFwa2NXZHhRalo1VFRkQ1NUaHNka042TW1GVGQwRXZlVmhRYVZwTWF6TkNVbUpIU2xJMGJYVkJTbTlrTm10QmRVMW5iRWx5TnpZeGJYcHpXV0ZVVld0ekNuZGtXRkZRWVRGMWVGQmxjMkZCTnk5WFlsSnVNVEZWTURSU1QydFNjRXRxYWpONWFWaDBiRWh0ZVVoQ1FuaDNNR1o0TjNkUlNFODVZa296V0RWU1Zsa0taVkJQYUVwVE5Fa3dMeXR4ZFdWdGMybG5aMUZ5WkVKdU5EaGtSblZSZDB0dmVVOXVjV2s0VFVWdU5UTnJTemxwVm1wcWJscDBlVUZ1Ukd0dFZuRldaQW80VTBwUVVFZExOREpIYlhSU2MwUnlXSFEyVkZORE1tNUlOSEp4VFVSTll6aHBTREI1VG5sNWMxSjZkRkF5V0c5amJYUkNVRFpVYUhKbFdGVnRZMEZYQ21kVU1GVTNlSFJoVG1SSlUzWkhOME5IWTBKU1dqUkJTRVpFUldSek1qbElUSFF6SzJobFNtZFpWMjVLZDFkMFVHUklXREJrUnk5Qk5URTRRMEYzUlVFS1FWRkxRMEZuUVdkelpYcDVWRVpPUm5ZNGFYQm5OaTk0TUZobFdIaHZhbE5xTlhGUWQxZFRjR2RSU2tsNWQwSldNemQzUkZobVZESnVUMmcwZFVaMGVBcG5WbHBHTVZGdVpUTlhaM0p3VlUxR2FuTlhibUVyUVdwQlNXTTJSMWxUUjBRd2VWaEtiRkJwZFZCU1FYSkVVbXhyTWt4TldtbFpibkpzV1doWGQwbHFDbXRvYmxobmRFaHhWelJ0T1VOWkt6Rm5hbEoyYlZONWRERXpUMjVzV0RkTFQwcE9TVXNyUjBKVkwxQTVUbEkwZUhoTU5WWlVaRGhvYUVaUWJGaEJlbTBLZG10S1Z6RTNja0owWmtzcmVqSkxOaTl5WmxGU1IxY3hhMVpKYnpsNWIyeFFRMHhqV2pSRVduaGpLM1JwYzNOcVNuVkJkWFpGWVRGT2EyaEZNR1ZvV0Fwb1MwbEZjQzlTT0hWbVZVUTFkMUpoVGtkc2ExUklia2N6VFU5T0wzaG1XRWhVYmtkT1NpdEtLeXRJV1dGclUyWmxUM0pKYlVabmJYbFBZbGs0TDFBeUNtVnJiRko1YmswMVdtTk1XVGxDVUM5a0wydGlVeXRDTjNkWVZXTjRNRGRHVldwb2QxZDFOVGtyVG1GQ1ZIVkhOa1l5ZEdOeWFIbEtNa0ZRTldkMGVpOEtPVXhMU2sxeVQxWk1ablpRVG1wMVEwNVpTVVYxU1N0TFJXWkljRTQ1UW5WaWJteDFkVEV2V21WNVVYRkRaVmRsVGpCM1N6Vnpia1JYZVUxVU1WQTBid3BpU0ZFMGVVMXJOazVGVUVkTVVGTlBjVWRRVVZFd2FESTRZbFZoVjBwMVlqSTBRemQzTVRWdFVFcE5SMjlpZEVGWU5UQlFNbFkxYkc5dmEwVndlblpVQ2taWmFYRlZZVE5sUzNoTU1YSkpPWGNyZUZoVU5XdDVaVkJwUkVwSVdITjFTMDB6WW1NeFVtUXZNVTVuY1c5eU5XcDNWRGxhWm5sTVIyMXZaMEpJUmxvS1VucEdVMmRxVEhSVFpXTnFlRWRKY0VVeGVtdG9PVEZwUkRReU4yVm5SVWcwZGl0eFQzQnlXR1J3ZDFsYVNWVTRRa2dyWm5Oa1ZuVXlNWEZMYzJFd1NRcGhaWEpxVTFwMmMzUnNiVU5rTTA1VlkxWkxSbmxqUTFFM1ZXdDNkMFpDYlhFMFRWcFliWFpCWm5CMFlWVXZkVmxyVVV0RFFWRkZRUzlrZUZGRk5tbFhDbkZ1YWl0blJESlJRV0ppYnlzeVpqRlFRMk5tVERkVVpVRmtNMkoyY2k4NE1rVjZlbVpaYTJKSEx5OWFTWHBLZFRrM1ZsTnROWFphU0hKdk1XbG1kMk1LS3pKV1pWbDVZbXBvVmxsR1NFUkZWVkJtTkc1QllVMVFWM2xQVWxjMU5HVklLMHhxWTJwVFRHUmhXRWgwTW13eVNXOHlPRlJtTjNwU1NqWnpjM05UY3dwMFprUkxhMFJCYm1sd2FVTlpZMUZCY0dwR05FWlpjSFJLTWxZdlpISlRUV0pYZFZoall6SkZSVzEzYUZOaGJUZFpZMVF2Y1hoWWR6bHJSa2hTVW5WeUNtOUdNV3hvZHpWMFZXTkJha2RaTUV0U2Qza3pVa1JEU3k5UlJVOHZaVmhzTWxrdmVYbG1UM1JSVUV4ME5reHpUREZMUVZOeVNEY3lNa1pzVjBoV2NWQUtjV3d3YVZSMmFGaHplRUpKWjBkdFJYZGtiamxaVVVsdGFtZDJjRGhyU21GWGRpdERTVEpUVW1vMVZtOUdjRWxFUWk4eldTdE1SRlZzVGtjMlV6VlBkUXBuWVZkcFdWWTRUMFJoYXpGa2QwdERRVkZGUVRobU9EbFNjbFF3UVdGVGVVVjBlR3BqYkRSeFFUTTNTRk5PTlZGME5VVm9Wa0ZpVGtWMFNVUjRUR1kzQ204NFJUZzRSRzFUVm5kTE0wdFpRVVJ0V2xkRk5rTlpPVXMzWTBOMlRGSnViVXh6TTB0VFRHZE1RemRWVmtORk1ra3ZVbFE1YzJORmIxTjBZVzV5T1VJS1EwTlRZWFZoYjBFd1pHOVFhMVp1WVd0M1RreEZOVmxIU3pKMU4wZHJSVVpvYWt4NVNqWXlaRVJ4WVdzeUszWjRSMk5OYW1WbGFYTTBlbXhWUjBWWll3b3lWMEp4UlVkb09UZEtTREEwTWxoU09VRXlSVXhITURWS1l6UmpaVlF2UzNGR2FrbzFUVzE2ZDFWclVUUkxabGRaWWpFNGRHODNMMGQzV25aRVZsWk9Da3BzZFRRdlJFRnVRMmRDWVhsMmNtRnFkR0l3YjFWalNuWnlVa2xMY1ZGT2QxQlFkRWhqWm1OeVNFbGFlUzlJU0d4bVdsaFFWWFJDVG1SRk1XSkVkRW9LVkdvNFowdDVjbFZwWjNZeFZXUjJLM1J0ZURCblluWkJhbE5VT1ZadGFGY3pNV2s0UjFWV00xZFJTME5CVVVWQk56VXdZa1JIVFhSNWVubHVXa0kwTXdwd2FHRnBkRWRKT0hKSmJEQjFNQzl3TWxSTmVUZHJjRU1yTVhOMU0xRm5hbmxZY213eGJqUk9SbU40Vm1FNFJtWXpPSFk1UzNkQlNIcDRZWGRVT0VKMUNrMTJWM1J1ZURKSlRVeGxTekE1VnpSalpITlNiMkoxVDFSaFUxZzRUREFyUVZVM05GRjBkazVuVUVoMGEyMVZXamd5VVdWUFEweENjbTR6V1doT05tWUtRa0ZtVGpCVUwzcExUM00yYjBsS2JsbDVPQzlpTm10a1pqQTFNWGhTYjNGR2ExWjJObWh5UjFod1RsZHBORTFNVkZSVWVXTXpNbHB6Y1ZaV1dtNVJjd3B3VjFKSkwxSTBUMWhHTDFwUlFXcGtkRGc1WlN0cVNXTnJVVEUxUzJwMlUwSmhUVWhCYjNoRGNqTkNhMFFyVGt4V1dYbEdXblpIU3preFFYWlRVVVJLQ25Kd0syOHZNbEZhZUdWMlptRk5hR2cwWlZCSE4zbzNTVVZIY0hCNVRWSjBWRWQ2UjNOaU9HbEZNVWc0YTFWbkwySjZWRU4wWjBaM1ZISnJjbTExVEdjS00yVTBaMGwzUzBOQlVVVkJaM2xRV2xablltSnpSVkpNUWk5UFRYQk1ObTl5SzI4eFNIRlVlbEYyWTFGQk5WRklOeXR2Um1oeldscFNUREpGVVRNMEx3cGpiekpVUzNCamJqTkZVSFJ0VlhsWWJUWm1ObWRNTmxjMFYzRmlSWFI2UjJSTmMxQXpNazQ0Ukc1SWNWTnVTa0ppVVVkelozaHBUSEZzYTBSNlFtUXpDbWxGUms5aVIzTjNRM0pyWmtvd1kwZHZkVTF1Y1hGMVVIcGtRM1kzTldGcE5WQjVhbTVHV1RRcmMyZElOSEJ0V0dwNU9WUkNha05CYXpoQmRUSnBUaklLUldkNGNXeEJlSEZuV1VsT2JsaEhNMHBYYVZSbU5WWXhVV3hQVkZoVWREbEJVVXRUWkdSM1pWUnBjemhsVlZneWMzWlBRMjVOZDJOSFpYaGplVGRXWndwbmIyWTRjVGhFVkZSa1RIQkZUR3RLWVN0SlVYUmhUR1p1VXk5VE1FY3JkR2N6YmpGNGRFdEpXVkpxTURNNE9UTlZRek5IWTBwbFZVOTVXREJVWkVKU0NrTXhiemx2UWxoRE5qWk1UVnBFTWxaMFEyUlhZbXQyZFhZcmR6ZFRjM0ZrVTFGTFEwRlJRVlphYmxCRlpXVkdXVk5GZFVwS1dVZ3pkelJDZEVOVmFFY0tObkFyUTNCdk5rMUJjRUZ0VGpOaU1Fa3laMDFWTVRWVVNUTkNSRGxWVnpOMWVGRjNNVFI1T0dGcU0xZDZaVFJZWVdkWE16VlFVMDlvWlRSTmVYVjFVQXBaY1djeEwxb3hkSFZGVDBvNU5rd3ZTVkZ5ZVhsUVV6UTBabWN4Y2xaV04xTmtlakJWVDJ4dFVucDFiM1IzVG5oS1NUWnlWVzluWW5SUlJtUkNTRWw1Q2xGSlRXdG9hREpGV1RkRmJDdE9abTltU1RCUmNsYzJjbUp3U0dOVFVFRjNiVWhYVFZWeVZUSlJVRVZxY0V0TGRGcENibTlqUkVKNFNsaGlhM2hoTm04S09YcElaMUoxWmxRekwyNU1WRkZLUm1OcU9GbDFjRkZ0U0c1RVNDOHlOaXRSWTFsVFVGaEhVQ3RVT0hoQ1IydE1NMkkwVDNOTVpuWnZSMjQxTlUwNVFncExkSE55V1VGUVJ6UktTMVZSZFVJeEsyaEVja1ZDTWs0NE5YWXlaRVpWV1ZWMU1VOUlaa2h0U2t0NE9WZzJRakU0V2tNNVZEaEZLMVF3TUVNS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiAybzJqejl2cGQxZGJpdGMxYm96ang3cGh6ZnhyaWZoY285YWF3bzk2amlhdTl5Y2J0d3ZwY3EyZ2JyMG8xa3IxdW1uNnVlNXV4bGRqaTQ2OWRkZXF1OXptaDIzOGhqaTI5dGN2MmhyNnlxbHZxaXh3aDg3Nml5amVxc2hnNTJnego=\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13096' + - '13084' content-type: - application/json date: - - Wed, 15 Mar 2023 10:11:25 GMT + - Wed, 14 Jun 2023 20:45:04 GMT expires: - '-1' pragma: @@ -926,24 +934,24 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVV0NmRHWndUVGhwYmpJelNrdDVOMlYyU0VvMVEzTjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDAxNlJURk5SR3N4VDBSRk0xZG9aMUJOYWtFeFRYcEJlazFVVlhoTlJFRTBUVlJrWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNqUkpSWGN6VGtWaGIyWm9Za3BYYzJZMFZWUjNUR2hMYlhSUFZIcHRjVWs0Wm5wTVYxaFlSa2t6ZEdGU01HRnJibWhFTkV4MmJtdHZPRFZUTjB0MU9VUUtLMEpTUlhGVVIyNUlZa1JGWjJOSlFscGlWekpwWVRCNldUaEJhR2w0WkRkb01FRTRWemRTZUZVek0yVlhXVlZQVkhSNmMwZEtiRGgzTjBGUVNXRXJUQXB0S3pVMVMxb3hTa2R1ZUZkSldWaFNkRU5ZUjB3d00zaGxNMDFrVkZWNWQyZ3pOMFZHU1cxMlZteG9RM2xoWlVaNU1IUlVhREp5TXk5eU0xQXphbko1Q2tkTmJHTkpUbFZZZUdWWmNEUnZWVWQzUmxCR1JGZFVlVzF2TW5Ca01tcGpPV2h4UzFwRlJTOXRRamx5ZHpKTWIxaFBTVXRVTmprMVl5OTViV3RYVGxrS2NIUkJSbXA0Vm5NMlNURlhaVVJvY3pkRFRrdFdlWGd3UldZNGVEZHZkbGd3Y0dSTVV6SnRNMmMyV2tsSE5raEljM2RXTkZKb1lqSnlSbUZoVEdad013cDBVWGMzU21KUGVEUmFibEJFWWt4T01EaHdiMHhyUmxsTWFucHlWRFJSYVdkRldXZ3JXWEJ4Tmswck56RXJlblUxVERaNlZ6VnlSekF2TUZrM1pGZHdDamhaV1VGa2RIRTBaRTV3U0VKblRVNWpTRFpwVDI1UWRuTjJZaXREZGxkVmEzQk9Va05WWVVSWVFuZFNURGRGZDA5TGRreERlSFZRT0VrdlZFZEJkakFLYzNGVFEyUlhjbE5OVWpOdFZESk1lVko0UjJwTU1EVnVLMDQxZEdGNWJsSk1TSEkzTlU1NFVtdERObXRVV1VKMWJFTlNXakkyVEVsSlVrOTVSM1ZMV0FwUVJGSkxObHBHY1dKWlYzaGFhVUZ4YUZWSVoxSTNXV2c0TVhsbU5FdENTa1pGVDJVMllsUldXbUZVTkdveFpWUkRlVUZDVFhkalJrTnVhSFl2UkZCQkNub3dRelJZZFdrNE5GRmlXR0V6VW1OdmRITkdOems1UjJaMGJFSm1jVkpoYWxWdWFWTnJVVzlPZGpWU1luUlZTVXRVZUZaQlRrOUpWRmRqYUVWMlRuRUtablJZWkdkSWFIRjNNakU0ZEZvemVEQkNRMXBYU1ZKd05tcDFUSFJ4WjFCbmVFcHJMM05uYW5aeVRVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1F5OVpVemxwYkV0RFZ6ZFlORlZ1Q2swNWVERkVSRkJzVlhGTldVMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFVOVNWblp5TlVkV1lqTmtRazQ0ZWpnemRXTnFiMWxFTTJvS0syaFhNRTh4ZG5GbFNtVmFUSGRKZW5WRFNuTmphSGRrWWt0eVJYTnRNVTQ0ZDFZeFpITmtVa3QwTUcxS05ISmhjRXN3VUZwaFJGaE9VV2wyWnpseU53cG5RbTV0TTNOS09VcGpXRnBSVEVSR2FERjNhbTVoYzNwd1JuTkNhbVZQWWs1aFZuTlNhRGxKWmtoVFdFeElaamt6TkVaUWJYZFdRelk0UkM5NVpVa3JDbmgzYjJSdFRrOHJNU3RtY0VOcVZtSlpjMWhQTkdVeloyVklhV2hpTlcxMWVrbEJUelZNWmxGVGQwcE9OeTl4VFZWclQyMXZkemd3UW5NeFlta3JRWGdLVWprMldqUnBMMnhpUTFaSGRtcEJTbVF3Wm5aNFZHVlBRMmx0Tkd4VGNITk1NVWhYTWs5d09HZDJZM1ZxT0cxTVJIWTNRWGR4YlRKcU4xaEhNMFI2WndwT01rUnNPWGRaWTJJMGJXVnBhMGgxVmtkQmRtSjZlR2xvVDNjd2JVNWpUWFYwZGtRMVlreFFOSEZxTTBRNWQydFRSa05WT1ZCaFNFbHpWa3h1WlM4eENqWmxkMkZETDJKbWRGVldXakJMYTNOVU4yOVJlbEZEVUU5TUswRmpUMkpHUTAxTk1tTk1kRlZPUzBKeVRYUXdlR3AwTjB3NGEyVlZVbkZuU0hwTGIxSUtkWEZTVjI5bmRHTlNlVUk0YVcxTWEzWlNja1ZrVjNWeWJrdHJNRXRXY21SdVVWbDBaMGhFVmxwS2NVZG9aQzkzTmpWclJHNW9TSFpFTVc4NE5EVlJRUXByT1U5V2NXbGxkMVJWVUVrM09VRk5ZbE5DY3l0WWJITmlWa1pKVkhWc1NFUXJXWFJwTWxkRWNIbHRXa3QyUVRWdFJXTktNM2hDYXpBMmRrTXhTM2hyQ2pOdmRGWnRaWGRGVlVsYWVWUlFXbEJFTDFCRWVFOUZSSGxrTUhoU1pIUkRlSElyVTJaSWNHOTRZMUl4WWxONllrWmpWSEJ2Y2prMVZHUlZWVFl2YjNjS2RtMXlOV1JrUlc1c1VuRlpNVFF4WjI1elFqQk1UelpVTDJoV1dsQXpiazFzTW1GeGNXbE5XalpXWVd0dE1XOU5RbWRxSzB0ek9FSlpka2s1ZVZWVlJBb3pjbkp4V2t0M1psWXZVWEZ5VjA5cFFYYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zdDduaW5ieC1yd3F1N3RwMS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdGM0a2sycgpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdGM0a2sycgogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGRtZDdpaTRtNWlfY2xpYWtzdGVzdGM0a2sycgogIG5hbWU6IGNsaWFrc3Rlc3RjNGtrMnIKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0YzRrazJyCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGRtZDdpaTRtNWlfY2xpYWtzdGVzdGM0a2sycgogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUldIUk1RVFZaVDJ3NFdYTlNVbFJwVlV0SFRuaFdla0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQmVrMVVWWGRQVkZVMFRWUmtZVVozTUhsT1ZFRjZUVlJWZUUxRVFUUk5WR1JoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTTRTRE5uYjBSRk1uaGxRV2RFTjFwaVVUbFFaR0VLV0c5cFVDdENjamhVU0RsalZtYzNSRWx0TjJGdFpIbGFOa1U0ZUVSMVNEVTNiVlprV201bGVHdzViRmQ2VVdOc09UY3dhMWQ2TDNsWFZWQkllbE5FWmdwNmVqRnlXRFV3WWpndmNVVllXVkZMUW5wYWRpdFJWSFprY2tKNFZFOW9ORVUyUmxKTmEyNDVUbmsyWmtSNFFTOVpVRTh2VmpnNWExbGFVMjV2WTFwb0NqaG1RV1I1VnpOcFpUTTBaR0paVFU1TWRtSldORVZTWW1kMGQyZE5PWGhwY0dWMlltSkRZamx6TkRGV1VEaDFOMjFRVURsclNYQlJNV0owTDFJelUwTUtaelJLZDA5VVpVTmtjVkpIVjNoSkt6QkNlVzF2ZG01TVEwNW5RbFV6TUM5ekwxZEVNbGhHWkZWUVJrOUNXVGhWUWxsNGFYVmpRMmxRU1N0NU1uVmFZd3BoY1dwSVNqWmFSWE5OV0ZOQ1kxRmtUVWN5Y2tkU09DODJVREl4YnpacFJsZG9aVVZUUmpWcFNtRllZaTk1Vm1od2RVNXNUREJSYVhsV1p6RlVabWRMQ2lzNVNtNU5jRk5aZVcxb1NIQlNaVU5OVWtoVVIwTlNTREZIY1haUGRETlVVemd6VDBJNVpXcHBhMnhGVUVoNGNqZEdORXBVYjA1NVQxQkdZbll5YzBnS1RUZzJWbkZsY0dnd1RYWmxaMkpVUkZaQloxUjVSbE4yVWxsSmRUSjBNbXhrZEdSNWVVSnhVblJZYzJsSllVVlVNSE5OSzBGcFp6a3dSV00wUmtOVVdBcGlaazFtTTBSQ1ZURnBTaTl6WTBGdGJHeHRiazVwY1VkbVFqRnJMMWs0WkdKalEydGFUV2RVWWxOTmVtdHFjRGxsWTJoaGVISmtSVlZ0TDJoRFYwdGhDbEY0YlhKT2NXWldiak5DVlRFd1Z6SnBUakZ2TUZGNE5HNVlSblZIV1hGdWRIcDZWMkpDWjI5UVF6QndTalZKYjA5TlJtcEpOU3RWVVZwMFUxUmxPV0lLV1VSNFN6WmtNbEIyU1dGSVZVdFVZVUp2V1M4eWRFaHRjVVZyWkVsUGRuaHNRMlk0ZW1GMFpsQkNVR3h5ZUZkTE9FWjZhalZtVlRFM1UwRkdPRE5wVlFwUmRHMTFUa3QzYUVocFNrSjZjM1ZtZVZSSU5FbDNTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsRjJNa1YyV1hCVFoyd0tkVEVyUmtwNlVHTmtVWGQ2TlZaTGFrZEVRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRktRVmxVVUVkb1RFOUdkMFZRV0cxQlJqY3diUXBWZUZwMGJtVjRVblo2VUhwck9IZFFVV1FyZG14dGIwWldjWGR4VURRMmJIWlpZa2Q1VFhCdk1rNVNjVVlyUVhacVNFTXJiQ3Q1YlZwb1FVSmhSbkJtQ25kWFIyZG5MMGhvY2t3ck4zTkpNVzlxYW1FMGRXRm1VVk5WY1VOR2VtVmFPRlpOT0V0VmJraHljVkZXTW1ReVNXVm9Za2hqVGl0MlpuRm1TU3QwTkVjS1kydGFhek01T1VGeGMyNHZaekZXV2pKSlIzZzRlVTlSTjJWWVNWWXdXRFJMYzB4V2JsbDRiVGRVUWtjeGRsTXpZbXczVkc1MlRWWlZhSE54VlUxck1BcGpiWFEwTTJoaVNVcGFXRU0zWW5oVk5YSnZXRU5VY25CTVZrczRSemxrV0RRNE1ERnpUVWxrTjJacU0zazJWbmRDWldJMGRuQXpjRFJ0YzFNMWVGWXdDamwwZFhRdlUwRmxlR2hMYUhvM1dVSTBiMFpGUzJacFpsQlJORTFCZGk5Nk9DdHdSazlTZDJGMFkweGtPVFZIVTBKdVJFWlhNMjB6U0dKVmRVNXZVbFVLWTNOVmN6ZzNLMk0xYnpBd01ETkZjV0pNVVc1MmRVOTBWMWh0WlVGeFYybE1VR2RxVWtwc1NESlBZMUpWUmtWRU9FSXllVEpLU210a1puUXpVVkpXYXdwdFYxZENiME51VkZGWlNGQTRabFoyUTIxYU9HOUtNM0l6ZGswM1pqRnBTelZTY2pWT2FYcExaa2Q2U2tKR1NGSXdSWHBsVGtka1lsVTJSVk5RV1M4eENrdDBjVUpMVEV0bVRFRlVjVFZJU2poQ1dTOXZURFowVFdSMlJIVjRRM1p0SzBoWk1XOUxRVTFUVTNGS1NuaFdXV2hrWWpoTGRUWXdhWE5SZGxKMWVtWUtSamhEUlN0NVVYVXphVmRVYTFkMldVcGFOVmRNV0ZwNGFXUmFXVFJYY1ROc1RWWlRlRFZxS3pGNkx6SkhNeTlJVTI5ek1rNVBZa1I0UjBKU2NqaFFVQXBqWlM5WVNrZ3pURFpHU1daNVdIbzBTM1owTVV3dmVERnVNVTlxYTJkdmVWSkZWbEkwV201WGJHeG1iRkpJV21JcldXTTVkak5UY1c1aE0zQmtWazkwQ2poVE0yTXlSalJ3TnpOaVRUWTFaWGRoTXpkdlJYQTBQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MyZEpRa0ZCUzBOQlowVkJka0k1TkV0QmVFNXpXR2RKUVNzeVZ6QlFWRE5YYkRaSmFpOW5ZUzlGZUM5WVJsbFBkM2xLZFRKd2JtTnRaV2hRQ2sxUk4yZ3JaVFZzV0ZkYU0zTmFabHBXY3pCSVNtWmxPVXBHY3k4NGJHeEVlRGd3WnpNNE9EbGhNU3RrUnk5UU5taEdNa1ZEWjJNeVlpOXJSVGN6WVhjS1kxVjZiMlZDVDJoVlZFcEtMMVJqZFc1M09GRlFNa1I2ZGpGbVVGcEhSMVZ3TmtoSFdXWklkMGhqYkhRMGJuUXJTRmN5UkVSVE56SXhaVUpGVnpSTVl3cEpSRkJqV1hGWWNqSXlkMjB2WWs5T1ZsUXZUSFUxYW5vdldrTkxWVTVYTjJZd1pEQm5iMDlEWTBSck0yZHVZV3RTYkhOVFVIUkJZM0J4VERWNWQycFpDa0ZXVGpsUU4xQXhaemxzZUZoV1JIaFVaMWRRUmtGWFRWbHlia0Z2YW5sUWMzUnliVmhIY1c5NGVXVnRVa3hFUmpCbldFVklWRUowY1hoclpsQXJhamtLZEdGUGIyaFdiMWhvUldobFdXbFhiREl2T0d4WllXSnFXbE01UlVsemJGbE9WVE0wUTNaMlUxcDZTMVZ0VFhCdlVqWlZXR2RxUlZJd2VHZHJVamxTY1FweWVuSmtNREIyVG5wblpsaHZOSEJLVWtSNE9HRXJlR1ZEVlRaRVkycHFlRmMzT1hKQ2VsQlBiR0Z1Y1Zsa1JFd3piMGN3ZHpGUlNVVTRhRlZ5TUZkRENreDBjbVJ3V0dKWVkzTm5ZV3RpVmpkSmFVZG9SVGxNUkZCblNXOVFaRUpJVDBKUmF6RXlNM3BJT1hkM1ZrNVphV1kzU0VGS2NGcGFjSHBaY1dodWQyUUtXbEF5VUVoWE0wRndSMVJKUlRJd2FrMDFTVFptV0c1SlYzTmhNMUpHU25ZMFVXeHBiV3ROV25GNllXNHhXamwzVms1a1JuUnZhbVJoVGtWTlpVb3hlQXBpYUcxTGNEZGpPREZ0ZDFsTFJIZDBTMU5sVTB0RWFrSlplVTltYkVWSFlsVnJNM1pYTWtFNFUzVnVaR28zZVVkb01VTnJNbWRoUjFBNWNsSTFjV2hLQ2toVFJISTRXbEZ1TDAweWNsaDZkMVExWVRoV2FYWkNZelFyV0RGT1pUQm5RbVpPTkd4RlRGcHlhbE56U1ZJMGFWRmpOMHh1T0d0NEswTk5RMEYzUlVFS1FWRkxRMEZuUlVGMFMyZHFORFZIZEV0eWFIbFBhRTR6ZFdOTlJuQjVjMUpUWmtOb1QxcHFZekZtWkhWNFkxaFVXSFZ3VkVKNGIyOXpjSFozVG5WMlVncFFRbWxwTmxaR1FucHFSMjF2TjJRNVZTdFRkRlJFWVdNclRYSnpkbmRHZEc5cFpETTBUbWQ2ZHpsc2NXRTFZbmh0UTFsNmNubE1lak5zY0ZaQ1RITldDazQzZUhKblZtWXdNVnB5U25BMVQySm5RM28zV2xKTGQyaDVjVGhOUjB3cmFrSjRZMEZvZEVaNVZYcGFhRlpsVFdjeVpWUlFZVFF4V214a2JsWlFVM2dLZHpBemFGRTVSMmc0UkZGTWJXMVJVVXN6YTJFeWRsaHNNRko2TVhKclFrMXBlV3B1VUdOd2FHZzBOemwyYjFKelpucHZWRll2T1hWTlFtWldUamd2UWdvdmNGSmhXVnB5VW05SVQwZExNWGRKY2s5YWJFd3laWEJPT0VWMldqWkRiRFZHYzFoUFR5OXdhVkE0ZDJwcVpISnRaSFpQVUhKdGIzRjZORE5JTldsakNqZE9VSGxxTlRWSU5GUlVjekpTU2tSWVdFRXJjRzlzYTNoQmRsVkliRVV3TlVaNmRUWkdOV1F2UVRRM1YwVlJVamxhZG10dFlXVnJNVEkwVDFoa01tUUtkMmwzV2pSRGNYb3JVSEZNTVcxSGJVTXlUalJ3VlRCbFFqQTRjVGhTTVZoQ1JXNTRVekoxTVhoSlNraDRUVUV5TTNkcVNIZG1TMk5xUkVreU1WUTBNUW81YVd0dlowVnViRU50WWxWbVQzaEpTMGRQUVU0eVEzUllNMXBMV0Zkek16ZDZkbFpzYkZNMGJsWnZlRE5JWWk5V2NYVTNZbHBGVUdzNFVGTmFUSEJSQ25GdE1IRndlak40U0doUlVWUndWMm81WXpCdk1uRkpkMjVqTmtWcE5XTlFRMFJNYTA1MmJYcE1XblpUWlhaVmFVeEtUMHBFUjA5d2MxWkJiRE5QZVU0S2FVNXhSelZxVDJkcFZHMW1hUzl6T0dkNGNHeFFWMjVXTDBaellqbDRNMU5HTUhwNWMySTRWVkpLUWpCVk5sbGhObmxSV0d4YWRWQkhheXR0WmtGUFVncG5kVEpPWmxseVNHUlFZa1ZzTld4eFRYWXpjRUV5YjA5Vk9YVXhORE54TW1aMmRVdzNhVTFQWWxOeFRtUlNWVXBSYjBWRFoyZEZRa0ZQTlhaTVZqTjJDakZrYTAxclZXTk9ZM2x5TkdSTWVGcE1kazQxVkVzNVIwZHNSVzl3U0ZJeFFqSnhPVzF6VTBkSVVTOXJPWFo2TWxRNGIwUk1TREppVUcxWmVVUmlPR0lLUVc5cE5YSlpkMVJPUVdGa1RrcEpjbUozYUV4a2JWSmlhbVJJU2s0cmNYbG1OM0pEUm5rMlNEVlRXSEV2ZVhCaGMwOWlSVE5ZWW5acllUTmlOMmR0YlFvdldXeENOR3RsWlVKdFUxRllSV1JXVEVSYUswWmpTSE4wTkc5MU4xUndhbkJQU1ZjeWVWSXpkMUUxVkhwSE9EVmFXbVJZYmtKcVQyVnplVXh2ZGpsT0NqQXZkalIzZW5SaWVqVkxZa0pZSzFvdldqSnNWRXhCYVVRMVdWTlZXSFp4YmpaUWEyRk9VQ3RGVmxWYVlYWmtWbEJzUldOWFpVRlRWVU5EWVVjMGNWa0tjbHBuUm5waVkxQkZNMmRpU3pCVlFYaFFkV05CVlV0VFl5dDVTMEl6VXpCUGJVSnlRMWhtWVU1aVowdHBZVU41WkZOMVpVbHBka2sxYW1oaGVFdEdRZ3BIVkZnMGIyVTVkSEowT0Zwd1RtdERaMmRGUWtGTmJqZGlhRmRGV0VwU01UTlpMMnhCUTJWelNIbFFhRUZrY21SS1prVjRNR2d6TkZScVYxWTJUalZ4Q2tORWRtNW9PVzVLV0V4MlVWWkNiVmxMVTJGYVNscDJhbHBuYmtWTlJscEtXVlZCU1RocmNrMXhVMFVyUVVWRUsyNHJObUY1ZHpSdFdUazJMMEUwTTFJS2NVdHFOV1ZPTWxORFVuQlplVUp0TDJnNGVIcFFNM0pUVlM5R1RUa3ZjREJyWjA5Sk5WVnhlV1poT0RGRVQyUmpNVEZoVG05dVdVd3ZSRzR4WTNaa1p3cE1LekEyT1hSaVZXbGlaR3hRVFUxT01uazVabWg2UW5KR1oyNVFSRWgxZUdSclpGY3ljbkJzVVRsUWNEVXZORTFTTDJObmQxaEtaek0xUTB0a04zQXhDa1ppZW1kNFFXUlNjbGMxU1U5TFowUmhNbmwzZWpodU1UTkNTVEJOWmxaaU5rRlNTV2xuVlhGcEszSkdUblpIVEROR1NYaFBVVkl6WWpWMVltbzFLemNLVG5WSVYyWnlaa2hDZEZoRFZIVnZPVEoxVGxkNEwyeEhRbWh6YVdaWWRFeFliREJRTmsxVVpqa3hjME5uWjBWQlZVd3phbGhuYTIxdlNqWndNelppUmdwV2EzSlhkRk5XTmxOallrMHlhRzVwVGxwUFQzaFZWVkZKZFhoalMyRnlSVEJ4YjFadVlXOUlZMUZDVFVrMmFtSnZOVE5XYlRrMldYRkNXa0ZzT0hVd0NqbFllSE16WjJKS1ZHTlVTVXhqYmpOS05VSTVWMEZRYTFSNWEwVXdjVkZCVkVOMlpFSnpiVFZYUW5oWlduSjBVREpPUlN0T1dsTlJSRTVtTjNWWlltY0tORlpOYkdaS05YbElNak53Ukd0bFRVTTRXa05ZVjBJMk5raHJWemh4TVNzclkzZFZNR0ZHWkV4eVptcFRNVGcwY0VkWGR6VTRXRU5SU0ZOSlNVZFVRZ293VVV0blFsRnlkbTlHTDIxeVZYRk1abkZXY2xwSmQyRlVWbE1yZW5aTlpHbFlWRmhFVkZOWWNYSXpkMFJZYjBkSGJGRXhaVmRUYTJaSVQxTnhlV1l5Q25wMGFHTmxZbmc1SzBSd2JrUjBWWEpZYmtkTVpuUkRPV0ZCVFROTVNtWXZWWFpvTW1wTE1rTkZhV2N4Y1VOQllraG5RbGQ2T0dsTmMyZE5iRk13UVZrS1ZrMUxTbGRSUzBOQlVVVkJiSGRhYzAxeFUwMTNUMnM0Y1V4d1dFZHNUR3d5WlUxR2FYZDJkWE5sUmtwMFpWVlVVRnBuUVhwclZrVk5UalpZVVhFMFFRcHhLMHBETnk5NFNsVk1XVlZYTDBveFQyNXZObXhzYnpVMFJFdFJWVWxQYkU1MGFuZFJZV3BwUm5aM2FFNXJlRmxSY0ZwaE5YWkVUV2h6VVRaeWNHNXBDazl3VVVZd2RFeFhha2hZYTBWclkzZFJkVFJHVVZneGJVeEZVbmhDYVVKbFVDdExVRFp1VFU5Q1NXSlZOR2xXYlVSRlVrOUhWa0ZRY0daa0x6RXZVMFlLYjA0MlQzZ3hORlk1VGpoa05qUk5Nbk5HUkdwcFdqSlJlbWhxVVZwaE1GRlJWMVJXWkdGNmFrcHdTMVZqY0hscGNtRlpUR3BvZVRoRE1GZFpOMk4zVWdwMlRFMDVkMk56UlhsUWJWQTVVR1pxTDB0NVVXRnRRekZLU0dKRk1VMVpVMXB3U0dReWJFSXdhR1pUVDB0S2RsSnNUekpHVURZNGVHZDZNM0E1UTNCaENraDJNSGxIYnpONmJrTmpiMVZYWjJSaGNUWnZWM05rY0VsSVlXb3liMjFKYm5kTFEwRlJSVUY2WXpVMGN6aG5VMGxFVjI1bE0yVm9lWFIzYjIxNVYwWUtPVzh6Ym5aYWVWZEJXVWM1TjJ0eVlucE9UM0pDVFVGS1dsbE9iazF0YTBWdU9HeGFjREpyTVVSNFlXbDNUSGx5VGt3eFpFaG9aVmhUY1VkMFZHNHJiQXBpWldNdk4zZ3JObGxHT1hWVFJ6aDZjVTQ0WWtkS1dHaGFOazAxU2pkdGVUTnlPWEZ3Um1aS2VsUTFZazE0WWpORFVGTkRXamdyTUhOT1JtNUVaV2RWQ2xkNVNWWTRRMFZHT0RkQ1VFRmxhMjF2Vm1WSFZXVnBaak5JVkZwUmF6RnpNRzlJTlhsQlUwSklUR0Z2WTB3MVpHaFRRbkI1U1VwNFlsVjVPSGRSYlhVS01HMHhWelk1WmtkU1REY3ZMMEpIWmtjelVEbGpiMDFLWWxOaU55OTRNeTlKZFZobFRETmFlalZZU1d0b2JISnpNVVpETlV0eVJXY3lOR05DYVhWaFZncGthVk5uVkVoaVNHOTZSbWxTU1docGVYTkVlbXh0YWpaUFUwMVFhV05IUkRoSGREWm9TV3BzVkhSSFZHTkhRVTl3SzJ0ME4yUTRZMnhHVERWTFVUMDlDaTB0TFMwdFJVNUVJRkpUUVNCUVVrbFdRVlJGSUV0RldTMHRMUzB0Q2c9PQogICAgdG9rZW46IG50eWR1NHQ5ZWp2MG9ueTJydTl3N2M2Mnpyd2Q1OWFvdWswamRiMmhjbTRqM3E5ZXZsMW1td2R0MDZ3NnVscGVlMDI3bzN2OXZkamRtOTUxYnlvcG8ydXZ3dzFicXdqMDh1aXAxd2QzNHB0bmdqeDFhbjBvem0xeDE4MDhreGp4Cg==\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVU1TGVsVm1kV2hTTmpFMGJETlhUWE01ZHpoNlJuTjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJUQk5ha0Y2VFdwSmVGZG9aMUJOYWtFeFRYcEJNazFVVVhsTlJGRjVUV3BHWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuUkJXRkYyVWxoMlNURndURWhQTUdkblprUlNTRlZpY2xGU0sySXZWbU5FUm1VelpXaHJWMjExTmk5blZWcDFMelJhZDBOalVHTkRSbkJ0UVhwcGNtSUtZVlJPU2tWNVNVcEdWVUZDT1V4Q2FVUkJORW80TUVnNGQwTlJOMWx6WkhFclNpOHlNRFJFYUd4WWIyOVhZMnBIWnpaUWJrNU9NM0I0VVZkTGVFRm1ZZ3BGTUhCVWRWWjBSamRsYkhVellXOTRVemh6Y2pCR1owWk1iVUpoUlZScVdrdHRjbGM1YzFod1ZFSTFZVXhZWWpKNGRuZGxXRmxwYW10aWF5dDVXalZWQ214Qk5qUmlWM2R0VG1Wc1kwVm9OSGRsUjNWT2VIVmtkMEphWWpCcFJtSlJVbGN5UVcxeGRuZExRMUJzYzFvNVlsVTNSRWN2UjBNNFNuaHNZMEZYWlVjS01Dc3plRXBOT0d0amEwRTRaM0Z1V2pSWGNXTlROalEwZFZWNFpXRm1RV1JNV0ZnelZteFZPRE16UkRKc2VrSjZLM3BKVTNob1UzUnpSRWRaY0RCMWVncEdTbk55T1ZRNVJsQjRNakZZYTFkSkx5dFZMMFZ2WTBsREsxWnFRVGsyTjFsNWQydDVNa0pETWpneVMxTk9XR2d6ZUdjNGRtb3ljVEp6TTJoMloyRTNDbWsyY1c1SlowUjRaMVV5UTJ4emNHUjBabGwwU0VwcWRVZFpSbTVaUjFaR1dWUlZTSGxKTmtaWkwzaHhXSHBXU3poS1RYVnhVVTgzYkVSSVpsbzVVRThLVW10QmRucEhLMjlyTHpCeFZrbHhSemgxTWpOamRWcEhhRGRLVldVd09YVlFSVTVhTkVGUVpYTjNhVUZ6Ym1ZM2F5czFZMnRxZDIwdlFVMU1WR2RVY3dwcGJHcHhNbGxrTTFwdVZXSkpjMUJFTUhWTUsydHJWVzlXYkZsaFdtSnBVR3BZV21kelQwZHBkVWR5WW1aVk1rVnphVGRHUzFweWNUVkdlVEZrZEhabUNqQmhaSGd4TTBGblJUUm9URmxTUTBoMWEwNVNTemsxUjAxRVpYSjNRMlZLVnl0NWFFOTZhR2xGVlhnclRGTkhlVzAyTW1WeVEzTm9UV1JYVlVvd09IY0tkR3gwY21KNGRrUTJOa3hEZVhsMVFVUjZXWGxhY1ZCNmJGZFBURXRrVlc5YVRWZFRjSGQzU0c0NU1FTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1FXZHBTVmg1YW1nMWJUQmtWSEk1Q2xad1l5OU9OQ3RvU0VSbWNFMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFuRnhTSGM0WW5CdVYzazVNalpVVVRCWEwwdDRSM1poTXpJS2JqbEdWMmR1Y0dsRFMxZDNjbFU0YVhGMGVESlNTa0U0ZFdvMWRGQk1jbFJhU1UwMVRVSjZORVZCUld4a2FXeFBlbTFGYm1wTlNHZFBObWxRY2paQ0t3cHRUMnR5WkhOUWRrVXJSR1ZUY3pSalZsVkpUVXRXTHpSQmFIRk5SVTlUV0UxamIwbHdLeXRJVmxsV1ZuRTNSM1JxYnpKTFNFNU5VWFpEZG5SMmFWbHRDbWRKSzA5eWFuSXJMMEl5ZVdGUVNHeHNiVGxGYlZaMGRIYzRVMjA1WVhOblJWRkxNMEZpVHpaT1F6SlNhbFF4YW1oR2JuSlpXbFZaWkdZNVNVbG5OMDBLZEZKeFZXSkZZbk5SWWxWTVp6bHpRM0l6TkhGdU9XdERkazFuT0VKdVNEaFBlUzl4YTJsTU5taGhWbWwzV1VGWk0xZHBXazFRWlVVeVZESTRhRTVXYlFvdllsVkhkazA1TkdKVVpUWkhXREZJYzI5R05rUlRVR1pJTDFSVmIydzFhbVUyU3pnNWRuQnFSVlp2TkVsUlNYaHpka1pRVUdGalMwVlViemgyVEdScENtbHNhbGxWZFc5NU4yRldTbGxLWTI5VFJUbHNUblkyTmpOMFRHMDFibE5XTmt0VVYwbDNXbTVwZWtsVFkyVTNRbFZUUTNGalFWb3hObEF2U0VwaVlWSUtOM1ZEWkU1U01UVldOR055V2pWYWRFZFZNRkVyZFd0R1MzTldlRU01UVhsT2ExbDRiSGhaTHpodVpHSTJiVUZsTDNac2EyMHJSSGN6TDFSNmMweEZMd3BsYTBWUFVIaFJPV0puVkRoRWMwOWhUVVkwYTFsck9EUnNhbkJaTjBObWRVUnlVbkZITVdsSWVYWjBLMDVQVUdaNE1sWXJSSGRSWkM4eVJUUkJja0Z2Q205NVZYbDVRblI2UW0xcGMxQTJjVU5sYW5OU1dXOUVabGhQY25aNmQxbDNUbTVIVERKSFNXbzFjeXN2Y0cxNlpqQnZibkJtWW1WaGQzSlhXVXhPWjFrS1lsbGhVVmRRYVRKSlYydHFibTUzVG1sRFJpdHJiMnAyVWpSU2FHZElUVzQxV1hsVFZERnFkWEJNTUd4TlZVRkpUMUpOWVRkRVNWTnZNalZqVmtGNk9RcHdZMk56UVdzMFVWQndaWHBTYzJJeldGRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zd2RmbW9raS04MWM1aG9haS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdDZsZHpibwpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdDZsZHpibwogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGUyb2F1cTJjaGhfY2xpYWtzdGVzdDZsZHpibwogIG5hbWU6IGNsaWFrc3Rlc3Q2bGR6Ym8KY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0NmxkemJvCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGUyb2F1cTJjaGhfY2xpYWtzdGVzdDZsZHpibwogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVcGxhVlZMUTNaVVoyczFRWGQzUTJ4WU5HUlJlV3QzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFSVEJOYWtGNlRXcEplRmRvWTA1TmFsVjNUbXBGTUUxcVFUQk5ha2w0VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJOeTl0UTIxbFNVOVBVV05LVUZwRVltSnJaSFVLUzA1VGFtUkVZbHAwVGsxSVJ6TjRWMjkzTjJFMVdXNDVSRTFJZDBKTFVWWnRNbEJQYjBFdlVqTTNTak5WZDIwdmQwTnRNSGx5U1VadUx6bE5iWEp1U3dwNmFXNUVTbWhyYVZaUFVYZDRVMjVPUldZeFZqWXlhVVEwVUVzNWVUSTJhV05HTURRM1dVOXhNV3N5Wm5CTFVFVTVTSFZ0VEZWM1VIY3lSVTh5YUV0UkNtRnFjV1JFU3pkU2RDdFliV2hKTm5vMllYTnpNVzB3UTA1WlJsbG1VbkJxYVZKTFpGaG1lV3d6VFhSbmRqQXJSVkkwU1daaWVGVXhPVk56YlVNek9YVUtORXRVUmpsQ1ZFTnZZbG96YkRsU01sWllUekJ0UkROTVpIUndWelpwWTFobk1HMTNTMmd6VGpOUlZtczJWbGRVUkVNclduWlFNWFo2Y1VGYVZUSnpXUXAzTjJ4dlozRmtibXRvWVZaNWRrWlpTemRMUWtsQlRVdzBiVTFOZFRoUU1FRjJTMFoxTWpGUmRHTlFaM3BWT1ZkelVtbHVlRWh4WTNOV1VFMVNTVlp0Q210aVVWbFhhR0l3VFZwTlkxaHFNekp0Y2s1R0wwVnllVFZWV1hWa2NXZHhRalo1VFRkQ1NUaHNka042TW1GVGQwRXZlVmhRYVZwTWF6TkNVbUpIU2xJS05HMTFRVXB2WkRaclFYVk5aMnhKY2pjMk1XMTZjMWxoVkZWcmMzZGtXRkZRWVRGMWVGQmxjMkZCTnk5WFlsSnVNVEZWTURSU1QydFNjRXRxYWpONWFRcFlkR3hJYlhsSVFrSjRkekJtZURkM1VVaFBPV0pLTTFnMVVsWlpaVkJQYUVwVE5Fa3dMeXR4ZFdWdGMybG5aMUZ5WkVKdU5EaGtSblZSZDB0dmVVOXVDbkZwT0UxRmJqVXphMHM1YVZacWFtNWFkSGxCYmtScmJWWnhWbVE0VTBwUVVFZExOREpIYlhSU2MwUnlXSFEyVkZORE1tNUlOSEp4VFVSTll6aHBTREFLZVU1NWVYTlNlblJRTWxodlkyMTBRbEEyVkdoeVpWaFZiV05CVjJkVU1GVTNlSFJoVG1SSlUzWkhOME5IWTBKU1dqUkJTRVpFUldSek1qbElUSFF6S3dwb1pVcG5XVmR1U25kWGRGQmtTRmd3WkVjdlFUVXhPRU5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZRME5KYUdaTFQwZ0tiV0pTTVU5Mk1WZHNlamd6YWpaRlkwNHJhM2RFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJTMUZWZVRGNk56WkdTMjlsWlRGWVpXdEdaQXBzYWxGTFVuUlBVak5uYlUxSk9FRTFValZUUTJZM1VYb3JSWGxyT1N0blpqQmxSak56UW10WU4wOUhMM1IzYWtVMU1FZHlla3RCY3pSdFZGVmllblZEQ2xGeGMxUkRkVEZRVDJKSVF6QlJRbmg1WlRGSFYwOVRTRFJ3WmpoMmFqRkdiM1pwTDA5S2VVYzVRVnBFTlZoU1lWVm1SVko1YkdOT2QySkRjRGw2YW5JS1lUaHVRMWxGTlRWYVlsbHRPRXR5YUZWTVIxRTNkWGhVTlVsS1IzZDRObEVyVWpneFpEVXlkMEpXTDFSeldYWlNXSEl6U0Zkak9FNVFVMHh3Wm5ndmJRcDZWalZZZFhoclVXZHZaWFUxT1dWUFRURTJUR3hTT1hNeVMyZFRjM2swU3k5UFR6aDNhMDl5ZVdwRGNFTldPUzluU0dscWJGQkNjbm8xVWs5NFR6aDVDamhKTkdwdFoyRmhlRU5vVDNCaFJEY3phRzFJWldJNWFXSkdlRlZQTTFKUGJFSm5ZblJNWkRObmNuZzBSbGR3TWs5WFJGY3dhR0Z3VFdSb2NGTmhZM2NLYTB0TVdFWlpkRUZPVG5sWk9ERXpkMFFyZUVwR1RVNHJNMnhhV1hremRtOTRjR3BPVldzNGVsTkNielZvTms5cWQzVkVlRk5USzBwdWJ6STVUV1ozS3dwUWVFOWxSREJqVkVVeVp6ZFVhbGM0TWxvMlp6QXpZa3RNYldKdlpHOWtUbTUxTkZwYWNTODBiRmN6Tm5RME5VOW1XRTV6U0ZkcmNEaDFXSHA0T1VoT0NqVnVSbTVaVDBWcE1GVjViamhUZDNCRmVDdEZaRTl6VUVkdVVqbFZSU3N5TTFCNGRIWktRMHhEYWt0R1RVMHpka05zVTJvd1kzSm5VemxsZUdKUlZIVUtSbWxXTldGc05EQXZVVFJ6V0dSRU5tNUtjelpSV1dSU00wcFdZVlpuYkhCSVkyVlNjbEJ1UWpsUmJURmhNRXBLZVc1b1pYcElkbm81YURsaU9VNVdSZ3B6VGtZd2VHZG5iMGxCVTBST1dYazBRVzVJZDNocmRXbDZTMGc0YjFaYWF5OVRNbWRCVmxOaWFUTkdSVmxKWTFwRFZVa3pkRFZzVkVaUmNuZEVTV0p2Q2xKbVp6WkZUVXRVYTBZd04zUkVOVFZRUTJsa1VUZ3lMd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJOeTl0UTIxbFNVOVBVV05LVUZwRVltSnJaSFZMVGxOcVpFUmlXblJPVFVoSE0zaFhiM2MzWVRWWmJqbEVUVWgzQ2tKTFVWWnRNbEJQYjBFdlVqTTNTak5WZDIwdmQwTnRNSGx5U1VadUx6bE5iWEp1UzNwcGJrUkthR3RwVms5UmQzaFRiazVGWmpGV05qSnBSRFJRU3prS2VUSTJhV05HTURRM1dVOXhNV3N5Wm5CTFVFVTVTSFZ0VEZWM1VIY3lSVTh5YUV0UllXcHhaRVJMTjFKMEsxaHRhRWsyZWpaaGMzTXhiVEJEVGxsR1dRcG1VbkJxYVZKTFpGaG1lV3d6VFhSbmRqQXJSVkkwU1daaWVGVXhPVk56YlVNek9YVTBTMVJHT1VKVVEyOWlXak5zT1ZJeVZsaFBNRzFFTTB4a2RIQlhDalpwWTFobk1HMTNTMmd6VGpOUlZtczJWbGRVUkVNclduWlFNWFo2Y1VGYVZUSnpXWGMzYkc5bmNXUnVhMmhoVm5sMlJsbExOMHRDU1VGTlREUnRUVTBLZFRoUU1FRjJTMFoxTWpGUmRHTlFaM3BWT1ZkelVtbHVlRWh4WTNOV1VFMVNTVlp0YTJKUldWZG9ZakJOV2sxaldHb3pNbTF5VGtZdlJYSjVOVlZaZFFwa2NXZHhRalo1VFRkQ1NUaHNka042TW1GVGQwRXZlVmhRYVZwTWF6TkNVbUpIU2xJMGJYVkJTbTlrTm10QmRVMW5iRWx5TnpZeGJYcHpXV0ZVVld0ekNuZGtXRkZRWVRGMWVGQmxjMkZCTnk5WFlsSnVNVEZWTURSU1QydFNjRXRxYWpONWFWaDBiRWh0ZVVoQ1FuaDNNR1o0TjNkUlNFODVZa296V0RWU1Zsa0taVkJQYUVwVE5Fa3dMeXR4ZFdWdGMybG5aMUZ5WkVKdU5EaGtSblZSZDB0dmVVOXVjV2s0VFVWdU5UTnJTemxwVm1wcWJscDBlVUZ1Ukd0dFZuRldaQW80VTBwUVVFZExOREpIYlhSU2MwUnlXSFEyVkZORE1tNUlOSEp4VFVSTll6aHBTREI1VG5sNWMxSjZkRkF5V0c5amJYUkNVRFpVYUhKbFdGVnRZMEZYQ21kVU1GVTNlSFJoVG1SSlUzWkhOME5IWTBKU1dqUkJTRVpFUldSek1qbElUSFF6SzJobFNtZFpWMjVLZDFkMFVHUklXREJrUnk5Qk5URTRRMEYzUlVFS1FWRkxRMEZuUVdkelpYcDVWRVpPUm5ZNGFYQm5OaTk0TUZobFdIaHZhbE5xTlhGUWQxZFRjR2RSU2tsNWQwSldNemQzUkZobVZESnVUMmcwZFVaMGVBcG5WbHBHTVZGdVpUTlhaM0p3VlUxR2FuTlhibUVyUVdwQlNXTTJSMWxUUjBRd2VWaEtiRkJwZFZCU1FYSkVVbXhyTWt4TldtbFpibkpzV1doWGQwbHFDbXRvYmxobmRFaHhWelJ0T1VOWkt6Rm5hbEoyYlZONWRERXpUMjVzV0RkTFQwcE9TVXNyUjBKVkwxQTVUbEkwZUhoTU5WWlVaRGhvYUVaUWJGaEJlbTBLZG10S1Z6RTNja0owWmtzcmVqSkxOaTl5WmxGU1IxY3hhMVpKYnpsNWIyeFFRMHhqV2pSRVduaGpLM1JwYzNOcVNuVkJkWFpGWVRGT2EyaEZNR1ZvV0Fwb1MwbEZjQzlTT0hWbVZVUTFkMUpoVGtkc2ExUklia2N6VFU5T0wzaG1XRWhVYmtkT1NpdEtLeXRJV1dGclUyWmxUM0pKYlVabmJYbFBZbGs0TDFBeUNtVnJiRko1YmswMVdtTk1XVGxDVUM5a0wydGlVeXRDTjNkWVZXTjRNRGRHVldwb2QxZDFOVGtyVG1GQ1ZIVkhOa1l5ZEdOeWFIbEtNa0ZRTldkMGVpOEtPVXhMU2sxeVQxWk1ablpRVG1wMVEwNVpTVVYxU1N0TFJXWkljRTQ1UW5WaWJteDFkVEV2V21WNVVYRkRaVmRsVGpCM1N6Vnpia1JYZVUxVU1WQTBid3BpU0ZFMGVVMXJOazVGVUVkTVVGTlBjVWRRVVZFd2FESTRZbFZoVjBwMVlqSTBRemQzTVRWdFVFcE5SMjlpZEVGWU5UQlFNbFkxYkc5dmEwVndlblpVQ2taWmFYRlZZVE5sUzNoTU1YSkpPWGNyZUZoVU5XdDVaVkJwUkVwSVdITjFTMDB6WW1NeFVtUXZNVTVuY1c5eU5XcDNWRGxhWm5sTVIyMXZaMEpJUmxvS1VucEdVMmRxVEhSVFpXTnFlRWRKY0VVeGVtdG9PVEZwUkRReU4yVm5SVWcwZGl0eFQzQnlXR1J3ZDFsYVNWVTRRa2dyWm5Oa1ZuVXlNWEZMYzJFd1NRcGhaWEpxVTFwMmMzUnNiVU5rTTA1VlkxWkxSbmxqUTFFM1ZXdDNkMFpDYlhFMFRWcFliWFpCWm5CMFlWVXZkVmxyVVV0RFFWRkZRUzlrZUZGRk5tbFhDbkZ1YWl0blJESlJRV0ppYnlzeVpqRlFRMk5tVERkVVpVRmtNMkoyY2k4NE1rVjZlbVpaYTJKSEx5OWFTWHBLZFRrM1ZsTnROWFphU0hKdk1XbG1kMk1LS3pKV1pWbDVZbXBvVmxsR1NFUkZWVkJtTkc1QllVMVFWM2xQVWxjMU5HVklLMHhxWTJwVFRHUmhXRWgwTW13eVNXOHlPRlJtTjNwU1NqWnpjM05UY3dwMFprUkxhMFJCYm1sd2FVTlpZMUZCY0dwR05FWlpjSFJLTWxZdlpISlRUV0pYZFZoall6SkZSVzEzYUZOaGJUZFpZMVF2Y1hoWWR6bHJSa2hTVW5WeUNtOUdNV3hvZHpWMFZXTkJha2RaTUV0U2Qza3pVa1JEU3k5UlJVOHZaVmhzTWxrdmVYbG1UM1JSVUV4ME5reHpUREZMUVZOeVNEY3lNa1pzVjBoV2NWQUtjV3d3YVZSMmFGaHplRUpKWjBkdFJYZGtiamxaVVVsdGFtZDJjRGhyU21GWGRpdERTVEpUVW1vMVZtOUdjRWxFUWk4eldTdE1SRlZzVGtjMlV6VlBkUXBuWVZkcFdWWTRUMFJoYXpGa2QwdERRVkZGUVRobU9EbFNjbFF3UVdGVGVVVjBlR3BqYkRSeFFUTTNTRk5PTlZGME5VVm9Wa0ZpVGtWMFNVUjRUR1kzQ204NFJUZzRSRzFUVm5kTE0wdFpRVVJ0V2xkRk5rTlpPVXMzWTBOMlRGSnViVXh6TTB0VFRHZE1RemRWVmtORk1ra3ZVbFE1YzJORmIxTjBZVzV5T1VJS1EwTlRZWFZoYjBFd1pHOVFhMVp1WVd0M1RreEZOVmxIU3pKMU4wZHJSVVpvYWt4NVNqWXlaRVJ4WVdzeUszWjRSMk5OYW1WbGFYTTBlbXhWUjBWWll3b3lWMEp4UlVkb09UZEtTREEwTWxoU09VRXlSVXhITURWS1l6UmpaVlF2UzNGR2FrbzFUVzE2ZDFWclVUUkxabGRaWWpFNGRHODNMMGQzV25aRVZsWk9Da3BzZFRRdlJFRnVRMmRDWVhsMmNtRnFkR0l3YjFWalNuWnlVa2xMY1ZGT2QxQlFkRWhqWm1OeVNFbGFlUzlJU0d4bVdsaFFWWFJDVG1SRk1XSkVkRW9LVkdvNFowdDVjbFZwWjNZeFZXUjJLM1J0ZURCblluWkJhbE5VT1ZadGFGY3pNV2s0UjFWV00xZFJTME5CVVVWQk56VXdZa1JIVFhSNWVubHVXa0kwTXdwd2FHRnBkRWRKT0hKSmJEQjFNQzl3TWxSTmVUZHJjRU1yTVhOMU0xRm5hbmxZY213eGJqUk9SbU40Vm1FNFJtWXpPSFk1UzNkQlNIcDRZWGRVT0VKMUNrMTJWM1J1ZURKSlRVeGxTekE1VnpSalpITlNiMkoxVDFSaFUxZzRUREFyUVZVM05GRjBkazVuVUVoMGEyMVZXamd5VVdWUFEweENjbTR6V1doT05tWUtRa0ZtVGpCVUwzcExUM00yYjBsS2JsbDVPQzlpTm10a1pqQTFNWGhTYjNGR2ExWjJObWh5UjFod1RsZHBORTFNVkZSVWVXTXpNbHB6Y1ZaV1dtNVJjd3B3VjFKSkwxSTBUMWhHTDFwUlFXcGtkRGc1WlN0cVNXTnJVVEUxUzJwMlUwSmhUVWhCYjNoRGNqTkNhMFFyVGt4V1dYbEdXblpIU3preFFYWlRVVVJLQ25Kd0syOHZNbEZhZUdWMlptRk5hR2cwWlZCSE4zbzNTVVZIY0hCNVRWSjBWRWQ2UjNOaU9HbEZNVWc0YTFWbkwySjZWRU4wWjBaM1ZISnJjbTExVEdjS00yVTBaMGwzUzBOQlVVVkJaM2xRV2xablltSnpSVkpNUWk5UFRYQk1ObTl5SzI4eFNIRlVlbEYyWTFGQk5WRklOeXR2Um1oeldscFNUREpGVVRNMEx3cGpiekpVUzNCamJqTkZVSFJ0VlhsWWJUWm1ObWRNTmxjMFYzRmlSWFI2UjJSTmMxQXpNazQ0Ukc1SWNWTnVTa0ppVVVkelozaHBUSEZzYTBSNlFtUXpDbWxGUms5aVIzTjNRM0pyWmtvd1kwZHZkVTF1Y1hGMVVIcGtRM1kzTldGcE5WQjVhbTVHV1RRcmMyZElOSEJ0V0dwNU9WUkNha05CYXpoQmRUSnBUaklLUldkNGNXeEJlSEZuV1VsT2JsaEhNMHBYYVZSbU5WWXhVV3hQVkZoVWREbEJVVXRUWkdSM1pWUnBjemhsVlZneWMzWlBRMjVOZDJOSFpYaGplVGRXWndwbmIyWTRjVGhFVkZSa1RIQkZUR3RLWVN0SlVYUmhUR1p1VXk5VE1FY3JkR2N6YmpGNGRFdEpXVkpxTURNNE9UTlZRek5IWTBwbFZVOTVXREJVWkVKU0NrTXhiemx2UWxoRE5qWk1UVnBFTWxaMFEyUlhZbXQyZFhZcmR6ZFRjM0ZrVTFGTFEwRlJRVlphYmxCRlpXVkdXVk5GZFVwS1dVZ3pkelJDZEVOVmFFY0tObkFyUTNCdk5rMUJjRUZ0VGpOaU1Fa3laMDFWTVRWVVNUTkNSRGxWVnpOMWVGRjNNVFI1T0dGcU0xZDZaVFJZWVdkWE16VlFVMDlvWlRSTmVYVjFVQXBaY1djeEwxb3hkSFZGVDBvNU5rd3ZTVkZ5ZVhsUVV6UTBabWN4Y2xaV04xTmtlakJWVDJ4dFVucDFiM1IzVG5oS1NUWnlWVzluWW5SUlJtUkNTRWw1Q2xGSlRXdG9hREpGV1RkRmJDdE9abTltU1RCUmNsYzJjbUp3U0dOVFVFRjNiVWhYVFZWeVZUSlJVRVZxY0V0TGRGcENibTlqUkVKNFNsaGlhM2hoTm04S09YcElaMUoxWmxRekwyNU1WRkZLUm1OcU9GbDFjRkZ0U0c1RVNDOHlOaXRSWTFsVFVGaEhVQ3RVT0hoQ1IydE1NMkkwVDNOTVpuWnZSMjQxTlUwNVFncExkSE55V1VGUVJ6UktTMVZSZFVJeEsyaEVja1ZDTWs0NE5YWXlaRVpWV1ZWMU1VOUlaa2h0U2t0NE9WZzJRakU0V2tNNVZEaEZLMVF3TUVNS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiAybzJqejl2cGQxZGJpdGMxYm96ang3cGh6ZnhyaWZoY285YWF3bzk2amlhdTl5Y2J0d3ZwY3EyZ2JyMG8xa3IxdW1uNnVlNXV4bGRqaTQ2OWRkZXF1OXptaDIzOGhqaTI5dGN2MmhyNnlxbHZxaXh3aDg3Nml5amVxc2hnNTJnego=\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13096' + - '13084' content-type: - application/json date: - - Wed, 15 Mar 2023 10:11:25 GMT + - Wed, 14 Jun 2023 20:45:05 GMT expires: - '-1' pragma: @@ -977,62 +985,63 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-rwqu7tp1.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-rwqu7tp1.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 100,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"tag1\": - \"tv1\",\n \"tag2\": \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": - \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"adminuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/0f5437e0-2f0b-40db-b582-539ad130287b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-81c5hoai.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-81c5hoai.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 100,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\ + \n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"adminuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/52db1660-5223-498f-8bea-636e508940a5\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3495' + - '3823' content-type: - application/json date: - - Wed, 15 Mar 2023 10:11:25 GMT + - Wed, 14 Jun 2023 20:45:06 GMT expires: - '-1' pragma: @@ -1051,24 +1060,23 @@ interactions: code: 200 message: OK - request: - body: '{"tags": {"key1": "value1"}, "location": "westus2", "sku": {"name": "Basic", - "tier": "Free"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": + body: '{"tags": {"key1": "value1"}, "location": "westus2", "sku": {"name": "Base", + "tier": "Free"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 100, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": - "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.24.9", + "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "tags": {"tag1": "tv1", "tag2": "tv2"}, "nodeLabels": {"label1": "value1", "label2": "value2"}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "adminuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, - "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", - "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/0f5437e0-2f0b-40db-b582-539ad130287b"}]}, + "adminuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": + "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": true, "supportPlan": + "KubernetesOfficial", "networkProfile": {"networkPlugin": "kubenet", "podCidr": + "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": + {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/52db1660-5223-498f-8bea-636e508940a5"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": @@ -1083,70 +1091,71 @@ interactions: Connection: - keep-alive Content-Length: - - '2224' + - '2552' Content-Type: - application/json ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-rwqu7tp1.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-rwqu7tp1.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 100,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"tag1\": - \"tv1\",\n \"tag2\": \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": - \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"adminuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/0f5437e0-2f0b-40db-b582-539ad130287b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-81c5hoai.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-81c5hoai.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 100,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\ + \n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"adminuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/52db1660-5223-498f-8bea-636e508940a5\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cef09c13-a0ee-42ee-8864-9af48ec964e9?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be152709-a77b-46a3-bf85-9cb231dbe21e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3493' + - '3821' content-type: - application/json date: - - Wed, 15 Mar 2023 10:11:28 GMT + - Wed, 14 Jun 2023 20:45:13 GMT expires: - '-1' pragma: @@ -1162,55 +1171,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks scale - Connection: - - keep-alive - ParameterSetName: - - -g -n --node-count - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cef09c13-a0ee-42ee-8864-9af48ec964e9?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"139cf0ce-eea0-ee42-8864-9af48ec964e9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:11:29.4634348Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:11:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff + - '1199' status: code: 200 message: OK @@ -1228,14 +1189,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cef09c13-a0ee-42ee-8864-9af48ec964e9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be152709-a77b-46a3-bf85-9cb231dbe21e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"139cf0ce-eea0-ee42-8864-9af48ec964e9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:11:29.4634348Z\"\n }" + string: "{\n \"name\": \"092715be-7ba7-a346-bf85-9cb231dbe21e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:45:13.6190673Z\"\n }" headers: cache-control: - no-cache @@ -1244,7 +1205,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:29 GMT + - Wed, 14 Jun 2023 20:45:14 GMT expires: - '-1' pragma: @@ -1276,14 +1237,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cef09c13-a0ee-42ee-8864-9af48ec964e9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be152709-a77b-46a3-bf85-9cb231dbe21e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"139cf0ce-eea0-ee42-8864-9af48ec964e9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:11:29.4634348Z\"\n }" + string: "{\n \"name\": \"092715be-7ba7-a346-bf85-9cb231dbe21e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:45:13.6190673Z\"\n }" headers: cache-control: - no-cache @@ -1292,7 +1253,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:59 GMT + - Wed, 14 Jun 2023 20:45:44 GMT expires: - '-1' pragma: @@ -1324,14 +1285,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cef09c13-a0ee-42ee-8864-9af48ec964e9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be152709-a77b-46a3-bf85-9cb231dbe21e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"139cf0ce-eea0-ee42-8864-9af48ec964e9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:11:29.4634348Z\"\n }" + string: "{\n \"name\": \"092715be-7ba7-a346-bf85-9cb231dbe21e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:45:13.6190673Z\"\n }" headers: cache-control: - no-cache @@ -1340,7 +1301,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:13:29 GMT + - Wed, 14 Jun 2023 20:46:14 GMT expires: - '-1' pragma: @@ -1372,14 +1333,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cef09c13-a0ee-42ee-8864-9af48ec964e9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be152709-a77b-46a3-bf85-9cb231dbe21e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"139cf0ce-eea0-ee42-8864-9af48ec964e9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:11:29.4634348Z\"\n }" + string: "{\n \"name\": \"092715be-7ba7-a346-bf85-9cb231dbe21e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:45:13.6190673Z\"\n }" headers: cache-control: - no-cache @@ -1388,7 +1349,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:14:00 GMT + - Wed, 14 Jun 2023 20:46:44 GMT expires: - '-1' pragma: @@ -1420,14 +1381,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cef09c13-a0ee-42ee-8864-9af48ec964e9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be152709-a77b-46a3-bf85-9cb231dbe21e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"139cf0ce-eea0-ee42-8864-9af48ec964e9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:11:29.4634348Z\"\n }" + string: "{\n \"name\": \"092715be-7ba7-a346-bf85-9cb231dbe21e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:45:13.6190673Z\"\n }" headers: cache-control: - no-cache @@ -1436,7 +1397,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:14:29 GMT + - Wed, 14 Jun 2023 20:47:15 GMT expires: - '-1' pragma: @@ -1468,15 +1429,15 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cef09c13-a0ee-42ee-8864-9af48ec964e9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be152709-a77b-46a3-bf85-9cb231dbe21e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"139cf0ce-eea0-ee42-8864-9af48ec964e9\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:11:29.4634348Z\",\n \"endTime\": - \"2023-03-15T10:14:38.8285635Z\"\n }" + string: "{\n \"name\": \"092715be-7ba7-a346-bf85-9cb231dbe21e\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T20:45:13.6190673Z\",\n \"\ + endTime\": \"2023-06-14T20:47:40.9906273Z\"\n }" headers: cache-control: - no-cache @@ -1485,7 +1446,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:15:00 GMT + - Wed, 14 Jun 2023 20:47:45 GMT expires: - '-1' pragma: @@ -1517,62 +1478,63 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-rwqu7tp1.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-rwqu7tp1.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 100,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"tag1\": - \"tv1\",\n \"tag2\": \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": - \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"adminuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/0f5437e0-2f0b-40db-b582-539ad130287b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-81c5hoai.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-81c5hoai.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 100,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\ + \n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"adminuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/52db1660-5223-498f-8bea-636e508940a5\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3495' + - '3823' content-type: - application/json date: - - Wed, 15 Mar 2023 10:15:00 GMT + - Wed, 14 Jun 2023 20:47:46 GMT expires: - '-1' pragma: @@ -1604,62 +1566,63 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-rwqu7tp1.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-rwqu7tp1.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 100,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"tag1\": - \"tv1\",\n \"tag2\": \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": - \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"adminuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/0f5437e0-2f0b-40db-b582-539ad130287b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-81c5hoai.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-81c5hoai.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 100,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\ + \n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"adminuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/52db1660-5223-498f-8bea-636e508940a5\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3495' + - '3823' content-type: - application/json date: - - Wed, 15 Mar 2023 10:15:02 GMT + - Wed, 14 Jun 2023 20:47:48 GMT expires: - '-1' pragma: @@ -1693,8 +1656,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -1702,17 +1665,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed602fb5-6067-4582-affe-caf296eb39fd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/51625b28-1e84-4ca1-99d8-67b36cb9682e?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:15:02 GMT + - Wed, 14 Jun 2023 20:47:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/ed602fb5-6067-4582-affe-caf296eb39fd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/51625b28-1e84-4ca1-99d8-67b36cb9682e?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_msi.yaml old mode 100755 new mode 100644 index 758ff509213..f6d1e9630ba --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_msi.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --tags --nodepool-labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 09:56:27 GMT + - Wed, 14 Jun 2023 20:47:56 GMT expires: - '-1' pragma: @@ -55,12 +55,11 @@ interactions: -1.0, "nodeLabels": {"label1": "value1", "label2": "value2"}, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -71,70 +70,71 @@ interactions: Connection: - keep-alive Content-Length: - - '1524' + - '1816' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --tags --nodepool-labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-nlh7y6f3.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-nlh7y6f3.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n - \ \"label1\": \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": - \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-8a577wh4.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-8a577wh4.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3f4d0e84-44cf-401e-8828-1cba6fa91ee9?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47b45d38-b50c-4d7b-af1b-fdd7e1bf9568?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3328' + - '3656' content-type: - application/json date: - - Wed, 15 Mar 2023 09:56:31 GMT + - Wed, 14 Jun 2023 20:48:02 GMT expires: - '-1' pragma: @@ -165,14 +165,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --tags --nodepool-labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3f4d0e84-44cf-401e-8828-1cba6fa91ee9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47b45d38-b50c-4d7b-af1b-fdd7e1bf9568?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"840e4d3f-cf44-1e40-8828-1cba6fa91ee9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:31.0535916Z\"\n }" + string: "{\n \"name\": \"385db447-0cb5-7b4d-af1b-fdd7e1bf9568\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:48:02.7132093Z\"\n }" headers: cache-control: - no-cache @@ -181,7 +181,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:57:00 GMT + - Wed, 14 Jun 2023 20:48:03 GMT expires: - '-1' pragma: @@ -214,14 +214,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --tags --nodepool-labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3f4d0e84-44cf-401e-8828-1cba6fa91ee9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47b45d38-b50c-4d7b-af1b-fdd7e1bf9568?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"840e4d3f-cf44-1e40-8828-1cba6fa91ee9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:31.0535916Z\"\n }" + string: "{\n \"name\": \"385db447-0cb5-7b4d-af1b-fdd7e1bf9568\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:48:02.7132093Z\"\n }" headers: cache-control: - no-cache @@ -230,7 +230,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:57:31 GMT + - Wed, 14 Jun 2023 20:48:34 GMT expires: - '-1' pragma: @@ -263,14 +263,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --tags --nodepool-labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3f4d0e84-44cf-401e-8828-1cba6fa91ee9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47b45d38-b50c-4d7b-af1b-fdd7e1bf9568?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"840e4d3f-cf44-1e40-8828-1cba6fa91ee9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:31.0535916Z\"\n }" + string: "{\n \"name\": \"385db447-0cb5-7b4d-af1b-fdd7e1bf9568\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:48:02.7132093Z\"\n }" headers: cache-control: - no-cache @@ -279,7 +279,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:58:00 GMT + - Wed, 14 Jun 2023 20:49:03 GMT expires: - '-1' pragma: @@ -312,14 +312,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --tags --nodepool-labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3f4d0e84-44cf-401e-8828-1cba6fa91ee9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47b45d38-b50c-4d7b-af1b-fdd7e1bf9568?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"840e4d3f-cf44-1e40-8828-1cba6fa91ee9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:31.0535916Z\"\n }" + string: "{\n \"name\": \"385db447-0cb5-7b4d-af1b-fdd7e1bf9568\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:48:02.7132093Z\"\n }" headers: cache-control: - no-cache @@ -328,7 +328,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:58:31 GMT + - Wed, 14 Jun 2023 20:49:33 GMT expires: - '-1' pragma: @@ -361,14 +361,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --tags --nodepool-labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3f4d0e84-44cf-401e-8828-1cba6fa91ee9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47b45d38-b50c-4d7b-af1b-fdd7e1bf9568?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"840e4d3f-cf44-1e40-8828-1cba6fa91ee9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:31.0535916Z\"\n }" + string: "{\n \"name\": \"385db447-0cb5-7b4d-af1b-fdd7e1bf9568\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:48:02.7132093Z\"\n }" headers: cache-control: - no-cache @@ -377,7 +377,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:59:00 GMT + - Wed, 14 Jun 2023 20:50:04 GMT expires: - '-1' pragma: @@ -410,14 +410,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --tags --nodepool-labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3f4d0e84-44cf-401e-8828-1cba6fa91ee9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47b45d38-b50c-4d7b-af1b-fdd7e1bf9568?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"840e4d3f-cf44-1e40-8828-1cba6fa91ee9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:31.0535916Z\"\n }" + string: "{\n \"name\": \"385db447-0cb5-7b4d-af1b-fdd7e1bf9568\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:48:02.7132093Z\"\n }" headers: cache-control: - no-cache @@ -426,7 +426,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 09:59:31 GMT + - Wed, 14 Jun 2023 20:50:34 GMT expires: - '-1' pragma: @@ -459,14 +459,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --tags --nodepool-labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3f4d0e84-44cf-401e-8828-1cba6fa91ee9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47b45d38-b50c-4d7b-af1b-fdd7e1bf9568?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"840e4d3f-cf44-1e40-8828-1cba6fa91ee9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:31.0535916Z\"\n }" + string: "{\n \"name\": \"385db447-0cb5-7b4d-af1b-fdd7e1bf9568\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:48:02.7132093Z\"\n }" headers: cache-control: - no-cache @@ -475,7 +475,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:00 GMT + - Wed, 14 Jun 2023 20:51:04 GMT expires: - '-1' pragma: @@ -508,15 +508,15 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --tags --nodepool-labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3f4d0e84-44cf-401e-8828-1cba6fa91ee9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47b45d38-b50c-4d7b-af1b-fdd7e1bf9568?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"840e4d3f-cf44-1e40-8828-1cba6fa91ee9\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T09:56:31.0535916Z\",\n \"endTime\": - \"2023-03-15T10:00:16.6578041Z\"\n }" + string: "{\n \"name\": \"385db447-0cb5-7b4d-af1b-fdd7e1bf9568\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T20:48:02.7132093Z\",\n \"\ + endTime\": \"2023-06-14T20:51:25.2779665Z\"\n }" headers: cache-control: - no-cache @@ -525,7 +525,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:31 GMT + - Wed, 14 Jun 2023 20:51:34 GMT expires: - '-1' pragma: @@ -558,66 +558,67 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --tags --nodepool-labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-nlh7y6f3.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-nlh7y6f3.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n - \ \"label1\": \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": - \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/adb655ac-9d55-48da-9ac9-7c7b55c09a31\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-8a577wh4.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-8a577wh4.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7a1b08b3-3453-4b93-bbcc-2a52b7ea0f2c\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3981' + - '4309' content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:31 GMT + - Wed, 14 Jun 2023 20:51:36 GMT expires: - '-1' pragma: @@ -649,67 +650,72 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-nlh7y6f3.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-nlh7y6f3.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"label2\": - \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n - \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/adb655ac-9d55-48da-9ac9-7c7b55c09a31\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"tags\": {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \ + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\"\ + : \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\"\ + : \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8a577wh4.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-8a577wh4.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\"\ + : {\n \"label1\": \"value1\",\n \"label2\": \"value2\"\n \ + \ },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\":\ + \ false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\"\ + ,\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7a1b08b3-3453-4b93-bbcc-2a52b7ea0f2c\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ + : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \ + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \ + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n\ + \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n \ + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '4262' + - '4590' content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:32 GMT + - Wed, 14 Jun 2023 20:51:37 GMT expires: - '-1' pragma: @@ -741,67 +747,72 @@ interactions: ParameterSetName: - -g -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-nlh7y6f3.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-nlh7y6f3.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"label2\": - \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n - \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/adb655ac-9d55-48da-9ac9-7c7b55c09a31\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"tags\": {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \ + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\"\ + : \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\"\ + : \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8a577wh4.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-8a577wh4.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\"\ + : {\n \"label1\": \"value1\",\n \"label2\": \"value2\"\n \ + \ },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\":\ + \ false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\"\ + ,\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7a1b08b3-3453-4b93-bbcc-2a52b7ea0f2c\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ + : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \ + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \ + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n\ + \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n \ + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '4262' + - '4590' content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:33 GMT + - Wed, 14 Jun 2023 20:51:38 GMT expires: - '-1' pragma: @@ -833,66 +844,67 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-nlh7y6f3.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-nlh7y6f3.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n - \ \"label1\": \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": - \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/adb655ac-9d55-48da-9ac9-7c7b55c09a31\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-8a577wh4.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-8a577wh4.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7a1b08b3-3453-4b93-bbcc-2a52b7ea0f2c\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3981' + - '4309' content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:33 GMT + - Wed, 14 Jun 2023 20:51:40 GMT expires: - '-1' pragma: @@ -926,15 +938,15 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSU25WMlVETmlSMDB4VFVKUGRYcDNhRnB3TXpad1ZFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCZWsxVVZYZFBWRkV6VFhwR1lVZEJPSGxOUkZWNlRVUk5lRTVVUVRWT1ZHTjZUVlp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVNekNsZGtiR2R1YmpKbmRDdHRjR2hIUm5OVFluVXhkR0ZpU2xOd1ZHdzFPVFJtZWtoSFMzVlBjRkZYV214TlVGZGxUVlp6VmpsTlFrOW1Ua1JhZFZoa1NGY0tZVFZrZUhGRGJIWmhPSGs0WmpGWVRXVkJkaTlUYVV4VlRIQlZhVkpEUVVGb2FtVXZlV1pYZDBGWVVESkVka1k0YTFaNFQxaEJjVzVtZWtaYVEwbHpkd3BJV1VOeEt6WXJRMWhYVnpWdWRHWlhjRzlaVWtJMVFVcEVjRzU2ZGk5aVVWWk9jR1ZaUTNCTGRVczRVVTR5V2pOWFVGRkdZbWswTVdoMlpEUnpabTlrQ205SFNXWmFMMlJITDBObFJFczFTM2RWT0VKaFZXTk1iVkJOYlVaQmJXRnFVVGhoV1haVU4yaFNVblI1Y1hKeVl6WlRTblZ4UTFONk5qSkJTVXRxUlhRS1FXZDVOMDE1Ymk4eFJsZHNTVUZsVWxWbFQzVXpRWE5KY0hsVmJUQjZSSE5EVFV0RlJXcHRMMlZaUlVWS1pYWTNTR2h1ZWxaeU5WSldTVTlXTmsxM013cG5OMFJLTTNKM1YzaHFTRVl5UzJOUmIzQnBXRFVyWlVSc1dXOXBlWEZtZUhWamNGZHhPVU5rVEdSWlFpOUlSVTlCWm5JMVNteHlUM2dyVjNKamFUSmlDbXB6VEZrMVVEZ3pTbmhvUlhSQ2Fpc3lXVmxaTlhFMUwxY3hVbFJJYkhBNWVIVXZWbWRrVlVkWldHRnZWekl4WlhKUlpUVktWeXRrUlhSalVrMUVLekFLVkdGdVRrOWtWa3BJUmxRd1lrMWhTa2RhWW01VmFVSTViMmx0YUVSMk5qZDRjbFkxVVU1UU0wbFZVbUpZVG5GeVVEZG9WaTl4Ym14eFVYRjBZM053YndwWVkwcEdSR3B0Y2xaNllrUXplbVZ1WVRNclkzRndUbkJ2VVdKdFFqbHBMMEZ4UXpkQmNqQXpUMmhEUkc1VFdXZzJUMmhSV21ack1FWmFPR3hoU25SQkNtOXlha013YTJkeWNUSlJOMGRVU21KMllqWnhUVWRuUjNKc1lURnBhMVZ1Y2xBemRqbFpSVkZJU1dOdmRXMTJWa0ZUWlVwbGJuZEVWbVp3YjFaMWRUSUtaVEpyYjNwUGRHSmhTMDF3VFRKWE9EZGtOMDA0UVRSR09XOUpVRTAzYjAxTWJHMU1PVVpwTDI1UlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWWVNuRTRUWFU0VURJNE4yWnRLMlkzQ21obk5VOWFPVk5NT0hCM2QwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRVdUTklUVmhIVVZkNFNHOUliVWRPTm0xMVZFbEhaVkJOUm5vS2NuVjNZelUzVjJsNWVXZE5hSEI2YkVoalZVVTVla3R3WlRGWWVraGFiVmRpUTFSa2EycGpNemwyVVZsemMxSnJlbFpFUTBWVlRIVTRUMk50UlRFeFFncERWVzFpY25oYWVraExSRkpxUVVoQk1IRlNhRmxYYVhoRmFtOUZWbkZVZGl0UVZGRkNTeTlDVGpWd2MwY3lTbk5KWkRjcmJFOXhSRTFJUVVSMWIwNVRDakpIZWxaa1FucE5lazk2VDNaUlVXbDBNRTlvY1U1RVRXOU5kemRUTTNsTFVGaEdaeXRSU1dsNkx5ODJTbVkxYXpZdlZFVjNjaTlyYVhoTlNqSk9XVVlLU1N0aVZuRlpSVWd5VGpkS1JrRndVMmxrVVdaQ1JtVkllR2xFYnpORlJuWlFhR1ptV0cxamEwSlZZVmRqWTJOT1p5OHJRemMyZW1Rdk9FRmxSR05qTndwNE9WRnFUWEJCWnk5cmRsQmxkRTV6YVRWaFQySXlMM3B4YkZJNGJGTkJOSFJGYkdRNVNEQnBlalZxUkhndk1GUXhWMFpwV0d3dkwwUm5lQ3RGUW5oMENuQmFTazFHWTA5NE5Vc3ZOa05YYWxGb2RWbFdZM0l5YkZCNFVrcE1OVXB2YWpoc1VrUktiMjV5VTJreVZqUlZZbk0xZEZOak5XZEZkU3RTWTFOYVZEY0tjQzh6TDAxUVRtbzNaakEzVWpkc1JXUTBkME5oYXpkUVJIRkViblJvU1hSV2IxRjRlbkozYVhGSmJtTm9lRWN4UTBrNWREZE5aaloxTlVaclpGaEZjQW9yVTFoUlZtTXdXbXRtVTBOeloxWmlVRk42VnpFNVFVaDBkMGhOYVRGRE1Gb3pVa0Y0Unpod01VOHhkRU0wTlhOVlJWUjBSRWxzYzFCalNHYzJTRFpyQ25wT1JWTkpUMjVwUWpSM2JIVnpRMVpIYm1ZM1dVcGhlWEI2WkVkSU4yWTBhWHBOWTI5d04weHRNR3AyU21SbE5rMVNhRWR3TXpNdmVtMDJNRWxvWWs4S1VVdHpRWGRUYURkVmJIZFhka0ZNWlU1ak0wRXpkak50VjBNek9IRkpaekV3TTBwQmQxVmxSRzFOVlRsQ1pIZE1ka3RqTjJNM1drZFBVMmRVVDJVd1ZRcFdSRmhpYmtSQ1EwMXZaMWRwYW5CdUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2RuczJocmltN2EtbmxoN3k2ZjMuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RrYTY3ajUKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RrYTY3ajUKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RsdnkzaXpzM21qX2NsaWFrc3Rlc3RrYTY3ajUKICBuYW1lOiBjbGlha3N0ZXN0a2E2N2o1CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGthNjdqNQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RsdnkzaXpzM21qX2NsaWFrc3Rlc3RrYTY3ajUKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJZMnBRYVhNM1VrMU5jRnBGZEVNNVMyZHphbU5ZVkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJlazFVVlhkUFZGRXpUWHBHWVVaM01IbE9WRUY2VFZSVmQwOVVWVE5OZWtaaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVU1yYzBWSE1rOXpNWFJoVjJSYWFqWTFWeXRhTlV3S2IzTnFZV3RxYUZwclVuWnlWRzV3UzFvd2RrbFliamRJWmxoS1JWRjRNM3AzTnk5TE9IRmpSR1pxTUc5RU5WZHJNR2QwT1U0dmNIUlFiazluZEZWQ01BcERhVXRMYmpkcU1EWnhNR1JEUlVWS1p6aHJNM0U1YlVGellVTkNkV2xNUjIxcksxcEpZbEl2V21KTFVrOVdRbkZaVGxORlRqUkdSRVJoV25GclZHTnJDaXRpWjNrdlQxaEdTVU0xY1hwNllWcHdlRWhsTUdOTmRISk1aWFpWVlRsWmFrRTFUbGxTV2tFdlVrUTVhMVpWV0hkcU1UTlVRV3hPZFRoeFN6VmtMM1FLV1hveFpYVXJRVE5NV21zNWVFRnNTMjlhYldSWVRGVTNTbE5yTldGdE1tc3ZURzFOZVRsVGVqUllkVGQzZVhoWWJtdzBTRGR0VUhCSWVHVnFMMlpQY2dwSlMwbE1NMEpMV21GQllVSlVlVGR5WlRWbFZHbG1jVXRyZFRaRlEwNVNZeTk2SzFReGNIY3ZNalZMYkdSV05GQXdWRXB6VFVONlNUTjNSMVZwSzBScENsVkpibTE1Wld0dlVWcHhOa1I0YmswMVRFbzRORTVqWW13dlYyeDZZMlZITTNSYVMxcHVXR1J5Um5oMVdXbE9UbEZOWVZSUVVYa3JhR2xrVVVvNVlTc0tOVk5zTjNnM01UVlpTbmxMZG5rMVRraHViVWxpVUM5Q1N6aFlSMjlrYmtsMmQyUjBjekZuTW1aVVNURldVV1pFWTFwclozbFJhRWM1V1VKTk1pdFVNUXBJZDBjNFVXOUtja2g0U25sVFQzRkJNMDFzYmxRMWFWVndjelozYTNKdE0wWmthMHAxWVRKWVlpdDJWSEZDY1U5U01EQklhamMwZVRZemVFaEVRekZuQ2tkdmVuUjFRMlJwUzFrNVVGWm1UbE5qTlZOcFZtbFhhREZtUjJ3eGVHMTRlSGR4VTA0ck4yWkJaVzV0ZFZCRGExcFJUSGQ2YTB0NE4xSklNMjF1THpjS1pXZFhNa0psYkdwcldYcEphWEp1TTFsMmFYRlhVVVppT1dOQ2FFTTRkRUZMSzJSbmRsTkdRV1pxUmxSSGFYSnlRMlZpUVdoVVVGRjZlbEJUTkhaalZncHpVMWhuY0VOR1pqTlFUMk15VjFWbU5IZDBSVnAzU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEpqYlhKM2VUZDNMMklLZW5RcllqVXZkVWRFYXpWdU1VbDJlVzVFUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZsVEhFeWQzTk5kRlZLSzA5WVlrWmhRMjFuYlFwRGF6Y3llRFo2VVhoR2RTdDJZbGRvVFZWS09YZG9TSFJqZVhKUFdVUlJUamhYZUdZM1JFbG9UV2RqYkdOaFpreHlVVWtyVWl0QmRpdDRPWEk0TTFBM0NsaEZZWEIwWjFObVZESkJaa0ZrYzI4Mk5qQnlkbVpOYVVJM04xVnFWbkY0WTJKTmNrb3ZaR0phVEcxUVp6QlhVek5XV1ZGMWExWm5iWGw0WWtoV01HMEtabVJPZUVNM1FVeE5ORlpoYlROeWJtc3JWRXBKT0Vka05YVnNaelYzVTBkWGMyWjZMM3AxVUU4eGR6VXJjMkZQZEdkU1ZXbFNWekpYTjBST1JqSjNWd296UXpWSGFXMWlRV2c1WVhsUk1tVlFRMXB5VG0wdk5XRlVTblJCTlVRMGFuWTFXVkV5YTNaUWVWQldNalYyZHpaVFVFUklaMFV6VjFBdldFaDZVRXBuQ2s1S01WUlRTRkpUZVVzMk5FTTJVa2dyVVhkeVVIY3diMU4yVFROcU1ERjVXVnBXWXk5MFdFcERUMVJtYWpSS1NUVnFRVE14UVhweFFrZFZNV2xsTVhJS2NubFllWGszT0VGNmRsSTVibUl2V205VFpVaGlZVkpET0VGelFVOTZVMVk1SzBKNVNWcDRRbFY2YjJkcVNYY3lPVkprZDFBcmFraFRWVGhvYURWM01ncHFXVTVKVDNKRlNGZHpaV1JDY0cxalVuSXZPVTlXYVhCbVQzZzNOblE1V0dsUU1tOUNZblV6TUdOd1NuaG1WR1pKYkZwMlYySkdZbFJoZUVFNGJGVXlDbUpoZHpVclN6Z3dObVZ5ZWxKeU0xTk9WekI0U21KUVFVVldZMFJqU25SWVJUaHRRMEkxTVVGcVVYbzNXVzluU1dKcVZuTTBSRzFuV25WbFdsTlNWVU1LTDFSc2JVTmxaQ3R6YkZaU1NYVmxMME5WVXpoeGVqRlZZWFpqVGxCeVZtTmhRemswV2pCRmJtVkxOVlJpZGxNd1YxVnlTMEpWUml0alZrNTZVbUpOYkFwTWVtVTRXakV3U214WU5HZHdOVzV2Y2l0b1NGRjBORWw1YlM5ek1saEhRV040VFc5T01XTXJZVWxRUlRGVFpYbFlURmR1U1hRMWVGaGhjWFZETldreENsSjNaR1pqVUU1RVdrbDBabGhPVDFReFpqWlhRa3hWUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZG5KQ1FuUnFjazVpVjJ4dVYxa3JkVloyYldWVE5reEpNbkJKTkZkYVJXSTJNRFUyVTIxa1RIbEdOU3Q0TXpGNUNsSkZUV1E0T0U4dmVYWkxia0V6TkRsTFFTdFdjRTVKVEdaVVpqWmlWRFY2YjB4V1FXUkJiMmxwY0NzME9VOXhkRWhSYUVKRFdWQktUaloyV21kTVIyY0taMkp2YVhod2NGQnRVMGN3WmpKWGVXdFViRkZoYlVSVmFFUmxRbEYzTW0xaGNFVXpTbEJ0TkUxMmVteDRVMEYxWVhNNE1tMWhZMUl6ZEVoRVRHRjVNd3B5TVVaUVYwbDNUMVJYUlZkUlVEQlJMMXBHVmtZNFNUbGtNSGRLVkdKMlMybDFXR1kzVjAwNVdISjJaMDU1TWxwUVkxRktVM0ZIV201V2VURlBlVlZ3Q2s5WGNIUndVSGsxYWsxMlZYTXJSamQxT0UxelZqVTFaVUlyTldvMlVqaFlieTh6ZW5GNVEybERPWGRUYlZkblIyZFZPSFUyTTNWWWF6UnVObWx3VEhVS2FFRnFWVmhRT0M5ck9XRmpVRGwxVTNCWVZtVkVPVVY1WWtSQmMzbE9PRUpzU1habk5HeERTalZ6Ym5CTFJVZGhkV2M0V25wUFUzbG1UMFJZUnpWbU1RcHdZek5JYUhRM1YxTnRXakV6WVhoalltMUphbFJWUkVkcmVqQk5kbTlaYmxWRFpsZDJkVlZ3WlRobE9XVlhRMk5wY2poMVZGSTFOV2xIZWk5M1UzWkdDbmh4U0ZwNVREaElZbUpPV1U1dU1IbE9WbFZJZHpOSFdrbE5hMGxTZGxkQlZFNTJhemxTT0VKMlJVdERZWGc0VTJOcmFuRm5UbnBLV2pBcldXeExZazhLYzBwTE5YUjRXRnBEWW0xMGJESXZjakEyWjJGcWEyUk9RalFySzAxMWREaFNkM2QwV1VKeFRUZGlaMjVaYVcxUVZERlllbFZ1VDFWdmJGbHNiMlJZZUFwd1pHTmFjMk5qUzJ0cVpuVXpkMGh3TlhKcWQzQkhWVU00VFRWRGMyVXdVamsxY0M4ck0yOUdkR2RZY0ZrMVIwMTVTWEUxT1RKTU5IRnNhMEpYTDFoQkNsbFJka3hSUTNadVdVd3dhRkZJTkhoVmVHOXhObmR1YlhkSlZYb3dUVGg2TUhWTU0wWmlSV3cwUzFGb1dEbDZlbTVPYkd4SUswMU1Va2RqUTBGM1JVRUtRVkZMUTBGblFVMXZUR1ExVkdWUFZYWXdiM013UTNOSVlqTm9aMGxsVDFST1pVOTBZWE5MYVdwdmRtbHhXSGxJVWtaeE5EZ3dTRUkyTXk5elUwdGFSd294YkV4b1JrWmpVV1JDWmtFeGJtZFZWSE5UZVhZeFVVRTNTQzlqVERFcmFVNXViVlpJYjFablUzTXJhbmhoY0hCdFYxQktPV1pzWmtobGFETndibWh0Q2prMmFIZFdNV1V2TjJvck5VTTNhVWhIVUZocFluVkVObHBoZERGTk1sSlVXRUpSVEZCa2NGWkZSM1phVDFGemFEWnNiekpwUWpKU05uQjVTMnBLZGxZS01pOTNVbE5pUkRaWFkydzRlbFYzYzNacmFGQmpXVkV3VG05NmFIUTFVekF4VmxFdk1IcEZNblZsYVhwdVNXZEVkRGhRTkhGeWJGVkxRWGRwZUU5dE1BcDJWSEpWZG5KWWJUbFZTRmRsTlVwWGFrSTNjSEpVYkhacWNqSTBUVEl3U0hoQlkyNVRXa0pGZENzeWRtZHVka1JPV0hZeEsxVjZObE5YZEcxNlZFSXdDbkJrTW5KRVQzUnNUV0ZUVFM4MWJVeFBTbFlyY0N0WUt6VkdVamhEZG5OdVpVSTVSak5CT1V4aVZISnlRbXQyUTBoaVpreDVNVzgyVEV0d1MzRjNNaXNLUTJ0Nk5VVkhTRGhuVW1Kd1NpOXBSeXN5YTJ0bk4yUnZRakJaTlVkb1NESXlPRTAxU21JMFJWZ3ZWbEIzUW01T04wMVliamt3TDBOMk5FRkNlWFpTVHdwdVVXUjNOMUl4UVUxRmVXMXZkMFJLY1ZkeVRUQjVVRUUwZHpCbFF6UjVVVzk1VGxaM1NERnJXRWhyVUVKMFZteGxlbTVuWTJ4U1owaHZjakptTUVWekNsbDBOR3BZZUVOS1V6Wm9ValprTUUxUE5UZzNZa1JRUm04M1ZGcEpNVWxYWTFCUGRGQjVZbFpxTlU4d1FXMXlTVlJ0ZVdkUVNFbEZhbTVWUTBScVpVOEtVbU41TkhnemExTmlUbWhSVDBnMlQwcEJUVlZhWWtzeWVtVjZZVTFxTVV4eVdXcHJRbGhyY25aUmJDOUxhRTg1WTJacVRYcHRVMlZ0UzJocWEwVkdOZ3BJTm5aUFFUQlhMM0Y0YmtkSFZVUTRjVUoxUXpKRloySXZlVmh4VDFWSGJsbzBZWHBOUVM5NFR6aHZja3BRVkhRMFVVdERRVkZGUVRGMmRXRjZRamh5Q205VVQwaDNOVTB4ZEU5eVJUWXJWRzl6WmpRNE5UbDFaVUZKYzBzd09FcDJhWGgxYnpjeFR6Uk1kWGxKZUROS1dHMHlSVWhITmpVNE5XaHJlbXM1VDJZS0t6UkpjRlp1VEZGTFFXTXlLMk5IYlRRME9VNVhaMVV3Y1c1SVREUk5UMmRpTm5aQ1RWSlNjbXRqWmpaVFlVaE9VbFZFVFRCSVJHdFNkMWRRY0RobFNRb3JaMjlXY3psYVEyeERWV013VlhBM1FuRlhWR2hhZWxsU2JWbDNOemhUV0ZBcmFtaFhaRU5CUTFVeU1XTTVNbmRrWlVOeGFUTTVkVXBNYm1KUlZEUTJDbmRNUzNOb1drdHFibFpWUlhCbFNucFNibkZMWms5VFZ6TTNXSEl2ZEdkTmExSjVVa1J6TDFCWlpuUXZkbkpJVUZVMmIyeDJiWFZaVVVWblIzbHRaMDBLVm5WTVNWSndWa1pFVnpjelV6Wm5jQ3RVWW1odGVVVk9aWGhUUmxscWVITlRiM2gzU2pKTkwwZHNUV2xpVXpaRVZXZzRXakV6VDJKVFJHRkVRMk5oWlFwbGJ6TjNkamdyUlhrNWVHVk1VVXREUVZGRlFUUjRTVXh1ZDA1M2QwUkJSVUpPWTBsWWJGWkRNVEZqV1VSUlQxZDJTbkZOVkVoVE1YZ3hMM2hsU25aTUNrdHRhMDEzYm0xYU5uUjNPRXRTUjFKR2NWSlljalZ5TW1SemVVb3dlSEJDWTB0bGRtMDBVV2hhY2psaVZreDJiRzR6UWpKTVZIZGtNbU5aUlRablJrNEtNRE5IYVRkT1VIaFNOME54WVdsT2NqQjJTRU5sU1VweFkwZzVabU5STm5Wc1RVcHRXbkJVZG01cVNVdDJOM0ZOUVd4QkszUlpUMlYyYlN0WU1VUjNSd3BJVWpSVWVIRjFjMDB3VW1VeldHbFdUMEpyUkhCWGJUaHZlVk16TkVoemJVWTRkR0YwZVhwUk1GUXhZM1puZVdrdmFHcERPRk5WZVVSMWIxUnFUVlY2Q2xaMWIwaHpWSEE0WlVneFNFVk9hVk5YYkZOUGMxZFZXR3h6YUVWeU5UbFFOSEZCVm1STU9VcGxPUzlDWmxGeU5VaE1jRE5GTlN0RlQxVmhiR2xuVDFFS1JrOW5jRkkyVGxGTGRVeHhiemxhY1hkV1FuVTFZMGhMUlZkSWJ6TkVTVzgzYWxONVFqRTNaRmwzUzBOQlVVRktiV1l3YXpWeVRqbEtTamhKY0doa09Bb3JRWFJLWldSVVIzUnNUV3RET1ZBemRFUTBUV3BTSzAxT0wxVkphekZYYW1sME4yeEJXRGxYUzJwUk1rVlZiakIzVDFacU1HTjZVVmc1VkZkNmNGQnlDbHBpT0Znd2IxWlJibTlNVnpWWGNXWjJhWFJpTkRSRVZESXZhbkExZWpaVGNWUnlUbVJTVDBVMU1ISXJaVVI0U25rM04wcDNTV2x0YldwTGVqaEljbE1LZDFGSFZHVXhPRnBSWlZobWVuTjRLMEZIZUhCSFVDdHJWa0pPVldad1NuQldMMWxzYzFvMFF6bGpSRWxOUXpOTlMwSjZXbmRvZVM5d1NITXJSQzl0VFFwMWJFcFdNR3hLVW5OSlJtczJTbE4zWTNsRFUwcHFXVkpsVWxGc1pFUlRVRGRNY1dNeWNsbHRlRElyWlVoS1NWWk9UMHBSZDJWeWFrdHZaa1pXZWpsYUNsSlVOVFJQTkRrNFYwODBhMnB2Y0dGc0sxVktTMU5sZUVGTGNURndOa2xYTWl0WGNYVkxkMWQ1T1hKTmJUVlpkekpJV25KNGJHOXViMUpXUTJrNVRXb0taemRyVmtGdlNVSkJVVVJoVDB4S2QySkVZMFZxUjBObldXbFBTblpRYWxONVRVY3hZVUpwUzFGNVJFbE1XRmQ0UjFCVFVXa3pSSGd6YVd4RlJVOWpjQW92WlZCWVQwTnRkV281ZDNoVFNWUkxXVkZIYm01c2FqZHphblZxUVhCWGVrUXZNM1UzWmtSamFrcEZWMGxsYzNsTFozSTBPVXN6Wkc5b01FazJlSEUzQ2xsbU5EQnhUSFp5Tm5sdFVUbFJlbW81Y0ZVM2NYWmtLM2RYUkRFdmRscFdiWGhSV0dSSGEzWnZMM3BSU25GRU9YUllUVGx3VkRObE5UbFFjbTR6Y1V3S1ptODJTVEl5VkZWc056SlpWRFJxV2xwUFZrNHlRM2RuZFNzM0wydFNUbEp6TVRSWmVYbzBkRmx3UTJWbVltVm5LemRaTUVkRFUyaDROa2xETkdkc1ZBcEtiSEZSZUhkSVNIa3ZSMmxpUm5kRFRGazVUa1pLWTB0WVpubG5lVmRGVDNGc2FHbEhjRk5VTVcxUGRuVlRTM2xvVFVZNFdreFpiMVZaUjNsa2FrbExDazVUT1RSeGQzcEliMk4zYVVKR05UQXpRbkZWTWpaUVdWbFZOR2x3VkcxMlFXOUpRa0ZDUzFocVRDdG1kMHRvWVRjelJYTTJTVGRFWVdNMVkxcFBVemNLTTB0aFVXSTVTbEZtVTFkc04wWkdSbG80ZEZRd05VSjBXRWxqZUVOWldETkhRWHBWWXk5R1ZGZE1iRUpYZEVKMWJ6TTVWREY0YlhKMWJ6TlVkV3gwV2dwRlNuQkZhMkZtVUhaUlltWlBXVzF1VGpGeGExZFZSVTV5VXpReU5tbFNiVUl3TW05clVWRlhiV2szUW5kbEwzWk1Ta2ROVkRNMmJFbHhhRkV6ZG5WdUNtNDNTRVExVlVKR1MxWXlRM0JHWjFSVlZscE5Za3RvTlZoUWVFMVRZV0ZKTmtkbkwwdzNPVnBuWkU1cU4xRkljekZtZEd0WWFGWk5OVk52VVVoVFdEa0tSbVV4VVdkeU5Ga3liMVF2YkRKc2FVMTNkRUl4VUVnMU9YVnlZMUI1WTJsQ01qWlVORXR6TlZWUE5XdHhRWEZXUzJjeVIySlpXR3hUV2tSaE0yVlVaUW8yV1d0V1RWQlBTVWRUZWxsYWNFaFhlRVZRWVVOVFNrRTJWRVpqTUZCU05GVXdURFZ0V2twRlIwWkNOV3RxVGs1SFkzSTJZems1TjNJNFFUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogN3Y0NW43aThyZjM1MDJocXg3MmN1djV5YTdldTV0a3pnd2NkOHgyYjZ4MnlndHR4cjU0NWFicm56cWE4Z3FpOG0zOWFzd2Rwbjg3eDNvenl6eTEzMXV6cW4xOHFiaGt0eHBuZmFzY2RtZ2Fqazh1MTRneWFmYXJtZjNtbnRmaHEK\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSVEhSTFoxWlhhMU4wYVVaUWQzZGhTbHBMTlZWVmFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYbE5SRTAwVGtSa1lVZEJPSGxOUkZWNlRVUlplRTVFU1hkT1JHY3dUakZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOM0NqRlljR2xxVFhjcmNqZE5UMDFGV2pKV1FqZHVXbUZhZVVOQlVTdHZNVXgzWjJoRFRFRXdNVEZzZEVsME1XUjFia280T1cwNGFYa3hTMjVLTHpOWE4wMEtUR2RNVEhoUFp6RXlhR00xYjJ4TlpHWnZZMXBpUnpGclRWZDVUVEJxTkd0emVrRlVWSGx3YzAxV1duZERjVVJVV0d0bU4xSnJTVkJITlZkbVR6aFNNd3B4VlVaQ2NVRlJjbWhDTUdsV2NVbE5OMEkxTW05NFYzWldRM280VVRJclJIaHVkR0U0TVc5bWFUaGtjR1ExZFhKNVIzQkxNV2REUVdGb2VtaFJVVTloQ21NdlUzWmhWV1pKVERSS1kwMVdjR1JoV1ZoallqTldTazh4TW5saWQxSjNhRFkxZUdOTE9YZHNka1JKVDFWQlltb3JRM0JyV0RoUmMxTmFUVTF5TVVJS1dtWkVNMGhJYjFWUGRqQkpNRlpsUjJ4alpVVnFTVFE0V0dnclNITnFlR05zVFc1S2IxbFRlVU41WWt4c2JWVjBOR1E1YzNZeFF5OXBVVXg1VjFGQ1Z3cDRSazlvT0RkRlpXNTVXRTQ1WWtWRU1HZFdVM2x1Tld3eFoxcFZVVkJYUW1Sd056ZE5TV013WmtWM1JTOUtTR0ZHTkdWVE9XRnRhREpoWm5KdlRtcHpDamhNZUZBdmRqZGlPRlpNVW0xdE1WTkxMME53V2xkR2IyVnhLMEpUV0hwNmNIbDJXV2d4Vm10amN6bFliM3BTVlN0U2VqZG1jRkkwUkZwSGFFb3dOMlVLUjBRM1dHSlVNVEZGUVdGVlFsbFFkM0Z1Yml0RGFsZFhaMjU0Vm5sSFRGRkRiME5QVlcxaU9VaHZaRkkyZGpoV1NTOHlVRmc0VmpkeGFFeFJVMUYwYmdwYVNYaFFSVUZrTjJKdlF6SjVWSFJPV1M5SmNVZFpXRnBuYzIweFpsbENkM0pDVXpoTllucERNU3RGU0VSdVdVbG5iRTlPVnpCSmVGWk9TMUV4Um1Gb0NrWTJiR05pWWpodlJrMTRSVk5YTmpGRmEydDVkRGhOY2xreE5tMUVTMXAwWXpOb1NVeHlTbXh4YTJ3MGVFbzBObUUxVVROeE1UQnJhMGd3V2pGVmJtZ0taM3BMYVdOYUx6VXJPRTFSUVVaVE4xWTJUWGxIT1dOTVJETnVhV2gzYTNoaU0zWkNZWGxGY1VwUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWRFZEbDRjbVZMUkhsUFVsTjFSbE16Q21odFRrdzFiakJITW05bmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGSVMwZGxVakZoVmt3NGVtWnJOR3RUZDJ3d1JqVlhTRVJMWkVJS1l6UlRaVmxCVUZwVlIxaFBjMmxrV0VWc09XaFVTRmdyVDFFMmVEbERUVUZEV0cxTVZFdEZXR041YlhoNVEybzBhV3RET0VkR2JtRkxWakJzWmt4aWRRb3hOMFJ3Tm1ONVMxTlpWVGd2VkZWVEwzVkxVa013V0N0b1V6SnFUa2c0Wlc0eFMxSjFaRmxaVjJ4a1RHTm5jR3BxUVc5dWMzTklPR2h1TkdkeWR6aHpDa1ZrUzBWT2JrUTVaSE5JUlc5TloxQm5UakZvWlVsRFRTczRZMjF4ZVVzeVdXUkxXRll2ZEVaM01XUXdXVEZtYTFoWGJVdG5aRlkzVEUxUVdXbExjelFLTHpZMmFreHFZekEyTVZGeU9VSlNVbTgwTVRCWGFtUXhXRFl6ZWxKT2NubE5abk5FZVVSbU9GTTBZVVkzVjBKVVpXUlRWMGRuTmpCRU5HTkVOMGQ0YlFwVE5qZzJVWGQ0YjJSRFRrTnNObVJFYjJvdk1TOXBiWFZUVDJKM1FVMTNNamR3U1drMFpUUlZZbmh2V20xVFoyZFhRekJzYjFOS1QwUmhlSEZpTTJWeENuaFVVSGhhYUZNNFNFSkZNSFJwZUZNeVJEaDZPSFZTTWxWcE0zaHZkVll6Tm1NNE0ydHFTR0owZWxWUlZFUjNMMnhYWWtWalZHeE5aek4zVlRodmQwNEtlbnBvVTFCNFZUaE9hMkpRTjNkeVVXSkNkV0pNVFVGYVExRnNTVTVHVEdacFNrSkxaVFpNVW5SYU5sUjRNRGhtWVdJMVJtdDBVV2xwY2xaRmMyaG1ad3BQTUZZMFducGFaVFV6ZWtsM1IwTjVSVTVDVGxkSFNIWlVUSE5OY0VORmFGbGFWVGR2YzI4MGRqQm9TblZwZW5aVlFYRnhiR1F4WmtOVVdYRm1iblF2Q25WR1NHSlRSRk5OWTB0d1NYQnBiVWxHZHpCd1IxSk1WbkZFVFhGa1oyaGlSelprU2xreFlsbzBWV2c1TUdOalUwNUtia3hpUzBKa1oxQmxhRU4zT1U4S01Vc3dkMEUyZVhkTk5EWnNjR0pTZUdFNWJEZHdhMVZPTms1VmMwOXNhVGxCVkRsVE1uaE5kRXB1TDFGWWVtUm9WV3A2VVVkTlRuWjBjMG94YlhGbFRRcDFPVzF4T0had2VtVjZNU3N4VXpCSUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2pzeXc0YzItOGE1Nzd3aDQuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RnY3RkYzIKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RnY3RkYzIKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3R3bXhlZmQ3bXF6X2NsaWFrc3Rlc3RnY3RkYzIKICBuYW1lOiBjbGlha3N0ZXN0Z2N0ZGMyCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGdjdGRjMgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3R3bXhlZmQ3bXF6X2NsaWFrc3Rlc3RnY3RkYzIKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJUbkpqTlRKNFNqTkpiWFl2Y1dwM1dDOUJSemwyUkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVVhsTlJFMDBUa1JrWVVaM01IbE9WRUV5VFZSUmVVMUVVVFJPUkdSaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJKYURSblpIQndZVmRLYURSQk1IbHlkbTFPZEhnS2NVY3ZOR3BLTWtOcFVIZFhjMDB4VVZoc01VNUJiRUZGSzIxMVVWRm5LM3BtUkdObGJHeHNRMlp0TjNod1IyWktlVVZSTWtoYWFHRjVTRWRFY0hWaFR3cG9TbmxOWldFclRtdDFiemhWUVhsaVUycGtheTlaY0c0NWIxRmtlSGQ0YmpKV1lWcGtWSE14T0c5WGR6TnJOak5YWjI1TGFDOVNiSFE1ZDNwTGJYRkdDbmhaTlRCVlZXb3JaM0IxV0dWWGFFRjNORXhVWkVOQ2FqRlhNMm93V1hWMVRrZG1TMk5RUzNsUGQzUXZOekptV0ZsclFXMXlWbEpNZFZKMFFrVnhOV3NLZEdKeWNYQlZXbEl4YXl0b2R6Vk5hR3RNU1dkbmFVY3JXRXB0ZVhRMmJEQXZTR1prUkcxeGRVVkdOM2hrY1VaeFdrVjZlbGRHTnpsYU16TmlWelZKWndwQ1JHZHVXVEJLY1RrMGIwaFdPVUpqWW5vclpuTkhhMUZ4UlRWWWQxUkVTbEYyYTBzNWEwdENiR1pYYjIxVlZWSnBSelozZVV4SlZVdDZXbE4yT0dOVENrZFRPUzlGTW5kVlRFcEVLMXBDY0ZaT1EzVmxjR1JhV25aQmRsQmtOVGhPVG5SbE5URk1aVlJoZW1GbFFraEtSa3hoYW1GMkswSnhiRWRIVW5nelNVMEtRV0kzYjNRdmIweFNhalJST1VoYVpUbDNXa3hUY0Rkd1VUSTJaV2t2TW5kbU1sRldSMHc0UzFJclowUlZjMUJQWm10ak1IRTFiR2t4T1N0bFJtRnhRUXAyVVd4VVpVTmhiM0JCTkdGMGR6SnhSVTlTWTBKVVpWQkxOVUZFVTAxbVFqY3JURVpZT1RKb0szZE1MM1V5VDBWM1VEaEhXRE00WVdsdU1WZ3JVQ3RSQ25CU1ZTOUNRVmx6Um14SlEyZFdhemhJZWxkSVdYQmxhV3hSWkVreGNuQnBUMHRrVlM4ck9GTnRhMlpMYTNFd1Z6QldWMlZDV1dWa1pGTmpjbTluVlhvS1FsRm1hSG8wTDFobFFuZGhjSGQxVkd0NGQxRjFWVTlLZEd4YWVrdFdaakJxTVZWS1lYUkhWMW96UlhadGJHTlFRVlF5WW5WTk9VaEdUR3RtYjFoRVlnb3Zka2xNVlRsamFWZDVWbU5UUVZFd1FsRkJZbU4zU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEZLVUROSGREUnZVRWtLTlVaTE5GWk1aVWRaTUhadFpsRmlZV2xFUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZITjNONmJucHRTV3MwVm1vd1NEaFVSVTVsVlFweFdYZGFjR1JVYnpWUGRFVk5ZblF3VldoT1ZqbE9WWGhZWlZwMVVtcDZiV0Z4YjFab1lsQXJWRVpDUzBZdmMwMU9iakpJZVRoc2VFSnFlVmc1TnpCVENrOXlOVk16WlRCR1dHRnZTMDlLVVU5clRsQlFka0ZPZGtSbmVuWk9RVEpXTTI5ck9VRjBUbEZOUVhkTU5FZG1XVGxZWlZsdksxUTBlbnAzV1RocWJFTUthMFlyUjFjeE9ESnpSM0JXZFdkWFYzWnBjMDAyYjFSbFYwcG1Ra2xoVXpKVlRWTkxTVTVhWlcxMFJtcFdTbmxNWVdoSlkyWkVaaXM0VGpKUmIzZGFTQXB3Uml0MFJYbDJWRTl4VjBOMlNFMUdhRmR4VTBWMFZuRk1lVFV5T1hFNFR6UkZZa1pFVDFwM1dYZERkbkZWTVVnMVJEQTRXRzF3WTB4TlV6UndWa0V2Q21wSU9ITlNZbEpKUmxscU5EQXdkRUZZV25SeU0wdDJLM055ZDNVME5qRTFTVGxYTHpKMFZuUldkamRxTTNnMFZEbFZSM2RqTTFkQlYxVnZXSEoxWmxrS1RrVjJhVFpNYUN0YWRrWlVUbXRCY0RjdlltaFVWMUozUkdwUlJFVmFia2t2VWpCbE5VOHlXRFpKVm5Od1lWWkNXRlJoZFhwdlNVRmxZMmt2UkRVMlV3cGxkMGswUzNoTFpqSnhVek0zV25OWVdtMTNOVTF6ZEhKeVFYcEhjRkJFV1RRNWEwNVVWU3ROUTNRck1tSkdhekI1TURCeFNGaDRRbmx2Um1OVEx6bERDbUphWVUxRFVIaHFlREI0ZG1jck5YUm5RV2RqYVVGbVRGZzNOalZPYjJWa1VFWmlaSEpOUVdOdE56UndRVWN2U2preGNpdHJVbWxDU2xCdGRrSklRM1VLWjJaMVFtYzNRa1JvYzJaR1pWWnZablJJTUVOalpIUjZRMEkwVEdaelZqVnZNa0pzT1hscmEzZEdUMnhKWjFsamNucFRUV1F4TkVRemFteFFaMk5HU2dwRFFqWk9jbkJMU21JNFl6QTNaWFJOWW1aWk5GSkpXamxGUXpkWU5raENhV0Z1VW5wdU1uUXpXRlJ1V0hselpuTTVOVUprWVRVeGF6TmpUMUYzYVhsRUNqTm9abWhMZW5VeFdrdDNhamhHVDBwbU9XbEtiM1JOUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZVVsbFNVaGhZVmRzYVZsbFFVNU5jVGMxYW1KallXaDJLMGw1WkdkdmFqaEdja1JPVlVZMVpGUlJTbEZDVUhCeUNtdEZTVkJ6TTNjelNIQmFXbEZ1TlhVNFlWSnVlV05vUlU1b01sbFhjMmg0WnpaaWJXcHZVMk5xU0cxMmFscE1jVkJHUVUxdE1HOHpXbEF5UzFvdllVVUtTR05qVFZvNWJGZHRXRlUzVG1aTFJuTk9OVTkwTVc5S2VXOW1NRnBpWm1OTmVYQnhhR05YVDJSR1Jra3ZiMHRpYkROc2IxRk5UME13TTFGbldUbFdkQW8wT1VkTWNtcFNibmx1UkhsemFuTk1aaXM1YmpFeVNrRktjVEZWVXpkcllsRlNTM1ZhVEZjMk5uRldSMVZrV2xCdlkwOVVTVnBEZVVsSlNXaDJiSGxhQ25OeVpYQmtVSGd6TTFFMWNYSm9RbVU0V0dGb1lXMVNUVGd4YUdVdlYyUTVNakYxVTBsQlVUUktNazVEWVhabFMwSXhabEZZUnpndmJqZENjRVZMYUU4S1ZqaEZkM2xWVERWRGRscERaMXBZTVhGS2JFWkZXV2gxYzAxcGVVWkRjekpWY2k5SVJXaHJkbVo0VG5OR1EzbFJMMjFSWVZaVVVYSnVjVmhYVjJKM1RBcDZNMlZtUkZSaVdIVmtVek5yTW5NeWJtZFNlVkpUTW04eWNpOW5ZWEJTYUd0alpIbEVRVWNyTmt4bU5rTXdXU3RGVUZJeVdIWmpSMU13Y1dVMlZVNTFDbTV2ZGpselNEbHJSbEpwTDBOclptOUJNVXhFZW00MVNFNUxkVnBaZEdabWJtaFhjV2RNTUVwVk0yZHRjVXRSVDBkeVkwNXhhRVJyV0VGVk0ycDVkVkVLUVRCcVNIZGxMMmw0Vmk5a2IyWnpReTgzZEdwb1RVUXZRbXc1TDBkdmNEbFdMMm92YTB0VlZsQjNVVWRNUWxwVFFXOUdXbEJDT0RGb01rdFliM0JWU0FwVFRtRTJXV3BwYmxaUUwzWkZjSEJJZVhCTGRFWjBSbFp1WjFkSWJsaFZia3MyU1VaTmQxVklOR01yVURFeloyTkhjV05NYXpWTlkwVk1iRVJwWWxwWENtTjViRmc1U1RsV1ExZHlVbXh0WkhoTU5YQllSSGRGT1cwM2FsQlNlRk0xU0RaR2R6SXZOM2xETVZCWVNXeHpiRmhGWjBWT1FWVkJSek5OUTBGM1JVRUtRVkZMUTBGblFUVTNXVEJSYnpkTlZYQlBXVGszYzB0VlprWXZTVTFhVWtoQ1RHWnliMWszVWt4NmJtZFpZVWx4VVU5VVJYa3lTMUJTWTFseVdERkxPQW8zTUc1U2RqVjRiRU5qTVVKeFUzbHlVbFpzYUhkRk1uRmliV2hxS3pCTlQwRlphMHBMVFhWd2NVdFpOM0JtUkdsd05uUXpOVTl4T1dZeVlrTkRWRXhRQ2tkbFMwVTNkelZZZW1GRFNISjFZblJNZFVWWVJWVnVNMHhsVjJaNGVsbHFkU3RsVDFCclUyTlBWMGswWXpCSmVuVXpVWFkwZEZCbU5FRlRkSGxyTTBJS1YxZGxRM1pVVUZKUVYwOVBRVXd2ZG1KR2NsSnNVMDlsV2t4emEwNUxkRTlhV0dkMU5DczBWa2RPTlVRM0wzcEdSREZMV1VoNkx6Tk9URGh5U1VaUGRnbzVRalF4VFd3eE5pc3pOR1J6WlZCWk1rVndOR2RhUlVZNFUyOUNVR0ppVEVObk1rSjNVV2xMYm00NUsyUkdVelF5VFd4Q1IzQXlia1pDVURONkwxVktDbWxoU1d0MFUwWkhSbmxEZDNNcmVtd3ZUbEZWY0ROalJqWkphV3N5Y0ZCaFZXTnlWVkJ2Tm1wVWNGWkNSbVZhTlZsNVQyaEJjRnBoVXk5S2VqbExjVElLWjJ0eE0yb3pSVlpWTjNOWVEwZHVLMVZxTVVobmQyVktlVzV4WTFneFltczFRa3RKYlhBNEwyRlphMmhGZUhFck9WRXljRGxXY3pOTGFsVnFVM1pJU3dwWmRtSldkRVpKU1dWME1UTnpNekJ0UjJSRWVXd3dWVFowZEVsV1QyNUNTelppTms0Mk9VbENjamRUUzFadGJEZEZlbTU2WjNGdllWQnNjVTFXWVhZeENqUnllSEpPUVZrNFEyazFkRUZNY21aNGQwc3pkR3h5Um5SNVUyMUlWVXRSYjJoR1ZISkhVblZMZEU5cGJVUTBaMHd5TTB4WFdWbFdMMHBLYkRWUlNqZ0tTbk5CZDJjd1RtSlpRMkpYZVd4TFlYQTNWVVZDTkV0Wk5FSTVPWEJxVDNoa1lWb3JTV1k1VG1ZM2RFMVdObWxLYW1aWFRrZFJVbk5oVmtsT1NsUlJlZ3BvYmlzeGFUWTVUMDl5ZEdGemNHY3JVMmdyWmtOb1MxZG5ZM3BNT0Vad2RHTkNZeTlZV1U0eU1VUTNZa1ZvYkhrMFVVdERRVkZGUVRod1pFb3dVRzgzQ2xsclpXbEZjRmt6VGtwSmIxUjNhbGxFTlhRNVJHUmFVbTlHWWtOWmRXNTZkVXhXTjFsdmJVcG5kbVpaYjNCbk1rNUxNVk0wZEU5WldrOTFkMlZyZWtVS1kxVTVTeTlOY1c1NGRURXZOVlJZTkZoQ0wxUkxPWGRsUkZsVlluRk9jRWcwWTNaMUsybE1OakpNUmxFcmRtcFlLMkUzY0cxTFFteFlNV3MwVDJsRU5BcDZORTVsTldadVdXVXliVlJSVkcxQ01FWTNkM1ptZFhCcUwxUlFjVFZ6V2xwdWFVeEhhRmxEZFU1eE9HSmFTM0ZoWnpCRFpHTnVMM1ZKWmtGUlRGaGtDbUppY0VjNGRtTldjR1JEVTNwV1JrNHpNRGRzTkZkWVMycHlUSE5VTkM5a1VWUXdXVnAwVEN0clpIbGlRbWhqVURBclMxRkNOMUZTWjJzM1YxTnBlbFlLWWpkWGRVUkVkbkJFVlZWeFdXTTNibFJ4YkhnME1tdGFSMlJrVUVWWVVuaEhWRlJRVEdkdkwyUnJSR3hhTDB0dlptSlFOVFo0TjNodVJrRkJTa2xqVFFwa1YyUXljM2xYTVhsUmEwMDFVVXREUVZGRlFUQTFNRkZYVm5wV1VWaFdVRXRLUWt0dlpuRkNibmxxUVZsMFZrc3JUbHB5U0dOMmVITndWMlZETmtsbENscDNOSFI2VFVSU2N6aE1ZV0UzYkRkTVNuSnNkRzF6TUdGcFZYVmlRbmxRUVUwemNrUnBLMWhvZWxSeU5IWmpRV2h0ZG5OV2NWcG9Vbk5WWWpCWWNVSUtkMVJXZEZCeFZGcHpjRnBSWTNoclMzQnZUM2xZTlRGU2VXcE5SV05yVDNsQlQzQmpRWEJSUmlzclptdHVjRUprU0RkRlVtNUdaVnB4WkdkQ05WQk9hUW94UmxGeUwxSjNRbkZHVW5CMWRGQk9USGd2UVZrd1VucFRZVkl2ZWxSWFNFZGlObVpSVlhWSVRXZDZUVXBYVTNGSGExSXJjblE0YVRnNVF5ODNaa3hqQ21nelMxWm5SRXRVVmtGdVNpOUZUbUo1Tnl0d01rTnZTMUZyVDBsRWNHNVJiMGxwYkhFd1J6Rk5hR1UxVFdjeUx6WlVSU3RxZHpaRVRXeExURTR4YUZFS1pteG5XV2xUYlZnNFRHbFZkVkpNWjNadk1FTjBZVUpzYkdsQlpERnZPRTVQTTBFeldGcHVXbVIzUzBOQlVVSjNLMUJPZGxad2EwSkZPSEoxVkZCWk5BcHFWR2R2Vm1vMFNWSnhhbVZKVFdsNWJYSlROM2syWlhOb1VtVkpjeTlTVDBGWk0zQmhiV3RVTjNkUFEycHVaVko1UWtSUVdUWkRORUVyTUhZdlJrSldDakkxVTB3NFlUVlFaVXRMYlRoclRYTnRTMmhuTkdkYVNIRlBhMHB2TDBOa2NWUllSa3R6TW5CblZVNVllVXB3Y3pWUFprTmhhMmd3YlhkRkszRkVUMmNLYUZoSlIwWm1ibGRTSzBKc1IxTllSak5KVVRWeWJXdE9lREpXUVV0TEwzSXhha2RhT1ZsMFdFSXJaakZaY2xOelFYTjNUbFp4VW1aNlZHWjBVR2hRWlFwMlJuTm9UWEJRU2xGeWVtSlZjMUZhTkVWclkxcERjblJxY2pSdFdrZDNXa1ZXZEVGWmN6QkZTalphWW1OQloxaFlkems0VXpWVE5rTlRiV050VDI1WUNsQkVZVmxvWm5CRFREZGlValpOWlM5MVVEQm9ZVGxEWm5CSVFUTlRTalV4VHpWUFdqZFBPVFpYY1RSM1UwdEVURFJ3VjNWaVVsaHZUblEyV1ZoNE9XZ0tSamd6YUVGdlNVSkJSRVZRV25WNmR6UjBaM05PUlM4MVRTOVNaSFZhVDBkNFUwOXJkelUzZUZKNVFTOVhhV1pJU0VRNGFVNU9ORGR2VlRad1NGaFZTZ3B3WXpNek1FdEVSWGRMUlUxT1ltbDFTMmhqVTJZcmVqRXdTbk5ZVjFwQlZrdDFUVkl4VDA1V1VHaFFVWFY0YWtoT1pUTlpPSGxCZVVoTlR6ZFJSMVo0Q2tJdlNFaFRibkpWWVZwU1ZsTjBUVkZDVDFobk15OUljVmsyTms1V2RETlRTVEpVU0c0eU9YSm5LMDh4VVRSRWJTOVliSGhISzJGVFNsTnBibEkxVFZvS1JIWkpjbXBLVW5sVVp6UXhibTE2YVZsSFlscEdRblJhTkVZMGJ5OXZNRkl2Ym5Cck0ycE1PREJyYjBWdVdIWmtWamhJTkROcWRtZDVkSGhRTTFkNFRRcFpURWhHYUVKRE1uWk5MMHN6TVc5Q1oyaGxkMlpZWm1Ga2JEUXZLelY0UkdRNFNYUkJaVTB3WTFsaFJraE9SMkkxV0RkT1ZVMTNXamRKV2xGVFJrOWpDakUwTkZrelJsbFNTbmxIYjNORFUyZERXWEp0TWpOQ0sxVmlaVE53V0RCRFoyZEZRa0ZPYkVGUmFGUXlVbEpDZEhwNmJXVkxabWxHT0ZBM1VtNVVaSEFLTmxodVdtSmFRMEZKWTI4elNrNURaa0ZpTkVWT2FITlpZelJ2TTB4MllsWlJXSFUxU0RGUGRGVXpXU3RUWm1aSFJXZ3JNelV3VjNwemRHTkZia1YzWWdwMmIzVnpkREpDYW14TmNXVklaRWwzTkdkUU5raEVUVFpxWTFvd05tOXBVVGxaTXpOMGJEVldUM1ZzVlUxeE9HUk5WVVZHWkVZeVJsRktXVTEyWm0xNUNuRlVlbWhtTmsxclIzUlViRXR1VUhCMVdUQlRja1JQVUZkcmRWcGhWV1ZaUkRGYVdWaG9kekp0VVc5a01VbHJUVzlFVlhOdVdVUlRZalExUXpNeGRVY0tUMUl5WTJGa1ozUlFSVXN4TjNSeVptaElWbmxEVkVoQ1RqUmpXVFpzUXk5TFJqUkRVMmRLU1Zsb1RUVndabkYyWjB4NVJIaFpLM1YxV0ROeVozSlZVUW96ZGk4emFrNWpjVkoxVW1wemFUY3pObTFtYVU5Nk5tb3dWalZSUkZCbE9HNHJWbVpOYjNKRGRsQnBlRXB0WWxoSE5qSjNkVTV2YWxOcWN6MEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogM2pxdzc0OHdpNTU1djRzeW81NG8zeDBwajhuNTN3bXp4aG5pMHF4Zmo0ODkxYmZvYThqaDEwam4zeWQ5bmZwNmNyNmNnbDNnOTJtbXI2bDF5bXBzcjQyb25pbGVsbjh3eXUyZmg5ZGt1ODBiMjl4Yjlvb3Rpb3NqMWg0dmRvNTYK\"\ + \n }\n ]\n }" headers: cache-control: - no-cache @@ -943,7 +955,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:34 GMT + - Wed, 14 Jun 2023 20:51:41 GMT expires: - '-1' pragma: @@ -979,15 +991,15 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSU25WMlVETmlSMDB4VFVKUGRYcDNhRnB3TXpad1ZFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCZWsxVVZYZFBWRkV6VFhwR1lVZEJPSGxOUkZWNlRVUk5lRTVVUVRWT1ZHTjZUVlp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVNekNsZGtiR2R1YmpKbmRDdHRjR2hIUm5OVFluVXhkR0ZpU2xOd1ZHdzFPVFJtZWtoSFMzVlBjRkZYV214TlVGZGxUVlp6VmpsTlFrOW1Ua1JhZFZoa1NGY0tZVFZrZUhGRGJIWmhPSGs0WmpGWVRXVkJkaTlUYVV4VlRIQlZhVkpEUVVGb2FtVXZlV1pYZDBGWVVESkVka1k0YTFaNFQxaEJjVzVtZWtaYVEwbHpkd3BJV1VOeEt6WXJRMWhYVnpWdWRHWlhjRzlaVWtJMVFVcEVjRzU2ZGk5aVVWWk9jR1ZaUTNCTGRVczRVVTR5V2pOWFVGRkdZbWswTVdoMlpEUnpabTlrQ205SFNXWmFMMlJITDBObFJFczFTM2RWT0VKaFZXTk1iVkJOYlVaQmJXRnFVVGhoV1haVU4yaFNVblI1Y1hKeVl6WlRTblZ4UTFONk5qSkJTVXRxUlhRS1FXZDVOMDE1Ymk4eFJsZHNTVUZsVWxWbFQzVXpRWE5KY0hsVmJUQjZSSE5EVFV0RlJXcHRMMlZaUlVWS1pYWTNTR2h1ZWxaeU5WSldTVTlXTmsxM013cG5OMFJLTTNKM1YzaHFTRVl5UzJOUmIzQnBXRFVyWlVSc1dXOXBlWEZtZUhWamNGZHhPVU5rVEdSWlFpOUlSVTlCWm5JMVNteHlUM2dyVjNKamFUSmlDbXB6VEZrMVVEZ3pTbmhvUlhSQ2Fpc3lXVmxaTlhFMUwxY3hVbFJJYkhBNWVIVXZWbWRrVlVkWldHRnZWekl4WlhKUlpUVktWeXRrUlhSalVrMUVLekFLVkdGdVRrOWtWa3BJUmxRd1lrMWhTa2RhWW01VmFVSTViMmx0YUVSMk5qZDRjbFkxVVU1UU0wbFZVbUpZVG5GeVVEZG9WaTl4Ym14eFVYRjBZM053YndwWVkwcEdSR3B0Y2xaNllrUXplbVZ1WVRNclkzRndUbkJ2VVdKdFFqbHBMMEZ4UXpkQmNqQXpUMmhEUkc1VFdXZzJUMmhSV21ack1FWmFPR3hoU25SQkNtOXlha013YTJkeWNUSlJOMGRVU21KMllqWnhUVWRuUjNKc1lURnBhMVZ1Y2xBemRqbFpSVkZJU1dOdmRXMTJWa0ZUWlVwbGJuZEVWbVp3YjFaMWRUSUtaVEpyYjNwUGRHSmhTMDF3VFRKWE9EZGtOMDA0UVRSR09XOUpVRTAzYjAxTWJHMU1PVVpwTDI1UlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWWVNuRTRUWFU0VURJNE4yWnRLMlkzQ21obk5VOWFPVk5NT0hCM2QwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRVdUTklUVmhIVVZkNFNHOUliVWRPTm0xMVZFbEhaVkJOUm5vS2NuVjNZelUzVjJsNWVXZE5hSEI2YkVoalZVVTVla3R3WlRGWWVraGFiVmRpUTFSa2EycGpNemwyVVZsemMxSnJlbFpFUTBWVlRIVTRUMk50UlRFeFFncERWVzFpY25oYWVraExSRkpxUVVoQk1IRlNhRmxYYVhoRmFtOUZWbkZVZGl0UVZGRkNTeTlDVGpWd2MwY3lTbk5KWkRjcmJFOXhSRTFJUVVSMWIwNVRDakpIZWxaa1FucE5lazk2VDNaUlVXbDBNRTlvY1U1RVRXOU5kemRUTTNsTFVGaEdaeXRSU1dsNkx5ODJTbVkxYXpZdlZFVjNjaTlyYVhoTlNqSk9XVVlLU1N0aVZuRlpSVWd5VGpkS1JrRndVMmxrVVdaQ1JtVkllR2xFYnpORlJuWlFhR1ptV0cxamEwSlZZVmRqWTJOT1p5OHJRemMyZW1Rdk9FRmxSR05qTndwNE9WRnFUWEJCWnk5cmRsQmxkRTV6YVRWaFQySXlMM3B4YkZJNGJGTkJOSFJGYkdRNVNEQnBlalZxUkhndk1GUXhWMFpwV0d3dkwwUm5lQ3RGUW5oMENuQmFTazFHWTA5NE5Vc3ZOa05YYWxGb2RWbFdZM0l5YkZCNFVrcE1OVXB2YWpoc1VrUktiMjV5VTJreVZqUlZZbk0xZEZOak5XZEZkU3RTWTFOYVZEY0tjQzh6TDAxUVRtbzNaakEzVWpkc1JXUTBkME5oYXpkUVJIRkViblJvU1hSV2IxRjRlbkozYVhGSmJtTm9lRWN4UTBrNWREZE5aaloxTlVaclpGaEZjQW9yVTFoUlZtTXdXbXRtVTBOeloxWmlVRk42VnpFNVFVaDBkMGhOYVRGRE1Gb3pVa0Y0Unpod01VOHhkRU0wTlhOVlJWUjBSRWxzYzFCalNHYzJTRFpyQ25wT1JWTkpUMjVwUWpSM2JIVnpRMVpIYm1ZM1dVcGhlWEI2WkVkSU4yWTBhWHBOWTI5d04weHRNR3AyU21SbE5rMVNhRWR3TXpNdmVtMDJNRWxvWWs4S1VVdHpRWGRUYURkVmJIZFhka0ZNWlU1ak0wRXpkak50VjBNek9IRkpaekV3TTBwQmQxVmxSRzFOVlRsQ1pIZE1ka3RqTjJNM1drZFBVMmRVVDJVd1ZRcFdSRmhpYmtSQ1EwMXZaMWRwYW5CdUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2RuczJocmltN2EtbmxoN3k2ZjMuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RrYTY3ajUKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RrYTY3ajUKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RsdnkzaXpzM21qX2NsaWFrc3Rlc3RrYTY3ajUKICBuYW1lOiBjbGlha3N0ZXN0a2E2N2o1CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGthNjdqNQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RsdnkzaXpzM21qX2NsaWFrc3Rlc3RrYTY3ajUKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJZMnBRYVhNM1VrMU5jRnBGZEVNNVMyZHphbU5ZVkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJlazFVVlhkUFZGRXpUWHBHWVVaM01IbE9WRUY2VFZSVmQwOVVWVE5OZWtaaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVU1yYzBWSE1rOXpNWFJoVjJSYWFqWTFWeXRhTlV3S2IzTnFZV3RxYUZwclVuWnlWRzV3UzFvd2RrbFliamRJWmxoS1JWRjRNM3AzTnk5TE9IRmpSR1pxTUc5RU5WZHJNR2QwT1U0dmNIUlFiazluZEZWQ01BcERhVXRMYmpkcU1EWnhNR1JEUlVWS1p6aHJNM0U1YlVGellVTkNkV2xNUjIxcksxcEpZbEl2V21KTFVrOVdRbkZaVGxORlRqUkdSRVJoV25GclZHTnJDaXRpWjNrdlQxaEdTVU0xY1hwNllWcHdlRWhsTUdOTmRISk1aWFpWVlRsWmFrRTFUbGxTV2tFdlVrUTVhMVpWV0hkcU1UTlVRV3hPZFRoeFN6VmtMM1FLV1hveFpYVXJRVE5NV21zNWVFRnNTMjlhYldSWVRGVTNTbE5yTldGdE1tc3ZURzFOZVRsVGVqUllkVGQzZVhoWWJtdzBTRGR0VUhCSWVHVnFMMlpQY2dwSlMwbE1NMEpMV21GQllVSlVlVGR5WlRWbFZHbG1jVXRyZFRaRlEwNVNZeTk2SzFReGNIY3ZNalZMYkdSV05GQXdWRXB6VFVONlNUTjNSMVZwSzBScENsVkpibTE1Wld0dlVWcHhOa1I0YmswMVRFbzRORTVqWW13dlYyeDZZMlZITTNSYVMxcHVXR1J5Um5oMVdXbE9UbEZOWVZSUVVYa3JhR2xrVVVvNVlTc0tOVk5zTjNnM01UVlpTbmxMZG5rMVRraHViVWxpVUM5Q1N6aFlSMjlrYmtsMmQyUjBjekZuTW1aVVNURldVV1pFWTFwclozbFJhRWM1V1VKTk1pdFVNUXBJZDBjNFVXOUtja2g0U25sVFQzRkJNMDFzYmxRMWFWVndjelozYTNKdE0wWmthMHAxWVRKWVlpdDJWSEZDY1U5U01EQklhamMwZVRZemVFaEVRekZuQ2tkdmVuUjFRMlJwUzFrNVVGWm1UbE5qTlZOcFZtbFhhREZtUjJ3eGVHMTRlSGR4VTA0ck4yWkJaVzV0ZFZCRGExcFJUSGQ2YTB0NE4xSklNMjF1THpjS1pXZFhNa0psYkdwcldYcEphWEp1TTFsMmFYRlhVVVppT1dOQ2FFTTRkRUZMSzJSbmRsTkdRV1pxUmxSSGFYSnlRMlZpUVdoVVVGRjZlbEJUTkhaalZncHpVMWhuY0VOR1pqTlFUMk15VjFWbU5IZDBSVnAzU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEpqYlhKM2VUZDNMMklLZW5RcllqVXZkVWRFYXpWdU1VbDJlVzVFUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZsVEhFeWQzTk5kRlZLSzA5WVlrWmhRMjFuYlFwRGF6Y3llRFo2VVhoR2RTdDJZbGRvVFZWS09YZG9TSFJqZVhKUFdVUlJUamhYZUdZM1JFbG9UV2RqYkdOaFpreHlVVWtyVWl0QmRpdDRPWEk0TTFBM0NsaEZZWEIwWjFObVZESkJaa0ZrYzI4Mk5qQnlkbVpOYVVJM04xVnFWbkY0WTJKTmNrb3ZaR0phVEcxUVp6QlhVek5XV1ZGMWExWm5iWGw0WWtoV01HMEtabVJPZUVNM1FVeE5ORlpoYlROeWJtc3JWRXBKT0Vka05YVnNaelYzVTBkWGMyWjZMM3AxVUU4eGR6VXJjMkZQZEdkU1ZXbFNWekpYTjBST1JqSjNWd296UXpWSGFXMWlRV2c1WVhsUk1tVlFRMXB5VG0wdk5XRlVTblJCTlVRMGFuWTFXVkV5YTNaUWVWQldNalYyZHpaVFVFUklaMFV6VjFBdldFaDZVRXBuQ2s1S01WUlRTRkpUZVVzMk5FTTJVa2dyVVhkeVVIY3diMU4yVFROcU1ERjVXVnBXWXk5MFdFcERUMVJtYWpSS1NUVnFRVE14UVhweFFrZFZNV2xsTVhJS2NubFllWGszT0VGNmRsSTVibUl2V205VFpVaGlZVkpET0VGelFVOTZVMVk1SzBKNVNWcDRRbFY2YjJkcVNYY3lPVkprZDFBcmFraFRWVGhvYURWM01ncHFXVTVKVDNKRlNGZHpaV1JDY0cxalVuSXZPVTlXYVhCbVQzZzNOblE1V0dsUU1tOUNZblV6TUdOd1NuaG1WR1pKYkZwMlYySkdZbFJoZUVFNGJGVXlDbUpoZHpVclN6Z3dObVZ5ZWxKeU0xTk9WekI0U21KUVFVVldZMFJqU25SWVJUaHRRMEkxTVVGcVVYbzNXVzluU1dKcVZuTTBSRzFuV25WbFdsTlNWVU1LTDFSc2JVTmxaQ3R6YkZaU1NYVmxMME5WVXpoeGVqRlZZWFpqVGxCeVZtTmhRemswV2pCRmJtVkxOVlJpZGxNd1YxVnlTMEpWUml0alZrNTZVbUpOYkFwTWVtVTRXakV3U214WU5HZHdOVzV2Y2l0b1NGRjBORWw1YlM5ek1saEhRV040VFc5T01XTXJZVWxRUlRGVFpYbFlURmR1U1hRMWVGaGhjWFZETldreENsSjNaR1pqVUU1RVdrbDBabGhPVDFReFpqWlhRa3hWUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZG5KQ1FuUnFjazVpVjJ4dVYxa3JkVloyYldWVE5reEpNbkJKTkZkYVJXSTJNRFUyVTIxa1RIbEdOU3Q0TXpGNUNsSkZUV1E0T0U4dmVYWkxia0V6TkRsTFFTdFdjRTVKVEdaVVpqWmlWRFY2YjB4V1FXUkJiMmxwY0NzME9VOXhkRWhSYUVKRFdWQktUaloyV21kTVIyY0taMkp2YVhod2NGQnRVMGN3WmpKWGVXdFViRkZoYlVSVmFFUmxRbEYzTW0xaGNFVXpTbEJ0TkUxMmVteDRVMEYxWVhNNE1tMWhZMUl6ZEVoRVRHRjVNd3B5TVVaUVYwbDNUMVJYUlZkUlVEQlJMMXBHVmtZNFNUbGtNSGRLVkdKMlMybDFXR1kzVjAwNVdISjJaMDU1TWxwUVkxRktVM0ZIV201V2VURlBlVlZ3Q2s5WGNIUndVSGsxYWsxMlZYTXJSamQxT0UxelZqVTFaVUlyTldvMlVqaFlieTh6ZW5GNVEybERPWGRUYlZkblIyZFZPSFUyTTNWWWF6UnVObWx3VEhVS2FFRnFWVmhRT0M5ck9XRmpVRGwxVTNCWVZtVkVPVVY1WWtSQmMzbE9PRUpzU1habk5HeERTalZ6Ym5CTFJVZGhkV2M0V25wUFUzbG1UMFJZUnpWbU1RcHdZek5JYUhRM1YxTnRXakV6WVhoalltMUphbFJWUkVkcmVqQk5kbTlaYmxWRFpsZDJkVlZ3WlRobE9XVlhRMk5wY2poMVZGSTFOV2xIZWk5M1UzWkdDbmh4U0ZwNVREaElZbUpPV1U1dU1IbE9WbFZJZHpOSFdrbE5hMGxTZGxkQlZFNTJhemxTT0VKMlJVdERZWGc0VTJOcmFuRm5UbnBLV2pBcldXeExZazhLYzBwTE5YUjRXRnBEWW0xMGJESXZjakEyWjJGcWEyUk9RalFySzAxMWREaFNkM2QwV1VKeFRUZGlaMjVaYVcxUVZERlllbFZ1VDFWdmJGbHNiMlJZZUFwd1pHTmFjMk5qUzJ0cVpuVXpkMGh3TlhKcWQzQkhWVU00VFRWRGMyVXdVamsxY0M4ck0yOUdkR2RZY0ZrMVIwMTVTWEUxT1RKTU5IRnNhMEpYTDFoQkNsbFJka3hSUTNadVdVd3dhRkZJTkhoVmVHOXhObmR1YlhkSlZYb3dUVGg2TUhWTU0wWmlSV3cwUzFGb1dEbDZlbTVPYkd4SUswMU1Va2RqUTBGM1JVRUtRVkZMUTBGblFVMXZUR1ExVkdWUFZYWXdiM013UTNOSVlqTm9aMGxsVDFST1pVOTBZWE5MYVdwdmRtbHhXSGxJVWtaeE5EZ3dTRUkyTXk5elUwdGFSd294YkV4b1JrWmpVV1JDWmtFeGJtZFZWSE5UZVhZeFVVRTNTQzlqVERFcmFVNXViVlpJYjFablUzTXJhbmhoY0hCdFYxQktPV1pzWmtobGFETndibWh0Q2prMmFIZFdNV1V2TjJvck5VTTNhVWhIVUZocFluVkVObHBoZERGTk1sSlVXRUpSVEZCa2NGWkZSM1phVDFGemFEWnNiekpwUWpKU05uQjVTMnBLZGxZS01pOTNVbE5pUkRaWFkydzRlbFYzYzNacmFGQmpXVkV3VG05NmFIUTFVekF4VmxFdk1IcEZNblZsYVhwdVNXZEVkRGhRTkhGeWJGVkxRWGRwZUU5dE1BcDJWSEpWZG5KWWJUbFZTRmRsTlVwWGFrSTNjSEpVYkhacWNqSTBUVEl3U0hoQlkyNVRXa0pGZENzeWRtZHVka1JPV0hZeEsxVjZObE5YZEcxNlZFSXdDbkJrTW5KRVQzUnNUV0ZUVFM4MWJVeFBTbFlyY0N0WUt6VkdVamhEZG5OdVpVSTVSak5CT1V4aVZISnlRbXQyUTBoaVpreDVNVzgyVEV0d1MzRjNNaXNLUTJ0Nk5VVkhTRGhuVW1Kd1NpOXBSeXN5YTJ0bk4yUnZRakJaTlVkb1NESXlPRTAxU21JMFJWZ3ZWbEIzUW01T04wMVliamt3TDBOMk5FRkNlWFpTVHdwdVVXUjNOMUl4UVUxRmVXMXZkMFJLY1ZkeVRUQjVVRUUwZHpCbFF6UjVVVzk1VGxaM1NERnJXRWhyVUVKMFZteGxlbTVuWTJ4U1owaHZjakptTUVWekNsbDBOR3BZZUVOS1V6Wm9ValprTUUxUE5UZzNZa1JRUm04M1ZGcEpNVWxYWTFCUGRGQjVZbFpxTlU4d1FXMXlTVlJ0ZVdkUVNFbEZhbTVWUTBScVpVOEtVbU41TkhnemExTmlUbWhSVDBnMlQwcEJUVlZhWWtzeWVtVjZZVTFxTVV4eVdXcHJRbGhyY25aUmJDOUxhRTg1WTJacVRYcHRVMlZ0UzJocWEwVkdOZ3BJTm5aUFFUQlhMM0Y0YmtkSFZVUTRjVUoxUXpKRloySXZlVmh4VDFWSGJsbzBZWHBOUVM5NFR6aHZja3BRVkhRMFVVdERRVkZGUVRGMmRXRjZRamh5Q205VVQwaDNOVTB4ZEU5eVJUWXJWRzl6WmpRNE5UbDFaVUZKYzBzd09FcDJhWGgxYnpjeFR6Uk1kWGxKZUROS1dHMHlSVWhITmpVNE5XaHJlbXM1VDJZS0t6UkpjRlp1VEZGTFFXTXlLMk5IYlRRME9VNVhaMVV3Y1c1SVREUk5UMmRpTm5aQ1RWSlNjbXRqWmpaVFlVaE9VbFZFVFRCSVJHdFNkMWRRY0RobFNRb3JaMjlXY3psYVEyeERWV013VlhBM1FuRlhWR2hhZWxsU2JWbDNOemhUV0ZBcmFtaFhaRU5CUTFVeU1XTTVNbmRrWlVOeGFUTTVkVXBNYm1KUlZEUTJDbmRNUzNOb1drdHFibFpWUlhCbFNucFNibkZMWms5VFZ6TTNXSEl2ZEdkTmExSjVVa1J6TDFCWlpuUXZkbkpJVUZVMmIyeDJiWFZaVVVWblIzbHRaMDBLVm5WTVNWSndWa1pFVnpjelV6Wm5jQ3RVWW1odGVVVk9aWGhUUmxscWVITlRiM2gzU2pKTkwwZHNUV2xpVXpaRVZXZzRXakV6VDJKVFJHRkVRMk5oWlFwbGJ6TjNkamdyUlhrNWVHVk1VVXREUVZGRlFUUjRTVXh1ZDA1M2QwUkJSVUpPWTBsWWJGWkRNVEZqV1VSUlQxZDJTbkZOVkVoVE1YZ3hMM2hsU25aTUNrdHRhMDEzYm0xYU5uUjNPRXRTUjFKR2NWSlljalZ5TW1SemVVb3dlSEJDWTB0bGRtMDBVV2hhY2psaVZreDJiRzR6UWpKTVZIZGtNbU5aUlRablJrNEtNRE5IYVRkT1VIaFNOME54WVdsT2NqQjJTRU5sU1VweFkwZzVabU5STm5Wc1RVcHRXbkJVZG01cVNVdDJOM0ZOUVd4QkszUlpUMlYyYlN0WU1VUjNSd3BJVWpSVWVIRjFjMDB3VW1VeldHbFdUMEpyUkhCWGJUaHZlVk16TkVoemJVWTRkR0YwZVhwUk1GUXhZM1puZVdrdmFHcERPRk5WZVVSMWIxUnFUVlY2Q2xaMWIwaHpWSEE0WlVneFNFVk9hVk5YYkZOUGMxZFZXR3h6YUVWeU5UbFFOSEZCVm1STU9VcGxPUzlDWmxGeU5VaE1jRE5GTlN0RlQxVmhiR2xuVDFFS1JrOW5jRkkyVGxGTGRVeHhiemxhY1hkV1FuVTFZMGhMUlZkSWJ6TkVTVzgzYWxONVFqRTNaRmwzUzBOQlVVRktiV1l3YXpWeVRqbEtTamhKY0doa09Bb3JRWFJLWldSVVIzUnNUV3RET1ZBemRFUTBUV3BTSzAxT0wxVkphekZYYW1sME4yeEJXRGxYUzJwUk1rVlZiakIzVDFacU1HTjZVVmc1VkZkNmNGQnlDbHBpT0Znd2IxWlJibTlNVnpWWGNXWjJhWFJpTkRSRVZESXZhbkExZWpaVGNWUnlUbVJTVDBVMU1ISXJaVVI0U25rM04wcDNTV2x0YldwTGVqaEljbE1LZDFGSFZHVXhPRnBSWlZobWVuTjRLMEZIZUhCSFVDdHJWa0pPVldad1NuQldMMWxzYzFvMFF6bGpSRWxOUXpOTlMwSjZXbmRvZVM5d1NITXJSQzl0VFFwMWJFcFdNR3hLVW5OSlJtczJTbE4zWTNsRFUwcHFXVkpsVWxGc1pFUlRVRGRNY1dNeWNsbHRlRElyWlVoS1NWWk9UMHBSZDJWeWFrdHZaa1pXZWpsYUNsSlVOVFJQTkRrNFYwODBhMnB2Y0dGc0sxVktTMU5sZUVGTGNURndOa2xYTWl0WGNYVkxkMWQ1T1hKTmJUVlpkekpJV25KNGJHOXViMUpXUTJrNVRXb0taemRyVmtGdlNVSkJVVVJoVDB4S2QySkVZMFZxUjBObldXbFBTblpRYWxONVRVY3hZVUpwUzFGNVJFbE1XRmQ0UjFCVFVXa3pSSGd6YVd4RlJVOWpjQW92WlZCWVQwTnRkV281ZDNoVFNWUkxXVkZIYm01c2FqZHphblZxUVhCWGVrUXZNM1UzWmtSamFrcEZWMGxsYzNsTFozSTBPVXN6Wkc5b01FazJlSEUzQ2xsbU5EQnhUSFp5Tm5sdFVUbFJlbW81Y0ZVM2NYWmtLM2RYUkRFdmRscFdiWGhSV0dSSGEzWnZMM3BSU25GRU9YUllUVGx3VkRObE5UbFFjbTR6Y1V3S1ptODJTVEl5VkZWc056SlpWRFJxV2xwUFZrNHlRM2RuZFNzM0wydFNUbEp6TVRSWmVYbzBkRmx3UTJWbVltVm5LemRaTUVkRFUyaDROa2xETkdkc1ZBcEtiSEZSZUhkSVNIa3ZSMmxpUm5kRFRGazVUa1pLWTB0WVpubG5lVmRGVDNGc2FHbEhjRk5VTVcxUGRuVlRTM2xvVFVZNFdreFpiMVZaUjNsa2FrbExDazVUT1RSeGQzcEliMk4zYVVKR05UQXpRbkZWTWpaUVdWbFZOR2x3VkcxMlFXOUpRa0ZDUzFocVRDdG1kMHRvWVRjelJYTTJTVGRFWVdNMVkxcFBVemNLTTB0aFVXSTVTbEZtVTFkc04wWkdSbG80ZEZRd05VSjBXRWxqZUVOWldETkhRWHBWWXk5R1ZGZE1iRUpYZEVKMWJ6TTVWREY0YlhKMWJ6TlVkV3gwV2dwRlNuQkZhMkZtVUhaUlltWlBXVzF1VGpGeGExZFZSVTV5VXpReU5tbFNiVUl3TW05clVWRlhiV2szUW5kbEwzWk1Ta2ROVkRNMmJFbHhhRkV6ZG5WdUNtNDNTRVExVlVKR1MxWXlRM0JHWjFSVlZscE5Za3RvTlZoUWVFMVRZV0ZKTmtkbkwwdzNPVnBuWkU1cU4xRkljekZtZEd0WWFGWk5OVk52VVVoVFdEa0tSbVV4VVdkeU5Ga3liMVF2YkRKc2FVMTNkRUl4VUVnMU9YVnlZMUI1WTJsQ01qWlVORXR6TlZWUE5XdHhRWEZXUzJjeVIySlpXR3hUV2tSaE0yVlVaUW8yV1d0V1RWQlBTVWRUZWxsYWNFaFhlRVZRWVVOVFNrRTJWRVpqTUZCU05GVXdURFZ0V2twRlIwWkNOV3RxVGs1SFkzSTJZems1TjNJNFFUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogN3Y0NW43aThyZjM1MDJocXg3MmN1djV5YTdldTV0a3pnd2NkOHgyYjZ4MnlndHR4cjU0NWFicm56cWE4Z3FpOG0zOWFzd2Rwbjg3eDNvenl6eTEzMXV6cW4xOHFiaGt0eHBuZmFzY2RtZ2Fqazh1MTRneWFmYXJtZjNtbnRmaHEK\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSVEhSTFoxWlhhMU4wYVVaUWQzZGhTbHBMTlZWVmFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYbE5SRTAwVGtSa1lVZEJPSGxOUkZWNlRVUlplRTVFU1hkT1JHY3dUakZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOM0NqRlljR2xxVFhjcmNqZE5UMDFGV2pKV1FqZHVXbUZhZVVOQlVTdHZNVXgzWjJoRFRFRXdNVEZzZEVsME1XUjFia280T1cwNGFYa3hTMjVLTHpOWE4wMEtUR2RNVEhoUFp6RXlhR00xYjJ4TlpHWnZZMXBpUnpGclRWZDVUVEJxTkd0emVrRlVWSGx3YzAxV1duZERjVVJVV0d0bU4xSnJTVkJITlZkbVR6aFNNd3B4VlVaQ2NVRlJjbWhDTUdsV2NVbE5OMEkxTW05NFYzWldRM280VVRJclJIaHVkR0U0TVc5bWFUaGtjR1ExZFhKNVIzQkxNV2REUVdGb2VtaFJVVTloQ21NdlUzWmhWV1pKVERSS1kwMVdjR1JoV1ZoallqTldTazh4TW5saWQxSjNhRFkxZUdOTE9YZHNka1JKVDFWQlltb3JRM0JyV0RoUmMxTmFUVTF5TVVJS1dtWkVNMGhJYjFWUGRqQkpNRlpsUjJ4alpVVnFTVFE0V0dnclNITnFlR05zVFc1S2IxbFRlVU41WWt4c2JWVjBOR1E1YzNZeFF5OXBVVXg1VjFGQ1Z3cDRSazlvT0RkRlpXNTVXRTQ1WWtWRU1HZFdVM2x1Tld3eFoxcFZVVkJYUW1Sd056ZE5TV013WmtWM1JTOUtTR0ZHTkdWVE9XRnRhREpoWm5KdlRtcHpDamhNZUZBdmRqZGlPRlpNVW0xdE1WTkxMME53V2xkR2IyVnhLMEpUV0hwNmNIbDJXV2d4Vm10amN6bFliM3BTVlN0U2VqZG1jRkkwUkZwSGFFb3dOMlVLUjBRM1dHSlVNVEZGUVdGVlFsbFFkM0Z1Yml0RGFsZFhaMjU0Vm5sSFRGRkRiME5QVlcxaU9VaHZaRkkyZGpoV1NTOHlVRmc0VmpkeGFFeFJVMUYwYmdwYVNYaFFSVUZrTjJKdlF6SjVWSFJPV1M5SmNVZFpXRnBuYzIweFpsbENkM0pDVXpoTllucERNU3RGU0VSdVdVbG5iRTlPVnpCSmVGWk9TMUV4Um1Gb0NrWTJiR05pWWpodlJrMTRSVk5YTmpGRmEydDVkRGhOY2xreE5tMUVTMXAwWXpOb1NVeHlTbXh4YTJ3MGVFbzBObUUxVVROeE1UQnJhMGd3V2pGVmJtZ0taM3BMYVdOYUx6VXJPRTFSUVVaVE4xWTJUWGxIT1dOTVJETnVhV2gzYTNoaU0zWkNZWGxGY1VwUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWRFZEbDRjbVZMUkhsUFVsTjFSbE16Q21odFRrdzFiakJITW05bmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGSVMwZGxVakZoVmt3NGVtWnJOR3RUZDJ3d1JqVlhTRVJMWkVJS1l6UlRaVmxCVUZwVlIxaFBjMmxrV0VWc09XaFVTRmdyVDFFMmVEbERUVUZEV0cxTVZFdEZXR041YlhoNVEybzBhV3RET0VkR2JtRkxWakJzWmt4aWRRb3hOMFJ3Tm1ONVMxTlpWVGd2VkZWVEwzVkxVa013V0N0b1V6SnFUa2c0Wlc0eFMxSjFaRmxaVjJ4a1RHTm5jR3BxUVc5dWMzTklPR2h1TkdkeWR6aHpDa1ZrUzBWT2JrUTVaSE5JUlc5TloxQm5UakZvWlVsRFRTczRZMjF4ZVVzeVdXUkxXRll2ZEVaM01XUXdXVEZtYTFoWGJVdG5aRlkzVEUxUVdXbExjelFLTHpZMmFreHFZekEyTVZGeU9VSlNVbTgwTVRCWGFtUXhXRFl6ZWxKT2NubE5abk5FZVVSbU9GTTBZVVkzVjBKVVpXUlRWMGRuTmpCRU5HTkVOMGQ0YlFwVE5qZzJVWGQ0YjJSRFRrTnNObVJFYjJvdk1TOXBiWFZUVDJKM1FVMTNNamR3U1drMFpUUlZZbmh2V20xVFoyZFhRekJzYjFOS1QwUmhlSEZpTTJWeENuaFVVSGhhYUZNNFNFSkZNSFJwZUZNeVJEaDZPSFZTTWxWcE0zaHZkVll6Tm1NNE0ydHFTR0owZWxWUlZFUjNMMnhYWWtWalZHeE5aek4zVlRodmQwNEtlbnBvVTFCNFZUaE9hMkpRTjNkeVVXSkNkV0pNVFVGYVExRnNTVTVHVEdacFNrSkxaVFpNVW5SYU5sUjRNRGhtWVdJMVJtdDBVV2xwY2xaRmMyaG1ad3BQTUZZMFducGFaVFV6ZWtsM1IwTjVSVTVDVGxkSFNIWlVUSE5OY0VORmFGbGFWVGR2YzI4MGRqQm9TblZwZW5aVlFYRnhiR1F4WmtOVVdYRm1iblF2Q25WR1NHSlRSRk5OWTB0d1NYQnBiVWxHZHpCd1IxSk1WbkZFVFhGa1oyaGlSelprU2xreFlsbzBWV2c1TUdOalUwNUtia3hpUzBKa1oxQmxhRU4zT1U4S01Vc3dkMEUyZVhkTk5EWnNjR0pTZUdFNWJEZHdhMVZPTms1VmMwOXNhVGxCVkRsVE1uaE5kRXB1TDFGWWVtUm9WV3A2VVVkTlRuWjBjMG94YlhGbFRRcDFPVzF4T0had2VtVjZNU3N4VXpCSUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2pzeXc0YzItOGE1Nzd3aDQuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RnY3RkYzIKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RnY3RkYzIKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3R3bXhlZmQ3bXF6X2NsaWFrc3Rlc3RnY3RkYzIKICBuYW1lOiBjbGlha3N0ZXN0Z2N0ZGMyCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGdjdGRjMgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3R3bXhlZmQ3bXF6X2NsaWFrc3Rlc3RnY3RkYzIKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJUbkpqTlRKNFNqTkpiWFl2Y1dwM1dDOUJSemwyUkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVVhsTlJFMDBUa1JrWVVaM01IbE9WRUV5VFZSUmVVMUVVVFJPUkdSaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJKYURSblpIQndZVmRLYURSQk1IbHlkbTFPZEhnS2NVY3ZOR3BLTWtOcFVIZFhjMDB4VVZoc01VNUJiRUZGSzIxMVVWRm5LM3BtUkdObGJHeHNRMlp0TjNod1IyWktlVVZSTWtoYWFHRjVTRWRFY0hWaFR3cG9TbmxOWldFclRtdDFiemhWUVhsaVUycGtheTlaY0c0NWIxRmtlSGQ0YmpKV1lWcGtWSE14T0c5WGR6TnJOak5YWjI1TGFDOVNiSFE1ZDNwTGJYRkdDbmhaTlRCVlZXb3JaM0IxV0dWWGFFRjNORXhVWkVOQ2FqRlhNMm93V1hWMVRrZG1TMk5RUzNsUGQzUXZOekptV0ZsclFXMXlWbEpNZFZKMFFrVnhOV3NLZEdKeWNYQlZXbEl4YXl0b2R6Vk5hR3RNU1dkbmFVY3JXRXB0ZVhRMmJEQXZTR1prUkcxeGRVVkdOM2hrY1VaeFdrVjZlbGRHTnpsYU16TmlWelZKWndwQ1JHZHVXVEJLY1RrMGIwaFdPVUpqWW5vclpuTkhhMUZ4UlRWWWQxUkVTbEYyYTBzNWEwdENiR1pYYjIxVlZWSnBSelozZVV4SlZVdDZXbE4yT0dOVENrZFRPUzlGTW5kVlRFcEVLMXBDY0ZaT1EzVmxjR1JhV25aQmRsQmtOVGhPVG5SbE5URk1aVlJoZW1GbFFraEtSa3hoYW1GMkswSnhiRWRIVW5nelNVMEtRV0kzYjNRdmIweFNhalJST1VoYVpUbDNXa3hUY0Rkd1VUSTJaV2t2TW5kbU1sRldSMHc0UzFJclowUlZjMUJQWm10ak1IRTFiR2t4T1N0bFJtRnhRUXAyVVd4VVpVTmhiM0JCTkdGMGR6SnhSVTlTWTBKVVpWQkxOVUZFVTAxbVFqY3JURVpZT1RKb0szZE1MM1V5VDBWM1VEaEhXRE00WVdsdU1WZ3JVQ3RSQ25CU1ZTOUNRVmx6Um14SlEyZFdhemhJZWxkSVdYQmxhV3hSWkVreGNuQnBUMHRrVlM4ck9GTnRhMlpMYTNFd1Z6QldWMlZDV1dWa1pGTmpjbTluVlhvS1FsRm1hSG8wTDFobFFuZGhjSGQxVkd0NGQxRjFWVTlLZEd4YWVrdFdaakJxTVZWS1lYUkhWMW96UlhadGJHTlFRVlF5WW5WTk9VaEdUR3RtYjFoRVlnb3Zka2xNVlRsamFWZDVWbU5UUVZFd1FsRkJZbU4zU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEZLVUROSGREUnZVRWtLTlVaTE5GWk1aVWRaTUhadFpsRmlZV2xFUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZITjNONmJucHRTV3MwVm1vd1NEaFVSVTVsVlFweFdYZGFjR1JVYnpWUGRFVk5ZblF3VldoT1ZqbE9WWGhZWlZwMVVtcDZiV0Z4YjFab1lsQXJWRVpDUzBZdmMwMU9iakpJZVRoc2VFSnFlVmc1TnpCVENrOXlOVk16WlRCR1dHRnZTMDlLVVU5clRsQlFka0ZPZGtSbmVuWk9RVEpXTTI5ck9VRjBUbEZOUVhkTU5FZG1XVGxZWlZsdksxUTBlbnAzV1RocWJFTUthMFlyUjFjeE9ESnpSM0JXZFdkWFYzWnBjMDAyYjFSbFYwcG1Ra2xoVXpKVlRWTkxTVTVhWlcxMFJtcFdTbmxNWVdoSlkyWkVaaXM0VGpKUmIzZGFTQXB3Uml0MFJYbDJWRTl4VjBOMlNFMUdhRmR4VTBWMFZuRk1lVFV5T1hFNFR6UkZZa1pFVDFwM1dYZERkbkZWTVVnMVJEQTRXRzF3WTB4TlV6UndWa0V2Q21wSU9ITlNZbEpKUmxscU5EQXdkRUZZV25SeU0wdDJLM055ZDNVME5qRTFTVGxYTHpKMFZuUldkamRxTTNnMFZEbFZSM2RqTTFkQlYxVnZXSEoxWmxrS1RrVjJhVFpNYUN0YWRrWlVUbXRCY0RjdlltaFVWMUozUkdwUlJFVmFia2t2VWpCbE5VOHlXRFpKVm5Od1lWWkNXRlJoZFhwdlNVRmxZMmt2UkRVMlV3cGxkMGswUzNoTFpqSnhVek0zV25OWVdtMTNOVTF6ZEhKeVFYcEhjRkJFV1RRNWEwNVVWU3ROUTNRck1tSkdhekI1TURCeFNGaDRRbmx2Um1OVEx6bERDbUphWVUxRFVIaHFlREI0ZG1jck5YUm5RV2RqYVVGbVRGZzNOalZPYjJWa1VFWmlaSEpOUVdOdE56UndRVWN2U2preGNpdHJVbWxDU2xCdGRrSklRM1VLWjJaMVFtYzNRa1JvYzJaR1pWWnZablJJTUVOalpIUjZRMEkwVEdaelZqVnZNa0pzT1hscmEzZEdUMnhKWjFsamNucFRUV1F4TkVRemFteFFaMk5HU2dwRFFqWk9jbkJMU21JNFl6QTNaWFJOWW1aWk5GSkpXamxGUXpkWU5raENhV0Z1VW5wdU1uUXpXRlJ1V0hselpuTTVOVUprWVRVeGF6TmpUMUYzYVhsRUNqTm9abWhMZW5VeFdrdDNhamhHVDBwbU9XbEtiM1JOUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZVVsbFNVaGhZVmRzYVZsbFFVNU5jVGMxYW1KallXaDJLMGw1WkdkdmFqaEdja1JPVlVZMVpGUlJTbEZDVUhCeUNtdEZTVkJ6TTNjelNIQmFXbEZ1TlhVNFlWSnVlV05vUlU1b01sbFhjMmg0WnpaaWJXcHZVMk5xU0cxMmFscE1jVkJHUVUxdE1HOHpXbEF5UzFvdllVVUtTR05qVFZvNWJGZHRXRlUzVG1aTFJuTk9OVTkwTVc5S2VXOW1NRnBpWm1OTmVYQnhhR05YVDJSR1Jra3ZiMHRpYkROc2IxRk5UME13TTFGbldUbFdkQW8wT1VkTWNtcFNibmx1UkhsemFuTk1aaXM1YmpFeVNrRktjVEZWVXpkcllsRlNTM1ZhVEZjMk5uRldSMVZrV2xCdlkwOVVTVnBEZVVsSlNXaDJiSGxhQ25OeVpYQmtVSGd6TTFFMWNYSm9RbVU0V0dGb1lXMVNUVGd4YUdVdlYyUTVNakYxVTBsQlVUUktNazVEWVhabFMwSXhabEZZUnpndmJqZENjRVZMYUU4S1ZqaEZkM2xWVERWRGRscERaMXBZTVhGS2JFWkZXV2gxYzAxcGVVWkRjekpWY2k5SVJXaHJkbVo0VG5OR1EzbFJMMjFSWVZaVVVYSnVjVmhYVjJKM1RBcDZNMlZtUkZSaVdIVmtVek5yTW5NeWJtZFNlVkpUTW04eWNpOW5ZWEJTYUd0alpIbEVRVWNyTmt4bU5rTXdXU3RGVUZJeVdIWmpSMU13Y1dVMlZVNTFDbTV2ZGpselNEbHJSbEpwTDBOclptOUJNVXhFZW00MVNFNUxkVnBaZEdabWJtaFhjV2RNTUVwVk0yZHRjVXRSVDBkeVkwNXhhRVJyV0VGVk0ycDVkVkVLUVRCcVNIZGxMMmw0Vmk5a2IyWnpReTgzZEdwb1RVUXZRbXc1TDBkdmNEbFdMMm92YTB0VlZsQjNVVWRNUWxwVFFXOUdXbEJDT0RGb01rdFliM0JWU0FwVFRtRTJXV3BwYmxaUUwzWkZjSEJJZVhCTGRFWjBSbFp1WjFkSWJsaFZia3MyU1VaTmQxVklOR01yVURFeloyTkhjV05NYXpWTlkwVk1iRVJwWWxwWENtTjViRmc1U1RsV1ExZHlVbXh0WkhoTU5YQllSSGRGT1cwM2FsQlNlRk0xU0RaR2R6SXZOM2xETVZCWVNXeHpiRmhGWjBWT1FWVkJSek5OUTBGM1JVRUtRVkZMUTBGblFUVTNXVEJSYnpkTlZYQlBXVGszYzB0VlprWXZTVTFhVWtoQ1RHWnliMWszVWt4NmJtZFpZVWx4VVU5VVJYa3lTMUJTWTFseVdERkxPQW8zTUc1U2RqVjRiRU5qTVVKeFUzbHlVbFpzYUhkRk1uRmliV2hxS3pCTlQwRlphMHBMVFhWd2NVdFpOM0JtUkdsd05uUXpOVTl4T1dZeVlrTkRWRXhRQ2tkbFMwVTNkelZZZW1GRFNISjFZblJNZFVWWVJWVnVNMHhsVjJaNGVsbHFkU3RsVDFCclUyTlBWMGswWXpCSmVuVXpVWFkwZEZCbU5FRlRkSGxyTTBJS1YxZGxRM1pVVUZKUVYwOVBRVXd2ZG1KR2NsSnNVMDlsV2t4emEwNUxkRTlhV0dkMU5DczBWa2RPTlVRM0wzcEdSREZMV1VoNkx6Tk9URGh5U1VaUGRnbzVRalF4VFd3eE5pc3pOR1J6WlZCWk1rVndOR2RhUlVZNFUyOUNVR0ppVEVObk1rSjNVV2xMYm00NUsyUkdVelF5VFd4Q1IzQXlia1pDVURONkwxVktDbWxoU1d0MFUwWkhSbmxEZDNNcmVtd3ZUbEZWY0ROalJqWkphV3N5Y0ZCaFZXTnlWVkJ2Tm1wVWNGWkNSbVZhTlZsNVQyaEJjRnBoVXk5S2VqbExjVElLWjJ0eE0yb3pSVlpWTjNOWVEwZHVLMVZxTVVobmQyVktlVzV4WTFneFltczFRa3RKYlhBNEwyRlphMmhGZUhFck9WRXljRGxXY3pOTGFsVnFVM1pJU3dwWmRtSldkRVpKU1dWME1UTnpNekJ0UjJSRWVXd3dWVFowZEVsV1QyNUNTelppTms0Mk9VbENjamRUUzFadGJEZEZlbTU2WjNGdllWQnNjVTFXWVhZeENqUnllSEpPUVZrNFEyazFkRUZNY21aNGQwc3pkR3h5Um5SNVUyMUlWVXRSYjJoR1ZISkhVblZMZEU5cGJVUTBaMHd5TTB4WFdWbFdMMHBLYkRWUlNqZ0tTbk5CZDJjd1RtSlpRMkpYZVd4TFlYQTNWVVZDTkV0Wk5FSTVPWEJxVDNoa1lWb3JTV1k1VG1ZM2RFMVdObWxLYW1aWFRrZFJVbk5oVmtsT1NsUlJlZ3BvYmlzeGFUWTVUMDl5ZEdGemNHY3JVMmdyWmtOb1MxZG5ZM3BNT0Vad2RHTkNZeTlZV1U0eU1VUTNZa1ZvYkhrMFVVdERRVkZGUVRod1pFb3dVRzgzQ2xsclpXbEZjRmt6VGtwSmIxUjNhbGxFTlhRNVJHUmFVbTlHWWtOWmRXNTZkVXhXTjFsdmJVcG5kbVpaYjNCbk1rNUxNVk0wZEU5WldrOTFkMlZyZWtVS1kxVTVTeTlOY1c1NGRURXZOVlJZTkZoQ0wxUkxPWGRsUkZsVlluRk9jRWcwWTNaMUsybE1OakpNUmxFcmRtcFlLMkUzY0cxTFFteFlNV3MwVDJsRU5BcDZORTVsTldadVdXVXliVlJSVkcxQ01FWTNkM1ptZFhCcUwxUlFjVFZ6V2xwdWFVeEhhRmxEZFU1eE9HSmFTM0ZoWnpCRFpHTnVMM1ZKWmtGUlRGaGtDbUppY0VjNGRtTldjR1JEVTNwV1JrNHpNRGRzTkZkWVMycHlUSE5VTkM5a1VWUXdXVnAwVEN0clpIbGlRbWhqVURBclMxRkNOMUZTWjJzM1YxTnBlbFlLWWpkWGRVUkVkbkJFVlZWeFdXTTNibFJ4YkhnME1tdGFSMlJrVUVWWVVuaEhWRlJRVEdkdkwyUnJSR3hhTDB0dlptSlFOVFo0TjNodVJrRkJTa2xqVFFwa1YyUXljM2xYTVhsUmEwMDFVVXREUVZGRlFUQTFNRkZYVm5wV1VWaFdVRXRLUWt0dlpuRkNibmxxUVZsMFZrc3JUbHB5U0dOMmVITndWMlZETmtsbENscDNOSFI2VFVSU2N6aE1ZV0UzYkRkTVNuSnNkRzF6TUdGcFZYVmlRbmxRUVUwemNrUnBLMWhvZWxSeU5IWmpRV2h0ZG5OV2NWcG9Vbk5WWWpCWWNVSUtkMVJXZEZCeFZGcHpjRnBSWTNoclMzQnZUM2xZTlRGU2VXcE5SV05yVDNsQlQzQmpRWEJSUmlzclptdHVjRUprU0RkRlVtNUdaVnB4WkdkQ05WQk9hUW94UmxGeUwxSjNRbkZHVW5CMWRGQk9USGd2UVZrd1VucFRZVkl2ZWxSWFNFZGlObVpSVlhWSVRXZDZUVXBYVTNGSGExSXJjblE0YVRnNVF5ODNaa3hqQ21nelMxWm5SRXRVVmtGdVNpOUZUbUo1Tnl0d01rTnZTMUZyVDBsRWNHNVJiMGxwYkhFd1J6Rk5hR1UxVFdjeUx6WlVSU3RxZHpaRVRXeExURTR4YUZFS1pteG5XV2xUYlZnNFRHbFZkVkpNWjNadk1FTjBZVUpzYkdsQlpERnZPRTVQTTBFeldGcHVXbVIzUzBOQlVVSjNLMUJPZGxad2EwSkZPSEoxVkZCWk5BcHFWR2R2Vm1vMFNWSnhhbVZKVFdsNWJYSlROM2syWlhOb1VtVkpjeTlTVDBGWk0zQmhiV3RVTjNkUFEycHVaVko1UWtSUVdUWkRORUVyTUhZdlJrSldDakkxVTB3NFlUVlFaVXRMYlRoclRYTnRTMmhuTkdkYVNIRlBhMHB2TDBOa2NWUllSa3R6TW5CblZVNVllVXB3Y3pWUFprTmhhMmd3YlhkRkszRkVUMmNLYUZoSlIwWm1ibGRTSzBKc1IxTllSak5KVVRWeWJXdE9lREpXUVV0TEwzSXhha2RhT1ZsMFdFSXJaakZaY2xOelFYTjNUbFp4VW1aNlZHWjBVR2hRWlFwMlJuTm9UWEJRU2xGeWVtSlZjMUZhTkVWclkxcERjblJxY2pSdFdrZDNXa1ZXZEVGWmN6QkZTalphWW1OQloxaFlkems0VXpWVE5rTlRiV050VDI1WUNsQkVZVmxvWm5CRFREZGlValpOWlM5MVVEQm9ZVGxEWm5CSVFUTlRTalV4VHpWUFdqZFBPVFpYY1RSM1UwdEVURFJ3VjNWaVVsaHZUblEyV1ZoNE9XZ0tSamd6YUVGdlNVSkJSRVZRV25WNmR6UjBaM05PUlM4MVRTOVNaSFZhVDBkNFUwOXJkelUzZUZKNVFTOVhhV1pJU0VRNGFVNU9ORGR2VlRad1NGaFZTZ3B3WXpNek1FdEVSWGRMUlUxT1ltbDFTMmhqVTJZcmVqRXdTbk5ZVjFwQlZrdDFUVkl4VDA1V1VHaFFVWFY0YWtoT1pUTlpPSGxCZVVoTlR6ZFJSMVo0Q2tJdlNFaFRibkpWWVZwU1ZsTjBUVkZDVDFobk15OUljVmsyTms1V2RETlRTVEpVU0c0eU9YSm5LMDh4VVRSRWJTOVliSGhISzJGVFNsTnBibEkxVFZvS1JIWkpjbXBLVW5sVVp6UXhibTE2YVZsSFlscEdRblJhTkVZMGJ5OXZNRkl2Ym5Cck0ycE1PREJyYjBWdVdIWmtWamhJTkROcWRtZDVkSGhRTTFkNFRRcFpURWhHYUVKRE1uWk5MMHN6TVc5Q1oyaGxkMlpZWm1Ga2JEUXZLelY0UkdRNFNYUkJaVTB3WTFsaFJraE9SMkkxV0RkT1ZVMTNXamRKV2xGVFJrOWpDakUwTkZrelJsbFNTbmxIYjNORFUyZERXWEp0TWpOQ0sxVmlaVE53V0RCRFoyZEZRa0ZPYkVGUmFGUXlVbEpDZEhwNmJXVkxabWxHT0ZBM1VtNVVaSEFLTmxodVdtSmFRMEZKWTI4elNrNURaa0ZpTkVWT2FITlpZelJ2TTB4MllsWlJXSFUxU0RGUGRGVXpXU3RUWm1aSFJXZ3JNelV3VjNwemRHTkZia1YzWWdwMmIzVnpkREpDYW14TmNXVklaRWwzTkdkUU5raEVUVFpxWTFvd05tOXBVVGxaTXpOMGJEVldUM1ZzVlUxeE9HUk5WVVZHWkVZeVJsRktXVTEyWm0xNUNuRlVlbWhtTmsxclIzUlViRXR1VUhCMVdUQlRja1JQVUZkcmRWcGhWV1ZaUkRGYVdWaG9kekp0VVc5a01VbHJUVzlFVlhOdVdVUlRZalExUXpNeGRVY0tUMUl5WTJGa1ozUlFSVXN4TjNSeVptaElWbmxEVkVoQ1RqUmpXVFpzUXk5TFJqUkRVMmRLU1Zsb1RUVndabkYyWjB4NVJIaFpLM1YxV0ROeVozSlZVUW96ZGk4emFrNWpjVkoxVW1wemFUY3pObTFtYVU5Nk5tb3dWalZSUkZCbE9HNHJWbVpOYjNKRGRsQnBlRXB0WWxoSE5qSjNkVTV2YWxOcWN6MEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogM2pxdzc0OHdpNTU1djRzeW81NG8zeDBwajhuNTN3bXp4aG5pMHF4Zmo0ODkxYmZvYThqaDEwam4zeWQ5bmZwNmNyNmNnbDNnOTJtbXI2bDF5bXBzcjQyb25pbGVsbjh3eXUyZmg5ZGt1ODBiMjl4Yjlvb3Rpb3NqMWg0dmRvNTYK\"\ + \n }\n ]\n }" headers: cache-control: - no-cache @@ -996,7 +1008,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:34 GMT + - Wed, 14 Jun 2023 20:51:41 GMT expires: - '-1' pragma: @@ -1030,66 +1042,67 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-nlh7y6f3.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-nlh7y6f3.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n - \ \"label1\": \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": - \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/adb655ac-9d55-48da-9ac9-7c7b55c09a31\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-8a577wh4.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-8a577wh4.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7a1b08b3-3453-4b93-bbcc-2a52b7ea0f2c\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3981' + - '4309' content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:35 GMT + - Wed, 14 Jun 2023 20:51:42 GMT expires: - '-1' pragma: @@ -1108,24 +1121,23 @@ interactions: code: 200 message: OK - request: - body: '{"tags": {"key1": "value1"}, "location": "westus2", "sku": {"name": "Basic", + body: '{"tags": {"key1": "value1"}, "location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.24.9", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 3, + "1.25.6", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "nodeLabels": {"label1": "value1", "label2": "value2"}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, - "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", - "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/adb655ac-9d55-48da-9ac9-7c7b55c09a31"}]}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": + "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": true, "supportPlan": + "KubernetesOfficial", "networkProfile": {"networkPlugin": "kubenet", "podCidr": + "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": + {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7a1b08b3-3453-4b93-bbcc-2a52b7ea0f2c"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -1142,74 +1154,75 @@ interactions: Connection: - keep-alive Content-Length: - - '2580' + - '2908' Content-Type: - application/json ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-nlh7y6f3.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-nlh7y6f3.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n - \ \"label1\": \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": - \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/adb655ac-9d55-48da-9ac9-7c7b55c09a31\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-8a577wh4.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-8a577wh4.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7a1b08b3-3453-4b93-bbcc-2a52b7ea0f2c\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9af3219d-318e-4cd1-8764-3c60e7793502?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af84a5e8-fd70-4b96-bd6c-a599a11027f8?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3979' + - '4307' content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:39 GMT + - Wed, 14 Jun 2023 20:51:49 GMT expires: - '-1' pragma: @@ -1243,14 +1256,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9af3219d-318e-4cd1-8764-3c60e7793502?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af84a5e8-fd70-4b96-bd6c-a599a11027f8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9d21f39a-8e31-d14c-8764-3c60e7793502\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:00:39.2886841Z\"\n }" + string: "{\n \"name\": \"e8a584af-70fd-964b-bd6c-a599a11027f8\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:51:49.2920493Z\"\n }" headers: cache-control: - no-cache @@ -1259,7 +1272,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:01:08 GMT + - Wed, 14 Jun 2023 20:51:49 GMT expires: - '-1' pragma: @@ -1291,14 +1304,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9af3219d-318e-4cd1-8764-3c60e7793502?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af84a5e8-fd70-4b96-bd6c-a599a11027f8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9d21f39a-8e31-d14c-8764-3c60e7793502\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:00:39.2886841Z\"\n }" + string: "{\n \"name\": \"e8a584af-70fd-964b-bd6c-a599a11027f8\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:51:49.2920493Z\"\n }" headers: cache-control: - no-cache @@ -1307,7 +1320,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:01:38 GMT + - Wed, 14 Jun 2023 20:52:20 GMT expires: - '-1' pragma: @@ -1339,14 +1352,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9af3219d-318e-4cd1-8764-3c60e7793502?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af84a5e8-fd70-4b96-bd6c-a599a11027f8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9d21f39a-8e31-d14c-8764-3c60e7793502\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:00:39.2886841Z\"\n }" + string: "{\n \"name\": \"e8a584af-70fd-964b-bd6c-a599a11027f8\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:51:49.2920493Z\"\n }" headers: cache-control: - no-cache @@ -1355,7 +1368,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:02:08 GMT + - Wed, 14 Jun 2023 20:52:50 GMT expires: - '-1' pragma: @@ -1387,14 +1400,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9af3219d-318e-4cd1-8764-3c60e7793502?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af84a5e8-fd70-4b96-bd6c-a599a11027f8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9d21f39a-8e31-d14c-8764-3c60e7793502\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:00:39.2886841Z\"\n }" + string: "{\n \"name\": \"e8a584af-70fd-964b-bd6c-a599a11027f8\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:51:49.2920493Z\"\n }" headers: cache-control: - no-cache @@ -1403,7 +1416,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:02:39 GMT + - Wed, 14 Jun 2023 20:53:20 GMT expires: - '-1' pragma: @@ -1435,14 +1448,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9af3219d-318e-4cd1-8764-3c60e7793502?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af84a5e8-fd70-4b96-bd6c-a599a11027f8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9d21f39a-8e31-d14c-8764-3c60e7793502\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:00:39.2886841Z\"\n }" + string: "{\n \"name\": \"e8a584af-70fd-964b-bd6c-a599a11027f8\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:51:49.2920493Z\"\n }" headers: cache-control: - no-cache @@ -1451,7 +1464,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:03:09 GMT + - Wed, 14 Jun 2023 20:53:51 GMT expires: - '-1' pragma: @@ -1483,15 +1496,63 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9af3219d-318e-4cd1-8764-3c60e7793502?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af84a5e8-fd70-4b96-bd6c-a599a11027f8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9d21f39a-8e31-d14c-8764-3c60e7793502\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:00:39.2886841Z\",\n \"endTime\": - \"2023-03-15T10:03:13.9798873Z\"\n }" + string: "{\n \"name\": \"e8a584af-70fd-964b-bd6c-a599a11027f8\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:51:49.2920493Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 20:54:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af84a5e8-fd70-4b96-bd6c-a599a11027f8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e8a584af-70fd-964b-bd6c-a599a11027f8\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T20:51:49.2920493Z\",\n \"\ + endTime\": \"2023-06-14T20:54:34.1690892Z\"\n }" headers: cache-control: - no-cache @@ -1500,7 +1561,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:03:39 GMT + - Wed, 14 Jun 2023 20:54:50 GMT expires: - '-1' pragma: @@ -1532,66 +1593,67 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-nlh7y6f3.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-nlh7y6f3.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n - \ \"label1\": \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": - \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/adb655ac-9d55-48da-9ac9-7c7b55c09a31\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-8a577wh4.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-8a577wh4.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7a1b08b3-3453-4b93-bbcc-2a52b7ea0f2c\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3981' + - '4309' content-type: - application/json date: - - Wed, 15 Mar 2023 10:03:39 GMT + - Wed, 14 Jun 2023 20:54:51 GMT expires: - '-1' pragma: @@ -1623,66 +1685,67 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-nlh7y6f3.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-nlh7y6f3.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n - \ \"label1\": \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": - \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/adb655ac-9d55-48da-9ac9-7c7b55c09a31\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-8a577wh4.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-8a577wh4.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7a1b08b3-3453-4b93-bbcc-2a52b7ea0f2c\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3981' + - '4309' content-type: - application/json date: - - Wed, 15 Mar 2023 10:03:40 GMT + - Wed, 14 Jun 2023 20:54:53 GMT expires: - '-1' pragma: @@ -1716,8 +1779,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -1725,17 +1788,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a28f3b2-eec1-42ed-bbff-5958c20e85c9?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5f813d62-cc40-4121-85da-1ab4849610e4?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:03:41 GMT + - Wed, 14 Jun 2023 20:54:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/7a28f3b2-eec1-42ed-bbff-5958c20e85c9?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/5f813d62-cc40-4121-85da-1ab4849610e4?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_skip_role_assignment.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_skip_role_assignment.yaml old mode 100755 new mode 100644 index 624235146e6..0345482b404 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_skip_role_assignment.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_skip_role_assignment.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -n -g --address-prefix --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:03:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_default_service_with_skip_role_assignment","date":"2023-06-14T20:54:58Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '387' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:03:42 GMT + - Wed, 14 Jun 2023 20:55:03 GMT expires: - '-1' pragma: @@ -61,30 +61,32 @@ interactions: ParameterSetName: - -n -g --address-prefix --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"clivnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004\",\r\n - \ \"etag\": \"W/\\\"8ed8ff79-57b7-4dbf-b865-ac8adc74d354\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"ec0a823d-3978-4ba7-8794-228fc168edb9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n - \ {\r\n \"name\": \"clisubnet000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005\",\r\n - \ \"etag\": \"W/\\\"8ed8ff79-57b7-4dbf-b865-ac8adc74d354\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"192.168.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false\r\n }\r\n}" + string: "{\r\n \"name\": \"clivnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004\"\ + ,\r\n \"etag\": \"W/\\\"f20a3924-8d35-4698-b657-8ff3bed14920\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ + \ \"resourceGuid\": \"7966ba2b-76be-4742-bc02-eac7297fb8fa\",\r\n \"\ + addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\ + \r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\"\ + : \"clisubnet000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005\"\ + ,\r\n \"etag\": \"W/\\\"f20a3924-8d35-4698-b657-8ff3bed14920\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"addressPrefix\": \"192.168.0.0/24\",\r\n \"delegations\"\ + : [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\ + \n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/97be7a4f-61af-4a06-b7d4-4e8e47fc70ce?api-version=2022-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/32778602-a8e6-481b-8cc1-3152829f127d?api-version=2022-01-01 cache-control: - no-cache content-length: @@ -92,7 +94,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:03:42 GMT + - Wed, 14 Jun 2023 20:55:06 GMT expires: - '-1' pragma: @@ -105,7 +107,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7f3a1c07-89ec-41fb-9206-70a212859650 + - 66fb4275-c75f-4283-84b2-a239bbc63e20 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -125,9 +127,58 @@ interactions: ParameterSetName: - -n -g --address-prefix --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/97be7a4f-61af-4a06-b7d4-4e8e47fc70ce?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/32778602-a8e6-481b-8cc1-3152829f127d?api-version=2022-01-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 14 Jun 2023 20:55:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - e513dba0-6e19-42ce-b0e4-d1a6ca75186c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g --address-prefix --subnet-name --subnet-prefix + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/32778602-a8e6-481b-8cc1-3152829f127d?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -139,7 +190,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:03:45 GMT + - Wed, 14 Jun 2023 20:55:16 GMT expires: - '-1' pragma: @@ -156,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b96972fb-73bf-443b-8911-18597dfbf77a + - dde85edf-10b2-4404-af34-d27bb773fcf4 status: code: 200 message: OK @@ -174,25 +225,27 @@ interactions: ParameterSetName: - -n -g --address-prefix --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"clivnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004\",\r\n - \ \"etag\": \"W/\\\"d9fd2128-b3be-45f9-aa0a-f99103f75549\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"ec0a823d-3978-4ba7-8794-228fc168edb9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n - \ {\r\n \"name\": \"clisubnet000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005\",\r\n - \ \"etag\": \"W/\\\"d9fd2128-b3be-45f9-aa0a-f99103f75549\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"192.168.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false\r\n }\r\n}" + string: "{\r\n \"name\": \"clivnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004\"\ + ,\r\n \"etag\": \"W/\\\"4c27fd07-65e3-44d1-8cab-9011bf32bf1b\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ + \ \"resourceGuid\": \"7966ba2b-76be-4742-bc02-eac7297fb8fa\",\r\n \"\ + addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\ + \r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\"\ + : \"clisubnet000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005\"\ + ,\r\n \"etag\": \"W/\\\"4c27fd07-65e3-44d1-8cab-9011bf32bf1b\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"addressPrefix\": \"192.168.0.0/24\",\r\n \"delegations\"\ + : [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\ + \n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -201,9 +254,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:03:45 GMT + - Wed, 14 Jun 2023 20:55:16 GMT etag: - - W/"d9fd2128-b3be-45f9-aa0a-f99103f75549" + - W/"4c27fd07-65e3-44d1-8cab-9011bf32bf1b" expires: - '-1' pragma: @@ -220,7 +273,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b43737dc-435c-4e04-a97c-79ae68f73d93 + - 32ddec42-6ba8-4525-b815-d5a65ab0fb38 status: code: 200 message: OK @@ -239,8 +292,8 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: @@ -256,7 +309,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:03:46 GMT + - Wed, 14 Jun 2023 20:55:17 GMT expires: - '-1' pragma: @@ -272,7 +325,7 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliakstest-clitest34lzy6sps-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitesttyqxyjnxs-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": @@ -281,9 +334,8 @@ interactions: "enableFIPS": false, "name": "nodepool1"}], "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, - "storageProfile": {}}}' + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -294,63 +346,66 @@ interactions: Connection: - keep-alive Content-Length: - - '1201' + - '1164' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest34lzy6sps-79a739\",\n \"fqdn\": \"cliakstest-clitest34lzy6sps-79a739-jmitf4rd.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest34lzy6sps-79a739-jmitf4rd.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": - \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitesttyqxyjnxs-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesttyqxyjnxs-8ecadf-4j6zh44p.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesttyqxyjnxs-8ecadf-4j6zh44p.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/29c71ce8-e02c-4220-8f8d-11154b69b05c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/328783dd-be50-4ad3-9b90-b30317052dca?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2735' + - '2734' content-type: - application/json date: - - Wed, 15 Mar 2023 10:03:51 GMT + - Wed, 14 Jun 2023 20:55:26 GMT expires: - '-1' pragma: @@ -362,7 +417,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -381,14 +436,63 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/328783dd-be50-4ad3-9b90-b30317052dca?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"dd838732-50be-d34a-9b90-b30317052dca\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:55:26.8706649Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 20:55:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --node-count --service-principal --client-secret + --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/29c71ce8-e02c-4220-8f8d-11154b69b05c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/328783dd-be50-4ad3-9b90-b30317052dca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e81cc729-2ce0-2042-8f8d-11154b69b05c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:03:51.8203232Z\"\n }" + string: "{\n \"name\": \"dd838732-50be-d34a-9b90-b30317052dca\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:55:26.8706649Z\"\n }" headers: cache-control: - no-cache @@ -397,7 +501,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:04:21 GMT + - Wed, 14 Jun 2023 20:55:56 GMT expires: - '-1' pragma: @@ -430,14 +534,14 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/29c71ce8-e02c-4220-8f8d-11154b69b05c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/328783dd-be50-4ad3-9b90-b30317052dca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e81cc729-2ce0-2042-8f8d-11154b69b05c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:03:51.8203232Z\"\n }" + string: "{\n \"name\": \"dd838732-50be-d34a-9b90-b30317052dca\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:55:26.8706649Z\"\n }" headers: cache-control: - no-cache @@ -446,7 +550,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:04:52 GMT + - Wed, 14 Jun 2023 20:56:27 GMT expires: - '-1' pragma: @@ -479,14 +583,14 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/29c71ce8-e02c-4220-8f8d-11154b69b05c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/328783dd-be50-4ad3-9b90-b30317052dca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e81cc729-2ce0-2042-8f8d-11154b69b05c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:03:51.8203232Z\"\n }" + string: "{\n \"name\": \"dd838732-50be-d34a-9b90-b30317052dca\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:55:26.8706649Z\"\n }" headers: cache-control: - no-cache @@ -495,7 +599,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:05:22 GMT + - Wed, 14 Jun 2023 20:56:57 GMT expires: - '-1' pragma: @@ -528,14 +632,14 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/29c71ce8-e02c-4220-8f8d-11154b69b05c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/328783dd-be50-4ad3-9b90-b30317052dca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e81cc729-2ce0-2042-8f8d-11154b69b05c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:03:51.8203232Z\"\n }" + string: "{\n \"name\": \"dd838732-50be-d34a-9b90-b30317052dca\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:55:26.8706649Z\"\n }" headers: cache-control: - no-cache @@ -544,7 +648,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:05:52 GMT + - Wed, 14 Jun 2023 20:57:27 GMT expires: - '-1' pragma: @@ -577,14 +681,14 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/29c71ce8-e02c-4220-8f8d-11154b69b05c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/328783dd-be50-4ad3-9b90-b30317052dca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e81cc729-2ce0-2042-8f8d-11154b69b05c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:03:51.8203232Z\"\n }" + string: "{\n \"name\": \"dd838732-50be-d34a-9b90-b30317052dca\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:55:26.8706649Z\"\n }" headers: cache-control: - no-cache @@ -593,7 +697,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:06:22 GMT + - Wed, 14 Jun 2023 20:57:57 GMT expires: - '-1' pragma: @@ -626,14 +730,14 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/29c71ce8-e02c-4220-8f8d-11154b69b05c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/328783dd-be50-4ad3-9b90-b30317052dca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e81cc729-2ce0-2042-8f8d-11154b69b05c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:03:51.8203232Z\"\n }" + string: "{\n \"name\": \"dd838732-50be-d34a-9b90-b30317052dca\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:55:26.8706649Z\"\n }" headers: cache-control: - no-cache @@ -642,7 +746,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:06:51 GMT + - Wed, 14 Jun 2023 20:58:28 GMT expires: - '-1' pragma: @@ -675,15 +779,15 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/29c71ce8-e02c-4220-8f8d-11154b69b05c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/328783dd-be50-4ad3-9b90-b30317052dca?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e81cc729-2ce0-2042-8f8d-11154b69b05c\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:03:51.8203232Z\",\n \"endTime\": - \"2023-03-15T10:06:57.6874977Z\"\n }" + string: "{\n \"name\": \"dd838732-50be-d34a-9b90-b30317052dca\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T20:55:26.8706649Z\",\n \"\ + endTime\": \"2023-06-14T20:58:32.0484269Z\"\n }" headers: cache-control: - no-cache @@ -692,7 +796,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:07:21 GMT + - Wed, 14 Jun 2023 20:58:58 GMT expires: - '-1' pragma: @@ -725,56 +829,59 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest34lzy6sps-79a739\",\n \"fqdn\": \"cliakstest-clitest34lzy6sps-79a739-jmitf4rd.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest34lzy6sps-79a739-jmitf4rd.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/becb3339-1586-44e1-91c6-48bc8619b089\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitesttyqxyjnxs-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesttyqxyjnxs-8ecadf-4j6zh44p.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesttyqxyjnxs-8ecadf-4j6zh44p.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/825d24fa-e9a6-45cd-8082-7614da2ff696\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '2999' + - '2998' content-type: - application/json date: - - Wed, 15 Mar 2023 10:07:22 GMT + - Wed, 14 Jun 2023 20:58:59 GMT expires: - '-1' pragma: @@ -806,22 +913,38 @@ interactions: ParameterSetName: - --scope User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005/providers/Microsoft.Authorization/roleAssignments?$filter=atScope()&api-version=2022-04-01 response: body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-26T05:33:00.7067936Z","updatedOn":"2021-04-26T05:33:00.7067936Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2adf4737-6342-4f63-aeb2-5fcd3426a387","type":"Microsoft.Authorization/roleAssignments","name":"2adf4737-6342-4f63-aeb2-5fcd3426a387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-26T06:09:24.5972802Z","updatedOn":"2021-04-26T06:09:24.5972802Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4572c05-f69f-4e5c-aac6-79afefcf0e2e","type":"Microsoft.Authorization/roleAssignments","name":"c4572c05-f69f-4e5c-aac6-79afefcf0e2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-18T05:18:40.4643436Z","updatedOn":"2021-06-18T05:18:40.4643436Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f926301-cc14-4a88-a3b7-c159d73d01f6","type":"Microsoft.Authorization/roleAssignments","name":"3f926301-cc14-4a88-a3b7-c159d73d01f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:40.4541416Z","updatedOn":"2022-01-25T05:49:40.4541416Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/95e51146-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"95e51146-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:41.6466655Z","updatedOn":"2022-01-25T05:49:41.6466655Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96d4d041-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"96d4d041-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:42.8008295Z","updatedOn":"2022-01-25T05:49:42.8008295Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/978dbc52-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"978dbc52-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:43.7159467Z","updatedOn":"2022-01-25T05:49:43.7159467Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9808753a-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"9808753a-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:44.8535285Z","updatedOn":"2022-01-25T05:49:44.8535285Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9895826c-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"9895826c-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:21.9669611Z","updatedOn":"2022-01-25T06:00:21.9669611Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/143cab45-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"143cab45-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:21.7844500Z","updatedOn":"2022-01-25T06:00:21.7844500Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/143a47b2-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"143a47b2-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:22.8152511Z","updatedOn":"2022-01-25T06:00:22.8152511Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1503a122-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"1503a122-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:22.7549989Z","updatedOn":"2022-01-25T06:00:22.7549989Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14fdfc11-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"14fdfc11-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:47.5002672Z","updatedOn":"2022-01-25T06:00:47.5002672Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23901ba1-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"23901ba1-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:47.9954045Z","updatedOn":"2022-01-25T06:00:47.9954045Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23d4b2c8-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"23d4b2c8-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:48.0124462Z","updatedOn":"2022-01-25T06:00:48.0124462Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23eb1c2a-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"23eb1c2a-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:49.0142818Z","updatedOn":"2022-01-25T06:00:49.0142818Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/248c7804-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"248c7804-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:49.8561822Z","updatedOn":"2022-01-25T06:00:49.8561822Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/25212cc5-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"25212cc5-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:03:00.8232622Z","updatedOn":"2022-01-25T06:03:00.8232622Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/730ae441-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"730ae441-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:03:01.6908492Z","updatedOn":"2022-01-25T06:03:01.6908492Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/73b81c51-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"73b81c51-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:27.0646115Z","updatedOn":"2022-01-25T06:05:27.0646115Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca436279-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"ca436279-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:27.8245772Z","updatedOn":"2022-01-25T06:05:27.8245772Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cad7146c-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cad7146c-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:28.8193427Z","updatedOn":"2022-01-25T06:05:28.8193427Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cb6be874-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cb6be874-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:30.0125029Z","updatedOn":"2022-01-25T06:05:30.0125029Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc20f7f4-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cc20f7f4-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:31.2002633Z","updatedOn":"2022-01-25T06:05:31.2002633Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ccd748dd-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"ccd748dd-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:32.4937030Z","updatedOn":"2022-01-25T06:05:32.4937030Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd4bbd1a-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cd4bbd1a-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:33.6999970Z","updatedOn":"2022-01-25T06:05:33.6999970Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce56964e-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"ce56964e-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:35.3719606Z","updatedOn":"2022-01-25T06:05:35.3719606Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf53c36b-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cf53c36b-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:37.0989473Z","updatedOn":"2022-01-25T06:05:37.0989473Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0537e9f-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d0537e9f-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:37.9186616Z","updatedOn":"2022-01-25T06:05:37.9186616Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0d7c10e-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d0d7c10e-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:39.2245796Z","updatedOn":"2022-01-25T06:05:39.2245796Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d187dc7e-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d187dc7e-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:41.3147495Z","updatedOn":"2022-01-25T06:05:41.3147495Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2d190da-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d2d190da-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:42.0909979Z","updatedOn":"2022-01-25T06:05:42.0909979Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3553305-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d3553305-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T04:11:40.8923959Z","updatedOn":"2023-02-10T04:11:40.8923959Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b9cb4b1-7e07-4127-b87e-47e7ab8ae685","type":"Microsoft.Authorization/roleAssignments","name":"7b9cb4b1-7e07-4127-b87e-47e7ab8ae685"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-18T03:09:33.8702688Z","updatedOn":"2021-09-18T03:09:33.8702688Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99d6fd13-909e-4c52-807e-77f7a5af83c8","type":"Microsoft.Authorization/roleAssignments","name":"99d6fd13-909e-4c52-807e-77f7a5af83c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T17:23:35.8382756Z","updatedOn":"2021-10-08T17:23:35.8382756Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de/providers/Microsoft.Authorization/roleAssignments/ade4333c-4321-4b68-b498-d081d55e2b0c","type":"Microsoft.Authorization/roleAssignments","name":"ade4333c-4321-4b68-b498-d081d55e2b0c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9136073Z","updatedOn":"2019-03-26T22:01:02.9136073Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6f4de15e-9316-4714-a7c4-40c46cf8e067","type":"Microsoft.Authorization/roleAssignments","name":"6f4de15e-9316-4714-a7c4-40c46cf8e067"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:13.2137492Z","updatedOn":"2020-02-25T18:36:13.2137492Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/18fdd87e-1c01-424e-b380-32310f4940c2","type":"Microsoft.Authorization/roleAssignments","name":"18fdd87e-1c01-424e-b380-32310f4940c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:00.4746112Z","updatedOn":"2020-02-25T18:36:00.4746112Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d9bcf58a-6f24-446d-bf60-20ffe5142396","type":"Microsoft.Authorization/roleAssignments","name":"d9bcf58a-6f24-446d-bf60-20ffe5142396"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:55.7490022Z","updatedOn":"2020-02-25T18:35:55.7490022Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6e2b954b-42b2-48e0-997a-622601f0a4b4","type":"Microsoft.Authorization/roleAssignments","name":"6e2b954b-42b2-48e0-997a-622601f0a4b4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:57.9173081Z","updatedOn":"2020-02-25T18:35:57.9173081Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9","type":"Microsoft.Authorization/roleAssignments","name":"8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:23.0673659Z","updatedOn":"2020-02-25T18:36:23.0673659Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d0817c57-3e5b-4363-88b7-52baadd5c362","type":"Microsoft.Authorization/roleAssignments","name":"d0817c57-3e5b-4363-88b7-52baadd5c362"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:31.2596366Z","updatedOn":"2020-02-25T18:36:31.2596366Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0dabf212-a1c7-4af6-ba8b-be045493b368","type":"Microsoft.Authorization/roleAssignments","name":"0dabf212-a1c7-4af6-ba8b-be045493b368"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:52.9188704Z","updatedOn":"2020-02-25T18:35:52.9188704Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d674b853-332e-4437-9ddb-bba8fde7ccce","type":"Microsoft.Authorization/roleAssignments","name":"d674b853-332e-4437-9ddb-bba8fde7ccce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:38.8393742Z","updatedOn":"2020-02-25T18:36:38.8393742Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/00625383-053d-4227-a4db-b098e9bd2289","type":"Microsoft.Authorization/roleAssignments","name":"00625383-053d-4227-a4db-b098e9bd2289"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:05.0954462Z","updatedOn":"2020-02-25T18:36:05.0954462Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/3151fe9c-fcd2-45d3-a256-72fb13b86df5","type":"Microsoft.Authorization/roleAssignments","name":"3151fe9c-fcd2-45d3-a256-72fb13b86df5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-07-06T18:51:23.0753297Z","updatedOn":"2020-07-06T18:51:23.0753297Z","createdBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","updatedBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b3a9e1db-fde1-4ddd-ac1c-91913be67359","type":"Microsoft.Authorization/roleAssignments","name":"b3a9e1db-fde1-4ddd-ac1c-91913be67359"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T21:14:55.1655079Z","updatedOn":"2023-02-28T22:54:18.0450083Z","createdBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","updatedBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6565c104-61e2-5756-96d7-663b216c8b11","type":"Microsoft.Authorization/roleAssignments","name":"6565c104-61e2-5756-96d7-663b216c8b11"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-02-17T00:30:39.4967398Z","updatedOn":"2022-02-17T00:30:39.4967398Z","createdBy":"a4319ad3-20be-4542-8952-685b66e56377","updatedBy":"a4319ad3-20be-4542-8952-685b66e56377","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d8aedac6-3663-42b3-add4-c013b7935fb4","type":"Microsoft.Authorization/roleAssignments","name":"d8aedac6-3663-42b3-add4-c013b7935fb4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-03-02T23:53:39.1630622Z","updatedOn":"2022-03-02T23:53:39.1630622Z","createdBy":"a4319ad3-20be-4542-8952-685b66e56377","updatedBy":"a4319ad3-20be-4542-8952-685b66e56377","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b5f0a13f-ac13-4e45-8588-15f5d9a02b20","type":"Microsoft.Authorization/roleAssignments","name":"b5f0a13f-ac13-4e45-8588-15f5d9a02b20"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:58:05.8353141Z","updatedOn":"2022-03-08T00:58:05.8353141Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/403b97d1-ee0a-4b10-afe1-f36f368d2ced","type":"Microsoft.Authorization/roleAssignments","name":"403b97d1-ee0a-4b10-afe1-f36f368d2ced"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-05-16T23:08:20.8536608Z","updatedOn":"2022-05-16T23:08:20.8536608Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8b338a13-cfa6-42e6-b424-fb375ce9d07c","type":"Microsoft.Authorization/roleAssignments","name":"8b338a13-cfa6-42e6-b424-fb375ce9d07c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-05-17T18:23:54.2264851Z","updatedOn":"2022-05-31T17:20:00.8273681Z","createdBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","updatedBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f0576973-5014-5fe2-b3f2-cf3aace860d6","type":"Microsoft.Authorization/roleAssignments","name":"f0576973-5014-5fe2-b3f2-cf3aace860d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:21.3325762Z","updatedOn":"2022-07-19T00:07:21.3325762Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2697280b-812c-472d-841b-a10a9fe540a5","type":"Microsoft.Authorization/roleAssignments","name":"2697280b-812c-472d-841b-a10a9fe540a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:23.7020980Z","updatedOn":"2022-07-19T00:07:23.7020980Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f4254463-7a28-4d26-b331-5a18c354cbe6","type":"Microsoft.Authorization/roleAssignments","name":"f4254463-7a28-4d26-b331-5a18c354cbe6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:26.4080657Z","updatedOn":"2022-07-19T00:07:26.4080657Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/065a63ba-71cc-4c69-b92b-bc67421e7e64","type":"Microsoft.Authorization/roleAssignments","name":"065a63ba-71cc-4c69-b92b-bc67421e7e64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:33.0012805Z","updatedOn":"2021-08-09T18:17:33.0012805Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/01de8fe7-aae0-4d5c-844a-f0bdb8335252","type":"Microsoft.Authorization/roleAssignments","name":"01de8fe7-aae0-4d5c-844a-f0bdb8335252"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:39.9188336Z","updatedOn":"2021-08-09T18:17:39.9188336Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ab2be506-5489-4c1f-add0-f5ed87a10439","type":"Microsoft.Authorization/roleAssignments","name":"ab2be506-5489-4c1f-add0-f5ed87a10439"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:18.2000692Z","updatedOn":"2021-08-24T19:32:18.2000692Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0ce2f3fb-17ea-4193-9081-09aa4b39fec4","type":"Microsoft.Authorization/roleAssignments","name":"0ce2f3fb-17ea-4193-9081-09aa4b39fec4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:36.6775144Z","updatedOn":"2021-08-24T19:32:36.6775144Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2e95b289-99bd-4e68-83de-5433f2a0428c","type":"Microsoft.Authorization/roleAssignments","name":"2e95b289-99bd-4e68-83de-5433f2a0428c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:09.1056400Z","updatedOn":"2021-11-01T22:46:09.1056400Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/82fe7886-5c1b-42c2-9319-7b4d436d8aba","type":"Microsoft.Authorization/roleAssignments","name":"82fe7886-5c1b-42c2-9319-7b4d436d8aba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:14.7527743Z","updatedOn":"2021-11-01T22:46:14.7527743Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/12162b26-25fb-4ef5-a6e8-651446483cb6","type":"Microsoft.Authorization/roleAssignments","name":"12162b26-25fb-4ef5-a6e8-651446483cb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:20.6399869Z","updatedOn":"2021-11-01T22:46:20.6399869Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870","type":"Microsoft.Authorization/roleAssignments","name":"105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-01-26T20:10:13.8998989Z","updatedOn":"2021-01-26T20:10:13.8998989Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b36517ec-61d3-468d-afdc-eceda8adb4ee","type":"Microsoft.Authorization/roleAssignments","name":"b36517ec-61d3-468d-afdc-eceda8adb4ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-02-06T00:13:19.1780775Z","updatedOn":"2021-02-06T00:13:19.1780775Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5216c1ee-4f58-4d36-b379-6c04b1fbd157","type":"Microsoft.Authorization/roleAssignments","name":"5216c1ee-4f58-4d36-b379-6c04b1fbd157"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:26:34.3109215Z","updatedOn":"2021-04-16T18:26:34.3109215Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/7464f8a3-9f55-443b-a3a5-44a31b100cad","type":"Microsoft.Authorization/roleAssignments","name":"7464f8a3-9f55-443b-a3a5-44a31b100cad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:27:56.4446265Z","updatedOn":"2021-04-16T18:27:56.4446265Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8f430c4c-4317-4495-9f01-4f3d4e1ca111","type":"Microsoft.Authorization/roleAssignments","name":"8f430c4c-4317-4495-9f01-4f3d4e1ca111"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-05-04T19:20:06.7695456Z","updatedOn":"2021-05-04T19:20:06.7695456Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa","type":"Microsoft.Authorization/roleAssignments","name":"fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9176787Z","updatedOn":"2019-03-26T22:01:02.9176787Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320","type":"Microsoft.Authorization/roleAssignments","name":"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:49:37.3000523Z","updatedOn":"2019-03-27T00:49:37.3000523Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29","type":"Microsoft.Authorization/roleAssignments","name":"e6e1fffd-83f7-40c7-9f33-e56e2cf75b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:50:08.3039053Z","updatedOn":"2019-03-27T00:50:08.3039053Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12","type":"Microsoft.Authorization/roleAssignments","name":"3d01f56e-ee3a-41ed-a775-0e067546cb12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T23:11:28.9217618Z","updatedOn":"2022-06-28T23:11:28.9217618Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/869183bd-893a-46f9-bb02-45e48b13f1be","type":"Microsoft.Authorization/roleAssignments","name":"869183bd-893a-46f9-bb02-45e48b13f1be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T22:32:46.2324804Z","updatedOn":"2023-02-21T22:32:46.2324804Z","createdBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","updatedBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/df7c1e07-5c2d-4b22-b7b9-fd11a8569db3","type":"Microsoft.Authorization/roleAssignments","name":"df7c1e07-5c2d-4b22-b7b9-fd11a8569db3"}]}' + string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:58.6582166Z","updatedOn":"2020-08-21T16:23:58.6582166Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ab72fbd-e5fe-4a7d-ae20-baad615d688d","type":"Microsoft.Authorization/roleAssignments","name":"8ab72fbd-e5fe-4a7d-ae20-baad615d688d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:59.5326945Z","updatedOn":"2020-08-21T16:23:59.5326945Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4ed77f1d-82a2-4a02-b48e-fa5776870280","type":"Microsoft.Authorization/roleAssignments","name":"4ed77f1d-82a2-4a02-b48e-fa5776870280"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-02T01:52:45.8299382Z","updatedOn":"2020-09-02T01:52:45.8299382Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3e21284b-6bd7-431a-81ae-ccaf56267ab5","type":"Microsoft.Authorization/roleAssignments","name":"3e21284b-6bd7-431a-81ae-ccaf56267ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-07T09:44:47.3865537Z","updatedOn":"2020-09-07T09:44:47.3865537Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79357f85-973d-4621-b1bd-d1ecb645e146","type":"Microsoft.Authorization/roleAssignments","name":"79357f85-973d-4621-b1bd-d1ecb645e146"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-24T00:04:10.5243862Z","updatedOn":"2020-09-24T00:04:10.5243862Z","createdBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","updatedBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78586b2c-fdf9-11ea-9e5e-8851fb3f4911","type":"Microsoft.Authorization/roleAssignments","name":"78586b2c-fdf9-11ea-9e5e-8851fb3f4911"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-29T10:55:39.3762731Z","updatedOn":"2020-09-29T10:55:39.3762731Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41e159ac-411a-4eed-b319-5b92571d2950","type":"Microsoft.Authorization/roleAssignments","name":"41e159ac-411a-4eed-b319-5b92571d2950"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-06T00:33:22.8792900Z","updatedOn":"2020-10-06T00:33:22.8792900Z","createdBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","updatedBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24d0c5e6-0763-11eb-82a0-d636039e345c","type":"Microsoft.Authorization/roleAssignments","name":"24d0c5e6-0763-11eb-82a0-d636039e345c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-14T00:29:42.9981174Z","updatedOn":"2020-10-14T00:29:42.9981174Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6af4ef5-80f6-4303-a641-45689a1646dc","type":"Microsoft.Authorization/roleAssignments","name":"c6af4ef5-80f6-4303-a641-45689a1646dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-16T16:42:17.7175670Z","updatedOn":"2020-10-16T16:42:17.7175670Z","createdBy":"d69d1d49-5dc8-4c8e-afb6-325d83ddcee8","updatedBy":"d69d1d49-5dc8-4c8e-afb6-325d83ddcee8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5854c7a2-cf00-46f9-9cc1-d977f34324df","type":"Microsoft.Authorization/roleAssignments","name":"5854c7a2-cf00-46f9-9cc1-d977f34324df"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-02T09:02:29.2637630Z","updatedOn":"2020-11-02T09:02:29.2637630Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ad1faa8-8680-4dec-a768-050e8349af33","type":"Microsoft.Authorization/roleAssignments","name":"0ad1faa8-8680-4dec-a768-050e8349af33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-03T22:00:44.4523883Z","updatedOn":"2020-11-03T22:00:44.4523883Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/908aa5ac-22a2-413a-9333-fcb0a1ba2c59","type":"Microsoft.Authorization/roleAssignments","name":"908aa5ac-22a2-413a-9333-fcb0a1ba2c59"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-09T14:00:59.0347294Z","updatedOn":"2020-11-09T14:00:59.0347294Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9541f93-ea4a-4b1b-98bf-839fecfcaa22","type":"Microsoft.Authorization/roleAssignments","name":"e9541f93-ea4a-4b1b-98bf-839fecfcaa22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-12-18T08:00:24.9874024Z","updatedOn":"2020-12-18T08:00:24.9874024Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7f60817e-27b5-486b-bbdb-b748bcb752d4","type":"Microsoft.Authorization/roleAssignments","name":"7f60817e-27b5-486b-bbdb-b748bcb752d4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-12-30T11:06:51.2887287Z","updatedOn":"2020-12-30T11:06:51.2887287Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1cbe1756-4a8f-11eb-b753-720008210d90","type":"Microsoft.Authorization/roleAssignments","name":"1cbe1756-4a8f-11eb-b753-720008210d90"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-01-13T06:12:19.1847916Z","updatedOn":"2021-01-13T06:12:19.1847916Z","createdBy":"241cd743-2c33-4860-bd3a-1df659c06eef","updatedBy":"241cd743-2c33-4860-bd3a-1df659c06eef","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/498bf4f6-5566-11eb-a35b-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"498bf4f6-5566-11eb-a35b-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-04T06:52:05.2038586Z","updatedOn":"2021-02-04T06:52:05.2038586Z","createdBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","updatedBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdf6a314-3605-4944-96c1-08b7364dba54","type":"Microsoft.Authorization/roleAssignments","name":"fdf6a314-3605-4944-96c1-08b7364dba54"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T00:37:53.4699042Z","updatedOn":"2021-02-17T00:37:53.4699042Z","createdBy":"e5ad6d43-d6ac-4061-84cc-f7cb826200a0","updatedBy":"e5ad6d43-d6ac-4061-84cc-f7cb826200a0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c06abb18-9697-41f9-9410-ff0ee9b13ab9","type":"Microsoft.Authorization/roleAssignments","name":"c06abb18-9697-41f9-9410-ff0ee9b13ab9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T01:26:55.0758483Z","updatedOn":"2021-02-17T01:26:55.0758483Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9812b416-33c9-4b88-bcdb-6b8406dd319f","type":"Microsoft.Authorization/roleAssignments","name":"9812b416-33c9-4b88-bcdb-6b8406dd319f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T01:38:17.8125104Z","updatedOn":"2021-02-17T01:38:17.8125104Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82e0c83f-b7dd-49f6-b501-ff05951db69d","type":"Microsoft.Authorization/roleAssignments","name":"82e0c83f-b7dd-49f6-b501-ff05951db69d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-19T01:25:51.9967288Z","updatedOn":"2021-02-19T01:25:51.9967288Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2e4ab306-7ae7-4867-8e22-90215bdbeb9a","type":"Microsoft.Authorization/roleAssignments","name":"2e4ab306-7ae7-4867-8e22-90215bdbeb9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-01T21:51:55.4255791Z","updatedOn":"2021-03-01T21:51:55.4255791Z","createdBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","updatedBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36175f2d-f556-464e-a509-19cbb3f45909","type":"Microsoft.Authorization/roleAssignments","name":"36175f2d-f556-464e-a509-19cbb3f45909"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-21T03:42:13.8891609Z","updatedOn":"2020-02-21T03:42:13.8891609Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c41b0416-12e4-49bb-9e35-411e4f409102","type":"Microsoft.Authorization/roleAssignments","name":"c41b0416-12e4-49bb-9e35-411e4f409102"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-22T07:53:45.7192431Z","updatedOn":"2020-04-22T07:53:45.7192431Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d01cbd3-f3e3-4712-95c6-cf07a0224887","type":"Microsoft.Authorization/roleAssignments","name":"0d01cbd3-f3e3-4712-95c6-cf07a0224887"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-30T06:27:35.9310363Z","updatedOn":"2020-04-30T06:27:35.9310363Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a1327e4-100e-43ee-b04e-1403969b805b","type":"Microsoft.Authorization/roleAssignments","name":"6a1327e4-100e-43ee-b04e-1403969b805b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-06-13T06:44:49.9960198Z","updatedOn":"2019-06-13T06:44:49.9960198Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33958269-41a0-400a-91a1-6303d954c8f0","type":"Microsoft.Authorization/roleAssignments","name":"33958269-41a0-400a-91a1-6303d954c8f0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-04-16T02:04:22.4782415Z","updatedOn":"2019-04-16T02:04:22.4782415Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bacdb283-653c-47eb-a578-11743d7898f8","type":"Microsoft.Authorization/roleAssignments","name":"bacdb283-653c-47eb-a578-11743d7898f8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-27T09:09:33.7347978Z","updatedOn":"2020-03-27T09:09:33.7347978Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d355b17-e9d6-47b7-9181-b54ad0083793","type":"Microsoft.Authorization/roleAssignments","name":"6d355b17-e9d6-47b7-9181-b54ad0083793"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-19T02:50:30.0038186Z","updatedOn":"2019-03-19T02:50:30.0038186Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26adec15-a0e4-4b2e-a437-9b545b9723fc","type":"Microsoft.Authorization/roleAssignments","name":"26adec15-a0e4-4b2e-a437-9b545b9723fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-04-17T00:50:00.2288905Z","updatedOn":"2019-04-17T00:50:00.2288905Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e873fd7-4bdb-4df5-a510-c15f3ce99cd6","type":"Microsoft.Authorization/roleAssignments","name":"0e873fd7-4bdb-4df5-a510-c15f3ce99cd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-08T07:40:31.7235048Z","updatedOn":"2020-05-08T07:40:31.7235048Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbfa0c0c-2653-4fb8-b9e5-d41bd96053a7","type":"Microsoft.Authorization/roleAssignments","name":"cbfa0c0c-2653-4fb8-b9e5-d41bd96053a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-11-15T22:27:15.6601349Z","updatedOn":"2018-11-15T22:27:15.6601349Z","createdBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","updatedBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/418847ec-df97-4b29-9711-fc833817e5d6","type":"Microsoft.Authorization/roleAssignments","name":"418847ec-df97-4b29-9711-fc833817e5d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-28T14:20:52.7506898Z","updatedOn":"2019-08-28T14:20:52.7506898Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/715fd118-93b8-4b09-822d-48de5afb21e3","type":"Microsoft.Authorization/roleAssignments","name":"715fd118-93b8-4b09-822d-48de5afb21e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-06T05:22:04.7673784Z","updatedOn":"2019-01-06T05:22:04.7673784Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba5c8600-8cc9-4778-9735-c3d57d26e50d","type":"Microsoft.Authorization/roleAssignments","name":"ba5c8600-8cc9-4778-9735-c3d57d26e50d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-02T16:21:28.6789246Z","updatedOn":"2020-06-02T16:21:28.6789246Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd6bf5d5-fc1c-4fcd-81f3-0d11d3ff9f42","type":"Microsoft.Authorization/roleAssignments","name":"bd6bf5d5-fc1c-4fcd-81f3-0d11d3ff9f42"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-20T08:42:00.9560545Z","updatedOn":"2020-04-20T08:42:00.9560545Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7a41b62f-97d4-4f4c-8bfc-4a8dd708e00f","type":"Microsoft.Authorization/roleAssignments","name":"7a41b62f-97d4-4f4c-8bfc-4a8dd708e00f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-23T03:10:28.2381030Z","updatedOn":"2020-04-23T03:10:28.2381030Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f98d1512-e634-4663-a219-24be2e6bfe1c","type":"Microsoft.Authorization/roleAssignments","name":"f98d1512-e634-4663-a219-24be2e6bfe1c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-15T02:06:03.3308352Z","updatedOn":"2020-04-15T02:06:03.3308352Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6142150e-c404-48e6-a731-fffb36357051","type":"Microsoft.Authorization/roleAssignments","name":"6142150e-c404-48e6-a731-fffb36357051"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-11-16T23:46:13.9660279Z","updatedOn":"2018-11-16T23:46:13.9660279Z","createdBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","updatedBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b66b1ea-89dd-4bc6-8d89-96298648eb40","type":"Microsoft.Authorization/roleAssignments","name":"2b66b1ea-89dd-4bc6-8d89-96298648eb40"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-10-27T00:03:26.2878499Z","updatedOn":"2018-10-27T00:03:26.2878499Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea920230-1aba-4f80-9eef-3fed8216f594","type":"Microsoft.Authorization/roleAssignments","name":"ea920230-1aba-4f80-9eef-3fed8216f594"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-03T09:55:40.2829720Z","updatedOn":"2020-04-03T09:55:40.2829720Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9c2a551-11aa-4b0a-8816-f8511cd46a32","type":"Microsoft.Authorization/roleAssignments","name":"c9c2a551-11aa-4b0a-8816-f8511cd46a32"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-26T21:10:42.2124416Z","updatedOn":"2020-03-26T21:10:42.2124416Z","createdBy":"50ee185f-0eb1-4577-ae14-4ecf59cfa8f7","updatedBy":"50ee185f-0eb1-4577-ae14-4ecf59cfa8f7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d394da6c-4def-47de-8689-791727331c5b","type":"Microsoft.Authorization/roleAssignments","name":"d394da6c-4def-47de-8689-791727331c5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-21T07:34:50.7125622Z","updatedOn":"2020-04-21T07:34:50.7125622Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ddeb2255-2bb6-458a-a891-532e96ae5483","type":"Microsoft.Authorization/roleAssignments","name":"ddeb2255-2bb6-458a-a891-532e96ae5483"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-23T04:07:45.3308845Z","updatedOn":"2020-06-23T04:07:45.3308845Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15d1dab1-b507-11ea-819c-a28e10bedef6","type":"Microsoft.Authorization/roleAssignments","name":"15d1dab1-b507-11ea-819c-a28e10bedef6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-13T00:09:08.8179220Z","updatedOn":"2020-05-13T00:09:08.8179220Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/08a578f0-4875-47d0-8775-946b3a0f2b06","type":"Microsoft.Authorization/roleAssignments","name":"08a578f0-4875-47d0-8775-946b3a0f2b06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-10T23:15:46.8549700Z","updatedOn":"2020-05-10T23:15:46.8549700Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/22d3da65-7681-445e-9080-e748e494676f","type":"Microsoft.Authorization/roleAssignments","name":"22d3da65-7681-445e-9080-e748e494676f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-29T13:30:14.1177711Z","updatedOn":"2019-08-29T13:30:14.1177711Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a2c1014-c1ba-4ae9-a632-90967c28429d","type":"Microsoft.Authorization/roleAssignments","name":"4a2c1014-c1ba-4ae9-a632-90967c28429d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-27T01:26:21.7189691Z","updatedOn":"2020-02-27T01:26:21.7189691Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28808064-5900-11ea-81c8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"28808064-5900-11ea-81c8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-07-03T01:05:25.8863198Z","updatedOn":"2020-07-03T01:05:25.8863198Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46877403-bcc9-11ea-924f-00155d871f03","type":"Microsoft.Authorization/roleAssignments","name":"46877403-bcc9-11ea-924f-00155d871f03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-28T19:57:23.3708745Z","updatedOn":"2019-03-28T19:57:23.3708745Z","createdBy":"66cb050e-bae1-4005-8c4c-0f6dd9b34978","updatedBy":"66cb050e-bae1-4005-8c4c-0f6dd9b34978","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc796cab-2f6b-4099-b9a3-7500f5516153","type":"Microsoft.Authorization/roleAssignments","name":"cc796cab-2f6b-4099-b9a3-7500f5516153"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-30T22:56:44.9793119Z","updatedOn":"2020-03-30T22:56:44.9793119Z","createdBy":"53bb8815-874d-4b05-9953-1158e05aa080","updatedBy":"53bb8815-874d-4b05-9953-1158e05aa080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/000ea275-41c4-40ce-943f-98a8849a56bc","type":"Microsoft.Authorization/roleAssignments","name":"000ea275-41c4-40ce-943f-98a8849a56bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-10T01:13:53.0806696Z","updatedOn":"2020-06-10T01:13:53.0806696Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a584fad9-aab7-11ea-b7e7-00155d4b0124","type":"Microsoft.Authorization/roleAssignments","name":"a584fad9-aab7-11ea-b7e7-00155d4b0124"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-12T00:23:23.9037436Z","updatedOn":"2020-05-12T00:23:23.9037436Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ff95229-981f-40d7-889f-97bc90b8f387","type":"Microsoft.Authorization/roleAssignments","name":"6ff95229-981f-40d7-889f-97bc90b8f387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-09T00:52:52.1315983Z","updatedOn":"2020-06-09T00:52:52.1315983Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7512dec1-86e5-400d-8bc9-f24f181127f3","type":"Microsoft.Authorization/roleAssignments","name":"7512dec1-86e5-400d-8bc9-f24f181127f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-14T04:03:23.9185561Z","updatedOn":"2020-04-14T04:03:23.9185561Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f0f495d-0356-4239-b966-3f47f5f1054a","type":"Microsoft.Authorization/roleAssignments","name":"0f0f495d-0356-4239-b966-3f47f5f1054a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-14T00:42:59.8868253Z","updatedOn":"2020-05-14T00:42:59.8868253Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b3c8d44-237c-410c-a095-52ded7f5cd26","type":"Microsoft.Authorization/roleAssignments","name":"6b3c8d44-237c-410c-a095-52ded7f5cd26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-11T13:26:01.9493491Z","updatedOn":"2020-02-11T13:26:01.9493491Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8fab1ba3-53c2-4b21-9d32-dc89fd061811","type":"Microsoft.Authorization/roleAssignments","name":"8fab1ba3-53c2-4b21-9d32-dc89fd061811"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-03T05:34:39.2163770Z","updatedOn":"2020-04-03T05:34:39.2163770Z","createdBy":"ed4707f4-8b58-42fe-9afd-0045d7a9b262","updatedBy":"ed4707f4-8b58-42fe-9afd-0045d7a9b262","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e4edc2a-dd1f-469b-9a44-f0693866b843","type":"Microsoft.Authorization/roleAssignments","name":"8e4edc2a-dd1f-469b-9a44-f0693866b843"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-20T19:40:09.1141460Z","updatedOn":"2020-02-20T19:40:09.1141460Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4673bf4-97da-4102-9284-2a7315b88a34","type":"Microsoft.Authorization/roleAssignments","name":"d4673bf4-97da-4102-9284-2a7315b88a34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-21T07:19:44.2488168Z","updatedOn":"2020-04-21T07:19:44.2488168Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fadbe071-d757-48fc-b82a-4784249ded10","type":"Microsoft.Authorization/roleAssignments","name":"fadbe071-d757-48fc-b82a-4784249ded10"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-12T17:29:23.0437979Z","updatedOn":"2019-03-12T17:29:23.0437979Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7e76154-c2a7-4419-b73f-e8c6010318c9","type":"Microsoft.Authorization/roleAssignments","name":"a7e76154-c2a7-4419-b73f-e8c6010318c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-16T23:29:48.3209681Z","updatedOn":"2020-03-16T23:29:48.3209681Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3eb4155b-2965-456b-8f00-bca8a13b1684","type":"Microsoft.Authorization/roleAssignments","name":"3eb4155b-2965-456b-8f00-bca8a13b1684"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:49:54.3783181Z","updatedOn":"2022-01-05T01:49:54.3783181Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/25b4b181-6b51-4bce-beb0-1310829e6de3","type":"Microsoft.Authorization/roleAssignments","name":"25b4b181-6b51-4bce-beb0-1310829e6de3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:50:16.7495633Z","updatedOn":"2022-01-05T01:50:16.7495633Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/093e4a08-9393-4b9d-b3a0-011d77557170","type":"Microsoft.Authorization/roleAssignments","name":"093e4a08-9393-4b9d-b3a0-011d77557170"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:50:40.1521378Z","updatedOn":"2022-01-05T01:50:40.1521378Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e5090ae4-6b40-4bab-9d46-482593ec6229","type":"Microsoft.Authorization/roleAssignments","name":"e5090ae4-6b40-4bab-9d46-482593ec6229"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:52:32.8811339Z","updatedOn":"2022-01-05T01:52:32.8811339Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/923a1dab-e203-422e-bb91-c492a895438e","type":"Microsoft.Authorization/roleAssignments","name":"923a1dab-e203-422e-bb91-c492a895438e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T03:31:42.0793122Z","updatedOn":"2022-01-05T03:31:42.0793122Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6cb2e77-1041-4f33-b449-27f9e8738933","type":"Microsoft.Authorization/roleAssignments","name":"d6cb2e77-1041-4f33-b449-27f9e8738933"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T20:29:36.5271689Z","updatedOn":"2022-01-05T20:29:36.5271689Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3267f83c-6e66-11ec-ae40-aa665a565aa7","type":"Microsoft.Authorization/roleAssignments","name":"3267f83c-6e66-11ec-ae40-aa665a565aa7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-08T01:44:09.0575891Z","updatedOn":"2022-01-08T01:44:09.0575891Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/772c985f-7024-11ec-ab61-00224859aac4","type":"Microsoft.Authorization/roleAssignments","name":"772c985f-7024-11ec-ab61-00224859aac4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-10T07:51:08.0345330Z","updatedOn":"2022-01-10T07:51:08.0345330Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/11391e93-71ea-11ec-97af-0022485937da","type":"Microsoft.Authorization/roleAssignments","name":"11391e93-71ea-11ec-97af-0022485937da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-10T19:52:35.8785494Z","updatedOn":"2022-01-10T19:52:35.8785494Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e403838c-88cd-4fc0-b3e8-45c39ad905c1","type":"Microsoft.Authorization/roleAssignments","name":"e403838c-88cd-4fc0-b3e8-45c39ad905c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-17T09:00:11.8306086Z","updatedOn":"2022-01-17T09:00:11.8306086Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2159ffa-089e-4729-a990-364e13db2a65","type":"Microsoft.Authorization/roleAssignments","name":"b2159ffa-089e-4729-a990-364e13db2a65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-18T13:28:29.0699621Z","updatedOn":"2022-01-18T13:28:29.0699621Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81905706-3ec4-4c25-9c82-d4640a0479c3","type":"Microsoft.Authorization/roleAssignments","name":"81905706-3ec4-4c25-9c82-d4640a0479c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-18T20:11:29.5693659Z","updatedOn":"2022-01-18T20:11:29.5693659Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00f40078-a8bd-4bae-9278-ef9de2d5f632","type":"Microsoft.Authorization/roleAssignments","name":"00f40078-a8bd-4bae-9278-ef9de2d5f632"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-19T08:18:43.7411382Z","updatedOn":"2022-01-19T08:18:43.7411382Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82d96cd7-1671-46d7-afc8-9e3d4c56170d","type":"Microsoft.Authorization/roleAssignments","name":"82d96cd7-1671-46d7-afc8-9e3d4c56170d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-19T18:26:48.3434705Z","updatedOn":"2022-01-19T18:26:48.3434705Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0614428a-cde1-4e89-8202-6cb5cd85e6d8","type":"Microsoft.Authorization/roleAssignments","name":"0614428a-cde1-4e89-8202-6cb5cd85e6d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-20T07:46:22.7990066Z","updatedOn":"2022-01-20T07:46:22.7990066Z","createdBy":"0d969ded-9dc4-4176-8b0f-5194740910bf","updatedBy":"0d969ded-9dc4-4176-8b0f-5194740910bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1134cc98-79c5-11ec-9058-ced79d6624f9","type":"Microsoft.Authorization/roleAssignments","name":"1134cc98-79c5-11ec-9058-ced79d6624f9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-21T02:59:53.1540625Z","updatedOn":"2022-01-21T02:59:53.1540625Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2b558e6-2979-4a34-ba92-81e51afae60d","type":"Microsoft.Authorization/roleAssignments","name":"e2b558e6-2979-4a34-ba92-81e51afae60d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-21T03:51:31.7700381Z","updatedOn":"2022-01-21T03:51:31.7700381Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/774b38ec-8425-4659-9c1c-3662aa0d128a","type":"Microsoft.Authorization/roleAssignments","name":"774b38ec-8425-4659-9c1c-3662aa0d128a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-24T08:18:11.4759466Z","updatedOn":"2022-01-24T08:18:11.4759466Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a6b5b99-dbf6-4270-8c73-cc3e5808e147","type":"Microsoft.Authorization/roleAssignments","name":"9a6b5b99-dbf6-4270-8c73-cc3e5808e147"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-24T08:32:50.8732169Z","updatedOn":"2022-01-24T08:32:50.8732169Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/11d67934-0c51-4dad-8284-f6aced7c815c","type":"Microsoft.Authorization/roleAssignments","name":"11d67934-0c51-4dad-8284-f6aced7c815c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T07:03:14.4901261Z","updatedOn":"2022-01-25T07:03:14.4901261Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dcacb94f-7dac-11ec-be41-c6ce4e0f899a","type":"Microsoft.Authorization/roleAssignments","name":"dcacb94f-7dac-11ec-be41-c6ce4e0f899a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T20:35:15.6769413Z","updatedOn":"2022-01-25T20:35:15.6769413Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9e8bf969-d76d-4923-84d9-d9f98b267d71","type":"Microsoft.Authorization/roleAssignments","name":"9e8bf969-d76d-4923-84d9-d9f98b267d71"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-26T15:50:53.7946290Z","updatedOn":"2022-01-26T15:50:53.7946290Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bdcc5219-7ebf-11ec-bada-00224878d5c3","type":"Microsoft.Authorization/roleAssignments","name":"bdcc5219-7ebf-11ec-bada-00224878d5c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T02:28:59.3221529Z","updatedOn":"2022-01-27T02:28:59.3221529Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28cd45d5-8a0f-4b35-8ee3-f82463ccdf3a","type":"Microsoft.Authorization/roleAssignments","name":"28cd45d5-8a0f-4b35-8ee3-f82463ccdf3a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T02:38:11.8679643Z","updatedOn":"2022-01-27T02:38:11.8679643Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3364749d-7f1a-11ec-9b35-e6e10709004e","type":"Microsoft.Authorization/roleAssignments","name":"3364749d-7f1a-11ec-9b35-e6e10709004e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T03:21:28.9388159Z","updatedOn":"2022-01-27T03:21:28.9388159Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5706d36-4da0-4a7e-abdb-20e8ce5c709d","type":"Microsoft.Authorization/roleAssignments","name":"f5706d36-4da0-4a7e-abdb-20e8ce5c709d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T22:45:56.1614375Z","updatedOn":"2022-01-27T22:45:56.1614375Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8757d35e-c05f-4b14-9b69-94880cf3c630","type":"Microsoft.Authorization/roleAssignments","name":"8757d35e-c05f-4b14-9b69-94880cf3c630"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-31T20:16:07.1248292Z","updatedOn":"2022-01-31T20:16:07.1248292Z","createdBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","updatedBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f16a76e-82d2-11ec-b26c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"9f16a76e-82d2-11ec-b26c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-31T23:19:58.8275488Z","updatedOn":"2022-01-31T23:19:58.8275488Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2192301f-06dd-491e-8e34-93a3cf5c0197","type":"Microsoft.Authorization/roleAssignments","name":"2192301f-06dd-491e-8e34-93a3cf5c0197"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-01T22:56:44.2373253Z","updatedOn":"2022-02-01T22:56:44.2373253Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/395d775a-83b2-11ec-8917-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"395d775a-83b2-11ec-8917-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-01T23:17:51.6753012Z","updatedOn":"2022-02-01T23:17:51.6753012Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb3685a8-f064-431a-8ab6-21f276ae0e4d","type":"Microsoft.Authorization/roleAssignments","name":"fb3685a8-f064-431a-8ab6-21f276ae0e4d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-03T23:18:19.3769285Z","updatedOn":"2022-02-03T23:18:19.3769285Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ff008d0-8547-11ec-87de-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"8ff008d0-8547-11ec-87de-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-05T12:04:01.3658712Z","updatedOn":"2022-02-05T12:04:01.3658712Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3fb26d3-867b-11ec-8bb2-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"b3fb26d3-867b-11ec-8bb2-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-07T19:33:07.4702067Z","updatedOn":"2022-02-07T19:33:07.4702067Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c80d3f4a-065e-4e11-b0a1-9a04f4384563","type":"Microsoft.Authorization/roleAssignments","name":"c80d3f4a-065e-4e11-b0a1-9a04f4384563"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-07T20:03:20.2169334Z","updatedOn":"2022-02-07T20:03:20.2169334Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd6cdc49-8850-11ec-b237-027f0b78f6ab","type":"Microsoft.Authorization/roleAssignments","name":"fd6cdc49-8850-11ec-b237-027f0b78f6ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-08T08:00:07.9076727Z","updatedOn":"2022-02-08T08:00:07.9076727Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cdb4bce2-b187-4057-9fa4-ead6eeb4b442","type":"Microsoft.Authorization/roleAssignments","name":"cdb4bce2-b187-4057-9fa4-ead6eeb4b442"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-08T13:12:19.0792698Z","updatedOn":"2022-02-08T13:12:19.0792698Z","createdBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","updatedBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bccb433c-88e0-11ec-9c26-2e7a733c8e34","type":"Microsoft.Authorization/roleAssignments","name":"bccb433c-88e0-11ec-9c26-2e7a733c8e34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-08T16:00:23.2107710Z","updatedOn":"2022-02-08T16:00:23.2107710Z","createdBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","updatedBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/376f32c6-88f8-11ec-b700-2e7a733c8e34","type":"Microsoft.Authorization/roleAssignments","name":"376f32c6-88f8-11ec-b700-2e7a733c8e34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T08:35:07.6001520Z","updatedOn":"2022-02-11T08:35:07.6001520Z","createdBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","updatedBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8422aed5-8b15-11ec-8a3f-6045bd7c1155","type":"Microsoft.Authorization/roleAssignments","name":"8422aed5-8b15-11ec-8a3f-6045bd7c1155"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T20:16:24.1407485Z","updatedOn":"2022-02-11T20:16:24.1407485Z","createdBy":"c518df35-7e98-4c84-9222-b902d191061e","updatedBy":"c518df35-7e98-4c84-9222-b902d191061e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88cc3504-a850-43bb-a42e-326e300ac247","type":"Microsoft.Authorization/roleAssignments","name":"88cc3504-a850-43bb-a42e-326e300ac247"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T20:17:44.8524024Z","updatedOn":"2022-02-11T20:17:44.8524024Z","createdBy":"c518df35-7e98-4c84-9222-b902d191061e","updatedBy":"c518df35-7e98-4c84-9222-b902d191061e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/270f86d3-cdff-4d1c-8dee-20cbe11a28e0","type":"Microsoft.Authorization/roleAssignments","name":"270f86d3-cdff-4d1c-8dee-20cbe11a28e0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T20:17:45.1659184Z","updatedOn":"2022-02-11T20:17:45.1659184Z","createdBy":"c518df35-7e98-4c84-9222-b902d191061e","updatedBy":"c518df35-7e98-4c84-9222-b902d191061e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a536c303-c7bb-4556-b252-b8faa982403e","type":"Microsoft.Authorization/roleAssignments","name":"a536c303-c7bb-4556-b252-b8faa982403e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-13T11:41:48.7463966Z","updatedOn":"2022-02-13T11:41:48.7463966Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed14b636-8cc1-11ec-b294-002248785c41","type":"Microsoft.Authorization/roleAssignments","name":"ed14b636-8cc1-11ec-b294-002248785c41"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.6113342Z","updatedOn":"2022-02-14T09:22:36.6113342Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca42541d-172f-4c3a-8286-8e260e99050e","type":"Microsoft.Authorization/roleAssignments","name":"ca42541d-172f-4c3a-8286-8e260e99050e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.6424591Z","updatedOn":"2022-02-14T09:22:36.6424591Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8bcdc0e8-d9c2-478a-3363-0965130c9559","type":"Microsoft.Authorization/roleAssignments","name":"8bcdc0e8-d9c2-478a-3363-0965130c9559"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.6556489Z","updatedOn":"2022-02-14T09:22:36.6556489Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdb4d934-dee6-4e1d-d817-9670b25e7200","type":"Microsoft.Authorization/roleAssignments","name":"fdb4d934-dee6-4e1d-d817-9670b25e7200"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.7217526Z","updatedOn":"2022-02-14T09:22:36.7217526Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e9e51fa-3ef2-46c7-ae2b-8a418b68637a","type":"Microsoft.Authorization/roleAssignments","name":"4e9e51fa-3ef2-46c7-ae2b-8a418b68637a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T15:34:50.0327527Z","updatedOn":"2022-02-14T15:34:50.0327527Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5579469-8dab-11ec-aa17-000d3a044b73","type":"Microsoft.Authorization/roleAssignments","name":"a5579469-8dab-11ec-aa17-000d3a044b73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T19:37:05.5912525Z","updatedOn":"2022-02-14T19:37:05.5912525Z","createdBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","updatedBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7aa99c5e-8dcd-11ec-931e-3ee49ac9ec9b","type":"Microsoft.Authorization/roleAssignments","name":"7aa99c5e-8dcd-11ec-931e-3ee49ac9ec9b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T23:14:13.9732126Z","updatedOn":"2022-02-14T23:14:13.9732126Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c604be80-2bb9-48b0-a450-3565ed763f26","type":"Microsoft.Authorization/roleAssignments","name":"c604be80-2bb9-48b0-a450-3565ed763f26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-15T08:25:10.2747643Z","updatedOn":"2022-02-15T08:25:10.2747643Z","createdBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","updatedBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9baa19c-8e38-11ec-8406-000d3a0dff4f","type":"Microsoft.Authorization/roleAssignments","name":"c9baa19c-8e38-11ec-8406-000d3a0dff4f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-15T16:27:03.8176136Z","updatedOn":"2022-02-15T16:27:03.8176136Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1efc7bb8-8e7c-11ec-aba3-5e309da6350b","type":"Microsoft.Authorization/roleAssignments","name":"1efc7bb8-8e7c-11ec-aba3-5e309da6350b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-16T01:17:47.1475801Z","updatedOn":"2022-02-16T01:17:47.1475801Z","createdBy":"20d1aaf0-7699-4c7f-8b08-6e5306613d73","updatedBy":"20d1aaf0-7699-4c7f-8b08-6e5306613d73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3fb9602f-8ec6-11ec-9d90-000d3a6d0522","type":"Microsoft.Authorization/roleAssignments","name":"3fb9602f-8ec6-11ec-9d90-000d3a6d0522"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-16T04:06:52.4519397Z","updatedOn":"2022-02-16T04:06:52.4519397Z","createdBy":"f986308d-63d6-4619-a4f5-851a3bf675cb","updatedBy":"f986308d-63d6-4619-a4f5-851a3bf675cb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/de0a2a00-8edd-11ec-89d6-62e3b50ea3e8","type":"Microsoft.Authorization/roleAssignments","name":"de0a2a00-8edd-11ec-89d6-62e3b50ea3e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-17T07:47:28.0184571Z","updatedOn":"2022-02-17T07:47:28.0184571Z","createdBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","updatedBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/034bc00f-181a-4058-a66b-793a86a3f1d9","type":"Microsoft.Authorization/roleAssignments","name":"034bc00f-181a-4058-a66b-793a86a3f1d9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-18T02:41:56.8572427Z","updatedOn":"2022-02-18T02:41:56.8572427Z","createdBy":"8611abc5-1512-49e0-a6d2-0624ffaf5ef3","updatedBy":"8611abc5-1512-49e0-a6d2-0624ffaf5ef3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/563ddb12-9064-11ec-b259-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"563ddb12-9064-11ec-b259-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-18T02:44:45.0089883Z","updatedOn":"2022-02-18T02:44:45.0089883Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba625e10-9064-11ec-a4c4-000d3a6fbef8","type":"Microsoft.Authorization/roleAssignments","name":"ba625e10-9064-11ec-a4c4-000d3a6fbef8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-21T12:55:18.9707919Z","updatedOn":"2022-02-21T12:55:18.9707919Z","createdBy":"74dcd4fc-6c01-4de6-85b9-6cd3d0b977a0","updatedBy":"74dcd4fc-6c01-4de6-85b9-6cd3d0b977a0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84d1b0a8-9315-11ec-a625-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"84d1b0a8-9315-11ec-a625-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-22T12:02:41.9576481Z","updatedOn":"2022-02-22T12:02:41.9576481Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7ff802f-d555-4740-9446-decc876041c2","type":"Microsoft.Authorization/roleAssignments","name":"f7ff802f-d555-4740-9446-decc876041c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-22T17:40:50.0656641Z","updatedOn":"2022-02-22T17:40:50.0656641Z","createdBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","updatedBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9330f714-9406-11ec-839f-e6018ea1a0b8","type":"Microsoft.Authorization/roleAssignments","name":"9330f714-9406-11ec-839f-e6018ea1a0b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-23T14:56:26.1925430Z","updatedOn":"2022-02-23T14:56:26.1925430Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5f94f93-94b8-11ec-a7aa-ce34ee50a641","type":"Microsoft.Authorization/roleAssignments","name":"c5f94f93-94b8-11ec-a7aa-ce34ee50a641"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-23T19:18:46.5080793Z","updatedOn":"2022-02-23T19:18:46.5080793Z","createdBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","updatedBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6bd539ac-94dd-11ec-af01-8c8590c99d20","type":"Microsoft.Authorization/roleAssignments","name":"6bd539ac-94dd-11ec-af01-8c8590c99d20"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-24T18:48:42.1150127Z","updatedOn":"2022-02-24T18:48:42.1150127Z","createdBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","updatedBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/75d2b821-a297-4959-9c53-d5375978304a","type":"Microsoft.Authorization/roleAssignments","name":"75d2b821-a297-4959-9c53-d5375978304a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-25T19:43:06.0365566Z","updatedOn":"2022-02-25T19:43:06.0365566Z","createdBy":"c2191082-b1ca-4fcd-9645-551452f60be4","updatedBy":"c2191082-b1ca-4fcd-9645-551452f60be4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f5fb238-9673-11ec-87ea-2ef8edc450dc","type":"Microsoft.Authorization/roleAssignments","name":"2f5fb238-9673-11ec-87ea-2ef8edc450dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-28T03:13:54.6616360Z","updatedOn":"2022-02-28T03:13:54.6616360Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/073872ac-f374-444a-ae66-fb821b8532a4","type":"Microsoft.Authorization/roleAssignments","name":"073872ac-f374-444a-ae66-fb821b8532a4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-28T16:39:27.8396295Z","updatedOn":"2022-02-28T16:39:27.8396295Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/60241af8-7226-485e-a261-c69b2cf152c4","type":"Microsoft.Authorization/roleAssignments","name":"60241af8-7226-485e-a261-c69b2cf152c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-01T13:58:58.0676838Z","updatedOn":"2022-03-01T13:58:58.0676838Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1e29644f-ada5-4d30-9c40-a406758409f1","type":"Microsoft.Authorization/roleAssignments","name":"1e29644f-ada5-4d30-9c40-a406758409f1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-03T10:22:00.9954003Z","updatedOn":"2022-03-03T10:22:00.9954003Z","createdBy":"08de6591-dec9-4255-ab17-d6919151fadd","updatedBy":"08de6591-dec9-4255-ab17-d6919151fadd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c30b494c-9adb-11ec-ae58-4a123144b5f6","type":"Microsoft.Authorization/roleAssignments","name":"c30b494c-9adb-11ec-ae58-4a123144b5f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-03T15:10:52.8750196Z","updatedOn":"2022-03-03T15:10:52.8750196Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1d1f5e12-9b04-11ec-bf9f-000d3ac561f6","type":"Microsoft.Authorization/roleAssignments","name":"1d1f5e12-9b04-11ec-bf9f-000d3ac561f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T03:22:58.4512023Z","updatedOn":"2022-03-07T03:22:58.4512023Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e234c5f8-9dc5-11ec-993d-0022485937da","type":"Microsoft.Authorization/roleAssignments","name":"e234c5f8-9dc5-11ec-993d-0022485937da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T11:02:56.8448863Z","updatedOn":"2022-03-07T11:02:56.8448863Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/258a4631-9e06-11ec-9362-98e7f4beee90","type":"Microsoft.Authorization/roleAssignments","name":"258a4631-9e06-11ec-9362-98e7f4beee90"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T22:29:31.2927512Z","updatedOn":"2022-03-07T22:29:31.2927512Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef654596-33a1-443e-8a7d-48c0aa96bfcb","type":"Microsoft.Authorization/roleAssignments","name":"ef654596-33a1-443e-8a7d-48c0aa96bfcb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T23:16:52.1440710Z","updatedOn":"2022-03-07T23:16:52.1440710Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3aea3844-0bdd-4673-9a4e-444433ce4230","type":"Microsoft.Authorization/roleAssignments","name":"3aea3844-0bdd-4673-9a4e-444433ce4230"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:15:35.5981652Z","updatedOn":"2022-03-08T00:15:35.5981652Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":"wenxuan-azure-cli"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be01fdd4-3bdf-4a61-8884-59ffb6e82843","type":"Microsoft.Authorization/roleAssignments","name":"be01fdd4-3bdf-4a61-8884-59ffb6e82843"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:22:25.1920031Z","updatedOn":"2022-03-08T00:22:25.1920031Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1433f18e-b3fc-4984-bd98-c93d9244fb18","type":"Microsoft.Authorization/roleAssignments","name":"1433f18e-b3fc-4984-bd98-c93d9244fb18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T18:56:05.1276019Z","updatedOn":"2022-03-08T18:56:05.1276019Z","createdBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","updatedBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67554406-9f11-11ec-b5da-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"67554406-9f11-11ec-b5da-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-09T00:02:42.6050341Z","updatedOn":"2022-03-09T00:02:42.6050341Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/398c74fc-afb6-47dd-bf7a-efcff5dc1b86","type":"Microsoft.Authorization/roleAssignments","name":"398c74fc-afb6-47dd-bf7a-efcff5dc1b86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-05T14:05:58.2716050Z","updatedOn":"2021-04-05T14:05:58.2716050Z","createdBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","updatedBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a9b0e6a-9618-11eb-879a-88e9fe77e044","type":"Microsoft.Authorization/roleAssignments","name":"0a9b0e6a-9618-11eb-879a-88e9fe77e044"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-05T17:37:43.7040494Z","updatedOn":"2021-04-05T17:37:43.7040494Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a04b0948-9635-11eb-b395-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"a04b0948-9635-11eb-b395-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T02:24:39.3826587Z","updatedOn":"2021-04-06T02:24:39.3826587Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c21611b-a840-4166-b9f4-8cec90c17841","type":"Microsoft.Authorization/roleAssignments","name":"6c21611b-a840-4166-b9f4-8cec90c17841"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T02:24:39.4154930Z","updatedOn":"2021-04-06T02:24:39.4154930Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/925d4876-8fde-4334-8f84-4ce52ca7108e","type":"Microsoft.Authorization/roleAssignments","name":"925d4876-8fde-4334-8f84-4ce52ca7108e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T04:46:32.1029699Z","updatedOn":"2021-04-06T04:46:32.1029699Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0dfdb837-9693-11eb-b629-b6178ece78ec","type":"Microsoft.Authorization/roleAssignments","name":"0dfdb837-9693-11eb-b629-b6178ece78ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T11:25:43.5702772Z","updatedOn":"2021-04-06T11:25:43.5702772Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/958a1320-4346-46fb-9722-828af239eb03","type":"Microsoft.Authorization/roleAssignments","name":"958a1320-4346-46fb-9722-828af239eb03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T20:54:21.5921112Z","updatedOn":"2021-04-06T20:54:21.5921112Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42ad5638-971a-11eb-abf6-00155d3a4c00","type":"Microsoft.Authorization/roleAssignments","name":"42ad5638-971a-11eb-abf6-00155d3a4c00"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T23:22:50.4425724Z","updatedOn":"2021-04-06T23:22:50.4425724Z","createdBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","updatedBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00a90f2a-972f-11eb-9121-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"00a90f2a-972f-11eb-9121-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T00:26:49.7250016Z","updatedOn":"2021-04-07T00:26:49.7250016Z","createdBy":"88f18750-8181-4579-8eff-eb44f510655c","updatedBy":"88f18750-8181-4579-8eff-eb44f510655c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dca2df37-fdd1-49dc-a1de-31a70d62e098","type":"Microsoft.Authorization/roleAssignments","name":"dca2df37-fdd1-49dc-a1de-31a70d62e098"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T09:10:47.4905668Z","updatedOn":"2021-04-07T09:10:47.4905668Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a5dbdef-0896-48cd-a325-318e807ea133","type":"Microsoft.Authorization/roleAssignments","name":"8a5dbdef-0896-48cd-a325-318e807ea133"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T19:55:01.1984055Z","updatedOn":"2021-04-07T19:55:01.1984055Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2301d942-97db-11eb-8bf8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2301d942-97db-11eb-8bf8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T22:36:06.7954601Z","updatedOn":"2021-04-07T22:36:06.7954601Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6070c7de-7571-4d55-8b2f-85285b7d9675","type":"Microsoft.Authorization/roleAssignments","name":"6070c7de-7571-4d55-8b2f-85285b7d9675"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-13T03:07:16.5183912Z","updatedOn":"2021-04-13T03:07:16.5183912Z","createdBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","updatedBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59402850-9c05-11eb-8744-20c9d0477c8f","type":"Microsoft.Authorization/roleAssignments","name":"59402850-9c05-11eb-8744-20c9d0477c8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-14T19:16:13.6465266Z","updatedOn":"2021-04-14T19:16:13.6465266Z","createdBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","updatedBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e04efa46-9d55-11eb-9723-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e04efa46-9d55-11eb-9723-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-15T02:29:06.6768532Z","updatedOn":"2021-04-15T02:29:06.6768532Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/19165f29-858f-47fa-befe-cd1babe9df75","type":"Microsoft.Authorization/roleAssignments","name":"19165f29-858f-47fa-befe-cd1babe9df75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-19T08:59:20.4071341Z","updatedOn":"2021-04-19T08:59:20.4071341Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88489205-a0ed-11eb-996c-1a21256cebfc","type":"Microsoft.Authorization/roleAssignments","name":"88489205-a0ed-11eb-996c-1a21256cebfc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-19T22:35:57.5324093Z","updatedOn":"2021-04-19T22:35:57.5324093Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b85c442-a15f-11eb-8a7c-00155d871f03","type":"Microsoft.Authorization/roleAssignments","name":"9b85c442-a15f-11eb-8a7c-00155d871f03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-21T12:31:21.7286225Z","updatedOn":"2021-04-21T12:31:21.7286225Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7770db7c-a29d-11eb-b48f-42472d33150a","type":"Microsoft.Authorization/roleAssignments","name":"7770db7c-a29d-11eb-b48f-42472d33150a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-11T02:49:35.7701861Z","updatedOn":"2021-05-11T02:49:35.7701861Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83c25ed3-b203-11eb-8150-56db513b8477","type":"Microsoft.Authorization/roleAssignments","name":"83c25ed3-b203-11eb-8150-56db513b8477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-12T06:15:49.6202169Z","updatedOn":"2021-05-12T06:15:49.6202169Z","createdBy":"069015af-8ac7-4304-a60f-69a8a50309be","updatedBy":"069015af-8ac7-4304-a60f-69a8a50309be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ecced22-b2e9-11eb-bdc4-da23ac480b85","type":"Microsoft.Authorization/roleAssignments","name":"7ecced22-b2e9-11eb-bdc4-da23ac480b85"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-18T02:08:43.3533001Z","updatedOn":"2021-05-18T02:08:43.3533001Z","createdBy":"069015af-8ac7-4304-a60f-69a8a50309be","updatedBy":"069015af-8ac7-4304-a60f-69a8a50309be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8582f67-b77d-11eb-bffb-52ac6a27ca65","type":"Microsoft.Authorization/roleAssignments","name":"f8582f67-b77d-11eb-bffb-52ac6a27ca65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-24T05:29:46.7966317Z","updatedOn":"2021-05-24T05:29:46.7966317Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d7389dd2-ee8e-4d34-8703-b304716b1761","type":"Microsoft.Authorization/roleAssignments","name":"d7389dd2-ee8e-4d34-8703-b304716b1761"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-01T09:38:20.8655603Z","updatedOn":"2021-06-01T09:38:20.8655603Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18455841-c2bd-11eb-80b3-9a0a2a9b0ea3","type":"Microsoft.Authorization/roleAssignments","name":"18455841-c2bd-11eb-80b3-9a0a2a9b0ea3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-03T16:55:35.8333154Z","updatedOn":"2021-06-03T16:55:35.8333154Z","createdBy":"ae4622a7-bde9-4bca-9599-2d18571bfeba","updatedBy":"ae4622a7-bde9-4bca-9599-2d18571bfeba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83e4c5e8-c48c-11eb-b991-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"83e4c5e8-c48c-11eb-b991-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-07T22:29:50.4448757Z","updatedOn":"2021-06-07T22:29:50.4448757Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/decef2d4-c7df-11eb-a83e-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"decef2d4-c7df-11eb-a83e-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-08T21:20:41.4426747Z","updatedOn":"2021-06-08T21:20:41.4426747Z","createdBy":"39fc5957-4b28-4245-a1ca-0c05574dd32b","updatedBy":"39fc5957-4b28-4245-a1ca-0c05574dd32b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/607bf63e-c89f-11eb-8348-eecc6a504bf0","type":"Microsoft.Authorization/roleAssignments","name":"607bf63e-c89f-11eb-8348-eecc6a504bf0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T14:35:18.7357331Z","updatedOn":"2021-06-15T14:35:18.7357331Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1151242-c950-413d-a273-4109579eac8a","type":"Microsoft.Authorization/roleAssignments","name":"b1151242-c950-413d-a273-4109579eac8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T14:35:18.7937546Z","updatedOn":"2021-06-15T14:35:18.7937546Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dc21aa69-a99c-435e-a256-64885b24ec34","type":"Microsoft.Authorization/roleAssignments","name":"dc21aa69-a99c-435e-a256-64885b24ec34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T15:23:52.9337722Z","updatedOn":"2021-06-15T15:23:52.9337722Z","createdBy":"1faabf99-27a1-4d2e-9e28-295923ee7a14","updatedBy":"1faabf99-27a1-4d2e-9e28-295923ee7a14","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1f9ad80-cded-11eb-81da-86d728f15930","type":"Microsoft.Authorization/roleAssignments","name":"b1f9ad80-cded-11eb-81da-86d728f15930"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-24T01:15:20.6480687Z","updatedOn":"2021-06-24T01:15:20.6480687Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3fe463a-d489-11eb-bcf6-88e9fe77d9d9","type":"Microsoft.Authorization/roleAssignments","name":"a3fe463a-d489-11eb-bcf6-88e9fe77d9d9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T00:02:18.3011415Z","updatedOn":"2021-06-29T00:02:18.3011415Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ba1c6ba-8f43-4749-9af5-b852adc24ec4","type":"Microsoft.Authorization/roleAssignments","name":"6ba1c6ba-8f43-4749-9af5-b852adc24ec4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T00:02:18.3104039Z","updatedOn":"2021-06-29T00:02:18.3104039Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1b67008-79aa-4059-a618-9f31a59e17ad","type":"Microsoft.Authorization/roleAssignments","name":"f1b67008-79aa-4059-a618-9f31a59e17ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T03:26:28.3273724Z","updatedOn":"2021-06-29T03:26:28.3273724Z","createdBy":"5dc8b685-8bb3-4140-b266-34da5be22de8","updatedBy":"5dc8b685-8bb3-4140-b266-34da5be22de8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cacd20e2-d889-11eb-8faf-365b90995dcc","type":"Microsoft.Authorization/roleAssignments","name":"cacd20e2-d889-11eb-8faf-365b90995dcc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T16:47:51.6512150Z","updatedOn":"2021-07-02T16:47:51.6512150Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ce776fa-db55-11eb-9c3e-0ee0ced9a7ad","type":"Microsoft.Authorization/roleAssignments","name":"3ce776fa-db55-11eb-9c3e-0ee0ced9a7ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T18:02:58.7913777Z","updatedOn":"2021-07-02T18:02:58.7913777Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb92467e-db5f-11eb-93bb-52bfc6c4d939","type":"Microsoft.Authorization/roleAssignments","name":"bb92467e-db5f-11eb-93bb-52bfc6c4d939"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T18:34:50.6034803Z","updatedOn":"2021-07-02T18:34:50.6034803Z","createdBy":"88f18750-8181-4579-8eff-eb44f510655c","updatedBy":"88f18750-8181-4579-8eff-eb44f510655c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e537d7a-5a2e-419c-8c51-0f55adab0793","type":"Microsoft.Authorization/roleAssignments","name":"4e537d7a-5a2e-419c-8c51-0f55adab0793"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-12T18:22:41.0622548Z","updatedOn":"2021-07-12T18:22:41.0622548Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a840989-f344-4bca-97c4-0f91fa1537c6","type":"Microsoft.Authorization/roleAssignments","name":"0a840989-f344-4bca-97c4-0f91fa1537c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-14T19:03:30.7799600Z","updatedOn":"2021-07-14T19:03:30.7799600Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d4385bd-e4d6-11eb-9e75-0a4737195831","type":"Microsoft.Authorization/roleAssignments","name":"2d4385bd-e4d6-11eb-9e75-0a4737195831"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-26T03:44:43.4505353Z","updatedOn":"2021-07-26T03:44:43.4505353Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79b52c96-edc4-11eb-8bd7-1e3bd0e19ace","type":"Microsoft.Authorization/roleAssignments","name":"79b52c96-edc4-11eb-8bd7-1e3bd0e19ace"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-28T21:04:39.7105526Z","updatedOn":"2021-07-28T21:04:39.7105526Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b9c8936-efe7-11eb-9484-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6b9c8936-efe7-11eb-9484-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-04T02:14:38.2049441Z","updatedOn":"2021-08-04T02:14:38.2049441Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b8013ec0-f4c9-11eb-999a-000d3a4fc0a9","type":"Microsoft.Authorization/roleAssignments","name":"b8013ec0-f4c9-11eb-999a-000d3a4fc0a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e3c35f4c-e0ca-4b9e-a01e-5ebdd17e2ee7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-04T18:45:22.7030533Z","updatedOn":"2021-08-04T18:45:22.7030533Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b007f9b6-e259-4c24-b8f1-4b74e434b776","type":"Microsoft.Authorization/roleAssignments","name":"b007f9b6-e259-4c24-b8f1-4b74e434b776"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-10T18:57:36.3877809Z","updatedOn":"2021-08-10T18:57:36.3877809Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d31d5edd-fa0c-11eb-a4e8-00155d4b0124","type":"Microsoft.Authorization/roleAssignments","name":"d31d5edd-fa0c-11eb-a4e8-00155d4b0124"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-11T13:17:28.5790828Z","updatedOn":"2021-08-11T13:17:28.5790828Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79c9ac4e-faa6-11eb-9265-9e748a6ca3f5","type":"Microsoft.Authorization/roleAssignments","name":"79c9ac4e-faa6-11eb-9265-9e748a6ca3f5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T20:40:36.9427810Z","updatedOn":"2021-08-24T20:40:36.9427810Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89077b4a-051b-11ec-b690-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"89077b4a-051b-11ec-b690-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-25T04:55:32.8103400Z","updatedOn":"2021-08-25T04:55:32.8103400Z","createdBy":"d8f2c3f8-41bf-41ae-aedb-23c9387322a8","updatedBy":"d8f2c3f8-41bf-41ae-aedb-23c9387322a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad278da4-0560-11ec-bfcc-00249b623abd","type":"Microsoft.Authorization/roleAssignments","name":"ad278da4-0560-11ec-bfcc-00249b623abd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-31T23:45:51.8536519Z","updatedOn":"2021-08-31T23:45:51.8536519Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92d8ca73-0ab5-11ec-9a80-00224809727f","type":"Microsoft.Authorization/roleAssignments","name":"92d8ca73-0ab5-11ec-9a80-00224809727f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-13T19:32:31.3713301Z","updatedOn":"2021-09-13T19:32:31.3713301Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/55fb0a56-14c9-11ec-ba1a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"55fb0a56-14c9-11ec-ba1a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-17T20:45:08.1118919Z","updatedOn":"2021-09-17T20:45:08.1118919Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/246a4240-17f8-11ec-a87c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"246a4240-17f8-11ec-a87c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T13:55:46.1211332Z","updatedOn":"2021-09-20T13:55:46.1211332Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/738cb0ee-1a1a-11ec-bce5-7a98cea1d963","type":"Microsoft.Authorization/roleAssignments","name":"738cb0ee-1a1a-11ec-bce5-7a98cea1d963"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T16:02:49.0433199Z","updatedOn":"2021-09-20T16:02:49.0433199Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/332824b6-1a2c-11ec-94e6-dadb5e134e96","type":"Microsoft.Authorization/roleAssignments","name":"332824b6-1a2c-11ec-94e6-dadb5e134e96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T18:45:44.1610490Z","updatedOn":"2021-09-20T18:45:44.1610490Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5aacbbc-1a42-11ec-82e7-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f5aacbbc-1a42-11ec-82e7-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-23T14:26:16.9983531Z","updatedOn":"2021-09-23T14:26:16.9983531Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35e02c16-1c7a-11ec-aba5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"35e02c16-1c7a-11ec-aba5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-29T01:26:50.3419658Z","updatedOn":"2021-09-29T01:26:50.3419658Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47eee8e3-89cd-4112-86a8-19f848334dd1","type":"Microsoft.Authorization/roleAssignments","name":"47eee8e3-89cd-4112-86a8-19f848334dd1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-04T20:39:52.4258668Z","updatedOn":"2021-10-04T20:39:52.4258668Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/395b589c-2553-11ec-8d77-000d3af95835","type":"Microsoft.Authorization/roleAssignments","name":"395b589c-2553-11ec-8d77-000d3af95835"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-07T22:03:00.0914961Z","updatedOn":"2021-10-07T22:03:00.0914961Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/554cbdbb-27ba-11ec-9441-ba8d312253c4","type":"Microsoft.Authorization/roleAssignments","name":"554cbdbb-27ba-11ec-9441-ba8d312253c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-07T22:03:56.3285135Z","updatedOn":"2021-10-07T22:03:56.3285135Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/76aa862c-27ba-11ec-a4ef-ba8d312253c4","type":"Microsoft.Authorization/roleAssignments","name":"76aa862c-27ba-11ec-a4ef-ba8d312253c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T18:53:10.3503826Z","updatedOn":"2021-10-08T18:53:10.3503826Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d9510e6f-d37b-4ce8-8a3b-78e5447b11c4","type":"Microsoft.Authorization/roleAssignments","name":"d9510e6f-d37b-4ce8-8a3b-78e5447b11c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T18:59:59.4287762Z","updatedOn":"2021-10-08T18:59:59.4287762Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d1a6d17-6c0a-4105-b86a-dcc55fe735e7","type":"Microsoft.Authorization/roleAssignments","name":"3d1a6d17-6c0a-4105-b86a-dcc55fe735e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-11T22:29:20.4165411Z","updatedOn":"2021-10-11T22:29:20.4165411Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5b65050-4b50-4b02-bea3-5986eccdd944","type":"Microsoft.Authorization/roleAssignments","name":"b5b65050-4b50-4b02-bea3-5986eccdd944"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-12T21:09:25.3258237Z","updatedOn":"2021-10-12T21:09:25.3258237Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/869d24c2-b6b1-4a26-9b9c-c50ecb64bc31","type":"Microsoft.Authorization/roleAssignments","name":"869d24c2-b6b1-4a26-9b9c-c50ecb64bc31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-13T08:19:03.1448099Z","updatedOn":"2021-10-13T08:19:03.1448099Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8869be9-f94e-47ae-90cb-c4d9bcb5b629","type":"Microsoft.Authorization/roleAssignments","name":"f8869be9-f94e-47ae-90cb-c4d9bcb5b629"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T04:53:25.9502873Z","updatedOn":"2021-10-14T04:53:36.3280652Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f622c27f-a03d-4fb8-b17d-7281dc0a984f","type":"Microsoft.Authorization/roleAssignments","name":"f622c27f-a03d-4fb8-b17d-7281dc0a984f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:26:21.6452814Z","updatedOn":"2021-10-14T05:26:21.6452814Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/439e7a28-2caf-11ec-ae23-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"439e7a28-2caf-11ec-ae23-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:54.7980840Z","updatedOn":"2021-10-14T05:37:54.7980840Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e049894b-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e049894b-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:56.1220463Z","updatedOn":"2021-10-14T05:37:56.1220463Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e1920687-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e1920687-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:58.2164501Z","updatedOn":"2021-10-14T05:37:58.2164501Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2809f7d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e2809f7d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:00.1774570Z","updatedOn":"2021-10-14T05:38:00.1774570Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3b78568-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e3b78568-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:01.6914375Z","updatedOn":"2021-10-14T05:38:01.6914375Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4e3f0fc-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e4e3f0fc-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:03.1856045Z","updatedOn":"2021-10-14T05:38:03.1856045Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e5c7c168-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e5c7c168-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:04.4121266Z","updatedOn":"2021-10-14T05:38:04.4121266Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e6847f02-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e6847f02-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:05.9623251Z","updatedOn":"2021-10-14T05:38:05.9623251Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7681b77-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e7681b77-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:07.5974823Z","updatedOn":"2021-10-14T05:38:07.5974823Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e82df158-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e82df158-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:09.3591403Z","updatedOn":"2021-10-14T05:38:09.3591403Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e94e3dd9-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e94e3dd9-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:11.1652349Z","updatedOn":"2021-10-14T05:38:11.1652349Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea5dbe0d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"ea5dbe0d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:12.6474393Z","updatedOn":"2021-10-14T05:38:12.6474393Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb6e896d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"eb6e896d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:15.1702403Z","updatedOn":"2021-10-14T05:38:15.1702403Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eceee9a0-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"eceee9a0-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T06:22:44.8991960Z","updatedOn":"2021-10-14T06:22:44.8991960Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2447d2a2-2cb7-11ec-91be-00224878e942","type":"Microsoft.Authorization/roleAssignments","name":"2447d2a2-2cb7-11ec-91be-00224878e942"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T06:22:46.4374928Z","updatedOn":"2021-10-14T06:22:46.4374928Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/251fc151-2cb7-11ec-91be-00224878e942","type":"Microsoft.Authorization/roleAssignments","name":"251fc151-2cb7-11ec-91be-00224878e942"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:33:15.8218562Z","updatedOn":"2021-10-14T07:33:15.8218562Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe04afe4-2cc0-11ec-81ff-0022487b1e92","type":"Microsoft.Authorization/roleAssignments","name":"fe04afe4-2cc0-11ec-81ff-0022487b1e92"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:18.3020716Z","updatedOn":"2021-10-14T07:59:18.3020716Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a1518374-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a1518374-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:20.8876342Z","updatedOn":"2021-10-14T07:59:20.8876342Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a311df17-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a311df17-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:22.4477860Z","updatedOn":"2021-10-14T07:59:22.4477860Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3c5b71e-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a3c5b71e-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:23.1051657Z","updatedOn":"2021-10-14T08:07:23.1051657Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c227b3cc-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c227b3cc-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:23.5151178Z","updatedOn":"2021-10-14T08:07:23.5151178Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c29ac901-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c29ac901-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:25.7287942Z","updatedOn":"2021-10-14T08:07:25.7287942Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c40b5411-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c40b5411-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:27.2660976Z","updatedOn":"2021-10-14T08:07:27.2660976Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4cb6a30-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c4cb6a30-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:08:16.5190337Z","updatedOn":"2021-10-14T08:08:16.5190337Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e226a828-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"e226a828-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:08:17.7439429Z","updatedOn":"2021-10-14T08:08:17.7439429Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2e43f64-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"e2e43f64-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T09:12:04.1832243Z","updatedOn":"2021-10-14T09:12:04.1832243Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5c9e442c-9d64-4022-9246-0c1c21af04be","type":"Microsoft.Authorization/roleAssignments","name":"5c9e442c-9d64-4022-9246-0c1c21af04be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T17:07:28.8635845Z","updatedOn":"2021-10-14T17:07:28.8635845Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed48d615-e7d8-4aef-90c7-332d7329e41c","type":"Microsoft.Authorization/roleAssignments","name":"ed48d615-e7d8-4aef-90c7-332d7329e41c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T18:16:37.9837987Z","updatedOn":"2021-10-14T18:16:37.9837987Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/debb0903-2d1a-11ec-a603-000d3a06aaec","type":"Microsoft.Authorization/roleAssignments","name":"debb0903-2d1a-11ec-a603-000d3a06aaec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T18:39:15.5366398Z","updatedOn":"2021-10-14T18:39:15.5366398Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07caa301-2d1e-11ec-a2ea-0022487748c3","type":"Microsoft.Authorization/roleAssignments","name":"07caa301-2d1e-11ec-a2ea-0022487748c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-15T17:37:53.7293023Z","updatedOn":"2021-10-15T17:37:53.7293023Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fbd09f2-2dde-11ec-b3e4-000d3a064a8a","type":"Microsoft.Authorization/roleAssignments","name":"9fbd09f2-2dde-11ec-b3e4-000d3a064a8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-18T06:22:38.4617338Z","updatedOn":"2021-10-18T06:22:38.4617338Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70844448-8be3-4c6f-9edf-443944f85a5a","type":"Microsoft.Authorization/roleAssignments","name":"70844448-8be3-4c6f-9edf-443944f85a5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-19T11:29:40.0474212Z","updatedOn":"2021-10-19T11:29:40.0474212Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d86e727f-30cf-11ec-bc8b-000d3ac2ec2b","type":"Microsoft.Authorization/roleAssignments","name":"d86e727f-30cf-11ec-bc8b-000d3ac2ec2b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-20T20:57:56.8996523Z","updatedOn":"2021-10-20T20:57:56.8996523Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66303328-31e8-11ec-99f4-000d3ac5c858","type":"Microsoft.Authorization/roleAssignments","name":"66303328-31e8-11ec-99f4-000d3ac5c858"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-21T15:12:00.0677049Z","updatedOn":"2021-10-21T15:12:00.0677049Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b630a77a-9e75-417f-b251-1584163d8926","type":"Microsoft.Authorization/roleAssignments","name":"b630a77a-9e75-417f-b251-1584163d8926"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-25T21:32:26.0121360Z","updatedOn":"2021-10-25T21:32:26.0121360Z","createdBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","updatedBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b15fba8-35db-11ec-b404-8c8590c603ee","type":"Microsoft.Authorization/roleAssignments","name":"0b15fba8-35db-11ec-b404-8c8590c603ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T07:30:52.4116907Z","updatedOn":"2021-10-26T07:30:52.4116907Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e78ac58b-8cfe-4ff6-9ac6-41453615c7e8","type":"Microsoft.Authorization/roleAssignments","name":"e78ac58b-8cfe-4ff6-9ac6-41453615c7e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T13:47:01.3444676Z","updatedOn":"2021-10-26T13:47:01.3444676Z","createdBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","updatedBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4933f1cd-0863-4429-a5be-3a81b2f80105","type":"Microsoft.Authorization/roleAssignments","name":"4933f1cd-0863-4429-a5be-3a81b2f80105"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T20:43:39.1375235Z","updatedOn":"2021-10-26T20:43:39.1375235Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad8f56c5-19b6-4e9f-b20f-8e3789a93873","type":"Microsoft.Authorization/roleAssignments","name":"ad8f56c5-19b6-4e9f-b20f-8e3789a93873"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-27T01:02:05.1338691Z","updatedOn":"2021-10-27T01:02:05.1338691Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a83de9c2-2bd5-4ba1-bc50-08d475a290a0","type":"Microsoft.Authorization/roleAssignments","name":"a83de9c2-2bd5-4ba1-bc50-08d475a290a0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-28T00:14:34.9745357Z","updatedOn":"2021-10-28T00:14:34.9745357Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3366cd2-4d12-4dbb-b05d-5e914628e986","type":"Microsoft.Authorization/roleAssignments","name":"e3366cd2-4d12-4dbb-b05d-5e914628e986"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-02T23:39:52.9481031Z","updatedOn":"2021-11-02T23:39:52.9481031Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0e37c03-a8a7-4765-af41-9a8584ad6413","type":"Microsoft.Authorization/roleAssignments","name":"b0e37c03-a8a7-4765-af41-9a8584ad6413"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c7393b34-138c-406f-901b-d8cf2b17e6ae","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T15:46:17.8935538Z","updatedOn":"2021-11-03T15:46:17.8935538Z","createdBy":"","updatedBy":"","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5b0e8d6-e30f-42a5-918c-01299416da2c","type":"Microsoft.Authorization/roleAssignments","name":"b5b0e8d6-e30f-42a5-918c-01299416da2c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T21:43:39.4750265Z","updatedOn":"2021-11-03T21:43:39.4750265Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/683b4375-f318-428e-a885-232a29ec8559","type":"Microsoft.Authorization/roleAssignments","name":"683b4375-f318-428e-a885-232a29ec8559"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T21:56:29.9810805Z","updatedOn":"2021-11-03T21:56:29.9810805Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e560c31c-8c6e-4bf0-9828-b2db658455b7","type":"Microsoft.Authorization/roleAssignments","name":"e560c31c-8c6e-4bf0-9828-b2db658455b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T06:06:21.8922666Z","updatedOn":"2021-11-04T06:06:21.8922666Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e1dcc78b-03c3-4db3-95a8-643dbcbbf2a3","type":"Microsoft.Authorization/roleAssignments","name":"e1dcc78b-03c3-4db3-95a8-643dbcbbf2a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T17:22:28.0293110Z","updatedOn":"2021-11-04T17:22:28.0293110Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84a6167f-c7d5-4404-b786-85fe4327c0ba","type":"Microsoft.Authorization/roleAssignments","name":"84a6167f-c7d5-4404-b786-85fe4327c0ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T17:24:51.0627597Z","updatedOn":"2021-11-04T17:24:51.0627597Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ff23217-f8a8-4e77-baee-41850cfb5554","type":"Microsoft.Authorization/roleAssignments","name":"8ff23217-f8a8-4e77-baee-41850cfb5554"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T05:21:11.0446928Z","updatedOn":"2021-11-16T05:21:11.0446928Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d01bef88-e1fa-4fc2-bd98-6845063b53b9","type":"Microsoft.Authorization/roleAssignments","name":"d01bef88-e1fa-4fc2-bd98-6845063b53b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T05:22:06.5362889Z","updatedOn":"2021-11-16T05:22:06.5362889Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/784d9b03-5635-4c89-ae5b-5c11ceff8a4c","type":"Microsoft.Authorization/roleAssignments","name":"784d9b03-5635-4c89-ae5b-5c11ceff8a4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T21:47:20.3762106Z","updatedOn":"2021-11-16T21:47:20.3762106Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/19b8a839-de9e-4712-a227-686679e98414","type":"Microsoft.Authorization/roleAssignments","name":"19b8a839-de9e-4712-a227-686679e98414"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T05:28:26.3873952Z","updatedOn":"2021-11-17T05:28:26.3873952Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a6cb292-435b-45d4-9f44-2dedb6f80804","type":"Microsoft.Authorization/roleAssignments","name":"4a6cb292-435b-45d4-9f44-2dedb6f80804"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T08:37:53.6375476Z","updatedOn":"2021-11-17T08:37:53.6375476Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7314a76-4781-11ec-9554-2eaf851e2751","type":"Microsoft.Authorization/roleAssignments","name":"a7314a76-4781-11ec-9554-2eaf851e2751"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T20:29:38.7986222Z","updatedOn":"2021-11-17T20:29:38.7986222Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41224d04-5912-49e9-98f2-df2d0c5768ed","type":"Microsoft.Authorization/roleAssignments","name":"41224d04-5912-49e9-98f2-df2d0c5768ed"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-23T02:37:39.0525328Z","updatedOn":"2021-11-23T02:37:39.0525328Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2917b10b-1776-4726-9e2a-1406d35584aa","type":"Microsoft.Authorization/roleAssignments","name":"2917b10b-1776-4726-9e2a-1406d35584aa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-24T04:19:48.8430130Z","updatedOn":"2021-11-24T04:19:48.8430130Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4738453f-e889-4428-817e-a18655a6df71","type":"Microsoft.Authorization/roleAssignments","name":"4738453f-e889-4428-817e-a18655a6df71"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-29T22:16:27.4091202Z","updatedOn":"2021-11-29T22:16:27.4091202Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dfaf3275-7f8c-449f-875f-d74ca2998764","type":"Microsoft.Authorization/roleAssignments","name":"dfaf3275-7f8c-449f-875f-d74ca2998764"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T06:59:34.7676928Z","updatedOn":"2021-11-30T06:59:34.7676928Z","createdBy":"471feb6d-5a83-439e-af7b-311f4eee2d0c","updatedBy":"471feb6d-5a83-439e-af7b-311f4eee2d0c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5848b58-7658-45ae-b979-fb230968ddf7","type":"Microsoft.Authorization/roleAssignments","name":"d5848b58-7658-45ae-b979-fb230968ddf7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T20:03:43.2359682Z","updatedOn":"2021-11-30T20:03:43.2359682Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3be3018e-84c0-48a4-bb36-fa997df4a911","type":"Microsoft.Authorization/roleAssignments","name":"3be3018e-84c0-48a4-bb36-fa997df4a911"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T22:23:07.4635927Z","updatedOn":"2021-11-30T22:23:07.4635927Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc52b5ce-1a69-4afd-aaab-745522d55219","type":"Microsoft.Authorization/roleAssignments","name":"fc52b5ce-1a69-4afd-aaab-745522d55219"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T02:05:06.3947111Z","updatedOn":"2021-12-01T02:05:06.3947111Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bfd977a2-74fb-4e8f-88a6-72b675ad0813","type":"Microsoft.Authorization/roleAssignments","name":"bfd977a2-74fb-4e8f-88a6-72b675ad0813"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T23:14:48.6056041Z","updatedOn":"2021-12-01T23:14:48.6056041Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2c2675a2-a48c-492f-a4d5-835ffdf8e57e","type":"Microsoft.Authorization/roleAssignments","name":"2c2675a2-a48c-492f-a4d5-835ffdf8e57e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T23:44:16.3921051Z","updatedOn":"2021-12-01T23:44:16.3921051Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc791163-7d7a-4988-96f8-969053cb4d75","type":"Microsoft.Authorization/roleAssignments","name":"bc791163-7d7a-4988-96f8-969053cb4d75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T07:40:53.7263371Z","updatedOn":"2021-12-02T07:40:53.7263371Z","createdBy":"027bf6cf-7fd4-4a57-80d7-4e52bd1fea5b","updatedBy":"027bf6cf-7fd4-4a57-80d7-4e52bd1fea5b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c592d108-71a6-4fbd-89f7-06c1656d0c93","type":"Microsoft.Authorization/roleAssignments","name":"c592d108-71a6-4fbd-89f7-06c1656d0c93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:36.8568746Z","updatedOn":"2021-12-02T08:41:36.8568746Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a8b008b0-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a8b008b0-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:38.4974834Z","updatedOn":"2021-12-02T08:41:38.4974834Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9ad9deb-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a9ad9deb-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:38.6316008Z","updatedOn":"2021-12-02T08:41:38.6316008Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9aa81cd-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a9aa81cd-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:38.6311993Z","updatedOn":"2021-12-02T08:41:38.6311993Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9c0a1a6-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a9c0a1a6-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T21:35:31.3727027Z","updatedOn":"2021-12-02T21:35:31.3727027Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/663204fa-95cb-45a0-938f-d817824509dd","type":"Microsoft.Authorization/roleAssignments","name":"663204fa-95cb-45a0-938f-d817824509dd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T22:09:46.1565055Z","updatedOn":"2021-12-02T22:09:46.1565055Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e97a88c4-e035-453b-b767-a3dbfadfd28d","type":"Microsoft.Authorization/roleAssignments","name":"e97a88c4-e035-453b-b767-a3dbfadfd28d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T23:10:20.2170014Z","updatedOn":"2021-12-02T23:10:20.2170014Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/afd2116e-f2ce-4bc2-8924-fb6f0c620d64","type":"Microsoft.Authorization/roleAssignments","name":"afd2116e-f2ce-4bc2-8924-fb6f0c620d64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-03T00:07:35.7286641Z","updatedOn":"2021-12-03T00:07:35.7286641Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/56d1c441-73b9-4b86-acc9-260016c81330","type":"Microsoft.Authorization/roleAssignments","name":"56d1c441-73b9-4b86-acc9-260016c81330"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-03T18:42:59.5078987Z","updatedOn":"2021-12-03T18:42:59.5078987Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b083534f-ae88-4db8-b65f-150284339772","type":"Microsoft.Authorization/roleAssignments","name":"b083534f-ae88-4db8-b65f-150284339772"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-03T21:00:00.5789423Z","updatedOn":"2021-12-03T21:00:00.5789423Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8684384c-7276-4e65-b708-6766a7c3a876","type":"Microsoft.Authorization/roleAssignments","name":"8684384c-7276-4e65-b708-6766a7c3a876"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-04T00:50:10.8909441Z","updatedOn":"2021-12-04T00:50:10.8909441Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cb7855e-82da-4910-b4ce-5f38896c067a","type":"Microsoft.Authorization/roleAssignments","name":"3cb7855e-82da-4910-b4ce-5f38896c067a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-07T12:35:57.6917673Z","updatedOn":"2021-12-07T12:35:57.6917673Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39e64286-575a-11ec-95aa-002248232e56","type":"Microsoft.Authorization/roleAssignments","name":"39e64286-575a-11ec-95aa-002248232e56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-07T23:18:12.3548251Z","updatedOn":"2021-12-07T23:18:12.3548251Z","createdBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","updatedBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f2265a95-57b3-11ec-a8e6-de1bbdf97372","type":"Microsoft.Authorization/roleAssignments","name":"f2265a95-57b3-11ec-a8e6-de1bbdf97372"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-08T03:01:28.5641674Z","updatedOn":"2021-12-08T03:01:28.5641674Z","createdBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","updatedBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2232ec95-57d3-11ec-bbe2-de1bbdf97372","type":"Microsoft.Authorization/roleAssignments","name":"2232ec95-57d3-11ec-bbe2-de1bbdf97372"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-08T03:07:36.8342803Z","updatedOn":"2021-12-08T03:07:36.8342803Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f1920cc-5cca-44c7-8175-d46948a9283f","type":"Microsoft.Authorization/roleAssignments","name":"9f1920cc-5cca-44c7-8175-d46948a9283f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-08T13:07:30.9635867Z","updatedOn":"2021-12-08T13:07:30.9635867Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc6359bd-5827-11ec-a516-000d3afc9734","type":"Microsoft.Authorization/roleAssignments","name":"cc6359bd-5827-11ec-a516-000d3afc9734"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-09T17:37:01.4296706Z","updatedOn":"2021-12-09T17:37:01.4296706Z","createdBy":"ae195f21-9b44-473d-9920-601e7899b56d","updatedBy":"ae195f21-9b44-473d-9920-601e7899b56d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9be22fd0-5916-11ec-b5a3-469e91f29611","type":"Microsoft.Authorization/roleAssignments","name":"9be22fd0-5916-11ec-b5a3-469e91f29611"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-10T14:31:24.3746709Z","updatedOn":"2021-12-10T14:31:24.3746709Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d9b6ef44-59c5-11ec-800e-0022487c3cbe","type":"Microsoft.Authorization/roleAssignments","name":"d9b6ef44-59c5-11ec-800e-0022487c3cbe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-13T07:46:54.6104588Z","updatedOn":"2021-12-13T07:46:54.6104588Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c65fe6b5-5be8-11ec-b892-000d3a518d38","type":"Microsoft.Authorization/roleAssignments","name":"c65fe6b5-5be8-11ec-b892-000d3a518d38"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-17T03:03:12.7081063Z","updatedOn":"2021-12-17T03:03:12.7081063Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/deb2cb98-5ee5-11ec-bd7f-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"deb2cb98-5ee5-11ec-bd7f-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-18T06:04:20.9532091Z","updatedOn":"2021-12-18T06:04:20.9532091Z","createdBy":"19263705-0667-497e-85e7-a930fa3441ec","updatedBy":"19263705-0667-497e-85e7-a930fa3441ec","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6eb35762-bc37-4c24-aec0-389e7cb97f95","type":"Microsoft.Authorization/roleAssignments","name":"6eb35762-bc37-4c24-aec0-389e7cb97f95"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-22T09:15:23.9226458Z","updatedOn":"2021-12-22T09:15:23.9226458Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7a9e1ec4-8728-4723-9fca-709f8549e3ac","type":"Microsoft.Authorization/roleAssignments","name":"7a9e1ec4-8728-4723-9fca-709f8549e3ac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-22T19:37:32.9555793Z","updatedOn":"2021-12-22T19:37:32.9555793Z","createdBy":"121978e2-c5f7-437f-b950-07f832f9f06c","updatedBy":"121978e2-c5f7-437f-b950-07f832f9f06c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a77cfdf9-fd0d-43f5-ba0d-0d36c8c1818e","type":"Microsoft.Authorization/roleAssignments","name":"a77cfdf9-fd0d-43f5-ba0d-0d36c8c1818e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-28T17:11:37.6373944Z","updatedOn":"2022-09-28T17:11:37.6373944Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b564621-3f50-11ed-918f-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"9b564621-3f50-11ed-918f-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-28T17:11:52.2247561Z","updatedOn":"2022-09-28T17:11:52.2247561Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3d8aeee-3f50-11ed-918f-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"a3d8aeee-3f50-11ed-918f-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-28T18:45:35.3728959Z","updatedOn":"2022-09-28T18:45:35.3728959Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5bb18d5f-3c20-4899-a01f-58313b28c345","type":"Microsoft.Authorization/roleAssignments","name":"5bb18d5f-3c20-4899-a01f-58313b28c345"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-30T18:34:26.1480517Z","updatedOn":"2022-09-30T18:34:26.1480517Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/828f43f9-40ee-11ed-9683-0022482b84fb","type":"Microsoft.Authorization/roleAssignments","name":"828f43f9-40ee-11ed-9683-0022482b84fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-30T18:34:28.0235766Z","updatedOn":"2022-09-30T18:34:28.0235766Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83a3304a-40ee-11ed-9683-0022482b84fb","type":"Microsoft.Authorization/roleAssignments","name":"83a3304a-40ee-11ed-9683-0022482b84fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T14:35:19.0321994Z","updatedOn":"2022-10-03T14:35:19.0321994Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99965ae6-4328-11ed-939f-aae2aa7b83bb","type":"Microsoft.Authorization/roleAssignments","name":"99965ae6-4328-11ed-939f-aae2aa7b83bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T14:35:23.0970392Z","updatedOn":"2022-10-03T14:35:23.0970392Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9c1721f9-4328-11ed-939f-aae2aa7b83bb","type":"Microsoft.Authorization/roleAssignments","name":"9c1721f9-4328-11ed-939f-aae2aa7b83bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T18:39:25.8455066Z","updatedOn":"2022-10-03T18:39:25.8455066Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":"adding + my aksdev SPs per https://dev.azure.com/msazure/CloudNativeCompute/_wiki/wikis/CloudNativeCompute.wiki/54089/Standalone-Environment-Usage?anchor=authentication-failed-issues"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b4fc89b2-a0bc-4661-a4f4-96170e3da3c3","type":"Microsoft.Authorization/roleAssignments","name":"b4fc89b2-a0bc-4661-a4f4-96170e3da3c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T21:14:21.6709207Z","updatedOn":"2022-10-03T21:14:21.6709207Z","createdBy":"2182129f-e575-4986-a7fb-2be7772ba46f","updatedBy":"2182129f-e575-4986-a7fb-2be7772ba46f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/58ef0b60-4360-11ed-84ae-4ef510510e8a","type":"Microsoft.Authorization/roleAssignments","name":"58ef0b60-4360-11ed-84ae-4ef510510e8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T21:14:25.9942421Z","updatedOn":"2022-10-03T21:14:25.9942421Z","createdBy":"2182129f-e575-4986-a7fb-2be7772ba46f","updatedBy":"2182129f-e575-4986-a7fb-2be7772ba46f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5b271148-4360-11ed-84ae-4ef510510e8a","type":"Microsoft.Authorization/roleAssignments","name":"5b271148-4360-11ed-84ae-4ef510510e8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T08:46:58.1120536Z","updatedOn":"2022-10-04T08:46:58.1120536Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46d7c91e-4182-4715-9d5c-c143514d0e96","type":"Microsoft.Authorization/roleAssignments","name":"46d7c91e-4182-4715-9d5c-c143514d0e96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T08:46:58.7908585Z","updatedOn":"2022-10-04T08:46:58.7908585Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0215f1ea-81dc-42cd-b2b0-62ed51ec1e8f","type":"Microsoft.Authorization/roleAssignments","name":"0215f1ea-81dc-42cd-b2b0-62ed51ec1e8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T15:17:47.0575990Z","updatedOn":"2022-10-04T15:17:47.0575990Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09dff59a-a350-4eb7-b515-b439773bf953","type":"Microsoft.Authorization/roleAssignments","name":"09dff59a-a350-4eb7-b515-b439773bf953"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T20:25:24.7922965Z","updatedOn":"2022-10-04T20:25:24.7922965Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac245566-4422-11ed-b4e4-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"ac245566-4422-11ed-b4e4-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T20:25:29.7192947Z","updatedOn":"2022-10-04T20:25:29.7192947Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/af78cdbe-4422-11ed-b4e4-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"af78cdbe-4422-11ed-b4e4-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-05T17:17:50.2296097Z","updatedOn":"2022-10-05T17:17:50.2296097Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18d61426-19b2-45ab-a04c-35bf0954b5f2","type":"Microsoft.Authorization/roleAssignments","name":"18d61426-19b2-45ab-a04c-35bf0954b5f2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T21:18:34.5111716Z","updatedOn":"2022-10-06T21:18:34.5111716Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/90e84a6f-382e-4cd0-8b7c-249f30414d26","type":"Microsoft.Authorization/roleAssignments","name":"90e84a6f-382e-4cd0-8b7c-249f30414d26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T21:19:26.0775289Z","updatedOn":"2022-10-06T21:19:26.0775289Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/245ffe6b-708b-41b4-b4a5-0328063f9511","type":"Microsoft.Authorization/roleAssignments","name":"245ffe6b-708b-41b4-b4a5-0328063f9511"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T22:01:04.9042316Z","updatedOn":"2022-10-06T22:01:04.9042316Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/809518d2-215b-449f-9909-1cf5275f82ff","type":"Microsoft.Authorization/roleAssignments","name":"809518d2-215b-449f-9909-1cf5275f82ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T22:01:18.8874783Z","updatedOn":"2022-10-06T22:01:18.8874783Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/50ca23bf-0051-4116-a073-86a9415cc7e4","type":"Microsoft.Authorization/roleAssignments","name":"50ca23bf-0051-4116-a073-86a9415cc7e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T00:36:14.3318961Z","updatedOn":"2022-10-07T00:36:14.3318961Z","createdBy":"b3ae1fad-98a9-46c4-bd0b-193e8efd9450","updatedBy":"b3ae1fad-98a9-46c4-bd0b-193e8efd9450","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ba8ceaf-45d8-11ed-bb9e-0eabbd04010c","type":"Microsoft.Authorization/roleAssignments","name":"0ba8ceaf-45d8-11ed-bb9e-0eabbd04010c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:18.2176259Z","updatedOn":"2022-10-07T16:36:18.2176259Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0eafb5be-ea9a-495c-82c9-8337449b1150","type":"Microsoft.Authorization/roleAssignments","name":"0eafb5be-ea9a-495c-82c9-8337449b1150"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:22.7662640Z","updatedOn":"2022-10-07T16:36:22.7662640Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7cb15a6c-7b73-430f-91aa-02113db930cb","type":"Microsoft.Authorization/roleAssignments","name":"7cb15a6c-7b73-430f-91aa-02113db930cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:29.4358024Z","updatedOn":"2022-10-07T16:36:29.4358024Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1b259a44-7824-434b-8f81-8df465b85fd5","type":"Microsoft.Authorization/roleAssignments","name":"1b259a44-7824-434b-8f81-8df465b85fd5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:33.7158336Z","updatedOn":"2022-10-07T16:36:33.7158336Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3156b3a1-bc03-4d84-b2df-09d0d0eab4b1","type":"Microsoft.Authorization/roleAssignments","name":"3156b3a1-bc03-4d84-b2df-09d0d0eab4b1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:35.7999116Z","updatedOn":"2022-10-07T16:36:35.7999116Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1d30073-ff57-48fa-96e7-dfc85b8c7975","type":"Microsoft.Authorization/roleAssignments","name":"b1d30073-ff57-48fa-96e7-dfc85b8c7975"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-09T05:08:21.9096837Z","updatedOn":"2022-10-09T05:08:21.9096837Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d747b25-fa91-4429-a72b-0a4e2079ed03","type":"Microsoft.Authorization/roleAssignments","name":"8d747b25-fa91-4429-a72b-0a4e2079ed03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-10T05:53:40.9849719Z","updatedOn":"2022-10-10T05:53:40.9849719Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3cfb29d-485f-11ed-b38e-562c47d8c70b","type":"Microsoft.Authorization/roleAssignments","name":"e3cfb29d-485f-11ed-b38e-562c47d8c70b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-10T05:53:46.7676576Z","updatedOn":"2022-10-10T05:53:46.7676576Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e6c4b18f-485f-11ed-b38e-562c47d8c70b","type":"Microsoft.Authorization/roleAssignments","name":"e6c4b18f-485f-11ed-b38e-562c47d8c70b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-10T19:26:54.0213364Z","updatedOn":"2022-10-10T19:26:54.0213364Z","createdBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","updatedBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ed9bd3d-48d1-11ed-8d0c-000d3af6a88e","type":"Microsoft.Authorization/roleAssignments","name":"7ed9bd3d-48d1-11ed-8d0c-000d3af6a88e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T05:01:21.4237199Z","updatedOn":"2022-10-11T05:01:21.4237199Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbc092b8-61c0-429f-bc40-457c06ef2ae3","type":"Microsoft.Authorization/roleAssignments","name":"bbc092b8-61c0-429f-bc40-457c06ef2ae3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T06:32:06.2810453Z","updatedOn":"2022-10-11T06:32:06.2810453Z","createdBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","updatedBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c482116-492e-11ed-b1e5-50814031cc1b","type":"Microsoft.Authorization/roleAssignments","name":"6c482116-492e-11ed-b1e5-50814031cc1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T06:32:11.8691902Z","updatedOn":"2022-10-11T06:32:11.8691902Z","createdBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","updatedBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6f333b0b-492e-11ed-b1e5-50814031cc1b","type":"Microsoft.Authorization/roleAssignments","name":"6f333b0b-492e-11ed-b1e5-50814031cc1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T10:41:27.4966216Z","updatedOn":"2022-10-11T10:41:27.4966216Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4aaba87d-be3b-49d5-90e6-02100140c50d","type":"Microsoft.Authorization/roleAssignments","name":"4aaba87d-be3b-49d5-90e6-02100140c50d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-12T06:14:22.3962768Z","updatedOn":"2022-10-12T06:14:22.3962768Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c7ad8940-3c2c-4a0a-b59a-5c6408cce033","type":"Microsoft.Authorization/roleAssignments","name":"c7ad8940-3c2c-4a0a-b59a-5c6408cce033"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-12T23:06:16.2844894Z","updatedOn":"2022-10-12T23:06:16.2844894Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8434c983-cdd3-40c4-9531-78b5f16fea23","type":"Microsoft.Authorization/roleAssignments","name":"8434c983-cdd3-40c4-9531-78b5f16fea23"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-12T23:06:16.4551494Z","updatedOn":"2022-10-12T23:06:16.4551494Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4281f456-78ed-4ef7-b058-d980c90bf6f9","type":"Microsoft.Authorization/roleAssignments","name":"4281f456-78ed-4ef7-b058-d980c90bf6f9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-18T14:04:58.5223716Z","updatedOn":"2022-10-18T14:04:58.5223716Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9158a450-cec7-48ba-8469-fc085e252e56","type":"Microsoft.Authorization/roleAssignments","name":"9158a450-cec7-48ba-8469-fc085e252e56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-19T17:08:57.8704270Z","updatedOn":"2022-10-19T17:08:57.8704270Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf874421-44f9-4a19-8abd-da0f4f04a24f","type":"Microsoft.Authorization/roleAssignments","name":"bf874421-44f9-4a19-8abd-da0f4f04a24f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-19T23:09:40.3682015Z","updatedOn":"2022-10-19T23:09:40.3682015Z","createdBy":"57440c04-5eed-4c74-92b6-44b016b882f2","updatedBy":"57440c04-5eed-4c74-92b6-44b016b882f2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2bafd93-beec-4d8b-b5f0-9893ef27a090","type":"Microsoft.Authorization/roleAssignments","name":"b2bafd93-beec-4d8b-b5f0-9893ef27a090"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-25T20:45:40.4378406Z","updatedOn":"2022-10-25T20:45:40.4378406Z","createdBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","updatedBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbadcf84-54a5-11ed-b2c3-0e0011011627","type":"Microsoft.Authorization/roleAssignments","name":"fbadcf84-54a5-11ed-b2c3-0e0011011627"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-25T20:45:44.2349413Z","updatedOn":"2022-10-25T20:45:44.2349413Z","createdBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","updatedBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fde7916d-54a5-11ed-b2c3-0e0011011627","type":"Microsoft.Authorization/roleAssignments","name":"fde7916d-54a5-11ed-b2c3-0e0011011627"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T16:44:45.2471286Z","updatedOn":"2022-10-26T16:44:45.2471286Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6649fcf-1731-4db5-8e3b-31af16600402","type":"Microsoft.Authorization/roleAssignments","name":"c6649fcf-1731-4db5-8e3b-31af16600402"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T21:24:42.6980121Z","updatedOn":"2022-10-26T21:24:42.6980121Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b1323cf-e4ec-4454-ac08-5f88d588f133","type":"Microsoft.Authorization/roleAssignments","name":"9b1323cf-e4ec-4454-ac08-5f88d588f133"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T23:12:13.5663015Z","updatedOn":"2022-10-26T23:12:13.5663015Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9db19562-5583-11ed-a49b-aa665a565a49","type":"Microsoft.Authorization/roleAssignments","name":"9db19562-5583-11ed-a49b-aa665a565a49"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-27T20:49:50.5273108Z","updatedOn":"2022-10-27T20:49:50.5273108Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1a0bbbc6-febb-4d40-9e39-5274a2edd538","type":"Microsoft.Authorization/roleAssignments","name":"1a0bbbc6-febb-4d40-9e39-5274a2edd538"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-31T21:38:36.6886945Z","updatedOn":"2022-10-31T21:38:36.6886945Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a85bdf2-6490-4989-9276-f2071fcf02c7","type":"Microsoft.Authorization/roleAssignments","name":"6a85bdf2-6490-4989-9276-f2071fcf02c7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-01T17:32:59.4211774Z","updatedOn":"2022-11-01T17:32:59.4211774Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a3d71f8-5a0b-11ed-ae92-000d3a6dafe7","type":"Microsoft.Authorization/roleAssignments","name":"3a3d71f8-5a0b-11ed-ae92-000d3a6dafe7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-03T20:33:30.2762577Z","updatedOn":"2022-11-03T20:33:30.2762577Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6983693-5bb6-11ed-ae23-72674b3691e8","type":"Microsoft.Authorization/roleAssignments","name":"c6983693-5bb6-11ed-ae23-72674b3691e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-03T20:33:33.9941086Z","updatedOn":"2022-11-03T20:33:33.9941086Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c90a1190-5bb6-11ed-ae23-72674b3691e8","type":"Microsoft.Authorization/roleAssignments","name":"c90a1190-5bb6-11ed-ae23-72674b3691e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-03T22:01:34.3526622Z","updatedOn":"2022-11-03T22:01:34.3526622Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/572d1281-1073-4df2-a41a-6ec6ab01ccf4","type":"Microsoft.Authorization/roleAssignments","name":"572d1281-1073-4df2-a41a-6ec6ab01ccf4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-04T17:44:58.1069368Z","updatedOn":"2022-11-04T17:44:58.1069368Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65ead23f-5c68-11ed-81d0-000d3ac6042c","type":"Microsoft.Authorization/roleAssignments","name":"65ead23f-5c68-11ed-81d0-000d3ac6042c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-04T17:44:58.3889675Z","updatedOn":"2022-11-04T17:44:58.3889675Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65f36b55-5c68-11ed-81d0-000d3ac6042c","type":"Microsoft.Authorization/roleAssignments","name":"65f36b55-5c68-11ed-81d0-000d3ac6042c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-07T21:00:30.9927458Z","updatedOn":"2022-11-07T21:00:30.9927458Z","createdBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","updatedBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3631fc51-5edf-11ed-b8d9-bee096dd1f56","type":"Microsoft.Authorization/roleAssignments","name":"3631fc51-5edf-11ed-b8d9-bee096dd1f56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-07T23:06:40.7350135Z","updatedOn":"2022-11-07T23:06:40.7350135Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82f4d8cb-f92b-4183-8a57-9a266f8ed475","type":"Microsoft.Authorization/roleAssignments","name":"82f4d8cb-f92b-4183-8a57-9a266f8ed475"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T00:45:45.2308519Z","updatedOn":"2022-11-08T00:45:45.2308519Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad83b644-5efe-11ed-9afa-76a84c3a8985","type":"Microsoft.Authorization/roleAssignments","name":"ad83b644-5efe-11ed-9afa-76a84c3a8985"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T00:45:54.5576407Z","updatedOn":"2022-11-08T00:45:54.5576407Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2f5ecd2-5efe-11ed-9afa-76a84c3a8985","type":"Microsoft.Authorization/roleAssignments","name":"b2f5ecd2-5efe-11ed-9afa-76a84c3a8985"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T17:38:14.0062888Z","updatedOn":"2022-11-08T17:38:14.0062888Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5a5cfdf-e8ad-4d53-a1a9-3a7191efa68a","type":"Microsoft.Authorization/roleAssignments","name":"b5a5cfdf-e8ad-4d53-a1a9-3a7191efa68a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T20:41:35.2460898Z","updatedOn":"2022-11-08T20:41:35.2460898Z","createdBy":"77ac7883-1816-45e5-8784-444d95195dfe","updatedBy":"77ac7883-1816-45e5-8784-444d95195dfe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbdb8a06-5fa5-11ed-87b5-52a0a45b7fbb","type":"Microsoft.Authorization/roleAssignments","name":"bbdb8a06-5fa5-11ed-87b5-52a0a45b7fbb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T20:41:39.0095016Z","updatedOn":"2022-11-08T20:41:39.0095016Z","createdBy":"77ac7883-1816-45e5-8784-444d95195dfe","updatedBy":"77ac7883-1816-45e5-8784-444d95195dfe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be17ddaf-5fa5-11ed-87b5-52a0a45b7fbb","type":"Microsoft.Authorization/roleAssignments","name":"be17ddaf-5fa5-11ed-87b5-52a0a45b7fbb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T04:24:29.2903032Z","updatedOn":"2022-11-09T04:24:29.2903032Z","createdBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","updatedBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6672401b-5fe6-11ed-8d26-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"6672401b-5fe6-11ed-8d26-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T04:24:32.7816834Z","updatedOn":"2022-11-09T04:24:32.7816834Z","createdBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","updatedBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/687908be-5fe6-11ed-8d26-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"687908be-5fe6-11ed-8d26-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T06:49:46.3320446Z","updatedOn":"2022-11-09T06:49:46.3320446Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40e96901-a9d4-4fc3-8d80-c55979cad3f4","type":"Microsoft.Authorization/roleAssignments","name":"40e96901-a9d4-4fc3-8d80-c55979cad3f4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T06:57:50.8140024Z","updatedOn":"2022-11-09T06:57:50.8140024Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54117e37-77ed-4fc2-a64e-7f5cfee1e3cb","type":"Microsoft.Authorization/roleAssignments","name":"54117e37-77ed-4fc2-a64e-7f5cfee1e3cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-15T17:00:53.9224351Z","updatedOn":"2022-11-15T17:00:53.9224351Z","createdBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","updatedBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb3fa35d-14c6-476e-965d-3287df835fb6","type":"Microsoft.Authorization/roleAssignments","name":"eb3fa35d-14c6-476e-965d-3287df835fb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-16T17:45:41.6438991Z","updatedOn":"2022-11-16T18:12:21.7351318Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89d1db20-3058-52b8-8e72-ffbee92652bc","type":"Microsoft.Authorization/roleAssignments","name":"89d1db20-3058-52b8-8e72-ffbee92652bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-17T20:00:21.8300657Z","updatedOn":"2022-11-17T20:00:21.8300657Z","createdBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","updatedBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/770d246f-66b2-11ed-9a7a-5eff6da83896","type":"Microsoft.Authorization/roleAssignments","name":"770d246f-66b2-11ed-9a7a-5eff6da83896"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:13:16.4073065Z","updatedOn":"2023-05-12T17:27:11.5958673Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d9c1e76-d133-5014-a053-fa81b5a5ddcc","type":"Microsoft.Authorization/roleAssignments","name":"8d9c1e76-d133-5014-a053-fa81b5a5ddcc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:13:16.3810810Z","updatedOn":"2023-05-12T17:27:11.6002511Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9589fe9-37b5-52e8-b6a1-05baa0e40ea2","type":"Microsoft.Authorization/roleAssignments","name":"b9589fe9-37b5-52e8-b6a1-05baa0e40ea2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:13:16.4335352Z","updatedOn":"2023-05-12T17:27:11.6253602Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df3deb96-df88-5ecf-9db1-b40cda69a5b1","type":"Microsoft.Authorization/roleAssignments","name":"df3deb96-df88-5ecf-9db1-b40cda69a5b1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-29T22:31:21.5082047Z","updatedOn":"2023-05-12T17:27:12.7611677Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe4c31ea-8d12-5bbd-80e8-749dd04c242c","type":"Microsoft.Authorization/roleAssignments","name":"fe4c31ea-8d12-5bbd-80e8-749dd04c242c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-18T19:59:52.7113168Z","updatedOn":"2022-11-18T19:59:52.7113168Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/909e97c0-677b-11ed-b3d1-4e4b7fc6d2d7","type":"Microsoft.Authorization/roleAssignments","name":"909e97c0-677b-11ed-b3d1-4e4b7fc6d2d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-18T19:59:56.7899280Z","updatedOn":"2022-11-18T19:59:56.7899280Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9302a900-677b-11ed-b3d1-4e4b7fc6d2d7","type":"Microsoft.Authorization/roleAssignments","name":"9302a900-677b-11ed-b3d1-4e4b7fc6d2d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-18T22:57:24.7333928Z","updatedOn":"2022-11-18T22:57:24.7333928Z","createdBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","updatedBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/616b0a5c-ef17-4f5c-8f54-932fb42ed1b6","type":"Microsoft.Authorization/roleAssignments","name":"616b0a5c-ef17-4f5c-8f54-932fb42ed1b6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-20T08:02:14.3563436Z","updatedOn":"2022-11-20T08:02:14.3563436Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59455a7f-8688-4fa9-bca1-b14ff86b45d8","type":"Microsoft.Authorization/roleAssignments","name":"59455a7f-8688-4fa9-bca1-b14ff86b45d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-22T12:28:29.6735062Z","updatedOn":"2022-11-22T12:28:29.6735062Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a01068c-6a61-11ed-b280-38f9d359b369","type":"Microsoft.Authorization/roleAssignments","name":"2a01068c-6a61-11ed-b280-38f9d359b369"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-22T12:28:35.6487701Z","updatedOn":"2022-11-22T12:28:35.6487701Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2dec6a7a-6a61-11ed-b280-38f9d359b369","type":"Microsoft.Authorization/roleAssignments","name":"2dec6a7a-6a61-11ed-b280-38f9d359b369"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-23T19:27:15.6029824Z","updatedOn":"2022-11-23T19:27:15.6029824Z","createdBy":"573ee898-c9b5-4556-b5b7-ba398712832e","updatedBy":"573ee898-c9b5-4556-b5b7-ba398712832e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5624ab6-6b64-11ed-99e5-a29c0e078d5a","type":"Microsoft.Authorization/roleAssignments","name":"d5624ab6-6b64-11ed-99e5-a29c0e078d5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-23T19:27:29.8496193Z","updatedOn":"2022-11-23T19:27:29.8496193Z","createdBy":"573ee898-c9b5-4556-b5b7-ba398712832e","updatedBy":"573ee898-c9b5-4556-b5b7-ba398712832e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ddce2c51-6b64-11ed-99e5-a29c0e078d5a","type":"Microsoft.Authorization/roleAssignments","name":"ddce2c51-6b64-11ed-99e5-a29c0e078d5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-24T08:00:52.4569469Z","updatedOn":"2022-11-24T08:00:52.4569469Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ea38765-a469-4975-a3b3-69c47e46e70b","type":"Microsoft.Authorization/roleAssignments","name":"9ea38765-a469-4975-a3b3-69c47e46e70b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-24T08:01:11.1412012Z","updatedOn":"2022-11-24T08:01:11.1412012Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f7e731a-0d5b-4591-a97d-0ee2053825bb","type":"Microsoft.Authorization/roleAssignments","name":"9f7e731a-0d5b-4591-a97d-0ee2053825bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T08:56:33.0370700Z","updatedOn":"2022-11-28T08:56:33.0370700Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4d08049c-272d-4905-a2b6-cd89456c5382","type":"Microsoft.Authorization/roleAssignments","name":"4d08049c-272d-4905-a2b6-cd89456c5382"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T18:00:17.3116606Z","updatedOn":"2022-11-28T18:00:17.3116606Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/839a632b-6f46-11ed-9f3a-002248be91cc","type":"Microsoft.Authorization/roleAssignments","name":"839a632b-6f46-11ed-9f3a-002248be91cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T21:24:30.3728549Z","updatedOn":"2022-11-28T21:24:30.3728549Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ad622e0-6f63-11ed-a15a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"0ad622e0-6f63-11ed-a15a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T21:24:34.5112467Z","updatedOn":"2022-11-28T21:24:34.5112467Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d6f187c-6f63-11ed-a15a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"0d6f187c-6f63-11ed-a15a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-29T19:42:39.8350492Z","updatedOn":"2022-11-29T19:42:39.8350492Z","createdBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","updatedBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb69dd10-701d-11ed-8940-6ca1001ae258","type":"Microsoft.Authorization/roleAssignments","name":"fb69dd10-701d-11ed-8940-6ca1001ae258"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-29T19:42:43.2096038Z","updatedOn":"2022-11-29T19:42:43.2096038Z","createdBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","updatedBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd6fed09-701d-11ed-8940-6ca1001ae258","type":"Microsoft.Authorization/roleAssignments","name":"fd6fed09-701d-11ed-8940-6ca1001ae258"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-30T07:32:24.0648059Z","updatedOn":"2022-11-30T07:32:24.0648059Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d745d98-b683-45b9-92a8-918aacf64633","type":"Microsoft.Authorization/roleAssignments","name":"2d745d98-b683-45b9-92a8-918aacf64633"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-01T22:00:12.5092022Z","updatedOn":"2022-12-01T22:00:12.5092022Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/29f80035-534e-479f-bf9d-3243cd2eba93","type":"Microsoft.Authorization/roleAssignments","name":"29f80035-534e-479f-bf9d-3243cd2eba93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-02T07:52:06.0754526Z","updatedOn":"2022-12-02T07:52:06.0754526Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/17ce4c2c-8051-4420-a6ac-6aeb91441711","type":"Microsoft.Authorization/roleAssignments","name":"17ce4c2c-8051-4420-a6ac-6aeb91441711"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-02T23:54:37.7637423Z","updatedOn":"2022-12-02T23:54:37.7637423Z","createdBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","updatedBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e8902907-9bef-55f7-9a6d-64e3cf3b1a77","type":"Microsoft.Authorization/roleAssignments","name":"e8902907-9bef-55f7-9a6d-64e3cf3b1a77"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-05T17:29:10.2915092Z","updatedOn":"2022-12-05T17:29:10.2915092Z","createdBy":"500b0839-c682-4003-9106-8f37a381595d","updatedBy":"500b0839-c682-4003-9106-8f37a381595d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/53a3b656-74c2-11ed-b2ea-f21d81f4d94b","type":"Microsoft.Authorization/roleAssignments","name":"53a3b656-74c2-11ed-b2ea-f21d81f4d94b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-05T17:29:19.7335221Z","updatedOn":"2022-12-05T17:29:19.7335221Z","createdBy":"500b0839-c682-4003-9106-8f37a381595d","updatedBy":"500b0839-c682-4003-9106-8f37a381595d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59486582-74c2-11ed-b2ea-f21d81f4d94b","type":"Microsoft.Authorization/roleAssignments","name":"59486582-74c2-11ed-b2ea-f21d81f4d94b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T00:27:21.1321238Z","updatedOn":"2022-12-06T00:27:21.1321238Z","createdBy":"010e39fa-3d22-4576-ad28-9709490d3973","updatedBy":"010e39fa-3d22-4576-ad28-9709490d3973","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bdc7c72a-74fc-11ed-b1d9-fe40d632c9c8","type":"Microsoft.Authorization/roleAssignments","name":"bdc7c72a-74fc-11ed-b1d9-fe40d632c9c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T00:27:26.7978650Z","updatedOn":"2022-12-06T00:27:26.7978650Z","createdBy":"010e39fa-3d22-4576-ad28-9709490d3973","updatedBy":"010e39fa-3d22-4576-ad28-9709490d3973","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c1df0b20-74fc-11ed-b1d9-fe40d632c9c8","type":"Microsoft.Authorization/roleAssignments","name":"c1df0b20-74fc-11ed-b1d9-fe40d632c9c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T08:09:07.9286883Z","updatedOn":"2022-12-06T08:09:07.9286883Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a54f40a-fc73-4967-93de-1fda5f77fa18","type":"Microsoft.Authorization/roleAssignments","name":"8a54f40a-fc73-4967-93de-1fda5f77fa18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T08:09:07.0223985Z","updatedOn":"2022-12-06T08:09:07.0223985Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/37a700cb-bd3a-4961-a7b7-cf21f1049fd6","type":"Microsoft.Authorization/roleAssignments","name":"37a700cb-bd3a-4961-a7b7-cf21f1049fd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-09T14:12:43.2358573Z","updatedOn":"2022-12-09T14:12:43.2358573Z","createdBy":"500b0839-c682-4003-9106-8f37a381595d","updatedBy":"500b0839-c682-4003-9106-8f37a381595d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88d9f0e9-77cb-11ed-a931-4ecc509b30ab","type":"Microsoft.Authorization/roleAssignments","name":"88d9f0e9-77cb-11ed-a931-4ecc509b30ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T12:05:48.4827550Z","updatedOn":"2022-12-12T12:05:48.4827550Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d238237a-b393-4ab0-9f00-cdf16c5d6b05","type":"Microsoft.Authorization/roleAssignments","name":"d238237a-b393-4ab0-9f00-cdf16c5d6b05"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T16:10:53.3465450Z","updatedOn":"2022-12-12T16:10:53.3465450Z","createdBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","updatedBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8bcca047-7a37-11ed-9b42-5a0f21a4ffba","type":"Microsoft.Authorization/roleAssignments","name":"8bcca047-7a37-11ed-9b42-5a0f21a4ffba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T16:10:57.7295344Z","updatedOn":"2022-12-12T16:10:57.7295344Z","createdBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","updatedBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e42900b-7a37-11ed-9b42-5a0f21a4ffba","type":"Microsoft.Authorization/roleAssignments","name":"8e42900b-7a37-11ed-9b42-5a0f21a4ffba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-14T08:51:42.0015523Z","updatedOn":"2022-12-14T08:51:42.0015523Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d01084d-4e3a-414c-ac62-c3ef82dc3302","type":"Microsoft.Authorization/roleAssignments","name":"8d01084d-4e3a-414c-ac62-c3ef82dc3302"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-16T07:20:02.6088062Z","updatedOn":"2022-12-16T07:20:02.6088062Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0cb541fc-7d12-11ed-8232-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"0cb541fc-7d12-11ed-8232-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-20T19:00:39.7938573Z","updatedOn":"2022-12-20T19:00:39.7938573Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/991d89fd-8098-11ed-a1dc-1e0cf6619ffa","type":"Microsoft.Authorization/roleAssignments","name":"991d89fd-8098-11ed-a1dc-1e0cf6619ffa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-21T19:53:55.0673117Z","updatedOn":"2022-12-21T19:53:55.0673117Z","createdBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","updatedBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/31f1b70c-8169-11ed-871d-bc091b9528f6","type":"Microsoft.Authorization/roleAssignments","name":"31f1b70c-8169-11ed-871d-bc091b9528f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-21T19:54:01.7874075Z","updatedOn":"2022-12-21T19:54:01.7874075Z","createdBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","updatedBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35eb2367-8169-11ed-871d-bc091b9528f6","type":"Microsoft.Authorization/roleAssignments","name":"35eb2367-8169-11ed-871d-bc091b9528f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-23T14:42:33.0388657Z","updatedOn":"2022-12-23T14:42:33.0388657Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7077d7fa-4615-4792-b394-80918dd155ce","type":"Microsoft.Authorization/roleAssignments","name":"7077d7fa-4615-4792-b394-80918dd155ce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-28T13:20:44.8421429Z","updatedOn":"2022-12-28T13:20:44.8421429Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b48d252-d31a-57c7-8cf6-cb5fed6d1a67","type":"Microsoft.Authorization/roleAssignments","name":"4b48d252-d31a-57c7-8cf6-cb5fed6d1a67"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-03T12:31:11.2683110Z","updatedOn":"2023-01-03T12:31:11.2683110Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d408ddb7-31cd-4d46-ab59-fe1be61b2bdc","type":"Microsoft.Authorization/roleAssignments","name":"d408ddb7-31cd-4d46-ab59-fe1be61b2bdc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-06T08:15:45.7088191Z","updatedOn":"2023-01-06T08:15:45.7088191Z","createdBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","updatedBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/510806b0-8d9a-11ed-9e4f-000d3ac772b5","type":"Microsoft.Authorization/roleAssignments","name":"510806b0-8d9a-11ed-9e4f-000d3ac772b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-06T08:15:51.6046641Z","updatedOn":"2023-01-06T08:15:51.6046641Z","createdBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","updatedBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54802b41-8d9a-11ed-9e4f-000d3ac772b5","type":"Microsoft.Authorization/roleAssignments","name":"54802b41-8d9a-11ed-9e4f-000d3ac772b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-06T22:24:58.0712756Z","updatedOn":"2023-01-06T22:24:58.0712756Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbcde9e0-3481-49ad-b1f1-e7226db43e33","type":"Microsoft.Authorization/roleAssignments","name":"cbcde9e0-3481-49ad-b1f1-e7226db43e33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-07T00:15:43.3039407Z","updatedOn":"2023-01-07T00:15:43.3039407Z","createdBy":"80a6e936-2bdc-4927-b49e-2a7a19943b90","updatedBy":"80a6e936-2bdc-4927-b49e-2a7a19943b90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7e73e7e9-99f9-5fa0-a5c8-33268a3e7acc","type":"Microsoft.Authorization/roleAssignments","name":"7e73e7e9-99f9-5fa0-a5c8-33268a3e7acc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-08T14:40:12.1322327Z","updatedOn":"2023-01-08T14:40:12.1322327Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9146e5ba-1dce-41c3-bee6-6e854049e485","type":"Microsoft.Authorization/roleAssignments","name":"9146e5ba-1dce-41c3-bee6-6e854049e485"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-08T14:46:46.8171282Z","updatedOn":"2023-01-08T14:46:46.8171282Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3073c0fc-4181-4de7-bb2d-ceb46bd805c2","type":"Microsoft.Authorization/roleAssignments","name":"3073c0fc-4181-4de7-bb2d-ceb46bd805c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-10T05:58:31.6725565Z","updatedOn":"2023-01-10T05:58:31.6725565Z","createdBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","updatedBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce4f420e-90ab-11ed-81da-002248575167","type":"Microsoft.Authorization/roleAssignments","name":"ce4f420e-90ab-11ed-81da-002248575167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-10T05:58:38.3068493Z","updatedOn":"2023-01-10T05:58:38.3068493Z","createdBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","updatedBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2369b82-90ab-11ed-81da-002248575167","type":"Microsoft.Authorization/roleAssignments","name":"d2369b82-90ab-11ed-81da-002248575167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-10T06:45:54.6704864Z","updatedOn":"2023-01-10T06:45:54.6704864Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6de0e553-90b2-11ed-9d42-6045bd78eeea","type":"Microsoft.Authorization/roleAssignments","name":"6de0e553-90b2-11ed-9d42-6045bd78eeea"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-11T22:44:31.5456256Z","updatedOn":"2023-01-11T22:44:31.5456256Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/55a9c9ca-e483-44ad-ab32-17ac0f1905e2","type":"Microsoft.Authorization/roleAssignments","name":"55a9c9ca-e483-44ad-ab32-17ac0f1905e2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-12T07:27:30.7499209Z","updatedOn":"2023-01-12T07:27:30.7499209Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c2fcdf3-9376-46c4-862c-c5478fad402d","type":"Microsoft.Authorization/roleAssignments","name":"6c2fcdf3-9376-46c4-862c-c5478fad402d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-12T20:29:47.8942736Z","updatedOn":"2023-01-12T20:29:47.8942736Z","createdBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","updatedBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dad76eb4-92b7-11ed-9e92-3e22fbc2ce2f","type":"Microsoft.Authorization/roleAssignments","name":"dad76eb4-92b7-11ed-9e92-3e22fbc2ce2f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-12T20:29:51.8091784Z","updatedOn":"2023-01-12T20:29:51.8091784Z","createdBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","updatedBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd198dce-92b7-11ed-9e92-3e22fbc2ce2f","type":"Microsoft.Authorization/roleAssignments","name":"dd198dce-92b7-11ed-9e92-3e22fbc2ce2f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-13T05:50:47.3154688Z","updatedOn":"2023-01-13T05:50:47.3154688Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/38d171ad-9306-11ed-a704-ee47e05c3b1e","type":"Microsoft.Authorization/roleAssignments","name":"38d171ad-9306-11ed-a704-ee47e05c3b1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-13T05:50:53.1628390Z","updatedOn":"2023-01-13T05:50:53.1628390Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3bf43d16-9306-11ed-a704-ee47e05c3b1e","type":"Microsoft.Authorization/roleAssignments","name":"3bf43d16-9306-11ed-a704-ee47e05c3b1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-14T06:07:18.3233862Z","updatedOn":"2023-01-14T06:07:18.3233862Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2587a66-93d1-11ed-a6e9-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"b2587a66-93d1-11ed-a6e9-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-14T06:07:23.4646871Z","updatedOn":"2023-01-14T06:07:23.4646871Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b56e4d80-93d1-11ed-a6e9-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"b56e4d80-93d1-11ed-a6e9-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-16T23:52:20.1337328Z","updatedOn":"2023-01-16T23:52:20.1337328Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/911d588d-e4a0-5501-bd42-db0fe4ac81ea","type":"Microsoft.Authorization/roleAssignments","name":"911d588d-e4a0-5501-bd42-db0fe4ac81ea"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-17T21:03:20.3495010Z","updatedOn":"2023-01-17T21:03:20.3495010Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":"partner + team engineer "},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b200ea13-6210-46cf-b622-5e1fa94d7196","type":"Microsoft.Authorization/roleAssignments","name":"b200ea13-6210-46cf-b622-5e1fa94d7196"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-17T21:55:10.9367237Z","updatedOn":"2023-01-17T21:55:10.9367237Z","createdBy":"252476b5-423c-4de6-8f23-f3b57897abfc","updatedBy":"252476b5-423c-4de6-8f23-f3b57897abfc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9c4d35c3-96b1-11ed-bcb1-aa442d61f9f5","type":"Microsoft.Authorization/roleAssignments","name":"9c4d35c3-96b1-11ed-bcb1-aa442d61f9f5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-18T16:39:36.8544109Z","updatedOn":"2023-01-18T16:39:36.8544109Z","createdBy":"57440c04-5eed-4c74-92b6-44b016b882f2","updatedBy":"57440c04-5eed-4c74-92b6-44b016b882f2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e47587fc-952b-11ed-9582-22998bd40e8c","type":"Microsoft.Authorization/roleAssignments","name":"e47587fc-952b-11ed-9582-22998bd40e8c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-19T06:11:42.7348591Z","updatedOn":"2023-01-19T06:11:42.7348591Z","createdBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","updatedBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dcee111d-97c0-11ed-8b08-5e144daaf885","type":"Microsoft.Authorization/roleAssignments","name":"dcee111d-97c0-11ed-8b08-5e144daaf885"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-19T06:11:46.7450508Z","updatedOn":"2023-01-19T06:11:46.7450508Z","createdBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","updatedBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df259f28-97c0-11ed-8b08-5e144daaf885","type":"Microsoft.Authorization/roleAssignments","name":"df259f28-97c0-11ed-8b08-5e144daaf885"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-20T21:01:23.9458046Z","updatedOn":"2023-05-12T17:27:12.7106298Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f654663-8564-546e-a6fc-452f7b76de5a","type":"Microsoft.Authorization/roleAssignments","name":"5f654663-8564-546e-a6fc-452f7b76de5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T17:09:42.5564083Z","updatedOn":"2023-01-23T17:09:42.5564083Z","createdBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","updatedBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9e2414b-9b40-11ed-96c6-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"b9e2414b-9b40-11ed-96c6-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T17:09:45.5610260Z","updatedOn":"2023-01-23T17:09:45.5610260Z","createdBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","updatedBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbc6263b-9b40-11ed-96c6-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"bbc6263b-9b40-11ed-96c6-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T18:43:59.1011432Z","updatedOn":"2023-01-23T18:43:59.1011432Z","createdBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","updatedBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e58487c6-9b4d-11ed-8c22-8c1645a48227","type":"Microsoft.Authorization/roleAssignments","name":"e58487c6-9b4d-11ed-8c22-8c1645a48227"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T18:44:02.5989503Z","updatedOn":"2023-01-23T18:44:02.5989503Z","createdBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","updatedBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7a002ef-9b4d-11ed-8c22-8c1645a48227","type":"Microsoft.Authorization/roleAssignments","name":"e7a002ef-9b4d-11ed-8c22-8c1645a48227"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-10T06:45:47.1925698Z","updatedOn":"2022-03-10T06:45:47.1925698Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4aaa7af-d414-42e9-bd99-b14d707753a7","type":"Microsoft.Authorization/roleAssignments","name":"e4aaa7af-d414-42e9-bd99-b14d707753a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-11T03:42:35.9073660Z","updatedOn":"2022-03-11T03:42:35.9073660Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a0f9eea-a0ed-11ec-9b90-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"4a0f9eea-a0ed-11ec-9b90-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-11T19:59:10.3149108Z","updatedOn":"2022-03-11T19:59:10.3149108Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b6e06a80-a175-11ec-8f66-002248778035","type":"Microsoft.Authorization/roleAssignments","name":"b6e06a80-a175-11ec-8f66-002248778035"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-14T05:57:31.9169431Z","updatedOn":"2022-03-14T05:57:31.9169431Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/04323e79-5b88-4b91-86e7-b8bfa1c2d8b9","type":"Microsoft.Authorization/roleAssignments","name":"04323e79-5b88-4b91-86e7-b8bfa1c2d8b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-14T23:57:21.8404827Z","updatedOn":"2022-03-14T23:57:21.8404827Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/824ca9a3-a3f2-11ec-b5c2-626147b15e2d","type":"Microsoft.Authorization/roleAssignments","name":"824ca9a3-a3f2-11ec-b5c2-626147b15e2d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-15T05:47:06.0764200Z","updatedOn":"2022-03-15T05:47:06.0764200Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d8c0655-15f2-4864-9ebf-6c5d95ea5797","type":"Microsoft.Authorization/roleAssignments","name":"3d8c0655-15f2-4864-9ebf-6c5d95ea5797"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-15T05:48:19.3617384Z","updatedOn":"2022-03-15T05:48:19.3617384Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5a1298d-008a-4dad-95db-70d41dc0ff2e","type":"Microsoft.Authorization/roleAssignments","name":"b5a1298d-008a-4dad-95db-70d41dc0ff2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-15T19:57:01.4651070Z","updatedOn":"2022-03-15T19:57:01.4651070Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f90898e-0a20-4778-b842-abc610614801","type":"Microsoft.Authorization/roleAssignments","name":"2f90898e-0a20-4778-b842-abc610614801"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-16T02:56:12.3673604Z","updatedOn":"2022-03-16T02:56:12.3673604Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be953738-c4c0-4da0-9b0f-42c89eb31451","type":"Microsoft.Authorization/roleAssignments","name":"be953738-c4c0-4da0-9b0f-42c89eb31451"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T10:12:31.1977135Z","updatedOn":"2022-03-21T10:12:31.1977135Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92ad8cda-f519-4160-b28d-6e0e8d19fb8e","type":"Microsoft.Authorization/roleAssignments","name":"92ad8cda-f519-4160-b28d-6e0e8d19fb8e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T17:57:33.7215077Z","updatedOn":"2022-03-21T17:57:33.7215077Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6210523c-a940-11ec-88f4-00224850c1b5","type":"Microsoft.Authorization/roleAssignments","name":"6210523c-a940-11ec-88f4-00224850c1b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T22:00:37.3135630Z","updatedOn":"2022-03-21T22:00:37.3135630Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5678b88f-a962-11ec-b646-0022487a9d6b","type":"Microsoft.Authorization/roleAssignments","name":"5678b88f-a962-11ec-b646-0022487a9d6b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T23:00:49.2441783Z","updatedOn":"2022-03-21T23:00:49.2441783Z","createdBy":"3a522b7c-61fd-4fcf-aa7f-3e8a6e7cc3af","updatedBy":"3a522b7c-61fd-4fcf-aa7f-3e8a6e7cc3af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bef73288-a96a-11ec-bd2b-6acf089951ab","type":"Microsoft.Authorization/roleAssignments","name":"bef73288-a96a-11ec-bd2b-6acf089951ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-22T04:03:04.2502656Z","updatedOn":"2022-03-22T04:03:04.2502656Z","createdBy":"9d0cc8e5-b005-4b2b-9a31-3b6c624d5330","updatedBy":"9d0cc8e5-b005-4b2b-9a31-3b6c624d5330","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8a4f8a7-a994-11ec-b30e-4a9f38c1a382","type":"Microsoft.Authorization/roleAssignments","name":"f8a4f8a7-a994-11ec-b30e-4a9f38c1a382"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-22T13:40:03.8073664Z","updatedOn":"2022-03-22T13:40:03.8073664Z","createdBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","updatedBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/93f47801-a9e5-11ec-86a5-3a3e6c7e1ac8","type":"Microsoft.Authorization/roleAssignments","name":"93f47801-a9e5-11ec-86a5-3a3e6c7e1ac8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-23T10:14:54.3796697Z","updatedOn":"2022-03-23T10:14:54.3796697Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e3f182b-aa92-11ec-9c92-18c04da96df8","type":"Microsoft.Authorization/roleAssignments","name":"0e3f182b-aa92-11ec-9c92-18c04da96df8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-23T23:47:01.7045602Z","updatedOn":"2022-03-23T23:47:01.7045602Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5312596-61f6-486a-ad10-fdb35f1c1665","type":"Microsoft.Authorization/roleAssignments","name":"d5312596-61f6-486a-ad10-fdb35f1c1665"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-25T05:07:14.4623821Z","updatedOn":"2022-03-25T05:07:14.4623821Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df7fe6e9-3cf1-4547-ba81-c1ad0d7d565d","type":"Microsoft.Authorization/roleAssignments","name":"df7fe6e9-3cf1-4547-ba81-c1ad0d7d565d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-29T14:13:44.9635087Z","updatedOn":"2022-03-29T14:13:44.9635087Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/530db943-4ece-46bc-b456-79374d5ec2ba","type":"Microsoft.Authorization/roleAssignments","name":"530db943-4ece-46bc-b456-79374d5ec2ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-30T16:18:52.9056346Z","updatedOn":"2022-03-30T16:18:52.9056346Z","createdBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","updatedBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3e0d853-568c-4e64-851d-2292fe92a007","type":"Microsoft.Authorization/roleAssignments","name":"d3e0d853-568c-4e64-851d-2292fe92a007"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-05T04:54:30.2719737Z","updatedOn":"2022-04-05T04:54:30.2719737Z","createdBy":"f0b00319-13f5-4c2b-928a-73ccb5edd222","updatedBy":"f0b00319-13f5-4c2b-928a-73ccb5edd222","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78ffc9e7-b49c-11ec-964c-b219be9347e3","type":"Microsoft.Authorization/roleAssignments","name":"78ffc9e7-b49c-11ec-964c-b219be9347e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-05T22:40:43.0016940Z","updatedOn":"2022-04-05T22:40:43.0016940Z","createdBy":"639a731d-01eb-47bc-88aa-c1e2ba14db02","updatedBy":"639a731d-01eb-47bc-88aa-c1e2ba14db02","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c9e0e6c-b531-11ec-aea8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6c9e0e6c-b531-11ec-aea8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-06T12:49:05.2173956Z","updatedOn":"2022-04-06T12:49:05.2173956Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f0a7f4e5-b5a7-11ec-bae5-000d3a6f3c6e","type":"Microsoft.Authorization/roleAssignments","name":"f0a7f4e5-b5a7-11ec-bae5-000d3a6f3c6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-07T01:16:34.9503446Z","updatedOn":"2022-04-07T01:16:34.9503446Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5bdb51f8-5551-44f9-9819-a52fa97c2fef","type":"Microsoft.Authorization/roleAssignments","name":"5bdb51f8-5551-44f9-9819-a52fa97c2fef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-11T05:16:56.1225175Z","updatedOn":"2022-04-11T05:16:56.1225175Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99904768-b956-11ec-a61a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"99904768-b956-11ec-a61a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T23:22:51.6419715Z","updatedOn":"2022-04-12T23:22:51.6419715Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/788b9be6-bab7-11ec-b096-0022487898d6","type":"Microsoft.Authorization/roleAssignments","name":"788b9be6-bab7-11ec-b096-0022487898d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T07:42:38.9160126Z","updatedOn":"2022-04-13T07:42:38.9160126Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a58e304-bafd-11ec-8461-a2dde8388af9","type":"Microsoft.Authorization/roleAssignments","name":"4a58e304-bafd-11ec-8461-a2dde8388af9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T16:12:39.4214747Z","updatedOn":"2022-04-13T16:12:39.4214747Z","createdBy":"c302f71c-7b89-4d55-8c87-135833038531","updatedBy":"c302f71c-7b89-4d55-8c87-135833038531","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3bd4838c-4c24-4bb6-b31f-d055dc68694f","type":"Microsoft.Authorization/roleAssignments","name":"3bd4838c-4c24-4bb6-b31f-d055dc68694f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T09:53:20.2997466Z","updatedOn":"2022-04-14T09:53:20.2997466Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b44f0aaa-bbd8-11ec-8da6-0a4cab55437d","type":"Microsoft.Authorization/roleAssignments","name":"b44f0aaa-bbd8-11ec-8da6-0a4cab55437d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T16:49:01.5455829Z","updatedOn":"2022-04-14T16:49:01.5455829Z","createdBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","updatedBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","delegatedManagedIdentityResourceId":null,"description":"Allows + github actions to run e2e tests. Only the main branch is permitted access, + and credentials are not shared with forks."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4e9d34c-9113-45d4-a0f0-175593c38c33","type":"Microsoft.Authorization/roleAssignments","name":"f4e9d34c-9113-45d4-a0f0-175593c38c33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-20T06:23:32.6340955Z","updatedOn":"2022-04-20T06:23:32.6340955Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6675beb7-c072-11ec-b9ab-000d3ac3f60e","type":"Microsoft.Authorization/roleAssignments","name":"6675beb7-c072-11ec-b9ab-000d3ac3f60e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-20T18:02:47.6341581Z","updatedOn":"2022-04-20T18:02:47.6341581Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/56617dbb-76a1-401d-96fe-8a22f58284d8","type":"Microsoft.Authorization/roleAssignments","name":"56617dbb-76a1-401d-96fe-8a22f58284d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T08:17:07.1604388Z","updatedOn":"2022-04-21T08:17:07.1604388Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6e60c2be-c14b-11ec-82b0-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6e60c2be-c14b-11ec-82b0-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T21:36:13.8709604Z","updatedOn":"2022-04-21T21:36:13.8709604Z","createdBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","updatedBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/10b94b6e-c1bb-11ec-9ff7-523c2f7f99a3","type":"Microsoft.Authorization/roleAssignments","name":"10b94b6e-c1bb-11ec-9ff7-523c2f7f99a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-22T18:55:55.5256074Z","updatedOn":"2022-04-22T18:55:55.5256074Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6917978-c26d-11ec-a699-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"d6917978-c26d-11ec-a699-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-24T10:36:03.4988906Z","updatedOn":"2022-04-24T10:36:03.4988906Z","createdBy":"d3cd2b55-3b25-4b68-b6fd-a08967de9266","updatedBy":"d3cd2b55-3b25-4b68-b6fd-a08967de9266","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/558d3e63-c3ba-11ec-b4f9-000d3ac7d8f0","type":"Microsoft.Authorization/roleAssignments","name":"558d3e63-c3ba-11ec-b4f9-000d3ac7d8f0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-25T06:33:58.7782201Z","updatedOn":"2022-04-25T06:33:58.7782201Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ae507161-c461-11ec-b99d-4a4f5b60a172","type":"Microsoft.Authorization/roleAssignments","name":"ae507161-c461-11ec-b99d-4a4f5b60a172"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-26T16:28:17.7010346Z","updatedOn":"2022-04-26T16:28:17.7010346Z","createdBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","updatedBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e04b1510-c57d-11ec-a3c9-0641de48d9d3","type":"Microsoft.Authorization/roleAssignments","name":"e04b1510-c57d-11ec-a3c9-0641de48d9d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-26T21:31:37.1620998Z","updatedOn":"2022-04-26T21:31:37.1620998Z","createdBy":"9bf576b7-c3cf-492b-9bcf-8c8832e2e0a5","updatedBy":"9bf576b7-c3cf-492b-9bcf-8c8832e2e0a5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/409a9eb9-c5a8-11ec-b358-d20abc546c29","type":"Microsoft.Authorization/roleAssignments","name":"409a9eb9-c5a8-11ec-b358-d20abc546c29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-28T07:13:54.9152651Z","updatedOn":"2022-04-28T07:13:54.9152651Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5f3166a-ed3f-43a7-9b34-bb910beaee12","type":"Microsoft.Authorization/roleAssignments","name":"f5f3166a-ed3f-43a7-9b34-bb910beaee12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T12:14:12.5786055Z","updatedOn":"2022-05-02T12:14:12.5786055Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f06c939-ca11-11ec-9966-da65ad1ab332","type":"Microsoft.Authorization/roleAssignments","name":"5f06c939-ca11-11ec-9966-da65ad1ab332"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:17.4008338Z","updatedOn":"2022-05-02T13:40:17.4008338Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/846f4e2d-0ec9-48ef-fd6e-6ac1cb7586e6","type":"Microsoft.Authorization/roleAssignments","name":"846f4e2d-0ec9-48ef-fd6e-6ac1cb7586e6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.8453423Z","updatedOn":"2022-05-02T13:40:18.8453423Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e72a2b8a-2c36-4ac1-aec3-4fa68f3cae16","type":"Microsoft.Authorization/roleAssignments","name":"e72a2b8a-2c36-4ac1-aec3-4fa68f3cae16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.0609853Z","updatedOn":"2022-05-02T13:40:18.0609853Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/72e6bf18-35fb-436e-3e05-9ba0a0747299","type":"Microsoft.Authorization/roleAssignments","name":"72e6bf18-35fb-436e-3e05-9ba0a0747299"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.1173679Z","updatedOn":"2022-05-02T13:40:18.1173679Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/724e274f-6e37-445c-608e-199fb9eaa982","type":"Microsoft.Authorization/roleAssignments","name":"724e274f-6e37-445c-608e-199fb9eaa982"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T16:59:33.5195217Z","updatedOn":"2022-05-02T16:59:33.5195217Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/98620dcd-bcc5-4828-b846-369c64574ee1","type":"Microsoft.Authorization/roleAssignments","name":"98620dcd-bcc5-4828-b846-369c64574ee1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T06:36:46.9583100Z","updatedOn":"2022-05-09T06:36:46.9583100Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5a313ab-6903-471c-a6bf-8d84989e8cb4","type":"Microsoft.Authorization/roleAssignments","name":"d5a313ab-6903-471c-a6bf-8d84989e8cb4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T22:20:41.5499828Z","updatedOn":"2022-05-09T22:20:41.5499828Z","createdBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","updatedBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/425f8b8d-cfe6-11ec-bbe5-00155ddd560d","type":"Microsoft.Authorization/roleAssignments","name":"425f8b8d-cfe6-11ec-bbe5-00155ddd560d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-10T06:15:39.4482664Z","updatedOn":"2022-05-10T06:15:39.4482664Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a2ff126-fb32-4ca9-8c4d-c8b22209cbc1","type":"Microsoft.Authorization/roleAssignments","name":"8a2ff126-fb32-4ca9-8c4d-c8b22209cbc1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-11T23:10:09.0651064Z","updatedOn":"2022-05-11T23:10:09.0651064Z","createdBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","updatedBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/804a630f-d17f-11ec-bb71-6045bdab52dc","type":"Microsoft.Authorization/roleAssignments","name":"804a630f-d17f-11ec-bb71-6045bdab52dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-12T13:47:03.3832395Z","updatedOn":"2022-05-12T13:47:03.3832395Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00bc6898-d1fa-11ec-974a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"00bc6898-d1fa-11ec-974a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-13T20:36:59.6109396Z","updatedOn":"2022-05-13T20:36:59.6109396Z","createdBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","updatedBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ea3a01d-d2fc-11ec-9997-be6e344e58c1","type":"Microsoft.Authorization/roleAssignments","name":"6ea3a01d-d2fc-11ec-9997-be6e344e58c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-17T06:49:11.7087809Z","updatedOn":"2022-05-17T06:49:11.7087809Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07f76b15-d899-4d21-8542-29c2479e05e1","type":"Microsoft.Authorization/roleAssignments","name":"07f76b15-d899-4d21-8542-29c2479e05e1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-18T13:22:09.5941967Z","updatedOn":"2022-05-18T13:22:09.5941967Z","createdBy":"52d64fbe-1728-4b2b-a0c4-849705cb9c96","updatedBy":"52d64fbe-1728-4b2b-a0c4-849705cb9c96","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/847201fc-d6ad-11ec-a176-000d3a083c47","type":"Microsoft.Authorization/roleAssignments","name":"847201fc-d6ad-11ec-a176-000d3a083c47"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-20T22:35:09.9396236Z","updatedOn":"2022-05-20T22:35:09.9396236Z","createdBy":"1ec25b73-94d5-4bf9-a56f-ca7d9bd4164c","updatedBy":"1ec25b73-94d5-4bf9-a56f-ca7d9bd4164c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5d512f6-fb53-4fad-b3be-ec154c7a6085","type":"Microsoft.Authorization/roleAssignments","name":"c5d512f6-fb53-4fad-b3be-ec154c7a6085"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-22T23:45:36.9119159Z","updatedOn":"2022-05-22T23:45:36.9119159Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46fd33ed-da29-11ec-919f-6045bd7a16bc","type":"Microsoft.Authorization/roleAssignments","name":"46fd33ed-da29-11ec-919f-6045bd7a16bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-23T03:50:38.5802008Z","updatedOn":"2022-05-23T03:50:38.5802008Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ab46785f-2521-4172-871f-91e7dc500a5b","type":"Microsoft.Authorization/roleAssignments","name":"ab46785f-2521-4172-871f-91e7dc500a5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-23T18:09:05.5672217Z","updatedOn":"2022-05-23T18:09:05.5672217Z","createdBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","updatedBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3f47f83-e599-4106-974f-5ff73955ffa6","type":"Microsoft.Authorization/roleAssignments","name":"e3f47f83-e599-4106-974f-5ff73955ffa6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-24T20:49:20.4480948Z","updatedOn":"2022-05-24T20:49:20.4480948Z","createdBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","updatedBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbf490ce-dba2-11ec-b0af-6045bdab52dc","type":"Microsoft.Authorization/roleAssignments","name":"fbf490ce-dba2-11ec-b0af-6045bdab52dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-25T18:39:32.8389167Z","updatedOn":"2022-05-25T18:39:32.8389167Z","createdBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","updatedBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/048a3cf1-dc5a-11ec-8804-6045bdab52dc","type":"Microsoft.Authorization/roleAssignments","name":"048a3cf1-dc5a-11ec-8804-6045bdab52dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T01:53:46.3648590Z","updatedOn":"2022-05-26T01:53:46.3648590Z","createdBy":"834b5e76-453d-44f5-80ff-3481c8415d66","updatedBy":"834b5e76-453d-44f5-80ff-3481c8415d66","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac5ab95a-dc96-11ec-92bb-065f8efd402d","type":"Microsoft.Authorization/roleAssignments","name":"ac5ab95a-dc96-11ec-92bb-065f8efd402d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T06:40:41.8769416Z","updatedOn":"2022-05-26T06:40:41.8769416Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2812727c-1e58-49f0-84a6-13e2b8b7cce7","type":"Microsoft.Authorization/roleAssignments","name":"2812727c-1e58-49f0-84a6-13e2b8b7cce7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T16:39:02.6438636Z","updatedOn":"2022-05-26T16:39:02.6438636Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5bb051d1-dd12-11ec-8dd4-9e3ebf2d444f","type":"Microsoft.Authorization/roleAssignments","name":"5bb051d1-dd12-11ec-8dd4-9e3ebf2d444f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-28T07:02:36.1409282Z","updatedOn":"2022-05-28T07:02:36.1409282Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dbf46cb0-1221-443e-bab0-9cd11b7afece","type":"Microsoft.Authorization/roleAssignments","name":"dbf46cb0-1221-443e-bab0-9cd11b7afece"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-31T03:23:22.9404784Z","updatedOn":"2022-05-31T03:23:22.9404784Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/047700b3-e091-11ec-b7b9-f6caf9b02627","type":"Microsoft.Authorization/roleAssignments","name":"047700b3-e091-11ec-b7b9-f6caf9b02627"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-31T03:25:49.5470268Z","updatedOn":"2022-05-31T03:25:49.5470268Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b03550bc-b4aa-4aab-8bd7-0d27b86c9380","type":"Microsoft.Authorization/roleAssignments","name":"b03550bc-b4aa-4aab-8bd7-0d27b86c9380"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-01T14:15:14.5143992Z","updatedOn":"2022-06-01T14:15:14.5143992Z","createdBy":"572b7854-a995-402b-8482-46e12d3c9665","updatedBy":"572b7854-a995-402b-8482-46e12d3c9665","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41183c3a-e1b5-11ec-bad7-3c7c3f1d0035","type":"Microsoft.Authorization/roleAssignments","name":"41183c3a-e1b5-11ec-bad7-3c7c3f1d0035"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-01T15:59:31.6776783Z","updatedOn":"2022-06-01T15:59:31.6776783Z","createdBy":"203de16f-a918-45b1-bde4-6cc574d16944","updatedBy":"203de16f-a918-45b1-bde4-6cc574d16944","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e0dd4b8a-e1c3-11ec-949c-7a1cf6c5b419","type":"Microsoft.Authorization/roleAssignments","name":"e0dd4b8a-e1c3-11ec-949c-7a1cf6c5b419"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-01T18:14:50.2776576Z","updatedOn":"2022-06-01T18:14:50.2776576Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61f89f02-3565-409f-8e72-fc4e58b40178","type":"Microsoft.Authorization/roleAssignments","name":"61f89f02-3565-409f-8e72-fc4e58b40178"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-02T10:22:35.3875246Z","updatedOn":"2022-06-02T10:22:35.3875246Z","createdBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","updatedBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eabe3f5d-e25d-11ec-9d25-002248575167","type":"Microsoft.Authorization/roleAssignments","name":"eabe3f5d-e25d-11ec-9d25-002248575167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-02T19:10:50.1608669Z","updatedOn":"2022-06-02T19:10:50.1608669Z","createdBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","updatedBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d33bf47-7a98-4cca-84be-a622a8a520ae","type":"Microsoft.Authorization/roleAssignments","name":"2d33bf47-7a98-4cca-84be-a622a8a520ae"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-03T17:52:39.6424601Z","updatedOn":"2022-06-03T17:52:39.6424601Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/808a6fa6-1aa8-401a-b12d-3dbf49678aa5","type":"Microsoft.Authorization/roleAssignments","name":"808a6fa6-1aa8-401a-b12d-3dbf49678aa5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-03T18:32:43.3145647Z","updatedOn":"2022-06-03T18:32:43.3145647Z","createdBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","updatedBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ce8e3fe-e36b-11ec-93c2-0ebbe08470ef","type":"Microsoft.Authorization/roleAssignments","name":"8ce8e3fe-e36b-11ec-93c2-0ebbe08470ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-03T20:51:18.9925616Z","updatedOn":"2022-06-03T20:51:18.9925616Z","createdBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","updatedBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea9b98ba-e37e-11ec-b495-0ebbe08470ef","type":"Microsoft.Authorization/roleAssignments","name":"ea9b98ba-e37e-11ec-b495-0ebbe08470ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-06T19:39:15.5380737Z","updatedOn":"2022-06-06T19:39:15.5380737Z","createdBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","updatedBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57d73d6c-e5d0-11ec-a3ee-c220c0843243","type":"Microsoft.Authorization/roleAssignments","name":"57d73d6c-e5d0-11ec-a3ee-c220c0843243"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-07T02:58:19.0816460Z","updatedOn":"2022-06-07T02:58:19.0816460Z","createdBy":"0bf53c4f-0173-466d-967d-debbe9e551d6","updatedBy":"0bf53c4f-0173-466d-967d-debbe9e551d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/adea0756-e60d-11ec-bd0e-66dbb5eba95d","type":"Microsoft.Authorization/roleAssignments","name":"adea0756-e60d-11ec-bd0e-66dbb5eba95d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-07T18:27:18.2907455Z","updatedOn":"2022-06-07T18:27:18.2907455Z","createdBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","updatedBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/75dc9d88-e68f-11ec-bbbc-aa665a03731d","type":"Microsoft.Authorization/roleAssignments","name":"75dc9d88-e68f-11ec-bbbc-aa665a03731d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-08T18:25:22.6640205Z","updatedOn":"2022-06-08T18:25:22.6640205Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/17b651ab-ff7f-4cf2-833a-27f695725732","type":"Microsoft.Authorization/roleAssignments","name":"17b651ab-ff7f-4cf2-833a-27f695725732"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-08T19:34:11.0218858Z","updatedOn":"2022-06-08T19:34:11.0218858Z","createdBy":"1b51b78e-fd1f-484f-98b6-3423d189977b","updatedBy":"1b51b78e-fd1f-484f-98b6-3423d189977b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5e9c3a1d-3f79-4e4b-9b9d-fbe1f3d09ec5","type":"Microsoft.Authorization/roleAssignments","name":"5e9c3a1d-3f79-4e4b-9b9d-fbe1f3d09ec5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-08T19:46:00.8296947Z","updatedOn":"2022-06-08T19:46:00.8296947Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f2fd786-e763-11ec-b282-000d3af64fa4","type":"Microsoft.Authorization/roleAssignments","name":"9f2fd786-e763-11ec-b282-000d3af64fa4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-09T01:49:44.1244830Z","updatedOn":"2022-06-09T01:49:44.1244830Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14a2ebaa-ca44-4eb7-851c-01d577cb625e","type":"Microsoft.Authorization/roleAssignments","name":"14a2ebaa-ca44-4eb7-851c-01d577cb625e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-09T23:29:31.3797237Z","updatedOn":"2022-06-09T23:29:31.3797237Z","createdBy":"b34e062a-5a73-4cec-af00-1ecb446deb92","updatedBy":"b34e062a-5a73-4cec-af00-1ecb446deb92","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/02f3fb8e-e84c-11ec-bd1c-6045bd7e546a","type":"Microsoft.Authorization/roleAssignments","name":"02f3fb8e-e84c-11ec-bd1c-6045bd7e546a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T15:06:09.3851225Z","updatedOn":"2022-06-10T15:06:09.3851225Z","createdBy":"fb4b724d-4b7e-4756-aa0b-d91dc0c5acc9","updatedBy":"fb4b724d-4b7e-4756-aa0b-d91dc0c5acc9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/db7a073e-e8ce-11ec-8b1d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"db7a073e-e8ce-11ec-8b1d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T18:05:28.7449646Z","updatedOn":"2022-06-10T18:05:28.7449646Z","createdBy":"0e06046f-cf0d-4924-86b0-bbcf36a1936f","updatedBy":"0e06046f-cf0d-4924-86b0-bbcf36a1936f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7824ddb-e8e7-11ec-b465-421b394b7a96","type":"Microsoft.Authorization/roleAssignments","name":"e7824ddb-e8e7-11ec-b465-421b394b7a96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T18:05:29.8303312Z","updatedOn":"2022-06-10T18:05:29.8303312Z","createdBy":"1295ee3f-edbd-4185-9628-13318404c52a","updatedBy":"1295ee3f-edbd-4185-9628-13318404c52a","delegatedManagedIdentityResourceId":null,"description":"New + AKS member"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/609b8d2a-2b4f-4767-aa5e-c5c7f11b687b","type":"Microsoft.Authorization/roleAssignments","name":"609b8d2a-2b4f-4767-aa5e-c5c7f11b687b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T21:18:18.0994828Z","updatedOn":"2022-06-10T21:18:18.0994828Z","createdBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","updatedBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d80f2247-e902-11ec-96de-2edd4b852bcf","type":"Microsoft.Authorization/roleAssignments","name":"d80f2247-e902-11ec-96de-2edd4b852bcf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:19.7988558Z","updatedOn":"2022-06-13T09:20:19.7988558Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/053ff776-f32a-4298-cbeb-0da661875d88","type":"Microsoft.Authorization/roleAssignments","name":"053ff776-f32a-4298-cbeb-0da661875d88"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:19.8466660Z","updatedOn":"2022-06-13T09:20:19.8466660Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b4bd6e6-869b-4da3-a50f-b7eb8b183de5","type":"Microsoft.Authorization/roleAssignments","name":"4b4bd6e6-869b-4da3-a50f-b7eb8b183de5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:20.2195738Z","updatedOn":"2022-06-13T09:20:20.2195738Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/21db9db3-7adc-40f3-5885-af265b9ddad2","type":"Microsoft.Authorization/roleAssignments","name":"21db9db3-7adc-40f3-5885-af265b9ddad2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:19.9439478Z","updatedOn":"2022-06-13T09:20:19.9439478Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2418e820-601e-49da-a20d-4fa1ee6cc4cf","type":"Microsoft.Authorization/roleAssignments","name":"2418e820-601e-49da-a20d-4fa1ee6cc4cf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T17:55:18.4118508Z","updatedOn":"2022-06-13T17:55:18.4118508Z","createdBy":"1295ee3f-edbd-4185-9628-13318404c52a","updatedBy":"1295ee3f-edbd-4185-9628-13318404c52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbcfa2a4-eb41-11ec-b38e-467d14df3056","type":"Microsoft.Authorization/roleAssignments","name":"fbcfa2a4-eb41-11ec-b38e-467d14df3056"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-14T09:33:38.7306445Z","updatedOn":"2022-06-14T09:33:38.7306445Z","createdBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","updatedBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/10ffce40-ebc5-11ec-aebe-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"10ffce40-ebc5-11ec-aebe-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-14T23:20:32.7229029Z","updatedOn":"2022-06-14T23:20:32.7229029Z","createdBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","updatedBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/954903db-ec38-11ec-acd7-72f791cfbed2","type":"Microsoft.Authorization/roleAssignments","name":"954903db-ec38-11ec-acd7-72f791cfbed2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T06:30:47.7914595Z","updatedOn":"2022-06-16T06:30:47.7914595Z","createdBy":"504c34f4-8389-4920-aec9-0c595b508740","updatedBy":"504c34f4-8389-4920-aec9-0c595b508740","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb760c25-af25-412f-a643-93e98c629270","type":"Microsoft.Authorization/roleAssignments","name":"bb760c25-af25-412f-a643-93e98c629270"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T20:16:07.8463557Z","updatedOn":"2022-06-16T20:16:07.8463557Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4555d91-07f5-46d6-b29f-50b0d211c4ae","type":"Microsoft.Authorization/roleAssignments","name":"f4555d91-07f5-46d6-b29f-50b0d211c4ae"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T21:30:16.4420742Z","updatedOn":"2022-06-16T21:30:16.4420742Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":"to + programatically create new resource group, aks cluster, and container registry"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2c2fc915-d722-4dde-b730-7c73c8a87fdc","type":"Microsoft.Authorization/roleAssignments","name":"2c2fc915-d722-4dde-b730-7c73c8a87fdc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T22:19:51.5734675Z","updatedOn":"2022-06-16T22:19:51.5734675Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cca9c113-570a-4969-aa72-45c31091684a","type":"Microsoft.Authorization/roleAssignments","name":"cca9c113-570a-4969-aa72-45c31091684a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-17T02:19:37.1755269Z","updatedOn":"2022-06-17T02:19:37.1755269Z","createdBy":"30db9446-b4f8-4485-8c98-10e17387409d","updatedBy":"30db9446-b4f8-4485-8c98-10e17387409d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eee6dfc9-ede3-11ec-9f6d-902e1612d5d0","type":"Microsoft.Authorization/roleAssignments","name":"eee6dfc9-ede3-11ec-9f6d-902e1612d5d0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-20T22:03:11.1423439Z","updatedOn":"2022-06-20T22:03:11.1423439Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5c2bd4a-f0e4-11ec-bbc1-000d3ac67a2f","type":"Microsoft.Authorization/roleAssignments","name":"c5c2bd4a-f0e4-11ec-bbc1-000d3ac67a2f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-21T16:26:57.9805326Z","updatedOn":"2022-06-21T16:26:57.9805326Z","createdBy":"4d730cf1-e190-49af-af02-ea52983c017e","updatedBy":"4d730cf1-e190-49af-af02-ea52983c017e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f814031e-f17e-11ec-bdc4-72d39f810808","type":"Microsoft.Authorization/roleAssignments","name":"f814031e-f17e-11ec-bdc4-72d39f810808"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-22T23:05:28.0851041Z","updatedOn":"2022-06-22T23:05:28.0851041Z","createdBy":"395c8203-ec60-4c13-9730-5f960088f92b","updatedBy":"395c8203-ec60-4c13-9730-5f960088f92b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e672e20f-477a-4475-a5cf-2f7d8401bbc3","type":"Microsoft.Authorization/roleAssignments","name":"e672e20f-477a-4475-a5cf-2f7d8401bbc3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-23T19:51:00.2507743Z","updatedOn":"2022-06-23T19:51:00.2507743Z","createdBy":"8b564e25-6f45-4437-bf8b-9ac6596a5f15","updatedBy":"8b564e25-6f45-4437-bf8b-9ac6596a5f15","delegatedManagedIdentityResourceId":null,"description":"Adding + permissions to SP for running E2E tests. Currently getting error \"The client + ''0cea35e6-9763-4ef3-b2d2-8c241ab58828'' with object id ''0cea35e6-9763-4ef3-b2d2-8c241ab58828'' + does not have authorization to perform action ''Microsoft.Resources/subscriptions/resourcegroups/write'' + over scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/e2erg-indusridebld56865086-VzY'' + or the scope is invalid. If access was recently granted, please refresh your + credentials.\""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5cfb2437-e152-48d8-bb2a-54c89f27707a","type":"Microsoft.Authorization/roleAssignments","name":"5cfb2437-e152-48d8-bb2a-54c89f27707a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-23T21:01:02.9667346Z","updatedOn":"2022-06-23T21:01:02.9667346Z","createdBy":"34d4f830-f9ea-4525-9ca2-b784e3874713","updatedBy":"34d4f830-f9ea-4525-9ca2-b784e3874713","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9527af65-f337-11ec-a743-daea1d98cac0","type":"Microsoft.Authorization/roleAssignments","name":"9527af65-f337-11ec-a743-daea1d98cac0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-24T17:09:56.9678432Z","updatedOn":"2022-06-24T17:09:56.9678432Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba5c2d82-3e34-4b2b-9c5f-27d9d33955ff","type":"Microsoft.Authorization/roleAssignments","name":"ba5c2d82-3e34-4b2b-9c5f-27d9d33955ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-24T17:36:02.0450264Z","updatedOn":"2022-06-24T17:36:02.0450264Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/16b4850b-3e9c-435e-b3f6-b83e02b9146e","type":"Microsoft.Authorization/roleAssignments","name":"16b4850b-3e9c-435e-b3f6-b83e02b9146e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-27T17:58:47.2112371Z","updatedOn":"2022-06-27T17:58:47.2112371Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca6de50e-f642-11ec-83b8-002248773529","type":"Microsoft.Authorization/roleAssignments","name":"ca6de50e-f642-11ec-83b8-002248773529"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-27T21:10:04.9812035Z","updatedOn":"2022-06-27T21:10:04.9812035Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ad97eed-2e77-485f-a2ec-132f3647aef7","type":"Microsoft.Authorization/roleAssignments","name":"8ad97eed-2e77-485f-a2ec-132f3647aef7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T15:43:32.3787489Z","updatedOn":"2022-06-28T15:43:32.3787489Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a1acaea-f6f9-11ec-9ddd-6e578000e34a","type":"Microsoft.Authorization/roleAssignments","name":"0a1acaea-f6f9-11ec-9ddd-6e578000e34a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-29T05:30:23.4400722Z","updatedOn":"2022-06-29T05:30:23.4400722Z","createdBy":"65cfb39a-5f29-4247-8230-9ec6695c5878","updatedBy":"65cfb39a-5f29-4247-8230-9ec6695c5878","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/546c078e-3855-479c-b7aa-b38d4e68bb9f","type":"Microsoft.Authorization/roleAssignments","name":"546c078e-3855-479c-b7aa-b38d4e68bb9f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-29T17:04:07.7235161Z","updatedOn":"2022-06-29T17:04:07.7235161Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/48cbe38c-7d32-4174-8026-7a16994dcdc8","type":"Microsoft.Authorization/roleAssignments","name":"48cbe38c-7d32-4174-8026-7a16994dcdc8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-30T09:06:03.1760556Z","updatedOn":"2022-06-30T09:06:03.1760556Z","createdBy":"42a33e33-55bb-4995-80a2-d1b745371591","updatedBy":"42a33e33-55bb-4995-80a2-d1b745371591","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd7da313-f853-11ec-9993-000d3ac42d43","type":"Microsoft.Authorization/roleAssignments","name":"dd7da313-f853-11ec-9993-000d3ac42d43"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-30T09:06:06.3942443Z","updatedOn":"2022-06-30T09:06:06.3942443Z","createdBy":"42a33e33-55bb-4995-80a2-d1b745371591","updatedBy":"42a33e33-55bb-4995-80a2-d1b745371591","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df6c9d2d-f853-11ec-9993-000d3ac42d43","type":"Microsoft.Authorization/roleAssignments","name":"df6c9d2d-f853-11ec-9993-000d3ac42d43"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-04T08:11:46.0687018Z","updatedOn":"2022-07-04T08:11:46.0687018Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40b64297-b408-4d22-bf82-9b6897914b91","type":"Microsoft.Authorization/roleAssignments","name":"40b64297-b408-4d22-bf82-9b6897914b91"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T17:33:53.2930064Z","updatedOn":"2022-07-05T17:33:53.2930064Z","createdBy":"8e17b6a3-5430-4318-a670-b9df4d106675","updatedBy":"8e17b6a3-5430-4318-a670-b9df4d106675","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a23e2991-fc88-11ec-b99d-fe2d37eeee3f","type":"Microsoft.Authorization/roleAssignments","name":"a23e2991-fc88-11ec-b99d-fe2d37eeee3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T17:33:56.8130933Z","updatedOn":"2022-07-05T17:33:56.8130933Z","createdBy":"8e17b6a3-5430-4318-a670-b9df4d106675","updatedBy":"8e17b6a3-5430-4318-a670-b9df4d106675","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a45a4b60-fc88-11ec-b99d-fe2d37eeee3f","type":"Microsoft.Authorization/roleAssignments","name":"a45a4b60-fc88-11ec-b99d-fe2d37eeee3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T20:50:59.7297844Z","updatedOn":"2022-07-05T20:50:59.7297844Z","createdBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","updatedBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2bf6d528-fca4-11ec-ae95-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2bf6d528-fca4-11ec-ae95-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T20:51:03.8324709Z","updatedOn":"2022-07-05T20:51:03.8324709Z","createdBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","updatedBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2eb27754-fca4-11ec-ae95-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2eb27754-fca4-11ec-ae95-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-06T18:17:04.1589374Z","updatedOn":"2022-07-06T18:17:04.1589374Z","createdBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","updatedBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d66150ce-778b-48b7-9eec-4af15a62d5fb","type":"Microsoft.Authorization/roleAssignments","name":"d66150ce-778b-48b7-9eec-4af15a62d5fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T04:14:56.8781019Z","updatedOn":"2022-07-07T04:14:56.8781019Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d244381e-1809-4aab-b4bf-f6c45efad8a0","type":"Microsoft.Authorization/roleAssignments","name":"d244381e-1809-4aab-b4bf-f6c45efad8a0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T08:02:02.2250086Z","updatedOn":"2022-07-07T08:02:02.2250086Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/209367bb-572e-4543-8ffa-261ab9e3e98e","type":"Microsoft.Authorization/roleAssignments","name":"209367bb-572e-4543-8ffa-261ab9e3e98e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T09:51:45.7545095Z","updatedOn":"2022-07-07T09:51:45.7545095Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9b5f542-ed8b-4591-902d-70f85896c4a9","type":"Microsoft.Authorization/roleAssignments","name":"a9b5f542-ed8b-4591-902d-70f85896c4a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T10:20:52.8789655Z","updatedOn":"2022-07-07T10:20:52.8789655Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67fb0754-2c67-405f-b195-0fc9fb022fc7","type":"Microsoft.Authorization/roleAssignments","name":"67fb0754-2c67-405f-b195-0fc9fb022fc7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T23:54:13.9262172Z","updatedOn":"2022-07-07T23:54:13.9262172Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a13e2124-87c9-402c-9611-fbb6a1b4e4b8","type":"Microsoft.Authorization/roleAssignments","name":"a13e2124-87c9-402c-9611-fbb6a1b4e4b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T02:43:53.0148931Z","updatedOn":"2022-07-08T02:43:53.0148931Z","createdBy":"34e81c0e-d5e6-478f-8544-2686be295567","updatedBy":"34e81c0e-d5e6-478f-8544-2686be295567","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc3fbff8-fe67-11ec-ac64-f69a873c5ca0","type":"Microsoft.Authorization/roleAssignments","name":"cc3fbff8-fe67-11ec-ac64-f69a873c5ca0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T02:43:59.1573960Z","updatedOn":"2022-07-08T02:43:59.1573960Z","createdBy":"34e81c0e-d5e6-478f-8544-2686be295567","updatedBy":"34e81c0e-d5e6-478f-8544-2686be295567","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cfe77b1e-fe67-11ec-ac64-f69a873c5ca0","type":"Microsoft.Authorization/roleAssignments","name":"cfe77b1e-fe67-11ec-ac64-f69a873c5ca0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T16:06:18.0035556Z","updatedOn":"2022-07-08T16:06:18.0035556Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/72a67832-6c5d-4b3e-9067-ceef4bc5dcba","type":"Microsoft.Authorization/roleAssignments","name":"72a67832-6c5d-4b3e-9067-ceef4bc5dcba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T16:17:28.2042061Z","updatedOn":"2022-07-08T16:17:28.2042061Z","createdBy":"cef6ee5d-6edd-413d-9eb7-c205c9802a3f","updatedBy":"cef6ee5d-6edd-413d-9eb7-c205c9802a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82dd5217-b1f7-4be5-8f03-5899493aa314","type":"Microsoft.Authorization/roleAssignments","name":"82dd5217-b1f7-4be5-8f03-5899493aa314"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T17:53:10.4671781Z","updatedOn":"2022-07-08T17:53:10.4671781Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4227602-fee6-11ec-ab63-000d3af64fa4","type":"Microsoft.Authorization/roleAssignments","name":"d4227602-fee6-11ec-ab63-000d3af64fa4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-11T21:30:54.4523951Z","updatedOn":"2022-07-11T21:30:54.4523951Z","createdBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","updatedBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a77632d-0fee-46d8-9f0d-d2ed44a26602","type":"Microsoft.Authorization/roleAssignments","name":"0a77632d-0fee-46d8-9f0d-d2ed44a26602"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-11T22:18:13.7630778Z","updatedOn":"2022-07-11T22:18:13.7630778Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3abee7ef-2e53-478a-b9cd-911e8768e9d6","type":"Microsoft.Authorization/roleAssignments","name":"3abee7ef-2e53-478a-b9cd-911e8768e9d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T04:19:56.7878684Z","updatedOn":"2022-07-12T04:19:56.7878684Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2335b0a-0199-11ed-9afe-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e2335b0a-0199-11ed-9afe-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T04:20:00.9520791Z","updatedOn":"2022-07-12T04:20:00.9520791Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4b0f194-0199-11ed-9afe-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e4b0f194-0199-11ed-9afe-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T11:12:50.2042423Z","updatedOn":"2022-07-12T11:12:50.2042423Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad70c028-d6b8-4efb-96d4-0bf9aa09566c","type":"Microsoft.Authorization/roleAssignments","name":"ad70c028-d6b8-4efb-96d4-0bf9aa09566c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T17:55:10.7687684Z","updatedOn":"2022-07-12T17:55:10.7687684Z","createdBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","updatedBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c642f341-020b-11ed-bc6a-02136178e3ad","type":"Microsoft.Authorization/roleAssignments","name":"c642f341-020b-11ed-bc6a-02136178e3ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T17:55:14.4120596Z","updatedOn":"2022-07-12T17:55:14.4120596Z","createdBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","updatedBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c87a1349-020b-11ed-bc6a-02136178e3ad","type":"Microsoft.Authorization/roleAssignments","name":"c87a1349-020b-11ed-bc6a-02136178e3ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T18:08:22.2861717Z","updatedOn":"2022-07-12T18:08:22.2861717Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/421ff42e-57e3-4b62-b4e6-e8e561eb7212","type":"Microsoft.Authorization/roleAssignments","name":"421ff42e-57e3-4b62-b4e6-e8e561eb7212"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T00:41:08.5337376Z","updatedOn":"2022-07-13T00:41:08.5337376Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78c85e30-0244-11ed-914f-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"78c85e30-0244-11ed-914f-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T08:27:18.8954270Z","updatedOn":"2022-07-13T08:27:18.8954270Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eda0948f-04c7-43eb-a560-0fe9db9681c5","type":"Microsoft.Authorization/roleAssignments","name":"eda0948f-04c7-43eb-a560-0fe9db9681c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T20:09:22.9119861Z","updatedOn":"2022-07-13T20:09:22.9119861Z","createdBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","updatedBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/af556422-02e7-11ed-b490-3e22fbbb55c2","type":"Microsoft.Authorization/roleAssignments","name":"af556422-02e7-11ed-b490-3e22fbbb55c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T20:09:36.4140354Z","updatedOn":"2022-07-13T20:09:36.4140354Z","createdBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","updatedBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b77f8f56-02e7-11ed-b490-3e22fbbb55c2","type":"Microsoft.Authorization/roleAssignments","name":"b77f8f56-02e7-11ed-b490-3e22fbbb55c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-15T03:29:06.6862069Z","updatedOn":"2022-07-15T03:29:06.6862069Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/77952ad7-ace5-45a1-9395-7025cd43927b","type":"Microsoft.Authorization/roleAssignments","name":"77952ad7-ace5-45a1-9395-7025cd43927b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-15T21:17:33.7746216Z","updatedOn":"2022-07-15T21:17:33.7746216Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8aa04a4a-0483-11ed-bcf7-00155dfde705","type":"Microsoft.Authorization/roleAssignments","name":"8aa04a4a-0483-11ed-bcf7-00155dfde705"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-15T21:17:36.9140017Z","updatedOn":"2022-07-15T21:17:36.9140017Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c49fe02-0483-11ed-bcf7-00155dfde705","type":"Microsoft.Authorization/roleAssignments","name":"8c49fe02-0483-11ed-bcf7-00155dfde705"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-18T18:31:44.6615613Z","updatedOn":"2022-07-18T18:31:44.6615613Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9913aa55-1df8-4b7f-b351-bfb577c653b7","type":"Microsoft.Authorization/roleAssignments","name":"9913aa55-1df8-4b7f-b351-bfb577c653b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T03:14:49.6541206Z","updatedOn":"2022-07-19T03:14:49.6541206Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f2a2c960-0710-11ed-af5f-000d3a183800","type":"Microsoft.Authorization/roleAssignments","name":"f2a2c960-0710-11ed-af5f-000d3a183800"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T03:14:52.8659954Z","updatedOn":"2022-07-19T03:14:52.8659954Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f491d46c-0710-11ed-af5f-000d3a183800","type":"Microsoft.Authorization/roleAssignments","name":"f491d46c-0710-11ed-af5f-000d3a183800"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T17:08:01.7695005Z","updatedOn":"2022-07-19T17:08:01.7695005Z","createdBy":"08a0af07-b641-44c2-a174-9b85f2db0af1","updatedBy":"08a0af07-b641-44c2-a174-9b85f2db0af1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57cd16da-0785-11ed-91ee-06d9bf349677","type":"Microsoft.Authorization/roleAssignments","name":"57cd16da-0785-11ed-91ee-06d9bf349677"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T17:28:52.5405320Z","updatedOn":"2022-07-19T17:28:52.5405320Z","createdBy":"395c8203-ec60-4c13-9730-5f960088f92b","updatedBy":"395c8203-ec60-4c13-9730-5f960088f92b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ab94087-7d29-4798-88b0-5ba408389266","type":"Microsoft.Authorization/roleAssignments","name":"6ab94087-7d29-4798-88b0-5ba408389266"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T20:15:51.4129938Z","updatedOn":"2022-07-19T20:15:51.4129938Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/04aeccd9-485e-4667-83ec-0940615dc03f","type":"Microsoft.Authorization/roleAssignments","name":"04aeccd9-485e-4667-83ec-0940615dc03f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-20T00:07:29.4350314Z","updatedOn":"2022-07-20T00:07:29.4350314Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1165576-07bf-11ed-a49d-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"f1165576-07bf-11ed-a49d-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-20T00:07:32.8732624Z","updatedOn":"2022-07-20T00:07:32.8732624Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f358bfdc-07bf-11ed-a49d-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"f358bfdc-07bf-11ed-a49d-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-21T12:09:08.1001074Z","updatedOn":"2022-07-21T12:09:08.1001074Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ebb1f193-08ed-11ed-a201-00224878d5c3","type":"Microsoft.Authorization/roleAssignments","name":"ebb1f193-08ed-11ed-a201-00224878d5c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-21T12:09:11.3486909Z","updatedOn":"2022-07-21T12:09:11.3486909Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/edaa26e6-08ed-11ed-a201-00224878d5c3","type":"Microsoft.Authorization/roleAssignments","name":"edaa26e6-08ed-11ed-a201-00224878d5c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-22T09:35:51.5690357Z","updatedOn":"2022-07-22T09:35:51.5690357Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd07b0f6-982a-4d85-9fdd-d44049270cbd","type":"Microsoft.Authorization/roleAssignments","name":"dd07b0f6-982a-4d85-9fdd-d44049270cbd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-24T17:57:05.6570323Z","updatedOn":"2022-07-24T17:57:05.6570323Z","createdBy":"567715d4-847a-4def-acb2-d157ebfa8439","updatedBy":"567715d4-847a-4def-acb2-d157ebfa8439","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/069fdbd1-0b7a-11ed-aa35-a2d44093b98e","type":"Microsoft.Authorization/roleAssignments","name":"069fdbd1-0b7a-11ed-aa35-a2d44093b98e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-24T17:57:10.6197123Z","updatedOn":"2022-07-24T17:57:10.6197123Z","createdBy":"567715d4-847a-4def-acb2-d157ebfa8439","updatedBy":"567715d4-847a-4def-acb2-d157ebfa8439","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09844b71-0b7a-11ed-aa35-a2d44093b98e","type":"Microsoft.Authorization/roleAssignments","name":"09844b71-0b7a-11ed-aa35-a2d44093b98e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-25T23:51:56.7193261Z","updatedOn":"2022-07-25T23:51:56.7193261Z","createdBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","updatedBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3d43338-0c74-11ed-a558-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"c3d43338-0c74-11ed-a558-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-25T23:51:59.2783640Z","updatedOn":"2022-07-25T23:51:59.2783640Z","createdBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","updatedBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5533d8a-0c74-11ed-a558-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"c5533d8a-0c74-11ed-a558-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-28T04:50:50.7078047Z","updatedOn":"2022-07-28T04:50:50.7078047Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da343068-0e30-11ed-91a5-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"da343068-0e30-11ed-91a5-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-28T04:50:53.7664793Z","updatedOn":"2022-07-28T04:50:53.7664793Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dbfbe50a-0e30-11ed-91a5-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"dbfbe50a-0e30-11ed-91a5-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-29T16:16:58.9941922Z","updatedOn":"2022-07-29T16:16:58.9941922Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/880fa390-3bd7-4075-8071-e33e45423e36","type":"Microsoft.Authorization/roleAssignments","name":"880fa390-3bd7-4075-8071-e33e45423e36"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-31T19:34:43.4356237Z","updatedOn":"2022-07-31T19:34:43.4356237Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d352709e-1107-11ed-be9f-beee8f4e086d","type":"Microsoft.Authorization/roleAssignments","name":"d352709e-1107-11ed-be9f-beee8f4e086d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-04T04:49:44.0295503Z","updatedOn":"2022-08-04T04:49:44.0295503Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da803814-13b0-11ed-b124-e2848198df96","type":"Microsoft.Authorization/roleAssignments","name":"da803814-13b0-11ed-b124-e2848198df96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-04T04:49:49.5833937Z","updatedOn":"2022-08-04T04:49:49.5833937Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd76350a-13b0-11ed-b124-e2848198df96","type":"Microsoft.Authorization/roleAssignments","name":"dd76350a-13b0-11ed-b124-e2848198df96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-05T14:15:13.1099119Z","updatedOn":"2022-08-05T14:15:13.1099119Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7a4c8f3-b60c-4341-acdb-3b8d60976116","type":"Microsoft.Authorization/roleAssignments","name":"e7a4c8f3-b60c-4341-acdb-3b8d60976116"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-08T08:55:19.4739379Z","updatedOn":"2022-08-08T08:55:19.4739379Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3f792cd-16f7-11ed-afb5-000d3a0611f6","type":"Microsoft.Authorization/roleAssignments","name":"d3f792cd-16f7-11ed-afb5-000d3a0611f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-08T14:33:12.5245418Z","updatedOn":"2022-08-08T14:33:12.5245418Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0184de3c-04d4-433f-9221-2df571d921a5","type":"Microsoft.Authorization/roleAssignments","name":"0184de3c-04d4-433f-9221-2df571d921a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-08T17:41:09.4113992Z","updatedOn":"2022-08-08T17:41:09.4113992Z","createdBy":"19263705-0667-497e-85e7-a930fa3441ec","updatedBy":"19263705-0667-497e-85e7-a930fa3441ec","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4919e77a-1741-11ed-b6db-0022487d76b7","type":"Microsoft.Authorization/roleAssignments","name":"4919e77a-1741-11ed-b6db-0022487d76b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:45:21.8695164Z","updatedOn":"2022-08-12T05:45:21.8695164Z","createdBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","updatedBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f23b86bb-1a01-11ed-b496-66a3f79a5cd7","type":"Microsoft.Authorization/roleAssignments","name":"f23b86bb-1a01-11ed-b496-66a3f79a5cd7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:45:28.6932347Z","updatedOn":"2022-08-12T05:45:28.6932347Z","createdBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","updatedBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6a0cefb-1a01-11ed-b496-66a3f79a5cd7","type":"Microsoft.Authorization/roleAssignments","name":"f6a0cefb-1a01-11ed-b496-66a3f79a5cd7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:57:08.1910800Z","updatedOn":"2022-08-12T05:57:08.1910800Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/97fa583a-1a03-11ed-8141-0022484c72fc","type":"Microsoft.Authorization/roleAssignments","name":"97fa583a-1a03-11ed-8141-0022484c72fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:57:16.8561530Z","updatedOn":"2022-08-12T05:57:16.8561530Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9bed6f7d-1a03-11ed-8141-0022484c72fc","type":"Microsoft.Authorization/roleAssignments","name":"9bed6f7d-1a03-11ed-8141-0022484c72fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T10:56:06.3724576Z","updatedOn":"2022-08-12T10:56:06.3724576Z","createdBy":"312333b2-b433-4e3c-bb6f-f60419faa168","updatedBy":"312333b2-b433-4e3c-bb6f-f60419faa168","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5da07cdc-1a2d-11ed-97c4-36311d0c4477","type":"Microsoft.Authorization/roleAssignments","name":"5da07cdc-1a2d-11ed-97c4-36311d0c4477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T10:56:12.1781791Z","updatedOn":"2022-08-12T10:56:12.1781791Z","createdBy":"312333b2-b433-4e3c-bb6f-f60419faa168","updatedBy":"312333b2-b433-4e3c-bb6f-f60419faa168","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/60dfcd5b-1a2d-11ed-97c4-36311d0c4477","type":"Microsoft.Authorization/roleAssignments","name":"60dfcd5b-1a2d-11ed-97c4-36311d0c4477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T23:47:07.1823504Z","updatedOn":"2022-08-12T23:47:07.1823504Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12955060-1a99-11ed-80ae-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"12955060-1a99-11ed-80ae-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T23:47:10.3981690Z","updatedOn":"2022-08-12T23:47:10.3981690Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1452bfa0-1a99-11ed-80ae-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"1452bfa0-1a99-11ed-80ae-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-14T04:59:52.9674492Z","updatedOn":"2022-08-14T04:59:52.9674492Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee779146-1b8d-11ed-ad0f-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"ee779146-1b8d-11ed-ad0f-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-14T04:59:57.7071631Z","updatedOn":"2022-08-14T04:59:57.7071631Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f13fa4b3-1b8d-11ed-ad0f-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"f13fa4b3-1b8d-11ed-ad0f-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-16T23:10:44.7176056Z","updatedOn":"2022-08-16T23:10:44.7176056Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1d255e1-0f5e-41c4-93eb-e683b5cf2ca4","type":"Microsoft.Authorization/roleAssignments","name":"f1d255e1-0f5e-41c4-93eb-e683b5cf2ca4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-16T23:31:16.6919768Z","updatedOn":"2022-08-16T23:31:16.6919768Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a45cbdf-008d-4716-96eb-38389a417827","type":"Microsoft.Authorization/roleAssignments","name":"2a45cbdf-008d-4716-96eb-38389a417827"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-18T00:30:35.0176680Z","updatedOn":"2022-08-18T00:30:35.0176680Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f91d7aa2-1e8c-11ed-b1a6-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f91d7aa2-1e8c-11ed-b1a6-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-18T00:30:38.2729005Z","updatedOn":"2022-08-18T00:30:38.2729005Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb0d664c-1e8c-11ed-b1a6-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"fb0d664c-1e8c-11ed-b1a6-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-18T15:52:38.7113712Z","updatedOn":"2022-08-18T15:52:38.7113712Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8772ddf6-c657-4010-ab7b-5d8627ba3601","type":"Microsoft.Authorization/roleAssignments","name":"8772ddf6-c657-4010-ab7b-5d8627ba3601"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-22T02:37:48.0231077Z","updatedOn":"2022-08-22T02:37:48.0231077Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7c56d8ab-b9ef-4d93-ae58-838c1209c621","type":"Microsoft.Authorization/roleAssignments","name":"7c56d8ab-b9ef-4d93-ae58-838c1209c621"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-22T02:41:47.6649206Z","updatedOn":"2022-08-22T02:41:47.6649206Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b66d25d3-0cb1-4413-9445-caf5db5b40c9","type":"Microsoft.Authorization/roleAssignments","name":"b66d25d3-0cb1-4413-9445-caf5db5b40c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-22T06:25:39.4709093Z","updatedOn":"2022-08-22T06:25:39.4709093Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb7ca852-9adb-4205-a828-a17ca774a8a4","type":"Microsoft.Authorization/roleAssignments","name":"eb7ca852-9adb-4205-a828-a17ca774a8a4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T02:16:22.3620594Z","updatedOn":"2022-08-23T02:16:22.3620594Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94556c2e-2289-11ed-9371-000d3ac51247","type":"Microsoft.Authorization/roleAssignments","name":"94556c2e-2289-11ed-9371-000d3ac51247"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T08:56:15.8011348Z","updatedOn":"2022-08-23T08:56:15.8011348Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7117911f-22c1-11ed-be42-000d3a084591","type":"Microsoft.Authorization/roleAssignments","name":"7117911f-22c1-11ed-be42-000d3a084591"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T08:56:21.1375800Z","updatedOn":"2022-08-23T08:56:21.1375800Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/73becf7d-22c1-11ed-be42-000d3a084591","type":"Microsoft.Authorization/roleAssignments","name":"73becf7d-22c1-11ed-be42-000d3a084591"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T14:02:07.2343806Z","updatedOn":"2022-08-23T14:02:07.2343806Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b9bf190-22ec-11ed-8f86-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"2b9bf190-22ec-11ed-8f86-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T14:02:10.9785694Z","updatedOn":"2022-08-23T14:02:10.9785694Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2dd0099d-22ec-11ed-8f86-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"2dd0099d-22ec-11ed-8f86-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T23:22:24.8240339Z","updatedOn":"2022-08-23T23:22:24.8240339Z","createdBy":"395c8203-ec60-4c13-9730-5f960088f92b","updatedBy":"395c8203-ec60-4c13-9730-5f960088f92b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/abda2c2b-daa3-42bb-abbd-e13cec5fb6b3","type":"Microsoft.Authorization/roleAssignments","name":"abda2c2b-daa3-42bb-abbd-e13cec5fb6b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T23:23:32.8133517Z","updatedOn":"2022-08-23T23:23:32.8133517Z","createdBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","updatedBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/994cd0f0-233a-11ed-90e8-66137476d927","type":"Microsoft.Authorization/roleAssignments","name":"994cd0f0-233a-11ed-90e8-66137476d927"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T23:23:35.3751695Z","updatedOn":"2022-08-23T23:23:35.3751695Z","createdBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","updatedBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9add5dfe-233a-11ed-90e8-66137476d927","type":"Microsoft.Authorization/roleAssignments","name":"9add5dfe-233a-11ed-90e8-66137476d927"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-26T02:48:17.4348909Z","updatedOn":"2022-08-26T02:48:17.4348909Z","createdBy":"d297f8cf-3724-4da6-ae0c-6ea639225042","updatedBy":"d297f8cf-3724-4da6-ae0c-6ea639225042","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9125ee0-b9af-4d25-a2e5-886ad210b3e8","type":"Microsoft.Authorization/roleAssignments","name":"e9125ee0-b9af-4d25-a2e5-886ad210b3e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-29T22:08:43.6923850Z","updatedOn":"2022-08-29T22:08:43.6923850Z","createdBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","updatedBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24b2acd4-27e7-11ed-aa57-9eb40d98da7e","type":"Microsoft.Authorization/roleAssignments","name":"24b2acd4-27e7-11ed-aa57-9eb40d98da7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-29T22:08:46.8049719Z","updatedOn":"2022-08-29T22:08:46.8049719Z","createdBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","updatedBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26a4fa7f-27e7-11ed-aa57-9eb40d98da7e","type":"Microsoft.Authorization/roleAssignments","name":"26a4fa7f-27e7-11ed-aa57-9eb40d98da7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-29T22:11:06.3024798Z","updatedOn":"2022-08-29T22:11:06.3024798Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63e0b566-276e-405d-8d4e-1c82b1f937c6","type":"Microsoft.Authorization/roleAssignments","name":"63e0b566-276e-405d-8d4e-1c82b1f937c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:50:53.4210961Z","updatedOn":"2022-08-30T23:50:53.4210961Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94aa5054-28be-11ed-a6d3-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"94aa5054-28be-11ed-a6d3-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:50:57.2039466Z","updatedOn":"2022-08-30T23:50:57.2039466Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96f9353c-28be-11ed-a6d3-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"96f9353c-28be-11ed-a6d3-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:55:18.1665901Z","updatedOn":"2022-08-30T23:55:18.1665901Z","createdBy":"08de6591-dec9-4255-ab17-d6919151fadd","updatedBy":"08de6591-dec9-4255-ab17-d6919151fadd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/32738d64-28bf-11ed-8c18-d28ee6de8df0","type":"Microsoft.Authorization/roleAssignments","name":"32738d64-28bf-11ed-8c18-d28ee6de8df0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:55:21.0832794Z","updatedOn":"2022-08-30T23:55:21.0832794Z","createdBy":"08de6591-dec9-4255-ab17-d6919151fadd","updatedBy":"08de6591-dec9-4255-ab17-d6919151fadd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/347773d2-28bf-11ed-8c18-d28ee6de8df0","type":"Microsoft.Authorization/roleAssignments","name":"347773d2-28bf-11ed-8c18-d28ee6de8df0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-31T23:23:54.3892344Z","updatedOn":"2022-08-31T23:23:54.3892344Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa44d69e-2983-11ed-aa08-92f3f7a6dd9b","type":"Microsoft.Authorization/roleAssignments","name":"fa44d69e-2983-11ed-aa08-92f3f7a6dd9b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-31T23:23:57.6913146Z","updatedOn":"2022-08-31T23:23:57.6913146Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc468884-2983-11ed-aa08-92f3f7a6dd9b","type":"Microsoft.Authorization/roleAssignments","name":"fc468884-2983-11ed-aa08-92f3f7a6dd9b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-01T06:08:41.4708815Z","updatedOn":"2022-09-01T06:08:41.4708815Z","createdBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","updatedBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/86088e13-29bc-11ed-9e75-ee990064eed4","type":"Microsoft.Authorization/roleAssignments","name":"86088e13-29bc-11ed-9e75-ee990064eed4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-01T14:36:10.3068118Z","updatedOn":"2022-09-01T14:36:10.3068118Z","createdBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","updatedBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b6d0b78-2a03-11ed-8b33-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6b6d0b78-2a03-11ed-8b33-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-01T14:36:19.4793808Z","updatedOn":"2022-09-01T14:36:19.4793808Z","createdBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","updatedBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70bc79b0-2a03-11ed-8b33-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"70bc79b0-2a03-11ed-8b33-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-05T20:13:38.7677056Z","updatedOn":"2022-09-05T20:13:38.7677056Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/396cb586-2d57-11ed-8f60-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"396cb586-2d57-11ed-8f60-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-06T19:58:31.4389144Z","updatedOn":"2022-09-06T19:58:31.4389144Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47bb56b5-2e1e-11ed-9020-000d3a6d9a18","type":"Microsoft.Authorization/roleAssignments","name":"47bb56b5-2e1e-11ed-9020-000d3a6d9a18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-06T19:58:35.6283701Z","updatedOn":"2022-09-06T19:58:35.6283701Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a30eda3-2e1e-11ed-9020-000d3a6d9a18","type":"Microsoft.Authorization/roleAssignments","name":"4a30eda3-2e1e-11ed-9020-000d3a6d9a18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-08T14:38:34.2901394Z","updatedOn":"2022-09-08T14:38:34.2901394Z","createdBy":"61a5600d-3609-43e4-9dd8-bcf58e3ce51f","updatedBy":"61a5600d-3609-43e4-9dd8-bcf58e3ce51f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea4dcb49-2f83-11ed-9efa-000d3a181b06","type":"Microsoft.Authorization/roleAssignments","name":"ea4dcb49-2f83-11ed-9efa-000d3a181b06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-08T17:46:08.1384737Z","updatedOn":"2022-09-08T17:46:08.1384737Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1dc95ee4-2f9e-11ed-89d2-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"1dc95ee4-2f9e-11ed-89d2-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-08T17:46:11.6717566Z","updatedOn":"2022-09-08T17:46:11.6717566Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2008f142-2f9e-11ed-89d2-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2008f142-2f9e-11ed-89d2-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-12T23:42:55.7564365Z","updatedOn":"2022-09-12T23:42:55.7564365Z","createdBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","updatedBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fa0c69c-32f4-11ed-aee5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"9fa0c69c-32f4-11ed-aee5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-12T23:43:04.5756788Z","updatedOn":"2022-09-12T23:43:04.5756788Z","createdBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","updatedBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a4e1656c-32f4-11ed-aee5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"a4e1656c-32f4-11ed-aee5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T00:18:28.3312561Z","updatedOn":"2022-09-13T00:18:28.3312561Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/965f9705-32f9-11ed-a03a-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"965f9705-32f9-11ed-a03a-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T00:18:32.9627131Z","updatedOn":"2022-09-13T00:18:32.9627131Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9918693b-32f9-11ed-a03a-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"9918693b-32f9-11ed-a03a-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T05:20:21.8356068Z","updatedOn":"2022-09-13T05:20:21.8356068Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14ac626a-3acb-4867-a3ce-32d85da9a0e7","type":"Microsoft.Authorization/roleAssignments","name":"14ac626a-3acb-4867-a3ce-32d85da9a0e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T20:31:46.8554799Z","updatedOn":"2022-09-13T20:31:46.8554799Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d71c7b8-3398-11ed-ad11-e6ebdcb69945","type":"Microsoft.Authorization/roleAssignments","name":"6d71c7b8-3398-11ed-ad11-e6ebdcb69945"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T20:31:50.1456004Z","updatedOn":"2022-09-13T20:31:50.1456004Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ca65e0f-3398-11ed-ad11-e6ebdcb69945","type":"Microsoft.Authorization/roleAssignments","name":"7ca65e0f-3398-11ed-ad11-e6ebdcb69945"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T23:17:04.2606442Z","updatedOn":"2022-09-13T23:17:04.2606442Z","createdBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","updatedBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ecfc544-bb26-4b57-9c52-7a3751bf5b9a","type":"Microsoft.Authorization/roleAssignments","name":"8ecfc544-bb26-4b57-9c52-7a3751bf5b9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-14T20:11:09.0922785Z","updatedOn":"2022-09-14T20:11:09.0922785Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/43c2f0e6-bf81-4e83-bf98-eb7d592639a5","type":"Microsoft.Authorization/roleAssignments","name":"43c2f0e6-bf81-4e83-bf98-eb7d592639a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-15T17:44:22.3186068Z","updatedOn":"2022-09-15T17:44:22.3186068Z","createdBy":"2182129f-e575-4986-a7fb-2be7772ba46f","updatedBy":"2182129f-e575-4986-a7fb-2be7772ba46f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/05e871b7-351e-11ed-8cc7-32a64839c39d","type":"Microsoft.Authorization/roleAssignments","name":"05e871b7-351e-11ed-8cc7-32a64839c39d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ab4d3d-a1bf-4477-8ad9-8359bc988f69","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-15T22:34:54.1872835Z","updatedOn":"2022-09-15T22:34:54.1872835Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9ac6f9f-a6dc-43e5-bc80-6e362547ff03","type":"Microsoft.Authorization/roleAssignments","name":"a9ac6f9f-a6dc-43e5-bc80-6e362547ff03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-15T22:36:25.6520797Z","updatedOn":"2022-09-15T22:36:25.6520797Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a48452ae-2a7a-4a35-bc22-de46608a8c12","type":"Microsoft.Authorization/roleAssignments","name":"a48452ae-2a7a-4a35-bc22-de46608a8c12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ab4d3d-a1bf-4477-8ad9-8359bc988f69","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-16T03:26:44.5972975Z","updatedOn":"2022-09-16T03:26:44.5972975Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7ddb897-f37b-4617-8b62-26a42b72d0fd","type":"Microsoft.Authorization/roleAssignments","name":"b7ddb897-f37b-4617-8b62-26a42b72d0fd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-16T03:27:20.0290180Z","updatedOn":"2022-09-16T03:27:20.0290180Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36cbdcc8-a70b-42a9-836a-9bb89dbd301a","type":"Microsoft.Authorization/roleAssignments","name":"36cbdcc8-a70b-42a9-836a-9bb89dbd301a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-16T14:21:41.5963217Z","updatedOn":"2022-09-16T14:21:41.5963217Z","createdBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","updatedBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc428d08-6f99-4619-9554-500bfc75b861","type":"Microsoft.Authorization/roleAssignments","name":"bc428d08-6f99-4619-9554-500bfc75b861"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T01:59:15.5981081Z","updatedOn":"2022-09-19T01:59:15.5981081Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a92c46b1-37be-11ed-8745-00224857f2c5","type":"Microsoft.Authorization/roleAssignments","name":"a92c46b1-37be-11ed-8745-00224857f2c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T01:59:20.5513267Z","updatedOn":"2022-09-19T01:59:20.5513267Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac11dbd2-37be-11ed-8745-00224857f2c5","type":"Microsoft.Authorization/roleAssignments","name":"ac11dbd2-37be-11ed-8745-00224857f2c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T09:51:42.7586328Z","updatedOn":"2022-09-19T09:51:42.7586328Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1cb1222d-5cb9-4d4a-a901-850f4a0d08da","type":"Microsoft.Authorization/roleAssignments","name":"1cb1222d-5cb9-4d4a-a901-850f4a0d08da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T18:49:44.8806347Z","updatedOn":"2022-09-19T18:49:44.8806347Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9c6a4b4-714e-45fc-8bc4-11c41f8c306a","type":"Microsoft.Authorization/roleAssignments","name":"b9c6a4b4-714e-45fc-8bc4-11c41f8c306a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T22:48:28.6777206Z","updatedOn":"2022-09-19T22:48:28.6777206Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ea76d8b-9daa-4d62-bfc8-bb9013ecec53","type":"Microsoft.Authorization/roleAssignments","name":"3ea76d8b-9daa-4d62-bfc8-bb9013ecec53"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-20T22:34:06.1765862Z","updatedOn":"2022-09-20T22:34:06.1765862Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/475a9fc4-c1a8-42c7-9e4e-d897c83f2a86","type":"Microsoft.Authorization/roleAssignments","name":"475a9fc4-c1a8-42c7-9e4e-d897c83f2a86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/434105ed-43f6-45c7-a02f-909b2ba83430","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-21T00:11:12.3038110Z","updatedOn":"2022-09-21T00:11:12.3038110Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce3975e8-d43d-4f8c-a315-e20609d7472a","type":"Microsoft.Authorization/roleAssignments","name":"ce3975e8-d43d-4f8c-a315-e20609d7472a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T07:30:57.3801733Z","updatedOn":"2022-09-23T07:30:57.3801733Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7a5ed22-3b11-11ed-876d-1a48d609785e","type":"Microsoft.Authorization/roleAssignments","name":"a7a5ed22-3b11-11ed-876d-1a48d609785e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T14:34:07.2104918Z","updatedOn":"2022-09-23T14:34:07.2104918Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c756e2ff-3b4c-11ed-be28-000d3a9e5815","type":"Microsoft.Authorization/roleAssignments","name":"c756e2ff-3b4c-11ed-be28-000d3a9e5815"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T14:34:10.7191458Z","updatedOn":"2022-09-23T14:34:10.7191458Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c96352a0-3b4c-11ed-be28-000d3a9e5815","type":"Microsoft.Authorization/roleAssignments","name":"c96352a0-3b4c-11ed-be28-000d3a9e5815"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T19:05:01.8468743Z","updatedOn":"2022-09-23T19:05:01.8468743Z","createdBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","updatedBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ecc7527-3b72-11ed-92ab-a642c656be12","type":"Microsoft.Authorization/roleAssignments","name":"9ecc7527-3b72-11ed-92ab-a642c656be12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T21:31:12.8549148Z","updatedOn":"2022-09-23T21:31:12.8549148Z","createdBy":"0fa3313e-2eee-4835-aeff-681e46364ab6","updatedBy":"0fa3313e-2eee-4835-aeff-681e46364ab6","delegatedManagedIdentityResourceId":null,"description":"New + AKS SRE team member"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b79302d-37ad-406c-b32d-cddbd2387781","type":"Microsoft.Authorization/roleAssignments","name":"2b79302d-37ad-406c-b32d-cddbd2387781"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-25T18:15:06.7527496Z","updatedOn":"2022-09-25T18:15:06.7527496Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f83fc539-aab6-4862-8635-cbe5472eadad","type":"Microsoft.Authorization/roleAssignments","name":"f83fc539-aab6-4862-8635-cbe5472eadad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-25T17:34:50.8733023Z","updatedOn":"2023-01-25T17:34:50.8733023Z","createdBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","updatedBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/91a85771-9cd6-11ed-a528-6045bd8532c1","type":"Microsoft.Authorization/roleAssignments","name":"91a85771-9cd6-11ed-a528-6045bd8532c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T19:40:10.2077596Z","updatedOn":"2023-01-26T19:40:10.2077596Z","createdBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","updatedBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3deeb34a-9db1-11ed-9882-bad388e32b6e","type":"Microsoft.Authorization/roleAssignments","name":"3deeb34a-9db1-11ed-9882-bad388e32b6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T19:40:13.9767599Z","updatedOn":"2023-01-26T19:40:13.9767599Z","createdBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","updatedBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/405d87d0-9db1-11ed-9882-bad388e32b6e","type":"Microsoft.Authorization/roleAssignments","name":"405d87d0-9db1-11ed-9882-bad388e32b6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T21:29:38.0736564Z","updatedOn":"2023-01-26T21:29:38.0736564Z","createdBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","updatedBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88db6aa7-9dc0-11ed-873b-02af4457d3da","type":"Microsoft.Authorization/roleAssignments","name":"88db6aa7-9dc0-11ed-873b-02af4457d3da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T21:29:41.9721959Z","updatedOn":"2023-01-26T21:29:41.9721959Z","createdBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","updatedBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8b20c92b-9dc0-11ed-873b-02af4457d3da","type":"Microsoft.Authorization/roleAssignments","name":"8b20c92b-9dc0-11ed-873b-02af4457d3da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-28T06:05:38.5919016Z","updatedOn":"2023-01-28T06:05:38.5919016Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ee0fdb3-65a0-4344-a73d-15f6b92ea58b","type":"Microsoft.Authorization/roleAssignments","name":"7ee0fdb3-65a0-4344-a73d-15f6b92ea58b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-29T03:40:38.5139182Z","updatedOn":"2023-01-29T03:40:38.5139182Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1dec2dc-9f86-11ed-a95c-0022487e65a6","type":"Microsoft.Authorization/roleAssignments","name":"b1dec2dc-9f86-11ed-a95c-0022487e65a6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-30T05:50:30.0380171Z","updatedOn":"2023-01-30T05:50:30.0380171Z","createdBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","updatedBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/792989a2-3985-4915-bf5a-4eb5451f731b","type":"Microsoft.Authorization/roleAssignments","name":"792989a2-3985-4915-bf5a-4eb5451f731b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-30T15:03:46.9770738Z","updatedOn":"2023-01-30T15:03:46.9770738Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a97ceb8-a0af-11ed-bf9c-a8a1598cc0f3","type":"Microsoft.Authorization/roleAssignments","name":"4a97ceb8-a0af-11ed-bf9c-a8a1598cc0f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-31T08:45:32.8563782Z","updatedOn":"2023-01-31T08:45:32.8563782Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ea26baa-a143-11ed-85d1-1eb0db5454d6","type":"Microsoft.Authorization/roleAssignments","name":"9ea26baa-a143-11ed-85d1-1eb0db5454d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-31T09:18:23.0405616Z","updatedOn":"2023-01-31T09:18:23.0405616Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9063ace1-9e8e-4195-82f8-39fe17fca5ce","type":"Microsoft.Authorization/roleAssignments","name":"9063ace1-9e8e-4195-82f8-39fe17fca5ce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-01T08:12:47.9822357Z","updatedOn":"2023-02-01T08:12:47.9822357Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/31c05c6a-a87b-4ad2-a07e-7acaadecb649","type":"Microsoft.Authorization/roleAssignments","name":"31c05c6a-a87b-4ad2-a07e-7acaadecb649"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-01T19:03:12.2207490Z","updatedOn":"2023-02-01T19:03:12.2207490Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/153174d5-a263-11ed-bad7-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"153174d5-a263-11ed-bad7-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-01T19:03:15.7264802Z","updatedOn":"2023-02-01T19:03:15.7264802Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/172f1d82-a263-11ed-bad7-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"172f1d82-a263-11ed-bad7-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-02T03:13:38.6056072Z","updatedOn":"2023-02-02T03:13:38.6056072Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88d8d974-d77d-450f-89ee-d4a98efea6d8","type":"Microsoft.Authorization/roleAssignments","name":"88d8d974-d77d-450f-89ee-d4a98efea6d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-02T03:19:55.3070568Z","updatedOn":"2023-02-02T03:19:55.3070568Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f273f651-5bde-4219-ab11-33842c5d3224","type":"Microsoft.Authorization/roleAssignments","name":"f273f651-5bde-4219-ab11-33842c5d3224"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-02T09:43:41.0210838Z","updatedOn":"2023-02-02T09:43:41.0210838Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2e9d149-730b-447b-b3e8-3a1fff80f1e1","type":"Microsoft.Authorization/roleAssignments","name":"b2e9d149-730b-447b-b3e8-3a1fff80f1e1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-03T18:49:50.9127720Z","updatedOn":"2023-02-03T18:49:50.9127720Z","createdBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","updatedBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8984621e-a3f3-11ed-b23c-a08cfdd89f0d","type":"Microsoft.Authorization/roleAssignments","name":"8984621e-a3f3-11ed-b23c-a08cfdd89f0d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-03T18:49:55.4277284Z","updatedOn":"2023-02-03T18:49:55.4277284Z","createdBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","updatedBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c3308b8-a3f3-11ed-b23c-a08cfdd89f0d","type":"Microsoft.Authorization/roleAssignments","name":"8c3308b8-a3f3-11ed-b23c-a08cfdd89f0d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-03T21:54:32.5272557Z","updatedOn":"2023-02-03T21:54:32.5272557Z","createdBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","updatedBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5650998f-a40d-11ed-8cfd-763d1fcabad1","type":"Microsoft.Authorization/roleAssignments","name":"5650998f-a40d-11ed-8cfd-763d1fcabad1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-06T16:05:18.7158859Z","updatedOn":"2023-02-06T16:05:18.7158859Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b2a1bdc-a638-11ed-b0e4-de5d54961c0d","type":"Microsoft.Authorization/roleAssignments","name":"0b2a1bdc-a638-11ed-b0e4-de5d54961c0d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-06T21:22:16.0685608Z","updatedOn":"2023-02-06T21:22:16.0685608Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5372f2e2-a664-11ed-99dd-00155d7b2003","type":"Microsoft.Authorization/roleAssignments","name":"5372f2e2-a664-11ed-99dd-00155d7b2003"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T02:31:53.1943940Z","updatedOn":"2023-02-07T02:31:53.1943940Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/93d9ca8e-a68f-11ed-99fe-82539686faad","type":"Microsoft.Authorization/roleAssignments","name":"93d9ca8e-a68f-11ed-99fe-82539686faad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T17:35:09.5804790Z","updatedOn":"2023-02-07T17:35:09.5804790Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c423996c-a70d-11ed-805e-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"c423996c-a70d-11ed-805e-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T21:59:01.9278864Z","updatedOn":"2023-02-07T21:59:01.9278864Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/415eb8ac-2243-415a-8a6a-692cfd82054b","type":"Microsoft.Authorization/roleAssignments","name":"415eb8ac-2243-415a-8a6a-692cfd82054b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T23:07:32.1844748Z","updatedOn":"2023-02-07T23:07:32.1844748Z","createdBy":"bd73a081-fc57-4d58-adb0-f7b098797225","updatedBy":"bd73a081-fc57-4d58-adb0-f7b098797225","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/32edd9f4-a73c-11ed-a351-64d69a01bd73","type":"Microsoft.Authorization/roleAssignments","name":"32edd9f4-a73c-11ed-a351-64d69a01bd73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T23:07:37.2690514Z","updatedOn":"2023-02-07T23:07:37.2690514Z","createdBy":"bd73a081-fc57-4d58-adb0-f7b098797225","updatedBy":"bd73a081-fc57-4d58-adb0-f7b098797225","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3567b721-a73c-11ed-a351-64d69a01bd73","type":"Microsoft.Authorization/roleAssignments","name":"3567b721-a73c-11ed-a351-64d69a01bd73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T16:04:37.2489661Z","updatedOn":"2023-02-08T16:04:37.2489661Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4891c61c-a7ca-11ed-926c-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"4891c61c-a7ca-11ed-926c-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T19:28:37.4403950Z","updatedOn":"2023-02-08T19:28:37.4403950Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7017b0f-925c-43b0-9416-6eb60d8374e3","type":"Microsoft.Authorization/roleAssignments","name":"a7017b0f-925c-43b0-9416-6eb60d8374e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T19:42:35.5124742Z","updatedOn":"2023-02-08T19:42:35.5124742Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd059c37-a7e8-11ed-8d91-7e3b8160807d","type":"Microsoft.Authorization/roleAssignments","name":"bd059c37-a7e8-11ed-8d91-7e3b8160807d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T19:42:39.7153998Z","updatedOn":"2023-02-08T19:42:39.7153998Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf728611-a7e8-11ed-8d91-7e3b8160807d","type":"Microsoft.Authorization/roleAssignments","name":"bf728611-a7e8-11ed-8d91-7e3b8160807d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T22:45:32.7092683Z","updatedOn":"2023-02-08T22:45:32.7092683Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c82f6230-4661-4b60-9ae4-cbd24bc5971d","type":"Microsoft.Authorization/roleAssignments","name":"c82f6230-4661-4b60-9ae4-cbd24bc5971d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T23:38:55.4476717Z","updatedOn":"2023-02-08T23:38:55.4476717Z","createdBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","updatedBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b563f5e3-a809-11ed-92da-061e1dff6519","type":"Microsoft.Authorization/roleAssignments","name":"b563f5e3-a809-11ed-92da-061e1dff6519"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T17:18:01.5061195Z","updatedOn":"2023-02-09T17:18:01.5061195Z","createdBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","updatedBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b477f0fa-a89d-11ed-9d1f-4e375b705c86","type":"Microsoft.Authorization/roleAssignments","name":"b477f0fa-a89d-11ed-9d1f-4e375b705c86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T17:18:03.2471424Z","updatedOn":"2023-02-09T17:18:03.2471424Z","createdBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","updatedBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b58085bc-a89d-11ed-9d1f-4e375b705c86","type":"Microsoft.Authorization/roleAssignments","name":"b58085bc-a89d-11ed-9d1f-4e375b705c86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T18:21:34.0931358Z","updatedOn":"2023-02-09T18:21:34.0931358Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5fe27fe4-6007-4829-afa0-0a3e3780b6d3","type":"Microsoft.Authorization/roleAssignments","name":"5fe27fe4-6007-4829-afa0-0a3e3780b6d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T21:44:30.2729026Z","updatedOn":"2023-02-09T21:44:30.2729026Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eecd187f-a8c2-11ed-9284-1e4dbb47ca8f","type":"Microsoft.Authorization/roleAssignments","name":"eecd187f-a8c2-11ed-9284-1e4dbb47ca8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T21:44:36.9652403Z","updatedOn":"2023-02-09T21:44:36.9652403Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f27e86e2-a8c2-11ed-9284-1e4dbb47ca8f","type":"Microsoft.Authorization/roleAssignments","name":"f27e86e2-a8c2-11ed-9284-1e4dbb47ca8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T01:19:04.3719723Z","updatedOn":"2023-02-10T01:19:04.3719723Z","createdBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","updatedBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d5cdb0f-1b3b-46f9-8e1b-84661382dfe9","type":"Microsoft.Authorization/roleAssignments","name":"0d5cdb0f-1b3b-46f9-8e1b-84661382dfe9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T22:39:09.0776574Z","updatedOn":"2023-02-10T22:39:09.0776574Z","createdBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","updatedBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb3a8a84-a993-11ed-a433-00155df41803","type":"Microsoft.Authorization/roleAssignments","name":"bb3a8a84-a993-11ed-a433-00155df41803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T22:39:12.9098417Z","updatedOn":"2023-02-10T22:39:12.9098417Z","createdBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","updatedBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd7f173a-a993-11ed-a433-00155df41803","type":"Microsoft.Authorization/roleAssignments","name":"bd7f173a-a993-11ed-a433-00155df41803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e3c35f4c-e0ca-4b9e-a01e-5ebdd17e2ee7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-13T07:08:28.2729144Z","updatedOn":"2023-02-13T07:08:28.2729144Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bba123f0-e027-47b5-9f46-15320b0d6ea2","type":"Microsoft.Authorization/roleAssignments","name":"bba123f0-e027-47b5-9f46-15320b0d6ea2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-13T20:30:01.2193678Z","updatedOn":"2023-02-13T20:30:01.2193678Z","createdBy":"40db9032-6efa-443b-a2df-6b0c1d107875","updatedBy":"40db9032-6efa-443b-a2df-6b0c1d107875","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f3b7710-abdd-11ed-8e93-42746b8cdccc","type":"Microsoft.Authorization/roleAssignments","name":"2f3b7710-abdd-11ed-8e93-42746b8cdccc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-13T20:30:05.9299217Z","updatedOn":"2023-02-13T20:30:05.9299217Z","createdBy":"40db9032-6efa-443b-a2df-6b0c1d107875","updatedBy":"40db9032-6efa-443b-a2df-6b0c1d107875","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/321b80cb-abdd-11ed-8e93-42746b8cdccc","type":"Microsoft.Authorization/roleAssignments","name":"321b80cb-abdd-11ed-8e93-42746b8cdccc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-14T20:20:30.1688349Z","updatedOn":"2023-02-14T20:20:30.1688349Z","createdBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","updatedBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/06359457-aca5-11ed-82a6-00155df41803","type":"Microsoft.Authorization/roleAssignments","name":"06359457-aca5-11ed-82a6-00155df41803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T01:37:21.5709630Z","updatedOn":"2023-02-15T01:37:21.5709630Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a7e1874-acd1-11ed-8639-d691c85c3a02","type":"Microsoft.Authorization/roleAssignments","name":"4a7e1874-acd1-11ed-8639-d691c85c3a02"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T09:59:56.7546952Z","updatedOn":"2023-02-15T09:59:56.7546952Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7fa783e6-ad17-11ed-97ee-000d3a9be92a","type":"Microsoft.Authorization/roleAssignments","name":"7fa783e6-ad17-11ed-97ee-000d3a9be92a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T10:00:02.7311424Z","updatedOn":"2023-02-15T10:00:02.7311424Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/836897a6-ad17-11ed-97ee-000d3a9be92a","type":"Microsoft.Authorization/roleAssignments","name":"836897a6-ad17-11ed-97ee-000d3a9be92a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T16:38:42.0341267Z","updatedOn":"2023-02-15T16:38:42.0341267Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3476476d-ad4f-11ed-8fa2-000d3a984fd4","type":"Microsoft.Authorization/roleAssignments","name":"3476476d-ad4f-11ed-8fa2-000d3a984fd4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T16:38:46.6959293Z","updatedOn":"2023-02-15T16:38:46.6959293Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/375326e5-ad4f-11ed-8fa2-000d3a984fd4","type":"Microsoft.Authorization/roleAssignments","name":"375326e5-ad4f-11ed-8fa2-000d3a984fd4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-17T06:21:34.8976862Z","updatedOn":"2023-02-17T06:21:34.8976862Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/52c15699-ae8b-11ed-b14e-023ef88171a7","type":"Microsoft.Authorization/roleAssignments","name":"52c15699-ae8b-11ed-b14e-023ef88171a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-19T02:02:00.9378377Z","updatedOn":"2023-02-19T02:02:00.9378377Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63ae64e6-aff9-11ed-967a-968963402bc6","type":"Microsoft.Authorization/roleAssignments","name":"63ae64e6-aff9-11ed-967a-968963402bc6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-19T02:02:05.4821651Z","updatedOn":"2023-02-19T02:02:05.4821651Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66639a26-aff9-11ed-967a-968963402bc6","type":"Microsoft.Authorization/roleAssignments","name":"66639a26-aff9-11ed-967a-968963402bc6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T09:22:38.4725256Z","updatedOn":"2023-02-21T09:22:38.4725256Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/48461efc-b1c9-11ed-bd41-3ed144e41689","type":"Microsoft.Authorization/roleAssignments","name":"48461efc-b1c9-11ed-bd41-3ed144e41689"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T09:22:42.2363452Z","updatedOn":"2023-02-21T09:22:42.2363452Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a784b6e-b1c9-11ed-bd41-3ed144e41689","type":"Microsoft.Authorization/roleAssignments","name":"4a784b6e-b1c9-11ed-bd41-3ed144e41689"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-23T03:00:31.5651965Z","updatedOn":"2023-02-23T03:00:31.5651965Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cef217b-a8cc-4115-a4bd-042af84325dc","type":"Microsoft.Authorization/roleAssignments","name":"3cef217b-a8cc-4115-a4bd-042af84325dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-23T06:48:16.8637402Z","updatedOn":"2023-02-23T06:48:16.8637402Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0c91daf6-b346-11ed-a964-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"0c91daf6-b346-11ed-a964-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-23T06:48:21.4826289Z","updatedOn":"2023-02-23T06:48:21.4826289Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f55d0c9-b346-11ed-a964-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"0f55d0c9-b346-11ed-a964-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T00:54:23.0966101Z","updatedOn":"2023-02-24T00:54:23.0966101Z","createdBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","updatedBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6e6a721-b3dd-11ed-b60f-0022481da32e","type":"Microsoft.Authorization/roleAssignments","name":"c6e6a721-b3dd-11ed-b60f-0022481da32e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T00:54:31.9826815Z","updatedOn":"2023-02-24T00:54:31.9826815Z","createdBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","updatedBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc3f3b4e-b3dd-11ed-b60f-0022481da32e","type":"Microsoft.Authorization/roleAssignments","name":"cc3f3b4e-b3dd-11ed-b60f-0022481da32e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T02:50:23.5663680Z","updatedOn":"2023-02-24T02:50:23.5663680Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb698872-b3ed-11ed-8f76-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"fb698872-b3ed-11ed-8f76-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T04:50:44.0913238Z","updatedOn":"2023-02-24T04:50:44.0913238Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cb72426d-4967-427c-8cf6-c167bc26814f","type":"Microsoft.Authorization/roleAssignments","name":"cb72426d-4967-427c-8cf6-c167bc26814f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T23:34:22.8669116Z","updatedOn":"2023-02-24T23:34:22.8669116Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3e6258b-b49b-11ed-90ef-000d3a0168de","type":"Microsoft.Authorization/roleAssignments","name":"c3e6258b-b49b-11ed-90ef-000d3a0168de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T23:34:26.7176031Z","updatedOn":"2023-02-24T23:34:26.7176031Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6438a56-b49b-11ed-90ef-000d3a0168de","type":"Microsoft.Authorization/roleAssignments","name":"c6438a56-b49b-11ed-90ef-000d3a0168de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-27T04:38:09.3994350Z","updatedOn":"2023-02-27T04:38:09.3994350Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b58ab305-83cc-4c4e-924b-3c1ba8ffcb83","type":"Microsoft.Authorization/roleAssignments","name":"b58ab305-83cc-4c4e-924b-3c1ba8ffcb83"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-27T04:38:09.8212573Z","updatedOn":"2023-02-27T04:38:09.8212573Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45883a93-4807-4bb9-a2b3-a7163d6c2031","type":"Microsoft.Authorization/roleAssignments","name":"45883a93-4807-4bb9-a2b3-a7163d6c2031"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T04:01:45.4038947Z","updatedOn":"2023-02-28T04:01:45.4038947Z","createdBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","updatedBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9d7a9b0f-b71c-11ed-b33b-6045bd7c1155","type":"Microsoft.Authorization/roleAssignments","name":"9d7a9b0f-b71c-11ed-b33b-6045bd7c1155"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T06:57:12.2026246Z","updatedOn":"2023-02-28T06:57:12.2026246Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1f6f0732-b735-11ed-be49-962abdd2f2a3","type":"Microsoft.Authorization/roleAssignments","name":"1f6f0732-b735-11ed-be49-962abdd2f2a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T15:32:52.3533623Z","updatedOn":"2023-02-28T15:32:52.3533623Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28e54510-b77d-11ed-bcc0-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"28e54510-b77d-11ed-bcc0-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T17:34:23.5106370Z","updatedOn":"2023-02-28T17:34:23.5106370Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/22f4b3a0-b78e-11ed-8898-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"22f4b3a0-b78e-11ed-8898-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T18:16:58.6154652Z","updatedOn":"2023-02-28T18:16:58.6154652Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15c84290-b794-11ed-ba68-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"15c84290-b794-11ed-ba68-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T19:50:58.1867864Z","updatedOn":"2023-03-01T19:50:58.1867864Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61f54236-b86a-11ed-96f5-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"61f54236-b86a-11ed-96f5-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T22:21:34.1000877Z","updatedOn":"2023-03-01T22:21:34.1000877Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b7ce6fa-b87f-11ed-858b-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"6b7ce6fa-b87f-11ed-858b-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T22:45:09.8437635Z","updatedOn":"2023-03-01T22:45:09.8437635Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7b17d80-b882-11ed-a5f7-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"b7b17d80-b882-11ed-a5f7-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T23:11:15.0259743Z","updatedOn":"2023-03-01T23:11:15.0259743Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5c9278f6-b886-11ed-83fe-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"5c9278f6-b886-11ed-83fe-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T06:31:28.5537789Z","updatedOn":"2023-03-02T06:31:28.5537789Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d301d940-45f5-4242-8a04-8ce059ee9054","type":"Microsoft.Authorization/roleAssignments","name":"d301d940-45f5-4242-8a04-8ce059ee9054"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T16:54:46.5495446Z","updatedOn":"2023-03-02T16:54:46.5495446Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef382e78-b91a-11ed-8fc9-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"ef382e78-b91a-11ed-8fc9-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T18:09:39.0923025Z","updatedOn":"2023-03-02T18:09:39.0923025Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65561192-b925-11ed-8582-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"65561192-b925-11ed-8582-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T18:09:44.0481916Z","updatedOn":"2023-03-02T18:09:44.0481916Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/68443e92-b925-11ed-8582-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"68443e92-b925-11ed-8582-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T20:44:44.0250379Z","updatedOn":"2023-03-02T20:44:44.0250379Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f118b20-b93b-11ed-9771-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"0f118b20-b93b-11ed-9771-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T21:25:21.6836921Z","updatedOn":"2023-03-02T21:25:21.6836921Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb99eb4e-b940-11ed-b11e-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"bb99eb4e-b940-11ed-b11e-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T22:13:06.5481097Z","updatedOn":"2023-03-02T22:13:06.5481097Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/671c9222-b947-11ed-bf55-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"671c9222-b947-11ed-bf55-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T23:21:53.5068345Z","updatedOn":"2023-03-02T23:21:53.5068345Z","createdBy":"6a70a9ce-9405-4447-867c-92746716ef5a","updatedBy":"6a70a9ce-9405-4447-867c-92746716ef5a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/03b3dac0-b951-11ed-a3db-5e7d78be13fb","type":"Microsoft.Authorization/roleAssignments","name":"03b3dac0-b951-11ed-a3db-5e7d78be13fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T23:21:58.2602277Z","updatedOn":"2023-03-02T23:21:58.2602277Z","createdBy":"6a70a9ce-9405-4447-867c-92746716ef5a","updatedBy":"6a70a9ce-9405-4447-867c-92746716ef5a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/06a1f991-b951-11ed-a3db-5e7d78be13fb","type":"Microsoft.Authorization/roleAssignments","name":"06a1f991-b951-11ed-a3db-5e7d78be13fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-03T08:24:31.2215832Z","updatedOn":"2023-03-03T08:24:31.2215832Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c439d06c-2e66-4cbc-9c42-f2e962b394a9","type":"Microsoft.Authorization/roleAssignments","name":"c439d06c-2e66-4cbc-9c42-f2e962b394a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-03T08:25:05.4966158Z","updatedOn":"2023-03-03T08:25:05.4966158Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12c86535-6761-4402-a871-c5ed84a4b236","type":"Microsoft.Authorization/roleAssignments","name":"12c86535-6761-4402-a871-c5ed84a4b236"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-06T23:11:36.9481730Z","updatedOn":"2023-03-06T23:11:36.9481730Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d91d90a-bc74-11ed-a26b-66106f6e7480","type":"Microsoft.Authorization/roleAssignments","name":"3d91d90a-bc74-11ed-a26b-66106f6e7480"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-07T11:10:24.3937430Z","updatedOn":"2023-03-07T11:10:24.3937430Z","createdBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","updatedBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a74aed5f-bcd8-11ed-9f36-2636f0255870","type":"Microsoft.Authorization/roleAssignments","name":"a74aed5f-bcd8-11ed-9f36-2636f0255870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-07T11:10:29.5524963Z","updatedOn":"2023-03-07T11:10:29.5524963Z","createdBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","updatedBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa4ebe62-bcd8-11ed-9f36-2636f0255870","type":"Microsoft.Authorization/roleAssignments","name":"aa4ebe62-bcd8-11ed-9f36-2636f0255870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-08T19:24:26.7238172Z","updatedOn":"2023-03-08T19:24:26.7238172Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d65c4fee-bde6-11ed-8e54-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"d65c4fee-bde6-11ed-8e54-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-08T19:24:31.6398973Z","updatedOn":"2023-03-08T19:24:31.6398973Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d90a67f8-bde6-11ed-8e54-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"d90a67f8-bde6-11ed-8e54-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-08T20:06:19.9493503Z","updatedOn":"2023-03-08T20:06:19.9493503Z","createdBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","updatedBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0af95de-bdec-11ed-9669-3e22fb431907","type":"Microsoft.Authorization/roleAssignments","name":"b0af95de-bdec-11ed-9669-3e22fb431907"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-09T01:58:48.5122241Z","updatedOn":"2023-03-09T01:58:48.5122241Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee1bd122-be1d-11ed-a53c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"ee1bd122-be1d-11ed-a53c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-09T17:44:00.7209931Z","updatedOn":"2023-03-09T17:44:00.7209931Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f932fb60-bea1-11ed-afcf-6e3850888c7e","type":"Microsoft.Authorization/roleAssignments","name":"f932fb60-bea1-11ed-afcf-6e3850888c7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-10T08:26:27.9057589Z","updatedOn":"2023-03-10T08:26:27.9057589Z","createdBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","updatedBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f911d1d-bf1d-11ed-a236-002248824659","type":"Microsoft.Authorization/roleAssignments","name":"3f911d1d-bf1d-11ed-a236-002248824659"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-10T08:26:33.2539857Z","updatedOn":"2023-03-10T08:26:33.2539857Z","createdBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","updatedBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42d7f7e6-bf1d-11ed-a236-002248824659","type":"Microsoft.Authorization/roleAssignments","name":"42d7f7e6-bf1d-11ed-a236-002248824659"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-11T05:53:49.4765844Z","updatedOn":"2023-03-11T05:53:49.4765844Z","createdBy":"d378d978-a2b7-46cf-b57b-1e586d281118","updatedBy":"d378d978-a2b7-46cf-b57b-1e586d281118","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/179b8d2a-bfd1-11ed-bd9a-3c52827953b3","type":"Microsoft.Authorization/roleAssignments","name":"179b8d2a-bfd1-11ed-bd9a-3c52827953b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-11T05:53:53.6955891Z","updatedOn":"2023-03-11T05:53:53.6955891Z","createdBy":"d378d978-a2b7-46cf-b57b-1e586d281118","updatedBy":"d378d978-a2b7-46cf-b57b-1e586d281118","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1a1e6965-bfd1-11ed-bd9a-3c52827953b3","type":"Microsoft.Authorization/roleAssignments","name":"1a1e6965-bfd1-11ed-bd9a-3c52827953b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T06:33:26.4594910Z","updatedOn":"2023-03-13T06:33:26.4594910Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b03e0140-e53e-491a-9a7b-e179fa1b8a7b","type":"Microsoft.Authorization/roleAssignments","name":"b03e0140-e53e-491a-9a7b-e179fa1b8a7b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T12:12:33.0193279Z","updatedOn":"2023-03-13T12:12:33.0193279Z","createdBy":"559c030a-5305-402e-ab3c-018e8b685492","updatedBy":"559c030a-5305-402e-ab3c-018e8b685492","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54e258e9-c198-11ed-8db5-be30b45d791c","type":"Microsoft.Authorization/roleAssignments","name":"54e258e9-c198-11ed-8db5-be30b45d791c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T12:12:36.9894487Z","updatedOn":"2023-03-13T12:12:36.9894487Z","createdBy":"559c030a-5305-402e-ab3c-018e8b685492","updatedBy":"559c030a-5305-402e-ab3c-018e8b685492","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/575c39c1-c198-11ed-8db5-be30b45d791c","type":"Microsoft.Authorization/roleAssignments","name":"575c39c1-c198-11ed-8db5-be30b45d791c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-14T18:19:52.2457482Z","updatedOn":"2023-03-14T18:19:52.2457482Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf500684-c294-11ed-aaa3-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"cf500684-c294-11ed-aaa3-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-15T17:17:49.1398598Z","updatedOn":"2023-03-15T17:17:49.1398598Z","createdBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","updatedBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4edbdd66-c355-11ed-8966-d85ed302bf1b","type":"Microsoft.Authorization/roleAssignments","name":"4edbdd66-c355-11ed-8966-d85ed302bf1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-16T00:14:24.3742157Z","updatedOn":"2023-03-16T00:14:24.3742157Z","createdBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","updatedBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7f7be49f-c38f-11ed-ba47-9e7a3e847acb","type":"Microsoft.Authorization/roleAssignments","name":"7f7be49f-c38f-11ed-ba47-9e7a3e847acb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-16T00:14:28.4721252Z","updatedOn":"2023-03-16T00:14:28.4721252Z","createdBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","updatedBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81c01cec-c38f-11ed-ba47-9e7a3e847acb","type":"Microsoft.Authorization/roleAssignments","name":"81c01cec-c38f-11ed-ba47-9e7a3e847acb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-20T06:05:05.2225187Z","updatedOn":"2023-03-20T06:05:05.2225187Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/27de0b5c-c6e5-11ed-8082-0ab78cd2e1ba","type":"Microsoft.Authorization/roleAssignments","name":"27de0b5c-c6e5-11ed-8082-0ab78cd2e1ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-20T19:31:51.9736494Z","updatedOn":"2023-03-20T19:31:51.9736494Z","createdBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","updatedBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dbc8c438-c755-11ed-8659-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"dbc8c438-c755-11ed-8659-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-20T19:31:55.5444616Z","updatedOn":"2023-03-20T19:31:55.5444616Z","createdBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","updatedBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e111eebf-c755-11ed-8659-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"e111eebf-c755-11ed-8659-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T07:50:31.4771973Z","updatedOn":"2023-03-21T07:50:31.4771973Z","createdBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","updatedBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c95fead-0a2b-4d52-a17d-1d3d17997871","type":"Microsoft.Authorization/roleAssignments","name":"6c95fead-0a2b-4d52-a17d-1d3d17997871"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T08:30:33.5552284Z","updatedOn":"2023-03-21T08:30:33.5552284Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a54293b5-c7c2-11ed-a7e6-000d3a044b73","type":"Microsoft.Authorization/roleAssignments","name":"a54293b5-c7c2-11ed-a7e6-000d3a044b73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T19:10:41.8785727Z","updatedOn":"2023-03-21T19:10:41.8785727Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12487a5a-c81c-11ed-ba46-827f6562cca2","type":"Microsoft.Authorization/roleAssignments","name":"12487a5a-c81c-11ed-ba46-827f6562cca2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T19:10:47.3524534Z","updatedOn":"2023-03-21T19:10:47.3524534Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15881bc6-c81c-11ed-ba46-827f6562cca2","type":"Microsoft.Authorization/roleAssignments","name":"15881bc6-c81c-11ed-ba46-827f6562cca2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-23T04:37:57.4678727Z","updatedOn":"2023-03-23T04:37:57.4678727Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b934178-c934-11ed-b9f7-6045bd80c6e6","type":"Microsoft.Authorization/roleAssignments","name":"7b934178-c934-11ed-b9f7-6045bd80c6e6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-27T05:50:19.8871681Z","updatedOn":"2023-03-27T05:50:19.8871681Z","createdBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","updatedBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/410882d1-cc63-11ed-ae41-0022480f1f08","type":"Microsoft.Authorization/roleAssignments","name":"410882d1-cc63-11ed-ae41-0022480f1f08"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-27T05:50:25.6681144Z","updatedOn":"2023-03-27T05:50:25.6681144Z","createdBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","updatedBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/441bda3a-cc63-11ed-ae41-0022480f1f08","type":"Microsoft.Authorization/roleAssignments","name":"441bda3a-cc63-11ed-ae41-0022480f1f08"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d24ecba3-c1f4-40fa-a7bb-4588a071e8fd","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:06.6052430Z","updatedOn":"2023-03-28T04:20:06.6052430Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/407210a5-bc55-40fb-91a9-92aa082cb413","type":"Microsoft.Authorization/roleAssignments","name":"407210a5-bc55-40fb-91a9-92aa082cb413"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:10.8566627Z","updatedOn":"2023-03-28T04:20:10.8566627Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24f5047d-db77-4702-ffab-aa7c979ea3ff","type":"Microsoft.Authorization/roleAssignments","name":"24f5047d-db77-4702-ffab-aa7c979ea3ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:10.9115871Z","updatedOn":"2023-03-28T04:20:10.9115871Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/58df4b89-0de1-4d34-1767-ac1e33e9acd8","type":"Microsoft.Authorization/roleAssignments","name":"58df4b89-0de1-4d34-1767-ac1e33e9acd8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.4495061Z","updatedOn":"2023-03-28T04:20:11.4495061Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a454de4-a1dc-4273-f384-029257fe5c7f","type":"Microsoft.Authorization/roleAssignments","name":"4a454de4-a1dc-4273-f384-029257fe5c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.2724262Z","updatedOn":"2023-03-28T04:20:11.2724262Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd662e52-e7fa-4eeb-5755-696d2e8169b9","type":"Microsoft.Authorization/roleAssignments","name":"cd662e52-e7fa-4eeb-5755-696d2e8169b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.4717540Z","updatedOn":"2023-03-28T04:20:11.4717540Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4680d2be-be84-417b-d222-07880110ada0","type":"Microsoft.Authorization/roleAssignments","name":"4680d2be-be84-417b-d222-07880110ada0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.5533314Z","updatedOn":"2023-03-28T04:20:11.5533314Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28dadd85-c2a5-420f-1563-a6ec9d26fd9a","type":"Microsoft.Authorization/roleAssignments","name":"28dadd85-c2a5-420f-1563-a6ec9d26fd9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.5554589Z","updatedOn":"2023-03-28T04:20:11.5554589Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d1872322-4fde-43f5-e2b4-325dda9f40ad","type":"Microsoft.Authorization/roleAssignments","name":"d1872322-4fde-43f5-e2b4-325dda9f40ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.8299726Z","updatedOn":"2023-03-28T04:20:11.8299726Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ede81bb8-d3cd-4dc8-0fd3-b0a2a5a42b23","type":"Microsoft.Authorization/roleAssignments","name":"ede81bb8-d3cd-4dc8-0fd3-b0a2a5a42b23"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T14:40:42.0514829Z","updatedOn":"2023-03-29T14:40:42.0514829Z","createdBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","updatedBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ae019e96-ce3f-11ed-aa9b-000d3a142c7f","type":"Microsoft.Authorization/roleAssignments","name":"ae019e96-ce3f-11ed-aa9b-000d3a142c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T14:40:45.8687684Z","updatedOn":"2023-03-29T14:40:45.8687684Z","createdBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","updatedBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0540ef4-ce3f-11ed-aa9b-000d3a142c7f","type":"Microsoft.Authorization/roleAssignments","name":"b0540ef4-ce3f-11ed-aa9b-000d3a142c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T17:23:15.2268767Z","updatedOn":"2023-03-29T17:23:15.2268767Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/636243ad-ce56-11ed-9744-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"636243ad-ce56-11ed-9744-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T17:23:18.8739735Z","updatedOn":"2023-03-29T17:23:18.8739735Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6586219c-ce56-11ed-9744-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"6586219c-ce56-11ed-9744-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T19:32:39.0885013Z","updatedOn":"2023-03-29T19:32:39.0885013Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/76c41cef-ce68-11ed-b18b-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"76c41cef-ce68-11ed-b18b-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T19:32:43.3448308Z","updatedOn":"2023-03-29T19:32:43.3448308Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/793f1b95-ce68-11ed-b18b-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"793f1b95-ce68-11ed-b18b-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T02:24:05.4290067Z","updatedOn":"2023-03-31T02:24:05.4290067Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1ad6198a-cf6b-11ed-8440-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"1ad6198a-cf6b-11ed-8440-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T02:24:09.9883076Z","updatedOn":"2023-03-31T02:24:09.9883076Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1dd45f87-cf6b-11ed-8440-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"1dd45f87-cf6b-11ed-8440-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T07:26:15.0154750Z","updatedOn":"2023-03-31T07:26:15.0154750Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/babc263e-1cc9-429d-babf-2b33c8e79093","type":"Microsoft.Authorization/roleAssignments","name":"babc263e-1cc9-429d-babf-2b33c8e79093"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T07:44:54.6073153Z","updatedOn":"2023-03-31T07:44:54.6073153Z","createdBy":"2996d4bf-d495-49f2-a2cd-8d684c724185","updatedBy":"2996d4bf-d495-49f2-a2cd-8d684c724185","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/828df835-2536-4c50-9397-90aabf94db75","type":"Microsoft.Authorization/roleAssignments","name":"828df835-2536-4c50-9397-90aabf94db75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T19:06:47.3414876Z","updatedOn":"2023-03-31T19:06:47.3414876Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2ea3ab94-cff7-11ed-b393-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"2ea3ab94-cff7-11ed-b393-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T19:08:21.6870221Z","updatedOn":"2023-03-31T19:08:21.6870221Z","createdBy":"367712bd-8587-45ef-9e63-1d269a194d53","updatedBy":"367712bd-8587-45ef-9e63-1d269a194d53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66e7009d-cff7-11ed-a7d9-002248a7a68e","type":"Microsoft.Authorization/roleAssignments","name":"66e7009d-cff7-11ed-a7d9-002248a7a68e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T19:08:26.3035343Z","updatedOn":"2023-03-31T19:08:26.3035343Z","createdBy":"367712bd-8587-45ef-9e63-1d269a194d53","updatedBy":"367712bd-8587-45ef-9e63-1d269a194d53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/69a1dd2e-cff7-11ed-a7d9-002248a7a68e","type":"Microsoft.Authorization/roleAssignments","name":"69a1dd2e-cff7-11ed-a7d9-002248a7a68e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-02T04:28:12.7151802Z","updatedOn":"2023-04-02T04:28:12.7151802Z","createdBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","updatedBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c7830a5d-d10e-11ed-a622-f24a877c1ab5","type":"Microsoft.Authorization/roleAssignments","name":"c7830a5d-d10e-11ed-a622-f24a877c1ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-02T04:28:15.3112141Z","updatedOn":"2023-04-02T04:28:15.3112141Z","createdBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","updatedBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9256530-d10e-11ed-a622-f24a877c1ab5","type":"Microsoft.Authorization/roleAssignments","name":"c9256530-d10e-11ed-a622-f24a877c1ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-05T00:24:25.1673334Z","updatedOn":"2023-04-05T00:24:25.1673334Z","createdBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","updatedBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/376ceec9-d348-11ed-9d01-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"376ceec9-d348-11ed-9d01-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-05T00:24:28.5013634Z","updatedOn":"2023-04-05T00:24:28.5013634Z","createdBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","updatedBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39762108-d348-11ed-9d01-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"39762108-d348-11ed-9d01-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-10T17:47:25.2219893Z","updatedOn":"2023-04-10T17:47:25.2219893Z","createdBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","updatedBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0866ce8-d7c7-11ed-a6a7-9660021dc7a9","type":"Microsoft.Authorization/roleAssignments","name":"c0866ce8-d7c7-11ed-a6a7-9660021dc7a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-10T17:47:29.2984077Z","updatedOn":"2023-04-10T17:47:29.2984077Z","createdBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","updatedBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3089c1c-d7c7-11ed-a6a7-9660021dc7a9","type":"Microsoft.Authorization/roleAssignments","name":"c3089c1c-d7c7-11ed-a6a7-9660021dc7a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-13T19:14:02.9424463Z","updatedOn":"2023-04-13T19:14:02.9424463Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d256d6e-ea9e-4124-8252-9da35a5e074b","type":"Microsoft.Authorization/roleAssignments","name":"0d256d6e-ea9e-4124-8252-9da35a5e074b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-17T15:47:32.8370892Z","updatedOn":"2023-04-17T15:47:32.8370892Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3d0f65d-4923-4776-8fb5-288240615c89","type":"Microsoft.Authorization/roleAssignments","name":"b3d0f65d-4923-4776-8fb5-288240615c89"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-17T16:09:03.8628586Z","updatedOn":"2023-04-17T16:09:03.8628586Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2eb3e3cb-598f-4048-aab3-0bd5a8b262ec","type":"Microsoft.Authorization/roleAssignments","name":"2eb3e3cb-598f-4048-aab3-0bd5a8b262ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-19T18:42:49.4053198Z","updatedOn":"2023-04-19T18:42:49.4053198Z","createdBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","updatedBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fba6c131-dee1-11ed-af88-000d3a23f184","type":"Microsoft.Authorization/roleAssignments","name":"fba6c131-dee1-11ed-af88-000d3a23f184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-19T18:42:53.2275925Z","updatedOn":"2023-04-19T18:42:53.2275925Z","createdBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","updatedBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdf8a1c6-dee1-11ed-af88-000d3a23f184","type":"Microsoft.Authorization/roleAssignments","name":"fdf8a1c6-dee1-11ed-af88-000d3a23f184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-19T20:38:29.3110777Z","updatedOn":"2023-04-19T20:38:29.3110777Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23e3d8f0-def2-11ed-8cbe-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"23e3d8f0-def2-11ed-8cbe-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-20T23:41:52.6427527Z","updatedOn":"2023-04-20T23:41:52.6427527Z","createdBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","updatedBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4daefdda-d51e-55b7-9175-548688500778","type":"Microsoft.Authorization/roleAssignments","name":"4daefdda-d51e-55b7-9175-548688500778"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-21T17:49:07.3103199Z","updatedOn":"2023-04-21T17:49:07.3103199Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cfcbdd18-e06c-11ed-8b1a-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"cfcbdd18-e06c-11ed-8b1a-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-21T19:58:00.4291773Z","updatedOn":"2023-04-21T19:58:00.4291773Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d1321fac-e07e-11ed-9f07-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"d1321fac-e07e-11ed-9f07-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-25T18:19:28.7344580Z","updatedOn":"2023-04-25T18:19:28.7344580Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d940b7e-a372-438c-89b3-fe59be8a3d63","type":"Microsoft.Authorization/roleAssignments","name":"6d940b7e-a372-438c-89b3-fe59be8a3d63"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-26T15:27:00.5297027Z","updatedOn":"2023-04-26T15:27:00.5297027Z","createdBy":"b2192440-253a-42f2-8429-40f3820b89be","updatedBy":"b2192440-253a-42f2-8429-40f3820b89be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9b0c1c0-e446-11ed-a01b-00155d1f6f24","type":"Microsoft.Authorization/roleAssignments","name":"c9b0c1c0-e446-11ed-a01b-00155d1f6f24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-26T15:27:03.8070654Z","updatedOn":"2023-04-26T15:27:03.8070654Z","createdBy":"b2192440-253a-42f2-8429-40f3820b89be","updatedBy":"b2192440-253a-42f2-8429-40f3820b89be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbabbec4-e446-11ed-a01b-00155d1f6f24","type":"Microsoft.Authorization/roleAssignments","name":"cbabbec4-e446-11ed-a01b-00155d1f6f24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-28T14:39:15.9639397Z","updatedOn":"2023-04-28T14:39:15.9639397Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/731ed5b6-e5d2-11ed-b4a6-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"731ed5b6-e5d2-11ed-b4a6-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-28T14:39:19.9194172Z","updatedOn":"2023-04-28T14:39:19.9194172Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/757edff4-e5d2-11ed-b4a6-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"757edff4-e5d2-11ed-b4a6-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/974c5e8b-45b9-4653-ba55-5f855dd0fb88","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-01T21:15:30.3600778Z","updatedOn":"2023-05-01T21:15:30.3600778Z","createdBy":"5bef4afd-1360-40a2-ac51-9339229af623","updatedBy":"5bef4afd-1360-40a2-ac51-9339229af623","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4cff74bd-e865-11ed-bd8b-5e022905d313","type":"Microsoft.Authorization/roleAssignments","name":"4cff74bd-e865-11ed-bd8b-5e022905d313"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-01T21:15:34.1175433Z","updatedOn":"2023-05-01T21:15:34.1175433Z","createdBy":"5bef4afd-1360-40a2-ac51-9339229af623","updatedBy":"5bef4afd-1360-40a2-ac51-9339229af623","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4f3e2c7f-e865-11ed-bd8b-5e022905d313","type":"Microsoft.Authorization/roleAssignments","name":"4f3e2c7f-e865-11ed-bd8b-5e022905d313"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-01T22:25:20.9242136Z","updatedOn":"2023-05-01T22:25:20.9242136Z","createdBy":"1ae4ccb9-fb9e-49c0-b500-10d71ff2e737","updatedBy":"1ae4ccb9-fb9e-49c0-b500-10d71ff2e737","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/112fdd75-6ef8-4016-b550-eec1b3c20720","type":"Microsoft.Authorization/roleAssignments","name":"112fdd75-6ef8-4016-b550-eec1b3c20720"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T12:17:42.9403161Z","updatedOn":"2023-05-04T12:17:42.9403161Z","createdBy":"7206144a-a8f7-442f-994e-850c46730a52","updatedBy":"7206144a-a8f7-442f-994e-850c46730a52","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ab58b8d1-ea75-11ed-8e28-8c164501ca31","type":"Microsoft.Authorization/roleAssignments","name":"ab58b8d1-ea75-11ed-8e28-8c164501ca31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T12:17:48.5968787Z","updatedOn":"2023-05-04T12:17:48.5968787Z","createdBy":"7206144a-a8f7-442f-994e-850c46730a52","updatedBy":"7206144a-a8f7-442f-994e-850c46730a52","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aeac0cc1-ea75-11ed-8e28-8c164501ca31","type":"Microsoft.Authorization/roleAssignments","name":"aeac0cc1-ea75-11ed-8e28-8c164501ca31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T14:59:12.9566578Z","updatedOn":"2023-05-04T14:59:12.9566578Z","createdBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","updatedBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a379e3f-ea8c-11ed-b7f9-5254000f02cc","type":"Microsoft.Authorization/roleAssignments","name":"3a379e3f-ea8c-11ed-b7f9-5254000f02cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T14:59:17.0941141Z","updatedOn":"2023-05-04T14:59:17.0941141Z","createdBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","updatedBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cc57207-ea8c-11ed-b7f9-5254000f02cc","type":"Microsoft.Authorization/roleAssignments","name":"3cc57207-ea8c-11ed-b7f9-5254000f02cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-08T17:20:32.4213470Z","updatedOn":"2023-05-08T17:20:32.4213470Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fcb9cd22-d202-49b5-ac49-63b77db3c355","type":"Microsoft.Authorization/roleAssignments","name":"fcb9cd22-d202-49b5-ac49-63b77db3c355"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-08T18:57:28.0040779Z","updatedOn":"2023-05-08T18:57:28.0040779Z","createdBy":"a4ff7404-5868-4532-ab16-142dad6a55af","updatedBy":"a4ff7404-5868-4532-ab16-142dad6a55af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d38f814-edd2-11ed-b548-000d3af78112","type":"Microsoft.Authorization/roleAssignments","name":"2d38f814-edd2-11ed-b548-000d3af78112"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-08T18:57:31.3014429Z","updatedOn":"2023-05-08T18:57:31.3014429Z","createdBy":"a4ff7404-5868-4532-ab16-142dad6a55af","updatedBy":"a4ff7404-5868-4532-ab16-142dad6a55af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f311f92-edd2-11ed-b548-000d3af78112","type":"Microsoft.Authorization/roleAssignments","name":"2f311f92-edd2-11ed-b548-000d3af78112"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T19:02:07.8525568Z","updatedOn":"2023-05-10T19:02:07.8525568Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dedfb4b8-f315-5b5a-b52f-afbb2a175cd5","type":"Microsoft.Authorization/roleAssignments","name":"dedfb4b8-f315-5b5a-b52f-afbb2a175cd5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T19:02:07.5081592Z","updatedOn":"2023-05-10T19:02:07.5081592Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dcfe553d-97cc-5084-b369-d557cd90b386","type":"Microsoft.Authorization/roleAssignments","name":"dcfe553d-97cc-5084-b369-d557cd90b386"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T08:58:12.7125916Z","updatedOn":"2023-05-10T08:58:12.7125916Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d8f9d929-9d3d-42df-a8fe-5f0ceb0bba3e","type":"Microsoft.Authorization/roleAssignments","name":"d8f9d929-9d3d-42df-a8fe-5f0ceb0bba3e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T09:31:17.2430697Z","updatedOn":"2023-05-10T09:31:17.2430697Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3fd12d91-3e5a-4061-bcb2-05a9732b9159","type":"Microsoft.Authorization/roleAssignments","name":"3fd12d91-3e5a-4061-bcb2-05a9732b9159"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:43:09.6330210Z","updatedOn":"2023-05-10T16:43:09.6330210Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/becaa992-ef51-11ed-bf36-f6f4c2331193","type":"Microsoft.Authorization/roleAssignments","name":"becaa992-ef51-11ed-bf36-f6f4c2331193"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:43:13.3065725Z","updatedOn":"2023-05-10T16:43:13.3065725Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0ffd61a-ef51-11ed-bf36-f6f4c2331193","type":"Microsoft.Authorization/roleAssignments","name":"c0ffd61a-ef51-11ed-bf36-f6f4c2331193"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T21:23:06.4822851Z","updatedOn":"2023-05-10T21:23:06.4822851Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/db3e8912-ef78-11ed-9094-0ed70c823176","type":"Microsoft.Authorization/roleAssignments","name":"db3e8912-ef78-11ed-9094-0ed70c823176"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T21:23:10.1751715Z","updatedOn":"2023-05-10T21:23:10.1751715Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd8c02e4-ef78-11ed-9094-0ed70c823176","type":"Microsoft.Authorization/roleAssignments","name":"dd8c02e4-ef78-11ed-9094-0ed70c823176"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-12T17:27:33.1207504Z","updatedOn":"2023-05-12T17:27:33.1207504Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b59475c1-c560-4221-a59e-8c9f845d824c","type":"Microsoft.Authorization/roleAssignments","name":"b59475c1-c560-4221-a59e-8c9f845d824c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T18:50:21.8951381Z","updatedOn":"2023-05-15T18:50:21.8951381Z","createdBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","updatedBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57f8b39a-f351-11ed-a7a2-d28ee6de8df2","type":"Microsoft.Authorization/roleAssignments","name":"57f8b39a-f351-11ed-a7a2-d28ee6de8df2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T18:50:26.0744382Z","updatedOn":"2023-05-15T18:50:26.0744382Z","createdBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","updatedBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5a738a82-f351-11ed-a7a2-d28ee6de8df2","type":"Microsoft.Authorization/roleAssignments","name":"5a738a82-f351-11ed-a7a2-d28ee6de8df2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T20:09:25.9908381Z","updatedOn":"2023-05-15T20:09:25.9908381Z","createdBy":"1f978537-bb5b-4c76-9021-fb832071f334","updatedBy":"1f978537-bb5b-4c76-9021-fb832071f334","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63c222a4-f35c-11ed-a054-6e098a288f3f","type":"Microsoft.Authorization/roleAssignments","name":"63c222a4-f35c-11ed-a054-6e098a288f3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T20:09:35.2733605Z","updatedOn":"2023-05-15T20:09:35.2733605Z","createdBy":"1f978537-bb5b-4c76-9021-fb832071f334","updatedBy":"1f978537-bb5b-4c76-9021-fb832071f334","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6941144c-f35c-11ed-a054-6e098a288f3f","type":"Microsoft.Authorization/roleAssignments","name":"6941144c-f35c-11ed-a054-6e098a288f3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-17T20:10:57.7226371Z","updatedOn":"2023-05-17T20:10:57.7226371Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eda389e3-f4ee-11ed-b5ec-00155d3916e4","type":"Microsoft.Authorization/roleAssignments","name":"eda389e3-f4ee-11ed-b5ec-00155d3916e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-17T20:11:02.1123126Z","updatedOn":"2023-05-17T20:11:02.1123126Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f013376b-f4ee-11ed-b5ec-00155d3916e4","type":"Microsoft.Authorization/roleAssignments","name":"f013376b-f4ee-11ed-b5ec-00155d3916e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-19T16:27:28.8077810Z","updatedOn":"2023-05-19T16:27:28.8077810Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0bb8ff8d-f662-11ed-8f49-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"0bb8ff8d-f662-11ed-8f49-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-19T16:27:33.8052285Z","updatedOn":"2023-05-19T16:27:33.8052285Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ec6735e-f662-11ed-8f49-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"0ec6735e-f662-11ed-8f49-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-22T21:25:31.6093600Z","updatedOn":"2023-05-22T21:25:31.6093600Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d4e15d6-f8e7-11ed-8d3d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2d4e15d6-f8e7-11ed-8d3d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-22T21:25:39.5158809Z","updatedOn":"2023-05-22T21:25:39.5158809Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3232bc64-f8e7-11ed-8d3d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"3232bc64-f8e7-11ed-8d3d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T14:26:30.7681910Z","updatedOn":"2023-05-23T14:26:30.7681910Z","createdBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","updatedBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","delegatedManagedIdentityResourceId":null,"description":"Test + service principal"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/60f05fed-3b0c-4a91-86aa-44a327ded351","type":"Microsoft.Authorization/roleAssignments","name":"60f05fed-3b0c-4a91-86aa-44a327ded351"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T18:52:45.1223272Z","updatedOn":"2023-05-23T18:52:45.1223272Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47caa5b3-b27e-4f95-82b1-b5f87095df3a","type":"Microsoft.Authorization/roleAssignments","name":"47caa5b3-b27e-4f95-82b1-b5f87095df3a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T21:08:13.2773990Z","updatedOn":"2023-05-23T21:08:13.2773990Z","createdBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","updatedBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","delegatedManagedIdentityResourceId":null,"description":"Test + service principal"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79efe060-bf11-43db-ae9d-b281c8d0a9d8","type":"Microsoft.Authorization/roleAssignments","name":"79efe060-bf11-43db-ae9d-b281c8d0a9d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T23:58:25.0358872Z","updatedOn":"2023-05-23T23:58:25.0358872Z","createdBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","updatedBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3ca2af8-f9c5-11ed-9d5d-e64a5a4d2331","type":"Microsoft.Authorization/roleAssignments","name":"b3ca2af8-f9c5-11ed-9d5d-e64a5a4d2331"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T23:58:29.5965022Z","updatedOn":"2023-05-23T23:58:29.5965022Z","createdBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","updatedBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b699d06c-f9c5-11ed-9d5d-e64a5a4d2331","type":"Microsoft.Authorization/roleAssignments","name":"b699d06c-f9c5-11ed-9d5d-e64a5a4d2331"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-25T17:39:08.1426685Z","updatedOn":"2023-05-25T17:39:08.1426685Z","createdBy":"d87783d5-8706-48d6-ba20-d688d69119b2","updatedBy":"d87783d5-8706-48d6-ba20-d688d69119b2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23e6f3b5-225b-4e09-b962-619645aa3b66","type":"Microsoft.Authorization/roleAssignments","name":"23e6f3b5-225b-4e09-b962-619645aa3b66"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-25T20:11:52.1711289Z","updatedOn":"2023-05-25T20:11:52.1711289Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54d2e488-f4a3-4484-802e-ccd2bf4e0973","type":"Microsoft.Authorization/roleAssignments","name":"54d2e488-f4a3-4484-802e-ccd2bf4e0973"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-26T19:08:12.5337243Z","updatedOn":"2023-05-26T19:08:12.5337243Z","createdBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","updatedBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce436091-fe0c-51ad-a3a4-65285790684d","type":"Microsoft.Authorization/roleAssignments","name":"ce436091-fe0c-51ad-a3a4-65285790684d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-26T23:15:50.9221989Z","updatedOn":"2023-05-26T23:15:50.9221989Z","createdBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","updatedBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42aa6334-fc1b-11ed-8275-faccf5616d1b","type":"Microsoft.Authorization/roleAssignments","name":"42aa6334-fc1b-11ed-8275-faccf5616d1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-26T23:15:55.3490253Z","updatedOn":"2023-05-26T23:15:55.3490253Z","createdBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","updatedBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45629004-fc1b-11ed-8275-faccf5616d1b","type":"Microsoft.Authorization/roleAssignments","name":"45629004-fc1b-11ed-8275-faccf5616d1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-31T01:54:29.1188102Z","updatedOn":"2023-05-31T01:54:29.1188102Z","createdBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","updatedBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/13eebbd0-ff56-11ed-9bfa-02e332bf0a73","type":"Microsoft.Authorization/roleAssignments","name":"13eebbd0-ff56-11ed-9bfa-02e332bf0a73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-31T01:54:33.3318294Z","updatedOn":"2023-05-31T01:54:33.3318294Z","createdBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","updatedBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/166f22cd-ff56-11ed-9bfa-02e332bf0a73","type":"Microsoft.Authorization/roleAssignments","name":"166f22cd-ff56-11ed-9bfa-02e332bf0a73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-01T17:50:33.3890390Z","updatedOn":"2023-06-01T17:50:33.3890390Z","createdBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","updatedBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce40a1ba-00a4-11ee-9cf5-00155d28851f","type":"Microsoft.Authorization/roleAssignments","name":"ce40a1ba-00a4-11ee-9cf5-00155d28851f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-01T17:50:37.1678380Z","updatedOn":"2023-06-01T17:50:37.1678380Z","createdBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","updatedBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0850dfa-00a4-11ee-9cf5-00155d28851f","type":"Microsoft.Authorization/roleAssignments","name":"d0850dfa-00a4-11ee-9cf5-00155d28851f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-02T17:57:26.0215079Z","updatedOn":"2023-06-02T17:57:26.0215079Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd9cd89b-ff35-4fa2-9e07-0680ad3fa370","type":"Microsoft.Authorization/roleAssignments","name":"dd9cd89b-ff35-4fa2-9e07-0680ad3fa370"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-02T18:03:23.7925935Z","updatedOn":"2023-06-02T18:03:23.7925935Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d95aec2a-6adc-44a7-bd96-33d53af658bd","type":"Microsoft.Authorization/roleAssignments","name":"d95aec2a-6adc-44a7-bd96-33d53af658bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-03T02:03:08.3558097Z","updatedOn":"2023-06-03T02:03:08.3558097Z","createdBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","updatedBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c0f55e9-ff8c-410b-84c8-c613d1c425d1","type":"Microsoft.Authorization/roleAssignments","name":"6c0f55e9-ff8c-410b-84c8-c613d1c425d1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:28:30.6187015Z","updatedOn":"2023-06-05T17:28:30.6187015Z","createdBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","updatedBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63598898-03c6-11ee-a3b2-00155d87caab","type":"Microsoft.Authorization/roleAssignments","name":"63598898-03c6-11ee-a3b2-00155d87caab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:28:40.0597663Z","updatedOn":"2023-06-05T17:28:40.0597663Z","createdBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","updatedBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/68f66863-03c6-11ee-a3b2-00155d87caab","type":"Microsoft.Authorization/roleAssignments","name":"68f66863-03c6-11ee-a3b2-00155d87caab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:56:05.4845273Z","updatedOn":"2023-06-05T17:56:05.4845273Z","createdBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","updatedBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3dc7635d-03ca-11ee-aaaf-00155da910be","type":"Microsoft.Authorization/roleAssignments","name":"3dc7635d-03ca-11ee-aaaf-00155da910be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:56:09.7600652Z","updatedOn":"2023-06-05T17:56:09.7600652Z","createdBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","updatedBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40502bdc-03ca-11ee-aaaf-00155da910be","type":"Microsoft.Authorization/roleAssignments","name":"40502bdc-03ca-11ee-aaaf-00155da910be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T01:05:13.7066693Z","updatedOn":"2023-06-06T01:05:13.7066693Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/30f7f3e5-0406-11ee-b551-0022482d400c","type":"Microsoft.Authorization/roleAssignments","name":"30f7f3e5-0406-11ee-b551-0022482d400c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T05:00:05.2963688Z","updatedOn":"2023-06-06T05:00:05.2963688Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":"add + RCG-Read Write-CG-23637\n"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca637efb-b6e1-4bf5-bb88-a6724eacb0a7","type":"Microsoft.Authorization/roleAssignments","name":"ca637efb-b6e1-4bf5-bb88-a6724eacb0a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T17:38:31.9010821Z","updatedOn":"2023-06-06T17:38:31.9010821Z","createdBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","updatedBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4658d49-0490-11ee-994b-00155db896c4","type":"Microsoft.Authorization/roleAssignments","name":"f4658d49-0490-11ee-994b-00155db896c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T17:38:35.1906894Z","updatedOn":"2023-06-06T17:38:35.1906894Z","createdBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","updatedBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6601fef-0490-11ee-994b-00155db896c4","type":"Microsoft.Authorization/roleAssignments","name":"f6601fef-0490-11ee-994b-00155db896c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-07T01:57:45.0424798Z","updatedOn":"2023-06-07T01:57:45.0424798Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b19ebd13-04d6-11ee-b0e1-000d3a1d1b64","type":"Microsoft.Authorization/roleAssignments","name":"b19ebd13-04d6-11ee-b0e1-000d3a1d1b64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-07T18:06:20.2372529Z","updatedOn":"2023-06-07T18:06:20.2372529Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/944021da-5dd6-47df-b8bd-2b702ec66b62","type":"Microsoft.Authorization/roleAssignments","name":"944021da-5dd6-47df-b8bd-2b702ec66b62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-08T18:05:13.4812189Z","updatedOn":"2023-06-08T18:05:13.4812189Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/03b31b12-0627-11ee-a6d2-002248be7b21","type":"Microsoft.Authorization/roleAssignments","name":"03b31b12-0627-11ee-a6d2-002248be7b21"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-08T18:05:17.6164752Z","updatedOn":"2023-06-08T18:05:17.6164752Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/061fcfb9-0627-11ee-a6d2-002248be7b21","type":"Microsoft.Authorization/roleAssignments","name":"061fcfb9-0627-11ee-a6d2-002248be7b21"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T21:54:46.4146879Z","updatedOn":"2023-06-09T21:54:46.4146879Z","createdBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","updatedBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f5dc66d-0710-11ee-931c-00155d54ed98","type":"Microsoft.Authorization/roleAssignments","name":"3f5dc66d-0710-11ee-931c-00155d54ed98"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T21:54:50.2224528Z","updatedOn":"2023-06-09T21:54:50.2224528Z","createdBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","updatedBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41a244d2-0710-11ee-931c-00155d54ed98","type":"Microsoft.Authorization/roleAssignments","name":"41a244d2-0710-11ee-931c-00155d54ed98"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T22:15:22.1460837Z","updatedOn":"2023-06-09T22:15:22.1460837Z","createdBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","updatedBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1f99aa10-0713-11ee-9f64-00155dba898f","type":"Microsoft.Authorization/roleAssignments","name":"1f99aa10-0713-11ee-9f64-00155dba898f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T22:15:26.3614867Z","updatedOn":"2023-06-09T22:15:26.3614867Z","createdBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","updatedBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/221f3106-0713-11ee-9f64-00155dba898f","type":"Microsoft.Authorization/roleAssignments","name":"221f3106-0713-11ee-9f64-00155dba898f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-10T00:10:29.8161145Z","updatedOn":"2023-06-10T00:10:29.8161145Z","createdBy":"7df1b69c-686b-452a-9f60-59b12a299512","updatedBy":"7df1b69c-686b-452a-9f60-59b12a299512","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3547a3a6-0723-11ee-af96-521cf0d5af1e","type":"Microsoft.Authorization/roleAssignments","name":"3547a3a6-0723-11ee-af96-521cf0d5af1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-10T00:10:33.6141995Z","updatedOn":"2023-06-10T00:10:33.6141995Z","createdBy":"7df1b69c-686b-452a-9f60-59b12a299512","updatedBy":"7df1b69c-686b-452a-9f60-59b12a299512","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/377f6236-0723-11ee-af96-521cf0d5af1e","type":"Microsoft.Authorization/roleAssignments","name":"377f6236-0723-11ee-af96-521cf0d5af1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-12T03:43:13.3971745Z","updatedOn":"2023-06-12T03:43:13.3971745Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/417d165a-08d3-11ee-8ac2-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"417d165a-08d3-11ee-8ac2-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-12T05:29:01.6737026Z","updatedOn":"2023-06-12T05:29:01.6737026Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b154a136-cc93-46f2-8a71-079a399ec467","type":"Microsoft.Authorization/roleAssignments","name":"b154a136-cc93-46f2-8a71-079a399ec467"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-12T07:33:06.7743063Z","updatedOn":"2023-06-12T07:33:06.7743063Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5d216b6f-33aa-40e9-8b1d-c399739dab45","type":"Microsoft.Authorization/roleAssignments","name":"5d216b6f-33aa-40e9-8b1d-c399739dab45"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T00:55:32.6278707Z","updatedOn":"2023-06-13T00:55:32.6278707Z","createdBy":"859286db-3db2-4ba3-a081-93ef7001669f","updatedBy":"859286db-3db2-4ba3-a081-93ef7001669f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ff444828-0984-11ee-aeab-a6b46b784ab5","type":"Microsoft.Authorization/roleAssignments","name":"ff444828-0984-11ee-aeab-a6b46b784ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T00:55:37.9764519Z","updatedOn":"2023-06-13T00:55:37.9764519Z","createdBy":"859286db-3db2-4ba3-a081-93ef7001669f","updatedBy":"859286db-3db2-4ba3-a081-93ef7001669f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/02794298-0985-11ee-aeab-a6b46b784ab5","type":"Microsoft.Authorization/roleAssignments","name":"02794298-0985-11ee-aeab-a6b46b784ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T00:56:32.2043149Z","updatedOn":"2023-06-13T00:56:32.2043149Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39cae6b9-bfce-4d39-8a33-55001e8e7b87","type":"Microsoft.Authorization/roleAssignments","name":"39cae6b9-bfce-4d39-8a33-55001e8e7b87"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T17:52:57.9703504Z","updatedOn":"2023-06-13T17:52:57.9703504Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57f9abab-a02d-4961-aa68-f7b9a39940e6","type":"Microsoft.Authorization/roleAssignments","name":"57f9abab-a02d-4961-aa68-f7b9a39940e6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T17:54:34.0715865Z","updatedOn":"2023-06-13T17:54:34.0715865Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4caed6f2-725f-4ba4-918a-6b874a08574f","type":"Microsoft.Authorization/roleAssignments","name":"4caed6f2-725f-4ba4-918a-6b874a08574f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f58310d9-a9f6-439a-9e8d-f62e7b41a168","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T18:35:01.5499775Z","updatedOn":"2023-06-13T18:35:01.5499775Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b89c4524-5b48-40cb-9a55-b9712852158d","type":"Microsoft.Authorization/roleAssignments","name":"b89c4524-5b48-40cb-9a55-b9712852158d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T19:11:38.6491712Z","updatedOn":"2023-06-13T19:11:38.6491712Z","createdBy":"d87783d5-8706-48d6-ba20-d688d69119b2","updatedBy":"d87783d5-8706-48d6-ba20-d688d69119b2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09b91438-5494-4648-9766-b0079f6970de","type":"Microsoft.Authorization/roleAssignments","name":"09b91438-5494-4648-9766-b0079f6970de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T19:56:31.5140590Z","updatedOn":"2023-06-13T19:56:31.5140590Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0042f368-b701-4c14-8177-38b23d027a7e","type":"Microsoft.Authorization/roleAssignments","name":"0042f368-b701-4c14-8177-38b23d027a7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T12:57:07.9074452Z","updatedOn":"2023-06-14T12:57:07.9074452Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7e7c27e-0ab2-11ee-a74d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f7e7c27e-0ab2-11ee-a74d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T12:57:11.6755824Z","updatedOn":"2023-06-14T12:57:11.6755824Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa216932-0ab2-11ee-a74d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"fa216932-0ab2-11ee-a74d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T17:38:49.2228645Z","updatedOn":"2023-06-14T17:38:49.2228645Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84bddd3a-c733-408c-b9f2-689e5458a38f","type":"Microsoft.Authorization/roleAssignments","name":"84bddd3a-c733-408c-b9f2-689e5458a38f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T17:38:48.8722593Z","updatedOn":"2023-06-14T17:38:48.8722593Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8aa8e9b1-633b-4e0d-b371-8d21cfdf950a","type":"Microsoft.Authorization/roleAssignments","name":"8aa8e9b1-633b-4e0d-b371-8d21cfdf950a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T17:38:48.8686689Z","updatedOn":"2023-06-14T17:38:48.8686689Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef3807a5-a1bb-4bae-a3d7-781a09a2a198","type":"Microsoft.Authorization/roleAssignments","name":"ef3807a5-a1bb-4bae-a3d7-781a09a2a198"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-12T17:41:39.7941619Z","updatedOn":"2021-03-12T17:41:39.7941619Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4625aa1-611e-448a-bf3e-f37f2bc878a3","type":"Microsoft.Authorization/roleAssignments","name":"d4625aa1-611e-448a-bf3e-f37f2bc878a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-16T23:49:03.3523073Z","updatedOn":"2021-03-16T23:49:03.3523073Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f33005f1-10be-43e3-a87f-9e2f954fb2db","type":"Microsoft.Authorization/roleAssignments","name":"f33005f1-10be-43e3-a87f-9e2f954fb2db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-25T00:58:10.6501184Z","updatedOn":"2021-03-25T00:58:10.6501184Z","createdBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","updatedBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2aca810c-8d05-11eb-bd25-000d3a4359fa","type":"Microsoft.Authorization/roleAssignments","name":"2aca810c-8d05-11eb-bd25-000d3a4359fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-26T10:24:43.4077585Z","updatedOn":"2021-03-26T10:24:43.4077585Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/779ad30e-8e1d-11eb-8aa9-000d3ac754e3","type":"Microsoft.Authorization/roleAssignments","name":"779ad30e-8e1d-11eb-8aa9-000d3ac754e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/46610f90-7283-a03b-3791-33f202e8180c","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T22:46:23.4119129Z","updatedOn":"2022-01-27T22:46:23.4119129Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/46610f90-7283-a03b-3791-33f202e8180c/providers/Microsoft.Authorization/roleAssignments/d92f870d-03da-4626-a453-84734da0b49c","type":"Microsoft.Authorization/roleAssignments","name":"d92f870d-03da-4626-a453-84734da0b49c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.8423155Z","updatedOn":"2019-03-26T22:01:02.8423155Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad/providers/Microsoft.Authorization/roleAssignments/3d069c98-e792-47bd-b58a-399e2d42dbab","type":"Microsoft.Authorization/roleAssignments","name":"3d069c98-e792-47bd-b58a-399e2d42dbab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad","condition":null,"conditionVersion":null,"createdOn":"2021-04-09T18:15:49.7063250Z","updatedOn":"2021-04-09T18:15:49.7063250Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad/providers/Microsoft.Authorization/roleAssignments/a6b435df-80e6-4a7b-b109-2af5f373d238","type":"Microsoft.Authorization/roleAssignments","name":"a6b435df-80e6-4a7b-b109-2af5f373d238"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9176787Z","updatedOn":"2019-03-26T22:01:02.9176787Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320","type":"Microsoft.Authorization/roleAssignments","name":"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:49:37.3000523Z","updatedOn":"2019-03-27T00:49:37.3000523Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29","type":"Microsoft.Authorization/roleAssignments","name":"e6e1fffd-83f7-40c7-9f33-e56e2cf75b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:50:08.3039053Z","updatedOn":"2019-03-27T00:50:08.3039053Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12","type":"Microsoft.Authorization/roleAssignments","name":"3d01f56e-ee3a-41ed-a775-0e067546cb12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T23:11:28.9217618Z","updatedOn":"2022-06-28T23:11:28.9217618Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/869183bd-893a-46f9-bb02-45e48b13f1be","type":"Microsoft.Authorization/roleAssignments","name":"869183bd-893a-46f9-bb02-45e48b13f1be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T22:32:46.2324804Z","updatedOn":"2023-02-21T22:32:46.2324804Z","createdBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","updatedBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/df7c1e07-5c2d-4b22-b7b9-fd11a8569db3","type":"Microsoft.Authorization/roleAssignments","name":"df7c1e07-5c2d-4b22-b7b9-fd11a8569db3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T20:23:16.3808369Z","updatedOn":"2023-05-04T20:23:16.3808369Z","createdBy":"fa00c2de-57d5-4527-9254-4d513f482d0a","updatedBy":"fa00c2de-57d5-4527-9254-4d513f482d0a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/59109645-7b2b-4278-831a-2e4627ec603d","type":"Microsoft.Authorization/roleAssignments","name":"59109645-7b2b-4278-831a-2e4627ec603d"}]}' headers: cache-control: - no-cache content-length: - - '65957' + - '787085' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:07:23 GMT + - Wed, 14 Jun 2023 20:59:00 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_skip_role_assignment_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_skip_role_assignment_msi.yaml old mode 100755 new mode 100644 index d5890d24f8a..35212ca27de --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_skip_role_assignment_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_skip_role_assignment_msi.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -n -g --address-prefix --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:07:23Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_default_service_with_skip_role_assignment_msi","date":"2023-06-14T20:59:04Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '391' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:07:23 GMT + - Wed, 14 Jun 2023 20:59:05 GMT expires: - '-1' pragma: @@ -61,30 +61,32 @@ interactions: ParameterSetName: - -n -g --address-prefix --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000003?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"clivnet000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000003\",\r\n - \ \"etag\": \"W/\\\"9d9dae9d-0630-451c-a136-6fb147699ff7\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"c896f871-5054-40b8-b1c8-dff2c9712bb8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n - \ {\r\n \"name\": \"clisubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000003/subnets/clisubnet000004\",\r\n - \ \"etag\": \"W/\\\"9d9dae9d-0630-451c-a136-6fb147699ff7\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"192.168.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false\r\n }\r\n}" + string: "{\r\n \"name\": \"clivnet000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000003\"\ + ,\r\n \"etag\": \"W/\\\"8b4f47a1-d9d0-4bb5-8612-c31b62604cae\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ + \ \"resourceGuid\": \"d1927a5c-fce4-45b6-a7bb-4ad4e42cedd6\",\r\n \"\ + addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\ + \r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\"\ + : \"clisubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000003/subnets/clisubnet000004\"\ + ,\r\n \"etag\": \"W/\\\"8b4f47a1-d9d0-4bb5-8612-c31b62604cae\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"addressPrefix\": \"192.168.0.0/24\",\r\n \"delegations\"\ + : [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\ + \n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/cffa8c0d-c4dc-4659-b725-2078b286f4d2?api-version=2022-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/196aeb56-faec-48a9-b1a0-0f526f3a8a63?api-version=2022-01-01 cache-control: - no-cache content-length: @@ -92,7 +94,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:07:24 GMT + - Wed, 14 Jun 2023 20:59:08 GMT expires: - '-1' pragma: @@ -105,9 +107,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2b2e5cac-e6d1-4688-ae0e-df7f5466e107 + - f0ffde7b-0009-4cc2-8f26-3ac5377139e6 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -125,9 +127,58 @@ interactions: ParameterSetName: - -n -g --address-prefix --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/cffa8c0d-c4dc-4659-b725-2078b286f4d2?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/196aeb56-faec-48a9-b1a0-0f526f3a8a63?api-version=2022-01-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 14 Jun 2023 20:59:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 6ab5839d-f68d-4116-8ad1-ffdbee2ef4dd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g --address-prefix --subnet-name --subnet-prefix + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/196aeb56-faec-48a9-b1a0-0f526f3a8a63?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -139,7 +190,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:07:27 GMT + - Wed, 14 Jun 2023 20:59:19 GMT expires: - '-1' pragma: @@ -156,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3e11b2e9-47dc-4254-a119-9dcb78c57d8f + - 5f8c1333-bc12-4b72-ad99-17c4eed83478 status: code: 200 message: OK @@ -174,25 +225,27 @@ interactions: ParameterSetName: - -n -g --address-prefix --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000003?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"clivnet000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000003\",\r\n - \ \"etag\": \"W/\\\"b7079c03-9a13-43ea-b40c-2f03d0d65ba9\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"c896f871-5054-40b8-b1c8-dff2c9712bb8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n - \ {\r\n \"name\": \"clisubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000003/subnets/clisubnet000004\",\r\n - \ \"etag\": \"W/\\\"b7079c03-9a13-43ea-b40c-2f03d0d65ba9\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"192.168.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false\r\n }\r\n}" + string: "{\r\n \"name\": \"clivnet000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000003\"\ + ,\r\n \"etag\": \"W/\\\"f55a4744-cb43-4d67-8329-6623175902b0\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ + \ \"resourceGuid\": \"d1927a5c-fce4-45b6-a7bb-4ad4e42cedd6\",\r\n \"\ + addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\ + \r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\"\ + : \"clisubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000003/subnets/clisubnet000004\"\ + ,\r\n \"etag\": \"W/\\\"f55a4744-cb43-4d67-8329-6623175902b0\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"addressPrefix\": \"192.168.0.0/24\",\r\n \"delegations\"\ + : [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\ + \n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -201,9 +254,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:07:27 GMT + - Wed, 14 Jun 2023 20:59:19 GMT etag: - - W/"b7079c03-9a13-43ea-b40c-2f03d0d65ba9" + - W/"f55a4744-cb43-4d67-8329-6623175902b0" expires: - '-1' pragma: @@ -220,7 +273,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7d2b086f-970f-438e-a0ae-3dd7c80d1b14 + - eee1ac3b-70b7-4ea8-8049-dbcccace3cdf status: code: 200 message: OK @@ -239,8 +292,8 @@ interactions: - --resource-group --name --location --node-count --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -256,7 +309,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:07:27 GMT + - Wed, 14 Jun 2023 20:59:21 GMT expires: - '-1' pragma: @@ -272,7 +325,7 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestwklbfxelk-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestkr2xe46lv-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000003/subnets/clisubnet000004", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", @@ -281,9 +334,9 @@ interactions: -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, - "disableLocalAccounts": false, "storageProfile": {}}}' + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -294,65 +347,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1137' + - '1100' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --node-count --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestwklbfxelk-79a739\",\n \"fqdn\": \"cliakstest-clitestwklbfxelk-79a739-e6euaj0e.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwklbfxelk-79a739-e6euaj0e.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000003/subnets/clisubnet000004\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": - \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestkr2xe46lv-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestkr2xe46lv-8ecadf-1zfmnb7d.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestkr2xe46lv-8ecadf-1zfmnb7d.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000003/subnets/clisubnet000004\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1473b01f-5e09-4f4d-b9c2-e4a734010513?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b527e92-fa09-4752-8043-0ffc40c105a1?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2896' + - '2895' content-type: - application/json date: - - Wed, 15 Mar 2023 10:07:36 GMT + - Wed, 14 Jun 2023 20:59:31 GMT expires: - '-1' pragma: @@ -383,14 +439,112 @@ interactions: - --resource-group --name --location --node-count --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b527e92-fa09-4752-8043-0ffc40c105a1?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"927e527b-09fa-5247-8043-0ffc40c105a1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:59:31.1368232Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 20:59:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --node-count --vnet-subnet-id --skip-subnet-role-assignment + --no-ssh-key + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b527e92-fa09-4752-8043-0ffc40c105a1?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"927e527b-09fa-5247-8043-0ffc40c105a1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:59:31.1368232Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 21:00:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --node-count --vnet-subnet-id --skip-subnet-role-assignment + --no-ssh-key + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1473b01f-5e09-4f4d-b9c2-e4a734010513?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b527e92-fa09-4752-8043-0ffc40c105a1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1fb07314-095e-4d4f-b9c2-e4a734010513\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:07:36.8374846Z\"\n }" + string: "{\n \"name\": \"927e527b-09fa-5247-8043-0ffc40c105a1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:59:31.1368232Z\"\n }" headers: cache-control: - no-cache @@ -399,7 +553,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:08:07 GMT + - Wed, 14 Jun 2023 21:00:31 GMT expires: - '-1' pragma: @@ -432,14 +586,14 @@ interactions: - --resource-group --name --location --node-count --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1473b01f-5e09-4f4d-b9c2-e4a734010513?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b527e92-fa09-4752-8043-0ffc40c105a1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1fb07314-095e-4d4f-b9c2-e4a734010513\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:07:36.8374846Z\"\n }" + string: "{\n \"name\": \"927e527b-09fa-5247-8043-0ffc40c105a1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:59:31.1368232Z\"\n }" headers: cache-control: - no-cache @@ -448,7 +602,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:08:36 GMT + - Wed, 14 Jun 2023 21:01:02 GMT expires: - '-1' pragma: @@ -481,14 +635,14 @@ interactions: - --resource-group --name --location --node-count --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1473b01f-5e09-4f4d-b9c2-e4a734010513?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b527e92-fa09-4752-8043-0ffc40c105a1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1fb07314-095e-4d4f-b9c2-e4a734010513\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:07:36.8374846Z\"\n }" + string: "{\n \"name\": \"927e527b-09fa-5247-8043-0ffc40c105a1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:59:31.1368232Z\"\n }" headers: cache-control: - no-cache @@ -497,7 +651,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:09:06 GMT + - Wed, 14 Jun 2023 21:01:32 GMT expires: - '-1' pragma: @@ -530,14 +684,14 @@ interactions: - --resource-group --name --location --node-count --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1473b01f-5e09-4f4d-b9c2-e4a734010513?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b527e92-fa09-4752-8043-0ffc40c105a1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1fb07314-095e-4d4f-b9c2-e4a734010513\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:07:36.8374846Z\"\n }" + string: "{\n \"name\": \"927e527b-09fa-5247-8043-0ffc40c105a1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:59:31.1368232Z\"\n }" headers: cache-control: - no-cache @@ -546,7 +700,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:09:36 GMT + - Wed, 14 Jun 2023 21:02:02 GMT expires: - '-1' pragma: @@ -579,14 +733,14 @@ interactions: - --resource-group --name --location --node-count --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1473b01f-5e09-4f4d-b9c2-e4a734010513?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b527e92-fa09-4752-8043-0ffc40c105a1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1fb07314-095e-4d4f-b9c2-e4a734010513\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:07:36.8374846Z\"\n }" + string: "{\n \"name\": \"927e527b-09fa-5247-8043-0ffc40c105a1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T20:59:31.1368232Z\"\n }" headers: cache-control: - no-cache @@ -595,7 +749,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:06 GMT + - Wed, 14 Jun 2023 21:02:32 GMT expires: - '-1' pragma: @@ -628,24 +782,24 @@ interactions: - --resource-group --name --location --node-count --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1473b01f-5e09-4f4d-b9c2-e4a734010513?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7b527e92-fa09-4752-8043-0ffc40c105a1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1fb07314-095e-4d4f-b9c2-e4a734010513\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:07:36.8374846Z\",\n \"endTime\": - \"2023-03-15T10:10:21.9348284Z\"\n }" + string: "{\n \"name\": \"927e527b-09fa-5247-8043-0ffc40c105a1\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T20:59:31.1368232Z\",\n \"\ + endTime\": \"2023-06-14T21:02:55.53479Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '168' content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:37 GMT + - Wed, 14 Jun 2023 21:03:02 GMT expires: - '-1' pragma: @@ -678,61 +832,64 @@ interactions: - --resource-group --name --location --node-count --vnet-subnet-id --skip-subnet-role-assignment --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestwklbfxelk-79a739\",\n \"fqdn\": \"cliakstest-clitestwklbfxelk-79a739-e6euaj0e.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwklbfxelk-79a739-e6euaj0e.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000003/subnets/clisubnet000004\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4d03750e-8605-4b8e-b3b1-df119fb67910\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestkr2xe46lv-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestkr2xe46lv-8ecadf-1zfmnb7d.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestkr2xe46lv-8ecadf-1zfmnb7d.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000003/subnets/clisubnet000004\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fd9bea0b-5356-4a69-98f2-eb673889f85f\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3549' + - '3548' content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:37 GMT + - Wed, 14 Jun 2023 21:03:03 GMT expires: - '-1' pragma: @@ -764,22 +921,38 @@ interactions: ParameterSetName: - --scope User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000003/subnets/clisubnet000004/providers/Microsoft.Authorization/roleAssignments?$filter=atScope()&api-version=2022-04-01 response: body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-26T05:33:00.7067936Z","updatedOn":"2021-04-26T05:33:00.7067936Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2adf4737-6342-4f63-aeb2-5fcd3426a387","type":"Microsoft.Authorization/roleAssignments","name":"2adf4737-6342-4f63-aeb2-5fcd3426a387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-26T06:09:24.5972802Z","updatedOn":"2021-04-26T06:09:24.5972802Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4572c05-f69f-4e5c-aac6-79afefcf0e2e","type":"Microsoft.Authorization/roleAssignments","name":"c4572c05-f69f-4e5c-aac6-79afefcf0e2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-18T05:18:40.4643436Z","updatedOn":"2021-06-18T05:18:40.4643436Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f926301-cc14-4a88-a3b7-c159d73d01f6","type":"Microsoft.Authorization/roleAssignments","name":"3f926301-cc14-4a88-a3b7-c159d73d01f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:40.4541416Z","updatedOn":"2022-01-25T05:49:40.4541416Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/95e51146-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"95e51146-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:41.6466655Z","updatedOn":"2022-01-25T05:49:41.6466655Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96d4d041-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"96d4d041-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:42.8008295Z","updatedOn":"2022-01-25T05:49:42.8008295Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/978dbc52-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"978dbc52-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:43.7159467Z","updatedOn":"2022-01-25T05:49:43.7159467Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9808753a-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"9808753a-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:44.8535285Z","updatedOn":"2022-01-25T05:49:44.8535285Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9895826c-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"9895826c-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:21.9669611Z","updatedOn":"2022-01-25T06:00:21.9669611Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/143cab45-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"143cab45-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:21.7844500Z","updatedOn":"2022-01-25T06:00:21.7844500Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/143a47b2-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"143a47b2-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:22.8152511Z","updatedOn":"2022-01-25T06:00:22.8152511Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1503a122-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"1503a122-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:22.7549989Z","updatedOn":"2022-01-25T06:00:22.7549989Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14fdfc11-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"14fdfc11-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:47.5002672Z","updatedOn":"2022-01-25T06:00:47.5002672Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23901ba1-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"23901ba1-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:47.9954045Z","updatedOn":"2022-01-25T06:00:47.9954045Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23d4b2c8-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"23d4b2c8-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:48.0124462Z","updatedOn":"2022-01-25T06:00:48.0124462Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23eb1c2a-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"23eb1c2a-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:49.0142818Z","updatedOn":"2022-01-25T06:00:49.0142818Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/248c7804-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"248c7804-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:49.8561822Z","updatedOn":"2022-01-25T06:00:49.8561822Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/25212cc5-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"25212cc5-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:03:00.8232622Z","updatedOn":"2022-01-25T06:03:00.8232622Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/730ae441-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"730ae441-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:03:01.6908492Z","updatedOn":"2022-01-25T06:03:01.6908492Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/73b81c51-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"73b81c51-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:27.0646115Z","updatedOn":"2022-01-25T06:05:27.0646115Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca436279-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"ca436279-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:27.8245772Z","updatedOn":"2022-01-25T06:05:27.8245772Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cad7146c-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cad7146c-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:28.8193427Z","updatedOn":"2022-01-25T06:05:28.8193427Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cb6be874-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cb6be874-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:30.0125029Z","updatedOn":"2022-01-25T06:05:30.0125029Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc20f7f4-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cc20f7f4-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:31.2002633Z","updatedOn":"2022-01-25T06:05:31.2002633Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ccd748dd-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"ccd748dd-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:32.4937030Z","updatedOn":"2022-01-25T06:05:32.4937030Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd4bbd1a-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cd4bbd1a-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:33.6999970Z","updatedOn":"2022-01-25T06:05:33.6999970Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce56964e-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"ce56964e-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:35.3719606Z","updatedOn":"2022-01-25T06:05:35.3719606Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf53c36b-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cf53c36b-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:37.0989473Z","updatedOn":"2022-01-25T06:05:37.0989473Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0537e9f-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d0537e9f-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:37.9186616Z","updatedOn":"2022-01-25T06:05:37.9186616Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0d7c10e-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d0d7c10e-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:39.2245796Z","updatedOn":"2022-01-25T06:05:39.2245796Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d187dc7e-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d187dc7e-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:41.3147495Z","updatedOn":"2022-01-25T06:05:41.3147495Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2d190da-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d2d190da-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:42.0909979Z","updatedOn":"2022-01-25T06:05:42.0909979Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3553305-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d3553305-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T04:11:40.8923959Z","updatedOn":"2023-02-10T04:11:40.8923959Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b9cb4b1-7e07-4127-b87e-47e7ab8ae685","type":"Microsoft.Authorization/roleAssignments","name":"7b9cb4b1-7e07-4127-b87e-47e7ab8ae685"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-18T03:09:33.8702688Z","updatedOn":"2021-09-18T03:09:33.8702688Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99d6fd13-909e-4c52-807e-77f7a5af83c8","type":"Microsoft.Authorization/roleAssignments","name":"99d6fd13-909e-4c52-807e-77f7a5af83c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T17:23:35.8382756Z","updatedOn":"2021-10-08T17:23:35.8382756Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de/providers/Microsoft.Authorization/roleAssignments/ade4333c-4321-4b68-b498-d081d55e2b0c","type":"Microsoft.Authorization/roleAssignments","name":"ade4333c-4321-4b68-b498-d081d55e2b0c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9136073Z","updatedOn":"2019-03-26T22:01:02.9136073Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6f4de15e-9316-4714-a7c4-40c46cf8e067","type":"Microsoft.Authorization/roleAssignments","name":"6f4de15e-9316-4714-a7c4-40c46cf8e067"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:13.2137492Z","updatedOn":"2020-02-25T18:36:13.2137492Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/18fdd87e-1c01-424e-b380-32310f4940c2","type":"Microsoft.Authorization/roleAssignments","name":"18fdd87e-1c01-424e-b380-32310f4940c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:00.4746112Z","updatedOn":"2020-02-25T18:36:00.4746112Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d9bcf58a-6f24-446d-bf60-20ffe5142396","type":"Microsoft.Authorization/roleAssignments","name":"d9bcf58a-6f24-446d-bf60-20ffe5142396"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:55.7490022Z","updatedOn":"2020-02-25T18:35:55.7490022Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6e2b954b-42b2-48e0-997a-622601f0a4b4","type":"Microsoft.Authorization/roleAssignments","name":"6e2b954b-42b2-48e0-997a-622601f0a4b4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:57.9173081Z","updatedOn":"2020-02-25T18:35:57.9173081Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9","type":"Microsoft.Authorization/roleAssignments","name":"8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:23.0673659Z","updatedOn":"2020-02-25T18:36:23.0673659Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d0817c57-3e5b-4363-88b7-52baadd5c362","type":"Microsoft.Authorization/roleAssignments","name":"d0817c57-3e5b-4363-88b7-52baadd5c362"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:31.2596366Z","updatedOn":"2020-02-25T18:36:31.2596366Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0dabf212-a1c7-4af6-ba8b-be045493b368","type":"Microsoft.Authorization/roleAssignments","name":"0dabf212-a1c7-4af6-ba8b-be045493b368"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:52.9188704Z","updatedOn":"2020-02-25T18:35:52.9188704Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d674b853-332e-4437-9ddb-bba8fde7ccce","type":"Microsoft.Authorization/roleAssignments","name":"d674b853-332e-4437-9ddb-bba8fde7ccce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:38.8393742Z","updatedOn":"2020-02-25T18:36:38.8393742Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/00625383-053d-4227-a4db-b098e9bd2289","type":"Microsoft.Authorization/roleAssignments","name":"00625383-053d-4227-a4db-b098e9bd2289"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:05.0954462Z","updatedOn":"2020-02-25T18:36:05.0954462Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/3151fe9c-fcd2-45d3-a256-72fb13b86df5","type":"Microsoft.Authorization/roleAssignments","name":"3151fe9c-fcd2-45d3-a256-72fb13b86df5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-07-06T18:51:23.0753297Z","updatedOn":"2020-07-06T18:51:23.0753297Z","createdBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","updatedBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b3a9e1db-fde1-4ddd-ac1c-91913be67359","type":"Microsoft.Authorization/roleAssignments","name":"b3a9e1db-fde1-4ddd-ac1c-91913be67359"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T21:14:55.1655079Z","updatedOn":"2023-02-28T22:54:18.0450083Z","createdBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","updatedBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6565c104-61e2-5756-96d7-663b216c8b11","type":"Microsoft.Authorization/roleAssignments","name":"6565c104-61e2-5756-96d7-663b216c8b11"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-02-17T00:30:39.4967398Z","updatedOn":"2022-02-17T00:30:39.4967398Z","createdBy":"a4319ad3-20be-4542-8952-685b66e56377","updatedBy":"a4319ad3-20be-4542-8952-685b66e56377","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d8aedac6-3663-42b3-add4-c013b7935fb4","type":"Microsoft.Authorization/roleAssignments","name":"d8aedac6-3663-42b3-add4-c013b7935fb4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-03-02T23:53:39.1630622Z","updatedOn":"2022-03-02T23:53:39.1630622Z","createdBy":"a4319ad3-20be-4542-8952-685b66e56377","updatedBy":"a4319ad3-20be-4542-8952-685b66e56377","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b5f0a13f-ac13-4e45-8588-15f5d9a02b20","type":"Microsoft.Authorization/roleAssignments","name":"b5f0a13f-ac13-4e45-8588-15f5d9a02b20"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:58:05.8353141Z","updatedOn":"2022-03-08T00:58:05.8353141Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/403b97d1-ee0a-4b10-afe1-f36f368d2ced","type":"Microsoft.Authorization/roleAssignments","name":"403b97d1-ee0a-4b10-afe1-f36f368d2ced"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-05-16T23:08:20.8536608Z","updatedOn":"2022-05-16T23:08:20.8536608Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8b338a13-cfa6-42e6-b424-fb375ce9d07c","type":"Microsoft.Authorization/roleAssignments","name":"8b338a13-cfa6-42e6-b424-fb375ce9d07c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-05-17T18:23:54.2264851Z","updatedOn":"2022-05-31T17:20:00.8273681Z","createdBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","updatedBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f0576973-5014-5fe2-b3f2-cf3aace860d6","type":"Microsoft.Authorization/roleAssignments","name":"f0576973-5014-5fe2-b3f2-cf3aace860d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:21.3325762Z","updatedOn":"2022-07-19T00:07:21.3325762Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2697280b-812c-472d-841b-a10a9fe540a5","type":"Microsoft.Authorization/roleAssignments","name":"2697280b-812c-472d-841b-a10a9fe540a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:23.7020980Z","updatedOn":"2022-07-19T00:07:23.7020980Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f4254463-7a28-4d26-b331-5a18c354cbe6","type":"Microsoft.Authorization/roleAssignments","name":"f4254463-7a28-4d26-b331-5a18c354cbe6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:26.4080657Z","updatedOn":"2022-07-19T00:07:26.4080657Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/065a63ba-71cc-4c69-b92b-bc67421e7e64","type":"Microsoft.Authorization/roleAssignments","name":"065a63ba-71cc-4c69-b92b-bc67421e7e64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:33.0012805Z","updatedOn":"2021-08-09T18:17:33.0012805Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/01de8fe7-aae0-4d5c-844a-f0bdb8335252","type":"Microsoft.Authorization/roleAssignments","name":"01de8fe7-aae0-4d5c-844a-f0bdb8335252"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:39.9188336Z","updatedOn":"2021-08-09T18:17:39.9188336Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ab2be506-5489-4c1f-add0-f5ed87a10439","type":"Microsoft.Authorization/roleAssignments","name":"ab2be506-5489-4c1f-add0-f5ed87a10439"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:18.2000692Z","updatedOn":"2021-08-24T19:32:18.2000692Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0ce2f3fb-17ea-4193-9081-09aa4b39fec4","type":"Microsoft.Authorization/roleAssignments","name":"0ce2f3fb-17ea-4193-9081-09aa4b39fec4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:36.6775144Z","updatedOn":"2021-08-24T19:32:36.6775144Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2e95b289-99bd-4e68-83de-5433f2a0428c","type":"Microsoft.Authorization/roleAssignments","name":"2e95b289-99bd-4e68-83de-5433f2a0428c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:09.1056400Z","updatedOn":"2021-11-01T22:46:09.1056400Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/82fe7886-5c1b-42c2-9319-7b4d436d8aba","type":"Microsoft.Authorization/roleAssignments","name":"82fe7886-5c1b-42c2-9319-7b4d436d8aba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:14.7527743Z","updatedOn":"2021-11-01T22:46:14.7527743Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/12162b26-25fb-4ef5-a6e8-651446483cb6","type":"Microsoft.Authorization/roleAssignments","name":"12162b26-25fb-4ef5-a6e8-651446483cb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:20.6399869Z","updatedOn":"2021-11-01T22:46:20.6399869Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870","type":"Microsoft.Authorization/roleAssignments","name":"105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-01-26T20:10:13.8998989Z","updatedOn":"2021-01-26T20:10:13.8998989Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b36517ec-61d3-468d-afdc-eceda8adb4ee","type":"Microsoft.Authorization/roleAssignments","name":"b36517ec-61d3-468d-afdc-eceda8adb4ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-02-06T00:13:19.1780775Z","updatedOn":"2021-02-06T00:13:19.1780775Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5216c1ee-4f58-4d36-b379-6c04b1fbd157","type":"Microsoft.Authorization/roleAssignments","name":"5216c1ee-4f58-4d36-b379-6c04b1fbd157"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:26:34.3109215Z","updatedOn":"2021-04-16T18:26:34.3109215Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/7464f8a3-9f55-443b-a3a5-44a31b100cad","type":"Microsoft.Authorization/roleAssignments","name":"7464f8a3-9f55-443b-a3a5-44a31b100cad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:27:56.4446265Z","updatedOn":"2021-04-16T18:27:56.4446265Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8f430c4c-4317-4495-9f01-4f3d4e1ca111","type":"Microsoft.Authorization/roleAssignments","name":"8f430c4c-4317-4495-9f01-4f3d4e1ca111"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-05-04T19:20:06.7695456Z","updatedOn":"2021-05-04T19:20:06.7695456Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa","type":"Microsoft.Authorization/roleAssignments","name":"fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9176787Z","updatedOn":"2019-03-26T22:01:02.9176787Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320","type":"Microsoft.Authorization/roleAssignments","name":"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:49:37.3000523Z","updatedOn":"2019-03-27T00:49:37.3000523Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29","type":"Microsoft.Authorization/roleAssignments","name":"e6e1fffd-83f7-40c7-9f33-e56e2cf75b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:50:08.3039053Z","updatedOn":"2019-03-27T00:50:08.3039053Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12","type":"Microsoft.Authorization/roleAssignments","name":"3d01f56e-ee3a-41ed-a775-0e067546cb12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T23:11:28.9217618Z","updatedOn":"2022-06-28T23:11:28.9217618Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/869183bd-893a-46f9-bb02-45e48b13f1be","type":"Microsoft.Authorization/roleAssignments","name":"869183bd-893a-46f9-bb02-45e48b13f1be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T22:32:46.2324804Z","updatedOn":"2023-02-21T22:32:46.2324804Z","createdBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","updatedBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/df7c1e07-5c2d-4b22-b7b9-fd11a8569db3","type":"Microsoft.Authorization/roleAssignments","name":"df7c1e07-5c2d-4b22-b7b9-fd11a8569db3"}]}' + string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:58.6582166Z","updatedOn":"2020-08-21T16:23:58.6582166Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ab72fbd-e5fe-4a7d-ae20-baad615d688d","type":"Microsoft.Authorization/roleAssignments","name":"8ab72fbd-e5fe-4a7d-ae20-baad615d688d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:59.5326945Z","updatedOn":"2020-08-21T16:23:59.5326945Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4ed77f1d-82a2-4a02-b48e-fa5776870280","type":"Microsoft.Authorization/roleAssignments","name":"4ed77f1d-82a2-4a02-b48e-fa5776870280"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-02T01:52:45.8299382Z","updatedOn":"2020-09-02T01:52:45.8299382Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3e21284b-6bd7-431a-81ae-ccaf56267ab5","type":"Microsoft.Authorization/roleAssignments","name":"3e21284b-6bd7-431a-81ae-ccaf56267ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-07T09:44:47.3865537Z","updatedOn":"2020-09-07T09:44:47.3865537Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79357f85-973d-4621-b1bd-d1ecb645e146","type":"Microsoft.Authorization/roleAssignments","name":"79357f85-973d-4621-b1bd-d1ecb645e146"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-24T00:04:10.5243862Z","updatedOn":"2020-09-24T00:04:10.5243862Z","createdBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","updatedBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78586b2c-fdf9-11ea-9e5e-8851fb3f4911","type":"Microsoft.Authorization/roleAssignments","name":"78586b2c-fdf9-11ea-9e5e-8851fb3f4911"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-29T10:55:39.3762731Z","updatedOn":"2020-09-29T10:55:39.3762731Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41e159ac-411a-4eed-b319-5b92571d2950","type":"Microsoft.Authorization/roleAssignments","name":"41e159ac-411a-4eed-b319-5b92571d2950"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-06T00:33:22.8792900Z","updatedOn":"2020-10-06T00:33:22.8792900Z","createdBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","updatedBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24d0c5e6-0763-11eb-82a0-d636039e345c","type":"Microsoft.Authorization/roleAssignments","name":"24d0c5e6-0763-11eb-82a0-d636039e345c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-14T00:29:42.9981174Z","updatedOn":"2020-10-14T00:29:42.9981174Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6af4ef5-80f6-4303-a641-45689a1646dc","type":"Microsoft.Authorization/roleAssignments","name":"c6af4ef5-80f6-4303-a641-45689a1646dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-16T16:42:17.7175670Z","updatedOn":"2020-10-16T16:42:17.7175670Z","createdBy":"d69d1d49-5dc8-4c8e-afb6-325d83ddcee8","updatedBy":"d69d1d49-5dc8-4c8e-afb6-325d83ddcee8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5854c7a2-cf00-46f9-9cc1-d977f34324df","type":"Microsoft.Authorization/roleAssignments","name":"5854c7a2-cf00-46f9-9cc1-d977f34324df"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-02T09:02:29.2637630Z","updatedOn":"2020-11-02T09:02:29.2637630Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ad1faa8-8680-4dec-a768-050e8349af33","type":"Microsoft.Authorization/roleAssignments","name":"0ad1faa8-8680-4dec-a768-050e8349af33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-03T22:00:44.4523883Z","updatedOn":"2020-11-03T22:00:44.4523883Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/908aa5ac-22a2-413a-9333-fcb0a1ba2c59","type":"Microsoft.Authorization/roleAssignments","name":"908aa5ac-22a2-413a-9333-fcb0a1ba2c59"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-09T14:00:59.0347294Z","updatedOn":"2020-11-09T14:00:59.0347294Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9541f93-ea4a-4b1b-98bf-839fecfcaa22","type":"Microsoft.Authorization/roleAssignments","name":"e9541f93-ea4a-4b1b-98bf-839fecfcaa22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-12-18T08:00:24.9874024Z","updatedOn":"2020-12-18T08:00:24.9874024Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7f60817e-27b5-486b-bbdb-b748bcb752d4","type":"Microsoft.Authorization/roleAssignments","name":"7f60817e-27b5-486b-bbdb-b748bcb752d4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-12-30T11:06:51.2887287Z","updatedOn":"2020-12-30T11:06:51.2887287Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1cbe1756-4a8f-11eb-b753-720008210d90","type":"Microsoft.Authorization/roleAssignments","name":"1cbe1756-4a8f-11eb-b753-720008210d90"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-01-13T06:12:19.1847916Z","updatedOn":"2021-01-13T06:12:19.1847916Z","createdBy":"241cd743-2c33-4860-bd3a-1df659c06eef","updatedBy":"241cd743-2c33-4860-bd3a-1df659c06eef","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/498bf4f6-5566-11eb-a35b-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"498bf4f6-5566-11eb-a35b-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-04T06:52:05.2038586Z","updatedOn":"2021-02-04T06:52:05.2038586Z","createdBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","updatedBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdf6a314-3605-4944-96c1-08b7364dba54","type":"Microsoft.Authorization/roleAssignments","name":"fdf6a314-3605-4944-96c1-08b7364dba54"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T00:37:53.4699042Z","updatedOn":"2021-02-17T00:37:53.4699042Z","createdBy":"e5ad6d43-d6ac-4061-84cc-f7cb826200a0","updatedBy":"e5ad6d43-d6ac-4061-84cc-f7cb826200a0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c06abb18-9697-41f9-9410-ff0ee9b13ab9","type":"Microsoft.Authorization/roleAssignments","name":"c06abb18-9697-41f9-9410-ff0ee9b13ab9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T01:26:55.0758483Z","updatedOn":"2021-02-17T01:26:55.0758483Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9812b416-33c9-4b88-bcdb-6b8406dd319f","type":"Microsoft.Authorization/roleAssignments","name":"9812b416-33c9-4b88-bcdb-6b8406dd319f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T01:38:17.8125104Z","updatedOn":"2021-02-17T01:38:17.8125104Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82e0c83f-b7dd-49f6-b501-ff05951db69d","type":"Microsoft.Authorization/roleAssignments","name":"82e0c83f-b7dd-49f6-b501-ff05951db69d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-19T01:25:51.9967288Z","updatedOn":"2021-02-19T01:25:51.9967288Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2e4ab306-7ae7-4867-8e22-90215bdbeb9a","type":"Microsoft.Authorization/roleAssignments","name":"2e4ab306-7ae7-4867-8e22-90215bdbeb9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-01T21:51:55.4255791Z","updatedOn":"2021-03-01T21:51:55.4255791Z","createdBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","updatedBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36175f2d-f556-464e-a509-19cbb3f45909","type":"Microsoft.Authorization/roleAssignments","name":"36175f2d-f556-464e-a509-19cbb3f45909"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-21T03:42:13.8891609Z","updatedOn":"2020-02-21T03:42:13.8891609Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c41b0416-12e4-49bb-9e35-411e4f409102","type":"Microsoft.Authorization/roleAssignments","name":"c41b0416-12e4-49bb-9e35-411e4f409102"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-22T07:53:45.7192431Z","updatedOn":"2020-04-22T07:53:45.7192431Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d01cbd3-f3e3-4712-95c6-cf07a0224887","type":"Microsoft.Authorization/roleAssignments","name":"0d01cbd3-f3e3-4712-95c6-cf07a0224887"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-30T06:27:35.9310363Z","updatedOn":"2020-04-30T06:27:35.9310363Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a1327e4-100e-43ee-b04e-1403969b805b","type":"Microsoft.Authorization/roleAssignments","name":"6a1327e4-100e-43ee-b04e-1403969b805b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-06-13T06:44:49.9960198Z","updatedOn":"2019-06-13T06:44:49.9960198Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33958269-41a0-400a-91a1-6303d954c8f0","type":"Microsoft.Authorization/roleAssignments","name":"33958269-41a0-400a-91a1-6303d954c8f0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-04-16T02:04:22.4782415Z","updatedOn":"2019-04-16T02:04:22.4782415Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bacdb283-653c-47eb-a578-11743d7898f8","type":"Microsoft.Authorization/roleAssignments","name":"bacdb283-653c-47eb-a578-11743d7898f8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-27T09:09:33.7347978Z","updatedOn":"2020-03-27T09:09:33.7347978Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d355b17-e9d6-47b7-9181-b54ad0083793","type":"Microsoft.Authorization/roleAssignments","name":"6d355b17-e9d6-47b7-9181-b54ad0083793"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-19T02:50:30.0038186Z","updatedOn":"2019-03-19T02:50:30.0038186Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26adec15-a0e4-4b2e-a437-9b545b9723fc","type":"Microsoft.Authorization/roleAssignments","name":"26adec15-a0e4-4b2e-a437-9b545b9723fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-04-17T00:50:00.2288905Z","updatedOn":"2019-04-17T00:50:00.2288905Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e873fd7-4bdb-4df5-a510-c15f3ce99cd6","type":"Microsoft.Authorization/roleAssignments","name":"0e873fd7-4bdb-4df5-a510-c15f3ce99cd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-08T07:40:31.7235048Z","updatedOn":"2020-05-08T07:40:31.7235048Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbfa0c0c-2653-4fb8-b9e5-d41bd96053a7","type":"Microsoft.Authorization/roleAssignments","name":"cbfa0c0c-2653-4fb8-b9e5-d41bd96053a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-11-15T22:27:15.6601349Z","updatedOn":"2018-11-15T22:27:15.6601349Z","createdBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","updatedBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/418847ec-df97-4b29-9711-fc833817e5d6","type":"Microsoft.Authorization/roleAssignments","name":"418847ec-df97-4b29-9711-fc833817e5d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-28T14:20:52.7506898Z","updatedOn":"2019-08-28T14:20:52.7506898Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/715fd118-93b8-4b09-822d-48de5afb21e3","type":"Microsoft.Authorization/roleAssignments","name":"715fd118-93b8-4b09-822d-48de5afb21e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-06T05:22:04.7673784Z","updatedOn":"2019-01-06T05:22:04.7673784Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba5c8600-8cc9-4778-9735-c3d57d26e50d","type":"Microsoft.Authorization/roleAssignments","name":"ba5c8600-8cc9-4778-9735-c3d57d26e50d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-02T16:21:28.6789246Z","updatedOn":"2020-06-02T16:21:28.6789246Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd6bf5d5-fc1c-4fcd-81f3-0d11d3ff9f42","type":"Microsoft.Authorization/roleAssignments","name":"bd6bf5d5-fc1c-4fcd-81f3-0d11d3ff9f42"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-20T08:42:00.9560545Z","updatedOn":"2020-04-20T08:42:00.9560545Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7a41b62f-97d4-4f4c-8bfc-4a8dd708e00f","type":"Microsoft.Authorization/roleAssignments","name":"7a41b62f-97d4-4f4c-8bfc-4a8dd708e00f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-23T03:10:28.2381030Z","updatedOn":"2020-04-23T03:10:28.2381030Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f98d1512-e634-4663-a219-24be2e6bfe1c","type":"Microsoft.Authorization/roleAssignments","name":"f98d1512-e634-4663-a219-24be2e6bfe1c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-15T02:06:03.3308352Z","updatedOn":"2020-04-15T02:06:03.3308352Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6142150e-c404-48e6-a731-fffb36357051","type":"Microsoft.Authorization/roleAssignments","name":"6142150e-c404-48e6-a731-fffb36357051"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-11-16T23:46:13.9660279Z","updatedOn":"2018-11-16T23:46:13.9660279Z","createdBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","updatedBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b66b1ea-89dd-4bc6-8d89-96298648eb40","type":"Microsoft.Authorization/roleAssignments","name":"2b66b1ea-89dd-4bc6-8d89-96298648eb40"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-10-27T00:03:26.2878499Z","updatedOn":"2018-10-27T00:03:26.2878499Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea920230-1aba-4f80-9eef-3fed8216f594","type":"Microsoft.Authorization/roleAssignments","name":"ea920230-1aba-4f80-9eef-3fed8216f594"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-03T09:55:40.2829720Z","updatedOn":"2020-04-03T09:55:40.2829720Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9c2a551-11aa-4b0a-8816-f8511cd46a32","type":"Microsoft.Authorization/roleAssignments","name":"c9c2a551-11aa-4b0a-8816-f8511cd46a32"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-26T21:10:42.2124416Z","updatedOn":"2020-03-26T21:10:42.2124416Z","createdBy":"50ee185f-0eb1-4577-ae14-4ecf59cfa8f7","updatedBy":"50ee185f-0eb1-4577-ae14-4ecf59cfa8f7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d394da6c-4def-47de-8689-791727331c5b","type":"Microsoft.Authorization/roleAssignments","name":"d394da6c-4def-47de-8689-791727331c5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-21T07:34:50.7125622Z","updatedOn":"2020-04-21T07:34:50.7125622Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ddeb2255-2bb6-458a-a891-532e96ae5483","type":"Microsoft.Authorization/roleAssignments","name":"ddeb2255-2bb6-458a-a891-532e96ae5483"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-23T04:07:45.3308845Z","updatedOn":"2020-06-23T04:07:45.3308845Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15d1dab1-b507-11ea-819c-a28e10bedef6","type":"Microsoft.Authorization/roleAssignments","name":"15d1dab1-b507-11ea-819c-a28e10bedef6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-13T00:09:08.8179220Z","updatedOn":"2020-05-13T00:09:08.8179220Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/08a578f0-4875-47d0-8775-946b3a0f2b06","type":"Microsoft.Authorization/roleAssignments","name":"08a578f0-4875-47d0-8775-946b3a0f2b06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-10T23:15:46.8549700Z","updatedOn":"2020-05-10T23:15:46.8549700Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/22d3da65-7681-445e-9080-e748e494676f","type":"Microsoft.Authorization/roleAssignments","name":"22d3da65-7681-445e-9080-e748e494676f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-29T13:30:14.1177711Z","updatedOn":"2019-08-29T13:30:14.1177711Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a2c1014-c1ba-4ae9-a632-90967c28429d","type":"Microsoft.Authorization/roleAssignments","name":"4a2c1014-c1ba-4ae9-a632-90967c28429d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-27T01:26:21.7189691Z","updatedOn":"2020-02-27T01:26:21.7189691Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28808064-5900-11ea-81c8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"28808064-5900-11ea-81c8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-07-03T01:05:25.8863198Z","updatedOn":"2020-07-03T01:05:25.8863198Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46877403-bcc9-11ea-924f-00155d871f03","type":"Microsoft.Authorization/roleAssignments","name":"46877403-bcc9-11ea-924f-00155d871f03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-28T19:57:23.3708745Z","updatedOn":"2019-03-28T19:57:23.3708745Z","createdBy":"66cb050e-bae1-4005-8c4c-0f6dd9b34978","updatedBy":"66cb050e-bae1-4005-8c4c-0f6dd9b34978","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc796cab-2f6b-4099-b9a3-7500f5516153","type":"Microsoft.Authorization/roleAssignments","name":"cc796cab-2f6b-4099-b9a3-7500f5516153"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-30T22:56:44.9793119Z","updatedOn":"2020-03-30T22:56:44.9793119Z","createdBy":"53bb8815-874d-4b05-9953-1158e05aa080","updatedBy":"53bb8815-874d-4b05-9953-1158e05aa080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/000ea275-41c4-40ce-943f-98a8849a56bc","type":"Microsoft.Authorization/roleAssignments","name":"000ea275-41c4-40ce-943f-98a8849a56bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-10T01:13:53.0806696Z","updatedOn":"2020-06-10T01:13:53.0806696Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a584fad9-aab7-11ea-b7e7-00155d4b0124","type":"Microsoft.Authorization/roleAssignments","name":"a584fad9-aab7-11ea-b7e7-00155d4b0124"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-12T00:23:23.9037436Z","updatedOn":"2020-05-12T00:23:23.9037436Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ff95229-981f-40d7-889f-97bc90b8f387","type":"Microsoft.Authorization/roleAssignments","name":"6ff95229-981f-40d7-889f-97bc90b8f387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-09T00:52:52.1315983Z","updatedOn":"2020-06-09T00:52:52.1315983Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7512dec1-86e5-400d-8bc9-f24f181127f3","type":"Microsoft.Authorization/roleAssignments","name":"7512dec1-86e5-400d-8bc9-f24f181127f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-14T04:03:23.9185561Z","updatedOn":"2020-04-14T04:03:23.9185561Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f0f495d-0356-4239-b966-3f47f5f1054a","type":"Microsoft.Authorization/roleAssignments","name":"0f0f495d-0356-4239-b966-3f47f5f1054a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-14T00:42:59.8868253Z","updatedOn":"2020-05-14T00:42:59.8868253Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b3c8d44-237c-410c-a095-52ded7f5cd26","type":"Microsoft.Authorization/roleAssignments","name":"6b3c8d44-237c-410c-a095-52ded7f5cd26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-11T13:26:01.9493491Z","updatedOn":"2020-02-11T13:26:01.9493491Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8fab1ba3-53c2-4b21-9d32-dc89fd061811","type":"Microsoft.Authorization/roleAssignments","name":"8fab1ba3-53c2-4b21-9d32-dc89fd061811"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-03T05:34:39.2163770Z","updatedOn":"2020-04-03T05:34:39.2163770Z","createdBy":"ed4707f4-8b58-42fe-9afd-0045d7a9b262","updatedBy":"ed4707f4-8b58-42fe-9afd-0045d7a9b262","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e4edc2a-dd1f-469b-9a44-f0693866b843","type":"Microsoft.Authorization/roleAssignments","name":"8e4edc2a-dd1f-469b-9a44-f0693866b843"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-20T19:40:09.1141460Z","updatedOn":"2020-02-20T19:40:09.1141460Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4673bf4-97da-4102-9284-2a7315b88a34","type":"Microsoft.Authorization/roleAssignments","name":"d4673bf4-97da-4102-9284-2a7315b88a34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-21T07:19:44.2488168Z","updatedOn":"2020-04-21T07:19:44.2488168Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fadbe071-d757-48fc-b82a-4784249ded10","type":"Microsoft.Authorization/roleAssignments","name":"fadbe071-d757-48fc-b82a-4784249ded10"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-12T17:29:23.0437979Z","updatedOn":"2019-03-12T17:29:23.0437979Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7e76154-c2a7-4419-b73f-e8c6010318c9","type":"Microsoft.Authorization/roleAssignments","name":"a7e76154-c2a7-4419-b73f-e8c6010318c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-16T23:29:48.3209681Z","updatedOn":"2020-03-16T23:29:48.3209681Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3eb4155b-2965-456b-8f00-bca8a13b1684","type":"Microsoft.Authorization/roleAssignments","name":"3eb4155b-2965-456b-8f00-bca8a13b1684"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:49:54.3783181Z","updatedOn":"2022-01-05T01:49:54.3783181Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/25b4b181-6b51-4bce-beb0-1310829e6de3","type":"Microsoft.Authorization/roleAssignments","name":"25b4b181-6b51-4bce-beb0-1310829e6de3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:50:16.7495633Z","updatedOn":"2022-01-05T01:50:16.7495633Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/093e4a08-9393-4b9d-b3a0-011d77557170","type":"Microsoft.Authorization/roleAssignments","name":"093e4a08-9393-4b9d-b3a0-011d77557170"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:50:40.1521378Z","updatedOn":"2022-01-05T01:50:40.1521378Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e5090ae4-6b40-4bab-9d46-482593ec6229","type":"Microsoft.Authorization/roleAssignments","name":"e5090ae4-6b40-4bab-9d46-482593ec6229"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:52:32.8811339Z","updatedOn":"2022-01-05T01:52:32.8811339Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/923a1dab-e203-422e-bb91-c492a895438e","type":"Microsoft.Authorization/roleAssignments","name":"923a1dab-e203-422e-bb91-c492a895438e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T03:31:42.0793122Z","updatedOn":"2022-01-05T03:31:42.0793122Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6cb2e77-1041-4f33-b449-27f9e8738933","type":"Microsoft.Authorization/roleAssignments","name":"d6cb2e77-1041-4f33-b449-27f9e8738933"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T20:29:36.5271689Z","updatedOn":"2022-01-05T20:29:36.5271689Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3267f83c-6e66-11ec-ae40-aa665a565aa7","type":"Microsoft.Authorization/roleAssignments","name":"3267f83c-6e66-11ec-ae40-aa665a565aa7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-08T01:44:09.0575891Z","updatedOn":"2022-01-08T01:44:09.0575891Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/772c985f-7024-11ec-ab61-00224859aac4","type":"Microsoft.Authorization/roleAssignments","name":"772c985f-7024-11ec-ab61-00224859aac4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-10T07:51:08.0345330Z","updatedOn":"2022-01-10T07:51:08.0345330Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/11391e93-71ea-11ec-97af-0022485937da","type":"Microsoft.Authorization/roleAssignments","name":"11391e93-71ea-11ec-97af-0022485937da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-10T19:52:35.8785494Z","updatedOn":"2022-01-10T19:52:35.8785494Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e403838c-88cd-4fc0-b3e8-45c39ad905c1","type":"Microsoft.Authorization/roleAssignments","name":"e403838c-88cd-4fc0-b3e8-45c39ad905c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-17T09:00:11.8306086Z","updatedOn":"2022-01-17T09:00:11.8306086Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2159ffa-089e-4729-a990-364e13db2a65","type":"Microsoft.Authorization/roleAssignments","name":"b2159ffa-089e-4729-a990-364e13db2a65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-18T13:28:29.0699621Z","updatedOn":"2022-01-18T13:28:29.0699621Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81905706-3ec4-4c25-9c82-d4640a0479c3","type":"Microsoft.Authorization/roleAssignments","name":"81905706-3ec4-4c25-9c82-d4640a0479c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-18T20:11:29.5693659Z","updatedOn":"2022-01-18T20:11:29.5693659Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00f40078-a8bd-4bae-9278-ef9de2d5f632","type":"Microsoft.Authorization/roleAssignments","name":"00f40078-a8bd-4bae-9278-ef9de2d5f632"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-19T08:18:43.7411382Z","updatedOn":"2022-01-19T08:18:43.7411382Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82d96cd7-1671-46d7-afc8-9e3d4c56170d","type":"Microsoft.Authorization/roleAssignments","name":"82d96cd7-1671-46d7-afc8-9e3d4c56170d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-19T18:26:48.3434705Z","updatedOn":"2022-01-19T18:26:48.3434705Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0614428a-cde1-4e89-8202-6cb5cd85e6d8","type":"Microsoft.Authorization/roleAssignments","name":"0614428a-cde1-4e89-8202-6cb5cd85e6d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-20T07:46:22.7990066Z","updatedOn":"2022-01-20T07:46:22.7990066Z","createdBy":"0d969ded-9dc4-4176-8b0f-5194740910bf","updatedBy":"0d969ded-9dc4-4176-8b0f-5194740910bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1134cc98-79c5-11ec-9058-ced79d6624f9","type":"Microsoft.Authorization/roleAssignments","name":"1134cc98-79c5-11ec-9058-ced79d6624f9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-21T02:59:53.1540625Z","updatedOn":"2022-01-21T02:59:53.1540625Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2b558e6-2979-4a34-ba92-81e51afae60d","type":"Microsoft.Authorization/roleAssignments","name":"e2b558e6-2979-4a34-ba92-81e51afae60d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-21T03:51:31.7700381Z","updatedOn":"2022-01-21T03:51:31.7700381Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/774b38ec-8425-4659-9c1c-3662aa0d128a","type":"Microsoft.Authorization/roleAssignments","name":"774b38ec-8425-4659-9c1c-3662aa0d128a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-24T08:18:11.4759466Z","updatedOn":"2022-01-24T08:18:11.4759466Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a6b5b99-dbf6-4270-8c73-cc3e5808e147","type":"Microsoft.Authorization/roleAssignments","name":"9a6b5b99-dbf6-4270-8c73-cc3e5808e147"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-24T08:32:50.8732169Z","updatedOn":"2022-01-24T08:32:50.8732169Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/11d67934-0c51-4dad-8284-f6aced7c815c","type":"Microsoft.Authorization/roleAssignments","name":"11d67934-0c51-4dad-8284-f6aced7c815c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T07:03:14.4901261Z","updatedOn":"2022-01-25T07:03:14.4901261Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dcacb94f-7dac-11ec-be41-c6ce4e0f899a","type":"Microsoft.Authorization/roleAssignments","name":"dcacb94f-7dac-11ec-be41-c6ce4e0f899a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T20:35:15.6769413Z","updatedOn":"2022-01-25T20:35:15.6769413Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9e8bf969-d76d-4923-84d9-d9f98b267d71","type":"Microsoft.Authorization/roleAssignments","name":"9e8bf969-d76d-4923-84d9-d9f98b267d71"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-26T15:50:53.7946290Z","updatedOn":"2022-01-26T15:50:53.7946290Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bdcc5219-7ebf-11ec-bada-00224878d5c3","type":"Microsoft.Authorization/roleAssignments","name":"bdcc5219-7ebf-11ec-bada-00224878d5c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T02:28:59.3221529Z","updatedOn":"2022-01-27T02:28:59.3221529Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28cd45d5-8a0f-4b35-8ee3-f82463ccdf3a","type":"Microsoft.Authorization/roleAssignments","name":"28cd45d5-8a0f-4b35-8ee3-f82463ccdf3a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T02:38:11.8679643Z","updatedOn":"2022-01-27T02:38:11.8679643Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3364749d-7f1a-11ec-9b35-e6e10709004e","type":"Microsoft.Authorization/roleAssignments","name":"3364749d-7f1a-11ec-9b35-e6e10709004e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T03:21:28.9388159Z","updatedOn":"2022-01-27T03:21:28.9388159Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5706d36-4da0-4a7e-abdb-20e8ce5c709d","type":"Microsoft.Authorization/roleAssignments","name":"f5706d36-4da0-4a7e-abdb-20e8ce5c709d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T22:45:56.1614375Z","updatedOn":"2022-01-27T22:45:56.1614375Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8757d35e-c05f-4b14-9b69-94880cf3c630","type":"Microsoft.Authorization/roleAssignments","name":"8757d35e-c05f-4b14-9b69-94880cf3c630"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-31T20:16:07.1248292Z","updatedOn":"2022-01-31T20:16:07.1248292Z","createdBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","updatedBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f16a76e-82d2-11ec-b26c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"9f16a76e-82d2-11ec-b26c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-31T23:19:58.8275488Z","updatedOn":"2022-01-31T23:19:58.8275488Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2192301f-06dd-491e-8e34-93a3cf5c0197","type":"Microsoft.Authorization/roleAssignments","name":"2192301f-06dd-491e-8e34-93a3cf5c0197"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-01T22:56:44.2373253Z","updatedOn":"2022-02-01T22:56:44.2373253Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/395d775a-83b2-11ec-8917-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"395d775a-83b2-11ec-8917-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-01T23:17:51.6753012Z","updatedOn":"2022-02-01T23:17:51.6753012Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb3685a8-f064-431a-8ab6-21f276ae0e4d","type":"Microsoft.Authorization/roleAssignments","name":"fb3685a8-f064-431a-8ab6-21f276ae0e4d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-03T23:18:19.3769285Z","updatedOn":"2022-02-03T23:18:19.3769285Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ff008d0-8547-11ec-87de-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"8ff008d0-8547-11ec-87de-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-05T12:04:01.3658712Z","updatedOn":"2022-02-05T12:04:01.3658712Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3fb26d3-867b-11ec-8bb2-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"b3fb26d3-867b-11ec-8bb2-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-07T19:33:07.4702067Z","updatedOn":"2022-02-07T19:33:07.4702067Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c80d3f4a-065e-4e11-b0a1-9a04f4384563","type":"Microsoft.Authorization/roleAssignments","name":"c80d3f4a-065e-4e11-b0a1-9a04f4384563"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-07T20:03:20.2169334Z","updatedOn":"2022-02-07T20:03:20.2169334Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd6cdc49-8850-11ec-b237-027f0b78f6ab","type":"Microsoft.Authorization/roleAssignments","name":"fd6cdc49-8850-11ec-b237-027f0b78f6ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-08T08:00:07.9076727Z","updatedOn":"2022-02-08T08:00:07.9076727Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cdb4bce2-b187-4057-9fa4-ead6eeb4b442","type":"Microsoft.Authorization/roleAssignments","name":"cdb4bce2-b187-4057-9fa4-ead6eeb4b442"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-08T13:12:19.0792698Z","updatedOn":"2022-02-08T13:12:19.0792698Z","createdBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","updatedBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bccb433c-88e0-11ec-9c26-2e7a733c8e34","type":"Microsoft.Authorization/roleAssignments","name":"bccb433c-88e0-11ec-9c26-2e7a733c8e34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-08T16:00:23.2107710Z","updatedOn":"2022-02-08T16:00:23.2107710Z","createdBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","updatedBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/376f32c6-88f8-11ec-b700-2e7a733c8e34","type":"Microsoft.Authorization/roleAssignments","name":"376f32c6-88f8-11ec-b700-2e7a733c8e34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T08:35:07.6001520Z","updatedOn":"2022-02-11T08:35:07.6001520Z","createdBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","updatedBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8422aed5-8b15-11ec-8a3f-6045bd7c1155","type":"Microsoft.Authorization/roleAssignments","name":"8422aed5-8b15-11ec-8a3f-6045bd7c1155"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T20:16:24.1407485Z","updatedOn":"2022-02-11T20:16:24.1407485Z","createdBy":"c518df35-7e98-4c84-9222-b902d191061e","updatedBy":"c518df35-7e98-4c84-9222-b902d191061e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88cc3504-a850-43bb-a42e-326e300ac247","type":"Microsoft.Authorization/roleAssignments","name":"88cc3504-a850-43bb-a42e-326e300ac247"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T20:17:44.8524024Z","updatedOn":"2022-02-11T20:17:44.8524024Z","createdBy":"c518df35-7e98-4c84-9222-b902d191061e","updatedBy":"c518df35-7e98-4c84-9222-b902d191061e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/270f86d3-cdff-4d1c-8dee-20cbe11a28e0","type":"Microsoft.Authorization/roleAssignments","name":"270f86d3-cdff-4d1c-8dee-20cbe11a28e0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T20:17:45.1659184Z","updatedOn":"2022-02-11T20:17:45.1659184Z","createdBy":"c518df35-7e98-4c84-9222-b902d191061e","updatedBy":"c518df35-7e98-4c84-9222-b902d191061e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a536c303-c7bb-4556-b252-b8faa982403e","type":"Microsoft.Authorization/roleAssignments","name":"a536c303-c7bb-4556-b252-b8faa982403e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-13T11:41:48.7463966Z","updatedOn":"2022-02-13T11:41:48.7463966Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed14b636-8cc1-11ec-b294-002248785c41","type":"Microsoft.Authorization/roleAssignments","name":"ed14b636-8cc1-11ec-b294-002248785c41"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.6113342Z","updatedOn":"2022-02-14T09:22:36.6113342Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca42541d-172f-4c3a-8286-8e260e99050e","type":"Microsoft.Authorization/roleAssignments","name":"ca42541d-172f-4c3a-8286-8e260e99050e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.6424591Z","updatedOn":"2022-02-14T09:22:36.6424591Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8bcdc0e8-d9c2-478a-3363-0965130c9559","type":"Microsoft.Authorization/roleAssignments","name":"8bcdc0e8-d9c2-478a-3363-0965130c9559"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.6556489Z","updatedOn":"2022-02-14T09:22:36.6556489Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdb4d934-dee6-4e1d-d817-9670b25e7200","type":"Microsoft.Authorization/roleAssignments","name":"fdb4d934-dee6-4e1d-d817-9670b25e7200"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.7217526Z","updatedOn":"2022-02-14T09:22:36.7217526Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e9e51fa-3ef2-46c7-ae2b-8a418b68637a","type":"Microsoft.Authorization/roleAssignments","name":"4e9e51fa-3ef2-46c7-ae2b-8a418b68637a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T15:34:50.0327527Z","updatedOn":"2022-02-14T15:34:50.0327527Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5579469-8dab-11ec-aa17-000d3a044b73","type":"Microsoft.Authorization/roleAssignments","name":"a5579469-8dab-11ec-aa17-000d3a044b73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T19:37:05.5912525Z","updatedOn":"2022-02-14T19:37:05.5912525Z","createdBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","updatedBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7aa99c5e-8dcd-11ec-931e-3ee49ac9ec9b","type":"Microsoft.Authorization/roleAssignments","name":"7aa99c5e-8dcd-11ec-931e-3ee49ac9ec9b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T23:14:13.9732126Z","updatedOn":"2022-02-14T23:14:13.9732126Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c604be80-2bb9-48b0-a450-3565ed763f26","type":"Microsoft.Authorization/roleAssignments","name":"c604be80-2bb9-48b0-a450-3565ed763f26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-15T08:25:10.2747643Z","updatedOn":"2022-02-15T08:25:10.2747643Z","createdBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","updatedBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9baa19c-8e38-11ec-8406-000d3a0dff4f","type":"Microsoft.Authorization/roleAssignments","name":"c9baa19c-8e38-11ec-8406-000d3a0dff4f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-15T16:27:03.8176136Z","updatedOn":"2022-02-15T16:27:03.8176136Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1efc7bb8-8e7c-11ec-aba3-5e309da6350b","type":"Microsoft.Authorization/roleAssignments","name":"1efc7bb8-8e7c-11ec-aba3-5e309da6350b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-16T01:17:47.1475801Z","updatedOn":"2022-02-16T01:17:47.1475801Z","createdBy":"20d1aaf0-7699-4c7f-8b08-6e5306613d73","updatedBy":"20d1aaf0-7699-4c7f-8b08-6e5306613d73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3fb9602f-8ec6-11ec-9d90-000d3a6d0522","type":"Microsoft.Authorization/roleAssignments","name":"3fb9602f-8ec6-11ec-9d90-000d3a6d0522"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-16T04:06:52.4519397Z","updatedOn":"2022-02-16T04:06:52.4519397Z","createdBy":"f986308d-63d6-4619-a4f5-851a3bf675cb","updatedBy":"f986308d-63d6-4619-a4f5-851a3bf675cb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/de0a2a00-8edd-11ec-89d6-62e3b50ea3e8","type":"Microsoft.Authorization/roleAssignments","name":"de0a2a00-8edd-11ec-89d6-62e3b50ea3e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-17T07:47:28.0184571Z","updatedOn":"2022-02-17T07:47:28.0184571Z","createdBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","updatedBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/034bc00f-181a-4058-a66b-793a86a3f1d9","type":"Microsoft.Authorization/roleAssignments","name":"034bc00f-181a-4058-a66b-793a86a3f1d9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-18T02:41:56.8572427Z","updatedOn":"2022-02-18T02:41:56.8572427Z","createdBy":"8611abc5-1512-49e0-a6d2-0624ffaf5ef3","updatedBy":"8611abc5-1512-49e0-a6d2-0624ffaf5ef3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/563ddb12-9064-11ec-b259-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"563ddb12-9064-11ec-b259-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-18T02:44:45.0089883Z","updatedOn":"2022-02-18T02:44:45.0089883Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba625e10-9064-11ec-a4c4-000d3a6fbef8","type":"Microsoft.Authorization/roleAssignments","name":"ba625e10-9064-11ec-a4c4-000d3a6fbef8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-21T12:55:18.9707919Z","updatedOn":"2022-02-21T12:55:18.9707919Z","createdBy":"74dcd4fc-6c01-4de6-85b9-6cd3d0b977a0","updatedBy":"74dcd4fc-6c01-4de6-85b9-6cd3d0b977a0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84d1b0a8-9315-11ec-a625-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"84d1b0a8-9315-11ec-a625-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-22T12:02:41.9576481Z","updatedOn":"2022-02-22T12:02:41.9576481Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7ff802f-d555-4740-9446-decc876041c2","type":"Microsoft.Authorization/roleAssignments","name":"f7ff802f-d555-4740-9446-decc876041c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-22T17:40:50.0656641Z","updatedOn":"2022-02-22T17:40:50.0656641Z","createdBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","updatedBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9330f714-9406-11ec-839f-e6018ea1a0b8","type":"Microsoft.Authorization/roleAssignments","name":"9330f714-9406-11ec-839f-e6018ea1a0b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-23T14:56:26.1925430Z","updatedOn":"2022-02-23T14:56:26.1925430Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5f94f93-94b8-11ec-a7aa-ce34ee50a641","type":"Microsoft.Authorization/roleAssignments","name":"c5f94f93-94b8-11ec-a7aa-ce34ee50a641"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-23T19:18:46.5080793Z","updatedOn":"2022-02-23T19:18:46.5080793Z","createdBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","updatedBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6bd539ac-94dd-11ec-af01-8c8590c99d20","type":"Microsoft.Authorization/roleAssignments","name":"6bd539ac-94dd-11ec-af01-8c8590c99d20"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-24T18:48:42.1150127Z","updatedOn":"2022-02-24T18:48:42.1150127Z","createdBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","updatedBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/75d2b821-a297-4959-9c53-d5375978304a","type":"Microsoft.Authorization/roleAssignments","name":"75d2b821-a297-4959-9c53-d5375978304a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-25T19:43:06.0365566Z","updatedOn":"2022-02-25T19:43:06.0365566Z","createdBy":"c2191082-b1ca-4fcd-9645-551452f60be4","updatedBy":"c2191082-b1ca-4fcd-9645-551452f60be4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f5fb238-9673-11ec-87ea-2ef8edc450dc","type":"Microsoft.Authorization/roleAssignments","name":"2f5fb238-9673-11ec-87ea-2ef8edc450dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-28T03:13:54.6616360Z","updatedOn":"2022-02-28T03:13:54.6616360Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/073872ac-f374-444a-ae66-fb821b8532a4","type":"Microsoft.Authorization/roleAssignments","name":"073872ac-f374-444a-ae66-fb821b8532a4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-28T16:39:27.8396295Z","updatedOn":"2022-02-28T16:39:27.8396295Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/60241af8-7226-485e-a261-c69b2cf152c4","type":"Microsoft.Authorization/roleAssignments","name":"60241af8-7226-485e-a261-c69b2cf152c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-01T13:58:58.0676838Z","updatedOn":"2022-03-01T13:58:58.0676838Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1e29644f-ada5-4d30-9c40-a406758409f1","type":"Microsoft.Authorization/roleAssignments","name":"1e29644f-ada5-4d30-9c40-a406758409f1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-03T10:22:00.9954003Z","updatedOn":"2022-03-03T10:22:00.9954003Z","createdBy":"08de6591-dec9-4255-ab17-d6919151fadd","updatedBy":"08de6591-dec9-4255-ab17-d6919151fadd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c30b494c-9adb-11ec-ae58-4a123144b5f6","type":"Microsoft.Authorization/roleAssignments","name":"c30b494c-9adb-11ec-ae58-4a123144b5f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-03T15:10:52.8750196Z","updatedOn":"2022-03-03T15:10:52.8750196Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1d1f5e12-9b04-11ec-bf9f-000d3ac561f6","type":"Microsoft.Authorization/roleAssignments","name":"1d1f5e12-9b04-11ec-bf9f-000d3ac561f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T03:22:58.4512023Z","updatedOn":"2022-03-07T03:22:58.4512023Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e234c5f8-9dc5-11ec-993d-0022485937da","type":"Microsoft.Authorization/roleAssignments","name":"e234c5f8-9dc5-11ec-993d-0022485937da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T11:02:56.8448863Z","updatedOn":"2022-03-07T11:02:56.8448863Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/258a4631-9e06-11ec-9362-98e7f4beee90","type":"Microsoft.Authorization/roleAssignments","name":"258a4631-9e06-11ec-9362-98e7f4beee90"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T22:29:31.2927512Z","updatedOn":"2022-03-07T22:29:31.2927512Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef654596-33a1-443e-8a7d-48c0aa96bfcb","type":"Microsoft.Authorization/roleAssignments","name":"ef654596-33a1-443e-8a7d-48c0aa96bfcb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T23:16:52.1440710Z","updatedOn":"2022-03-07T23:16:52.1440710Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3aea3844-0bdd-4673-9a4e-444433ce4230","type":"Microsoft.Authorization/roleAssignments","name":"3aea3844-0bdd-4673-9a4e-444433ce4230"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:15:35.5981652Z","updatedOn":"2022-03-08T00:15:35.5981652Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":"wenxuan-azure-cli"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be01fdd4-3bdf-4a61-8884-59ffb6e82843","type":"Microsoft.Authorization/roleAssignments","name":"be01fdd4-3bdf-4a61-8884-59ffb6e82843"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:22:25.1920031Z","updatedOn":"2022-03-08T00:22:25.1920031Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1433f18e-b3fc-4984-bd98-c93d9244fb18","type":"Microsoft.Authorization/roleAssignments","name":"1433f18e-b3fc-4984-bd98-c93d9244fb18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T18:56:05.1276019Z","updatedOn":"2022-03-08T18:56:05.1276019Z","createdBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","updatedBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67554406-9f11-11ec-b5da-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"67554406-9f11-11ec-b5da-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-09T00:02:42.6050341Z","updatedOn":"2022-03-09T00:02:42.6050341Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/398c74fc-afb6-47dd-bf7a-efcff5dc1b86","type":"Microsoft.Authorization/roleAssignments","name":"398c74fc-afb6-47dd-bf7a-efcff5dc1b86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-05T14:05:58.2716050Z","updatedOn":"2021-04-05T14:05:58.2716050Z","createdBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","updatedBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a9b0e6a-9618-11eb-879a-88e9fe77e044","type":"Microsoft.Authorization/roleAssignments","name":"0a9b0e6a-9618-11eb-879a-88e9fe77e044"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-05T17:37:43.7040494Z","updatedOn":"2021-04-05T17:37:43.7040494Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a04b0948-9635-11eb-b395-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"a04b0948-9635-11eb-b395-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T02:24:39.3826587Z","updatedOn":"2021-04-06T02:24:39.3826587Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c21611b-a840-4166-b9f4-8cec90c17841","type":"Microsoft.Authorization/roleAssignments","name":"6c21611b-a840-4166-b9f4-8cec90c17841"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T02:24:39.4154930Z","updatedOn":"2021-04-06T02:24:39.4154930Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/925d4876-8fde-4334-8f84-4ce52ca7108e","type":"Microsoft.Authorization/roleAssignments","name":"925d4876-8fde-4334-8f84-4ce52ca7108e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T04:46:32.1029699Z","updatedOn":"2021-04-06T04:46:32.1029699Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0dfdb837-9693-11eb-b629-b6178ece78ec","type":"Microsoft.Authorization/roleAssignments","name":"0dfdb837-9693-11eb-b629-b6178ece78ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T11:25:43.5702772Z","updatedOn":"2021-04-06T11:25:43.5702772Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/958a1320-4346-46fb-9722-828af239eb03","type":"Microsoft.Authorization/roleAssignments","name":"958a1320-4346-46fb-9722-828af239eb03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T20:54:21.5921112Z","updatedOn":"2021-04-06T20:54:21.5921112Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42ad5638-971a-11eb-abf6-00155d3a4c00","type":"Microsoft.Authorization/roleAssignments","name":"42ad5638-971a-11eb-abf6-00155d3a4c00"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T23:22:50.4425724Z","updatedOn":"2021-04-06T23:22:50.4425724Z","createdBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","updatedBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00a90f2a-972f-11eb-9121-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"00a90f2a-972f-11eb-9121-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T00:26:49.7250016Z","updatedOn":"2021-04-07T00:26:49.7250016Z","createdBy":"88f18750-8181-4579-8eff-eb44f510655c","updatedBy":"88f18750-8181-4579-8eff-eb44f510655c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dca2df37-fdd1-49dc-a1de-31a70d62e098","type":"Microsoft.Authorization/roleAssignments","name":"dca2df37-fdd1-49dc-a1de-31a70d62e098"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T09:10:47.4905668Z","updatedOn":"2021-04-07T09:10:47.4905668Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a5dbdef-0896-48cd-a325-318e807ea133","type":"Microsoft.Authorization/roleAssignments","name":"8a5dbdef-0896-48cd-a325-318e807ea133"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T19:55:01.1984055Z","updatedOn":"2021-04-07T19:55:01.1984055Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2301d942-97db-11eb-8bf8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2301d942-97db-11eb-8bf8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T22:36:06.7954601Z","updatedOn":"2021-04-07T22:36:06.7954601Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6070c7de-7571-4d55-8b2f-85285b7d9675","type":"Microsoft.Authorization/roleAssignments","name":"6070c7de-7571-4d55-8b2f-85285b7d9675"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-13T03:07:16.5183912Z","updatedOn":"2021-04-13T03:07:16.5183912Z","createdBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","updatedBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59402850-9c05-11eb-8744-20c9d0477c8f","type":"Microsoft.Authorization/roleAssignments","name":"59402850-9c05-11eb-8744-20c9d0477c8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-14T19:16:13.6465266Z","updatedOn":"2021-04-14T19:16:13.6465266Z","createdBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","updatedBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e04efa46-9d55-11eb-9723-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e04efa46-9d55-11eb-9723-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-15T02:29:06.6768532Z","updatedOn":"2021-04-15T02:29:06.6768532Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/19165f29-858f-47fa-befe-cd1babe9df75","type":"Microsoft.Authorization/roleAssignments","name":"19165f29-858f-47fa-befe-cd1babe9df75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-19T08:59:20.4071341Z","updatedOn":"2021-04-19T08:59:20.4071341Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88489205-a0ed-11eb-996c-1a21256cebfc","type":"Microsoft.Authorization/roleAssignments","name":"88489205-a0ed-11eb-996c-1a21256cebfc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-19T22:35:57.5324093Z","updatedOn":"2021-04-19T22:35:57.5324093Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b85c442-a15f-11eb-8a7c-00155d871f03","type":"Microsoft.Authorization/roleAssignments","name":"9b85c442-a15f-11eb-8a7c-00155d871f03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-21T12:31:21.7286225Z","updatedOn":"2021-04-21T12:31:21.7286225Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7770db7c-a29d-11eb-b48f-42472d33150a","type":"Microsoft.Authorization/roleAssignments","name":"7770db7c-a29d-11eb-b48f-42472d33150a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-11T02:49:35.7701861Z","updatedOn":"2021-05-11T02:49:35.7701861Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83c25ed3-b203-11eb-8150-56db513b8477","type":"Microsoft.Authorization/roleAssignments","name":"83c25ed3-b203-11eb-8150-56db513b8477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-12T06:15:49.6202169Z","updatedOn":"2021-05-12T06:15:49.6202169Z","createdBy":"069015af-8ac7-4304-a60f-69a8a50309be","updatedBy":"069015af-8ac7-4304-a60f-69a8a50309be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ecced22-b2e9-11eb-bdc4-da23ac480b85","type":"Microsoft.Authorization/roleAssignments","name":"7ecced22-b2e9-11eb-bdc4-da23ac480b85"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-18T02:08:43.3533001Z","updatedOn":"2021-05-18T02:08:43.3533001Z","createdBy":"069015af-8ac7-4304-a60f-69a8a50309be","updatedBy":"069015af-8ac7-4304-a60f-69a8a50309be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8582f67-b77d-11eb-bffb-52ac6a27ca65","type":"Microsoft.Authorization/roleAssignments","name":"f8582f67-b77d-11eb-bffb-52ac6a27ca65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-24T05:29:46.7966317Z","updatedOn":"2021-05-24T05:29:46.7966317Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d7389dd2-ee8e-4d34-8703-b304716b1761","type":"Microsoft.Authorization/roleAssignments","name":"d7389dd2-ee8e-4d34-8703-b304716b1761"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-01T09:38:20.8655603Z","updatedOn":"2021-06-01T09:38:20.8655603Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18455841-c2bd-11eb-80b3-9a0a2a9b0ea3","type":"Microsoft.Authorization/roleAssignments","name":"18455841-c2bd-11eb-80b3-9a0a2a9b0ea3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-03T16:55:35.8333154Z","updatedOn":"2021-06-03T16:55:35.8333154Z","createdBy":"ae4622a7-bde9-4bca-9599-2d18571bfeba","updatedBy":"ae4622a7-bde9-4bca-9599-2d18571bfeba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83e4c5e8-c48c-11eb-b991-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"83e4c5e8-c48c-11eb-b991-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-07T22:29:50.4448757Z","updatedOn":"2021-06-07T22:29:50.4448757Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/decef2d4-c7df-11eb-a83e-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"decef2d4-c7df-11eb-a83e-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-08T21:20:41.4426747Z","updatedOn":"2021-06-08T21:20:41.4426747Z","createdBy":"39fc5957-4b28-4245-a1ca-0c05574dd32b","updatedBy":"39fc5957-4b28-4245-a1ca-0c05574dd32b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/607bf63e-c89f-11eb-8348-eecc6a504bf0","type":"Microsoft.Authorization/roleAssignments","name":"607bf63e-c89f-11eb-8348-eecc6a504bf0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T14:35:18.7357331Z","updatedOn":"2021-06-15T14:35:18.7357331Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1151242-c950-413d-a273-4109579eac8a","type":"Microsoft.Authorization/roleAssignments","name":"b1151242-c950-413d-a273-4109579eac8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T14:35:18.7937546Z","updatedOn":"2021-06-15T14:35:18.7937546Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dc21aa69-a99c-435e-a256-64885b24ec34","type":"Microsoft.Authorization/roleAssignments","name":"dc21aa69-a99c-435e-a256-64885b24ec34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T15:23:52.9337722Z","updatedOn":"2021-06-15T15:23:52.9337722Z","createdBy":"1faabf99-27a1-4d2e-9e28-295923ee7a14","updatedBy":"1faabf99-27a1-4d2e-9e28-295923ee7a14","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1f9ad80-cded-11eb-81da-86d728f15930","type":"Microsoft.Authorization/roleAssignments","name":"b1f9ad80-cded-11eb-81da-86d728f15930"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-24T01:15:20.6480687Z","updatedOn":"2021-06-24T01:15:20.6480687Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3fe463a-d489-11eb-bcf6-88e9fe77d9d9","type":"Microsoft.Authorization/roleAssignments","name":"a3fe463a-d489-11eb-bcf6-88e9fe77d9d9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T00:02:18.3011415Z","updatedOn":"2021-06-29T00:02:18.3011415Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ba1c6ba-8f43-4749-9af5-b852adc24ec4","type":"Microsoft.Authorization/roleAssignments","name":"6ba1c6ba-8f43-4749-9af5-b852adc24ec4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T00:02:18.3104039Z","updatedOn":"2021-06-29T00:02:18.3104039Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1b67008-79aa-4059-a618-9f31a59e17ad","type":"Microsoft.Authorization/roleAssignments","name":"f1b67008-79aa-4059-a618-9f31a59e17ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T03:26:28.3273724Z","updatedOn":"2021-06-29T03:26:28.3273724Z","createdBy":"5dc8b685-8bb3-4140-b266-34da5be22de8","updatedBy":"5dc8b685-8bb3-4140-b266-34da5be22de8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cacd20e2-d889-11eb-8faf-365b90995dcc","type":"Microsoft.Authorization/roleAssignments","name":"cacd20e2-d889-11eb-8faf-365b90995dcc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T16:47:51.6512150Z","updatedOn":"2021-07-02T16:47:51.6512150Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ce776fa-db55-11eb-9c3e-0ee0ced9a7ad","type":"Microsoft.Authorization/roleAssignments","name":"3ce776fa-db55-11eb-9c3e-0ee0ced9a7ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T18:02:58.7913777Z","updatedOn":"2021-07-02T18:02:58.7913777Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb92467e-db5f-11eb-93bb-52bfc6c4d939","type":"Microsoft.Authorization/roleAssignments","name":"bb92467e-db5f-11eb-93bb-52bfc6c4d939"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T18:34:50.6034803Z","updatedOn":"2021-07-02T18:34:50.6034803Z","createdBy":"88f18750-8181-4579-8eff-eb44f510655c","updatedBy":"88f18750-8181-4579-8eff-eb44f510655c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e537d7a-5a2e-419c-8c51-0f55adab0793","type":"Microsoft.Authorization/roleAssignments","name":"4e537d7a-5a2e-419c-8c51-0f55adab0793"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-12T18:22:41.0622548Z","updatedOn":"2021-07-12T18:22:41.0622548Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a840989-f344-4bca-97c4-0f91fa1537c6","type":"Microsoft.Authorization/roleAssignments","name":"0a840989-f344-4bca-97c4-0f91fa1537c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-14T19:03:30.7799600Z","updatedOn":"2021-07-14T19:03:30.7799600Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d4385bd-e4d6-11eb-9e75-0a4737195831","type":"Microsoft.Authorization/roleAssignments","name":"2d4385bd-e4d6-11eb-9e75-0a4737195831"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-26T03:44:43.4505353Z","updatedOn":"2021-07-26T03:44:43.4505353Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79b52c96-edc4-11eb-8bd7-1e3bd0e19ace","type":"Microsoft.Authorization/roleAssignments","name":"79b52c96-edc4-11eb-8bd7-1e3bd0e19ace"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-28T21:04:39.7105526Z","updatedOn":"2021-07-28T21:04:39.7105526Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b9c8936-efe7-11eb-9484-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6b9c8936-efe7-11eb-9484-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-04T02:14:38.2049441Z","updatedOn":"2021-08-04T02:14:38.2049441Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b8013ec0-f4c9-11eb-999a-000d3a4fc0a9","type":"Microsoft.Authorization/roleAssignments","name":"b8013ec0-f4c9-11eb-999a-000d3a4fc0a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e3c35f4c-e0ca-4b9e-a01e-5ebdd17e2ee7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-04T18:45:22.7030533Z","updatedOn":"2021-08-04T18:45:22.7030533Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b007f9b6-e259-4c24-b8f1-4b74e434b776","type":"Microsoft.Authorization/roleAssignments","name":"b007f9b6-e259-4c24-b8f1-4b74e434b776"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-10T18:57:36.3877809Z","updatedOn":"2021-08-10T18:57:36.3877809Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d31d5edd-fa0c-11eb-a4e8-00155d4b0124","type":"Microsoft.Authorization/roleAssignments","name":"d31d5edd-fa0c-11eb-a4e8-00155d4b0124"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-11T13:17:28.5790828Z","updatedOn":"2021-08-11T13:17:28.5790828Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79c9ac4e-faa6-11eb-9265-9e748a6ca3f5","type":"Microsoft.Authorization/roleAssignments","name":"79c9ac4e-faa6-11eb-9265-9e748a6ca3f5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T20:40:36.9427810Z","updatedOn":"2021-08-24T20:40:36.9427810Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89077b4a-051b-11ec-b690-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"89077b4a-051b-11ec-b690-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-25T04:55:32.8103400Z","updatedOn":"2021-08-25T04:55:32.8103400Z","createdBy":"d8f2c3f8-41bf-41ae-aedb-23c9387322a8","updatedBy":"d8f2c3f8-41bf-41ae-aedb-23c9387322a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad278da4-0560-11ec-bfcc-00249b623abd","type":"Microsoft.Authorization/roleAssignments","name":"ad278da4-0560-11ec-bfcc-00249b623abd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-31T23:45:51.8536519Z","updatedOn":"2021-08-31T23:45:51.8536519Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92d8ca73-0ab5-11ec-9a80-00224809727f","type":"Microsoft.Authorization/roleAssignments","name":"92d8ca73-0ab5-11ec-9a80-00224809727f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-13T19:32:31.3713301Z","updatedOn":"2021-09-13T19:32:31.3713301Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/55fb0a56-14c9-11ec-ba1a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"55fb0a56-14c9-11ec-ba1a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-17T20:45:08.1118919Z","updatedOn":"2021-09-17T20:45:08.1118919Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/246a4240-17f8-11ec-a87c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"246a4240-17f8-11ec-a87c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T13:55:46.1211332Z","updatedOn":"2021-09-20T13:55:46.1211332Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/738cb0ee-1a1a-11ec-bce5-7a98cea1d963","type":"Microsoft.Authorization/roleAssignments","name":"738cb0ee-1a1a-11ec-bce5-7a98cea1d963"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T16:02:49.0433199Z","updatedOn":"2021-09-20T16:02:49.0433199Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/332824b6-1a2c-11ec-94e6-dadb5e134e96","type":"Microsoft.Authorization/roleAssignments","name":"332824b6-1a2c-11ec-94e6-dadb5e134e96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T18:45:44.1610490Z","updatedOn":"2021-09-20T18:45:44.1610490Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5aacbbc-1a42-11ec-82e7-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f5aacbbc-1a42-11ec-82e7-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-23T14:26:16.9983531Z","updatedOn":"2021-09-23T14:26:16.9983531Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35e02c16-1c7a-11ec-aba5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"35e02c16-1c7a-11ec-aba5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-29T01:26:50.3419658Z","updatedOn":"2021-09-29T01:26:50.3419658Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47eee8e3-89cd-4112-86a8-19f848334dd1","type":"Microsoft.Authorization/roleAssignments","name":"47eee8e3-89cd-4112-86a8-19f848334dd1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-04T20:39:52.4258668Z","updatedOn":"2021-10-04T20:39:52.4258668Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/395b589c-2553-11ec-8d77-000d3af95835","type":"Microsoft.Authorization/roleAssignments","name":"395b589c-2553-11ec-8d77-000d3af95835"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-07T22:03:00.0914961Z","updatedOn":"2021-10-07T22:03:00.0914961Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/554cbdbb-27ba-11ec-9441-ba8d312253c4","type":"Microsoft.Authorization/roleAssignments","name":"554cbdbb-27ba-11ec-9441-ba8d312253c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-07T22:03:56.3285135Z","updatedOn":"2021-10-07T22:03:56.3285135Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/76aa862c-27ba-11ec-a4ef-ba8d312253c4","type":"Microsoft.Authorization/roleAssignments","name":"76aa862c-27ba-11ec-a4ef-ba8d312253c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T18:53:10.3503826Z","updatedOn":"2021-10-08T18:53:10.3503826Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d9510e6f-d37b-4ce8-8a3b-78e5447b11c4","type":"Microsoft.Authorization/roleAssignments","name":"d9510e6f-d37b-4ce8-8a3b-78e5447b11c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T18:59:59.4287762Z","updatedOn":"2021-10-08T18:59:59.4287762Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d1a6d17-6c0a-4105-b86a-dcc55fe735e7","type":"Microsoft.Authorization/roleAssignments","name":"3d1a6d17-6c0a-4105-b86a-dcc55fe735e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-11T22:29:20.4165411Z","updatedOn":"2021-10-11T22:29:20.4165411Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5b65050-4b50-4b02-bea3-5986eccdd944","type":"Microsoft.Authorization/roleAssignments","name":"b5b65050-4b50-4b02-bea3-5986eccdd944"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-12T21:09:25.3258237Z","updatedOn":"2021-10-12T21:09:25.3258237Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/869d24c2-b6b1-4a26-9b9c-c50ecb64bc31","type":"Microsoft.Authorization/roleAssignments","name":"869d24c2-b6b1-4a26-9b9c-c50ecb64bc31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-13T08:19:03.1448099Z","updatedOn":"2021-10-13T08:19:03.1448099Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8869be9-f94e-47ae-90cb-c4d9bcb5b629","type":"Microsoft.Authorization/roleAssignments","name":"f8869be9-f94e-47ae-90cb-c4d9bcb5b629"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T04:53:25.9502873Z","updatedOn":"2021-10-14T04:53:36.3280652Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f622c27f-a03d-4fb8-b17d-7281dc0a984f","type":"Microsoft.Authorization/roleAssignments","name":"f622c27f-a03d-4fb8-b17d-7281dc0a984f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:26:21.6452814Z","updatedOn":"2021-10-14T05:26:21.6452814Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/439e7a28-2caf-11ec-ae23-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"439e7a28-2caf-11ec-ae23-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:54.7980840Z","updatedOn":"2021-10-14T05:37:54.7980840Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e049894b-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e049894b-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:56.1220463Z","updatedOn":"2021-10-14T05:37:56.1220463Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e1920687-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e1920687-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:58.2164501Z","updatedOn":"2021-10-14T05:37:58.2164501Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2809f7d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e2809f7d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:00.1774570Z","updatedOn":"2021-10-14T05:38:00.1774570Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3b78568-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e3b78568-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:01.6914375Z","updatedOn":"2021-10-14T05:38:01.6914375Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4e3f0fc-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e4e3f0fc-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:03.1856045Z","updatedOn":"2021-10-14T05:38:03.1856045Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e5c7c168-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e5c7c168-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:04.4121266Z","updatedOn":"2021-10-14T05:38:04.4121266Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e6847f02-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e6847f02-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:05.9623251Z","updatedOn":"2021-10-14T05:38:05.9623251Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7681b77-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e7681b77-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:07.5974823Z","updatedOn":"2021-10-14T05:38:07.5974823Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e82df158-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e82df158-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:09.3591403Z","updatedOn":"2021-10-14T05:38:09.3591403Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e94e3dd9-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e94e3dd9-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:11.1652349Z","updatedOn":"2021-10-14T05:38:11.1652349Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea5dbe0d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"ea5dbe0d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:12.6474393Z","updatedOn":"2021-10-14T05:38:12.6474393Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb6e896d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"eb6e896d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:15.1702403Z","updatedOn":"2021-10-14T05:38:15.1702403Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eceee9a0-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"eceee9a0-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T06:22:44.8991960Z","updatedOn":"2021-10-14T06:22:44.8991960Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2447d2a2-2cb7-11ec-91be-00224878e942","type":"Microsoft.Authorization/roleAssignments","name":"2447d2a2-2cb7-11ec-91be-00224878e942"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T06:22:46.4374928Z","updatedOn":"2021-10-14T06:22:46.4374928Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/251fc151-2cb7-11ec-91be-00224878e942","type":"Microsoft.Authorization/roleAssignments","name":"251fc151-2cb7-11ec-91be-00224878e942"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:33:15.8218562Z","updatedOn":"2021-10-14T07:33:15.8218562Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe04afe4-2cc0-11ec-81ff-0022487b1e92","type":"Microsoft.Authorization/roleAssignments","name":"fe04afe4-2cc0-11ec-81ff-0022487b1e92"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:18.3020716Z","updatedOn":"2021-10-14T07:59:18.3020716Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a1518374-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a1518374-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:20.8876342Z","updatedOn":"2021-10-14T07:59:20.8876342Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a311df17-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a311df17-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:22.4477860Z","updatedOn":"2021-10-14T07:59:22.4477860Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3c5b71e-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a3c5b71e-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:23.1051657Z","updatedOn":"2021-10-14T08:07:23.1051657Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c227b3cc-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c227b3cc-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:23.5151178Z","updatedOn":"2021-10-14T08:07:23.5151178Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c29ac901-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c29ac901-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:25.7287942Z","updatedOn":"2021-10-14T08:07:25.7287942Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c40b5411-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c40b5411-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:27.2660976Z","updatedOn":"2021-10-14T08:07:27.2660976Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4cb6a30-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c4cb6a30-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:08:16.5190337Z","updatedOn":"2021-10-14T08:08:16.5190337Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e226a828-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"e226a828-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:08:17.7439429Z","updatedOn":"2021-10-14T08:08:17.7439429Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2e43f64-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"e2e43f64-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T09:12:04.1832243Z","updatedOn":"2021-10-14T09:12:04.1832243Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5c9e442c-9d64-4022-9246-0c1c21af04be","type":"Microsoft.Authorization/roleAssignments","name":"5c9e442c-9d64-4022-9246-0c1c21af04be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T17:07:28.8635845Z","updatedOn":"2021-10-14T17:07:28.8635845Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed48d615-e7d8-4aef-90c7-332d7329e41c","type":"Microsoft.Authorization/roleAssignments","name":"ed48d615-e7d8-4aef-90c7-332d7329e41c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T18:16:37.9837987Z","updatedOn":"2021-10-14T18:16:37.9837987Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/debb0903-2d1a-11ec-a603-000d3a06aaec","type":"Microsoft.Authorization/roleAssignments","name":"debb0903-2d1a-11ec-a603-000d3a06aaec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T18:39:15.5366398Z","updatedOn":"2021-10-14T18:39:15.5366398Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07caa301-2d1e-11ec-a2ea-0022487748c3","type":"Microsoft.Authorization/roleAssignments","name":"07caa301-2d1e-11ec-a2ea-0022487748c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-15T17:37:53.7293023Z","updatedOn":"2021-10-15T17:37:53.7293023Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fbd09f2-2dde-11ec-b3e4-000d3a064a8a","type":"Microsoft.Authorization/roleAssignments","name":"9fbd09f2-2dde-11ec-b3e4-000d3a064a8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-18T06:22:38.4617338Z","updatedOn":"2021-10-18T06:22:38.4617338Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70844448-8be3-4c6f-9edf-443944f85a5a","type":"Microsoft.Authorization/roleAssignments","name":"70844448-8be3-4c6f-9edf-443944f85a5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-19T11:29:40.0474212Z","updatedOn":"2021-10-19T11:29:40.0474212Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d86e727f-30cf-11ec-bc8b-000d3ac2ec2b","type":"Microsoft.Authorization/roleAssignments","name":"d86e727f-30cf-11ec-bc8b-000d3ac2ec2b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-20T20:57:56.8996523Z","updatedOn":"2021-10-20T20:57:56.8996523Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66303328-31e8-11ec-99f4-000d3ac5c858","type":"Microsoft.Authorization/roleAssignments","name":"66303328-31e8-11ec-99f4-000d3ac5c858"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-21T15:12:00.0677049Z","updatedOn":"2021-10-21T15:12:00.0677049Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b630a77a-9e75-417f-b251-1584163d8926","type":"Microsoft.Authorization/roleAssignments","name":"b630a77a-9e75-417f-b251-1584163d8926"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-25T21:32:26.0121360Z","updatedOn":"2021-10-25T21:32:26.0121360Z","createdBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","updatedBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b15fba8-35db-11ec-b404-8c8590c603ee","type":"Microsoft.Authorization/roleAssignments","name":"0b15fba8-35db-11ec-b404-8c8590c603ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T07:30:52.4116907Z","updatedOn":"2021-10-26T07:30:52.4116907Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e78ac58b-8cfe-4ff6-9ac6-41453615c7e8","type":"Microsoft.Authorization/roleAssignments","name":"e78ac58b-8cfe-4ff6-9ac6-41453615c7e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T13:47:01.3444676Z","updatedOn":"2021-10-26T13:47:01.3444676Z","createdBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","updatedBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4933f1cd-0863-4429-a5be-3a81b2f80105","type":"Microsoft.Authorization/roleAssignments","name":"4933f1cd-0863-4429-a5be-3a81b2f80105"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T20:43:39.1375235Z","updatedOn":"2021-10-26T20:43:39.1375235Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad8f56c5-19b6-4e9f-b20f-8e3789a93873","type":"Microsoft.Authorization/roleAssignments","name":"ad8f56c5-19b6-4e9f-b20f-8e3789a93873"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-27T01:02:05.1338691Z","updatedOn":"2021-10-27T01:02:05.1338691Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a83de9c2-2bd5-4ba1-bc50-08d475a290a0","type":"Microsoft.Authorization/roleAssignments","name":"a83de9c2-2bd5-4ba1-bc50-08d475a290a0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-28T00:14:34.9745357Z","updatedOn":"2021-10-28T00:14:34.9745357Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3366cd2-4d12-4dbb-b05d-5e914628e986","type":"Microsoft.Authorization/roleAssignments","name":"e3366cd2-4d12-4dbb-b05d-5e914628e986"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-02T23:39:52.9481031Z","updatedOn":"2021-11-02T23:39:52.9481031Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0e37c03-a8a7-4765-af41-9a8584ad6413","type":"Microsoft.Authorization/roleAssignments","name":"b0e37c03-a8a7-4765-af41-9a8584ad6413"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c7393b34-138c-406f-901b-d8cf2b17e6ae","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T15:46:17.8935538Z","updatedOn":"2021-11-03T15:46:17.8935538Z","createdBy":"","updatedBy":"","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5b0e8d6-e30f-42a5-918c-01299416da2c","type":"Microsoft.Authorization/roleAssignments","name":"b5b0e8d6-e30f-42a5-918c-01299416da2c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T21:43:39.4750265Z","updatedOn":"2021-11-03T21:43:39.4750265Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/683b4375-f318-428e-a885-232a29ec8559","type":"Microsoft.Authorization/roleAssignments","name":"683b4375-f318-428e-a885-232a29ec8559"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T21:56:29.9810805Z","updatedOn":"2021-11-03T21:56:29.9810805Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e560c31c-8c6e-4bf0-9828-b2db658455b7","type":"Microsoft.Authorization/roleAssignments","name":"e560c31c-8c6e-4bf0-9828-b2db658455b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T06:06:21.8922666Z","updatedOn":"2021-11-04T06:06:21.8922666Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e1dcc78b-03c3-4db3-95a8-643dbcbbf2a3","type":"Microsoft.Authorization/roleAssignments","name":"e1dcc78b-03c3-4db3-95a8-643dbcbbf2a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T17:22:28.0293110Z","updatedOn":"2021-11-04T17:22:28.0293110Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84a6167f-c7d5-4404-b786-85fe4327c0ba","type":"Microsoft.Authorization/roleAssignments","name":"84a6167f-c7d5-4404-b786-85fe4327c0ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T17:24:51.0627597Z","updatedOn":"2021-11-04T17:24:51.0627597Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ff23217-f8a8-4e77-baee-41850cfb5554","type":"Microsoft.Authorization/roleAssignments","name":"8ff23217-f8a8-4e77-baee-41850cfb5554"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T05:21:11.0446928Z","updatedOn":"2021-11-16T05:21:11.0446928Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d01bef88-e1fa-4fc2-bd98-6845063b53b9","type":"Microsoft.Authorization/roleAssignments","name":"d01bef88-e1fa-4fc2-bd98-6845063b53b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T05:22:06.5362889Z","updatedOn":"2021-11-16T05:22:06.5362889Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/784d9b03-5635-4c89-ae5b-5c11ceff8a4c","type":"Microsoft.Authorization/roleAssignments","name":"784d9b03-5635-4c89-ae5b-5c11ceff8a4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T21:47:20.3762106Z","updatedOn":"2021-11-16T21:47:20.3762106Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/19b8a839-de9e-4712-a227-686679e98414","type":"Microsoft.Authorization/roleAssignments","name":"19b8a839-de9e-4712-a227-686679e98414"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T05:28:26.3873952Z","updatedOn":"2021-11-17T05:28:26.3873952Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a6cb292-435b-45d4-9f44-2dedb6f80804","type":"Microsoft.Authorization/roleAssignments","name":"4a6cb292-435b-45d4-9f44-2dedb6f80804"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T08:37:53.6375476Z","updatedOn":"2021-11-17T08:37:53.6375476Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7314a76-4781-11ec-9554-2eaf851e2751","type":"Microsoft.Authorization/roleAssignments","name":"a7314a76-4781-11ec-9554-2eaf851e2751"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T20:29:38.7986222Z","updatedOn":"2021-11-17T20:29:38.7986222Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41224d04-5912-49e9-98f2-df2d0c5768ed","type":"Microsoft.Authorization/roleAssignments","name":"41224d04-5912-49e9-98f2-df2d0c5768ed"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-23T02:37:39.0525328Z","updatedOn":"2021-11-23T02:37:39.0525328Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2917b10b-1776-4726-9e2a-1406d35584aa","type":"Microsoft.Authorization/roleAssignments","name":"2917b10b-1776-4726-9e2a-1406d35584aa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-24T04:19:48.8430130Z","updatedOn":"2021-11-24T04:19:48.8430130Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4738453f-e889-4428-817e-a18655a6df71","type":"Microsoft.Authorization/roleAssignments","name":"4738453f-e889-4428-817e-a18655a6df71"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-29T22:16:27.4091202Z","updatedOn":"2021-11-29T22:16:27.4091202Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dfaf3275-7f8c-449f-875f-d74ca2998764","type":"Microsoft.Authorization/roleAssignments","name":"dfaf3275-7f8c-449f-875f-d74ca2998764"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T06:59:34.7676928Z","updatedOn":"2021-11-30T06:59:34.7676928Z","createdBy":"471feb6d-5a83-439e-af7b-311f4eee2d0c","updatedBy":"471feb6d-5a83-439e-af7b-311f4eee2d0c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5848b58-7658-45ae-b979-fb230968ddf7","type":"Microsoft.Authorization/roleAssignments","name":"d5848b58-7658-45ae-b979-fb230968ddf7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T20:03:43.2359682Z","updatedOn":"2021-11-30T20:03:43.2359682Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3be3018e-84c0-48a4-bb36-fa997df4a911","type":"Microsoft.Authorization/roleAssignments","name":"3be3018e-84c0-48a4-bb36-fa997df4a911"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T22:23:07.4635927Z","updatedOn":"2021-11-30T22:23:07.4635927Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc52b5ce-1a69-4afd-aaab-745522d55219","type":"Microsoft.Authorization/roleAssignments","name":"fc52b5ce-1a69-4afd-aaab-745522d55219"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T02:05:06.3947111Z","updatedOn":"2021-12-01T02:05:06.3947111Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bfd977a2-74fb-4e8f-88a6-72b675ad0813","type":"Microsoft.Authorization/roleAssignments","name":"bfd977a2-74fb-4e8f-88a6-72b675ad0813"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T23:14:48.6056041Z","updatedOn":"2021-12-01T23:14:48.6056041Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2c2675a2-a48c-492f-a4d5-835ffdf8e57e","type":"Microsoft.Authorization/roleAssignments","name":"2c2675a2-a48c-492f-a4d5-835ffdf8e57e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T23:44:16.3921051Z","updatedOn":"2021-12-01T23:44:16.3921051Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc791163-7d7a-4988-96f8-969053cb4d75","type":"Microsoft.Authorization/roleAssignments","name":"bc791163-7d7a-4988-96f8-969053cb4d75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T07:40:53.7263371Z","updatedOn":"2021-12-02T07:40:53.7263371Z","createdBy":"027bf6cf-7fd4-4a57-80d7-4e52bd1fea5b","updatedBy":"027bf6cf-7fd4-4a57-80d7-4e52bd1fea5b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c592d108-71a6-4fbd-89f7-06c1656d0c93","type":"Microsoft.Authorization/roleAssignments","name":"c592d108-71a6-4fbd-89f7-06c1656d0c93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:36.8568746Z","updatedOn":"2021-12-02T08:41:36.8568746Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a8b008b0-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a8b008b0-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:38.4974834Z","updatedOn":"2021-12-02T08:41:38.4974834Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9ad9deb-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a9ad9deb-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:38.6316008Z","updatedOn":"2021-12-02T08:41:38.6316008Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9aa81cd-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a9aa81cd-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:38.6311993Z","updatedOn":"2021-12-02T08:41:38.6311993Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9c0a1a6-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a9c0a1a6-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T21:35:31.3727027Z","updatedOn":"2021-12-02T21:35:31.3727027Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/663204fa-95cb-45a0-938f-d817824509dd","type":"Microsoft.Authorization/roleAssignments","name":"663204fa-95cb-45a0-938f-d817824509dd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T22:09:46.1565055Z","updatedOn":"2021-12-02T22:09:46.1565055Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e97a88c4-e035-453b-b767-a3dbfadfd28d","type":"Microsoft.Authorization/roleAssignments","name":"e97a88c4-e035-453b-b767-a3dbfadfd28d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T23:10:20.2170014Z","updatedOn":"2021-12-02T23:10:20.2170014Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/afd2116e-f2ce-4bc2-8924-fb6f0c620d64","type":"Microsoft.Authorization/roleAssignments","name":"afd2116e-f2ce-4bc2-8924-fb6f0c620d64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-03T00:07:35.7286641Z","updatedOn":"2021-12-03T00:07:35.7286641Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/56d1c441-73b9-4b86-acc9-260016c81330","type":"Microsoft.Authorization/roleAssignments","name":"56d1c441-73b9-4b86-acc9-260016c81330"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-03T18:42:59.5078987Z","updatedOn":"2021-12-03T18:42:59.5078987Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b083534f-ae88-4db8-b65f-150284339772","type":"Microsoft.Authorization/roleAssignments","name":"b083534f-ae88-4db8-b65f-150284339772"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-03T21:00:00.5789423Z","updatedOn":"2021-12-03T21:00:00.5789423Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8684384c-7276-4e65-b708-6766a7c3a876","type":"Microsoft.Authorization/roleAssignments","name":"8684384c-7276-4e65-b708-6766a7c3a876"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-04T00:50:10.8909441Z","updatedOn":"2021-12-04T00:50:10.8909441Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cb7855e-82da-4910-b4ce-5f38896c067a","type":"Microsoft.Authorization/roleAssignments","name":"3cb7855e-82da-4910-b4ce-5f38896c067a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-07T12:35:57.6917673Z","updatedOn":"2021-12-07T12:35:57.6917673Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39e64286-575a-11ec-95aa-002248232e56","type":"Microsoft.Authorization/roleAssignments","name":"39e64286-575a-11ec-95aa-002248232e56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-07T23:18:12.3548251Z","updatedOn":"2021-12-07T23:18:12.3548251Z","createdBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","updatedBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f2265a95-57b3-11ec-a8e6-de1bbdf97372","type":"Microsoft.Authorization/roleAssignments","name":"f2265a95-57b3-11ec-a8e6-de1bbdf97372"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-08T03:01:28.5641674Z","updatedOn":"2021-12-08T03:01:28.5641674Z","createdBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","updatedBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2232ec95-57d3-11ec-bbe2-de1bbdf97372","type":"Microsoft.Authorization/roleAssignments","name":"2232ec95-57d3-11ec-bbe2-de1bbdf97372"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-08T03:07:36.8342803Z","updatedOn":"2021-12-08T03:07:36.8342803Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f1920cc-5cca-44c7-8175-d46948a9283f","type":"Microsoft.Authorization/roleAssignments","name":"9f1920cc-5cca-44c7-8175-d46948a9283f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-08T13:07:30.9635867Z","updatedOn":"2021-12-08T13:07:30.9635867Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc6359bd-5827-11ec-a516-000d3afc9734","type":"Microsoft.Authorization/roleAssignments","name":"cc6359bd-5827-11ec-a516-000d3afc9734"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-09T17:37:01.4296706Z","updatedOn":"2021-12-09T17:37:01.4296706Z","createdBy":"ae195f21-9b44-473d-9920-601e7899b56d","updatedBy":"ae195f21-9b44-473d-9920-601e7899b56d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9be22fd0-5916-11ec-b5a3-469e91f29611","type":"Microsoft.Authorization/roleAssignments","name":"9be22fd0-5916-11ec-b5a3-469e91f29611"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-10T14:31:24.3746709Z","updatedOn":"2021-12-10T14:31:24.3746709Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d9b6ef44-59c5-11ec-800e-0022487c3cbe","type":"Microsoft.Authorization/roleAssignments","name":"d9b6ef44-59c5-11ec-800e-0022487c3cbe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-13T07:46:54.6104588Z","updatedOn":"2021-12-13T07:46:54.6104588Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c65fe6b5-5be8-11ec-b892-000d3a518d38","type":"Microsoft.Authorization/roleAssignments","name":"c65fe6b5-5be8-11ec-b892-000d3a518d38"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-17T03:03:12.7081063Z","updatedOn":"2021-12-17T03:03:12.7081063Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/deb2cb98-5ee5-11ec-bd7f-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"deb2cb98-5ee5-11ec-bd7f-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-18T06:04:20.9532091Z","updatedOn":"2021-12-18T06:04:20.9532091Z","createdBy":"19263705-0667-497e-85e7-a930fa3441ec","updatedBy":"19263705-0667-497e-85e7-a930fa3441ec","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6eb35762-bc37-4c24-aec0-389e7cb97f95","type":"Microsoft.Authorization/roleAssignments","name":"6eb35762-bc37-4c24-aec0-389e7cb97f95"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-22T09:15:23.9226458Z","updatedOn":"2021-12-22T09:15:23.9226458Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7a9e1ec4-8728-4723-9fca-709f8549e3ac","type":"Microsoft.Authorization/roleAssignments","name":"7a9e1ec4-8728-4723-9fca-709f8549e3ac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-22T19:37:32.9555793Z","updatedOn":"2021-12-22T19:37:32.9555793Z","createdBy":"121978e2-c5f7-437f-b950-07f832f9f06c","updatedBy":"121978e2-c5f7-437f-b950-07f832f9f06c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a77cfdf9-fd0d-43f5-ba0d-0d36c8c1818e","type":"Microsoft.Authorization/roleAssignments","name":"a77cfdf9-fd0d-43f5-ba0d-0d36c8c1818e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-28T17:11:37.6373944Z","updatedOn":"2022-09-28T17:11:37.6373944Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b564621-3f50-11ed-918f-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"9b564621-3f50-11ed-918f-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-28T17:11:52.2247561Z","updatedOn":"2022-09-28T17:11:52.2247561Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3d8aeee-3f50-11ed-918f-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"a3d8aeee-3f50-11ed-918f-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-28T18:45:35.3728959Z","updatedOn":"2022-09-28T18:45:35.3728959Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5bb18d5f-3c20-4899-a01f-58313b28c345","type":"Microsoft.Authorization/roleAssignments","name":"5bb18d5f-3c20-4899-a01f-58313b28c345"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-30T18:34:26.1480517Z","updatedOn":"2022-09-30T18:34:26.1480517Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/828f43f9-40ee-11ed-9683-0022482b84fb","type":"Microsoft.Authorization/roleAssignments","name":"828f43f9-40ee-11ed-9683-0022482b84fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-30T18:34:28.0235766Z","updatedOn":"2022-09-30T18:34:28.0235766Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83a3304a-40ee-11ed-9683-0022482b84fb","type":"Microsoft.Authorization/roleAssignments","name":"83a3304a-40ee-11ed-9683-0022482b84fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T14:35:19.0321994Z","updatedOn":"2022-10-03T14:35:19.0321994Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99965ae6-4328-11ed-939f-aae2aa7b83bb","type":"Microsoft.Authorization/roleAssignments","name":"99965ae6-4328-11ed-939f-aae2aa7b83bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T14:35:23.0970392Z","updatedOn":"2022-10-03T14:35:23.0970392Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9c1721f9-4328-11ed-939f-aae2aa7b83bb","type":"Microsoft.Authorization/roleAssignments","name":"9c1721f9-4328-11ed-939f-aae2aa7b83bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T18:39:25.8455066Z","updatedOn":"2022-10-03T18:39:25.8455066Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":"adding + my aksdev SPs per https://dev.azure.com/msazure/CloudNativeCompute/_wiki/wikis/CloudNativeCompute.wiki/54089/Standalone-Environment-Usage?anchor=authentication-failed-issues"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b4fc89b2-a0bc-4661-a4f4-96170e3da3c3","type":"Microsoft.Authorization/roleAssignments","name":"b4fc89b2-a0bc-4661-a4f4-96170e3da3c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T21:14:21.6709207Z","updatedOn":"2022-10-03T21:14:21.6709207Z","createdBy":"2182129f-e575-4986-a7fb-2be7772ba46f","updatedBy":"2182129f-e575-4986-a7fb-2be7772ba46f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/58ef0b60-4360-11ed-84ae-4ef510510e8a","type":"Microsoft.Authorization/roleAssignments","name":"58ef0b60-4360-11ed-84ae-4ef510510e8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T21:14:25.9942421Z","updatedOn":"2022-10-03T21:14:25.9942421Z","createdBy":"2182129f-e575-4986-a7fb-2be7772ba46f","updatedBy":"2182129f-e575-4986-a7fb-2be7772ba46f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5b271148-4360-11ed-84ae-4ef510510e8a","type":"Microsoft.Authorization/roleAssignments","name":"5b271148-4360-11ed-84ae-4ef510510e8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T08:46:58.1120536Z","updatedOn":"2022-10-04T08:46:58.1120536Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46d7c91e-4182-4715-9d5c-c143514d0e96","type":"Microsoft.Authorization/roleAssignments","name":"46d7c91e-4182-4715-9d5c-c143514d0e96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T08:46:58.7908585Z","updatedOn":"2022-10-04T08:46:58.7908585Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0215f1ea-81dc-42cd-b2b0-62ed51ec1e8f","type":"Microsoft.Authorization/roleAssignments","name":"0215f1ea-81dc-42cd-b2b0-62ed51ec1e8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T15:17:47.0575990Z","updatedOn":"2022-10-04T15:17:47.0575990Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09dff59a-a350-4eb7-b515-b439773bf953","type":"Microsoft.Authorization/roleAssignments","name":"09dff59a-a350-4eb7-b515-b439773bf953"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T20:25:24.7922965Z","updatedOn":"2022-10-04T20:25:24.7922965Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac245566-4422-11ed-b4e4-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"ac245566-4422-11ed-b4e4-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T20:25:29.7192947Z","updatedOn":"2022-10-04T20:25:29.7192947Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/af78cdbe-4422-11ed-b4e4-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"af78cdbe-4422-11ed-b4e4-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-05T17:17:50.2296097Z","updatedOn":"2022-10-05T17:17:50.2296097Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18d61426-19b2-45ab-a04c-35bf0954b5f2","type":"Microsoft.Authorization/roleAssignments","name":"18d61426-19b2-45ab-a04c-35bf0954b5f2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T21:18:34.5111716Z","updatedOn":"2022-10-06T21:18:34.5111716Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/90e84a6f-382e-4cd0-8b7c-249f30414d26","type":"Microsoft.Authorization/roleAssignments","name":"90e84a6f-382e-4cd0-8b7c-249f30414d26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T21:19:26.0775289Z","updatedOn":"2022-10-06T21:19:26.0775289Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/245ffe6b-708b-41b4-b4a5-0328063f9511","type":"Microsoft.Authorization/roleAssignments","name":"245ffe6b-708b-41b4-b4a5-0328063f9511"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T22:01:04.9042316Z","updatedOn":"2022-10-06T22:01:04.9042316Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/809518d2-215b-449f-9909-1cf5275f82ff","type":"Microsoft.Authorization/roleAssignments","name":"809518d2-215b-449f-9909-1cf5275f82ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T22:01:18.8874783Z","updatedOn":"2022-10-06T22:01:18.8874783Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/50ca23bf-0051-4116-a073-86a9415cc7e4","type":"Microsoft.Authorization/roleAssignments","name":"50ca23bf-0051-4116-a073-86a9415cc7e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T00:36:14.3318961Z","updatedOn":"2022-10-07T00:36:14.3318961Z","createdBy":"b3ae1fad-98a9-46c4-bd0b-193e8efd9450","updatedBy":"b3ae1fad-98a9-46c4-bd0b-193e8efd9450","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ba8ceaf-45d8-11ed-bb9e-0eabbd04010c","type":"Microsoft.Authorization/roleAssignments","name":"0ba8ceaf-45d8-11ed-bb9e-0eabbd04010c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:18.2176259Z","updatedOn":"2022-10-07T16:36:18.2176259Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0eafb5be-ea9a-495c-82c9-8337449b1150","type":"Microsoft.Authorization/roleAssignments","name":"0eafb5be-ea9a-495c-82c9-8337449b1150"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:22.7662640Z","updatedOn":"2022-10-07T16:36:22.7662640Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7cb15a6c-7b73-430f-91aa-02113db930cb","type":"Microsoft.Authorization/roleAssignments","name":"7cb15a6c-7b73-430f-91aa-02113db930cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:29.4358024Z","updatedOn":"2022-10-07T16:36:29.4358024Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1b259a44-7824-434b-8f81-8df465b85fd5","type":"Microsoft.Authorization/roleAssignments","name":"1b259a44-7824-434b-8f81-8df465b85fd5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:33.7158336Z","updatedOn":"2022-10-07T16:36:33.7158336Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3156b3a1-bc03-4d84-b2df-09d0d0eab4b1","type":"Microsoft.Authorization/roleAssignments","name":"3156b3a1-bc03-4d84-b2df-09d0d0eab4b1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:35.7999116Z","updatedOn":"2022-10-07T16:36:35.7999116Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1d30073-ff57-48fa-96e7-dfc85b8c7975","type":"Microsoft.Authorization/roleAssignments","name":"b1d30073-ff57-48fa-96e7-dfc85b8c7975"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-09T05:08:21.9096837Z","updatedOn":"2022-10-09T05:08:21.9096837Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d747b25-fa91-4429-a72b-0a4e2079ed03","type":"Microsoft.Authorization/roleAssignments","name":"8d747b25-fa91-4429-a72b-0a4e2079ed03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-10T05:53:40.9849719Z","updatedOn":"2022-10-10T05:53:40.9849719Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3cfb29d-485f-11ed-b38e-562c47d8c70b","type":"Microsoft.Authorization/roleAssignments","name":"e3cfb29d-485f-11ed-b38e-562c47d8c70b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-10T05:53:46.7676576Z","updatedOn":"2022-10-10T05:53:46.7676576Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e6c4b18f-485f-11ed-b38e-562c47d8c70b","type":"Microsoft.Authorization/roleAssignments","name":"e6c4b18f-485f-11ed-b38e-562c47d8c70b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-10T19:26:54.0213364Z","updatedOn":"2022-10-10T19:26:54.0213364Z","createdBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","updatedBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ed9bd3d-48d1-11ed-8d0c-000d3af6a88e","type":"Microsoft.Authorization/roleAssignments","name":"7ed9bd3d-48d1-11ed-8d0c-000d3af6a88e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T05:01:21.4237199Z","updatedOn":"2022-10-11T05:01:21.4237199Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbc092b8-61c0-429f-bc40-457c06ef2ae3","type":"Microsoft.Authorization/roleAssignments","name":"bbc092b8-61c0-429f-bc40-457c06ef2ae3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T06:32:06.2810453Z","updatedOn":"2022-10-11T06:32:06.2810453Z","createdBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","updatedBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c482116-492e-11ed-b1e5-50814031cc1b","type":"Microsoft.Authorization/roleAssignments","name":"6c482116-492e-11ed-b1e5-50814031cc1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T06:32:11.8691902Z","updatedOn":"2022-10-11T06:32:11.8691902Z","createdBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","updatedBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6f333b0b-492e-11ed-b1e5-50814031cc1b","type":"Microsoft.Authorization/roleAssignments","name":"6f333b0b-492e-11ed-b1e5-50814031cc1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T10:41:27.4966216Z","updatedOn":"2022-10-11T10:41:27.4966216Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4aaba87d-be3b-49d5-90e6-02100140c50d","type":"Microsoft.Authorization/roleAssignments","name":"4aaba87d-be3b-49d5-90e6-02100140c50d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-12T06:14:22.3962768Z","updatedOn":"2022-10-12T06:14:22.3962768Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c7ad8940-3c2c-4a0a-b59a-5c6408cce033","type":"Microsoft.Authorization/roleAssignments","name":"c7ad8940-3c2c-4a0a-b59a-5c6408cce033"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-12T23:06:16.2844894Z","updatedOn":"2022-10-12T23:06:16.2844894Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8434c983-cdd3-40c4-9531-78b5f16fea23","type":"Microsoft.Authorization/roleAssignments","name":"8434c983-cdd3-40c4-9531-78b5f16fea23"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-12T23:06:16.4551494Z","updatedOn":"2022-10-12T23:06:16.4551494Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4281f456-78ed-4ef7-b058-d980c90bf6f9","type":"Microsoft.Authorization/roleAssignments","name":"4281f456-78ed-4ef7-b058-d980c90bf6f9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-18T14:04:58.5223716Z","updatedOn":"2022-10-18T14:04:58.5223716Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9158a450-cec7-48ba-8469-fc085e252e56","type":"Microsoft.Authorization/roleAssignments","name":"9158a450-cec7-48ba-8469-fc085e252e56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-19T17:08:57.8704270Z","updatedOn":"2022-10-19T17:08:57.8704270Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf874421-44f9-4a19-8abd-da0f4f04a24f","type":"Microsoft.Authorization/roleAssignments","name":"bf874421-44f9-4a19-8abd-da0f4f04a24f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-19T23:09:40.3682015Z","updatedOn":"2022-10-19T23:09:40.3682015Z","createdBy":"57440c04-5eed-4c74-92b6-44b016b882f2","updatedBy":"57440c04-5eed-4c74-92b6-44b016b882f2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2bafd93-beec-4d8b-b5f0-9893ef27a090","type":"Microsoft.Authorization/roleAssignments","name":"b2bafd93-beec-4d8b-b5f0-9893ef27a090"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-25T20:45:40.4378406Z","updatedOn":"2022-10-25T20:45:40.4378406Z","createdBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","updatedBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbadcf84-54a5-11ed-b2c3-0e0011011627","type":"Microsoft.Authorization/roleAssignments","name":"fbadcf84-54a5-11ed-b2c3-0e0011011627"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-25T20:45:44.2349413Z","updatedOn":"2022-10-25T20:45:44.2349413Z","createdBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","updatedBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fde7916d-54a5-11ed-b2c3-0e0011011627","type":"Microsoft.Authorization/roleAssignments","name":"fde7916d-54a5-11ed-b2c3-0e0011011627"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T16:44:45.2471286Z","updatedOn":"2022-10-26T16:44:45.2471286Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6649fcf-1731-4db5-8e3b-31af16600402","type":"Microsoft.Authorization/roleAssignments","name":"c6649fcf-1731-4db5-8e3b-31af16600402"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T21:24:42.6980121Z","updatedOn":"2022-10-26T21:24:42.6980121Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b1323cf-e4ec-4454-ac08-5f88d588f133","type":"Microsoft.Authorization/roleAssignments","name":"9b1323cf-e4ec-4454-ac08-5f88d588f133"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T23:12:13.5663015Z","updatedOn":"2022-10-26T23:12:13.5663015Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9db19562-5583-11ed-a49b-aa665a565a49","type":"Microsoft.Authorization/roleAssignments","name":"9db19562-5583-11ed-a49b-aa665a565a49"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-27T20:49:50.5273108Z","updatedOn":"2022-10-27T20:49:50.5273108Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1a0bbbc6-febb-4d40-9e39-5274a2edd538","type":"Microsoft.Authorization/roleAssignments","name":"1a0bbbc6-febb-4d40-9e39-5274a2edd538"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-31T21:38:36.6886945Z","updatedOn":"2022-10-31T21:38:36.6886945Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a85bdf2-6490-4989-9276-f2071fcf02c7","type":"Microsoft.Authorization/roleAssignments","name":"6a85bdf2-6490-4989-9276-f2071fcf02c7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-01T17:32:59.4211774Z","updatedOn":"2022-11-01T17:32:59.4211774Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a3d71f8-5a0b-11ed-ae92-000d3a6dafe7","type":"Microsoft.Authorization/roleAssignments","name":"3a3d71f8-5a0b-11ed-ae92-000d3a6dafe7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-03T20:33:30.2762577Z","updatedOn":"2022-11-03T20:33:30.2762577Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6983693-5bb6-11ed-ae23-72674b3691e8","type":"Microsoft.Authorization/roleAssignments","name":"c6983693-5bb6-11ed-ae23-72674b3691e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-03T20:33:33.9941086Z","updatedOn":"2022-11-03T20:33:33.9941086Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c90a1190-5bb6-11ed-ae23-72674b3691e8","type":"Microsoft.Authorization/roleAssignments","name":"c90a1190-5bb6-11ed-ae23-72674b3691e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-03T22:01:34.3526622Z","updatedOn":"2022-11-03T22:01:34.3526622Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/572d1281-1073-4df2-a41a-6ec6ab01ccf4","type":"Microsoft.Authorization/roleAssignments","name":"572d1281-1073-4df2-a41a-6ec6ab01ccf4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-04T17:44:58.1069368Z","updatedOn":"2022-11-04T17:44:58.1069368Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65ead23f-5c68-11ed-81d0-000d3ac6042c","type":"Microsoft.Authorization/roleAssignments","name":"65ead23f-5c68-11ed-81d0-000d3ac6042c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-04T17:44:58.3889675Z","updatedOn":"2022-11-04T17:44:58.3889675Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65f36b55-5c68-11ed-81d0-000d3ac6042c","type":"Microsoft.Authorization/roleAssignments","name":"65f36b55-5c68-11ed-81d0-000d3ac6042c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-07T21:00:30.9927458Z","updatedOn":"2022-11-07T21:00:30.9927458Z","createdBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","updatedBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3631fc51-5edf-11ed-b8d9-bee096dd1f56","type":"Microsoft.Authorization/roleAssignments","name":"3631fc51-5edf-11ed-b8d9-bee096dd1f56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-07T23:06:40.7350135Z","updatedOn":"2022-11-07T23:06:40.7350135Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82f4d8cb-f92b-4183-8a57-9a266f8ed475","type":"Microsoft.Authorization/roleAssignments","name":"82f4d8cb-f92b-4183-8a57-9a266f8ed475"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T00:45:45.2308519Z","updatedOn":"2022-11-08T00:45:45.2308519Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad83b644-5efe-11ed-9afa-76a84c3a8985","type":"Microsoft.Authorization/roleAssignments","name":"ad83b644-5efe-11ed-9afa-76a84c3a8985"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T00:45:54.5576407Z","updatedOn":"2022-11-08T00:45:54.5576407Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2f5ecd2-5efe-11ed-9afa-76a84c3a8985","type":"Microsoft.Authorization/roleAssignments","name":"b2f5ecd2-5efe-11ed-9afa-76a84c3a8985"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T17:38:14.0062888Z","updatedOn":"2022-11-08T17:38:14.0062888Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5a5cfdf-e8ad-4d53-a1a9-3a7191efa68a","type":"Microsoft.Authorization/roleAssignments","name":"b5a5cfdf-e8ad-4d53-a1a9-3a7191efa68a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T20:41:35.2460898Z","updatedOn":"2022-11-08T20:41:35.2460898Z","createdBy":"77ac7883-1816-45e5-8784-444d95195dfe","updatedBy":"77ac7883-1816-45e5-8784-444d95195dfe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbdb8a06-5fa5-11ed-87b5-52a0a45b7fbb","type":"Microsoft.Authorization/roleAssignments","name":"bbdb8a06-5fa5-11ed-87b5-52a0a45b7fbb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T20:41:39.0095016Z","updatedOn":"2022-11-08T20:41:39.0095016Z","createdBy":"77ac7883-1816-45e5-8784-444d95195dfe","updatedBy":"77ac7883-1816-45e5-8784-444d95195dfe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be17ddaf-5fa5-11ed-87b5-52a0a45b7fbb","type":"Microsoft.Authorization/roleAssignments","name":"be17ddaf-5fa5-11ed-87b5-52a0a45b7fbb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T04:24:29.2903032Z","updatedOn":"2022-11-09T04:24:29.2903032Z","createdBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","updatedBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6672401b-5fe6-11ed-8d26-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"6672401b-5fe6-11ed-8d26-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T04:24:32.7816834Z","updatedOn":"2022-11-09T04:24:32.7816834Z","createdBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","updatedBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/687908be-5fe6-11ed-8d26-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"687908be-5fe6-11ed-8d26-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T06:49:46.3320446Z","updatedOn":"2022-11-09T06:49:46.3320446Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40e96901-a9d4-4fc3-8d80-c55979cad3f4","type":"Microsoft.Authorization/roleAssignments","name":"40e96901-a9d4-4fc3-8d80-c55979cad3f4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T06:57:50.8140024Z","updatedOn":"2022-11-09T06:57:50.8140024Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54117e37-77ed-4fc2-a64e-7f5cfee1e3cb","type":"Microsoft.Authorization/roleAssignments","name":"54117e37-77ed-4fc2-a64e-7f5cfee1e3cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-15T17:00:53.9224351Z","updatedOn":"2022-11-15T17:00:53.9224351Z","createdBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","updatedBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb3fa35d-14c6-476e-965d-3287df835fb6","type":"Microsoft.Authorization/roleAssignments","name":"eb3fa35d-14c6-476e-965d-3287df835fb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-16T17:45:41.6438991Z","updatedOn":"2022-11-16T18:12:21.7351318Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89d1db20-3058-52b8-8e72-ffbee92652bc","type":"Microsoft.Authorization/roleAssignments","name":"89d1db20-3058-52b8-8e72-ffbee92652bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-17T20:00:21.8300657Z","updatedOn":"2022-11-17T20:00:21.8300657Z","createdBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","updatedBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/770d246f-66b2-11ed-9a7a-5eff6da83896","type":"Microsoft.Authorization/roleAssignments","name":"770d246f-66b2-11ed-9a7a-5eff6da83896"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:13:16.4073065Z","updatedOn":"2023-05-12T17:27:11.5958673Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d9c1e76-d133-5014-a053-fa81b5a5ddcc","type":"Microsoft.Authorization/roleAssignments","name":"8d9c1e76-d133-5014-a053-fa81b5a5ddcc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:13:16.3810810Z","updatedOn":"2023-05-12T17:27:11.6002511Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9589fe9-37b5-52e8-b6a1-05baa0e40ea2","type":"Microsoft.Authorization/roleAssignments","name":"b9589fe9-37b5-52e8-b6a1-05baa0e40ea2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:13:16.4335352Z","updatedOn":"2023-05-12T17:27:11.6253602Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df3deb96-df88-5ecf-9db1-b40cda69a5b1","type":"Microsoft.Authorization/roleAssignments","name":"df3deb96-df88-5ecf-9db1-b40cda69a5b1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-29T22:31:21.5082047Z","updatedOn":"2023-05-12T17:27:12.7611677Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe4c31ea-8d12-5bbd-80e8-749dd04c242c","type":"Microsoft.Authorization/roleAssignments","name":"fe4c31ea-8d12-5bbd-80e8-749dd04c242c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-18T19:59:52.7113168Z","updatedOn":"2022-11-18T19:59:52.7113168Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/909e97c0-677b-11ed-b3d1-4e4b7fc6d2d7","type":"Microsoft.Authorization/roleAssignments","name":"909e97c0-677b-11ed-b3d1-4e4b7fc6d2d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-18T19:59:56.7899280Z","updatedOn":"2022-11-18T19:59:56.7899280Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9302a900-677b-11ed-b3d1-4e4b7fc6d2d7","type":"Microsoft.Authorization/roleAssignments","name":"9302a900-677b-11ed-b3d1-4e4b7fc6d2d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-18T22:57:24.7333928Z","updatedOn":"2022-11-18T22:57:24.7333928Z","createdBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","updatedBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/616b0a5c-ef17-4f5c-8f54-932fb42ed1b6","type":"Microsoft.Authorization/roleAssignments","name":"616b0a5c-ef17-4f5c-8f54-932fb42ed1b6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-20T08:02:14.3563436Z","updatedOn":"2022-11-20T08:02:14.3563436Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59455a7f-8688-4fa9-bca1-b14ff86b45d8","type":"Microsoft.Authorization/roleAssignments","name":"59455a7f-8688-4fa9-bca1-b14ff86b45d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-22T12:28:29.6735062Z","updatedOn":"2022-11-22T12:28:29.6735062Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a01068c-6a61-11ed-b280-38f9d359b369","type":"Microsoft.Authorization/roleAssignments","name":"2a01068c-6a61-11ed-b280-38f9d359b369"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-22T12:28:35.6487701Z","updatedOn":"2022-11-22T12:28:35.6487701Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2dec6a7a-6a61-11ed-b280-38f9d359b369","type":"Microsoft.Authorization/roleAssignments","name":"2dec6a7a-6a61-11ed-b280-38f9d359b369"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-23T19:27:15.6029824Z","updatedOn":"2022-11-23T19:27:15.6029824Z","createdBy":"573ee898-c9b5-4556-b5b7-ba398712832e","updatedBy":"573ee898-c9b5-4556-b5b7-ba398712832e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5624ab6-6b64-11ed-99e5-a29c0e078d5a","type":"Microsoft.Authorization/roleAssignments","name":"d5624ab6-6b64-11ed-99e5-a29c0e078d5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-23T19:27:29.8496193Z","updatedOn":"2022-11-23T19:27:29.8496193Z","createdBy":"573ee898-c9b5-4556-b5b7-ba398712832e","updatedBy":"573ee898-c9b5-4556-b5b7-ba398712832e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ddce2c51-6b64-11ed-99e5-a29c0e078d5a","type":"Microsoft.Authorization/roleAssignments","name":"ddce2c51-6b64-11ed-99e5-a29c0e078d5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-24T08:00:52.4569469Z","updatedOn":"2022-11-24T08:00:52.4569469Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ea38765-a469-4975-a3b3-69c47e46e70b","type":"Microsoft.Authorization/roleAssignments","name":"9ea38765-a469-4975-a3b3-69c47e46e70b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-24T08:01:11.1412012Z","updatedOn":"2022-11-24T08:01:11.1412012Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f7e731a-0d5b-4591-a97d-0ee2053825bb","type":"Microsoft.Authorization/roleAssignments","name":"9f7e731a-0d5b-4591-a97d-0ee2053825bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T08:56:33.0370700Z","updatedOn":"2022-11-28T08:56:33.0370700Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4d08049c-272d-4905-a2b6-cd89456c5382","type":"Microsoft.Authorization/roleAssignments","name":"4d08049c-272d-4905-a2b6-cd89456c5382"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T18:00:17.3116606Z","updatedOn":"2022-11-28T18:00:17.3116606Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/839a632b-6f46-11ed-9f3a-002248be91cc","type":"Microsoft.Authorization/roleAssignments","name":"839a632b-6f46-11ed-9f3a-002248be91cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T21:24:30.3728549Z","updatedOn":"2022-11-28T21:24:30.3728549Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ad622e0-6f63-11ed-a15a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"0ad622e0-6f63-11ed-a15a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T21:24:34.5112467Z","updatedOn":"2022-11-28T21:24:34.5112467Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d6f187c-6f63-11ed-a15a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"0d6f187c-6f63-11ed-a15a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-29T19:42:39.8350492Z","updatedOn":"2022-11-29T19:42:39.8350492Z","createdBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","updatedBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb69dd10-701d-11ed-8940-6ca1001ae258","type":"Microsoft.Authorization/roleAssignments","name":"fb69dd10-701d-11ed-8940-6ca1001ae258"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-29T19:42:43.2096038Z","updatedOn":"2022-11-29T19:42:43.2096038Z","createdBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","updatedBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd6fed09-701d-11ed-8940-6ca1001ae258","type":"Microsoft.Authorization/roleAssignments","name":"fd6fed09-701d-11ed-8940-6ca1001ae258"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-30T07:32:24.0648059Z","updatedOn":"2022-11-30T07:32:24.0648059Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d745d98-b683-45b9-92a8-918aacf64633","type":"Microsoft.Authorization/roleAssignments","name":"2d745d98-b683-45b9-92a8-918aacf64633"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-01T22:00:12.5092022Z","updatedOn":"2022-12-01T22:00:12.5092022Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/29f80035-534e-479f-bf9d-3243cd2eba93","type":"Microsoft.Authorization/roleAssignments","name":"29f80035-534e-479f-bf9d-3243cd2eba93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-02T07:52:06.0754526Z","updatedOn":"2022-12-02T07:52:06.0754526Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/17ce4c2c-8051-4420-a6ac-6aeb91441711","type":"Microsoft.Authorization/roleAssignments","name":"17ce4c2c-8051-4420-a6ac-6aeb91441711"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-02T23:54:37.7637423Z","updatedOn":"2022-12-02T23:54:37.7637423Z","createdBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","updatedBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e8902907-9bef-55f7-9a6d-64e3cf3b1a77","type":"Microsoft.Authorization/roleAssignments","name":"e8902907-9bef-55f7-9a6d-64e3cf3b1a77"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-05T17:29:10.2915092Z","updatedOn":"2022-12-05T17:29:10.2915092Z","createdBy":"500b0839-c682-4003-9106-8f37a381595d","updatedBy":"500b0839-c682-4003-9106-8f37a381595d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/53a3b656-74c2-11ed-b2ea-f21d81f4d94b","type":"Microsoft.Authorization/roleAssignments","name":"53a3b656-74c2-11ed-b2ea-f21d81f4d94b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-05T17:29:19.7335221Z","updatedOn":"2022-12-05T17:29:19.7335221Z","createdBy":"500b0839-c682-4003-9106-8f37a381595d","updatedBy":"500b0839-c682-4003-9106-8f37a381595d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59486582-74c2-11ed-b2ea-f21d81f4d94b","type":"Microsoft.Authorization/roleAssignments","name":"59486582-74c2-11ed-b2ea-f21d81f4d94b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T00:27:21.1321238Z","updatedOn":"2022-12-06T00:27:21.1321238Z","createdBy":"010e39fa-3d22-4576-ad28-9709490d3973","updatedBy":"010e39fa-3d22-4576-ad28-9709490d3973","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bdc7c72a-74fc-11ed-b1d9-fe40d632c9c8","type":"Microsoft.Authorization/roleAssignments","name":"bdc7c72a-74fc-11ed-b1d9-fe40d632c9c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T00:27:26.7978650Z","updatedOn":"2022-12-06T00:27:26.7978650Z","createdBy":"010e39fa-3d22-4576-ad28-9709490d3973","updatedBy":"010e39fa-3d22-4576-ad28-9709490d3973","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c1df0b20-74fc-11ed-b1d9-fe40d632c9c8","type":"Microsoft.Authorization/roleAssignments","name":"c1df0b20-74fc-11ed-b1d9-fe40d632c9c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T08:09:07.9286883Z","updatedOn":"2022-12-06T08:09:07.9286883Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a54f40a-fc73-4967-93de-1fda5f77fa18","type":"Microsoft.Authorization/roleAssignments","name":"8a54f40a-fc73-4967-93de-1fda5f77fa18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T08:09:07.0223985Z","updatedOn":"2022-12-06T08:09:07.0223985Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/37a700cb-bd3a-4961-a7b7-cf21f1049fd6","type":"Microsoft.Authorization/roleAssignments","name":"37a700cb-bd3a-4961-a7b7-cf21f1049fd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-09T14:12:43.2358573Z","updatedOn":"2022-12-09T14:12:43.2358573Z","createdBy":"500b0839-c682-4003-9106-8f37a381595d","updatedBy":"500b0839-c682-4003-9106-8f37a381595d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88d9f0e9-77cb-11ed-a931-4ecc509b30ab","type":"Microsoft.Authorization/roleAssignments","name":"88d9f0e9-77cb-11ed-a931-4ecc509b30ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T12:05:48.4827550Z","updatedOn":"2022-12-12T12:05:48.4827550Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d238237a-b393-4ab0-9f00-cdf16c5d6b05","type":"Microsoft.Authorization/roleAssignments","name":"d238237a-b393-4ab0-9f00-cdf16c5d6b05"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T16:10:53.3465450Z","updatedOn":"2022-12-12T16:10:53.3465450Z","createdBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","updatedBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8bcca047-7a37-11ed-9b42-5a0f21a4ffba","type":"Microsoft.Authorization/roleAssignments","name":"8bcca047-7a37-11ed-9b42-5a0f21a4ffba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T16:10:57.7295344Z","updatedOn":"2022-12-12T16:10:57.7295344Z","createdBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","updatedBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e42900b-7a37-11ed-9b42-5a0f21a4ffba","type":"Microsoft.Authorization/roleAssignments","name":"8e42900b-7a37-11ed-9b42-5a0f21a4ffba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-14T08:51:42.0015523Z","updatedOn":"2022-12-14T08:51:42.0015523Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d01084d-4e3a-414c-ac62-c3ef82dc3302","type":"Microsoft.Authorization/roleAssignments","name":"8d01084d-4e3a-414c-ac62-c3ef82dc3302"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-16T07:20:02.6088062Z","updatedOn":"2022-12-16T07:20:02.6088062Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0cb541fc-7d12-11ed-8232-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"0cb541fc-7d12-11ed-8232-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-20T19:00:39.7938573Z","updatedOn":"2022-12-20T19:00:39.7938573Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/991d89fd-8098-11ed-a1dc-1e0cf6619ffa","type":"Microsoft.Authorization/roleAssignments","name":"991d89fd-8098-11ed-a1dc-1e0cf6619ffa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-21T19:53:55.0673117Z","updatedOn":"2022-12-21T19:53:55.0673117Z","createdBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","updatedBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/31f1b70c-8169-11ed-871d-bc091b9528f6","type":"Microsoft.Authorization/roleAssignments","name":"31f1b70c-8169-11ed-871d-bc091b9528f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-21T19:54:01.7874075Z","updatedOn":"2022-12-21T19:54:01.7874075Z","createdBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","updatedBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35eb2367-8169-11ed-871d-bc091b9528f6","type":"Microsoft.Authorization/roleAssignments","name":"35eb2367-8169-11ed-871d-bc091b9528f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-23T14:42:33.0388657Z","updatedOn":"2022-12-23T14:42:33.0388657Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7077d7fa-4615-4792-b394-80918dd155ce","type":"Microsoft.Authorization/roleAssignments","name":"7077d7fa-4615-4792-b394-80918dd155ce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-28T13:20:44.8421429Z","updatedOn":"2022-12-28T13:20:44.8421429Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b48d252-d31a-57c7-8cf6-cb5fed6d1a67","type":"Microsoft.Authorization/roleAssignments","name":"4b48d252-d31a-57c7-8cf6-cb5fed6d1a67"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-03T12:31:11.2683110Z","updatedOn":"2023-01-03T12:31:11.2683110Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d408ddb7-31cd-4d46-ab59-fe1be61b2bdc","type":"Microsoft.Authorization/roleAssignments","name":"d408ddb7-31cd-4d46-ab59-fe1be61b2bdc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-06T08:15:45.7088191Z","updatedOn":"2023-01-06T08:15:45.7088191Z","createdBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","updatedBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/510806b0-8d9a-11ed-9e4f-000d3ac772b5","type":"Microsoft.Authorization/roleAssignments","name":"510806b0-8d9a-11ed-9e4f-000d3ac772b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-06T08:15:51.6046641Z","updatedOn":"2023-01-06T08:15:51.6046641Z","createdBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","updatedBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54802b41-8d9a-11ed-9e4f-000d3ac772b5","type":"Microsoft.Authorization/roleAssignments","name":"54802b41-8d9a-11ed-9e4f-000d3ac772b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-06T22:24:58.0712756Z","updatedOn":"2023-01-06T22:24:58.0712756Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbcde9e0-3481-49ad-b1f1-e7226db43e33","type":"Microsoft.Authorization/roleAssignments","name":"cbcde9e0-3481-49ad-b1f1-e7226db43e33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-07T00:15:43.3039407Z","updatedOn":"2023-01-07T00:15:43.3039407Z","createdBy":"80a6e936-2bdc-4927-b49e-2a7a19943b90","updatedBy":"80a6e936-2bdc-4927-b49e-2a7a19943b90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7e73e7e9-99f9-5fa0-a5c8-33268a3e7acc","type":"Microsoft.Authorization/roleAssignments","name":"7e73e7e9-99f9-5fa0-a5c8-33268a3e7acc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-08T14:40:12.1322327Z","updatedOn":"2023-01-08T14:40:12.1322327Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9146e5ba-1dce-41c3-bee6-6e854049e485","type":"Microsoft.Authorization/roleAssignments","name":"9146e5ba-1dce-41c3-bee6-6e854049e485"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-08T14:46:46.8171282Z","updatedOn":"2023-01-08T14:46:46.8171282Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3073c0fc-4181-4de7-bb2d-ceb46bd805c2","type":"Microsoft.Authorization/roleAssignments","name":"3073c0fc-4181-4de7-bb2d-ceb46bd805c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-10T05:58:31.6725565Z","updatedOn":"2023-01-10T05:58:31.6725565Z","createdBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","updatedBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce4f420e-90ab-11ed-81da-002248575167","type":"Microsoft.Authorization/roleAssignments","name":"ce4f420e-90ab-11ed-81da-002248575167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-10T05:58:38.3068493Z","updatedOn":"2023-01-10T05:58:38.3068493Z","createdBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","updatedBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2369b82-90ab-11ed-81da-002248575167","type":"Microsoft.Authorization/roleAssignments","name":"d2369b82-90ab-11ed-81da-002248575167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-10T06:45:54.6704864Z","updatedOn":"2023-01-10T06:45:54.6704864Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6de0e553-90b2-11ed-9d42-6045bd78eeea","type":"Microsoft.Authorization/roleAssignments","name":"6de0e553-90b2-11ed-9d42-6045bd78eeea"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-11T22:44:31.5456256Z","updatedOn":"2023-01-11T22:44:31.5456256Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/55a9c9ca-e483-44ad-ab32-17ac0f1905e2","type":"Microsoft.Authorization/roleAssignments","name":"55a9c9ca-e483-44ad-ab32-17ac0f1905e2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-12T07:27:30.7499209Z","updatedOn":"2023-01-12T07:27:30.7499209Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c2fcdf3-9376-46c4-862c-c5478fad402d","type":"Microsoft.Authorization/roleAssignments","name":"6c2fcdf3-9376-46c4-862c-c5478fad402d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-12T20:29:47.8942736Z","updatedOn":"2023-01-12T20:29:47.8942736Z","createdBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","updatedBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dad76eb4-92b7-11ed-9e92-3e22fbc2ce2f","type":"Microsoft.Authorization/roleAssignments","name":"dad76eb4-92b7-11ed-9e92-3e22fbc2ce2f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-12T20:29:51.8091784Z","updatedOn":"2023-01-12T20:29:51.8091784Z","createdBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","updatedBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd198dce-92b7-11ed-9e92-3e22fbc2ce2f","type":"Microsoft.Authorization/roleAssignments","name":"dd198dce-92b7-11ed-9e92-3e22fbc2ce2f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-13T05:50:47.3154688Z","updatedOn":"2023-01-13T05:50:47.3154688Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/38d171ad-9306-11ed-a704-ee47e05c3b1e","type":"Microsoft.Authorization/roleAssignments","name":"38d171ad-9306-11ed-a704-ee47e05c3b1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-13T05:50:53.1628390Z","updatedOn":"2023-01-13T05:50:53.1628390Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3bf43d16-9306-11ed-a704-ee47e05c3b1e","type":"Microsoft.Authorization/roleAssignments","name":"3bf43d16-9306-11ed-a704-ee47e05c3b1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-14T06:07:18.3233862Z","updatedOn":"2023-01-14T06:07:18.3233862Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2587a66-93d1-11ed-a6e9-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"b2587a66-93d1-11ed-a6e9-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-14T06:07:23.4646871Z","updatedOn":"2023-01-14T06:07:23.4646871Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b56e4d80-93d1-11ed-a6e9-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"b56e4d80-93d1-11ed-a6e9-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-16T23:52:20.1337328Z","updatedOn":"2023-01-16T23:52:20.1337328Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/911d588d-e4a0-5501-bd42-db0fe4ac81ea","type":"Microsoft.Authorization/roleAssignments","name":"911d588d-e4a0-5501-bd42-db0fe4ac81ea"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-17T21:03:20.3495010Z","updatedOn":"2023-01-17T21:03:20.3495010Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":"partner + team engineer "},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b200ea13-6210-46cf-b622-5e1fa94d7196","type":"Microsoft.Authorization/roleAssignments","name":"b200ea13-6210-46cf-b622-5e1fa94d7196"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-17T21:55:10.9367237Z","updatedOn":"2023-01-17T21:55:10.9367237Z","createdBy":"252476b5-423c-4de6-8f23-f3b57897abfc","updatedBy":"252476b5-423c-4de6-8f23-f3b57897abfc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9c4d35c3-96b1-11ed-bcb1-aa442d61f9f5","type":"Microsoft.Authorization/roleAssignments","name":"9c4d35c3-96b1-11ed-bcb1-aa442d61f9f5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-18T16:39:36.8544109Z","updatedOn":"2023-01-18T16:39:36.8544109Z","createdBy":"57440c04-5eed-4c74-92b6-44b016b882f2","updatedBy":"57440c04-5eed-4c74-92b6-44b016b882f2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e47587fc-952b-11ed-9582-22998bd40e8c","type":"Microsoft.Authorization/roleAssignments","name":"e47587fc-952b-11ed-9582-22998bd40e8c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-19T06:11:42.7348591Z","updatedOn":"2023-01-19T06:11:42.7348591Z","createdBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","updatedBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dcee111d-97c0-11ed-8b08-5e144daaf885","type":"Microsoft.Authorization/roleAssignments","name":"dcee111d-97c0-11ed-8b08-5e144daaf885"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-19T06:11:46.7450508Z","updatedOn":"2023-01-19T06:11:46.7450508Z","createdBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","updatedBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df259f28-97c0-11ed-8b08-5e144daaf885","type":"Microsoft.Authorization/roleAssignments","name":"df259f28-97c0-11ed-8b08-5e144daaf885"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-20T21:01:23.9458046Z","updatedOn":"2023-05-12T17:27:12.7106298Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f654663-8564-546e-a6fc-452f7b76de5a","type":"Microsoft.Authorization/roleAssignments","name":"5f654663-8564-546e-a6fc-452f7b76de5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T17:09:42.5564083Z","updatedOn":"2023-01-23T17:09:42.5564083Z","createdBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","updatedBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9e2414b-9b40-11ed-96c6-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"b9e2414b-9b40-11ed-96c6-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T17:09:45.5610260Z","updatedOn":"2023-01-23T17:09:45.5610260Z","createdBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","updatedBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbc6263b-9b40-11ed-96c6-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"bbc6263b-9b40-11ed-96c6-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T18:43:59.1011432Z","updatedOn":"2023-01-23T18:43:59.1011432Z","createdBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","updatedBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e58487c6-9b4d-11ed-8c22-8c1645a48227","type":"Microsoft.Authorization/roleAssignments","name":"e58487c6-9b4d-11ed-8c22-8c1645a48227"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T18:44:02.5989503Z","updatedOn":"2023-01-23T18:44:02.5989503Z","createdBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","updatedBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7a002ef-9b4d-11ed-8c22-8c1645a48227","type":"Microsoft.Authorization/roleAssignments","name":"e7a002ef-9b4d-11ed-8c22-8c1645a48227"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-10T06:45:47.1925698Z","updatedOn":"2022-03-10T06:45:47.1925698Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4aaa7af-d414-42e9-bd99-b14d707753a7","type":"Microsoft.Authorization/roleAssignments","name":"e4aaa7af-d414-42e9-bd99-b14d707753a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-11T03:42:35.9073660Z","updatedOn":"2022-03-11T03:42:35.9073660Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a0f9eea-a0ed-11ec-9b90-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"4a0f9eea-a0ed-11ec-9b90-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-11T19:59:10.3149108Z","updatedOn":"2022-03-11T19:59:10.3149108Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b6e06a80-a175-11ec-8f66-002248778035","type":"Microsoft.Authorization/roleAssignments","name":"b6e06a80-a175-11ec-8f66-002248778035"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-14T05:57:31.9169431Z","updatedOn":"2022-03-14T05:57:31.9169431Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/04323e79-5b88-4b91-86e7-b8bfa1c2d8b9","type":"Microsoft.Authorization/roleAssignments","name":"04323e79-5b88-4b91-86e7-b8bfa1c2d8b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-14T23:57:21.8404827Z","updatedOn":"2022-03-14T23:57:21.8404827Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/824ca9a3-a3f2-11ec-b5c2-626147b15e2d","type":"Microsoft.Authorization/roleAssignments","name":"824ca9a3-a3f2-11ec-b5c2-626147b15e2d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-15T05:47:06.0764200Z","updatedOn":"2022-03-15T05:47:06.0764200Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d8c0655-15f2-4864-9ebf-6c5d95ea5797","type":"Microsoft.Authorization/roleAssignments","name":"3d8c0655-15f2-4864-9ebf-6c5d95ea5797"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-15T05:48:19.3617384Z","updatedOn":"2022-03-15T05:48:19.3617384Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5a1298d-008a-4dad-95db-70d41dc0ff2e","type":"Microsoft.Authorization/roleAssignments","name":"b5a1298d-008a-4dad-95db-70d41dc0ff2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-15T19:57:01.4651070Z","updatedOn":"2022-03-15T19:57:01.4651070Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f90898e-0a20-4778-b842-abc610614801","type":"Microsoft.Authorization/roleAssignments","name":"2f90898e-0a20-4778-b842-abc610614801"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-16T02:56:12.3673604Z","updatedOn":"2022-03-16T02:56:12.3673604Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be953738-c4c0-4da0-9b0f-42c89eb31451","type":"Microsoft.Authorization/roleAssignments","name":"be953738-c4c0-4da0-9b0f-42c89eb31451"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T10:12:31.1977135Z","updatedOn":"2022-03-21T10:12:31.1977135Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92ad8cda-f519-4160-b28d-6e0e8d19fb8e","type":"Microsoft.Authorization/roleAssignments","name":"92ad8cda-f519-4160-b28d-6e0e8d19fb8e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T17:57:33.7215077Z","updatedOn":"2022-03-21T17:57:33.7215077Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6210523c-a940-11ec-88f4-00224850c1b5","type":"Microsoft.Authorization/roleAssignments","name":"6210523c-a940-11ec-88f4-00224850c1b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T22:00:37.3135630Z","updatedOn":"2022-03-21T22:00:37.3135630Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5678b88f-a962-11ec-b646-0022487a9d6b","type":"Microsoft.Authorization/roleAssignments","name":"5678b88f-a962-11ec-b646-0022487a9d6b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T23:00:49.2441783Z","updatedOn":"2022-03-21T23:00:49.2441783Z","createdBy":"3a522b7c-61fd-4fcf-aa7f-3e8a6e7cc3af","updatedBy":"3a522b7c-61fd-4fcf-aa7f-3e8a6e7cc3af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bef73288-a96a-11ec-bd2b-6acf089951ab","type":"Microsoft.Authorization/roleAssignments","name":"bef73288-a96a-11ec-bd2b-6acf089951ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-22T04:03:04.2502656Z","updatedOn":"2022-03-22T04:03:04.2502656Z","createdBy":"9d0cc8e5-b005-4b2b-9a31-3b6c624d5330","updatedBy":"9d0cc8e5-b005-4b2b-9a31-3b6c624d5330","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8a4f8a7-a994-11ec-b30e-4a9f38c1a382","type":"Microsoft.Authorization/roleAssignments","name":"f8a4f8a7-a994-11ec-b30e-4a9f38c1a382"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-22T13:40:03.8073664Z","updatedOn":"2022-03-22T13:40:03.8073664Z","createdBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","updatedBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/93f47801-a9e5-11ec-86a5-3a3e6c7e1ac8","type":"Microsoft.Authorization/roleAssignments","name":"93f47801-a9e5-11ec-86a5-3a3e6c7e1ac8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-23T10:14:54.3796697Z","updatedOn":"2022-03-23T10:14:54.3796697Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e3f182b-aa92-11ec-9c92-18c04da96df8","type":"Microsoft.Authorization/roleAssignments","name":"0e3f182b-aa92-11ec-9c92-18c04da96df8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-23T23:47:01.7045602Z","updatedOn":"2022-03-23T23:47:01.7045602Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5312596-61f6-486a-ad10-fdb35f1c1665","type":"Microsoft.Authorization/roleAssignments","name":"d5312596-61f6-486a-ad10-fdb35f1c1665"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-25T05:07:14.4623821Z","updatedOn":"2022-03-25T05:07:14.4623821Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df7fe6e9-3cf1-4547-ba81-c1ad0d7d565d","type":"Microsoft.Authorization/roleAssignments","name":"df7fe6e9-3cf1-4547-ba81-c1ad0d7d565d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-29T14:13:44.9635087Z","updatedOn":"2022-03-29T14:13:44.9635087Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/530db943-4ece-46bc-b456-79374d5ec2ba","type":"Microsoft.Authorization/roleAssignments","name":"530db943-4ece-46bc-b456-79374d5ec2ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-30T16:18:52.9056346Z","updatedOn":"2022-03-30T16:18:52.9056346Z","createdBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","updatedBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3e0d853-568c-4e64-851d-2292fe92a007","type":"Microsoft.Authorization/roleAssignments","name":"d3e0d853-568c-4e64-851d-2292fe92a007"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-05T04:54:30.2719737Z","updatedOn":"2022-04-05T04:54:30.2719737Z","createdBy":"f0b00319-13f5-4c2b-928a-73ccb5edd222","updatedBy":"f0b00319-13f5-4c2b-928a-73ccb5edd222","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78ffc9e7-b49c-11ec-964c-b219be9347e3","type":"Microsoft.Authorization/roleAssignments","name":"78ffc9e7-b49c-11ec-964c-b219be9347e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-05T22:40:43.0016940Z","updatedOn":"2022-04-05T22:40:43.0016940Z","createdBy":"639a731d-01eb-47bc-88aa-c1e2ba14db02","updatedBy":"639a731d-01eb-47bc-88aa-c1e2ba14db02","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c9e0e6c-b531-11ec-aea8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6c9e0e6c-b531-11ec-aea8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-06T12:49:05.2173956Z","updatedOn":"2022-04-06T12:49:05.2173956Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f0a7f4e5-b5a7-11ec-bae5-000d3a6f3c6e","type":"Microsoft.Authorization/roleAssignments","name":"f0a7f4e5-b5a7-11ec-bae5-000d3a6f3c6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-07T01:16:34.9503446Z","updatedOn":"2022-04-07T01:16:34.9503446Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5bdb51f8-5551-44f9-9819-a52fa97c2fef","type":"Microsoft.Authorization/roleAssignments","name":"5bdb51f8-5551-44f9-9819-a52fa97c2fef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-11T05:16:56.1225175Z","updatedOn":"2022-04-11T05:16:56.1225175Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99904768-b956-11ec-a61a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"99904768-b956-11ec-a61a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T23:22:51.6419715Z","updatedOn":"2022-04-12T23:22:51.6419715Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/788b9be6-bab7-11ec-b096-0022487898d6","type":"Microsoft.Authorization/roleAssignments","name":"788b9be6-bab7-11ec-b096-0022487898d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T07:42:38.9160126Z","updatedOn":"2022-04-13T07:42:38.9160126Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a58e304-bafd-11ec-8461-a2dde8388af9","type":"Microsoft.Authorization/roleAssignments","name":"4a58e304-bafd-11ec-8461-a2dde8388af9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T16:12:39.4214747Z","updatedOn":"2022-04-13T16:12:39.4214747Z","createdBy":"c302f71c-7b89-4d55-8c87-135833038531","updatedBy":"c302f71c-7b89-4d55-8c87-135833038531","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3bd4838c-4c24-4bb6-b31f-d055dc68694f","type":"Microsoft.Authorization/roleAssignments","name":"3bd4838c-4c24-4bb6-b31f-d055dc68694f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T09:53:20.2997466Z","updatedOn":"2022-04-14T09:53:20.2997466Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b44f0aaa-bbd8-11ec-8da6-0a4cab55437d","type":"Microsoft.Authorization/roleAssignments","name":"b44f0aaa-bbd8-11ec-8da6-0a4cab55437d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T16:49:01.5455829Z","updatedOn":"2022-04-14T16:49:01.5455829Z","createdBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","updatedBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","delegatedManagedIdentityResourceId":null,"description":"Allows + github actions to run e2e tests. Only the main branch is permitted access, + and credentials are not shared with forks."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4e9d34c-9113-45d4-a0f0-175593c38c33","type":"Microsoft.Authorization/roleAssignments","name":"f4e9d34c-9113-45d4-a0f0-175593c38c33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-20T06:23:32.6340955Z","updatedOn":"2022-04-20T06:23:32.6340955Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6675beb7-c072-11ec-b9ab-000d3ac3f60e","type":"Microsoft.Authorization/roleAssignments","name":"6675beb7-c072-11ec-b9ab-000d3ac3f60e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-20T18:02:47.6341581Z","updatedOn":"2022-04-20T18:02:47.6341581Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/56617dbb-76a1-401d-96fe-8a22f58284d8","type":"Microsoft.Authorization/roleAssignments","name":"56617dbb-76a1-401d-96fe-8a22f58284d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T08:17:07.1604388Z","updatedOn":"2022-04-21T08:17:07.1604388Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6e60c2be-c14b-11ec-82b0-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6e60c2be-c14b-11ec-82b0-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T21:36:13.8709604Z","updatedOn":"2022-04-21T21:36:13.8709604Z","createdBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","updatedBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/10b94b6e-c1bb-11ec-9ff7-523c2f7f99a3","type":"Microsoft.Authorization/roleAssignments","name":"10b94b6e-c1bb-11ec-9ff7-523c2f7f99a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-22T18:55:55.5256074Z","updatedOn":"2022-04-22T18:55:55.5256074Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6917978-c26d-11ec-a699-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"d6917978-c26d-11ec-a699-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-24T10:36:03.4988906Z","updatedOn":"2022-04-24T10:36:03.4988906Z","createdBy":"d3cd2b55-3b25-4b68-b6fd-a08967de9266","updatedBy":"d3cd2b55-3b25-4b68-b6fd-a08967de9266","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/558d3e63-c3ba-11ec-b4f9-000d3ac7d8f0","type":"Microsoft.Authorization/roleAssignments","name":"558d3e63-c3ba-11ec-b4f9-000d3ac7d8f0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-25T06:33:58.7782201Z","updatedOn":"2022-04-25T06:33:58.7782201Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ae507161-c461-11ec-b99d-4a4f5b60a172","type":"Microsoft.Authorization/roleAssignments","name":"ae507161-c461-11ec-b99d-4a4f5b60a172"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-26T16:28:17.7010346Z","updatedOn":"2022-04-26T16:28:17.7010346Z","createdBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","updatedBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e04b1510-c57d-11ec-a3c9-0641de48d9d3","type":"Microsoft.Authorization/roleAssignments","name":"e04b1510-c57d-11ec-a3c9-0641de48d9d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-26T21:31:37.1620998Z","updatedOn":"2022-04-26T21:31:37.1620998Z","createdBy":"9bf576b7-c3cf-492b-9bcf-8c8832e2e0a5","updatedBy":"9bf576b7-c3cf-492b-9bcf-8c8832e2e0a5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/409a9eb9-c5a8-11ec-b358-d20abc546c29","type":"Microsoft.Authorization/roleAssignments","name":"409a9eb9-c5a8-11ec-b358-d20abc546c29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-28T07:13:54.9152651Z","updatedOn":"2022-04-28T07:13:54.9152651Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5f3166a-ed3f-43a7-9b34-bb910beaee12","type":"Microsoft.Authorization/roleAssignments","name":"f5f3166a-ed3f-43a7-9b34-bb910beaee12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T12:14:12.5786055Z","updatedOn":"2022-05-02T12:14:12.5786055Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f06c939-ca11-11ec-9966-da65ad1ab332","type":"Microsoft.Authorization/roleAssignments","name":"5f06c939-ca11-11ec-9966-da65ad1ab332"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:17.4008338Z","updatedOn":"2022-05-02T13:40:17.4008338Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/846f4e2d-0ec9-48ef-fd6e-6ac1cb7586e6","type":"Microsoft.Authorization/roleAssignments","name":"846f4e2d-0ec9-48ef-fd6e-6ac1cb7586e6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.8453423Z","updatedOn":"2022-05-02T13:40:18.8453423Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e72a2b8a-2c36-4ac1-aec3-4fa68f3cae16","type":"Microsoft.Authorization/roleAssignments","name":"e72a2b8a-2c36-4ac1-aec3-4fa68f3cae16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.0609853Z","updatedOn":"2022-05-02T13:40:18.0609853Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/72e6bf18-35fb-436e-3e05-9ba0a0747299","type":"Microsoft.Authorization/roleAssignments","name":"72e6bf18-35fb-436e-3e05-9ba0a0747299"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.1173679Z","updatedOn":"2022-05-02T13:40:18.1173679Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/724e274f-6e37-445c-608e-199fb9eaa982","type":"Microsoft.Authorization/roleAssignments","name":"724e274f-6e37-445c-608e-199fb9eaa982"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T16:59:33.5195217Z","updatedOn":"2022-05-02T16:59:33.5195217Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/98620dcd-bcc5-4828-b846-369c64574ee1","type":"Microsoft.Authorization/roleAssignments","name":"98620dcd-bcc5-4828-b846-369c64574ee1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T06:36:46.9583100Z","updatedOn":"2022-05-09T06:36:46.9583100Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5a313ab-6903-471c-a6bf-8d84989e8cb4","type":"Microsoft.Authorization/roleAssignments","name":"d5a313ab-6903-471c-a6bf-8d84989e8cb4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T22:20:41.5499828Z","updatedOn":"2022-05-09T22:20:41.5499828Z","createdBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","updatedBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/425f8b8d-cfe6-11ec-bbe5-00155ddd560d","type":"Microsoft.Authorization/roleAssignments","name":"425f8b8d-cfe6-11ec-bbe5-00155ddd560d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-10T06:15:39.4482664Z","updatedOn":"2022-05-10T06:15:39.4482664Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a2ff126-fb32-4ca9-8c4d-c8b22209cbc1","type":"Microsoft.Authorization/roleAssignments","name":"8a2ff126-fb32-4ca9-8c4d-c8b22209cbc1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-11T23:10:09.0651064Z","updatedOn":"2022-05-11T23:10:09.0651064Z","createdBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","updatedBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/804a630f-d17f-11ec-bb71-6045bdab52dc","type":"Microsoft.Authorization/roleAssignments","name":"804a630f-d17f-11ec-bb71-6045bdab52dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-12T13:47:03.3832395Z","updatedOn":"2022-05-12T13:47:03.3832395Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00bc6898-d1fa-11ec-974a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"00bc6898-d1fa-11ec-974a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-13T20:36:59.6109396Z","updatedOn":"2022-05-13T20:36:59.6109396Z","createdBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","updatedBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ea3a01d-d2fc-11ec-9997-be6e344e58c1","type":"Microsoft.Authorization/roleAssignments","name":"6ea3a01d-d2fc-11ec-9997-be6e344e58c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-17T06:49:11.7087809Z","updatedOn":"2022-05-17T06:49:11.7087809Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07f76b15-d899-4d21-8542-29c2479e05e1","type":"Microsoft.Authorization/roleAssignments","name":"07f76b15-d899-4d21-8542-29c2479e05e1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-18T13:22:09.5941967Z","updatedOn":"2022-05-18T13:22:09.5941967Z","createdBy":"52d64fbe-1728-4b2b-a0c4-849705cb9c96","updatedBy":"52d64fbe-1728-4b2b-a0c4-849705cb9c96","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/847201fc-d6ad-11ec-a176-000d3a083c47","type":"Microsoft.Authorization/roleAssignments","name":"847201fc-d6ad-11ec-a176-000d3a083c47"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-20T22:35:09.9396236Z","updatedOn":"2022-05-20T22:35:09.9396236Z","createdBy":"1ec25b73-94d5-4bf9-a56f-ca7d9bd4164c","updatedBy":"1ec25b73-94d5-4bf9-a56f-ca7d9bd4164c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5d512f6-fb53-4fad-b3be-ec154c7a6085","type":"Microsoft.Authorization/roleAssignments","name":"c5d512f6-fb53-4fad-b3be-ec154c7a6085"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-22T23:45:36.9119159Z","updatedOn":"2022-05-22T23:45:36.9119159Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46fd33ed-da29-11ec-919f-6045bd7a16bc","type":"Microsoft.Authorization/roleAssignments","name":"46fd33ed-da29-11ec-919f-6045bd7a16bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-23T03:50:38.5802008Z","updatedOn":"2022-05-23T03:50:38.5802008Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ab46785f-2521-4172-871f-91e7dc500a5b","type":"Microsoft.Authorization/roleAssignments","name":"ab46785f-2521-4172-871f-91e7dc500a5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-23T18:09:05.5672217Z","updatedOn":"2022-05-23T18:09:05.5672217Z","createdBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","updatedBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3f47f83-e599-4106-974f-5ff73955ffa6","type":"Microsoft.Authorization/roleAssignments","name":"e3f47f83-e599-4106-974f-5ff73955ffa6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-24T20:49:20.4480948Z","updatedOn":"2022-05-24T20:49:20.4480948Z","createdBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","updatedBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbf490ce-dba2-11ec-b0af-6045bdab52dc","type":"Microsoft.Authorization/roleAssignments","name":"fbf490ce-dba2-11ec-b0af-6045bdab52dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-25T18:39:32.8389167Z","updatedOn":"2022-05-25T18:39:32.8389167Z","createdBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","updatedBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/048a3cf1-dc5a-11ec-8804-6045bdab52dc","type":"Microsoft.Authorization/roleAssignments","name":"048a3cf1-dc5a-11ec-8804-6045bdab52dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T01:53:46.3648590Z","updatedOn":"2022-05-26T01:53:46.3648590Z","createdBy":"834b5e76-453d-44f5-80ff-3481c8415d66","updatedBy":"834b5e76-453d-44f5-80ff-3481c8415d66","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac5ab95a-dc96-11ec-92bb-065f8efd402d","type":"Microsoft.Authorization/roleAssignments","name":"ac5ab95a-dc96-11ec-92bb-065f8efd402d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T06:40:41.8769416Z","updatedOn":"2022-05-26T06:40:41.8769416Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2812727c-1e58-49f0-84a6-13e2b8b7cce7","type":"Microsoft.Authorization/roleAssignments","name":"2812727c-1e58-49f0-84a6-13e2b8b7cce7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T16:39:02.6438636Z","updatedOn":"2022-05-26T16:39:02.6438636Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5bb051d1-dd12-11ec-8dd4-9e3ebf2d444f","type":"Microsoft.Authorization/roleAssignments","name":"5bb051d1-dd12-11ec-8dd4-9e3ebf2d444f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-28T07:02:36.1409282Z","updatedOn":"2022-05-28T07:02:36.1409282Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dbf46cb0-1221-443e-bab0-9cd11b7afece","type":"Microsoft.Authorization/roleAssignments","name":"dbf46cb0-1221-443e-bab0-9cd11b7afece"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-31T03:23:22.9404784Z","updatedOn":"2022-05-31T03:23:22.9404784Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/047700b3-e091-11ec-b7b9-f6caf9b02627","type":"Microsoft.Authorization/roleAssignments","name":"047700b3-e091-11ec-b7b9-f6caf9b02627"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-31T03:25:49.5470268Z","updatedOn":"2022-05-31T03:25:49.5470268Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b03550bc-b4aa-4aab-8bd7-0d27b86c9380","type":"Microsoft.Authorization/roleAssignments","name":"b03550bc-b4aa-4aab-8bd7-0d27b86c9380"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-01T14:15:14.5143992Z","updatedOn":"2022-06-01T14:15:14.5143992Z","createdBy":"572b7854-a995-402b-8482-46e12d3c9665","updatedBy":"572b7854-a995-402b-8482-46e12d3c9665","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41183c3a-e1b5-11ec-bad7-3c7c3f1d0035","type":"Microsoft.Authorization/roleAssignments","name":"41183c3a-e1b5-11ec-bad7-3c7c3f1d0035"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-01T15:59:31.6776783Z","updatedOn":"2022-06-01T15:59:31.6776783Z","createdBy":"203de16f-a918-45b1-bde4-6cc574d16944","updatedBy":"203de16f-a918-45b1-bde4-6cc574d16944","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e0dd4b8a-e1c3-11ec-949c-7a1cf6c5b419","type":"Microsoft.Authorization/roleAssignments","name":"e0dd4b8a-e1c3-11ec-949c-7a1cf6c5b419"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-01T18:14:50.2776576Z","updatedOn":"2022-06-01T18:14:50.2776576Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61f89f02-3565-409f-8e72-fc4e58b40178","type":"Microsoft.Authorization/roleAssignments","name":"61f89f02-3565-409f-8e72-fc4e58b40178"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-02T10:22:35.3875246Z","updatedOn":"2022-06-02T10:22:35.3875246Z","createdBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","updatedBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eabe3f5d-e25d-11ec-9d25-002248575167","type":"Microsoft.Authorization/roleAssignments","name":"eabe3f5d-e25d-11ec-9d25-002248575167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-02T19:10:50.1608669Z","updatedOn":"2022-06-02T19:10:50.1608669Z","createdBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","updatedBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d33bf47-7a98-4cca-84be-a622a8a520ae","type":"Microsoft.Authorization/roleAssignments","name":"2d33bf47-7a98-4cca-84be-a622a8a520ae"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-03T17:52:39.6424601Z","updatedOn":"2022-06-03T17:52:39.6424601Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/808a6fa6-1aa8-401a-b12d-3dbf49678aa5","type":"Microsoft.Authorization/roleAssignments","name":"808a6fa6-1aa8-401a-b12d-3dbf49678aa5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-03T18:32:43.3145647Z","updatedOn":"2022-06-03T18:32:43.3145647Z","createdBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","updatedBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ce8e3fe-e36b-11ec-93c2-0ebbe08470ef","type":"Microsoft.Authorization/roleAssignments","name":"8ce8e3fe-e36b-11ec-93c2-0ebbe08470ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-03T20:51:18.9925616Z","updatedOn":"2022-06-03T20:51:18.9925616Z","createdBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","updatedBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea9b98ba-e37e-11ec-b495-0ebbe08470ef","type":"Microsoft.Authorization/roleAssignments","name":"ea9b98ba-e37e-11ec-b495-0ebbe08470ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-06T19:39:15.5380737Z","updatedOn":"2022-06-06T19:39:15.5380737Z","createdBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","updatedBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57d73d6c-e5d0-11ec-a3ee-c220c0843243","type":"Microsoft.Authorization/roleAssignments","name":"57d73d6c-e5d0-11ec-a3ee-c220c0843243"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-07T02:58:19.0816460Z","updatedOn":"2022-06-07T02:58:19.0816460Z","createdBy":"0bf53c4f-0173-466d-967d-debbe9e551d6","updatedBy":"0bf53c4f-0173-466d-967d-debbe9e551d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/adea0756-e60d-11ec-bd0e-66dbb5eba95d","type":"Microsoft.Authorization/roleAssignments","name":"adea0756-e60d-11ec-bd0e-66dbb5eba95d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-07T18:27:18.2907455Z","updatedOn":"2022-06-07T18:27:18.2907455Z","createdBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","updatedBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/75dc9d88-e68f-11ec-bbbc-aa665a03731d","type":"Microsoft.Authorization/roleAssignments","name":"75dc9d88-e68f-11ec-bbbc-aa665a03731d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-08T18:25:22.6640205Z","updatedOn":"2022-06-08T18:25:22.6640205Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/17b651ab-ff7f-4cf2-833a-27f695725732","type":"Microsoft.Authorization/roleAssignments","name":"17b651ab-ff7f-4cf2-833a-27f695725732"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-08T19:34:11.0218858Z","updatedOn":"2022-06-08T19:34:11.0218858Z","createdBy":"1b51b78e-fd1f-484f-98b6-3423d189977b","updatedBy":"1b51b78e-fd1f-484f-98b6-3423d189977b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5e9c3a1d-3f79-4e4b-9b9d-fbe1f3d09ec5","type":"Microsoft.Authorization/roleAssignments","name":"5e9c3a1d-3f79-4e4b-9b9d-fbe1f3d09ec5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-08T19:46:00.8296947Z","updatedOn":"2022-06-08T19:46:00.8296947Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f2fd786-e763-11ec-b282-000d3af64fa4","type":"Microsoft.Authorization/roleAssignments","name":"9f2fd786-e763-11ec-b282-000d3af64fa4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-09T01:49:44.1244830Z","updatedOn":"2022-06-09T01:49:44.1244830Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14a2ebaa-ca44-4eb7-851c-01d577cb625e","type":"Microsoft.Authorization/roleAssignments","name":"14a2ebaa-ca44-4eb7-851c-01d577cb625e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-09T23:29:31.3797237Z","updatedOn":"2022-06-09T23:29:31.3797237Z","createdBy":"b34e062a-5a73-4cec-af00-1ecb446deb92","updatedBy":"b34e062a-5a73-4cec-af00-1ecb446deb92","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/02f3fb8e-e84c-11ec-bd1c-6045bd7e546a","type":"Microsoft.Authorization/roleAssignments","name":"02f3fb8e-e84c-11ec-bd1c-6045bd7e546a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T15:06:09.3851225Z","updatedOn":"2022-06-10T15:06:09.3851225Z","createdBy":"fb4b724d-4b7e-4756-aa0b-d91dc0c5acc9","updatedBy":"fb4b724d-4b7e-4756-aa0b-d91dc0c5acc9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/db7a073e-e8ce-11ec-8b1d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"db7a073e-e8ce-11ec-8b1d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T18:05:28.7449646Z","updatedOn":"2022-06-10T18:05:28.7449646Z","createdBy":"0e06046f-cf0d-4924-86b0-bbcf36a1936f","updatedBy":"0e06046f-cf0d-4924-86b0-bbcf36a1936f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7824ddb-e8e7-11ec-b465-421b394b7a96","type":"Microsoft.Authorization/roleAssignments","name":"e7824ddb-e8e7-11ec-b465-421b394b7a96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T18:05:29.8303312Z","updatedOn":"2022-06-10T18:05:29.8303312Z","createdBy":"1295ee3f-edbd-4185-9628-13318404c52a","updatedBy":"1295ee3f-edbd-4185-9628-13318404c52a","delegatedManagedIdentityResourceId":null,"description":"New + AKS member"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/609b8d2a-2b4f-4767-aa5e-c5c7f11b687b","type":"Microsoft.Authorization/roleAssignments","name":"609b8d2a-2b4f-4767-aa5e-c5c7f11b687b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T21:18:18.0994828Z","updatedOn":"2022-06-10T21:18:18.0994828Z","createdBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","updatedBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d80f2247-e902-11ec-96de-2edd4b852bcf","type":"Microsoft.Authorization/roleAssignments","name":"d80f2247-e902-11ec-96de-2edd4b852bcf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:19.7988558Z","updatedOn":"2022-06-13T09:20:19.7988558Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/053ff776-f32a-4298-cbeb-0da661875d88","type":"Microsoft.Authorization/roleAssignments","name":"053ff776-f32a-4298-cbeb-0da661875d88"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:19.8466660Z","updatedOn":"2022-06-13T09:20:19.8466660Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b4bd6e6-869b-4da3-a50f-b7eb8b183de5","type":"Microsoft.Authorization/roleAssignments","name":"4b4bd6e6-869b-4da3-a50f-b7eb8b183de5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:20.2195738Z","updatedOn":"2022-06-13T09:20:20.2195738Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/21db9db3-7adc-40f3-5885-af265b9ddad2","type":"Microsoft.Authorization/roleAssignments","name":"21db9db3-7adc-40f3-5885-af265b9ddad2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:19.9439478Z","updatedOn":"2022-06-13T09:20:19.9439478Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2418e820-601e-49da-a20d-4fa1ee6cc4cf","type":"Microsoft.Authorization/roleAssignments","name":"2418e820-601e-49da-a20d-4fa1ee6cc4cf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T17:55:18.4118508Z","updatedOn":"2022-06-13T17:55:18.4118508Z","createdBy":"1295ee3f-edbd-4185-9628-13318404c52a","updatedBy":"1295ee3f-edbd-4185-9628-13318404c52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbcfa2a4-eb41-11ec-b38e-467d14df3056","type":"Microsoft.Authorization/roleAssignments","name":"fbcfa2a4-eb41-11ec-b38e-467d14df3056"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-14T09:33:38.7306445Z","updatedOn":"2022-06-14T09:33:38.7306445Z","createdBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","updatedBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/10ffce40-ebc5-11ec-aebe-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"10ffce40-ebc5-11ec-aebe-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-14T23:20:32.7229029Z","updatedOn":"2022-06-14T23:20:32.7229029Z","createdBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","updatedBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/954903db-ec38-11ec-acd7-72f791cfbed2","type":"Microsoft.Authorization/roleAssignments","name":"954903db-ec38-11ec-acd7-72f791cfbed2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T06:30:47.7914595Z","updatedOn":"2022-06-16T06:30:47.7914595Z","createdBy":"504c34f4-8389-4920-aec9-0c595b508740","updatedBy":"504c34f4-8389-4920-aec9-0c595b508740","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb760c25-af25-412f-a643-93e98c629270","type":"Microsoft.Authorization/roleAssignments","name":"bb760c25-af25-412f-a643-93e98c629270"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T20:16:07.8463557Z","updatedOn":"2022-06-16T20:16:07.8463557Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4555d91-07f5-46d6-b29f-50b0d211c4ae","type":"Microsoft.Authorization/roleAssignments","name":"f4555d91-07f5-46d6-b29f-50b0d211c4ae"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T21:30:16.4420742Z","updatedOn":"2022-06-16T21:30:16.4420742Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":"to + programatically create new resource group, aks cluster, and container registry"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2c2fc915-d722-4dde-b730-7c73c8a87fdc","type":"Microsoft.Authorization/roleAssignments","name":"2c2fc915-d722-4dde-b730-7c73c8a87fdc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T22:19:51.5734675Z","updatedOn":"2022-06-16T22:19:51.5734675Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cca9c113-570a-4969-aa72-45c31091684a","type":"Microsoft.Authorization/roleAssignments","name":"cca9c113-570a-4969-aa72-45c31091684a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-17T02:19:37.1755269Z","updatedOn":"2022-06-17T02:19:37.1755269Z","createdBy":"30db9446-b4f8-4485-8c98-10e17387409d","updatedBy":"30db9446-b4f8-4485-8c98-10e17387409d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eee6dfc9-ede3-11ec-9f6d-902e1612d5d0","type":"Microsoft.Authorization/roleAssignments","name":"eee6dfc9-ede3-11ec-9f6d-902e1612d5d0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-20T22:03:11.1423439Z","updatedOn":"2022-06-20T22:03:11.1423439Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5c2bd4a-f0e4-11ec-bbc1-000d3ac67a2f","type":"Microsoft.Authorization/roleAssignments","name":"c5c2bd4a-f0e4-11ec-bbc1-000d3ac67a2f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-21T16:26:57.9805326Z","updatedOn":"2022-06-21T16:26:57.9805326Z","createdBy":"4d730cf1-e190-49af-af02-ea52983c017e","updatedBy":"4d730cf1-e190-49af-af02-ea52983c017e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f814031e-f17e-11ec-bdc4-72d39f810808","type":"Microsoft.Authorization/roleAssignments","name":"f814031e-f17e-11ec-bdc4-72d39f810808"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-22T23:05:28.0851041Z","updatedOn":"2022-06-22T23:05:28.0851041Z","createdBy":"395c8203-ec60-4c13-9730-5f960088f92b","updatedBy":"395c8203-ec60-4c13-9730-5f960088f92b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e672e20f-477a-4475-a5cf-2f7d8401bbc3","type":"Microsoft.Authorization/roleAssignments","name":"e672e20f-477a-4475-a5cf-2f7d8401bbc3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-23T19:51:00.2507743Z","updatedOn":"2022-06-23T19:51:00.2507743Z","createdBy":"8b564e25-6f45-4437-bf8b-9ac6596a5f15","updatedBy":"8b564e25-6f45-4437-bf8b-9ac6596a5f15","delegatedManagedIdentityResourceId":null,"description":"Adding + permissions to SP for running E2E tests. Currently getting error \"The client + ''0cea35e6-9763-4ef3-b2d2-8c241ab58828'' with object id ''0cea35e6-9763-4ef3-b2d2-8c241ab58828'' + does not have authorization to perform action ''Microsoft.Resources/subscriptions/resourcegroups/write'' + over scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/e2erg-indusridebld56865086-VzY'' + or the scope is invalid. If access was recently granted, please refresh your + credentials.\""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5cfb2437-e152-48d8-bb2a-54c89f27707a","type":"Microsoft.Authorization/roleAssignments","name":"5cfb2437-e152-48d8-bb2a-54c89f27707a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-23T21:01:02.9667346Z","updatedOn":"2022-06-23T21:01:02.9667346Z","createdBy":"34d4f830-f9ea-4525-9ca2-b784e3874713","updatedBy":"34d4f830-f9ea-4525-9ca2-b784e3874713","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9527af65-f337-11ec-a743-daea1d98cac0","type":"Microsoft.Authorization/roleAssignments","name":"9527af65-f337-11ec-a743-daea1d98cac0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-24T17:09:56.9678432Z","updatedOn":"2022-06-24T17:09:56.9678432Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba5c2d82-3e34-4b2b-9c5f-27d9d33955ff","type":"Microsoft.Authorization/roleAssignments","name":"ba5c2d82-3e34-4b2b-9c5f-27d9d33955ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-24T17:36:02.0450264Z","updatedOn":"2022-06-24T17:36:02.0450264Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/16b4850b-3e9c-435e-b3f6-b83e02b9146e","type":"Microsoft.Authorization/roleAssignments","name":"16b4850b-3e9c-435e-b3f6-b83e02b9146e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-27T17:58:47.2112371Z","updatedOn":"2022-06-27T17:58:47.2112371Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca6de50e-f642-11ec-83b8-002248773529","type":"Microsoft.Authorization/roleAssignments","name":"ca6de50e-f642-11ec-83b8-002248773529"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-27T21:10:04.9812035Z","updatedOn":"2022-06-27T21:10:04.9812035Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ad97eed-2e77-485f-a2ec-132f3647aef7","type":"Microsoft.Authorization/roleAssignments","name":"8ad97eed-2e77-485f-a2ec-132f3647aef7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T15:43:32.3787489Z","updatedOn":"2022-06-28T15:43:32.3787489Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a1acaea-f6f9-11ec-9ddd-6e578000e34a","type":"Microsoft.Authorization/roleAssignments","name":"0a1acaea-f6f9-11ec-9ddd-6e578000e34a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-29T05:30:23.4400722Z","updatedOn":"2022-06-29T05:30:23.4400722Z","createdBy":"65cfb39a-5f29-4247-8230-9ec6695c5878","updatedBy":"65cfb39a-5f29-4247-8230-9ec6695c5878","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/546c078e-3855-479c-b7aa-b38d4e68bb9f","type":"Microsoft.Authorization/roleAssignments","name":"546c078e-3855-479c-b7aa-b38d4e68bb9f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-29T17:04:07.7235161Z","updatedOn":"2022-06-29T17:04:07.7235161Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/48cbe38c-7d32-4174-8026-7a16994dcdc8","type":"Microsoft.Authorization/roleAssignments","name":"48cbe38c-7d32-4174-8026-7a16994dcdc8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-30T09:06:03.1760556Z","updatedOn":"2022-06-30T09:06:03.1760556Z","createdBy":"42a33e33-55bb-4995-80a2-d1b745371591","updatedBy":"42a33e33-55bb-4995-80a2-d1b745371591","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd7da313-f853-11ec-9993-000d3ac42d43","type":"Microsoft.Authorization/roleAssignments","name":"dd7da313-f853-11ec-9993-000d3ac42d43"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-30T09:06:06.3942443Z","updatedOn":"2022-06-30T09:06:06.3942443Z","createdBy":"42a33e33-55bb-4995-80a2-d1b745371591","updatedBy":"42a33e33-55bb-4995-80a2-d1b745371591","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df6c9d2d-f853-11ec-9993-000d3ac42d43","type":"Microsoft.Authorization/roleAssignments","name":"df6c9d2d-f853-11ec-9993-000d3ac42d43"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-04T08:11:46.0687018Z","updatedOn":"2022-07-04T08:11:46.0687018Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40b64297-b408-4d22-bf82-9b6897914b91","type":"Microsoft.Authorization/roleAssignments","name":"40b64297-b408-4d22-bf82-9b6897914b91"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T17:33:53.2930064Z","updatedOn":"2022-07-05T17:33:53.2930064Z","createdBy":"8e17b6a3-5430-4318-a670-b9df4d106675","updatedBy":"8e17b6a3-5430-4318-a670-b9df4d106675","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a23e2991-fc88-11ec-b99d-fe2d37eeee3f","type":"Microsoft.Authorization/roleAssignments","name":"a23e2991-fc88-11ec-b99d-fe2d37eeee3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T17:33:56.8130933Z","updatedOn":"2022-07-05T17:33:56.8130933Z","createdBy":"8e17b6a3-5430-4318-a670-b9df4d106675","updatedBy":"8e17b6a3-5430-4318-a670-b9df4d106675","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a45a4b60-fc88-11ec-b99d-fe2d37eeee3f","type":"Microsoft.Authorization/roleAssignments","name":"a45a4b60-fc88-11ec-b99d-fe2d37eeee3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T20:50:59.7297844Z","updatedOn":"2022-07-05T20:50:59.7297844Z","createdBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","updatedBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2bf6d528-fca4-11ec-ae95-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2bf6d528-fca4-11ec-ae95-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T20:51:03.8324709Z","updatedOn":"2022-07-05T20:51:03.8324709Z","createdBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","updatedBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2eb27754-fca4-11ec-ae95-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2eb27754-fca4-11ec-ae95-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-06T18:17:04.1589374Z","updatedOn":"2022-07-06T18:17:04.1589374Z","createdBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","updatedBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d66150ce-778b-48b7-9eec-4af15a62d5fb","type":"Microsoft.Authorization/roleAssignments","name":"d66150ce-778b-48b7-9eec-4af15a62d5fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T04:14:56.8781019Z","updatedOn":"2022-07-07T04:14:56.8781019Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d244381e-1809-4aab-b4bf-f6c45efad8a0","type":"Microsoft.Authorization/roleAssignments","name":"d244381e-1809-4aab-b4bf-f6c45efad8a0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T08:02:02.2250086Z","updatedOn":"2022-07-07T08:02:02.2250086Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/209367bb-572e-4543-8ffa-261ab9e3e98e","type":"Microsoft.Authorization/roleAssignments","name":"209367bb-572e-4543-8ffa-261ab9e3e98e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T09:51:45.7545095Z","updatedOn":"2022-07-07T09:51:45.7545095Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9b5f542-ed8b-4591-902d-70f85896c4a9","type":"Microsoft.Authorization/roleAssignments","name":"a9b5f542-ed8b-4591-902d-70f85896c4a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T10:20:52.8789655Z","updatedOn":"2022-07-07T10:20:52.8789655Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67fb0754-2c67-405f-b195-0fc9fb022fc7","type":"Microsoft.Authorization/roleAssignments","name":"67fb0754-2c67-405f-b195-0fc9fb022fc7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T23:54:13.9262172Z","updatedOn":"2022-07-07T23:54:13.9262172Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a13e2124-87c9-402c-9611-fbb6a1b4e4b8","type":"Microsoft.Authorization/roleAssignments","name":"a13e2124-87c9-402c-9611-fbb6a1b4e4b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T02:43:53.0148931Z","updatedOn":"2022-07-08T02:43:53.0148931Z","createdBy":"34e81c0e-d5e6-478f-8544-2686be295567","updatedBy":"34e81c0e-d5e6-478f-8544-2686be295567","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc3fbff8-fe67-11ec-ac64-f69a873c5ca0","type":"Microsoft.Authorization/roleAssignments","name":"cc3fbff8-fe67-11ec-ac64-f69a873c5ca0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T02:43:59.1573960Z","updatedOn":"2022-07-08T02:43:59.1573960Z","createdBy":"34e81c0e-d5e6-478f-8544-2686be295567","updatedBy":"34e81c0e-d5e6-478f-8544-2686be295567","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cfe77b1e-fe67-11ec-ac64-f69a873c5ca0","type":"Microsoft.Authorization/roleAssignments","name":"cfe77b1e-fe67-11ec-ac64-f69a873c5ca0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T16:06:18.0035556Z","updatedOn":"2022-07-08T16:06:18.0035556Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/72a67832-6c5d-4b3e-9067-ceef4bc5dcba","type":"Microsoft.Authorization/roleAssignments","name":"72a67832-6c5d-4b3e-9067-ceef4bc5dcba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T16:17:28.2042061Z","updatedOn":"2022-07-08T16:17:28.2042061Z","createdBy":"cef6ee5d-6edd-413d-9eb7-c205c9802a3f","updatedBy":"cef6ee5d-6edd-413d-9eb7-c205c9802a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82dd5217-b1f7-4be5-8f03-5899493aa314","type":"Microsoft.Authorization/roleAssignments","name":"82dd5217-b1f7-4be5-8f03-5899493aa314"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T17:53:10.4671781Z","updatedOn":"2022-07-08T17:53:10.4671781Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4227602-fee6-11ec-ab63-000d3af64fa4","type":"Microsoft.Authorization/roleAssignments","name":"d4227602-fee6-11ec-ab63-000d3af64fa4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-11T21:30:54.4523951Z","updatedOn":"2022-07-11T21:30:54.4523951Z","createdBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","updatedBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a77632d-0fee-46d8-9f0d-d2ed44a26602","type":"Microsoft.Authorization/roleAssignments","name":"0a77632d-0fee-46d8-9f0d-d2ed44a26602"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-11T22:18:13.7630778Z","updatedOn":"2022-07-11T22:18:13.7630778Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3abee7ef-2e53-478a-b9cd-911e8768e9d6","type":"Microsoft.Authorization/roleAssignments","name":"3abee7ef-2e53-478a-b9cd-911e8768e9d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T04:19:56.7878684Z","updatedOn":"2022-07-12T04:19:56.7878684Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2335b0a-0199-11ed-9afe-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e2335b0a-0199-11ed-9afe-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T04:20:00.9520791Z","updatedOn":"2022-07-12T04:20:00.9520791Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4b0f194-0199-11ed-9afe-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e4b0f194-0199-11ed-9afe-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T11:12:50.2042423Z","updatedOn":"2022-07-12T11:12:50.2042423Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad70c028-d6b8-4efb-96d4-0bf9aa09566c","type":"Microsoft.Authorization/roleAssignments","name":"ad70c028-d6b8-4efb-96d4-0bf9aa09566c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T17:55:10.7687684Z","updatedOn":"2022-07-12T17:55:10.7687684Z","createdBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","updatedBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c642f341-020b-11ed-bc6a-02136178e3ad","type":"Microsoft.Authorization/roleAssignments","name":"c642f341-020b-11ed-bc6a-02136178e3ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T17:55:14.4120596Z","updatedOn":"2022-07-12T17:55:14.4120596Z","createdBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","updatedBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c87a1349-020b-11ed-bc6a-02136178e3ad","type":"Microsoft.Authorization/roleAssignments","name":"c87a1349-020b-11ed-bc6a-02136178e3ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T18:08:22.2861717Z","updatedOn":"2022-07-12T18:08:22.2861717Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/421ff42e-57e3-4b62-b4e6-e8e561eb7212","type":"Microsoft.Authorization/roleAssignments","name":"421ff42e-57e3-4b62-b4e6-e8e561eb7212"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T00:41:08.5337376Z","updatedOn":"2022-07-13T00:41:08.5337376Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78c85e30-0244-11ed-914f-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"78c85e30-0244-11ed-914f-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T08:27:18.8954270Z","updatedOn":"2022-07-13T08:27:18.8954270Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eda0948f-04c7-43eb-a560-0fe9db9681c5","type":"Microsoft.Authorization/roleAssignments","name":"eda0948f-04c7-43eb-a560-0fe9db9681c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T20:09:22.9119861Z","updatedOn":"2022-07-13T20:09:22.9119861Z","createdBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","updatedBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/af556422-02e7-11ed-b490-3e22fbbb55c2","type":"Microsoft.Authorization/roleAssignments","name":"af556422-02e7-11ed-b490-3e22fbbb55c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T20:09:36.4140354Z","updatedOn":"2022-07-13T20:09:36.4140354Z","createdBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","updatedBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b77f8f56-02e7-11ed-b490-3e22fbbb55c2","type":"Microsoft.Authorization/roleAssignments","name":"b77f8f56-02e7-11ed-b490-3e22fbbb55c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-15T03:29:06.6862069Z","updatedOn":"2022-07-15T03:29:06.6862069Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/77952ad7-ace5-45a1-9395-7025cd43927b","type":"Microsoft.Authorization/roleAssignments","name":"77952ad7-ace5-45a1-9395-7025cd43927b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-15T21:17:33.7746216Z","updatedOn":"2022-07-15T21:17:33.7746216Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8aa04a4a-0483-11ed-bcf7-00155dfde705","type":"Microsoft.Authorization/roleAssignments","name":"8aa04a4a-0483-11ed-bcf7-00155dfde705"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-15T21:17:36.9140017Z","updatedOn":"2022-07-15T21:17:36.9140017Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c49fe02-0483-11ed-bcf7-00155dfde705","type":"Microsoft.Authorization/roleAssignments","name":"8c49fe02-0483-11ed-bcf7-00155dfde705"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-18T18:31:44.6615613Z","updatedOn":"2022-07-18T18:31:44.6615613Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9913aa55-1df8-4b7f-b351-bfb577c653b7","type":"Microsoft.Authorization/roleAssignments","name":"9913aa55-1df8-4b7f-b351-bfb577c653b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T03:14:49.6541206Z","updatedOn":"2022-07-19T03:14:49.6541206Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f2a2c960-0710-11ed-af5f-000d3a183800","type":"Microsoft.Authorization/roleAssignments","name":"f2a2c960-0710-11ed-af5f-000d3a183800"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T03:14:52.8659954Z","updatedOn":"2022-07-19T03:14:52.8659954Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f491d46c-0710-11ed-af5f-000d3a183800","type":"Microsoft.Authorization/roleAssignments","name":"f491d46c-0710-11ed-af5f-000d3a183800"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T17:08:01.7695005Z","updatedOn":"2022-07-19T17:08:01.7695005Z","createdBy":"08a0af07-b641-44c2-a174-9b85f2db0af1","updatedBy":"08a0af07-b641-44c2-a174-9b85f2db0af1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57cd16da-0785-11ed-91ee-06d9bf349677","type":"Microsoft.Authorization/roleAssignments","name":"57cd16da-0785-11ed-91ee-06d9bf349677"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T17:28:52.5405320Z","updatedOn":"2022-07-19T17:28:52.5405320Z","createdBy":"395c8203-ec60-4c13-9730-5f960088f92b","updatedBy":"395c8203-ec60-4c13-9730-5f960088f92b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ab94087-7d29-4798-88b0-5ba408389266","type":"Microsoft.Authorization/roleAssignments","name":"6ab94087-7d29-4798-88b0-5ba408389266"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T20:15:51.4129938Z","updatedOn":"2022-07-19T20:15:51.4129938Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/04aeccd9-485e-4667-83ec-0940615dc03f","type":"Microsoft.Authorization/roleAssignments","name":"04aeccd9-485e-4667-83ec-0940615dc03f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-20T00:07:29.4350314Z","updatedOn":"2022-07-20T00:07:29.4350314Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1165576-07bf-11ed-a49d-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"f1165576-07bf-11ed-a49d-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-20T00:07:32.8732624Z","updatedOn":"2022-07-20T00:07:32.8732624Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f358bfdc-07bf-11ed-a49d-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"f358bfdc-07bf-11ed-a49d-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-21T12:09:08.1001074Z","updatedOn":"2022-07-21T12:09:08.1001074Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ebb1f193-08ed-11ed-a201-00224878d5c3","type":"Microsoft.Authorization/roleAssignments","name":"ebb1f193-08ed-11ed-a201-00224878d5c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-21T12:09:11.3486909Z","updatedOn":"2022-07-21T12:09:11.3486909Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/edaa26e6-08ed-11ed-a201-00224878d5c3","type":"Microsoft.Authorization/roleAssignments","name":"edaa26e6-08ed-11ed-a201-00224878d5c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-22T09:35:51.5690357Z","updatedOn":"2022-07-22T09:35:51.5690357Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd07b0f6-982a-4d85-9fdd-d44049270cbd","type":"Microsoft.Authorization/roleAssignments","name":"dd07b0f6-982a-4d85-9fdd-d44049270cbd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-24T17:57:05.6570323Z","updatedOn":"2022-07-24T17:57:05.6570323Z","createdBy":"567715d4-847a-4def-acb2-d157ebfa8439","updatedBy":"567715d4-847a-4def-acb2-d157ebfa8439","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/069fdbd1-0b7a-11ed-aa35-a2d44093b98e","type":"Microsoft.Authorization/roleAssignments","name":"069fdbd1-0b7a-11ed-aa35-a2d44093b98e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-24T17:57:10.6197123Z","updatedOn":"2022-07-24T17:57:10.6197123Z","createdBy":"567715d4-847a-4def-acb2-d157ebfa8439","updatedBy":"567715d4-847a-4def-acb2-d157ebfa8439","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09844b71-0b7a-11ed-aa35-a2d44093b98e","type":"Microsoft.Authorization/roleAssignments","name":"09844b71-0b7a-11ed-aa35-a2d44093b98e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-25T23:51:56.7193261Z","updatedOn":"2022-07-25T23:51:56.7193261Z","createdBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","updatedBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3d43338-0c74-11ed-a558-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"c3d43338-0c74-11ed-a558-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-25T23:51:59.2783640Z","updatedOn":"2022-07-25T23:51:59.2783640Z","createdBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","updatedBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5533d8a-0c74-11ed-a558-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"c5533d8a-0c74-11ed-a558-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-28T04:50:50.7078047Z","updatedOn":"2022-07-28T04:50:50.7078047Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da343068-0e30-11ed-91a5-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"da343068-0e30-11ed-91a5-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-28T04:50:53.7664793Z","updatedOn":"2022-07-28T04:50:53.7664793Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dbfbe50a-0e30-11ed-91a5-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"dbfbe50a-0e30-11ed-91a5-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-29T16:16:58.9941922Z","updatedOn":"2022-07-29T16:16:58.9941922Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/880fa390-3bd7-4075-8071-e33e45423e36","type":"Microsoft.Authorization/roleAssignments","name":"880fa390-3bd7-4075-8071-e33e45423e36"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-31T19:34:43.4356237Z","updatedOn":"2022-07-31T19:34:43.4356237Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d352709e-1107-11ed-be9f-beee8f4e086d","type":"Microsoft.Authorization/roleAssignments","name":"d352709e-1107-11ed-be9f-beee8f4e086d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-04T04:49:44.0295503Z","updatedOn":"2022-08-04T04:49:44.0295503Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da803814-13b0-11ed-b124-e2848198df96","type":"Microsoft.Authorization/roleAssignments","name":"da803814-13b0-11ed-b124-e2848198df96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-04T04:49:49.5833937Z","updatedOn":"2022-08-04T04:49:49.5833937Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd76350a-13b0-11ed-b124-e2848198df96","type":"Microsoft.Authorization/roleAssignments","name":"dd76350a-13b0-11ed-b124-e2848198df96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-05T14:15:13.1099119Z","updatedOn":"2022-08-05T14:15:13.1099119Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7a4c8f3-b60c-4341-acdb-3b8d60976116","type":"Microsoft.Authorization/roleAssignments","name":"e7a4c8f3-b60c-4341-acdb-3b8d60976116"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-08T08:55:19.4739379Z","updatedOn":"2022-08-08T08:55:19.4739379Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3f792cd-16f7-11ed-afb5-000d3a0611f6","type":"Microsoft.Authorization/roleAssignments","name":"d3f792cd-16f7-11ed-afb5-000d3a0611f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-08T14:33:12.5245418Z","updatedOn":"2022-08-08T14:33:12.5245418Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0184de3c-04d4-433f-9221-2df571d921a5","type":"Microsoft.Authorization/roleAssignments","name":"0184de3c-04d4-433f-9221-2df571d921a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-08T17:41:09.4113992Z","updatedOn":"2022-08-08T17:41:09.4113992Z","createdBy":"19263705-0667-497e-85e7-a930fa3441ec","updatedBy":"19263705-0667-497e-85e7-a930fa3441ec","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4919e77a-1741-11ed-b6db-0022487d76b7","type":"Microsoft.Authorization/roleAssignments","name":"4919e77a-1741-11ed-b6db-0022487d76b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:45:21.8695164Z","updatedOn":"2022-08-12T05:45:21.8695164Z","createdBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","updatedBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f23b86bb-1a01-11ed-b496-66a3f79a5cd7","type":"Microsoft.Authorization/roleAssignments","name":"f23b86bb-1a01-11ed-b496-66a3f79a5cd7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:45:28.6932347Z","updatedOn":"2022-08-12T05:45:28.6932347Z","createdBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","updatedBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6a0cefb-1a01-11ed-b496-66a3f79a5cd7","type":"Microsoft.Authorization/roleAssignments","name":"f6a0cefb-1a01-11ed-b496-66a3f79a5cd7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:57:08.1910800Z","updatedOn":"2022-08-12T05:57:08.1910800Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/97fa583a-1a03-11ed-8141-0022484c72fc","type":"Microsoft.Authorization/roleAssignments","name":"97fa583a-1a03-11ed-8141-0022484c72fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:57:16.8561530Z","updatedOn":"2022-08-12T05:57:16.8561530Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9bed6f7d-1a03-11ed-8141-0022484c72fc","type":"Microsoft.Authorization/roleAssignments","name":"9bed6f7d-1a03-11ed-8141-0022484c72fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T10:56:06.3724576Z","updatedOn":"2022-08-12T10:56:06.3724576Z","createdBy":"312333b2-b433-4e3c-bb6f-f60419faa168","updatedBy":"312333b2-b433-4e3c-bb6f-f60419faa168","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5da07cdc-1a2d-11ed-97c4-36311d0c4477","type":"Microsoft.Authorization/roleAssignments","name":"5da07cdc-1a2d-11ed-97c4-36311d0c4477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T10:56:12.1781791Z","updatedOn":"2022-08-12T10:56:12.1781791Z","createdBy":"312333b2-b433-4e3c-bb6f-f60419faa168","updatedBy":"312333b2-b433-4e3c-bb6f-f60419faa168","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/60dfcd5b-1a2d-11ed-97c4-36311d0c4477","type":"Microsoft.Authorization/roleAssignments","name":"60dfcd5b-1a2d-11ed-97c4-36311d0c4477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T23:47:07.1823504Z","updatedOn":"2022-08-12T23:47:07.1823504Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12955060-1a99-11ed-80ae-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"12955060-1a99-11ed-80ae-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T23:47:10.3981690Z","updatedOn":"2022-08-12T23:47:10.3981690Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1452bfa0-1a99-11ed-80ae-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"1452bfa0-1a99-11ed-80ae-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-14T04:59:52.9674492Z","updatedOn":"2022-08-14T04:59:52.9674492Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee779146-1b8d-11ed-ad0f-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"ee779146-1b8d-11ed-ad0f-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-14T04:59:57.7071631Z","updatedOn":"2022-08-14T04:59:57.7071631Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f13fa4b3-1b8d-11ed-ad0f-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"f13fa4b3-1b8d-11ed-ad0f-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-16T23:10:44.7176056Z","updatedOn":"2022-08-16T23:10:44.7176056Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1d255e1-0f5e-41c4-93eb-e683b5cf2ca4","type":"Microsoft.Authorization/roleAssignments","name":"f1d255e1-0f5e-41c4-93eb-e683b5cf2ca4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-16T23:31:16.6919768Z","updatedOn":"2022-08-16T23:31:16.6919768Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a45cbdf-008d-4716-96eb-38389a417827","type":"Microsoft.Authorization/roleAssignments","name":"2a45cbdf-008d-4716-96eb-38389a417827"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-18T00:30:35.0176680Z","updatedOn":"2022-08-18T00:30:35.0176680Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f91d7aa2-1e8c-11ed-b1a6-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f91d7aa2-1e8c-11ed-b1a6-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-18T00:30:38.2729005Z","updatedOn":"2022-08-18T00:30:38.2729005Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb0d664c-1e8c-11ed-b1a6-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"fb0d664c-1e8c-11ed-b1a6-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-18T15:52:38.7113712Z","updatedOn":"2022-08-18T15:52:38.7113712Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8772ddf6-c657-4010-ab7b-5d8627ba3601","type":"Microsoft.Authorization/roleAssignments","name":"8772ddf6-c657-4010-ab7b-5d8627ba3601"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-22T02:37:48.0231077Z","updatedOn":"2022-08-22T02:37:48.0231077Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7c56d8ab-b9ef-4d93-ae58-838c1209c621","type":"Microsoft.Authorization/roleAssignments","name":"7c56d8ab-b9ef-4d93-ae58-838c1209c621"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-22T02:41:47.6649206Z","updatedOn":"2022-08-22T02:41:47.6649206Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b66d25d3-0cb1-4413-9445-caf5db5b40c9","type":"Microsoft.Authorization/roleAssignments","name":"b66d25d3-0cb1-4413-9445-caf5db5b40c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-22T06:25:39.4709093Z","updatedOn":"2022-08-22T06:25:39.4709093Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb7ca852-9adb-4205-a828-a17ca774a8a4","type":"Microsoft.Authorization/roleAssignments","name":"eb7ca852-9adb-4205-a828-a17ca774a8a4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T02:16:22.3620594Z","updatedOn":"2022-08-23T02:16:22.3620594Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94556c2e-2289-11ed-9371-000d3ac51247","type":"Microsoft.Authorization/roleAssignments","name":"94556c2e-2289-11ed-9371-000d3ac51247"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T08:56:15.8011348Z","updatedOn":"2022-08-23T08:56:15.8011348Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7117911f-22c1-11ed-be42-000d3a084591","type":"Microsoft.Authorization/roleAssignments","name":"7117911f-22c1-11ed-be42-000d3a084591"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T08:56:21.1375800Z","updatedOn":"2022-08-23T08:56:21.1375800Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/73becf7d-22c1-11ed-be42-000d3a084591","type":"Microsoft.Authorization/roleAssignments","name":"73becf7d-22c1-11ed-be42-000d3a084591"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T14:02:07.2343806Z","updatedOn":"2022-08-23T14:02:07.2343806Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b9bf190-22ec-11ed-8f86-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"2b9bf190-22ec-11ed-8f86-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T14:02:10.9785694Z","updatedOn":"2022-08-23T14:02:10.9785694Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2dd0099d-22ec-11ed-8f86-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"2dd0099d-22ec-11ed-8f86-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T23:22:24.8240339Z","updatedOn":"2022-08-23T23:22:24.8240339Z","createdBy":"395c8203-ec60-4c13-9730-5f960088f92b","updatedBy":"395c8203-ec60-4c13-9730-5f960088f92b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/abda2c2b-daa3-42bb-abbd-e13cec5fb6b3","type":"Microsoft.Authorization/roleAssignments","name":"abda2c2b-daa3-42bb-abbd-e13cec5fb6b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T23:23:32.8133517Z","updatedOn":"2022-08-23T23:23:32.8133517Z","createdBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","updatedBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/994cd0f0-233a-11ed-90e8-66137476d927","type":"Microsoft.Authorization/roleAssignments","name":"994cd0f0-233a-11ed-90e8-66137476d927"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T23:23:35.3751695Z","updatedOn":"2022-08-23T23:23:35.3751695Z","createdBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","updatedBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9add5dfe-233a-11ed-90e8-66137476d927","type":"Microsoft.Authorization/roleAssignments","name":"9add5dfe-233a-11ed-90e8-66137476d927"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-26T02:48:17.4348909Z","updatedOn":"2022-08-26T02:48:17.4348909Z","createdBy":"d297f8cf-3724-4da6-ae0c-6ea639225042","updatedBy":"d297f8cf-3724-4da6-ae0c-6ea639225042","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9125ee0-b9af-4d25-a2e5-886ad210b3e8","type":"Microsoft.Authorization/roleAssignments","name":"e9125ee0-b9af-4d25-a2e5-886ad210b3e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-29T22:08:43.6923850Z","updatedOn":"2022-08-29T22:08:43.6923850Z","createdBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","updatedBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24b2acd4-27e7-11ed-aa57-9eb40d98da7e","type":"Microsoft.Authorization/roleAssignments","name":"24b2acd4-27e7-11ed-aa57-9eb40d98da7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-29T22:08:46.8049719Z","updatedOn":"2022-08-29T22:08:46.8049719Z","createdBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","updatedBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26a4fa7f-27e7-11ed-aa57-9eb40d98da7e","type":"Microsoft.Authorization/roleAssignments","name":"26a4fa7f-27e7-11ed-aa57-9eb40d98da7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-29T22:11:06.3024798Z","updatedOn":"2022-08-29T22:11:06.3024798Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63e0b566-276e-405d-8d4e-1c82b1f937c6","type":"Microsoft.Authorization/roleAssignments","name":"63e0b566-276e-405d-8d4e-1c82b1f937c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:50:53.4210961Z","updatedOn":"2022-08-30T23:50:53.4210961Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94aa5054-28be-11ed-a6d3-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"94aa5054-28be-11ed-a6d3-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:50:57.2039466Z","updatedOn":"2022-08-30T23:50:57.2039466Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96f9353c-28be-11ed-a6d3-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"96f9353c-28be-11ed-a6d3-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:55:18.1665901Z","updatedOn":"2022-08-30T23:55:18.1665901Z","createdBy":"08de6591-dec9-4255-ab17-d6919151fadd","updatedBy":"08de6591-dec9-4255-ab17-d6919151fadd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/32738d64-28bf-11ed-8c18-d28ee6de8df0","type":"Microsoft.Authorization/roleAssignments","name":"32738d64-28bf-11ed-8c18-d28ee6de8df0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:55:21.0832794Z","updatedOn":"2022-08-30T23:55:21.0832794Z","createdBy":"08de6591-dec9-4255-ab17-d6919151fadd","updatedBy":"08de6591-dec9-4255-ab17-d6919151fadd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/347773d2-28bf-11ed-8c18-d28ee6de8df0","type":"Microsoft.Authorization/roleAssignments","name":"347773d2-28bf-11ed-8c18-d28ee6de8df0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-31T23:23:54.3892344Z","updatedOn":"2022-08-31T23:23:54.3892344Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa44d69e-2983-11ed-aa08-92f3f7a6dd9b","type":"Microsoft.Authorization/roleAssignments","name":"fa44d69e-2983-11ed-aa08-92f3f7a6dd9b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-31T23:23:57.6913146Z","updatedOn":"2022-08-31T23:23:57.6913146Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc468884-2983-11ed-aa08-92f3f7a6dd9b","type":"Microsoft.Authorization/roleAssignments","name":"fc468884-2983-11ed-aa08-92f3f7a6dd9b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-01T06:08:41.4708815Z","updatedOn":"2022-09-01T06:08:41.4708815Z","createdBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","updatedBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/86088e13-29bc-11ed-9e75-ee990064eed4","type":"Microsoft.Authorization/roleAssignments","name":"86088e13-29bc-11ed-9e75-ee990064eed4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-01T14:36:10.3068118Z","updatedOn":"2022-09-01T14:36:10.3068118Z","createdBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","updatedBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b6d0b78-2a03-11ed-8b33-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6b6d0b78-2a03-11ed-8b33-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-01T14:36:19.4793808Z","updatedOn":"2022-09-01T14:36:19.4793808Z","createdBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","updatedBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70bc79b0-2a03-11ed-8b33-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"70bc79b0-2a03-11ed-8b33-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-05T20:13:38.7677056Z","updatedOn":"2022-09-05T20:13:38.7677056Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/396cb586-2d57-11ed-8f60-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"396cb586-2d57-11ed-8f60-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-06T19:58:31.4389144Z","updatedOn":"2022-09-06T19:58:31.4389144Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47bb56b5-2e1e-11ed-9020-000d3a6d9a18","type":"Microsoft.Authorization/roleAssignments","name":"47bb56b5-2e1e-11ed-9020-000d3a6d9a18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-06T19:58:35.6283701Z","updatedOn":"2022-09-06T19:58:35.6283701Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a30eda3-2e1e-11ed-9020-000d3a6d9a18","type":"Microsoft.Authorization/roleAssignments","name":"4a30eda3-2e1e-11ed-9020-000d3a6d9a18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-08T14:38:34.2901394Z","updatedOn":"2022-09-08T14:38:34.2901394Z","createdBy":"61a5600d-3609-43e4-9dd8-bcf58e3ce51f","updatedBy":"61a5600d-3609-43e4-9dd8-bcf58e3ce51f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea4dcb49-2f83-11ed-9efa-000d3a181b06","type":"Microsoft.Authorization/roleAssignments","name":"ea4dcb49-2f83-11ed-9efa-000d3a181b06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-08T17:46:08.1384737Z","updatedOn":"2022-09-08T17:46:08.1384737Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1dc95ee4-2f9e-11ed-89d2-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"1dc95ee4-2f9e-11ed-89d2-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-08T17:46:11.6717566Z","updatedOn":"2022-09-08T17:46:11.6717566Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2008f142-2f9e-11ed-89d2-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2008f142-2f9e-11ed-89d2-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-12T23:42:55.7564365Z","updatedOn":"2022-09-12T23:42:55.7564365Z","createdBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","updatedBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fa0c69c-32f4-11ed-aee5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"9fa0c69c-32f4-11ed-aee5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-12T23:43:04.5756788Z","updatedOn":"2022-09-12T23:43:04.5756788Z","createdBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","updatedBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a4e1656c-32f4-11ed-aee5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"a4e1656c-32f4-11ed-aee5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T00:18:28.3312561Z","updatedOn":"2022-09-13T00:18:28.3312561Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/965f9705-32f9-11ed-a03a-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"965f9705-32f9-11ed-a03a-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T00:18:32.9627131Z","updatedOn":"2022-09-13T00:18:32.9627131Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9918693b-32f9-11ed-a03a-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"9918693b-32f9-11ed-a03a-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T05:20:21.8356068Z","updatedOn":"2022-09-13T05:20:21.8356068Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14ac626a-3acb-4867-a3ce-32d85da9a0e7","type":"Microsoft.Authorization/roleAssignments","name":"14ac626a-3acb-4867-a3ce-32d85da9a0e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T20:31:46.8554799Z","updatedOn":"2022-09-13T20:31:46.8554799Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d71c7b8-3398-11ed-ad11-e6ebdcb69945","type":"Microsoft.Authorization/roleAssignments","name":"6d71c7b8-3398-11ed-ad11-e6ebdcb69945"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T20:31:50.1456004Z","updatedOn":"2022-09-13T20:31:50.1456004Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ca65e0f-3398-11ed-ad11-e6ebdcb69945","type":"Microsoft.Authorization/roleAssignments","name":"7ca65e0f-3398-11ed-ad11-e6ebdcb69945"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T23:17:04.2606442Z","updatedOn":"2022-09-13T23:17:04.2606442Z","createdBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","updatedBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ecfc544-bb26-4b57-9c52-7a3751bf5b9a","type":"Microsoft.Authorization/roleAssignments","name":"8ecfc544-bb26-4b57-9c52-7a3751bf5b9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-14T20:11:09.0922785Z","updatedOn":"2022-09-14T20:11:09.0922785Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/43c2f0e6-bf81-4e83-bf98-eb7d592639a5","type":"Microsoft.Authorization/roleAssignments","name":"43c2f0e6-bf81-4e83-bf98-eb7d592639a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-15T17:44:22.3186068Z","updatedOn":"2022-09-15T17:44:22.3186068Z","createdBy":"2182129f-e575-4986-a7fb-2be7772ba46f","updatedBy":"2182129f-e575-4986-a7fb-2be7772ba46f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/05e871b7-351e-11ed-8cc7-32a64839c39d","type":"Microsoft.Authorization/roleAssignments","name":"05e871b7-351e-11ed-8cc7-32a64839c39d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ab4d3d-a1bf-4477-8ad9-8359bc988f69","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-15T22:34:54.1872835Z","updatedOn":"2022-09-15T22:34:54.1872835Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9ac6f9f-a6dc-43e5-bc80-6e362547ff03","type":"Microsoft.Authorization/roleAssignments","name":"a9ac6f9f-a6dc-43e5-bc80-6e362547ff03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-15T22:36:25.6520797Z","updatedOn":"2022-09-15T22:36:25.6520797Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a48452ae-2a7a-4a35-bc22-de46608a8c12","type":"Microsoft.Authorization/roleAssignments","name":"a48452ae-2a7a-4a35-bc22-de46608a8c12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ab4d3d-a1bf-4477-8ad9-8359bc988f69","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-16T03:26:44.5972975Z","updatedOn":"2022-09-16T03:26:44.5972975Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7ddb897-f37b-4617-8b62-26a42b72d0fd","type":"Microsoft.Authorization/roleAssignments","name":"b7ddb897-f37b-4617-8b62-26a42b72d0fd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-16T03:27:20.0290180Z","updatedOn":"2022-09-16T03:27:20.0290180Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36cbdcc8-a70b-42a9-836a-9bb89dbd301a","type":"Microsoft.Authorization/roleAssignments","name":"36cbdcc8-a70b-42a9-836a-9bb89dbd301a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-16T14:21:41.5963217Z","updatedOn":"2022-09-16T14:21:41.5963217Z","createdBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","updatedBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc428d08-6f99-4619-9554-500bfc75b861","type":"Microsoft.Authorization/roleAssignments","name":"bc428d08-6f99-4619-9554-500bfc75b861"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T01:59:15.5981081Z","updatedOn":"2022-09-19T01:59:15.5981081Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a92c46b1-37be-11ed-8745-00224857f2c5","type":"Microsoft.Authorization/roleAssignments","name":"a92c46b1-37be-11ed-8745-00224857f2c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T01:59:20.5513267Z","updatedOn":"2022-09-19T01:59:20.5513267Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac11dbd2-37be-11ed-8745-00224857f2c5","type":"Microsoft.Authorization/roleAssignments","name":"ac11dbd2-37be-11ed-8745-00224857f2c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T09:51:42.7586328Z","updatedOn":"2022-09-19T09:51:42.7586328Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1cb1222d-5cb9-4d4a-a901-850f4a0d08da","type":"Microsoft.Authorization/roleAssignments","name":"1cb1222d-5cb9-4d4a-a901-850f4a0d08da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T18:49:44.8806347Z","updatedOn":"2022-09-19T18:49:44.8806347Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9c6a4b4-714e-45fc-8bc4-11c41f8c306a","type":"Microsoft.Authorization/roleAssignments","name":"b9c6a4b4-714e-45fc-8bc4-11c41f8c306a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T22:48:28.6777206Z","updatedOn":"2022-09-19T22:48:28.6777206Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ea76d8b-9daa-4d62-bfc8-bb9013ecec53","type":"Microsoft.Authorization/roleAssignments","name":"3ea76d8b-9daa-4d62-bfc8-bb9013ecec53"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-20T22:34:06.1765862Z","updatedOn":"2022-09-20T22:34:06.1765862Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/475a9fc4-c1a8-42c7-9e4e-d897c83f2a86","type":"Microsoft.Authorization/roleAssignments","name":"475a9fc4-c1a8-42c7-9e4e-d897c83f2a86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/434105ed-43f6-45c7-a02f-909b2ba83430","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-21T00:11:12.3038110Z","updatedOn":"2022-09-21T00:11:12.3038110Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce3975e8-d43d-4f8c-a315-e20609d7472a","type":"Microsoft.Authorization/roleAssignments","name":"ce3975e8-d43d-4f8c-a315-e20609d7472a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T07:30:57.3801733Z","updatedOn":"2022-09-23T07:30:57.3801733Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7a5ed22-3b11-11ed-876d-1a48d609785e","type":"Microsoft.Authorization/roleAssignments","name":"a7a5ed22-3b11-11ed-876d-1a48d609785e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T14:34:07.2104918Z","updatedOn":"2022-09-23T14:34:07.2104918Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c756e2ff-3b4c-11ed-be28-000d3a9e5815","type":"Microsoft.Authorization/roleAssignments","name":"c756e2ff-3b4c-11ed-be28-000d3a9e5815"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T14:34:10.7191458Z","updatedOn":"2022-09-23T14:34:10.7191458Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c96352a0-3b4c-11ed-be28-000d3a9e5815","type":"Microsoft.Authorization/roleAssignments","name":"c96352a0-3b4c-11ed-be28-000d3a9e5815"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T19:05:01.8468743Z","updatedOn":"2022-09-23T19:05:01.8468743Z","createdBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","updatedBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ecc7527-3b72-11ed-92ab-a642c656be12","type":"Microsoft.Authorization/roleAssignments","name":"9ecc7527-3b72-11ed-92ab-a642c656be12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T21:31:12.8549148Z","updatedOn":"2022-09-23T21:31:12.8549148Z","createdBy":"0fa3313e-2eee-4835-aeff-681e46364ab6","updatedBy":"0fa3313e-2eee-4835-aeff-681e46364ab6","delegatedManagedIdentityResourceId":null,"description":"New + AKS SRE team member"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b79302d-37ad-406c-b32d-cddbd2387781","type":"Microsoft.Authorization/roleAssignments","name":"2b79302d-37ad-406c-b32d-cddbd2387781"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-25T18:15:06.7527496Z","updatedOn":"2022-09-25T18:15:06.7527496Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f83fc539-aab6-4862-8635-cbe5472eadad","type":"Microsoft.Authorization/roleAssignments","name":"f83fc539-aab6-4862-8635-cbe5472eadad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-25T17:34:50.8733023Z","updatedOn":"2023-01-25T17:34:50.8733023Z","createdBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","updatedBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/91a85771-9cd6-11ed-a528-6045bd8532c1","type":"Microsoft.Authorization/roleAssignments","name":"91a85771-9cd6-11ed-a528-6045bd8532c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T19:40:10.2077596Z","updatedOn":"2023-01-26T19:40:10.2077596Z","createdBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","updatedBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3deeb34a-9db1-11ed-9882-bad388e32b6e","type":"Microsoft.Authorization/roleAssignments","name":"3deeb34a-9db1-11ed-9882-bad388e32b6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T19:40:13.9767599Z","updatedOn":"2023-01-26T19:40:13.9767599Z","createdBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","updatedBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/405d87d0-9db1-11ed-9882-bad388e32b6e","type":"Microsoft.Authorization/roleAssignments","name":"405d87d0-9db1-11ed-9882-bad388e32b6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T21:29:38.0736564Z","updatedOn":"2023-01-26T21:29:38.0736564Z","createdBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","updatedBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88db6aa7-9dc0-11ed-873b-02af4457d3da","type":"Microsoft.Authorization/roleAssignments","name":"88db6aa7-9dc0-11ed-873b-02af4457d3da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T21:29:41.9721959Z","updatedOn":"2023-01-26T21:29:41.9721959Z","createdBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","updatedBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8b20c92b-9dc0-11ed-873b-02af4457d3da","type":"Microsoft.Authorization/roleAssignments","name":"8b20c92b-9dc0-11ed-873b-02af4457d3da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-28T06:05:38.5919016Z","updatedOn":"2023-01-28T06:05:38.5919016Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ee0fdb3-65a0-4344-a73d-15f6b92ea58b","type":"Microsoft.Authorization/roleAssignments","name":"7ee0fdb3-65a0-4344-a73d-15f6b92ea58b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-29T03:40:38.5139182Z","updatedOn":"2023-01-29T03:40:38.5139182Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1dec2dc-9f86-11ed-a95c-0022487e65a6","type":"Microsoft.Authorization/roleAssignments","name":"b1dec2dc-9f86-11ed-a95c-0022487e65a6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-30T05:50:30.0380171Z","updatedOn":"2023-01-30T05:50:30.0380171Z","createdBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","updatedBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/792989a2-3985-4915-bf5a-4eb5451f731b","type":"Microsoft.Authorization/roleAssignments","name":"792989a2-3985-4915-bf5a-4eb5451f731b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-30T15:03:46.9770738Z","updatedOn":"2023-01-30T15:03:46.9770738Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a97ceb8-a0af-11ed-bf9c-a8a1598cc0f3","type":"Microsoft.Authorization/roleAssignments","name":"4a97ceb8-a0af-11ed-bf9c-a8a1598cc0f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-31T08:45:32.8563782Z","updatedOn":"2023-01-31T08:45:32.8563782Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ea26baa-a143-11ed-85d1-1eb0db5454d6","type":"Microsoft.Authorization/roleAssignments","name":"9ea26baa-a143-11ed-85d1-1eb0db5454d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-31T09:18:23.0405616Z","updatedOn":"2023-01-31T09:18:23.0405616Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9063ace1-9e8e-4195-82f8-39fe17fca5ce","type":"Microsoft.Authorization/roleAssignments","name":"9063ace1-9e8e-4195-82f8-39fe17fca5ce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-01T08:12:47.9822357Z","updatedOn":"2023-02-01T08:12:47.9822357Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/31c05c6a-a87b-4ad2-a07e-7acaadecb649","type":"Microsoft.Authorization/roleAssignments","name":"31c05c6a-a87b-4ad2-a07e-7acaadecb649"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-01T19:03:12.2207490Z","updatedOn":"2023-02-01T19:03:12.2207490Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/153174d5-a263-11ed-bad7-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"153174d5-a263-11ed-bad7-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-01T19:03:15.7264802Z","updatedOn":"2023-02-01T19:03:15.7264802Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/172f1d82-a263-11ed-bad7-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"172f1d82-a263-11ed-bad7-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-02T03:13:38.6056072Z","updatedOn":"2023-02-02T03:13:38.6056072Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88d8d974-d77d-450f-89ee-d4a98efea6d8","type":"Microsoft.Authorization/roleAssignments","name":"88d8d974-d77d-450f-89ee-d4a98efea6d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-02T03:19:55.3070568Z","updatedOn":"2023-02-02T03:19:55.3070568Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f273f651-5bde-4219-ab11-33842c5d3224","type":"Microsoft.Authorization/roleAssignments","name":"f273f651-5bde-4219-ab11-33842c5d3224"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-02T09:43:41.0210838Z","updatedOn":"2023-02-02T09:43:41.0210838Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2e9d149-730b-447b-b3e8-3a1fff80f1e1","type":"Microsoft.Authorization/roleAssignments","name":"b2e9d149-730b-447b-b3e8-3a1fff80f1e1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-03T18:49:50.9127720Z","updatedOn":"2023-02-03T18:49:50.9127720Z","createdBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","updatedBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8984621e-a3f3-11ed-b23c-a08cfdd89f0d","type":"Microsoft.Authorization/roleAssignments","name":"8984621e-a3f3-11ed-b23c-a08cfdd89f0d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-03T18:49:55.4277284Z","updatedOn":"2023-02-03T18:49:55.4277284Z","createdBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","updatedBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c3308b8-a3f3-11ed-b23c-a08cfdd89f0d","type":"Microsoft.Authorization/roleAssignments","name":"8c3308b8-a3f3-11ed-b23c-a08cfdd89f0d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-03T21:54:32.5272557Z","updatedOn":"2023-02-03T21:54:32.5272557Z","createdBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","updatedBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5650998f-a40d-11ed-8cfd-763d1fcabad1","type":"Microsoft.Authorization/roleAssignments","name":"5650998f-a40d-11ed-8cfd-763d1fcabad1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-06T16:05:18.7158859Z","updatedOn":"2023-02-06T16:05:18.7158859Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b2a1bdc-a638-11ed-b0e4-de5d54961c0d","type":"Microsoft.Authorization/roleAssignments","name":"0b2a1bdc-a638-11ed-b0e4-de5d54961c0d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-06T21:22:16.0685608Z","updatedOn":"2023-02-06T21:22:16.0685608Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5372f2e2-a664-11ed-99dd-00155d7b2003","type":"Microsoft.Authorization/roleAssignments","name":"5372f2e2-a664-11ed-99dd-00155d7b2003"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T02:31:53.1943940Z","updatedOn":"2023-02-07T02:31:53.1943940Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/93d9ca8e-a68f-11ed-99fe-82539686faad","type":"Microsoft.Authorization/roleAssignments","name":"93d9ca8e-a68f-11ed-99fe-82539686faad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T17:35:09.5804790Z","updatedOn":"2023-02-07T17:35:09.5804790Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c423996c-a70d-11ed-805e-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"c423996c-a70d-11ed-805e-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T21:59:01.9278864Z","updatedOn":"2023-02-07T21:59:01.9278864Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/415eb8ac-2243-415a-8a6a-692cfd82054b","type":"Microsoft.Authorization/roleAssignments","name":"415eb8ac-2243-415a-8a6a-692cfd82054b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T23:07:32.1844748Z","updatedOn":"2023-02-07T23:07:32.1844748Z","createdBy":"bd73a081-fc57-4d58-adb0-f7b098797225","updatedBy":"bd73a081-fc57-4d58-adb0-f7b098797225","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/32edd9f4-a73c-11ed-a351-64d69a01bd73","type":"Microsoft.Authorization/roleAssignments","name":"32edd9f4-a73c-11ed-a351-64d69a01bd73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T23:07:37.2690514Z","updatedOn":"2023-02-07T23:07:37.2690514Z","createdBy":"bd73a081-fc57-4d58-adb0-f7b098797225","updatedBy":"bd73a081-fc57-4d58-adb0-f7b098797225","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3567b721-a73c-11ed-a351-64d69a01bd73","type":"Microsoft.Authorization/roleAssignments","name":"3567b721-a73c-11ed-a351-64d69a01bd73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T16:04:37.2489661Z","updatedOn":"2023-02-08T16:04:37.2489661Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4891c61c-a7ca-11ed-926c-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"4891c61c-a7ca-11ed-926c-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T19:28:37.4403950Z","updatedOn":"2023-02-08T19:28:37.4403950Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7017b0f-925c-43b0-9416-6eb60d8374e3","type":"Microsoft.Authorization/roleAssignments","name":"a7017b0f-925c-43b0-9416-6eb60d8374e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T19:42:35.5124742Z","updatedOn":"2023-02-08T19:42:35.5124742Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd059c37-a7e8-11ed-8d91-7e3b8160807d","type":"Microsoft.Authorization/roleAssignments","name":"bd059c37-a7e8-11ed-8d91-7e3b8160807d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T19:42:39.7153998Z","updatedOn":"2023-02-08T19:42:39.7153998Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf728611-a7e8-11ed-8d91-7e3b8160807d","type":"Microsoft.Authorization/roleAssignments","name":"bf728611-a7e8-11ed-8d91-7e3b8160807d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T22:45:32.7092683Z","updatedOn":"2023-02-08T22:45:32.7092683Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c82f6230-4661-4b60-9ae4-cbd24bc5971d","type":"Microsoft.Authorization/roleAssignments","name":"c82f6230-4661-4b60-9ae4-cbd24bc5971d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T23:38:55.4476717Z","updatedOn":"2023-02-08T23:38:55.4476717Z","createdBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","updatedBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b563f5e3-a809-11ed-92da-061e1dff6519","type":"Microsoft.Authorization/roleAssignments","name":"b563f5e3-a809-11ed-92da-061e1dff6519"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T17:18:01.5061195Z","updatedOn":"2023-02-09T17:18:01.5061195Z","createdBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","updatedBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b477f0fa-a89d-11ed-9d1f-4e375b705c86","type":"Microsoft.Authorization/roleAssignments","name":"b477f0fa-a89d-11ed-9d1f-4e375b705c86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T17:18:03.2471424Z","updatedOn":"2023-02-09T17:18:03.2471424Z","createdBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","updatedBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b58085bc-a89d-11ed-9d1f-4e375b705c86","type":"Microsoft.Authorization/roleAssignments","name":"b58085bc-a89d-11ed-9d1f-4e375b705c86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T18:21:34.0931358Z","updatedOn":"2023-02-09T18:21:34.0931358Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5fe27fe4-6007-4829-afa0-0a3e3780b6d3","type":"Microsoft.Authorization/roleAssignments","name":"5fe27fe4-6007-4829-afa0-0a3e3780b6d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T21:44:30.2729026Z","updatedOn":"2023-02-09T21:44:30.2729026Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eecd187f-a8c2-11ed-9284-1e4dbb47ca8f","type":"Microsoft.Authorization/roleAssignments","name":"eecd187f-a8c2-11ed-9284-1e4dbb47ca8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T21:44:36.9652403Z","updatedOn":"2023-02-09T21:44:36.9652403Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f27e86e2-a8c2-11ed-9284-1e4dbb47ca8f","type":"Microsoft.Authorization/roleAssignments","name":"f27e86e2-a8c2-11ed-9284-1e4dbb47ca8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T01:19:04.3719723Z","updatedOn":"2023-02-10T01:19:04.3719723Z","createdBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","updatedBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d5cdb0f-1b3b-46f9-8e1b-84661382dfe9","type":"Microsoft.Authorization/roleAssignments","name":"0d5cdb0f-1b3b-46f9-8e1b-84661382dfe9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T22:39:09.0776574Z","updatedOn":"2023-02-10T22:39:09.0776574Z","createdBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","updatedBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb3a8a84-a993-11ed-a433-00155df41803","type":"Microsoft.Authorization/roleAssignments","name":"bb3a8a84-a993-11ed-a433-00155df41803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T22:39:12.9098417Z","updatedOn":"2023-02-10T22:39:12.9098417Z","createdBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","updatedBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd7f173a-a993-11ed-a433-00155df41803","type":"Microsoft.Authorization/roleAssignments","name":"bd7f173a-a993-11ed-a433-00155df41803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e3c35f4c-e0ca-4b9e-a01e-5ebdd17e2ee7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-13T07:08:28.2729144Z","updatedOn":"2023-02-13T07:08:28.2729144Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bba123f0-e027-47b5-9f46-15320b0d6ea2","type":"Microsoft.Authorization/roleAssignments","name":"bba123f0-e027-47b5-9f46-15320b0d6ea2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-13T20:30:01.2193678Z","updatedOn":"2023-02-13T20:30:01.2193678Z","createdBy":"40db9032-6efa-443b-a2df-6b0c1d107875","updatedBy":"40db9032-6efa-443b-a2df-6b0c1d107875","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f3b7710-abdd-11ed-8e93-42746b8cdccc","type":"Microsoft.Authorization/roleAssignments","name":"2f3b7710-abdd-11ed-8e93-42746b8cdccc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-13T20:30:05.9299217Z","updatedOn":"2023-02-13T20:30:05.9299217Z","createdBy":"40db9032-6efa-443b-a2df-6b0c1d107875","updatedBy":"40db9032-6efa-443b-a2df-6b0c1d107875","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/321b80cb-abdd-11ed-8e93-42746b8cdccc","type":"Microsoft.Authorization/roleAssignments","name":"321b80cb-abdd-11ed-8e93-42746b8cdccc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-14T20:20:30.1688349Z","updatedOn":"2023-02-14T20:20:30.1688349Z","createdBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","updatedBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/06359457-aca5-11ed-82a6-00155df41803","type":"Microsoft.Authorization/roleAssignments","name":"06359457-aca5-11ed-82a6-00155df41803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T01:37:21.5709630Z","updatedOn":"2023-02-15T01:37:21.5709630Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a7e1874-acd1-11ed-8639-d691c85c3a02","type":"Microsoft.Authorization/roleAssignments","name":"4a7e1874-acd1-11ed-8639-d691c85c3a02"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T09:59:56.7546952Z","updatedOn":"2023-02-15T09:59:56.7546952Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7fa783e6-ad17-11ed-97ee-000d3a9be92a","type":"Microsoft.Authorization/roleAssignments","name":"7fa783e6-ad17-11ed-97ee-000d3a9be92a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T10:00:02.7311424Z","updatedOn":"2023-02-15T10:00:02.7311424Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/836897a6-ad17-11ed-97ee-000d3a9be92a","type":"Microsoft.Authorization/roleAssignments","name":"836897a6-ad17-11ed-97ee-000d3a9be92a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T16:38:42.0341267Z","updatedOn":"2023-02-15T16:38:42.0341267Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3476476d-ad4f-11ed-8fa2-000d3a984fd4","type":"Microsoft.Authorization/roleAssignments","name":"3476476d-ad4f-11ed-8fa2-000d3a984fd4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T16:38:46.6959293Z","updatedOn":"2023-02-15T16:38:46.6959293Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/375326e5-ad4f-11ed-8fa2-000d3a984fd4","type":"Microsoft.Authorization/roleAssignments","name":"375326e5-ad4f-11ed-8fa2-000d3a984fd4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-17T06:21:34.8976862Z","updatedOn":"2023-02-17T06:21:34.8976862Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/52c15699-ae8b-11ed-b14e-023ef88171a7","type":"Microsoft.Authorization/roleAssignments","name":"52c15699-ae8b-11ed-b14e-023ef88171a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-19T02:02:00.9378377Z","updatedOn":"2023-02-19T02:02:00.9378377Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63ae64e6-aff9-11ed-967a-968963402bc6","type":"Microsoft.Authorization/roleAssignments","name":"63ae64e6-aff9-11ed-967a-968963402bc6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-19T02:02:05.4821651Z","updatedOn":"2023-02-19T02:02:05.4821651Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66639a26-aff9-11ed-967a-968963402bc6","type":"Microsoft.Authorization/roleAssignments","name":"66639a26-aff9-11ed-967a-968963402bc6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T09:22:38.4725256Z","updatedOn":"2023-02-21T09:22:38.4725256Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/48461efc-b1c9-11ed-bd41-3ed144e41689","type":"Microsoft.Authorization/roleAssignments","name":"48461efc-b1c9-11ed-bd41-3ed144e41689"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T09:22:42.2363452Z","updatedOn":"2023-02-21T09:22:42.2363452Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a784b6e-b1c9-11ed-bd41-3ed144e41689","type":"Microsoft.Authorization/roleAssignments","name":"4a784b6e-b1c9-11ed-bd41-3ed144e41689"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-23T03:00:31.5651965Z","updatedOn":"2023-02-23T03:00:31.5651965Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cef217b-a8cc-4115-a4bd-042af84325dc","type":"Microsoft.Authorization/roleAssignments","name":"3cef217b-a8cc-4115-a4bd-042af84325dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-23T06:48:16.8637402Z","updatedOn":"2023-02-23T06:48:16.8637402Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0c91daf6-b346-11ed-a964-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"0c91daf6-b346-11ed-a964-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-23T06:48:21.4826289Z","updatedOn":"2023-02-23T06:48:21.4826289Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f55d0c9-b346-11ed-a964-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"0f55d0c9-b346-11ed-a964-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T00:54:23.0966101Z","updatedOn":"2023-02-24T00:54:23.0966101Z","createdBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","updatedBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6e6a721-b3dd-11ed-b60f-0022481da32e","type":"Microsoft.Authorization/roleAssignments","name":"c6e6a721-b3dd-11ed-b60f-0022481da32e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T00:54:31.9826815Z","updatedOn":"2023-02-24T00:54:31.9826815Z","createdBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","updatedBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc3f3b4e-b3dd-11ed-b60f-0022481da32e","type":"Microsoft.Authorization/roleAssignments","name":"cc3f3b4e-b3dd-11ed-b60f-0022481da32e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T02:50:23.5663680Z","updatedOn":"2023-02-24T02:50:23.5663680Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb698872-b3ed-11ed-8f76-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"fb698872-b3ed-11ed-8f76-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T04:50:44.0913238Z","updatedOn":"2023-02-24T04:50:44.0913238Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cb72426d-4967-427c-8cf6-c167bc26814f","type":"Microsoft.Authorization/roleAssignments","name":"cb72426d-4967-427c-8cf6-c167bc26814f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T23:34:22.8669116Z","updatedOn":"2023-02-24T23:34:22.8669116Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3e6258b-b49b-11ed-90ef-000d3a0168de","type":"Microsoft.Authorization/roleAssignments","name":"c3e6258b-b49b-11ed-90ef-000d3a0168de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T23:34:26.7176031Z","updatedOn":"2023-02-24T23:34:26.7176031Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6438a56-b49b-11ed-90ef-000d3a0168de","type":"Microsoft.Authorization/roleAssignments","name":"c6438a56-b49b-11ed-90ef-000d3a0168de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-27T04:38:09.3994350Z","updatedOn":"2023-02-27T04:38:09.3994350Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b58ab305-83cc-4c4e-924b-3c1ba8ffcb83","type":"Microsoft.Authorization/roleAssignments","name":"b58ab305-83cc-4c4e-924b-3c1ba8ffcb83"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-27T04:38:09.8212573Z","updatedOn":"2023-02-27T04:38:09.8212573Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45883a93-4807-4bb9-a2b3-a7163d6c2031","type":"Microsoft.Authorization/roleAssignments","name":"45883a93-4807-4bb9-a2b3-a7163d6c2031"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T04:01:45.4038947Z","updatedOn":"2023-02-28T04:01:45.4038947Z","createdBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","updatedBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9d7a9b0f-b71c-11ed-b33b-6045bd7c1155","type":"Microsoft.Authorization/roleAssignments","name":"9d7a9b0f-b71c-11ed-b33b-6045bd7c1155"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T06:57:12.2026246Z","updatedOn":"2023-02-28T06:57:12.2026246Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1f6f0732-b735-11ed-be49-962abdd2f2a3","type":"Microsoft.Authorization/roleAssignments","name":"1f6f0732-b735-11ed-be49-962abdd2f2a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T15:32:52.3533623Z","updatedOn":"2023-02-28T15:32:52.3533623Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28e54510-b77d-11ed-bcc0-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"28e54510-b77d-11ed-bcc0-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T17:34:23.5106370Z","updatedOn":"2023-02-28T17:34:23.5106370Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/22f4b3a0-b78e-11ed-8898-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"22f4b3a0-b78e-11ed-8898-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T18:16:58.6154652Z","updatedOn":"2023-02-28T18:16:58.6154652Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15c84290-b794-11ed-ba68-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"15c84290-b794-11ed-ba68-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T19:50:58.1867864Z","updatedOn":"2023-03-01T19:50:58.1867864Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61f54236-b86a-11ed-96f5-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"61f54236-b86a-11ed-96f5-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T22:21:34.1000877Z","updatedOn":"2023-03-01T22:21:34.1000877Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b7ce6fa-b87f-11ed-858b-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"6b7ce6fa-b87f-11ed-858b-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T22:45:09.8437635Z","updatedOn":"2023-03-01T22:45:09.8437635Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7b17d80-b882-11ed-a5f7-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"b7b17d80-b882-11ed-a5f7-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T23:11:15.0259743Z","updatedOn":"2023-03-01T23:11:15.0259743Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5c9278f6-b886-11ed-83fe-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"5c9278f6-b886-11ed-83fe-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T06:31:28.5537789Z","updatedOn":"2023-03-02T06:31:28.5537789Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d301d940-45f5-4242-8a04-8ce059ee9054","type":"Microsoft.Authorization/roleAssignments","name":"d301d940-45f5-4242-8a04-8ce059ee9054"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T16:54:46.5495446Z","updatedOn":"2023-03-02T16:54:46.5495446Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef382e78-b91a-11ed-8fc9-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"ef382e78-b91a-11ed-8fc9-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T18:09:39.0923025Z","updatedOn":"2023-03-02T18:09:39.0923025Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65561192-b925-11ed-8582-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"65561192-b925-11ed-8582-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T18:09:44.0481916Z","updatedOn":"2023-03-02T18:09:44.0481916Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/68443e92-b925-11ed-8582-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"68443e92-b925-11ed-8582-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T20:44:44.0250379Z","updatedOn":"2023-03-02T20:44:44.0250379Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f118b20-b93b-11ed-9771-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"0f118b20-b93b-11ed-9771-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T21:25:21.6836921Z","updatedOn":"2023-03-02T21:25:21.6836921Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb99eb4e-b940-11ed-b11e-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"bb99eb4e-b940-11ed-b11e-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T22:13:06.5481097Z","updatedOn":"2023-03-02T22:13:06.5481097Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/671c9222-b947-11ed-bf55-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"671c9222-b947-11ed-bf55-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T23:21:53.5068345Z","updatedOn":"2023-03-02T23:21:53.5068345Z","createdBy":"6a70a9ce-9405-4447-867c-92746716ef5a","updatedBy":"6a70a9ce-9405-4447-867c-92746716ef5a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/03b3dac0-b951-11ed-a3db-5e7d78be13fb","type":"Microsoft.Authorization/roleAssignments","name":"03b3dac0-b951-11ed-a3db-5e7d78be13fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T23:21:58.2602277Z","updatedOn":"2023-03-02T23:21:58.2602277Z","createdBy":"6a70a9ce-9405-4447-867c-92746716ef5a","updatedBy":"6a70a9ce-9405-4447-867c-92746716ef5a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/06a1f991-b951-11ed-a3db-5e7d78be13fb","type":"Microsoft.Authorization/roleAssignments","name":"06a1f991-b951-11ed-a3db-5e7d78be13fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-03T08:24:31.2215832Z","updatedOn":"2023-03-03T08:24:31.2215832Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c439d06c-2e66-4cbc-9c42-f2e962b394a9","type":"Microsoft.Authorization/roleAssignments","name":"c439d06c-2e66-4cbc-9c42-f2e962b394a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-03T08:25:05.4966158Z","updatedOn":"2023-03-03T08:25:05.4966158Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12c86535-6761-4402-a871-c5ed84a4b236","type":"Microsoft.Authorization/roleAssignments","name":"12c86535-6761-4402-a871-c5ed84a4b236"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-06T23:11:36.9481730Z","updatedOn":"2023-03-06T23:11:36.9481730Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d91d90a-bc74-11ed-a26b-66106f6e7480","type":"Microsoft.Authorization/roleAssignments","name":"3d91d90a-bc74-11ed-a26b-66106f6e7480"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-07T11:10:24.3937430Z","updatedOn":"2023-03-07T11:10:24.3937430Z","createdBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","updatedBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a74aed5f-bcd8-11ed-9f36-2636f0255870","type":"Microsoft.Authorization/roleAssignments","name":"a74aed5f-bcd8-11ed-9f36-2636f0255870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-07T11:10:29.5524963Z","updatedOn":"2023-03-07T11:10:29.5524963Z","createdBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","updatedBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa4ebe62-bcd8-11ed-9f36-2636f0255870","type":"Microsoft.Authorization/roleAssignments","name":"aa4ebe62-bcd8-11ed-9f36-2636f0255870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-08T19:24:26.7238172Z","updatedOn":"2023-03-08T19:24:26.7238172Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d65c4fee-bde6-11ed-8e54-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"d65c4fee-bde6-11ed-8e54-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-08T19:24:31.6398973Z","updatedOn":"2023-03-08T19:24:31.6398973Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d90a67f8-bde6-11ed-8e54-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"d90a67f8-bde6-11ed-8e54-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-08T20:06:19.9493503Z","updatedOn":"2023-03-08T20:06:19.9493503Z","createdBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","updatedBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0af95de-bdec-11ed-9669-3e22fb431907","type":"Microsoft.Authorization/roleAssignments","name":"b0af95de-bdec-11ed-9669-3e22fb431907"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-09T01:58:48.5122241Z","updatedOn":"2023-03-09T01:58:48.5122241Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee1bd122-be1d-11ed-a53c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"ee1bd122-be1d-11ed-a53c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-09T17:44:00.7209931Z","updatedOn":"2023-03-09T17:44:00.7209931Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f932fb60-bea1-11ed-afcf-6e3850888c7e","type":"Microsoft.Authorization/roleAssignments","name":"f932fb60-bea1-11ed-afcf-6e3850888c7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-10T08:26:27.9057589Z","updatedOn":"2023-03-10T08:26:27.9057589Z","createdBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","updatedBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f911d1d-bf1d-11ed-a236-002248824659","type":"Microsoft.Authorization/roleAssignments","name":"3f911d1d-bf1d-11ed-a236-002248824659"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-10T08:26:33.2539857Z","updatedOn":"2023-03-10T08:26:33.2539857Z","createdBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","updatedBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42d7f7e6-bf1d-11ed-a236-002248824659","type":"Microsoft.Authorization/roleAssignments","name":"42d7f7e6-bf1d-11ed-a236-002248824659"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-11T05:53:49.4765844Z","updatedOn":"2023-03-11T05:53:49.4765844Z","createdBy":"d378d978-a2b7-46cf-b57b-1e586d281118","updatedBy":"d378d978-a2b7-46cf-b57b-1e586d281118","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/179b8d2a-bfd1-11ed-bd9a-3c52827953b3","type":"Microsoft.Authorization/roleAssignments","name":"179b8d2a-bfd1-11ed-bd9a-3c52827953b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-11T05:53:53.6955891Z","updatedOn":"2023-03-11T05:53:53.6955891Z","createdBy":"d378d978-a2b7-46cf-b57b-1e586d281118","updatedBy":"d378d978-a2b7-46cf-b57b-1e586d281118","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1a1e6965-bfd1-11ed-bd9a-3c52827953b3","type":"Microsoft.Authorization/roleAssignments","name":"1a1e6965-bfd1-11ed-bd9a-3c52827953b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T06:33:26.4594910Z","updatedOn":"2023-03-13T06:33:26.4594910Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b03e0140-e53e-491a-9a7b-e179fa1b8a7b","type":"Microsoft.Authorization/roleAssignments","name":"b03e0140-e53e-491a-9a7b-e179fa1b8a7b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T12:12:33.0193279Z","updatedOn":"2023-03-13T12:12:33.0193279Z","createdBy":"559c030a-5305-402e-ab3c-018e8b685492","updatedBy":"559c030a-5305-402e-ab3c-018e8b685492","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54e258e9-c198-11ed-8db5-be30b45d791c","type":"Microsoft.Authorization/roleAssignments","name":"54e258e9-c198-11ed-8db5-be30b45d791c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T12:12:36.9894487Z","updatedOn":"2023-03-13T12:12:36.9894487Z","createdBy":"559c030a-5305-402e-ab3c-018e8b685492","updatedBy":"559c030a-5305-402e-ab3c-018e8b685492","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/575c39c1-c198-11ed-8db5-be30b45d791c","type":"Microsoft.Authorization/roleAssignments","name":"575c39c1-c198-11ed-8db5-be30b45d791c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-14T18:19:52.2457482Z","updatedOn":"2023-03-14T18:19:52.2457482Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf500684-c294-11ed-aaa3-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"cf500684-c294-11ed-aaa3-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-15T17:17:49.1398598Z","updatedOn":"2023-03-15T17:17:49.1398598Z","createdBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","updatedBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4edbdd66-c355-11ed-8966-d85ed302bf1b","type":"Microsoft.Authorization/roleAssignments","name":"4edbdd66-c355-11ed-8966-d85ed302bf1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-16T00:14:24.3742157Z","updatedOn":"2023-03-16T00:14:24.3742157Z","createdBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","updatedBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7f7be49f-c38f-11ed-ba47-9e7a3e847acb","type":"Microsoft.Authorization/roleAssignments","name":"7f7be49f-c38f-11ed-ba47-9e7a3e847acb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-16T00:14:28.4721252Z","updatedOn":"2023-03-16T00:14:28.4721252Z","createdBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","updatedBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81c01cec-c38f-11ed-ba47-9e7a3e847acb","type":"Microsoft.Authorization/roleAssignments","name":"81c01cec-c38f-11ed-ba47-9e7a3e847acb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-20T06:05:05.2225187Z","updatedOn":"2023-03-20T06:05:05.2225187Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/27de0b5c-c6e5-11ed-8082-0ab78cd2e1ba","type":"Microsoft.Authorization/roleAssignments","name":"27de0b5c-c6e5-11ed-8082-0ab78cd2e1ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-20T19:31:51.9736494Z","updatedOn":"2023-03-20T19:31:51.9736494Z","createdBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","updatedBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dbc8c438-c755-11ed-8659-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"dbc8c438-c755-11ed-8659-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-20T19:31:55.5444616Z","updatedOn":"2023-03-20T19:31:55.5444616Z","createdBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","updatedBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e111eebf-c755-11ed-8659-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"e111eebf-c755-11ed-8659-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T07:50:31.4771973Z","updatedOn":"2023-03-21T07:50:31.4771973Z","createdBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","updatedBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c95fead-0a2b-4d52-a17d-1d3d17997871","type":"Microsoft.Authorization/roleAssignments","name":"6c95fead-0a2b-4d52-a17d-1d3d17997871"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T08:30:33.5552284Z","updatedOn":"2023-03-21T08:30:33.5552284Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a54293b5-c7c2-11ed-a7e6-000d3a044b73","type":"Microsoft.Authorization/roleAssignments","name":"a54293b5-c7c2-11ed-a7e6-000d3a044b73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T19:10:41.8785727Z","updatedOn":"2023-03-21T19:10:41.8785727Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12487a5a-c81c-11ed-ba46-827f6562cca2","type":"Microsoft.Authorization/roleAssignments","name":"12487a5a-c81c-11ed-ba46-827f6562cca2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T19:10:47.3524534Z","updatedOn":"2023-03-21T19:10:47.3524534Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15881bc6-c81c-11ed-ba46-827f6562cca2","type":"Microsoft.Authorization/roleAssignments","name":"15881bc6-c81c-11ed-ba46-827f6562cca2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-23T04:37:57.4678727Z","updatedOn":"2023-03-23T04:37:57.4678727Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b934178-c934-11ed-b9f7-6045bd80c6e6","type":"Microsoft.Authorization/roleAssignments","name":"7b934178-c934-11ed-b9f7-6045bd80c6e6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-27T05:50:19.8871681Z","updatedOn":"2023-03-27T05:50:19.8871681Z","createdBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","updatedBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/410882d1-cc63-11ed-ae41-0022480f1f08","type":"Microsoft.Authorization/roleAssignments","name":"410882d1-cc63-11ed-ae41-0022480f1f08"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-27T05:50:25.6681144Z","updatedOn":"2023-03-27T05:50:25.6681144Z","createdBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","updatedBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/441bda3a-cc63-11ed-ae41-0022480f1f08","type":"Microsoft.Authorization/roleAssignments","name":"441bda3a-cc63-11ed-ae41-0022480f1f08"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d24ecba3-c1f4-40fa-a7bb-4588a071e8fd","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:06.6052430Z","updatedOn":"2023-03-28T04:20:06.6052430Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/407210a5-bc55-40fb-91a9-92aa082cb413","type":"Microsoft.Authorization/roleAssignments","name":"407210a5-bc55-40fb-91a9-92aa082cb413"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:10.8566627Z","updatedOn":"2023-03-28T04:20:10.8566627Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24f5047d-db77-4702-ffab-aa7c979ea3ff","type":"Microsoft.Authorization/roleAssignments","name":"24f5047d-db77-4702-ffab-aa7c979ea3ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:10.9115871Z","updatedOn":"2023-03-28T04:20:10.9115871Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/58df4b89-0de1-4d34-1767-ac1e33e9acd8","type":"Microsoft.Authorization/roleAssignments","name":"58df4b89-0de1-4d34-1767-ac1e33e9acd8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.4495061Z","updatedOn":"2023-03-28T04:20:11.4495061Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a454de4-a1dc-4273-f384-029257fe5c7f","type":"Microsoft.Authorization/roleAssignments","name":"4a454de4-a1dc-4273-f384-029257fe5c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.2724262Z","updatedOn":"2023-03-28T04:20:11.2724262Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd662e52-e7fa-4eeb-5755-696d2e8169b9","type":"Microsoft.Authorization/roleAssignments","name":"cd662e52-e7fa-4eeb-5755-696d2e8169b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.4717540Z","updatedOn":"2023-03-28T04:20:11.4717540Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4680d2be-be84-417b-d222-07880110ada0","type":"Microsoft.Authorization/roleAssignments","name":"4680d2be-be84-417b-d222-07880110ada0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.5533314Z","updatedOn":"2023-03-28T04:20:11.5533314Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28dadd85-c2a5-420f-1563-a6ec9d26fd9a","type":"Microsoft.Authorization/roleAssignments","name":"28dadd85-c2a5-420f-1563-a6ec9d26fd9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.5554589Z","updatedOn":"2023-03-28T04:20:11.5554589Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d1872322-4fde-43f5-e2b4-325dda9f40ad","type":"Microsoft.Authorization/roleAssignments","name":"d1872322-4fde-43f5-e2b4-325dda9f40ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.8299726Z","updatedOn":"2023-03-28T04:20:11.8299726Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ede81bb8-d3cd-4dc8-0fd3-b0a2a5a42b23","type":"Microsoft.Authorization/roleAssignments","name":"ede81bb8-d3cd-4dc8-0fd3-b0a2a5a42b23"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T14:40:42.0514829Z","updatedOn":"2023-03-29T14:40:42.0514829Z","createdBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","updatedBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ae019e96-ce3f-11ed-aa9b-000d3a142c7f","type":"Microsoft.Authorization/roleAssignments","name":"ae019e96-ce3f-11ed-aa9b-000d3a142c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T14:40:45.8687684Z","updatedOn":"2023-03-29T14:40:45.8687684Z","createdBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","updatedBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0540ef4-ce3f-11ed-aa9b-000d3a142c7f","type":"Microsoft.Authorization/roleAssignments","name":"b0540ef4-ce3f-11ed-aa9b-000d3a142c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T17:23:15.2268767Z","updatedOn":"2023-03-29T17:23:15.2268767Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/636243ad-ce56-11ed-9744-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"636243ad-ce56-11ed-9744-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T17:23:18.8739735Z","updatedOn":"2023-03-29T17:23:18.8739735Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6586219c-ce56-11ed-9744-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"6586219c-ce56-11ed-9744-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T19:32:39.0885013Z","updatedOn":"2023-03-29T19:32:39.0885013Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/76c41cef-ce68-11ed-b18b-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"76c41cef-ce68-11ed-b18b-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T19:32:43.3448308Z","updatedOn":"2023-03-29T19:32:43.3448308Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/793f1b95-ce68-11ed-b18b-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"793f1b95-ce68-11ed-b18b-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T02:24:05.4290067Z","updatedOn":"2023-03-31T02:24:05.4290067Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1ad6198a-cf6b-11ed-8440-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"1ad6198a-cf6b-11ed-8440-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T02:24:09.9883076Z","updatedOn":"2023-03-31T02:24:09.9883076Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1dd45f87-cf6b-11ed-8440-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"1dd45f87-cf6b-11ed-8440-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T07:26:15.0154750Z","updatedOn":"2023-03-31T07:26:15.0154750Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/babc263e-1cc9-429d-babf-2b33c8e79093","type":"Microsoft.Authorization/roleAssignments","name":"babc263e-1cc9-429d-babf-2b33c8e79093"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T07:44:54.6073153Z","updatedOn":"2023-03-31T07:44:54.6073153Z","createdBy":"2996d4bf-d495-49f2-a2cd-8d684c724185","updatedBy":"2996d4bf-d495-49f2-a2cd-8d684c724185","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/828df835-2536-4c50-9397-90aabf94db75","type":"Microsoft.Authorization/roleAssignments","name":"828df835-2536-4c50-9397-90aabf94db75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T19:06:47.3414876Z","updatedOn":"2023-03-31T19:06:47.3414876Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2ea3ab94-cff7-11ed-b393-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"2ea3ab94-cff7-11ed-b393-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T19:08:21.6870221Z","updatedOn":"2023-03-31T19:08:21.6870221Z","createdBy":"367712bd-8587-45ef-9e63-1d269a194d53","updatedBy":"367712bd-8587-45ef-9e63-1d269a194d53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66e7009d-cff7-11ed-a7d9-002248a7a68e","type":"Microsoft.Authorization/roleAssignments","name":"66e7009d-cff7-11ed-a7d9-002248a7a68e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T19:08:26.3035343Z","updatedOn":"2023-03-31T19:08:26.3035343Z","createdBy":"367712bd-8587-45ef-9e63-1d269a194d53","updatedBy":"367712bd-8587-45ef-9e63-1d269a194d53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/69a1dd2e-cff7-11ed-a7d9-002248a7a68e","type":"Microsoft.Authorization/roleAssignments","name":"69a1dd2e-cff7-11ed-a7d9-002248a7a68e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-02T04:28:12.7151802Z","updatedOn":"2023-04-02T04:28:12.7151802Z","createdBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","updatedBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c7830a5d-d10e-11ed-a622-f24a877c1ab5","type":"Microsoft.Authorization/roleAssignments","name":"c7830a5d-d10e-11ed-a622-f24a877c1ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-02T04:28:15.3112141Z","updatedOn":"2023-04-02T04:28:15.3112141Z","createdBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","updatedBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9256530-d10e-11ed-a622-f24a877c1ab5","type":"Microsoft.Authorization/roleAssignments","name":"c9256530-d10e-11ed-a622-f24a877c1ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-05T00:24:25.1673334Z","updatedOn":"2023-04-05T00:24:25.1673334Z","createdBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","updatedBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/376ceec9-d348-11ed-9d01-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"376ceec9-d348-11ed-9d01-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-05T00:24:28.5013634Z","updatedOn":"2023-04-05T00:24:28.5013634Z","createdBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","updatedBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39762108-d348-11ed-9d01-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"39762108-d348-11ed-9d01-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-10T17:47:25.2219893Z","updatedOn":"2023-04-10T17:47:25.2219893Z","createdBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","updatedBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0866ce8-d7c7-11ed-a6a7-9660021dc7a9","type":"Microsoft.Authorization/roleAssignments","name":"c0866ce8-d7c7-11ed-a6a7-9660021dc7a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-10T17:47:29.2984077Z","updatedOn":"2023-04-10T17:47:29.2984077Z","createdBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","updatedBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3089c1c-d7c7-11ed-a6a7-9660021dc7a9","type":"Microsoft.Authorization/roleAssignments","name":"c3089c1c-d7c7-11ed-a6a7-9660021dc7a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-13T19:14:02.9424463Z","updatedOn":"2023-04-13T19:14:02.9424463Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d256d6e-ea9e-4124-8252-9da35a5e074b","type":"Microsoft.Authorization/roleAssignments","name":"0d256d6e-ea9e-4124-8252-9da35a5e074b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-17T15:47:32.8370892Z","updatedOn":"2023-04-17T15:47:32.8370892Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3d0f65d-4923-4776-8fb5-288240615c89","type":"Microsoft.Authorization/roleAssignments","name":"b3d0f65d-4923-4776-8fb5-288240615c89"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-17T16:09:03.8628586Z","updatedOn":"2023-04-17T16:09:03.8628586Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2eb3e3cb-598f-4048-aab3-0bd5a8b262ec","type":"Microsoft.Authorization/roleAssignments","name":"2eb3e3cb-598f-4048-aab3-0bd5a8b262ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-19T18:42:49.4053198Z","updatedOn":"2023-04-19T18:42:49.4053198Z","createdBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","updatedBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fba6c131-dee1-11ed-af88-000d3a23f184","type":"Microsoft.Authorization/roleAssignments","name":"fba6c131-dee1-11ed-af88-000d3a23f184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-19T18:42:53.2275925Z","updatedOn":"2023-04-19T18:42:53.2275925Z","createdBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","updatedBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdf8a1c6-dee1-11ed-af88-000d3a23f184","type":"Microsoft.Authorization/roleAssignments","name":"fdf8a1c6-dee1-11ed-af88-000d3a23f184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-19T20:38:29.3110777Z","updatedOn":"2023-04-19T20:38:29.3110777Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23e3d8f0-def2-11ed-8cbe-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"23e3d8f0-def2-11ed-8cbe-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-20T23:41:52.6427527Z","updatedOn":"2023-04-20T23:41:52.6427527Z","createdBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","updatedBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4daefdda-d51e-55b7-9175-548688500778","type":"Microsoft.Authorization/roleAssignments","name":"4daefdda-d51e-55b7-9175-548688500778"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-21T17:49:07.3103199Z","updatedOn":"2023-04-21T17:49:07.3103199Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cfcbdd18-e06c-11ed-8b1a-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"cfcbdd18-e06c-11ed-8b1a-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-21T19:58:00.4291773Z","updatedOn":"2023-04-21T19:58:00.4291773Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d1321fac-e07e-11ed-9f07-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"d1321fac-e07e-11ed-9f07-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-25T18:19:28.7344580Z","updatedOn":"2023-04-25T18:19:28.7344580Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d940b7e-a372-438c-89b3-fe59be8a3d63","type":"Microsoft.Authorization/roleAssignments","name":"6d940b7e-a372-438c-89b3-fe59be8a3d63"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-26T15:27:00.5297027Z","updatedOn":"2023-04-26T15:27:00.5297027Z","createdBy":"b2192440-253a-42f2-8429-40f3820b89be","updatedBy":"b2192440-253a-42f2-8429-40f3820b89be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9b0c1c0-e446-11ed-a01b-00155d1f6f24","type":"Microsoft.Authorization/roleAssignments","name":"c9b0c1c0-e446-11ed-a01b-00155d1f6f24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-26T15:27:03.8070654Z","updatedOn":"2023-04-26T15:27:03.8070654Z","createdBy":"b2192440-253a-42f2-8429-40f3820b89be","updatedBy":"b2192440-253a-42f2-8429-40f3820b89be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbabbec4-e446-11ed-a01b-00155d1f6f24","type":"Microsoft.Authorization/roleAssignments","name":"cbabbec4-e446-11ed-a01b-00155d1f6f24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-28T14:39:15.9639397Z","updatedOn":"2023-04-28T14:39:15.9639397Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/731ed5b6-e5d2-11ed-b4a6-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"731ed5b6-e5d2-11ed-b4a6-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-28T14:39:19.9194172Z","updatedOn":"2023-04-28T14:39:19.9194172Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/757edff4-e5d2-11ed-b4a6-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"757edff4-e5d2-11ed-b4a6-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/974c5e8b-45b9-4653-ba55-5f855dd0fb88","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-01T21:15:30.3600778Z","updatedOn":"2023-05-01T21:15:30.3600778Z","createdBy":"5bef4afd-1360-40a2-ac51-9339229af623","updatedBy":"5bef4afd-1360-40a2-ac51-9339229af623","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4cff74bd-e865-11ed-bd8b-5e022905d313","type":"Microsoft.Authorization/roleAssignments","name":"4cff74bd-e865-11ed-bd8b-5e022905d313"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-01T21:15:34.1175433Z","updatedOn":"2023-05-01T21:15:34.1175433Z","createdBy":"5bef4afd-1360-40a2-ac51-9339229af623","updatedBy":"5bef4afd-1360-40a2-ac51-9339229af623","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4f3e2c7f-e865-11ed-bd8b-5e022905d313","type":"Microsoft.Authorization/roleAssignments","name":"4f3e2c7f-e865-11ed-bd8b-5e022905d313"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-01T22:25:20.9242136Z","updatedOn":"2023-05-01T22:25:20.9242136Z","createdBy":"1ae4ccb9-fb9e-49c0-b500-10d71ff2e737","updatedBy":"1ae4ccb9-fb9e-49c0-b500-10d71ff2e737","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/112fdd75-6ef8-4016-b550-eec1b3c20720","type":"Microsoft.Authorization/roleAssignments","name":"112fdd75-6ef8-4016-b550-eec1b3c20720"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T12:17:42.9403161Z","updatedOn":"2023-05-04T12:17:42.9403161Z","createdBy":"7206144a-a8f7-442f-994e-850c46730a52","updatedBy":"7206144a-a8f7-442f-994e-850c46730a52","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ab58b8d1-ea75-11ed-8e28-8c164501ca31","type":"Microsoft.Authorization/roleAssignments","name":"ab58b8d1-ea75-11ed-8e28-8c164501ca31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T12:17:48.5968787Z","updatedOn":"2023-05-04T12:17:48.5968787Z","createdBy":"7206144a-a8f7-442f-994e-850c46730a52","updatedBy":"7206144a-a8f7-442f-994e-850c46730a52","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aeac0cc1-ea75-11ed-8e28-8c164501ca31","type":"Microsoft.Authorization/roleAssignments","name":"aeac0cc1-ea75-11ed-8e28-8c164501ca31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T14:59:12.9566578Z","updatedOn":"2023-05-04T14:59:12.9566578Z","createdBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","updatedBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a379e3f-ea8c-11ed-b7f9-5254000f02cc","type":"Microsoft.Authorization/roleAssignments","name":"3a379e3f-ea8c-11ed-b7f9-5254000f02cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T14:59:17.0941141Z","updatedOn":"2023-05-04T14:59:17.0941141Z","createdBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","updatedBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cc57207-ea8c-11ed-b7f9-5254000f02cc","type":"Microsoft.Authorization/roleAssignments","name":"3cc57207-ea8c-11ed-b7f9-5254000f02cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-08T17:20:32.4213470Z","updatedOn":"2023-05-08T17:20:32.4213470Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fcb9cd22-d202-49b5-ac49-63b77db3c355","type":"Microsoft.Authorization/roleAssignments","name":"fcb9cd22-d202-49b5-ac49-63b77db3c355"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-08T18:57:28.0040779Z","updatedOn":"2023-05-08T18:57:28.0040779Z","createdBy":"a4ff7404-5868-4532-ab16-142dad6a55af","updatedBy":"a4ff7404-5868-4532-ab16-142dad6a55af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d38f814-edd2-11ed-b548-000d3af78112","type":"Microsoft.Authorization/roleAssignments","name":"2d38f814-edd2-11ed-b548-000d3af78112"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-08T18:57:31.3014429Z","updatedOn":"2023-05-08T18:57:31.3014429Z","createdBy":"a4ff7404-5868-4532-ab16-142dad6a55af","updatedBy":"a4ff7404-5868-4532-ab16-142dad6a55af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f311f92-edd2-11ed-b548-000d3af78112","type":"Microsoft.Authorization/roleAssignments","name":"2f311f92-edd2-11ed-b548-000d3af78112"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T19:02:07.8525568Z","updatedOn":"2023-05-10T19:02:07.8525568Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dedfb4b8-f315-5b5a-b52f-afbb2a175cd5","type":"Microsoft.Authorization/roleAssignments","name":"dedfb4b8-f315-5b5a-b52f-afbb2a175cd5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T19:02:07.5081592Z","updatedOn":"2023-05-10T19:02:07.5081592Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dcfe553d-97cc-5084-b369-d557cd90b386","type":"Microsoft.Authorization/roleAssignments","name":"dcfe553d-97cc-5084-b369-d557cd90b386"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T08:58:12.7125916Z","updatedOn":"2023-05-10T08:58:12.7125916Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d8f9d929-9d3d-42df-a8fe-5f0ceb0bba3e","type":"Microsoft.Authorization/roleAssignments","name":"d8f9d929-9d3d-42df-a8fe-5f0ceb0bba3e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T09:31:17.2430697Z","updatedOn":"2023-05-10T09:31:17.2430697Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3fd12d91-3e5a-4061-bcb2-05a9732b9159","type":"Microsoft.Authorization/roleAssignments","name":"3fd12d91-3e5a-4061-bcb2-05a9732b9159"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:43:09.6330210Z","updatedOn":"2023-05-10T16:43:09.6330210Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/becaa992-ef51-11ed-bf36-f6f4c2331193","type":"Microsoft.Authorization/roleAssignments","name":"becaa992-ef51-11ed-bf36-f6f4c2331193"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:43:13.3065725Z","updatedOn":"2023-05-10T16:43:13.3065725Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0ffd61a-ef51-11ed-bf36-f6f4c2331193","type":"Microsoft.Authorization/roleAssignments","name":"c0ffd61a-ef51-11ed-bf36-f6f4c2331193"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T21:23:06.4822851Z","updatedOn":"2023-05-10T21:23:06.4822851Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/db3e8912-ef78-11ed-9094-0ed70c823176","type":"Microsoft.Authorization/roleAssignments","name":"db3e8912-ef78-11ed-9094-0ed70c823176"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T21:23:10.1751715Z","updatedOn":"2023-05-10T21:23:10.1751715Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd8c02e4-ef78-11ed-9094-0ed70c823176","type":"Microsoft.Authorization/roleAssignments","name":"dd8c02e4-ef78-11ed-9094-0ed70c823176"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-12T17:27:33.1207504Z","updatedOn":"2023-05-12T17:27:33.1207504Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b59475c1-c560-4221-a59e-8c9f845d824c","type":"Microsoft.Authorization/roleAssignments","name":"b59475c1-c560-4221-a59e-8c9f845d824c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T18:50:21.8951381Z","updatedOn":"2023-05-15T18:50:21.8951381Z","createdBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","updatedBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57f8b39a-f351-11ed-a7a2-d28ee6de8df2","type":"Microsoft.Authorization/roleAssignments","name":"57f8b39a-f351-11ed-a7a2-d28ee6de8df2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T18:50:26.0744382Z","updatedOn":"2023-05-15T18:50:26.0744382Z","createdBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","updatedBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5a738a82-f351-11ed-a7a2-d28ee6de8df2","type":"Microsoft.Authorization/roleAssignments","name":"5a738a82-f351-11ed-a7a2-d28ee6de8df2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T20:09:25.9908381Z","updatedOn":"2023-05-15T20:09:25.9908381Z","createdBy":"1f978537-bb5b-4c76-9021-fb832071f334","updatedBy":"1f978537-bb5b-4c76-9021-fb832071f334","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63c222a4-f35c-11ed-a054-6e098a288f3f","type":"Microsoft.Authorization/roleAssignments","name":"63c222a4-f35c-11ed-a054-6e098a288f3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T20:09:35.2733605Z","updatedOn":"2023-05-15T20:09:35.2733605Z","createdBy":"1f978537-bb5b-4c76-9021-fb832071f334","updatedBy":"1f978537-bb5b-4c76-9021-fb832071f334","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6941144c-f35c-11ed-a054-6e098a288f3f","type":"Microsoft.Authorization/roleAssignments","name":"6941144c-f35c-11ed-a054-6e098a288f3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-17T20:10:57.7226371Z","updatedOn":"2023-05-17T20:10:57.7226371Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eda389e3-f4ee-11ed-b5ec-00155d3916e4","type":"Microsoft.Authorization/roleAssignments","name":"eda389e3-f4ee-11ed-b5ec-00155d3916e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-17T20:11:02.1123126Z","updatedOn":"2023-05-17T20:11:02.1123126Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f013376b-f4ee-11ed-b5ec-00155d3916e4","type":"Microsoft.Authorization/roleAssignments","name":"f013376b-f4ee-11ed-b5ec-00155d3916e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-19T16:27:28.8077810Z","updatedOn":"2023-05-19T16:27:28.8077810Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0bb8ff8d-f662-11ed-8f49-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"0bb8ff8d-f662-11ed-8f49-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-19T16:27:33.8052285Z","updatedOn":"2023-05-19T16:27:33.8052285Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ec6735e-f662-11ed-8f49-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"0ec6735e-f662-11ed-8f49-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-22T21:25:31.6093600Z","updatedOn":"2023-05-22T21:25:31.6093600Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d4e15d6-f8e7-11ed-8d3d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2d4e15d6-f8e7-11ed-8d3d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-22T21:25:39.5158809Z","updatedOn":"2023-05-22T21:25:39.5158809Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3232bc64-f8e7-11ed-8d3d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"3232bc64-f8e7-11ed-8d3d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T14:26:30.7681910Z","updatedOn":"2023-05-23T14:26:30.7681910Z","createdBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","updatedBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","delegatedManagedIdentityResourceId":null,"description":"Test + service principal"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/60f05fed-3b0c-4a91-86aa-44a327ded351","type":"Microsoft.Authorization/roleAssignments","name":"60f05fed-3b0c-4a91-86aa-44a327ded351"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T18:52:45.1223272Z","updatedOn":"2023-05-23T18:52:45.1223272Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47caa5b3-b27e-4f95-82b1-b5f87095df3a","type":"Microsoft.Authorization/roleAssignments","name":"47caa5b3-b27e-4f95-82b1-b5f87095df3a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T21:08:13.2773990Z","updatedOn":"2023-05-23T21:08:13.2773990Z","createdBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","updatedBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","delegatedManagedIdentityResourceId":null,"description":"Test + service principal"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79efe060-bf11-43db-ae9d-b281c8d0a9d8","type":"Microsoft.Authorization/roleAssignments","name":"79efe060-bf11-43db-ae9d-b281c8d0a9d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T23:58:25.0358872Z","updatedOn":"2023-05-23T23:58:25.0358872Z","createdBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","updatedBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3ca2af8-f9c5-11ed-9d5d-e64a5a4d2331","type":"Microsoft.Authorization/roleAssignments","name":"b3ca2af8-f9c5-11ed-9d5d-e64a5a4d2331"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T23:58:29.5965022Z","updatedOn":"2023-05-23T23:58:29.5965022Z","createdBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","updatedBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b699d06c-f9c5-11ed-9d5d-e64a5a4d2331","type":"Microsoft.Authorization/roleAssignments","name":"b699d06c-f9c5-11ed-9d5d-e64a5a4d2331"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-25T17:39:08.1426685Z","updatedOn":"2023-05-25T17:39:08.1426685Z","createdBy":"d87783d5-8706-48d6-ba20-d688d69119b2","updatedBy":"d87783d5-8706-48d6-ba20-d688d69119b2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23e6f3b5-225b-4e09-b962-619645aa3b66","type":"Microsoft.Authorization/roleAssignments","name":"23e6f3b5-225b-4e09-b962-619645aa3b66"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-25T20:11:52.1711289Z","updatedOn":"2023-05-25T20:11:52.1711289Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54d2e488-f4a3-4484-802e-ccd2bf4e0973","type":"Microsoft.Authorization/roleAssignments","name":"54d2e488-f4a3-4484-802e-ccd2bf4e0973"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-26T19:08:12.5337243Z","updatedOn":"2023-05-26T19:08:12.5337243Z","createdBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","updatedBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce436091-fe0c-51ad-a3a4-65285790684d","type":"Microsoft.Authorization/roleAssignments","name":"ce436091-fe0c-51ad-a3a4-65285790684d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-26T23:15:50.9221989Z","updatedOn":"2023-05-26T23:15:50.9221989Z","createdBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","updatedBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42aa6334-fc1b-11ed-8275-faccf5616d1b","type":"Microsoft.Authorization/roleAssignments","name":"42aa6334-fc1b-11ed-8275-faccf5616d1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-26T23:15:55.3490253Z","updatedOn":"2023-05-26T23:15:55.3490253Z","createdBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","updatedBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45629004-fc1b-11ed-8275-faccf5616d1b","type":"Microsoft.Authorization/roleAssignments","name":"45629004-fc1b-11ed-8275-faccf5616d1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-31T01:54:29.1188102Z","updatedOn":"2023-05-31T01:54:29.1188102Z","createdBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","updatedBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/13eebbd0-ff56-11ed-9bfa-02e332bf0a73","type":"Microsoft.Authorization/roleAssignments","name":"13eebbd0-ff56-11ed-9bfa-02e332bf0a73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-31T01:54:33.3318294Z","updatedOn":"2023-05-31T01:54:33.3318294Z","createdBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","updatedBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/166f22cd-ff56-11ed-9bfa-02e332bf0a73","type":"Microsoft.Authorization/roleAssignments","name":"166f22cd-ff56-11ed-9bfa-02e332bf0a73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-01T17:50:33.3890390Z","updatedOn":"2023-06-01T17:50:33.3890390Z","createdBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","updatedBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce40a1ba-00a4-11ee-9cf5-00155d28851f","type":"Microsoft.Authorization/roleAssignments","name":"ce40a1ba-00a4-11ee-9cf5-00155d28851f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-01T17:50:37.1678380Z","updatedOn":"2023-06-01T17:50:37.1678380Z","createdBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","updatedBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0850dfa-00a4-11ee-9cf5-00155d28851f","type":"Microsoft.Authorization/roleAssignments","name":"d0850dfa-00a4-11ee-9cf5-00155d28851f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-02T17:57:26.0215079Z","updatedOn":"2023-06-02T17:57:26.0215079Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd9cd89b-ff35-4fa2-9e07-0680ad3fa370","type":"Microsoft.Authorization/roleAssignments","name":"dd9cd89b-ff35-4fa2-9e07-0680ad3fa370"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-02T18:03:23.7925935Z","updatedOn":"2023-06-02T18:03:23.7925935Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d95aec2a-6adc-44a7-bd96-33d53af658bd","type":"Microsoft.Authorization/roleAssignments","name":"d95aec2a-6adc-44a7-bd96-33d53af658bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-03T02:03:08.3558097Z","updatedOn":"2023-06-03T02:03:08.3558097Z","createdBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","updatedBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c0f55e9-ff8c-410b-84c8-c613d1c425d1","type":"Microsoft.Authorization/roleAssignments","name":"6c0f55e9-ff8c-410b-84c8-c613d1c425d1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:28:30.6187015Z","updatedOn":"2023-06-05T17:28:30.6187015Z","createdBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","updatedBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63598898-03c6-11ee-a3b2-00155d87caab","type":"Microsoft.Authorization/roleAssignments","name":"63598898-03c6-11ee-a3b2-00155d87caab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:28:40.0597663Z","updatedOn":"2023-06-05T17:28:40.0597663Z","createdBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","updatedBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/68f66863-03c6-11ee-a3b2-00155d87caab","type":"Microsoft.Authorization/roleAssignments","name":"68f66863-03c6-11ee-a3b2-00155d87caab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:56:05.4845273Z","updatedOn":"2023-06-05T17:56:05.4845273Z","createdBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","updatedBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3dc7635d-03ca-11ee-aaaf-00155da910be","type":"Microsoft.Authorization/roleAssignments","name":"3dc7635d-03ca-11ee-aaaf-00155da910be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:56:09.7600652Z","updatedOn":"2023-06-05T17:56:09.7600652Z","createdBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","updatedBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40502bdc-03ca-11ee-aaaf-00155da910be","type":"Microsoft.Authorization/roleAssignments","name":"40502bdc-03ca-11ee-aaaf-00155da910be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T01:05:13.7066693Z","updatedOn":"2023-06-06T01:05:13.7066693Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/30f7f3e5-0406-11ee-b551-0022482d400c","type":"Microsoft.Authorization/roleAssignments","name":"30f7f3e5-0406-11ee-b551-0022482d400c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T05:00:05.2963688Z","updatedOn":"2023-06-06T05:00:05.2963688Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":"add + RCG-Read Write-CG-23637\n"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca637efb-b6e1-4bf5-bb88-a6724eacb0a7","type":"Microsoft.Authorization/roleAssignments","name":"ca637efb-b6e1-4bf5-bb88-a6724eacb0a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T17:38:31.9010821Z","updatedOn":"2023-06-06T17:38:31.9010821Z","createdBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","updatedBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4658d49-0490-11ee-994b-00155db896c4","type":"Microsoft.Authorization/roleAssignments","name":"f4658d49-0490-11ee-994b-00155db896c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T17:38:35.1906894Z","updatedOn":"2023-06-06T17:38:35.1906894Z","createdBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","updatedBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6601fef-0490-11ee-994b-00155db896c4","type":"Microsoft.Authorization/roleAssignments","name":"f6601fef-0490-11ee-994b-00155db896c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-07T01:57:45.0424798Z","updatedOn":"2023-06-07T01:57:45.0424798Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b19ebd13-04d6-11ee-b0e1-000d3a1d1b64","type":"Microsoft.Authorization/roleAssignments","name":"b19ebd13-04d6-11ee-b0e1-000d3a1d1b64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-07T18:06:20.2372529Z","updatedOn":"2023-06-07T18:06:20.2372529Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/944021da-5dd6-47df-b8bd-2b702ec66b62","type":"Microsoft.Authorization/roleAssignments","name":"944021da-5dd6-47df-b8bd-2b702ec66b62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-08T18:05:13.4812189Z","updatedOn":"2023-06-08T18:05:13.4812189Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/03b31b12-0627-11ee-a6d2-002248be7b21","type":"Microsoft.Authorization/roleAssignments","name":"03b31b12-0627-11ee-a6d2-002248be7b21"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-08T18:05:17.6164752Z","updatedOn":"2023-06-08T18:05:17.6164752Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/061fcfb9-0627-11ee-a6d2-002248be7b21","type":"Microsoft.Authorization/roleAssignments","name":"061fcfb9-0627-11ee-a6d2-002248be7b21"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T21:54:46.4146879Z","updatedOn":"2023-06-09T21:54:46.4146879Z","createdBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","updatedBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f5dc66d-0710-11ee-931c-00155d54ed98","type":"Microsoft.Authorization/roleAssignments","name":"3f5dc66d-0710-11ee-931c-00155d54ed98"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T21:54:50.2224528Z","updatedOn":"2023-06-09T21:54:50.2224528Z","createdBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","updatedBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41a244d2-0710-11ee-931c-00155d54ed98","type":"Microsoft.Authorization/roleAssignments","name":"41a244d2-0710-11ee-931c-00155d54ed98"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T22:15:22.1460837Z","updatedOn":"2023-06-09T22:15:22.1460837Z","createdBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","updatedBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1f99aa10-0713-11ee-9f64-00155dba898f","type":"Microsoft.Authorization/roleAssignments","name":"1f99aa10-0713-11ee-9f64-00155dba898f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T22:15:26.3614867Z","updatedOn":"2023-06-09T22:15:26.3614867Z","createdBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","updatedBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/221f3106-0713-11ee-9f64-00155dba898f","type":"Microsoft.Authorization/roleAssignments","name":"221f3106-0713-11ee-9f64-00155dba898f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-10T00:10:29.8161145Z","updatedOn":"2023-06-10T00:10:29.8161145Z","createdBy":"7df1b69c-686b-452a-9f60-59b12a299512","updatedBy":"7df1b69c-686b-452a-9f60-59b12a299512","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3547a3a6-0723-11ee-af96-521cf0d5af1e","type":"Microsoft.Authorization/roleAssignments","name":"3547a3a6-0723-11ee-af96-521cf0d5af1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-10T00:10:33.6141995Z","updatedOn":"2023-06-10T00:10:33.6141995Z","createdBy":"7df1b69c-686b-452a-9f60-59b12a299512","updatedBy":"7df1b69c-686b-452a-9f60-59b12a299512","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/377f6236-0723-11ee-af96-521cf0d5af1e","type":"Microsoft.Authorization/roleAssignments","name":"377f6236-0723-11ee-af96-521cf0d5af1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-12T03:43:13.3971745Z","updatedOn":"2023-06-12T03:43:13.3971745Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/417d165a-08d3-11ee-8ac2-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"417d165a-08d3-11ee-8ac2-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-12T05:29:01.6737026Z","updatedOn":"2023-06-12T05:29:01.6737026Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b154a136-cc93-46f2-8a71-079a399ec467","type":"Microsoft.Authorization/roleAssignments","name":"b154a136-cc93-46f2-8a71-079a399ec467"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-12T07:33:06.7743063Z","updatedOn":"2023-06-12T07:33:06.7743063Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5d216b6f-33aa-40e9-8b1d-c399739dab45","type":"Microsoft.Authorization/roleAssignments","name":"5d216b6f-33aa-40e9-8b1d-c399739dab45"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T00:55:32.6278707Z","updatedOn":"2023-06-13T00:55:32.6278707Z","createdBy":"859286db-3db2-4ba3-a081-93ef7001669f","updatedBy":"859286db-3db2-4ba3-a081-93ef7001669f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ff444828-0984-11ee-aeab-a6b46b784ab5","type":"Microsoft.Authorization/roleAssignments","name":"ff444828-0984-11ee-aeab-a6b46b784ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T00:55:37.9764519Z","updatedOn":"2023-06-13T00:55:37.9764519Z","createdBy":"859286db-3db2-4ba3-a081-93ef7001669f","updatedBy":"859286db-3db2-4ba3-a081-93ef7001669f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/02794298-0985-11ee-aeab-a6b46b784ab5","type":"Microsoft.Authorization/roleAssignments","name":"02794298-0985-11ee-aeab-a6b46b784ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T00:56:32.2043149Z","updatedOn":"2023-06-13T00:56:32.2043149Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39cae6b9-bfce-4d39-8a33-55001e8e7b87","type":"Microsoft.Authorization/roleAssignments","name":"39cae6b9-bfce-4d39-8a33-55001e8e7b87"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T17:52:57.9703504Z","updatedOn":"2023-06-13T17:52:57.9703504Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57f9abab-a02d-4961-aa68-f7b9a39940e6","type":"Microsoft.Authorization/roleAssignments","name":"57f9abab-a02d-4961-aa68-f7b9a39940e6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T17:54:34.0715865Z","updatedOn":"2023-06-13T17:54:34.0715865Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4caed6f2-725f-4ba4-918a-6b874a08574f","type":"Microsoft.Authorization/roleAssignments","name":"4caed6f2-725f-4ba4-918a-6b874a08574f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f58310d9-a9f6-439a-9e8d-f62e7b41a168","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T18:35:01.5499775Z","updatedOn":"2023-06-13T18:35:01.5499775Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b89c4524-5b48-40cb-9a55-b9712852158d","type":"Microsoft.Authorization/roleAssignments","name":"b89c4524-5b48-40cb-9a55-b9712852158d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T19:11:38.6491712Z","updatedOn":"2023-06-13T19:11:38.6491712Z","createdBy":"d87783d5-8706-48d6-ba20-d688d69119b2","updatedBy":"d87783d5-8706-48d6-ba20-d688d69119b2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09b91438-5494-4648-9766-b0079f6970de","type":"Microsoft.Authorization/roleAssignments","name":"09b91438-5494-4648-9766-b0079f6970de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T19:56:31.5140590Z","updatedOn":"2023-06-13T19:56:31.5140590Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0042f368-b701-4c14-8177-38b23d027a7e","type":"Microsoft.Authorization/roleAssignments","name":"0042f368-b701-4c14-8177-38b23d027a7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T12:57:07.9074452Z","updatedOn":"2023-06-14T12:57:07.9074452Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7e7c27e-0ab2-11ee-a74d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f7e7c27e-0ab2-11ee-a74d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T12:57:11.6755824Z","updatedOn":"2023-06-14T12:57:11.6755824Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa216932-0ab2-11ee-a74d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"fa216932-0ab2-11ee-a74d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T17:38:49.2228645Z","updatedOn":"2023-06-14T17:38:49.2228645Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84bddd3a-c733-408c-b9f2-689e5458a38f","type":"Microsoft.Authorization/roleAssignments","name":"84bddd3a-c733-408c-b9f2-689e5458a38f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T17:38:48.8722593Z","updatedOn":"2023-06-14T17:38:48.8722593Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8aa8e9b1-633b-4e0d-b371-8d21cfdf950a","type":"Microsoft.Authorization/roleAssignments","name":"8aa8e9b1-633b-4e0d-b371-8d21cfdf950a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T17:38:48.8686689Z","updatedOn":"2023-06-14T17:38:48.8686689Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef3807a5-a1bb-4bae-a3d7-781a09a2a198","type":"Microsoft.Authorization/roleAssignments","name":"ef3807a5-a1bb-4bae-a3d7-781a09a2a198"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-12T17:41:39.7941619Z","updatedOn":"2021-03-12T17:41:39.7941619Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4625aa1-611e-448a-bf3e-f37f2bc878a3","type":"Microsoft.Authorization/roleAssignments","name":"d4625aa1-611e-448a-bf3e-f37f2bc878a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-16T23:49:03.3523073Z","updatedOn":"2021-03-16T23:49:03.3523073Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f33005f1-10be-43e3-a87f-9e2f954fb2db","type":"Microsoft.Authorization/roleAssignments","name":"f33005f1-10be-43e3-a87f-9e2f954fb2db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-25T00:58:10.6501184Z","updatedOn":"2021-03-25T00:58:10.6501184Z","createdBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","updatedBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2aca810c-8d05-11eb-bd25-000d3a4359fa","type":"Microsoft.Authorization/roleAssignments","name":"2aca810c-8d05-11eb-bd25-000d3a4359fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-26T10:24:43.4077585Z","updatedOn":"2021-03-26T10:24:43.4077585Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/779ad30e-8e1d-11eb-8aa9-000d3ac754e3","type":"Microsoft.Authorization/roleAssignments","name":"779ad30e-8e1d-11eb-8aa9-000d3ac754e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/46610f90-7283-a03b-3791-33f202e8180c","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T22:46:23.4119129Z","updatedOn":"2022-01-27T22:46:23.4119129Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/46610f90-7283-a03b-3791-33f202e8180c/providers/Microsoft.Authorization/roleAssignments/d92f870d-03da-4626-a453-84734da0b49c","type":"Microsoft.Authorization/roleAssignments","name":"d92f870d-03da-4626-a453-84734da0b49c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.8423155Z","updatedOn":"2019-03-26T22:01:02.8423155Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad/providers/Microsoft.Authorization/roleAssignments/3d069c98-e792-47bd-b58a-399e2d42dbab","type":"Microsoft.Authorization/roleAssignments","name":"3d069c98-e792-47bd-b58a-399e2d42dbab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad","condition":null,"conditionVersion":null,"createdOn":"2021-04-09T18:15:49.7063250Z","updatedOn":"2021-04-09T18:15:49.7063250Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad/providers/Microsoft.Authorization/roleAssignments/a6b435df-80e6-4a7b-b109-2af5f373d238","type":"Microsoft.Authorization/roleAssignments","name":"a6b435df-80e6-4a7b-b109-2af5f373d238"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9176787Z","updatedOn":"2019-03-26T22:01:02.9176787Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320","type":"Microsoft.Authorization/roleAssignments","name":"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:49:37.3000523Z","updatedOn":"2019-03-27T00:49:37.3000523Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29","type":"Microsoft.Authorization/roleAssignments","name":"e6e1fffd-83f7-40c7-9f33-e56e2cf75b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:50:08.3039053Z","updatedOn":"2019-03-27T00:50:08.3039053Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12","type":"Microsoft.Authorization/roleAssignments","name":"3d01f56e-ee3a-41ed-a775-0e067546cb12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T23:11:28.9217618Z","updatedOn":"2022-06-28T23:11:28.9217618Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/869183bd-893a-46f9-bb02-45e48b13f1be","type":"Microsoft.Authorization/roleAssignments","name":"869183bd-893a-46f9-bb02-45e48b13f1be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T22:32:46.2324804Z","updatedOn":"2023-02-21T22:32:46.2324804Z","createdBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","updatedBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/df7c1e07-5c2d-4b22-b7b9-fd11a8569db3","type":"Microsoft.Authorization/roleAssignments","name":"df7c1e07-5c2d-4b22-b7b9-fd11a8569db3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T20:23:16.3808369Z","updatedOn":"2023-05-04T20:23:16.3808369Z","createdBy":"fa00c2de-57d5-4527-9254-4d513f482d0a","updatedBy":"fa00c2de-57d5-4527-9254-4d513f482d0a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/59109645-7b2b-4278-831a-2e4627ec603d","type":"Microsoft.Authorization/roleAssignments","name":"59109645-7b2b-4278-831a-2e4627ec603d"}]}' headers: cache-control: - no-cache content-length: - - '65957' + - '787085' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:10:38 GMT + - Wed, 14 Jun 2023 21:03:05 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_virtual_node_addon.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_virtual_node_addon.yaml old mode 100755 new mode 100644 index 1cffa107c16..b4268dd5993 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_virtual_node_addon.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_with_virtual_node_addon.yaml @@ -13,17 +13,18 @@ interactions: ParameterSetName: - --resource-group --vnet-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\",\r\n - \ \"etag\": \"W/\\\"b12ec730-3066-4d1b-a211-fcbf54699db8\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.128.0.0/24\",\r\n - \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\"\ + ,\r\n \"etag\": \"W/\\\"c11c1668-899e-4b91-81b8-2772fc1257a1\\\"\",\r\n \ + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ + addressPrefix\": \"10.128.0.0/24\",\r\n \"delegations\": [],\r\n \"\ + privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\"\ + : \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ + \r\n}" headers: cache-control: - no-cache @@ -32,9 +33,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 09:56:31 GMT + - Sun, 18 Jun 2023 00:55:38 GMT etag: - - W/"b12ec730-3066-4d1b-a211-fcbf54699db8" + - W/"c11c1668-899e-4b91-81b8-2772fc1257a1" expires: - '-1' pragma: @@ -51,10 +52,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 110ffceb-e2ba-468c-9b8e-d11e1b53ec52 + - ef3b12b2-985e-4920-8db3-6b7adf3016cf status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -71,8 +72,8 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-04-01 response: @@ -88,7 +89,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 09:56:31 GMT + - Sun, 18 Jun 2023 00:55:40 GMT expires: - '-1' pragma: @@ -118,22 +119,38 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default/providers/Microsoft.Authorization/roleAssignments?$filter=atScope()&api-version=2022-04-01 response: body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-26T05:33:00.7067936Z","updatedOn":"2021-04-26T05:33:00.7067936Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2adf4737-6342-4f63-aeb2-5fcd3426a387","type":"Microsoft.Authorization/roleAssignments","name":"2adf4737-6342-4f63-aeb2-5fcd3426a387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-26T06:09:24.5972802Z","updatedOn":"2021-04-26T06:09:24.5972802Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4572c05-f69f-4e5c-aac6-79afefcf0e2e","type":"Microsoft.Authorization/roleAssignments","name":"c4572c05-f69f-4e5c-aac6-79afefcf0e2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-18T05:18:40.4643436Z","updatedOn":"2021-06-18T05:18:40.4643436Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f926301-cc14-4a88-a3b7-c159d73d01f6","type":"Microsoft.Authorization/roleAssignments","name":"3f926301-cc14-4a88-a3b7-c159d73d01f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:40.4541416Z","updatedOn":"2022-01-25T05:49:40.4541416Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/95e51146-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"95e51146-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:41.6466655Z","updatedOn":"2022-01-25T05:49:41.6466655Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96d4d041-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"96d4d041-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:42.8008295Z","updatedOn":"2022-01-25T05:49:42.8008295Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/978dbc52-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"978dbc52-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:43.7159467Z","updatedOn":"2022-01-25T05:49:43.7159467Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9808753a-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"9808753a-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:44.8535285Z","updatedOn":"2022-01-25T05:49:44.8535285Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9895826c-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"9895826c-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:21.9669611Z","updatedOn":"2022-01-25T06:00:21.9669611Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/143cab45-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"143cab45-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:21.7844500Z","updatedOn":"2022-01-25T06:00:21.7844500Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/143a47b2-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"143a47b2-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:22.8152511Z","updatedOn":"2022-01-25T06:00:22.8152511Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1503a122-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"1503a122-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:22.7549989Z","updatedOn":"2022-01-25T06:00:22.7549989Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14fdfc11-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"14fdfc11-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:47.5002672Z","updatedOn":"2022-01-25T06:00:47.5002672Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23901ba1-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"23901ba1-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:47.9954045Z","updatedOn":"2022-01-25T06:00:47.9954045Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23d4b2c8-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"23d4b2c8-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:48.0124462Z","updatedOn":"2022-01-25T06:00:48.0124462Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23eb1c2a-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"23eb1c2a-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:49.0142818Z","updatedOn":"2022-01-25T06:00:49.0142818Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/248c7804-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"248c7804-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:49.8561822Z","updatedOn":"2022-01-25T06:00:49.8561822Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/25212cc5-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"25212cc5-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:03:00.8232622Z","updatedOn":"2022-01-25T06:03:00.8232622Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/730ae441-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"730ae441-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:03:01.6908492Z","updatedOn":"2022-01-25T06:03:01.6908492Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/73b81c51-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"73b81c51-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:27.0646115Z","updatedOn":"2022-01-25T06:05:27.0646115Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca436279-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"ca436279-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:27.8245772Z","updatedOn":"2022-01-25T06:05:27.8245772Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cad7146c-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cad7146c-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:28.8193427Z","updatedOn":"2022-01-25T06:05:28.8193427Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cb6be874-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cb6be874-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:30.0125029Z","updatedOn":"2022-01-25T06:05:30.0125029Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc20f7f4-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cc20f7f4-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:31.2002633Z","updatedOn":"2022-01-25T06:05:31.2002633Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ccd748dd-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"ccd748dd-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:32.4937030Z","updatedOn":"2022-01-25T06:05:32.4937030Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd4bbd1a-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cd4bbd1a-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:33.6999970Z","updatedOn":"2022-01-25T06:05:33.6999970Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce56964e-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"ce56964e-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:35.3719606Z","updatedOn":"2022-01-25T06:05:35.3719606Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf53c36b-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cf53c36b-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:37.0989473Z","updatedOn":"2022-01-25T06:05:37.0989473Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0537e9f-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d0537e9f-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:37.9186616Z","updatedOn":"2022-01-25T06:05:37.9186616Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0d7c10e-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d0d7c10e-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:39.2245796Z","updatedOn":"2022-01-25T06:05:39.2245796Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d187dc7e-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d187dc7e-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:41.3147495Z","updatedOn":"2022-01-25T06:05:41.3147495Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2d190da-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d2d190da-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:42.0909979Z","updatedOn":"2022-01-25T06:05:42.0909979Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3553305-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d3553305-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T04:11:40.8923959Z","updatedOn":"2023-02-10T04:11:40.8923959Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b9cb4b1-7e07-4127-b87e-47e7ab8ae685","type":"Microsoft.Authorization/roleAssignments","name":"7b9cb4b1-7e07-4127-b87e-47e7ab8ae685"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-18T03:09:33.8702688Z","updatedOn":"2021-09-18T03:09:33.8702688Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99d6fd13-909e-4c52-807e-77f7a5af83c8","type":"Microsoft.Authorization/roleAssignments","name":"99d6fd13-909e-4c52-807e-77f7a5af83c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T17:23:35.8382756Z","updatedOn":"2021-10-08T17:23:35.8382756Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de/providers/Microsoft.Authorization/roleAssignments/ade4333c-4321-4b68-b498-d081d55e2b0c","type":"Microsoft.Authorization/roleAssignments","name":"ade4333c-4321-4b68-b498-d081d55e2b0c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9136073Z","updatedOn":"2019-03-26T22:01:02.9136073Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6f4de15e-9316-4714-a7c4-40c46cf8e067","type":"Microsoft.Authorization/roleAssignments","name":"6f4de15e-9316-4714-a7c4-40c46cf8e067"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:13.2137492Z","updatedOn":"2020-02-25T18:36:13.2137492Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/18fdd87e-1c01-424e-b380-32310f4940c2","type":"Microsoft.Authorization/roleAssignments","name":"18fdd87e-1c01-424e-b380-32310f4940c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:00.4746112Z","updatedOn":"2020-02-25T18:36:00.4746112Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d9bcf58a-6f24-446d-bf60-20ffe5142396","type":"Microsoft.Authorization/roleAssignments","name":"d9bcf58a-6f24-446d-bf60-20ffe5142396"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:55.7490022Z","updatedOn":"2020-02-25T18:35:55.7490022Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6e2b954b-42b2-48e0-997a-622601f0a4b4","type":"Microsoft.Authorization/roleAssignments","name":"6e2b954b-42b2-48e0-997a-622601f0a4b4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:57.9173081Z","updatedOn":"2020-02-25T18:35:57.9173081Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9","type":"Microsoft.Authorization/roleAssignments","name":"8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:23.0673659Z","updatedOn":"2020-02-25T18:36:23.0673659Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d0817c57-3e5b-4363-88b7-52baadd5c362","type":"Microsoft.Authorization/roleAssignments","name":"d0817c57-3e5b-4363-88b7-52baadd5c362"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:31.2596366Z","updatedOn":"2020-02-25T18:36:31.2596366Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0dabf212-a1c7-4af6-ba8b-be045493b368","type":"Microsoft.Authorization/roleAssignments","name":"0dabf212-a1c7-4af6-ba8b-be045493b368"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:52.9188704Z","updatedOn":"2020-02-25T18:35:52.9188704Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d674b853-332e-4437-9ddb-bba8fde7ccce","type":"Microsoft.Authorization/roleAssignments","name":"d674b853-332e-4437-9ddb-bba8fde7ccce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:38.8393742Z","updatedOn":"2020-02-25T18:36:38.8393742Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/00625383-053d-4227-a4db-b098e9bd2289","type":"Microsoft.Authorization/roleAssignments","name":"00625383-053d-4227-a4db-b098e9bd2289"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:05.0954462Z","updatedOn":"2020-02-25T18:36:05.0954462Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/3151fe9c-fcd2-45d3-a256-72fb13b86df5","type":"Microsoft.Authorization/roleAssignments","name":"3151fe9c-fcd2-45d3-a256-72fb13b86df5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-07-06T18:51:23.0753297Z","updatedOn":"2020-07-06T18:51:23.0753297Z","createdBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","updatedBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b3a9e1db-fde1-4ddd-ac1c-91913be67359","type":"Microsoft.Authorization/roleAssignments","name":"b3a9e1db-fde1-4ddd-ac1c-91913be67359"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T21:14:55.1655079Z","updatedOn":"2023-02-28T22:54:18.0450083Z","createdBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","updatedBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6565c104-61e2-5756-96d7-663b216c8b11","type":"Microsoft.Authorization/roleAssignments","name":"6565c104-61e2-5756-96d7-663b216c8b11"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-02-17T00:30:39.4967398Z","updatedOn":"2022-02-17T00:30:39.4967398Z","createdBy":"a4319ad3-20be-4542-8952-685b66e56377","updatedBy":"a4319ad3-20be-4542-8952-685b66e56377","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d8aedac6-3663-42b3-add4-c013b7935fb4","type":"Microsoft.Authorization/roleAssignments","name":"d8aedac6-3663-42b3-add4-c013b7935fb4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-03-02T23:53:39.1630622Z","updatedOn":"2022-03-02T23:53:39.1630622Z","createdBy":"a4319ad3-20be-4542-8952-685b66e56377","updatedBy":"a4319ad3-20be-4542-8952-685b66e56377","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b5f0a13f-ac13-4e45-8588-15f5d9a02b20","type":"Microsoft.Authorization/roleAssignments","name":"b5f0a13f-ac13-4e45-8588-15f5d9a02b20"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:58:05.8353141Z","updatedOn":"2022-03-08T00:58:05.8353141Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/403b97d1-ee0a-4b10-afe1-f36f368d2ced","type":"Microsoft.Authorization/roleAssignments","name":"403b97d1-ee0a-4b10-afe1-f36f368d2ced"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-05-16T23:08:20.8536608Z","updatedOn":"2022-05-16T23:08:20.8536608Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8b338a13-cfa6-42e6-b424-fb375ce9d07c","type":"Microsoft.Authorization/roleAssignments","name":"8b338a13-cfa6-42e6-b424-fb375ce9d07c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-05-17T18:23:54.2264851Z","updatedOn":"2022-05-31T17:20:00.8273681Z","createdBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","updatedBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f0576973-5014-5fe2-b3f2-cf3aace860d6","type":"Microsoft.Authorization/roleAssignments","name":"f0576973-5014-5fe2-b3f2-cf3aace860d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:21.3325762Z","updatedOn":"2022-07-19T00:07:21.3325762Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2697280b-812c-472d-841b-a10a9fe540a5","type":"Microsoft.Authorization/roleAssignments","name":"2697280b-812c-472d-841b-a10a9fe540a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:23.7020980Z","updatedOn":"2022-07-19T00:07:23.7020980Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f4254463-7a28-4d26-b331-5a18c354cbe6","type":"Microsoft.Authorization/roleAssignments","name":"f4254463-7a28-4d26-b331-5a18c354cbe6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:26.4080657Z","updatedOn":"2022-07-19T00:07:26.4080657Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/065a63ba-71cc-4c69-b92b-bc67421e7e64","type":"Microsoft.Authorization/roleAssignments","name":"065a63ba-71cc-4c69-b92b-bc67421e7e64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:33.0012805Z","updatedOn":"2021-08-09T18:17:33.0012805Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/01de8fe7-aae0-4d5c-844a-f0bdb8335252","type":"Microsoft.Authorization/roleAssignments","name":"01de8fe7-aae0-4d5c-844a-f0bdb8335252"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:39.9188336Z","updatedOn":"2021-08-09T18:17:39.9188336Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ab2be506-5489-4c1f-add0-f5ed87a10439","type":"Microsoft.Authorization/roleAssignments","name":"ab2be506-5489-4c1f-add0-f5ed87a10439"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:18.2000692Z","updatedOn":"2021-08-24T19:32:18.2000692Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0ce2f3fb-17ea-4193-9081-09aa4b39fec4","type":"Microsoft.Authorization/roleAssignments","name":"0ce2f3fb-17ea-4193-9081-09aa4b39fec4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:36.6775144Z","updatedOn":"2021-08-24T19:32:36.6775144Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2e95b289-99bd-4e68-83de-5433f2a0428c","type":"Microsoft.Authorization/roleAssignments","name":"2e95b289-99bd-4e68-83de-5433f2a0428c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:09.1056400Z","updatedOn":"2021-11-01T22:46:09.1056400Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/82fe7886-5c1b-42c2-9319-7b4d436d8aba","type":"Microsoft.Authorization/roleAssignments","name":"82fe7886-5c1b-42c2-9319-7b4d436d8aba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:14.7527743Z","updatedOn":"2021-11-01T22:46:14.7527743Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/12162b26-25fb-4ef5-a6e8-651446483cb6","type":"Microsoft.Authorization/roleAssignments","name":"12162b26-25fb-4ef5-a6e8-651446483cb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:20.6399869Z","updatedOn":"2021-11-01T22:46:20.6399869Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870","type":"Microsoft.Authorization/roleAssignments","name":"105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-01-26T20:10:13.8998989Z","updatedOn":"2021-01-26T20:10:13.8998989Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b36517ec-61d3-468d-afdc-eceda8adb4ee","type":"Microsoft.Authorization/roleAssignments","name":"b36517ec-61d3-468d-afdc-eceda8adb4ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-02-06T00:13:19.1780775Z","updatedOn":"2021-02-06T00:13:19.1780775Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5216c1ee-4f58-4d36-b379-6c04b1fbd157","type":"Microsoft.Authorization/roleAssignments","name":"5216c1ee-4f58-4d36-b379-6c04b1fbd157"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:26:34.3109215Z","updatedOn":"2021-04-16T18:26:34.3109215Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/7464f8a3-9f55-443b-a3a5-44a31b100cad","type":"Microsoft.Authorization/roleAssignments","name":"7464f8a3-9f55-443b-a3a5-44a31b100cad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:27:56.4446265Z","updatedOn":"2021-04-16T18:27:56.4446265Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8f430c4c-4317-4495-9f01-4f3d4e1ca111","type":"Microsoft.Authorization/roleAssignments","name":"8f430c4c-4317-4495-9f01-4f3d4e1ca111"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-05-04T19:20:06.7695456Z","updatedOn":"2021-05-04T19:20:06.7695456Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa","type":"Microsoft.Authorization/roleAssignments","name":"fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9176787Z","updatedOn":"2019-03-26T22:01:02.9176787Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320","type":"Microsoft.Authorization/roleAssignments","name":"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:49:37.3000523Z","updatedOn":"2019-03-27T00:49:37.3000523Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29","type":"Microsoft.Authorization/roleAssignments","name":"e6e1fffd-83f7-40c7-9f33-e56e2cf75b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:50:08.3039053Z","updatedOn":"2019-03-27T00:50:08.3039053Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12","type":"Microsoft.Authorization/roleAssignments","name":"3d01f56e-ee3a-41ed-a775-0e067546cb12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T23:11:28.9217618Z","updatedOn":"2022-06-28T23:11:28.9217618Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/869183bd-893a-46f9-bb02-45e48b13f1be","type":"Microsoft.Authorization/roleAssignments","name":"869183bd-893a-46f9-bb02-45e48b13f1be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T22:32:46.2324804Z","updatedOn":"2023-02-21T22:32:46.2324804Z","createdBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","updatedBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/df7c1e07-5c2d-4b22-b7b9-fd11a8569db3","type":"Microsoft.Authorization/roleAssignments","name":"df7c1e07-5c2d-4b22-b7b9-fd11a8569db3"}]}' + string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:58.6582166Z","updatedOn":"2020-08-21T16:23:58.6582166Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ab72fbd-e5fe-4a7d-ae20-baad615d688d","type":"Microsoft.Authorization/roleAssignments","name":"8ab72fbd-e5fe-4a7d-ae20-baad615d688d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:59.5326945Z","updatedOn":"2020-08-21T16:23:59.5326945Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4ed77f1d-82a2-4a02-b48e-fa5776870280","type":"Microsoft.Authorization/roleAssignments","name":"4ed77f1d-82a2-4a02-b48e-fa5776870280"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-02T01:52:45.8299382Z","updatedOn":"2020-09-02T01:52:45.8299382Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3e21284b-6bd7-431a-81ae-ccaf56267ab5","type":"Microsoft.Authorization/roleAssignments","name":"3e21284b-6bd7-431a-81ae-ccaf56267ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-07T09:44:47.3865537Z","updatedOn":"2020-09-07T09:44:47.3865537Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79357f85-973d-4621-b1bd-d1ecb645e146","type":"Microsoft.Authorization/roleAssignments","name":"79357f85-973d-4621-b1bd-d1ecb645e146"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-24T00:04:10.5243862Z","updatedOn":"2020-09-24T00:04:10.5243862Z","createdBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","updatedBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78586b2c-fdf9-11ea-9e5e-8851fb3f4911","type":"Microsoft.Authorization/roleAssignments","name":"78586b2c-fdf9-11ea-9e5e-8851fb3f4911"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-29T10:55:39.3762731Z","updatedOn":"2020-09-29T10:55:39.3762731Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41e159ac-411a-4eed-b319-5b92571d2950","type":"Microsoft.Authorization/roleAssignments","name":"41e159ac-411a-4eed-b319-5b92571d2950"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-06T00:33:22.8792900Z","updatedOn":"2020-10-06T00:33:22.8792900Z","createdBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","updatedBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24d0c5e6-0763-11eb-82a0-d636039e345c","type":"Microsoft.Authorization/roleAssignments","name":"24d0c5e6-0763-11eb-82a0-d636039e345c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-14T00:29:42.9981174Z","updatedOn":"2020-10-14T00:29:42.9981174Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6af4ef5-80f6-4303-a641-45689a1646dc","type":"Microsoft.Authorization/roleAssignments","name":"c6af4ef5-80f6-4303-a641-45689a1646dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-16T16:42:17.7175670Z","updatedOn":"2020-10-16T16:42:17.7175670Z","createdBy":"d69d1d49-5dc8-4c8e-afb6-325d83ddcee8","updatedBy":"d69d1d49-5dc8-4c8e-afb6-325d83ddcee8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5854c7a2-cf00-46f9-9cc1-d977f34324df","type":"Microsoft.Authorization/roleAssignments","name":"5854c7a2-cf00-46f9-9cc1-d977f34324df"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-02T09:02:29.2637630Z","updatedOn":"2020-11-02T09:02:29.2637630Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ad1faa8-8680-4dec-a768-050e8349af33","type":"Microsoft.Authorization/roleAssignments","name":"0ad1faa8-8680-4dec-a768-050e8349af33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-03T22:00:44.4523883Z","updatedOn":"2020-11-03T22:00:44.4523883Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/908aa5ac-22a2-413a-9333-fcb0a1ba2c59","type":"Microsoft.Authorization/roleAssignments","name":"908aa5ac-22a2-413a-9333-fcb0a1ba2c59"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-09T14:00:59.0347294Z","updatedOn":"2020-11-09T14:00:59.0347294Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9541f93-ea4a-4b1b-98bf-839fecfcaa22","type":"Microsoft.Authorization/roleAssignments","name":"e9541f93-ea4a-4b1b-98bf-839fecfcaa22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-12-18T08:00:24.9874024Z","updatedOn":"2020-12-18T08:00:24.9874024Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7f60817e-27b5-486b-bbdb-b748bcb752d4","type":"Microsoft.Authorization/roleAssignments","name":"7f60817e-27b5-486b-bbdb-b748bcb752d4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-12-30T11:06:51.2887287Z","updatedOn":"2020-12-30T11:06:51.2887287Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1cbe1756-4a8f-11eb-b753-720008210d90","type":"Microsoft.Authorization/roleAssignments","name":"1cbe1756-4a8f-11eb-b753-720008210d90"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-01-13T06:12:19.1847916Z","updatedOn":"2021-01-13T06:12:19.1847916Z","createdBy":"241cd743-2c33-4860-bd3a-1df659c06eef","updatedBy":"241cd743-2c33-4860-bd3a-1df659c06eef","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/498bf4f6-5566-11eb-a35b-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"498bf4f6-5566-11eb-a35b-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-04T06:52:05.2038586Z","updatedOn":"2021-02-04T06:52:05.2038586Z","createdBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","updatedBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdf6a314-3605-4944-96c1-08b7364dba54","type":"Microsoft.Authorization/roleAssignments","name":"fdf6a314-3605-4944-96c1-08b7364dba54"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T00:37:53.4699042Z","updatedOn":"2021-02-17T00:37:53.4699042Z","createdBy":"e5ad6d43-d6ac-4061-84cc-f7cb826200a0","updatedBy":"e5ad6d43-d6ac-4061-84cc-f7cb826200a0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c06abb18-9697-41f9-9410-ff0ee9b13ab9","type":"Microsoft.Authorization/roleAssignments","name":"c06abb18-9697-41f9-9410-ff0ee9b13ab9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T01:26:55.0758483Z","updatedOn":"2021-02-17T01:26:55.0758483Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9812b416-33c9-4b88-bcdb-6b8406dd319f","type":"Microsoft.Authorization/roleAssignments","name":"9812b416-33c9-4b88-bcdb-6b8406dd319f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T01:38:17.8125104Z","updatedOn":"2021-02-17T01:38:17.8125104Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82e0c83f-b7dd-49f6-b501-ff05951db69d","type":"Microsoft.Authorization/roleAssignments","name":"82e0c83f-b7dd-49f6-b501-ff05951db69d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-19T01:25:51.9967288Z","updatedOn":"2021-02-19T01:25:51.9967288Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2e4ab306-7ae7-4867-8e22-90215bdbeb9a","type":"Microsoft.Authorization/roleAssignments","name":"2e4ab306-7ae7-4867-8e22-90215bdbeb9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-01T21:51:55.4255791Z","updatedOn":"2021-03-01T21:51:55.4255791Z","createdBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","updatedBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36175f2d-f556-464e-a509-19cbb3f45909","type":"Microsoft.Authorization/roleAssignments","name":"36175f2d-f556-464e-a509-19cbb3f45909"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-21T03:42:13.8891609Z","updatedOn":"2020-02-21T03:42:13.8891609Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c41b0416-12e4-49bb-9e35-411e4f409102","type":"Microsoft.Authorization/roleAssignments","name":"c41b0416-12e4-49bb-9e35-411e4f409102"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-22T07:53:45.7192431Z","updatedOn":"2020-04-22T07:53:45.7192431Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d01cbd3-f3e3-4712-95c6-cf07a0224887","type":"Microsoft.Authorization/roleAssignments","name":"0d01cbd3-f3e3-4712-95c6-cf07a0224887"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-30T06:27:35.9310363Z","updatedOn":"2020-04-30T06:27:35.9310363Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a1327e4-100e-43ee-b04e-1403969b805b","type":"Microsoft.Authorization/roleAssignments","name":"6a1327e4-100e-43ee-b04e-1403969b805b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-06-13T06:44:49.9960198Z","updatedOn":"2019-06-13T06:44:49.9960198Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33958269-41a0-400a-91a1-6303d954c8f0","type":"Microsoft.Authorization/roleAssignments","name":"33958269-41a0-400a-91a1-6303d954c8f0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-04-16T02:04:22.4782415Z","updatedOn":"2019-04-16T02:04:22.4782415Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bacdb283-653c-47eb-a578-11743d7898f8","type":"Microsoft.Authorization/roleAssignments","name":"bacdb283-653c-47eb-a578-11743d7898f8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-27T09:09:33.7347978Z","updatedOn":"2020-03-27T09:09:33.7347978Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d355b17-e9d6-47b7-9181-b54ad0083793","type":"Microsoft.Authorization/roleAssignments","name":"6d355b17-e9d6-47b7-9181-b54ad0083793"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-19T02:50:30.0038186Z","updatedOn":"2019-03-19T02:50:30.0038186Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26adec15-a0e4-4b2e-a437-9b545b9723fc","type":"Microsoft.Authorization/roleAssignments","name":"26adec15-a0e4-4b2e-a437-9b545b9723fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-04-17T00:50:00.2288905Z","updatedOn":"2019-04-17T00:50:00.2288905Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e873fd7-4bdb-4df5-a510-c15f3ce99cd6","type":"Microsoft.Authorization/roleAssignments","name":"0e873fd7-4bdb-4df5-a510-c15f3ce99cd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-08T07:40:31.7235048Z","updatedOn":"2020-05-08T07:40:31.7235048Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbfa0c0c-2653-4fb8-b9e5-d41bd96053a7","type":"Microsoft.Authorization/roleAssignments","name":"cbfa0c0c-2653-4fb8-b9e5-d41bd96053a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-11-15T22:27:15.6601349Z","updatedOn":"2018-11-15T22:27:15.6601349Z","createdBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","updatedBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/418847ec-df97-4b29-9711-fc833817e5d6","type":"Microsoft.Authorization/roleAssignments","name":"418847ec-df97-4b29-9711-fc833817e5d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-28T14:20:52.7506898Z","updatedOn":"2019-08-28T14:20:52.7506898Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/715fd118-93b8-4b09-822d-48de5afb21e3","type":"Microsoft.Authorization/roleAssignments","name":"715fd118-93b8-4b09-822d-48de5afb21e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-06T05:22:04.7673784Z","updatedOn":"2019-01-06T05:22:04.7673784Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba5c8600-8cc9-4778-9735-c3d57d26e50d","type":"Microsoft.Authorization/roleAssignments","name":"ba5c8600-8cc9-4778-9735-c3d57d26e50d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-02T16:21:28.6789246Z","updatedOn":"2020-06-02T16:21:28.6789246Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd6bf5d5-fc1c-4fcd-81f3-0d11d3ff9f42","type":"Microsoft.Authorization/roleAssignments","name":"bd6bf5d5-fc1c-4fcd-81f3-0d11d3ff9f42"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-20T08:42:00.9560545Z","updatedOn":"2020-04-20T08:42:00.9560545Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7a41b62f-97d4-4f4c-8bfc-4a8dd708e00f","type":"Microsoft.Authorization/roleAssignments","name":"7a41b62f-97d4-4f4c-8bfc-4a8dd708e00f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-23T03:10:28.2381030Z","updatedOn":"2020-04-23T03:10:28.2381030Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f98d1512-e634-4663-a219-24be2e6bfe1c","type":"Microsoft.Authorization/roleAssignments","name":"f98d1512-e634-4663-a219-24be2e6bfe1c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-15T02:06:03.3308352Z","updatedOn":"2020-04-15T02:06:03.3308352Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6142150e-c404-48e6-a731-fffb36357051","type":"Microsoft.Authorization/roleAssignments","name":"6142150e-c404-48e6-a731-fffb36357051"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-11-16T23:46:13.9660279Z","updatedOn":"2018-11-16T23:46:13.9660279Z","createdBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","updatedBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b66b1ea-89dd-4bc6-8d89-96298648eb40","type":"Microsoft.Authorization/roleAssignments","name":"2b66b1ea-89dd-4bc6-8d89-96298648eb40"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-10-27T00:03:26.2878499Z","updatedOn":"2018-10-27T00:03:26.2878499Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea920230-1aba-4f80-9eef-3fed8216f594","type":"Microsoft.Authorization/roleAssignments","name":"ea920230-1aba-4f80-9eef-3fed8216f594"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-03T09:55:40.2829720Z","updatedOn":"2020-04-03T09:55:40.2829720Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9c2a551-11aa-4b0a-8816-f8511cd46a32","type":"Microsoft.Authorization/roleAssignments","name":"c9c2a551-11aa-4b0a-8816-f8511cd46a32"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-26T21:10:42.2124416Z","updatedOn":"2020-03-26T21:10:42.2124416Z","createdBy":"50ee185f-0eb1-4577-ae14-4ecf59cfa8f7","updatedBy":"50ee185f-0eb1-4577-ae14-4ecf59cfa8f7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d394da6c-4def-47de-8689-791727331c5b","type":"Microsoft.Authorization/roleAssignments","name":"d394da6c-4def-47de-8689-791727331c5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-21T07:34:50.7125622Z","updatedOn":"2020-04-21T07:34:50.7125622Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ddeb2255-2bb6-458a-a891-532e96ae5483","type":"Microsoft.Authorization/roleAssignments","name":"ddeb2255-2bb6-458a-a891-532e96ae5483"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-23T04:07:45.3308845Z","updatedOn":"2020-06-23T04:07:45.3308845Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15d1dab1-b507-11ea-819c-a28e10bedef6","type":"Microsoft.Authorization/roleAssignments","name":"15d1dab1-b507-11ea-819c-a28e10bedef6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-13T00:09:08.8179220Z","updatedOn":"2020-05-13T00:09:08.8179220Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/08a578f0-4875-47d0-8775-946b3a0f2b06","type":"Microsoft.Authorization/roleAssignments","name":"08a578f0-4875-47d0-8775-946b3a0f2b06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-10T23:15:46.8549700Z","updatedOn":"2020-05-10T23:15:46.8549700Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/22d3da65-7681-445e-9080-e748e494676f","type":"Microsoft.Authorization/roleAssignments","name":"22d3da65-7681-445e-9080-e748e494676f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-29T13:30:14.1177711Z","updatedOn":"2019-08-29T13:30:14.1177711Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a2c1014-c1ba-4ae9-a632-90967c28429d","type":"Microsoft.Authorization/roleAssignments","name":"4a2c1014-c1ba-4ae9-a632-90967c28429d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-27T01:26:21.7189691Z","updatedOn":"2020-02-27T01:26:21.7189691Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28808064-5900-11ea-81c8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"28808064-5900-11ea-81c8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-07-03T01:05:25.8863198Z","updatedOn":"2020-07-03T01:05:25.8863198Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46877403-bcc9-11ea-924f-00155d871f03","type":"Microsoft.Authorization/roleAssignments","name":"46877403-bcc9-11ea-924f-00155d871f03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-28T19:57:23.3708745Z","updatedOn":"2019-03-28T19:57:23.3708745Z","createdBy":"66cb050e-bae1-4005-8c4c-0f6dd9b34978","updatedBy":"66cb050e-bae1-4005-8c4c-0f6dd9b34978","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc796cab-2f6b-4099-b9a3-7500f5516153","type":"Microsoft.Authorization/roleAssignments","name":"cc796cab-2f6b-4099-b9a3-7500f5516153"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-30T22:56:44.9793119Z","updatedOn":"2020-03-30T22:56:44.9793119Z","createdBy":"53bb8815-874d-4b05-9953-1158e05aa080","updatedBy":"53bb8815-874d-4b05-9953-1158e05aa080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/000ea275-41c4-40ce-943f-98a8849a56bc","type":"Microsoft.Authorization/roleAssignments","name":"000ea275-41c4-40ce-943f-98a8849a56bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-10T01:13:53.0806696Z","updatedOn":"2020-06-10T01:13:53.0806696Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a584fad9-aab7-11ea-b7e7-00155d4b0124","type":"Microsoft.Authorization/roleAssignments","name":"a584fad9-aab7-11ea-b7e7-00155d4b0124"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-12T00:23:23.9037436Z","updatedOn":"2020-05-12T00:23:23.9037436Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ff95229-981f-40d7-889f-97bc90b8f387","type":"Microsoft.Authorization/roleAssignments","name":"6ff95229-981f-40d7-889f-97bc90b8f387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-09T00:52:52.1315983Z","updatedOn":"2020-06-09T00:52:52.1315983Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7512dec1-86e5-400d-8bc9-f24f181127f3","type":"Microsoft.Authorization/roleAssignments","name":"7512dec1-86e5-400d-8bc9-f24f181127f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-14T04:03:23.9185561Z","updatedOn":"2020-04-14T04:03:23.9185561Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f0f495d-0356-4239-b966-3f47f5f1054a","type":"Microsoft.Authorization/roleAssignments","name":"0f0f495d-0356-4239-b966-3f47f5f1054a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-14T00:42:59.8868253Z","updatedOn":"2020-05-14T00:42:59.8868253Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b3c8d44-237c-410c-a095-52ded7f5cd26","type":"Microsoft.Authorization/roleAssignments","name":"6b3c8d44-237c-410c-a095-52ded7f5cd26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-11T13:26:01.9493491Z","updatedOn":"2020-02-11T13:26:01.9493491Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8fab1ba3-53c2-4b21-9d32-dc89fd061811","type":"Microsoft.Authorization/roleAssignments","name":"8fab1ba3-53c2-4b21-9d32-dc89fd061811"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-03T05:34:39.2163770Z","updatedOn":"2020-04-03T05:34:39.2163770Z","createdBy":"ed4707f4-8b58-42fe-9afd-0045d7a9b262","updatedBy":"ed4707f4-8b58-42fe-9afd-0045d7a9b262","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e4edc2a-dd1f-469b-9a44-f0693866b843","type":"Microsoft.Authorization/roleAssignments","name":"8e4edc2a-dd1f-469b-9a44-f0693866b843"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-20T19:40:09.1141460Z","updatedOn":"2020-02-20T19:40:09.1141460Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4673bf4-97da-4102-9284-2a7315b88a34","type":"Microsoft.Authorization/roleAssignments","name":"d4673bf4-97da-4102-9284-2a7315b88a34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-21T07:19:44.2488168Z","updatedOn":"2020-04-21T07:19:44.2488168Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fadbe071-d757-48fc-b82a-4784249ded10","type":"Microsoft.Authorization/roleAssignments","name":"fadbe071-d757-48fc-b82a-4784249ded10"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-12T17:29:23.0437979Z","updatedOn":"2019-03-12T17:29:23.0437979Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7e76154-c2a7-4419-b73f-e8c6010318c9","type":"Microsoft.Authorization/roleAssignments","name":"a7e76154-c2a7-4419-b73f-e8c6010318c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-16T23:29:48.3209681Z","updatedOn":"2020-03-16T23:29:48.3209681Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3eb4155b-2965-456b-8f00-bca8a13b1684","type":"Microsoft.Authorization/roleAssignments","name":"3eb4155b-2965-456b-8f00-bca8a13b1684"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:49:54.3783181Z","updatedOn":"2022-01-05T01:49:54.3783181Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/25b4b181-6b51-4bce-beb0-1310829e6de3","type":"Microsoft.Authorization/roleAssignments","name":"25b4b181-6b51-4bce-beb0-1310829e6de3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:50:16.7495633Z","updatedOn":"2022-01-05T01:50:16.7495633Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/093e4a08-9393-4b9d-b3a0-011d77557170","type":"Microsoft.Authorization/roleAssignments","name":"093e4a08-9393-4b9d-b3a0-011d77557170"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:50:40.1521378Z","updatedOn":"2022-01-05T01:50:40.1521378Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e5090ae4-6b40-4bab-9d46-482593ec6229","type":"Microsoft.Authorization/roleAssignments","name":"e5090ae4-6b40-4bab-9d46-482593ec6229"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:52:32.8811339Z","updatedOn":"2022-01-05T01:52:32.8811339Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/923a1dab-e203-422e-bb91-c492a895438e","type":"Microsoft.Authorization/roleAssignments","name":"923a1dab-e203-422e-bb91-c492a895438e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T03:31:42.0793122Z","updatedOn":"2022-01-05T03:31:42.0793122Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6cb2e77-1041-4f33-b449-27f9e8738933","type":"Microsoft.Authorization/roleAssignments","name":"d6cb2e77-1041-4f33-b449-27f9e8738933"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T20:29:36.5271689Z","updatedOn":"2022-01-05T20:29:36.5271689Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3267f83c-6e66-11ec-ae40-aa665a565aa7","type":"Microsoft.Authorization/roleAssignments","name":"3267f83c-6e66-11ec-ae40-aa665a565aa7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-08T01:44:09.0575891Z","updatedOn":"2022-01-08T01:44:09.0575891Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/772c985f-7024-11ec-ab61-00224859aac4","type":"Microsoft.Authorization/roleAssignments","name":"772c985f-7024-11ec-ab61-00224859aac4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-10T07:51:08.0345330Z","updatedOn":"2022-01-10T07:51:08.0345330Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/11391e93-71ea-11ec-97af-0022485937da","type":"Microsoft.Authorization/roleAssignments","name":"11391e93-71ea-11ec-97af-0022485937da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-10T19:52:35.8785494Z","updatedOn":"2022-01-10T19:52:35.8785494Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e403838c-88cd-4fc0-b3e8-45c39ad905c1","type":"Microsoft.Authorization/roleAssignments","name":"e403838c-88cd-4fc0-b3e8-45c39ad905c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-17T09:00:11.8306086Z","updatedOn":"2022-01-17T09:00:11.8306086Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2159ffa-089e-4729-a990-364e13db2a65","type":"Microsoft.Authorization/roleAssignments","name":"b2159ffa-089e-4729-a990-364e13db2a65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-18T13:28:29.0699621Z","updatedOn":"2022-01-18T13:28:29.0699621Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81905706-3ec4-4c25-9c82-d4640a0479c3","type":"Microsoft.Authorization/roleAssignments","name":"81905706-3ec4-4c25-9c82-d4640a0479c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-18T20:11:29.5693659Z","updatedOn":"2022-01-18T20:11:29.5693659Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00f40078-a8bd-4bae-9278-ef9de2d5f632","type":"Microsoft.Authorization/roleAssignments","name":"00f40078-a8bd-4bae-9278-ef9de2d5f632"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-19T08:18:43.7411382Z","updatedOn":"2022-01-19T08:18:43.7411382Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82d96cd7-1671-46d7-afc8-9e3d4c56170d","type":"Microsoft.Authorization/roleAssignments","name":"82d96cd7-1671-46d7-afc8-9e3d4c56170d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-19T18:26:48.3434705Z","updatedOn":"2022-01-19T18:26:48.3434705Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0614428a-cde1-4e89-8202-6cb5cd85e6d8","type":"Microsoft.Authorization/roleAssignments","name":"0614428a-cde1-4e89-8202-6cb5cd85e6d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-20T07:46:22.7990066Z","updatedOn":"2022-01-20T07:46:22.7990066Z","createdBy":"0d969ded-9dc4-4176-8b0f-5194740910bf","updatedBy":"0d969ded-9dc4-4176-8b0f-5194740910bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1134cc98-79c5-11ec-9058-ced79d6624f9","type":"Microsoft.Authorization/roleAssignments","name":"1134cc98-79c5-11ec-9058-ced79d6624f9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-21T02:59:53.1540625Z","updatedOn":"2022-01-21T02:59:53.1540625Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2b558e6-2979-4a34-ba92-81e51afae60d","type":"Microsoft.Authorization/roleAssignments","name":"e2b558e6-2979-4a34-ba92-81e51afae60d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-21T03:51:31.7700381Z","updatedOn":"2022-01-21T03:51:31.7700381Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/774b38ec-8425-4659-9c1c-3662aa0d128a","type":"Microsoft.Authorization/roleAssignments","name":"774b38ec-8425-4659-9c1c-3662aa0d128a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-24T08:18:11.4759466Z","updatedOn":"2022-01-24T08:18:11.4759466Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a6b5b99-dbf6-4270-8c73-cc3e5808e147","type":"Microsoft.Authorization/roleAssignments","name":"9a6b5b99-dbf6-4270-8c73-cc3e5808e147"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-24T08:32:50.8732169Z","updatedOn":"2022-01-24T08:32:50.8732169Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/11d67934-0c51-4dad-8284-f6aced7c815c","type":"Microsoft.Authorization/roleAssignments","name":"11d67934-0c51-4dad-8284-f6aced7c815c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T07:03:14.4901261Z","updatedOn":"2022-01-25T07:03:14.4901261Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dcacb94f-7dac-11ec-be41-c6ce4e0f899a","type":"Microsoft.Authorization/roleAssignments","name":"dcacb94f-7dac-11ec-be41-c6ce4e0f899a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T20:35:15.6769413Z","updatedOn":"2022-01-25T20:35:15.6769413Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9e8bf969-d76d-4923-84d9-d9f98b267d71","type":"Microsoft.Authorization/roleAssignments","name":"9e8bf969-d76d-4923-84d9-d9f98b267d71"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-26T15:50:53.7946290Z","updatedOn":"2022-01-26T15:50:53.7946290Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bdcc5219-7ebf-11ec-bada-00224878d5c3","type":"Microsoft.Authorization/roleAssignments","name":"bdcc5219-7ebf-11ec-bada-00224878d5c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T02:28:59.3221529Z","updatedOn":"2022-01-27T02:28:59.3221529Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28cd45d5-8a0f-4b35-8ee3-f82463ccdf3a","type":"Microsoft.Authorization/roleAssignments","name":"28cd45d5-8a0f-4b35-8ee3-f82463ccdf3a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T02:38:11.8679643Z","updatedOn":"2022-01-27T02:38:11.8679643Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3364749d-7f1a-11ec-9b35-e6e10709004e","type":"Microsoft.Authorization/roleAssignments","name":"3364749d-7f1a-11ec-9b35-e6e10709004e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T03:21:28.9388159Z","updatedOn":"2022-01-27T03:21:28.9388159Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5706d36-4da0-4a7e-abdb-20e8ce5c709d","type":"Microsoft.Authorization/roleAssignments","name":"f5706d36-4da0-4a7e-abdb-20e8ce5c709d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T22:45:56.1614375Z","updatedOn":"2022-01-27T22:45:56.1614375Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8757d35e-c05f-4b14-9b69-94880cf3c630","type":"Microsoft.Authorization/roleAssignments","name":"8757d35e-c05f-4b14-9b69-94880cf3c630"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-31T20:16:07.1248292Z","updatedOn":"2022-01-31T20:16:07.1248292Z","createdBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","updatedBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f16a76e-82d2-11ec-b26c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"9f16a76e-82d2-11ec-b26c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-31T23:19:58.8275488Z","updatedOn":"2022-01-31T23:19:58.8275488Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2192301f-06dd-491e-8e34-93a3cf5c0197","type":"Microsoft.Authorization/roleAssignments","name":"2192301f-06dd-491e-8e34-93a3cf5c0197"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-01T22:56:44.2373253Z","updatedOn":"2022-02-01T22:56:44.2373253Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/395d775a-83b2-11ec-8917-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"395d775a-83b2-11ec-8917-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-01T23:17:51.6753012Z","updatedOn":"2022-02-01T23:17:51.6753012Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb3685a8-f064-431a-8ab6-21f276ae0e4d","type":"Microsoft.Authorization/roleAssignments","name":"fb3685a8-f064-431a-8ab6-21f276ae0e4d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-03T23:18:19.3769285Z","updatedOn":"2022-02-03T23:18:19.3769285Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ff008d0-8547-11ec-87de-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"8ff008d0-8547-11ec-87de-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-05T12:04:01.3658712Z","updatedOn":"2022-02-05T12:04:01.3658712Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3fb26d3-867b-11ec-8bb2-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"b3fb26d3-867b-11ec-8bb2-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-07T19:33:07.4702067Z","updatedOn":"2022-02-07T19:33:07.4702067Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c80d3f4a-065e-4e11-b0a1-9a04f4384563","type":"Microsoft.Authorization/roleAssignments","name":"c80d3f4a-065e-4e11-b0a1-9a04f4384563"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-07T20:03:20.2169334Z","updatedOn":"2022-02-07T20:03:20.2169334Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd6cdc49-8850-11ec-b237-027f0b78f6ab","type":"Microsoft.Authorization/roleAssignments","name":"fd6cdc49-8850-11ec-b237-027f0b78f6ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-08T08:00:07.9076727Z","updatedOn":"2022-02-08T08:00:07.9076727Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cdb4bce2-b187-4057-9fa4-ead6eeb4b442","type":"Microsoft.Authorization/roleAssignments","name":"cdb4bce2-b187-4057-9fa4-ead6eeb4b442"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-08T13:12:19.0792698Z","updatedOn":"2022-02-08T13:12:19.0792698Z","createdBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","updatedBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bccb433c-88e0-11ec-9c26-2e7a733c8e34","type":"Microsoft.Authorization/roleAssignments","name":"bccb433c-88e0-11ec-9c26-2e7a733c8e34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-08T16:00:23.2107710Z","updatedOn":"2022-02-08T16:00:23.2107710Z","createdBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","updatedBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/376f32c6-88f8-11ec-b700-2e7a733c8e34","type":"Microsoft.Authorization/roleAssignments","name":"376f32c6-88f8-11ec-b700-2e7a733c8e34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T08:35:07.6001520Z","updatedOn":"2022-02-11T08:35:07.6001520Z","createdBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","updatedBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8422aed5-8b15-11ec-8a3f-6045bd7c1155","type":"Microsoft.Authorization/roleAssignments","name":"8422aed5-8b15-11ec-8a3f-6045bd7c1155"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T20:16:24.1407485Z","updatedOn":"2022-02-11T20:16:24.1407485Z","createdBy":"c518df35-7e98-4c84-9222-b902d191061e","updatedBy":"c518df35-7e98-4c84-9222-b902d191061e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88cc3504-a850-43bb-a42e-326e300ac247","type":"Microsoft.Authorization/roleAssignments","name":"88cc3504-a850-43bb-a42e-326e300ac247"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T20:17:44.8524024Z","updatedOn":"2022-02-11T20:17:44.8524024Z","createdBy":"c518df35-7e98-4c84-9222-b902d191061e","updatedBy":"c518df35-7e98-4c84-9222-b902d191061e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/270f86d3-cdff-4d1c-8dee-20cbe11a28e0","type":"Microsoft.Authorization/roleAssignments","name":"270f86d3-cdff-4d1c-8dee-20cbe11a28e0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T20:17:45.1659184Z","updatedOn":"2022-02-11T20:17:45.1659184Z","createdBy":"c518df35-7e98-4c84-9222-b902d191061e","updatedBy":"c518df35-7e98-4c84-9222-b902d191061e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a536c303-c7bb-4556-b252-b8faa982403e","type":"Microsoft.Authorization/roleAssignments","name":"a536c303-c7bb-4556-b252-b8faa982403e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-13T11:41:48.7463966Z","updatedOn":"2022-02-13T11:41:48.7463966Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed14b636-8cc1-11ec-b294-002248785c41","type":"Microsoft.Authorization/roleAssignments","name":"ed14b636-8cc1-11ec-b294-002248785c41"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.6113342Z","updatedOn":"2022-02-14T09:22:36.6113342Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca42541d-172f-4c3a-8286-8e260e99050e","type":"Microsoft.Authorization/roleAssignments","name":"ca42541d-172f-4c3a-8286-8e260e99050e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.6424591Z","updatedOn":"2022-02-14T09:22:36.6424591Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8bcdc0e8-d9c2-478a-3363-0965130c9559","type":"Microsoft.Authorization/roleAssignments","name":"8bcdc0e8-d9c2-478a-3363-0965130c9559"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.6556489Z","updatedOn":"2022-02-14T09:22:36.6556489Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdb4d934-dee6-4e1d-d817-9670b25e7200","type":"Microsoft.Authorization/roleAssignments","name":"fdb4d934-dee6-4e1d-d817-9670b25e7200"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.7217526Z","updatedOn":"2022-02-14T09:22:36.7217526Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e9e51fa-3ef2-46c7-ae2b-8a418b68637a","type":"Microsoft.Authorization/roleAssignments","name":"4e9e51fa-3ef2-46c7-ae2b-8a418b68637a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T15:34:50.0327527Z","updatedOn":"2022-02-14T15:34:50.0327527Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5579469-8dab-11ec-aa17-000d3a044b73","type":"Microsoft.Authorization/roleAssignments","name":"a5579469-8dab-11ec-aa17-000d3a044b73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T19:37:05.5912525Z","updatedOn":"2022-02-14T19:37:05.5912525Z","createdBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","updatedBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7aa99c5e-8dcd-11ec-931e-3ee49ac9ec9b","type":"Microsoft.Authorization/roleAssignments","name":"7aa99c5e-8dcd-11ec-931e-3ee49ac9ec9b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T23:14:13.9732126Z","updatedOn":"2022-02-14T23:14:13.9732126Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c604be80-2bb9-48b0-a450-3565ed763f26","type":"Microsoft.Authorization/roleAssignments","name":"c604be80-2bb9-48b0-a450-3565ed763f26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-15T08:25:10.2747643Z","updatedOn":"2022-02-15T08:25:10.2747643Z","createdBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","updatedBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9baa19c-8e38-11ec-8406-000d3a0dff4f","type":"Microsoft.Authorization/roleAssignments","name":"c9baa19c-8e38-11ec-8406-000d3a0dff4f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-15T16:27:03.8176136Z","updatedOn":"2022-02-15T16:27:03.8176136Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1efc7bb8-8e7c-11ec-aba3-5e309da6350b","type":"Microsoft.Authorization/roleAssignments","name":"1efc7bb8-8e7c-11ec-aba3-5e309da6350b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-16T01:17:47.1475801Z","updatedOn":"2022-02-16T01:17:47.1475801Z","createdBy":"20d1aaf0-7699-4c7f-8b08-6e5306613d73","updatedBy":"20d1aaf0-7699-4c7f-8b08-6e5306613d73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3fb9602f-8ec6-11ec-9d90-000d3a6d0522","type":"Microsoft.Authorization/roleAssignments","name":"3fb9602f-8ec6-11ec-9d90-000d3a6d0522"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-16T04:06:52.4519397Z","updatedOn":"2022-02-16T04:06:52.4519397Z","createdBy":"f986308d-63d6-4619-a4f5-851a3bf675cb","updatedBy":"f986308d-63d6-4619-a4f5-851a3bf675cb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/de0a2a00-8edd-11ec-89d6-62e3b50ea3e8","type":"Microsoft.Authorization/roleAssignments","name":"de0a2a00-8edd-11ec-89d6-62e3b50ea3e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-17T07:47:28.0184571Z","updatedOn":"2022-02-17T07:47:28.0184571Z","createdBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","updatedBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/034bc00f-181a-4058-a66b-793a86a3f1d9","type":"Microsoft.Authorization/roleAssignments","name":"034bc00f-181a-4058-a66b-793a86a3f1d9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-18T02:41:56.8572427Z","updatedOn":"2022-02-18T02:41:56.8572427Z","createdBy":"8611abc5-1512-49e0-a6d2-0624ffaf5ef3","updatedBy":"8611abc5-1512-49e0-a6d2-0624ffaf5ef3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/563ddb12-9064-11ec-b259-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"563ddb12-9064-11ec-b259-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-18T02:44:45.0089883Z","updatedOn":"2022-02-18T02:44:45.0089883Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba625e10-9064-11ec-a4c4-000d3a6fbef8","type":"Microsoft.Authorization/roleAssignments","name":"ba625e10-9064-11ec-a4c4-000d3a6fbef8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-21T12:55:18.9707919Z","updatedOn":"2022-02-21T12:55:18.9707919Z","createdBy":"74dcd4fc-6c01-4de6-85b9-6cd3d0b977a0","updatedBy":"74dcd4fc-6c01-4de6-85b9-6cd3d0b977a0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84d1b0a8-9315-11ec-a625-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"84d1b0a8-9315-11ec-a625-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-22T12:02:41.9576481Z","updatedOn":"2022-02-22T12:02:41.9576481Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7ff802f-d555-4740-9446-decc876041c2","type":"Microsoft.Authorization/roleAssignments","name":"f7ff802f-d555-4740-9446-decc876041c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-22T17:40:50.0656641Z","updatedOn":"2022-02-22T17:40:50.0656641Z","createdBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","updatedBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9330f714-9406-11ec-839f-e6018ea1a0b8","type":"Microsoft.Authorization/roleAssignments","name":"9330f714-9406-11ec-839f-e6018ea1a0b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-23T14:56:26.1925430Z","updatedOn":"2022-02-23T14:56:26.1925430Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5f94f93-94b8-11ec-a7aa-ce34ee50a641","type":"Microsoft.Authorization/roleAssignments","name":"c5f94f93-94b8-11ec-a7aa-ce34ee50a641"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-23T19:18:46.5080793Z","updatedOn":"2022-02-23T19:18:46.5080793Z","createdBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","updatedBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6bd539ac-94dd-11ec-af01-8c8590c99d20","type":"Microsoft.Authorization/roleAssignments","name":"6bd539ac-94dd-11ec-af01-8c8590c99d20"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-24T18:48:42.1150127Z","updatedOn":"2022-02-24T18:48:42.1150127Z","createdBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","updatedBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/75d2b821-a297-4959-9c53-d5375978304a","type":"Microsoft.Authorization/roleAssignments","name":"75d2b821-a297-4959-9c53-d5375978304a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-25T19:43:06.0365566Z","updatedOn":"2022-02-25T19:43:06.0365566Z","createdBy":"c2191082-b1ca-4fcd-9645-551452f60be4","updatedBy":"c2191082-b1ca-4fcd-9645-551452f60be4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f5fb238-9673-11ec-87ea-2ef8edc450dc","type":"Microsoft.Authorization/roleAssignments","name":"2f5fb238-9673-11ec-87ea-2ef8edc450dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-28T03:13:54.6616360Z","updatedOn":"2022-02-28T03:13:54.6616360Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/073872ac-f374-444a-ae66-fb821b8532a4","type":"Microsoft.Authorization/roleAssignments","name":"073872ac-f374-444a-ae66-fb821b8532a4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-28T16:39:27.8396295Z","updatedOn":"2022-02-28T16:39:27.8396295Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/60241af8-7226-485e-a261-c69b2cf152c4","type":"Microsoft.Authorization/roleAssignments","name":"60241af8-7226-485e-a261-c69b2cf152c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-01T13:58:58.0676838Z","updatedOn":"2022-03-01T13:58:58.0676838Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1e29644f-ada5-4d30-9c40-a406758409f1","type":"Microsoft.Authorization/roleAssignments","name":"1e29644f-ada5-4d30-9c40-a406758409f1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-03T10:22:00.9954003Z","updatedOn":"2022-03-03T10:22:00.9954003Z","createdBy":"08de6591-dec9-4255-ab17-d6919151fadd","updatedBy":"08de6591-dec9-4255-ab17-d6919151fadd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c30b494c-9adb-11ec-ae58-4a123144b5f6","type":"Microsoft.Authorization/roleAssignments","name":"c30b494c-9adb-11ec-ae58-4a123144b5f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-03T15:10:52.8750196Z","updatedOn":"2022-03-03T15:10:52.8750196Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1d1f5e12-9b04-11ec-bf9f-000d3ac561f6","type":"Microsoft.Authorization/roleAssignments","name":"1d1f5e12-9b04-11ec-bf9f-000d3ac561f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T03:22:58.4512023Z","updatedOn":"2022-03-07T03:22:58.4512023Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e234c5f8-9dc5-11ec-993d-0022485937da","type":"Microsoft.Authorization/roleAssignments","name":"e234c5f8-9dc5-11ec-993d-0022485937da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T11:02:56.8448863Z","updatedOn":"2022-03-07T11:02:56.8448863Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/258a4631-9e06-11ec-9362-98e7f4beee90","type":"Microsoft.Authorization/roleAssignments","name":"258a4631-9e06-11ec-9362-98e7f4beee90"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T22:29:31.2927512Z","updatedOn":"2022-03-07T22:29:31.2927512Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef654596-33a1-443e-8a7d-48c0aa96bfcb","type":"Microsoft.Authorization/roleAssignments","name":"ef654596-33a1-443e-8a7d-48c0aa96bfcb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T23:16:52.1440710Z","updatedOn":"2022-03-07T23:16:52.1440710Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3aea3844-0bdd-4673-9a4e-444433ce4230","type":"Microsoft.Authorization/roleAssignments","name":"3aea3844-0bdd-4673-9a4e-444433ce4230"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:15:35.5981652Z","updatedOn":"2022-03-08T00:15:35.5981652Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":"wenxuan-azure-cli"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be01fdd4-3bdf-4a61-8884-59ffb6e82843","type":"Microsoft.Authorization/roleAssignments","name":"be01fdd4-3bdf-4a61-8884-59ffb6e82843"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:22:25.1920031Z","updatedOn":"2022-03-08T00:22:25.1920031Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1433f18e-b3fc-4984-bd98-c93d9244fb18","type":"Microsoft.Authorization/roleAssignments","name":"1433f18e-b3fc-4984-bd98-c93d9244fb18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T18:56:05.1276019Z","updatedOn":"2022-03-08T18:56:05.1276019Z","createdBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","updatedBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67554406-9f11-11ec-b5da-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"67554406-9f11-11ec-b5da-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-09T00:02:42.6050341Z","updatedOn":"2022-03-09T00:02:42.6050341Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/398c74fc-afb6-47dd-bf7a-efcff5dc1b86","type":"Microsoft.Authorization/roleAssignments","name":"398c74fc-afb6-47dd-bf7a-efcff5dc1b86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-05T14:05:58.2716050Z","updatedOn":"2021-04-05T14:05:58.2716050Z","createdBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","updatedBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a9b0e6a-9618-11eb-879a-88e9fe77e044","type":"Microsoft.Authorization/roleAssignments","name":"0a9b0e6a-9618-11eb-879a-88e9fe77e044"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-05T17:37:43.7040494Z","updatedOn":"2021-04-05T17:37:43.7040494Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a04b0948-9635-11eb-b395-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"a04b0948-9635-11eb-b395-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T02:24:39.3826587Z","updatedOn":"2021-04-06T02:24:39.3826587Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c21611b-a840-4166-b9f4-8cec90c17841","type":"Microsoft.Authorization/roleAssignments","name":"6c21611b-a840-4166-b9f4-8cec90c17841"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T02:24:39.4154930Z","updatedOn":"2021-04-06T02:24:39.4154930Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/925d4876-8fde-4334-8f84-4ce52ca7108e","type":"Microsoft.Authorization/roleAssignments","name":"925d4876-8fde-4334-8f84-4ce52ca7108e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T04:46:32.1029699Z","updatedOn":"2021-04-06T04:46:32.1029699Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0dfdb837-9693-11eb-b629-b6178ece78ec","type":"Microsoft.Authorization/roleAssignments","name":"0dfdb837-9693-11eb-b629-b6178ece78ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T11:25:43.5702772Z","updatedOn":"2021-04-06T11:25:43.5702772Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/958a1320-4346-46fb-9722-828af239eb03","type":"Microsoft.Authorization/roleAssignments","name":"958a1320-4346-46fb-9722-828af239eb03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T20:54:21.5921112Z","updatedOn":"2021-04-06T20:54:21.5921112Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42ad5638-971a-11eb-abf6-00155d3a4c00","type":"Microsoft.Authorization/roleAssignments","name":"42ad5638-971a-11eb-abf6-00155d3a4c00"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T23:22:50.4425724Z","updatedOn":"2021-04-06T23:22:50.4425724Z","createdBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","updatedBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00a90f2a-972f-11eb-9121-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"00a90f2a-972f-11eb-9121-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T00:26:49.7250016Z","updatedOn":"2021-04-07T00:26:49.7250016Z","createdBy":"88f18750-8181-4579-8eff-eb44f510655c","updatedBy":"88f18750-8181-4579-8eff-eb44f510655c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dca2df37-fdd1-49dc-a1de-31a70d62e098","type":"Microsoft.Authorization/roleAssignments","name":"dca2df37-fdd1-49dc-a1de-31a70d62e098"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T09:10:47.4905668Z","updatedOn":"2021-04-07T09:10:47.4905668Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a5dbdef-0896-48cd-a325-318e807ea133","type":"Microsoft.Authorization/roleAssignments","name":"8a5dbdef-0896-48cd-a325-318e807ea133"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T19:55:01.1984055Z","updatedOn":"2021-04-07T19:55:01.1984055Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2301d942-97db-11eb-8bf8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2301d942-97db-11eb-8bf8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T22:36:06.7954601Z","updatedOn":"2021-04-07T22:36:06.7954601Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6070c7de-7571-4d55-8b2f-85285b7d9675","type":"Microsoft.Authorization/roleAssignments","name":"6070c7de-7571-4d55-8b2f-85285b7d9675"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-13T03:07:16.5183912Z","updatedOn":"2021-04-13T03:07:16.5183912Z","createdBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","updatedBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59402850-9c05-11eb-8744-20c9d0477c8f","type":"Microsoft.Authorization/roleAssignments","name":"59402850-9c05-11eb-8744-20c9d0477c8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-14T19:16:13.6465266Z","updatedOn":"2021-04-14T19:16:13.6465266Z","createdBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","updatedBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e04efa46-9d55-11eb-9723-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e04efa46-9d55-11eb-9723-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-15T02:29:06.6768532Z","updatedOn":"2021-04-15T02:29:06.6768532Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/19165f29-858f-47fa-befe-cd1babe9df75","type":"Microsoft.Authorization/roleAssignments","name":"19165f29-858f-47fa-befe-cd1babe9df75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-19T08:59:20.4071341Z","updatedOn":"2021-04-19T08:59:20.4071341Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88489205-a0ed-11eb-996c-1a21256cebfc","type":"Microsoft.Authorization/roleAssignments","name":"88489205-a0ed-11eb-996c-1a21256cebfc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-19T22:35:57.5324093Z","updatedOn":"2021-04-19T22:35:57.5324093Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b85c442-a15f-11eb-8a7c-00155d871f03","type":"Microsoft.Authorization/roleAssignments","name":"9b85c442-a15f-11eb-8a7c-00155d871f03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-21T12:31:21.7286225Z","updatedOn":"2021-04-21T12:31:21.7286225Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7770db7c-a29d-11eb-b48f-42472d33150a","type":"Microsoft.Authorization/roleAssignments","name":"7770db7c-a29d-11eb-b48f-42472d33150a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-11T02:49:35.7701861Z","updatedOn":"2021-05-11T02:49:35.7701861Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83c25ed3-b203-11eb-8150-56db513b8477","type":"Microsoft.Authorization/roleAssignments","name":"83c25ed3-b203-11eb-8150-56db513b8477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-12T06:15:49.6202169Z","updatedOn":"2021-05-12T06:15:49.6202169Z","createdBy":"069015af-8ac7-4304-a60f-69a8a50309be","updatedBy":"069015af-8ac7-4304-a60f-69a8a50309be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ecced22-b2e9-11eb-bdc4-da23ac480b85","type":"Microsoft.Authorization/roleAssignments","name":"7ecced22-b2e9-11eb-bdc4-da23ac480b85"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-18T02:08:43.3533001Z","updatedOn":"2021-05-18T02:08:43.3533001Z","createdBy":"069015af-8ac7-4304-a60f-69a8a50309be","updatedBy":"069015af-8ac7-4304-a60f-69a8a50309be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8582f67-b77d-11eb-bffb-52ac6a27ca65","type":"Microsoft.Authorization/roleAssignments","name":"f8582f67-b77d-11eb-bffb-52ac6a27ca65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-24T05:29:46.7966317Z","updatedOn":"2021-05-24T05:29:46.7966317Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d7389dd2-ee8e-4d34-8703-b304716b1761","type":"Microsoft.Authorization/roleAssignments","name":"d7389dd2-ee8e-4d34-8703-b304716b1761"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-01T09:38:20.8655603Z","updatedOn":"2021-06-01T09:38:20.8655603Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18455841-c2bd-11eb-80b3-9a0a2a9b0ea3","type":"Microsoft.Authorization/roleAssignments","name":"18455841-c2bd-11eb-80b3-9a0a2a9b0ea3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-03T16:55:35.8333154Z","updatedOn":"2021-06-03T16:55:35.8333154Z","createdBy":"ae4622a7-bde9-4bca-9599-2d18571bfeba","updatedBy":"ae4622a7-bde9-4bca-9599-2d18571bfeba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83e4c5e8-c48c-11eb-b991-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"83e4c5e8-c48c-11eb-b991-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-07T22:29:50.4448757Z","updatedOn":"2021-06-07T22:29:50.4448757Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/decef2d4-c7df-11eb-a83e-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"decef2d4-c7df-11eb-a83e-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-08T21:20:41.4426747Z","updatedOn":"2021-06-08T21:20:41.4426747Z","createdBy":"39fc5957-4b28-4245-a1ca-0c05574dd32b","updatedBy":"39fc5957-4b28-4245-a1ca-0c05574dd32b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/607bf63e-c89f-11eb-8348-eecc6a504bf0","type":"Microsoft.Authorization/roleAssignments","name":"607bf63e-c89f-11eb-8348-eecc6a504bf0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T14:35:18.7357331Z","updatedOn":"2021-06-15T14:35:18.7357331Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1151242-c950-413d-a273-4109579eac8a","type":"Microsoft.Authorization/roleAssignments","name":"b1151242-c950-413d-a273-4109579eac8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T14:35:18.7937546Z","updatedOn":"2021-06-15T14:35:18.7937546Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dc21aa69-a99c-435e-a256-64885b24ec34","type":"Microsoft.Authorization/roleAssignments","name":"dc21aa69-a99c-435e-a256-64885b24ec34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T15:23:52.9337722Z","updatedOn":"2021-06-15T15:23:52.9337722Z","createdBy":"1faabf99-27a1-4d2e-9e28-295923ee7a14","updatedBy":"1faabf99-27a1-4d2e-9e28-295923ee7a14","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1f9ad80-cded-11eb-81da-86d728f15930","type":"Microsoft.Authorization/roleAssignments","name":"b1f9ad80-cded-11eb-81da-86d728f15930"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-24T01:15:20.6480687Z","updatedOn":"2021-06-24T01:15:20.6480687Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3fe463a-d489-11eb-bcf6-88e9fe77d9d9","type":"Microsoft.Authorization/roleAssignments","name":"a3fe463a-d489-11eb-bcf6-88e9fe77d9d9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T00:02:18.3011415Z","updatedOn":"2021-06-29T00:02:18.3011415Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ba1c6ba-8f43-4749-9af5-b852adc24ec4","type":"Microsoft.Authorization/roleAssignments","name":"6ba1c6ba-8f43-4749-9af5-b852adc24ec4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T00:02:18.3104039Z","updatedOn":"2021-06-29T00:02:18.3104039Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1b67008-79aa-4059-a618-9f31a59e17ad","type":"Microsoft.Authorization/roleAssignments","name":"f1b67008-79aa-4059-a618-9f31a59e17ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T03:26:28.3273724Z","updatedOn":"2021-06-29T03:26:28.3273724Z","createdBy":"5dc8b685-8bb3-4140-b266-34da5be22de8","updatedBy":"5dc8b685-8bb3-4140-b266-34da5be22de8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cacd20e2-d889-11eb-8faf-365b90995dcc","type":"Microsoft.Authorization/roleAssignments","name":"cacd20e2-d889-11eb-8faf-365b90995dcc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T16:47:51.6512150Z","updatedOn":"2021-07-02T16:47:51.6512150Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ce776fa-db55-11eb-9c3e-0ee0ced9a7ad","type":"Microsoft.Authorization/roleAssignments","name":"3ce776fa-db55-11eb-9c3e-0ee0ced9a7ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T18:02:58.7913777Z","updatedOn":"2021-07-02T18:02:58.7913777Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb92467e-db5f-11eb-93bb-52bfc6c4d939","type":"Microsoft.Authorization/roleAssignments","name":"bb92467e-db5f-11eb-93bb-52bfc6c4d939"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T18:34:50.6034803Z","updatedOn":"2021-07-02T18:34:50.6034803Z","createdBy":"88f18750-8181-4579-8eff-eb44f510655c","updatedBy":"88f18750-8181-4579-8eff-eb44f510655c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e537d7a-5a2e-419c-8c51-0f55adab0793","type":"Microsoft.Authorization/roleAssignments","name":"4e537d7a-5a2e-419c-8c51-0f55adab0793"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-12T18:22:41.0622548Z","updatedOn":"2021-07-12T18:22:41.0622548Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a840989-f344-4bca-97c4-0f91fa1537c6","type":"Microsoft.Authorization/roleAssignments","name":"0a840989-f344-4bca-97c4-0f91fa1537c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-14T19:03:30.7799600Z","updatedOn":"2021-07-14T19:03:30.7799600Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d4385bd-e4d6-11eb-9e75-0a4737195831","type":"Microsoft.Authorization/roleAssignments","name":"2d4385bd-e4d6-11eb-9e75-0a4737195831"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-26T03:44:43.4505353Z","updatedOn":"2021-07-26T03:44:43.4505353Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79b52c96-edc4-11eb-8bd7-1e3bd0e19ace","type":"Microsoft.Authorization/roleAssignments","name":"79b52c96-edc4-11eb-8bd7-1e3bd0e19ace"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-28T21:04:39.7105526Z","updatedOn":"2021-07-28T21:04:39.7105526Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b9c8936-efe7-11eb-9484-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6b9c8936-efe7-11eb-9484-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-04T02:14:38.2049441Z","updatedOn":"2021-08-04T02:14:38.2049441Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b8013ec0-f4c9-11eb-999a-000d3a4fc0a9","type":"Microsoft.Authorization/roleAssignments","name":"b8013ec0-f4c9-11eb-999a-000d3a4fc0a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e3c35f4c-e0ca-4b9e-a01e-5ebdd17e2ee7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-04T18:45:22.7030533Z","updatedOn":"2021-08-04T18:45:22.7030533Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b007f9b6-e259-4c24-b8f1-4b74e434b776","type":"Microsoft.Authorization/roleAssignments","name":"b007f9b6-e259-4c24-b8f1-4b74e434b776"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-10T18:57:36.3877809Z","updatedOn":"2021-08-10T18:57:36.3877809Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d31d5edd-fa0c-11eb-a4e8-00155d4b0124","type":"Microsoft.Authorization/roleAssignments","name":"d31d5edd-fa0c-11eb-a4e8-00155d4b0124"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-11T13:17:28.5790828Z","updatedOn":"2021-08-11T13:17:28.5790828Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79c9ac4e-faa6-11eb-9265-9e748a6ca3f5","type":"Microsoft.Authorization/roleAssignments","name":"79c9ac4e-faa6-11eb-9265-9e748a6ca3f5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T20:40:36.9427810Z","updatedOn":"2021-08-24T20:40:36.9427810Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89077b4a-051b-11ec-b690-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"89077b4a-051b-11ec-b690-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-25T04:55:32.8103400Z","updatedOn":"2021-08-25T04:55:32.8103400Z","createdBy":"d8f2c3f8-41bf-41ae-aedb-23c9387322a8","updatedBy":"d8f2c3f8-41bf-41ae-aedb-23c9387322a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad278da4-0560-11ec-bfcc-00249b623abd","type":"Microsoft.Authorization/roleAssignments","name":"ad278da4-0560-11ec-bfcc-00249b623abd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-31T23:45:51.8536519Z","updatedOn":"2021-08-31T23:45:51.8536519Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92d8ca73-0ab5-11ec-9a80-00224809727f","type":"Microsoft.Authorization/roleAssignments","name":"92d8ca73-0ab5-11ec-9a80-00224809727f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-13T19:32:31.3713301Z","updatedOn":"2021-09-13T19:32:31.3713301Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/55fb0a56-14c9-11ec-ba1a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"55fb0a56-14c9-11ec-ba1a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-17T20:45:08.1118919Z","updatedOn":"2021-09-17T20:45:08.1118919Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/246a4240-17f8-11ec-a87c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"246a4240-17f8-11ec-a87c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T13:55:46.1211332Z","updatedOn":"2021-09-20T13:55:46.1211332Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/738cb0ee-1a1a-11ec-bce5-7a98cea1d963","type":"Microsoft.Authorization/roleAssignments","name":"738cb0ee-1a1a-11ec-bce5-7a98cea1d963"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T16:02:49.0433199Z","updatedOn":"2021-09-20T16:02:49.0433199Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/332824b6-1a2c-11ec-94e6-dadb5e134e96","type":"Microsoft.Authorization/roleAssignments","name":"332824b6-1a2c-11ec-94e6-dadb5e134e96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T18:45:44.1610490Z","updatedOn":"2021-09-20T18:45:44.1610490Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5aacbbc-1a42-11ec-82e7-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f5aacbbc-1a42-11ec-82e7-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-23T14:26:16.9983531Z","updatedOn":"2021-09-23T14:26:16.9983531Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35e02c16-1c7a-11ec-aba5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"35e02c16-1c7a-11ec-aba5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-29T01:26:50.3419658Z","updatedOn":"2021-09-29T01:26:50.3419658Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47eee8e3-89cd-4112-86a8-19f848334dd1","type":"Microsoft.Authorization/roleAssignments","name":"47eee8e3-89cd-4112-86a8-19f848334dd1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-04T20:39:52.4258668Z","updatedOn":"2021-10-04T20:39:52.4258668Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/395b589c-2553-11ec-8d77-000d3af95835","type":"Microsoft.Authorization/roleAssignments","name":"395b589c-2553-11ec-8d77-000d3af95835"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-07T22:03:00.0914961Z","updatedOn":"2021-10-07T22:03:00.0914961Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/554cbdbb-27ba-11ec-9441-ba8d312253c4","type":"Microsoft.Authorization/roleAssignments","name":"554cbdbb-27ba-11ec-9441-ba8d312253c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-07T22:03:56.3285135Z","updatedOn":"2021-10-07T22:03:56.3285135Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/76aa862c-27ba-11ec-a4ef-ba8d312253c4","type":"Microsoft.Authorization/roleAssignments","name":"76aa862c-27ba-11ec-a4ef-ba8d312253c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T18:53:10.3503826Z","updatedOn":"2021-10-08T18:53:10.3503826Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d9510e6f-d37b-4ce8-8a3b-78e5447b11c4","type":"Microsoft.Authorization/roleAssignments","name":"d9510e6f-d37b-4ce8-8a3b-78e5447b11c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T18:59:59.4287762Z","updatedOn":"2021-10-08T18:59:59.4287762Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d1a6d17-6c0a-4105-b86a-dcc55fe735e7","type":"Microsoft.Authorization/roleAssignments","name":"3d1a6d17-6c0a-4105-b86a-dcc55fe735e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-11T22:29:20.4165411Z","updatedOn":"2021-10-11T22:29:20.4165411Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5b65050-4b50-4b02-bea3-5986eccdd944","type":"Microsoft.Authorization/roleAssignments","name":"b5b65050-4b50-4b02-bea3-5986eccdd944"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-12T21:09:25.3258237Z","updatedOn":"2021-10-12T21:09:25.3258237Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/869d24c2-b6b1-4a26-9b9c-c50ecb64bc31","type":"Microsoft.Authorization/roleAssignments","name":"869d24c2-b6b1-4a26-9b9c-c50ecb64bc31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-13T08:19:03.1448099Z","updatedOn":"2021-10-13T08:19:03.1448099Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8869be9-f94e-47ae-90cb-c4d9bcb5b629","type":"Microsoft.Authorization/roleAssignments","name":"f8869be9-f94e-47ae-90cb-c4d9bcb5b629"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T04:53:25.9502873Z","updatedOn":"2021-10-14T04:53:36.3280652Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f622c27f-a03d-4fb8-b17d-7281dc0a984f","type":"Microsoft.Authorization/roleAssignments","name":"f622c27f-a03d-4fb8-b17d-7281dc0a984f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:26:21.6452814Z","updatedOn":"2021-10-14T05:26:21.6452814Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/439e7a28-2caf-11ec-ae23-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"439e7a28-2caf-11ec-ae23-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:54.7980840Z","updatedOn":"2021-10-14T05:37:54.7980840Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e049894b-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e049894b-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:56.1220463Z","updatedOn":"2021-10-14T05:37:56.1220463Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e1920687-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e1920687-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:58.2164501Z","updatedOn":"2021-10-14T05:37:58.2164501Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2809f7d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e2809f7d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:00.1774570Z","updatedOn":"2021-10-14T05:38:00.1774570Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3b78568-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e3b78568-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:01.6914375Z","updatedOn":"2021-10-14T05:38:01.6914375Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4e3f0fc-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e4e3f0fc-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:03.1856045Z","updatedOn":"2021-10-14T05:38:03.1856045Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e5c7c168-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e5c7c168-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:04.4121266Z","updatedOn":"2021-10-14T05:38:04.4121266Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e6847f02-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e6847f02-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:05.9623251Z","updatedOn":"2021-10-14T05:38:05.9623251Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7681b77-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e7681b77-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:07.5974823Z","updatedOn":"2021-10-14T05:38:07.5974823Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e82df158-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e82df158-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:09.3591403Z","updatedOn":"2021-10-14T05:38:09.3591403Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e94e3dd9-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e94e3dd9-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:11.1652349Z","updatedOn":"2021-10-14T05:38:11.1652349Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea5dbe0d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"ea5dbe0d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:12.6474393Z","updatedOn":"2021-10-14T05:38:12.6474393Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb6e896d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"eb6e896d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:15.1702403Z","updatedOn":"2021-10-14T05:38:15.1702403Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eceee9a0-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"eceee9a0-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T06:22:44.8991960Z","updatedOn":"2021-10-14T06:22:44.8991960Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2447d2a2-2cb7-11ec-91be-00224878e942","type":"Microsoft.Authorization/roleAssignments","name":"2447d2a2-2cb7-11ec-91be-00224878e942"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T06:22:46.4374928Z","updatedOn":"2021-10-14T06:22:46.4374928Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/251fc151-2cb7-11ec-91be-00224878e942","type":"Microsoft.Authorization/roleAssignments","name":"251fc151-2cb7-11ec-91be-00224878e942"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:33:15.8218562Z","updatedOn":"2021-10-14T07:33:15.8218562Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe04afe4-2cc0-11ec-81ff-0022487b1e92","type":"Microsoft.Authorization/roleAssignments","name":"fe04afe4-2cc0-11ec-81ff-0022487b1e92"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:18.3020716Z","updatedOn":"2021-10-14T07:59:18.3020716Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a1518374-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a1518374-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:20.8876342Z","updatedOn":"2021-10-14T07:59:20.8876342Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a311df17-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a311df17-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:22.4477860Z","updatedOn":"2021-10-14T07:59:22.4477860Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3c5b71e-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a3c5b71e-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:23.1051657Z","updatedOn":"2021-10-14T08:07:23.1051657Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c227b3cc-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c227b3cc-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:23.5151178Z","updatedOn":"2021-10-14T08:07:23.5151178Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c29ac901-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c29ac901-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:25.7287942Z","updatedOn":"2021-10-14T08:07:25.7287942Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c40b5411-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c40b5411-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:27.2660976Z","updatedOn":"2021-10-14T08:07:27.2660976Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4cb6a30-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c4cb6a30-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:08:16.5190337Z","updatedOn":"2021-10-14T08:08:16.5190337Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e226a828-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"e226a828-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:08:17.7439429Z","updatedOn":"2021-10-14T08:08:17.7439429Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2e43f64-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"e2e43f64-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T09:12:04.1832243Z","updatedOn":"2021-10-14T09:12:04.1832243Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5c9e442c-9d64-4022-9246-0c1c21af04be","type":"Microsoft.Authorization/roleAssignments","name":"5c9e442c-9d64-4022-9246-0c1c21af04be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T17:07:28.8635845Z","updatedOn":"2021-10-14T17:07:28.8635845Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed48d615-e7d8-4aef-90c7-332d7329e41c","type":"Microsoft.Authorization/roleAssignments","name":"ed48d615-e7d8-4aef-90c7-332d7329e41c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T18:16:37.9837987Z","updatedOn":"2021-10-14T18:16:37.9837987Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/debb0903-2d1a-11ec-a603-000d3a06aaec","type":"Microsoft.Authorization/roleAssignments","name":"debb0903-2d1a-11ec-a603-000d3a06aaec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T18:39:15.5366398Z","updatedOn":"2021-10-14T18:39:15.5366398Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07caa301-2d1e-11ec-a2ea-0022487748c3","type":"Microsoft.Authorization/roleAssignments","name":"07caa301-2d1e-11ec-a2ea-0022487748c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-15T17:37:53.7293023Z","updatedOn":"2021-10-15T17:37:53.7293023Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fbd09f2-2dde-11ec-b3e4-000d3a064a8a","type":"Microsoft.Authorization/roleAssignments","name":"9fbd09f2-2dde-11ec-b3e4-000d3a064a8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-18T06:22:38.4617338Z","updatedOn":"2021-10-18T06:22:38.4617338Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70844448-8be3-4c6f-9edf-443944f85a5a","type":"Microsoft.Authorization/roleAssignments","name":"70844448-8be3-4c6f-9edf-443944f85a5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-19T11:29:40.0474212Z","updatedOn":"2021-10-19T11:29:40.0474212Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d86e727f-30cf-11ec-bc8b-000d3ac2ec2b","type":"Microsoft.Authorization/roleAssignments","name":"d86e727f-30cf-11ec-bc8b-000d3ac2ec2b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-20T20:57:56.8996523Z","updatedOn":"2021-10-20T20:57:56.8996523Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66303328-31e8-11ec-99f4-000d3ac5c858","type":"Microsoft.Authorization/roleAssignments","name":"66303328-31e8-11ec-99f4-000d3ac5c858"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-21T15:12:00.0677049Z","updatedOn":"2021-10-21T15:12:00.0677049Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b630a77a-9e75-417f-b251-1584163d8926","type":"Microsoft.Authorization/roleAssignments","name":"b630a77a-9e75-417f-b251-1584163d8926"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-25T21:32:26.0121360Z","updatedOn":"2021-10-25T21:32:26.0121360Z","createdBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","updatedBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b15fba8-35db-11ec-b404-8c8590c603ee","type":"Microsoft.Authorization/roleAssignments","name":"0b15fba8-35db-11ec-b404-8c8590c603ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T07:30:52.4116907Z","updatedOn":"2021-10-26T07:30:52.4116907Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e78ac58b-8cfe-4ff6-9ac6-41453615c7e8","type":"Microsoft.Authorization/roleAssignments","name":"e78ac58b-8cfe-4ff6-9ac6-41453615c7e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T13:47:01.3444676Z","updatedOn":"2021-10-26T13:47:01.3444676Z","createdBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","updatedBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4933f1cd-0863-4429-a5be-3a81b2f80105","type":"Microsoft.Authorization/roleAssignments","name":"4933f1cd-0863-4429-a5be-3a81b2f80105"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T20:43:39.1375235Z","updatedOn":"2021-10-26T20:43:39.1375235Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad8f56c5-19b6-4e9f-b20f-8e3789a93873","type":"Microsoft.Authorization/roleAssignments","name":"ad8f56c5-19b6-4e9f-b20f-8e3789a93873"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-27T01:02:05.1338691Z","updatedOn":"2021-10-27T01:02:05.1338691Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a83de9c2-2bd5-4ba1-bc50-08d475a290a0","type":"Microsoft.Authorization/roleAssignments","name":"a83de9c2-2bd5-4ba1-bc50-08d475a290a0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-28T00:14:34.9745357Z","updatedOn":"2021-10-28T00:14:34.9745357Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3366cd2-4d12-4dbb-b05d-5e914628e986","type":"Microsoft.Authorization/roleAssignments","name":"e3366cd2-4d12-4dbb-b05d-5e914628e986"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-02T23:39:52.9481031Z","updatedOn":"2021-11-02T23:39:52.9481031Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0e37c03-a8a7-4765-af41-9a8584ad6413","type":"Microsoft.Authorization/roleAssignments","name":"b0e37c03-a8a7-4765-af41-9a8584ad6413"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c7393b34-138c-406f-901b-d8cf2b17e6ae","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T15:46:17.8935538Z","updatedOn":"2021-11-03T15:46:17.8935538Z","createdBy":"","updatedBy":"","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5b0e8d6-e30f-42a5-918c-01299416da2c","type":"Microsoft.Authorization/roleAssignments","name":"b5b0e8d6-e30f-42a5-918c-01299416da2c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T21:43:39.4750265Z","updatedOn":"2021-11-03T21:43:39.4750265Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/683b4375-f318-428e-a885-232a29ec8559","type":"Microsoft.Authorization/roleAssignments","name":"683b4375-f318-428e-a885-232a29ec8559"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T21:56:29.9810805Z","updatedOn":"2021-11-03T21:56:29.9810805Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e560c31c-8c6e-4bf0-9828-b2db658455b7","type":"Microsoft.Authorization/roleAssignments","name":"e560c31c-8c6e-4bf0-9828-b2db658455b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T06:06:21.8922666Z","updatedOn":"2021-11-04T06:06:21.8922666Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e1dcc78b-03c3-4db3-95a8-643dbcbbf2a3","type":"Microsoft.Authorization/roleAssignments","name":"e1dcc78b-03c3-4db3-95a8-643dbcbbf2a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T17:22:28.0293110Z","updatedOn":"2021-11-04T17:22:28.0293110Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84a6167f-c7d5-4404-b786-85fe4327c0ba","type":"Microsoft.Authorization/roleAssignments","name":"84a6167f-c7d5-4404-b786-85fe4327c0ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T17:24:51.0627597Z","updatedOn":"2021-11-04T17:24:51.0627597Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ff23217-f8a8-4e77-baee-41850cfb5554","type":"Microsoft.Authorization/roleAssignments","name":"8ff23217-f8a8-4e77-baee-41850cfb5554"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T05:21:11.0446928Z","updatedOn":"2021-11-16T05:21:11.0446928Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d01bef88-e1fa-4fc2-bd98-6845063b53b9","type":"Microsoft.Authorization/roleAssignments","name":"d01bef88-e1fa-4fc2-bd98-6845063b53b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T05:22:06.5362889Z","updatedOn":"2021-11-16T05:22:06.5362889Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/784d9b03-5635-4c89-ae5b-5c11ceff8a4c","type":"Microsoft.Authorization/roleAssignments","name":"784d9b03-5635-4c89-ae5b-5c11ceff8a4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T21:47:20.3762106Z","updatedOn":"2021-11-16T21:47:20.3762106Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/19b8a839-de9e-4712-a227-686679e98414","type":"Microsoft.Authorization/roleAssignments","name":"19b8a839-de9e-4712-a227-686679e98414"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T05:28:26.3873952Z","updatedOn":"2021-11-17T05:28:26.3873952Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a6cb292-435b-45d4-9f44-2dedb6f80804","type":"Microsoft.Authorization/roleAssignments","name":"4a6cb292-435b-45d4-9f44-2dedb6f80804"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T08:37:53.6375476Z","updatedOn":"2021-11-17T08:37:53.6375476Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7314a76-4781-11ec-9554-2eaf851e2751","type":"Microsoft.Authorization/roleAssignments","name":"a7314a76-4781-11ec-9554-2eaf851e2751"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T20:29:38.7986222Z","updatedOn":"2021-11-17T20:29:38.7986222Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41224d04-5912-49e9-98f2-df2d0c5768ed","type":"Microsoft.Authorization/roleAssignments","name":"41224d04-5912-49e9-98f2-df2d0c5768ed"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-23T02:37:39.0525328Z","updatedOn":"2021-11-23T02:37:39.0525328Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2917b10b-1776-4726-9e2a-1406d35584aa","type":"Microsoft.Authorization/roleAssignments","name":"2917b10b-1776-4726-9e2a-1406d35584aa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-24T04:19:48.8430130Z","updatedOn":"2021-11-24T04:19:48.8430130Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4738453f-e889-4428-817e-a18655a6df71","type":"Microsoft.Authorization/roleAssignments","name":"4738453f-e889-4428-817e-a18655a6df71"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-29T22:16:27.4091202Z","updatedOn":"2021-11-29T22:16:27.4091202Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dfaf3275-7f8c-449f-875f-d74ca2998764","type":"Microsoft.Authorization/roleAssignments","name":"dfaf3275-7f8c-449f-875f-d74ca2998764"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T06:59:34.7676928Z","updatedOn":"2021-11-30T06:59:34.7676928Z","createdBy":"471feb6d-5a83-439e-af7b-311f4eee2d0c","updatedBy":"471feb6d-5a83-439e-af7b-311f4eee2d0c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5848b58-7658-45ae-b979-fb230968ddf7","type":"Microsoft.Authorization/roleAssignments","name":"d5848b58-7658-45ae-b979-fb230968ddf7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T20:03:43.2359682Z","updatedOn":"2021-11-30T20:03:43.2359682Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3be3018e-84c0-48a4-bb36-fa997df4a911","type":"Microsoft.Authorization/roleAssignments","name":"3be3018e-84c0-48a4-bb36-fa997df4a911"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T22:23:07.4635927Z","updatedOn":"2021-11-30T22:23:07.4635927Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc52b5ce-1a69-4afd-aaab-745522d55219","type":"Microsoft.Authorization/roleAssignments","name":"fc52b5ce-1a69-4afd-aaab-745522d55219"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T02:05:06.3947111Z","updatedOn":"2021-12-01T02:05:06.3947111Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bfd977a2-74fb-4e8f-88a6-72b675ad0813","type":"Microsoft.Authorization/roleAssignments","name":"bfd977a2-74fb-4e8f-88a6-72b675ad0813"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T23:14:48.6056041Z","updatedOn":"2021-12-01T23:14:48.6056041Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2c2675a2-a48c-492f-a4d5-835ffdf8e57e","type":"Microsoft.Authorization/roleAssignments","name":"2c2675a2-a48c-492f-a4d5-835ffdf8e57e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T23:44:16.3921051Z","updatedOn":"2021-12-01T23:44:16.3921051Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc791163-7d7a-4988-96f8-969053cb4d75","type":"Microsoft.Authorization/roleAssignments","name":"bc791163-7d7a-4988-96f8-969053cb4d75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T07:40:53.7263371Z","updatedOn":"2021-12-02T07:40:53.7263371Z","createdBy":"027bf6cf-7fd4-4a57-80d7-4e52bd1fea5b","updatedBy":"027bf6cf-7fd4-4a57-80d7-4e52bd1fea5b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c592d108-71a6-4fbd-89f7-06c1656d0c93","type":"Microsoft.Authorization/roleAssignments","name":"c592d108-71a6-4fbd-89f7-06c1656d0c93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:36.8568746Z","updatedOn":"2021-12-02T08:41:36.8568746Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a8b008b0-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a8b008b0-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:38.4974834Z","updatedOn":"2021-12-02T08:41:38.4974834Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9ad9deb-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a9ad9deb-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:38.6316008Z","updatedOn":"2021-12-02T08:41:38.6316008Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9aa81cd-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a9aa81cd-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:38.6311993Z","updatedOn":"2021-12-02T08:41:38.6311993Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9c0a1a6-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a9c0a1a6-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T21:35:31.3727027Z","updatedOn":"2021-12-02T21:35:31.3727027Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/663204fa-95cb-45a0-938f-d817824509dd","type":"Microsoft.Authorization/roleAssignments","name":"663204fa-95cb-45a0-938f-d817824509dd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T22:09:46.1565055Z","updatedOn":"2021-12-02T22:09:46.1565055Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e97a88c4-e035-453b-b767-a3dbfadfd28d","type":"Microsoft.Authorization/roleAssignments","name":"e97a88c4-e035-453b-b767-a3dbfadfd28d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T23:10:20.2170014Z","updatedOn":"2021-12-02T23:10:20.2170014Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/afd2116e-f2ce-4bc2-8924-fb6f0c620d64","type":"Microsoft.Authorization/roleAssignments","name":"afd2116e-f2ce-4bc2-8924-fb6f0c620d64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-03T00:07:35.7286641Z","updatedOn":"2021-12-03T00:07:35.7286641Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/56d1c441-73b9-4b86-acc9-260016c81330","type":"Microsoft.Authorization/roleAssignments","name":"56d1c441-73b9-4b86-acc9-260016c81330"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-03T18:42:59.5078987Z","updatedOn":"2021-12-03T18:42:59.5078987Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b083534f-ae88-4db8-b65f-150284339772","type":"Microsoft.Authorization/roleAssignments","name":"b083534f-ae88-4db8-b65f-150284339772"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-03T21:00:00.5789423Z","updatedOn":"2021-12-03T21:00:00.5789423Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8684384c-7276-4e65-b708-6766a7c3a876","type":"Microsoft.Authorization/roleAssignments","name":"8684384c-7276-4e65-b708-6766a7c3a876"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-04T00:50:10.8909441Z","updatedOn":"2021-12-04T00:50:10.8909441Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cb7855e-82da-4910-b4ce-5f38896c067a","type":"Microsoft.Authorization/roleAssignments","name":"3cb7855e-82da-4910-b4ce-5f38896c067a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-07T12:35:57.6917673Z","updatedOn":"2021-12-07T12:35:57.6917673Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39e64286-575a-11ec-95aa-002248232e56","type":"Microsoft.Authorization/roleAssignments","name":"39e64286-575a-11ec-95aa-002248232e56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-07T23:18:12.3548251Z","updatedOn":"2021-12-07T23:18:12.3548251Z","createdBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","updatedBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f2265a95-57b3-11ec-a8e6-de1bbdf97372","type":"Microsoft.Authorization/roleAssignments","name":"f2265a95-57b3-11ec-a8e6-de1bbdf97372"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-08T03:01:28.5641674Z","updatedOn":"2021-12-08T03:01:28.5641674Z","createdBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","updatedBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2232ec95-57d3-11ec-bbe2-de1bbdf97372","type":"Microsoft.Authorization/roleAssignments","name":"2232ec95-57d3-11ec-bbe2-de1bbdf97372"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-08T03:07:36.8342803Z","updatedOn":"2021-12-08T03:07:36.8342803Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f1920cc-5cca-44c7-8175-d46948a9283f","type":"Microsoft.Authorization/roleAssignments","name":"9f1920cc-5cca-44c7-8175-d46948a9283f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-08T13:07:30.9635867Z","updatedOn":"2021-12-08T13:07:30.9635867Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc6359bd-5827-11ec-a516-000d3afc9734","type":"Microsoft.Authorization/roleAssignments","name":"cc6359bd-5827-11ec-a516-000d3afc9734"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-09T17:37:01.4296706Z","updatedOn":"2021-12-09T17:37:01.4296706Z","createdBy":"ae195f21-9b44-473d-9920-601e7899b56d","updatedBy":"ae195f21-9b44-473d-9920-601e7899b56d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9be22fd0-5916-11ec-b5a3-469e91f29611","type":"Microsoft.Authorization/roleAssignments","name":"9be22fd0-5916-11ec-b5a3-469e91f29611"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-10T14:31:24.3746709Z","updatedOn":"2021-12-10T14:31:24.3746709Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d9b6ef44-59c5-11ec-800e-0022487c3cbe","type":"Microsoft.Authorization/roleAssignments","name":"d9b6ef44-59c5-11ec-800e-0022487c3cbe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-13T07:46:54.6104588Z","updatedOn":"2021-12-13T07:46:54.6104588Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c65fe6b5-5be8-11ec-b892-000d3a518d38","type":"Microsoft.Authorization/roleAssignments","name":"c65fe6b5-5be8-11ec-b892-000d3a518d38"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-17T03:03:12.7081063Z","updatedOn":"2021-12-17T03:03:12.7081063Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/deb2cb98-5ee5-11ec-bd7f-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"deb2cb98-5ee5-11ec-bd7f-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-18T06:04:20.9532091Z","updatedOn":"2021-12-18T06:04:20.9532091Z","createdBy":"19263705-0667-497e-85e7-a930fa3441ec","updatedBy":"19263705-0667-497e-85e7-a930fa3441ec","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6eb35762-bc37-4c24-aec0-389e7cb97f95","type":"Microsoft.Authorization/roleAssignments","name":"6eb35762-bc37-4c24-aec0-389e7cb97f95"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-22T09:15:23.9226458Z","updatedOn":"2021-12-22T09:15:23.9226458Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7a9e1ec4-8728-4723-9fca-709f8549e3ac","type":"Microsoft.Authorization/roleAssignments","name":"7a9e1ec4-8728-4723-9fca-709f8549e3ac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-22T19:37:32.9555793Z","updatedOn":"2021-12-22T19:37:32.9555793Z","createdBy":"121978e2-c5f7-437f-b950-07f832f9f06c","updatedBy":"121978e2-c5f7-437f-b950-07f832f9f06c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a77cfdf9-fd0d-43f5-ba0d-0d36c8c1818e","type":"Microsoft.Authorization/roleAssignments","name":"a77cfdf9-fd0d-43f5-ba0d-0d36c8c1818e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-28T17:11:37.6373944Z","updatedOn":"2022-09-28T17:11:37.6373944Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b564621-3f50-11ed-918f-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"9b564621-3f50-11ed-918f-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-28T17:11:52.2247561Z","updatedOn":"2022-09-28T17:11:52.2247561Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3d8aeee-3f50-11ed-918f-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"a3d8aeee-3f50-11ed-918f-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-28T18:45:35.3728959Z","updatedOn":"2022-09-28T18:45:35.3728959Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5bb18d5f-3c20-4899-a01f-58313b28c345","type":"Microsoft.Authorization/roleAssignments","name":"5bb18d5f-3c20-4899-a01f-58313b28c345"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-30T18:34:26.1480517Z","updatedOn":"2022-09-30T18:34:26.1480517Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/828f43f9-40ee-11ed-9683-0022482b84fb","type":"Microsoft.Authorization/roleAssignments","name":"828f43f9-40ee-11ed-9683-0022482b84fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-30T18:34:28.0235766Z","updatedOn":"2022-09-30T18:34:28.0235766Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83a3304a-40ee-11ed-9683-0022482b84fb","type":"Microsoft.Authorization/roleAssignments","name":"83a3304a-40ee-11ed-9683-0022482b84fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T14:35:19.0321994Z","updatedOn":"2022-10-03T14:35:19.0321994Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99965ae6-4328-11ed-939f-aae2aa7b83bb","type":"Microsoft.Authorization/roleAssignments","name":"99965ae6-4328-11ed-939f-aae2aa7b83bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T14:35:23.0970392Z","updatedOn":"2022-10-03T14:35:23.0970392Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9c1721f9-4328-11ed-939f-aae2aa7b83bb","type":"Microsoft.Authorization/roleAssignments","name":"9c1721f9-4328-11ed-939f-aae2aa7b83bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T18:39:25.8455066Z","updatedOn":"2022-10-03T18:39:25.8455066Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":"adding + my aksdev SPs per https://dev.azure.com/msazure/CloudNativeCompute/_wiki/wikis/CloudNativeCompute.wiki/54089/Standalone-Environment-Usage?anchor=authentication-failed-issues"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b4fc89b2-a0bc-4661-a4f4-96170e3da3c3","type":"Microsoft.Authorization/roleAssignments","name":"b4fc89b2-a0bc-4661-a4f4-96170e3da3c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T21:14:21.6709207Z","updatedOn":"2022-10-03T21:14:21.6709207Z","createdBy":"2182129f-e575-4986-a7fb-2be7772ba46f","updatedBy":"2182129f-e575-4986-a7fb-2be7772ba46f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/58ef0b60-4360-11ed-84ae-4ef510510e8a","type":"Microsoft.Authorization/roleAssignments","name":"58ef0b60-4360-11ed-84ae-4ef510510e8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T21:14:25.9942421Z","updatedOn":"2022-10-03T21:14:25.9942421Z","createdBy":"2182129f-e575-4986-a7fb-2be7772ba46f","updatedBy":"2182129f-e575-4986-a7fb-2be7772ba46f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5b271148-4360-11ed-84ae-4ef510510e8a","type":"Microsoft.Authorization/roleAssignments","name":"5b271148-4360-11ed-84ae-4ef510510e8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T08:46:58.1120536Z","updatedOn":"2022-10-04T08:46:58.1120536Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46d7c91e-4182-4715-9d5c-c143514d0e96","type":"Microsoft.Authorization/roleAssignments","name":"46d7c91e-4182-4715-9d5c-c143514d0e96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T08:46:58.7908585Z","updatedOn":"2022-10-04T08:46:58.7908585Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0215f1ea-81dc-42cd-b2b0-62ed51ec1e8f","type":"Microsoft.Authorization/roleAssignments","name":"0215f1ea-81dc-42cd-b2b0-62ed51ec1e8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T15:17:47.0575990Z","updatedOn":"2022-10-04T15:17:47.0575990Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09dff59a-a350-4eb7-b515-b439773bf953","type":"Microsoft.Authorization/roleAssignments","name":"09dff59a-a350-4eb7-b515-b439773bf953"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T20:25:24.7922965Z","updatedOn":"2022-10-04T20:25:24.7922965Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac245566-4422-11ed-b4e4-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"ac245566-4422-11ed-b4e4-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T20:25:29.7192947Z","updatedOn":"2022-10-04T20:25:29.7192947Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/af78cdbe-4422-11ed-b4e4-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"af78cdbe-4422-11ed-b4e4-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-05T17:17:50.2296097Z","updatedOn":"2022-10-05T17:17:50.2296097Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18d61426-19b2-45ab-a04c-35bf0954b5f2","type":"Microsoft.Authorization/roleAssignments","name":"18d61426-19b2-45ab-a04c-35bf0954b5f2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T21:18:34.5111716Z","updatedOn":"2022-10-06T21:18:34.5111716Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/90e84a6f-382e-4cd0-8b7c-249f30414d26","type":"Microsoft.Authorization/roleAssignments","name":"90e84a6f-382e-4cd0-8b7c-249f30414d26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T21:19:26.0775289Z","updatedOn":"2022-10-06T21:19:26.0775289Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/245ffe6b-708b-41b4-b4a5-0328063f9511","type":"Microsoft.Authorization/roleAssignments","name":"245ffe6b-708b-41b4-b4a5-0328063f9511"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T22:01:04.9042316Z","updatedOn":"2022-10-06T22:01:04.9042316Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/809518d2-215b-449f-9909-1cf5275f82ff","type":"Microsoft.Authorization/roleAssignments","name":"809518d2-215b-449f-9909-1cf5275f82ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T22:01:18.8874783Z","updatedOn":"2022-10-06T22:01:18.8874783Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/50ca23bf-0051-4116-a073-86a9415cc7e4","type":"Microsoft.Authorization/roleAssignments","name":"50ca23bf-0051-4116-a073-86a9415cc7e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T00:36:14.3318961Z","updatedOn":"2022-10-07T00:36:14.3318961Z","createdBy":"b3ae1fad-98a9-46c4-bd0b-193e8efd9450","updatedBy":"b3ae1fad-98a9-46c4-bd0b-193e8efd9450","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ba8ceaf-45d8-11ed-bb9e-0eabbd04010c","type":"Microsoft.Authorization/roleAssignments","name":"0ba8ceaf-45d8-11ed-bb9e-0eabbd04010c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:18.2176259Z","updatedOn":"2022-10-07T16:36:18.2176259Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0eafb5be-ea9a-495c-82c9-8337449b1150","type":"Microsoft.Authorization/roleAssignments","name":"0eafb5be-ea9a-495c-82c9-8337449b1150"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:22.7662640Z","updatedOn":"2022-10-07T16:36:22.7662640Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7cb15a6c-7b73-430f-91aa-02113db930cb","type":"Microsoft.Authorization/roleAssignments","name":"7cb15a6c-7b73-430f-91aa-02113db930cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:29.4358024Z","updatedOn":"2022-10-07T16:36:29.4358024Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1b259a44-7824-434b-8f81-8df465b85fd5","type":"Microsoft.Authorization/roleAssignments","name":"1b259a44-7824-434b-8f81-8df465b85fd5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:33.7158336Z","updatedOn":"2022-10-07T16:36:33.7158336Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3156b3a1-bc03-4d84-b2df-09d0d0eab4b1","type":"Microsoft.Authorization/roleAssignments","name":"3156b3a1-bc03-4d84-b2df-09d0d0eab4b1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:35.7999116Z","updatedOn":"2022-10-07T16:36:35.7999116Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1d30073-ff57-48fa-96e7-dfc85b8c7975","type":"Microsoft.Authorization/roleAssignments","name":"b1d30073-ff57-48fa-96e7-dfc85b8c7975"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-09T05:08:21.9096837Z","updatedOn":"2022-10-09T05:08:21.9096837Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d747b25-fa91-4429-a72b-0a4e2079ed03","type":"Microsoft.Authorization/roleAssignments","name":"8d747b25-fa91-4429-a72b-0a4e2079ed03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-10T05:53:40.9849719Z","updatedOn":"2022-10-10T05:53:40.9849719Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3cfb29d-485f-11ed-b38e-562c47d8c70b","type":"Microsoft.Authorization/roleAssignments","name":"e3cfb29d-485f-11ed-b38e-562c47d8c70b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-10T05:53:46.7676576Z","updatedOn":"2022-10-10T05:53:46.7676576Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e6c4b18f-485f-11ed-b38e-562c47d8c70b","type":"Microsoft.Authorization/roleAssignments","name":"e6c4b18f-485f-11ed-b38e-562c47d8c70b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-10T19:26:54.0213364Z","updatedOn":"2022-10-10T19:26:54.0213364Z","createdBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","updatedBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ed9bd3d-48d1-11ed-8d0c-000d3af6a88e","type":"Microsoft.Authorization/roleAssignments","name":"7ed9bd3d-48d1-11ed-8d0c-000d3af6a88e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T05:01:21.4237199Z","updatedOn":"2022-10-11T05:01:21.4237199Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbc092b8-61c0-429f-bc40-457c06ef2ae3","type":"Microsoft.Authorization/roleAssignments","name":"bbc092b8-61c0-429f-bc40-457c06ef2ae3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T06:32:06.2810453Z","updatedOn":"2022-10-11T06:32:06.2810453Z","createdBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","updatedBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c482116-492e-11ed-b1e5-50814031cc1b","type":"Microsoft.Authorization/roleAssignments","name":"6c482116-492e-11ed-b1e5-50814031cc1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T06:32:11.8691902Z","updatedOn":"2022-10-11T06:32:11.8691902Z","createdBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","updatedBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6f333b0b-492e-11ed-b1e5-50814031cc1b","type":"Microsoft.Authorization/roleAssignments","name":"6f333b0b-492e-11ed-b1e5-50814031cc1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T10:41:27.4966216Z","updatedOn":"2022-10-11T10:41:27.4966216Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4aaba87d-be3b-49d5-90e6-02100140c50d","type":"Microsoft.Authorization/roleAssignments","name":"4aaba87d-be3b-49d5-90e6-02100140c50d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-12T06:14:22.3962768Z","updatedOn":"2022-10-12T06:14:22.3962768Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c7ad8940-3c2c-4a0a-b59a-5c6408cce033","type":"Microsoft.Authorization/roleAssignments","name":"c7ad8940-3c2c-4a0a-b59a-5c6408cce033"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-12T23:06:16.2844894Z","updatedOn":"2022-10-12T23:06:16.2844894Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8434c983-cdd3-40c4-9531-78b5f16fea23","type":"Microsoft.Authorization/roleAssignments","name":"8434c983-cdd3-40c4-9531-78b5f16fea23"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-12T23:06:16.4551494Z","updatedOn":"2022-10-12T23:06:16.4551494Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4281f456-78ed-4ef7-b058-d980c90bf6f9","type":"Microsoft.Authorization/roleAssignments","name":"4281f456-78ed-4ef7-b058-d980c90bf6f9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-18T14:04:58.5223716Z","updatedOn":"2022-10-18T14:04:58.5223716Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9158a450-cec7-48ba-8469-fc085e252e56","type":"Microsoft.Authorization/roleAssignments","name":"9158a450-cec7-48ba-8469-fc085e252e56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-19T17:08:57.8704270Z","updatedOn":"2022-10-19T17:08:57.8704270Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf874421-44f9-4a19-8abd-da0f4f04a24f","type":"Microsoft.Authorization/roleAssignments","name":"bf874421-44f9-4a19-8abd-da0f4f04a24f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-19T23:09:40.3682015Z","updatedOn":"2022-10-19T23:09:40.3682015Z","createdBy":"57440c04-5eed-4c74-92b6-44b016b882f2","updatedBy":"57440c04-5eed-4c74-92b6-44b016b882f2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2bafd93-beec-4d8b-b5f0-9893ef27a090","type":"Microsoft.Authorization/roleAssignments","name":"b2bafd93-beec-4d8b-b5f0-9893ef27a090"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-25T20:45:40.4378406Z","updatedOn":"2022-10-25T20:45:40.4378406Z","createdBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","updatedBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbadcf84-54a5-11ed-b2c3-0e0011011627","type":"Microsoft.Authorization/roleAssignments","name":"fbadcf84-54a5-11ed-b2c3-0e0011011627"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-25T20:45:44.2349413Z","updatedOn":"2022-10-25T20:45:44.2349413Z","createdBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","updatedBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fde7916d-54a5-11ed-b2c3-0e0011011627","type":"Microsoft.Authorization/roleAssignments","name":"fde7916d-54a5-11ed-b2c3-0e0011011627"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T16:44:45.2471286Z","updatedOn":"2022-10-26T16:44:45.2471286Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6649fcf-1731-4db5-8e3b-31af16600402","type":"Microsoft.Authorization/roleAssignments","name":"c6649fcf-1731-4db5-8e3b-31af16600402"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T21:24:42.6980121Z","updatedOn":"2022-10-26T21:24:42.6980121Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b1323cf-e4ec-4454-ac08-5f88d588f133","type":"Microsoft.Authorization/roleAssignments","name":"9b1323cf-e4ec-4454-ac08-5f88d588f133"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T23:12:13.5663015Z","updatedOn":"2022-10-26T23:12:13.5663015Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9db19562-5583-11ed-a49b-aa665a565a49","type":"Microsoft.Authorization/roleAssignments","name":"9db19562-5583-11ed-a49b-aa665a565a49"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-27T20:49:50.5273108Z","updatedOn":"2022-10-27T20:49:50.5273108Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1a0bbbc6-febb-4d40-9e39-5274a2edd538","type":"Microsoft.Authorization/roleAssignments","name":"1a0bbbc6-febb-4d40-9e39-5274a2edd538"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-31T21:38:36.6886945Z","updatedOn":"2022-10-31T21:38:36.6886945Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a85bdf2-6490-4989-9276-f2071fcf02c7","type":"Microsoft.Authorization/roleAssignments","name":"6a85bdf2-6490-4989-9276-f2071fcf02c7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-01T17:32:59.4211774Z","updatedOn":"2022-11-01T17:32:59.4211774Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a3d71f8-5a0b-11ed-ae92-000d3a6dafe7","type":"Microsoft.Authorization/roleAssignments","name":"3a3d71f8-5a0b-11ed-ae92-000d3a6dafe7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-03T20:33:30.2762577Z","updatedOn":"2022-11-03T20:33:30.2762577Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6983693-5bb6-11ed-ae23-72674b3691e8","type":"Microsoft.Authorization/roleAssignments","name":"c6983693-5bb6-11ed-ae23-72674b3691e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-03T20:33:33.9941086Z","updatedOn":"2022-11-03T20:33:33.9941086Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c90a1190-5bb6-11ed-ae23-72674b3691e8","type":"Microsoft.Authorization/roleAssignments","name":"c90a1190-5bb6-11ed-ae23-72674b3691e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-03T22:01:34.3526622Z","updatedOn":"2022-11-03T22:01:34.3526622Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/572d1281-1073-4df2-a41a-6ec6ab01ccf4","type":"Microsoft.Authorization/roleAssignments","name":"572d1281-1073-4df2-a41a-6ec6ab01ccf4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-04T17:44:58.1069368Z","updatedOn":"2022-11-04T17:44:58.1069368Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65ead23f-5c68-11ed-81d0-000d3ac6042c","type":"Microsoft.Authorization/roleAssignments","name":"65ead23f-5c68-11ed-81d0-000d3ac6042c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-04T17:44:58.3889675Z","updatedOn":"2022-11-04T17:44:58.3889675Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65f36b55-5c68-11ed-81d0-000d3ac6042c","type":"Microsoft.Authorization/roleAssignments","name":"65f36b55-5c68-11ed-81d0-000d3ac6042c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-07T21:00:30.9927458Z","updatedOn":"2022-11-07T21:00:30.9927458Z","createdBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","updatedBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3631fc51-5edf-11ed-b8d9-bee096dd1f56","type":"Microsoft.Authorization/roleAssignments","name":"3631fc51-5edf-11ed-b8d9-bee096dd1f56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-07T23:06:40.7350135Z","updatedOn":"2022-11-07T23:06:40.7350135Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82f4d8cb-f92b-4183-8a57-9a266f8ed475","type":"Microsoft.Authorization/roleAssignments","name":"82f4d8cb-f92b-4183-8a57-9a266f8ed475"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T00:45:45.2308519Z","updatedOn":"2022-11-08T00:45:45.2308519Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad83b644-5efe-11ed-9afa-76a84c3a8985","type":"Microsoft.Authorization/roleAssignments","name":"ad83b644-5efe-11ed-9afa-76a84c3a8985"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T00:45:54.5576407Z","updatedOn":"2022-11-08T00:45:54.5576407Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2f5ecd2-5efe-11ed-9afa-76a84c3a8985","type":"Microsoft.Authorization/roleAssignments","name":"b2f5ecd2-5efe-11ed-9afa-76a84c3a8985"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T17:38:14.0062888Z","updatedOn":"2022-11-08T17:38:14.0062888Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5a5cfdf-e8ad-4d53-a1a9-3a7191efa68a","type":"Microsoft.Authorization/roleAssignments","name":"b5a5cfdf-e8ad-4d53-a1a9-3a7191efa68a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T20:41:35.2460898Z","updatedOn":"2022-11-08T20:41:35.2460898Z","createdBy":"77ac7883-1816-45e5-8784-444d95195dfe","updatedBy":"77ac7883-1816-45e5-8784-444d95195dfe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbdb8a06-5fa5-11ed-87b5-52a0a45b7fbb","type":"Microsoft.Authorization/roleAssignments","name":"bbdb8a06-5fa5-11ed-87b5-52a0a45b7fbb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T20:41:39.0095016Z","updatedOn":"2022-11-08T20:41:39.0095016Z","createdBy":"77ac7883-1816-45e5-8784-444d95195dfe","updatedBy":"77ac7883-1816-45e5-8784-444d95195dfe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be17ddaf-5fa5-11ed-87b5-52a0a45b7fbb","type":"Microsoft.Authorization/roleAssignments","name":"be17ddaf-5fa5-11ed-87b5-52a0a45b7fbb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T04:24:29.2903032Z","updatedOn":"2022-11-09T04:24:29.2903032Z","createdBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","updatedBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6672401b-5fe6-11ed-8d26-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"6672401b-5fe6-11ed-8d26-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T04:24:32.7816834Z","updatedOn":"2022-11-09T04:24:32.7816834Z","createdBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","updatedBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/687908be-5fe6-11ed-8d26-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"687908be-5fe6-11ed-8d26-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T06:49:46.3320446Z","updatedOn":"2022-11-09T06:49:46.3320446Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40e96901-a9d4-4fc3-8d80-c55979cad3f4","type":"Microsoft.Authorization/roleAssignments","name":"40e96901-a9d4-4fc3-8d80-c55979cad3f4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T06:57:50.8140024Z","updatedOn":"2022-11-09T06:57:50.8140024Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54117e37-77ed-4fc2-a64e-7f5cfee1e3cb","type":"Microsoft.Authorization/roleAssignments","name":"54117e37-77ed-4fc2-a64e-7f5cfee1e3cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-15T17:00:53.9224351Z","updatedOn":"2022-11-15T17:00:53.9224351Z","createdBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","updatedBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb3fa35d-14c6-476e-965d-3287df835fb6","type":"Microsoft.Authorization/roleAssignments","name":"eb3fa35d-14c6-476e-965d-3287df835fb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-16T17:45:41.6438991Z","updatedOn":"2022-11-16T18:12:21.7351318Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89d1db20-3058-52b8-8e72-ffbee92652bc","type":"Microsoft.Authorization/roleAssignments","name":"89d1db20-3058-52b8-8e72-ffbee92652bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-17T20:00:21.8300657Z","updatedOn":"2022-11-17T20:00:21.8300657Z","createdBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","updatedBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/770d246f-66b2-11ed-9a7a-5eff6da83896","type":"Microsoft.Authorization/roleAssignments","name":"770d246f-66b2-11ed-9a7a-5eff6da83896"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:13:16.4073065Z","updatedOn":"2023-05-12T17:27:11.5958673Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d9c1e76-d133-5014-a053-fa81b5a5ddcc","type":"Microsoft.Authorization/roleAssignments","name":"8d9c1e76-d133-5014-a053-fa81b5a5ddcc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:13:16.3810810Z","updatedOn":"2023-05-12T17:27:11.6002511Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9589fe9-37b5-52e8-b6a1-05baa0e40ea2","type":"Microsoft.Authorization/roleAssignments","name":"b9589fe9-37b5-52e8-b6a1-05baa0e40ea2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:13:16.4335352Z","updatedOn":"2023-05-12T17:27:11.6253602Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df3deb96-df88-5ecf-9db1-b40cda69a5b1","type":"Microsoft.Authorization/roleAssignments","name":"df3deb96-df88-5ecf-9db1-b40cda69a5b1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-29T22:31:21.5082047Z","updatedOn":"2023-05-12T17:27:12.7611677Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe4c31ea-8d12-5bbd-80e8-749dd04c242c","type":"Microsoft.Authorization/roleAssignments","name":"fe4c31ea-8d12-5bbd-80e8-749dd04c242c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-18T19:59:52.7113168Z","updatedOn":"2022-11-18T19:59:52.7113168Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/909e97c0-677b-11ed-b3d1-4e4b7fc6d2d7","type":"Microsoft.Authorization/roleAssignments","name":"909e97c0-677b-11ed-b3d1-4e4b7fc6d2d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-18T19:59:56.7899280Z","updatedOn":"2022-11-18T19:59:56.7899280Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9302a900-677b-11ed-b3d1-4e4b7fc6d2d7","type":"Microsoft.Authorization/roleAssignments","name":"9302a900-677b-11ed-b3d1-4e4b7fc6d2d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-18T22:57:24.7333928Z","updatedOn":"2022-11-18T22:57:24.7333928Z","createdBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","updatedBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/616b0a5c-ef17-4f5c-8f54-932fb42ed1b6","type":"Microsoft.Authorization/roleAssignments","name":"616b0a5c-ef17-4f5c-8f54-932fb42ed1b6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-20T08:02:14.3563436Z","updatedOn":"2022-11-20T08:02:14.3563436Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59455a7f-8688-4fa9-bca1-b14ff86b45d8","type":"Microsoft.Authorization/roleAssignments","name":"59455a7f-8688-4fa9-bca1-b14ff86b45d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-22T12:28:29.6735062Z","updatedOn":"2022-11-22T12:28:29.6735062Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a01068c-6a61-11ed-b280-38f9d359b369","type":"Microsoft.Authorization/roleAssignments","name":"2a01068c-6a61-11ed-b280-38f9d359b369"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-22T12:28:35.6487701Z","updatedOn":"2022-11-22T12:28:35.6487701Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2dec6a7a-6a61-11ed-b280-38f9d359b369","type":"Microsoft.Authorization/roleAssignments","name":"2dec6a7a-6a61-11ed-b280-38f9d359b369"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-23T19:27:15.6029824Z","updatedOn":"2022-11-23T19:27:15.6029824Z","createdBy":"573ee898-c9b5-4556-b5b7-ba398712832e","updatedBy":"573ee898-c9b5-4556-b5b7-ba398712832e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5624ab6-6b64-11ed-99e5-a29c0e078d5a","type":"Microsoft.Authorization/roleAssignments","name":"d5624ab6-6b64-11ed-99e5-a29c0e078d5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-23T19:27:29.8496193Z","updatedOn":"2022-11-23T19:27:29.8496193Z","createdBy":"573ee898-c9b5-4556-b5b7-ba398712832e","updatedBy":"573ee898-c9b5-4556-b5b7-ba398712832e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ddce2c51-6b64-11ed-99e5-a29c0e078d5a","type":"Microsoft.Authorization/roleAssignments","name":"ddce2c51-6b64-11ed-99e5-a29c0e078d5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-24T08:00:52.4569469Z","updatedOn":"2022-11-24T08:00:52.4569469Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ea38765-a469-4975-a3b3-69c47e46e70b","type":"Microsoft.Authorization/roleAssignments","name":"9ea38765-a469-4975-a3b3-69c47e46e70b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-24T08:01:11.1412012Z","updatedOn":"2022-11-24T08:01:11.1412012Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f7e731a-0d5b-4591-a97d-0ee2053825bb","type":"Microsoft.Authorization/roleAssignments","name":"9f7e731a-0d5b-4591-a97d-0ee2053825bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T08:56:33.0370700Z","updatedOn":"2022-11-28T08:56:33.0370700Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4d08049c-272d-4905-a2b6-cd89456c5382","type":"Microsoft.Authorization/roleAssignments","name":"4d08049c-272d-4905-a2b6-cd89456c5382"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T18:00:17.3116606Z","updatedOn":"2022-11-28T18:00:17.3116606Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/839a632b-6f46-11ed-9f3a-002248be91cc","type":"Microsoft.Authorization/roleAssignments","name":"839a632b-6f46-11ed-9f3a-002248be91cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T21:24:30.3728549Z","updatedOn":"2022-11-28T21:24:30.3728549Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ad622e0-6f63-11ed-a15a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"0ad622e0-6f63-11ed-a15a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T21:24:34.5112467Z","updatedOn":"2022-11-28T21:24:34.5112467Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d6f187c-6f63-11ed-a15a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"0d6f187c-6f63-11ed-a15a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-29T19:42:39.8350492Z","updatedOn":"2022-11-29T19:42:39.8350492Z","createdBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","updatedBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb69dd10-701d-11ed-8940-6ca1001ae258","type":"Microsoft.Authorization/roleAssignments","name":"fb69dd10-701d-11ed-8940-6ca1001ae258"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-29T19:42:43.2096038Z","updatedOn":"2022-11-29T19:42:43.2096038Z","createdBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","updatedBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd6fed09-701d-11ed-8940-6ca1001ae258","type":"Microsoft.Authorization/roleAssignments","name":"fd6fed09-701d-11ed-8940-6ca1001ae258"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-30T07:32:24.0648059Z","updatedOn":"2022-11-30T07:32:24.0648059Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d745d98-b683-45b9-92a8-918aacf64633","type":"Microsoft.Authorization/roleAssignments","name":"2d745d98-b683-45b9-92a8-918aacf64633"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-01T22:00:12.5092022Z","updatedOn":"2022-12-01T22:00:12.5092022Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/29f80035-534e-479f-bf9d-3243cd2eba93","type":"Microsoft.Authorization/roleAssignments","name":"29f80035-534e-479f-bf9d-3243cd2eba93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-02T07:52:06.0754526Z","updatedOn":"2022-12-02T07:52:06.0754526Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/17ce4c2c-8051-4420-a6ac-6aeb91441711","type":"Microsoft.Authorization/roleAssignments","name":"17ce4c2c-8051-4420-a6ac-6aeb91441711"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-02T23:54:37.7637423Z","updatedOn":"2022-12-02T23:54:37.7637423Z","createdBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","updatedBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e8902907-9bef-55f7-9a6d-64e3cf3b1a77","type":"Microsoft.Authorization/roleAssignments","name":"e8902907-9bef-55f7-9a6d-64e3cf3b1a77"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-05T17:29:10.2915092Z","updatedOn":"2022-12-05T17:29:10.2915092Z","createdBy":"500b0839-c682-4003-9106-8f37a381595d","updatedBy":"500b0839-c682-4003-9106-8f37a381595d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/53a3b656-74c2-11ed-b2ea-f21d81f4d94b","type":"Microsoft.Authorization/roleAssignments","name":"53a3b656-74c2-11ed-b2ea-f21d81f4d94b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-05T17:29:19.7335221Z","updatedOn":"2022-12-05T17:29:19.7335221Z","createdBy":"500b0839-c682-4003-9106-8f37a381595d","updatedBy":"500b0839-c682-4003-9106-8f37a381595d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59486582-74c2-11ed-b2ea-f21d81f4d94b","type":"Microsoft.Authorization/roleAssignments","name":"59486582-74c2-11ed-b2ea-f21d81f4d94b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T00:27:21.1321238Z","updatedOn":"2022-12-06T00:27:21.1321238Z","createdBy":"010e39fa-3d22-4576-ad28-9709490d3973","updatedBy":"010e39fa-3d22-4576-ad28-9709490d3973","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bdc7c72a-74fc-11ed-b1d9-fe40d632c9c8","type":"Microsoft.Authorization/roleAssignments","name":"bdc7c72a-74fc-11ed-b1d9-fe40d632c9c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T00:27:26.7978650Z","updatedOn":"2022-12-06T00:27:26.7978650Z","createdBy":"010e39fa-3d22-4576-ad28-9709490d3973","updatedBy":"010e39fa-3d22-4576-ad28-9709490d3973","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c1df0b20-74fc-11ed-b1d9-fe40d632c9c8","type":"Microsoft.Authorization/roleAssignments","name":"c1df0b20-74fc-11ed-b1d9-fe40d632c9c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T08:09:07.9286883Z","updatedOn":"2022-12-06T08:09:07.9286883Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a54f40a-fc73-4967-93de-1fda5f77fa18","type":"Microsoft.Authorization/roleAssignments","name":"8a54f40a-fc73-4967-93de-1fda5f77fa18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T08:09:07.0223985Z","updatedOn":"2022-12-06T08:09:07.0223985Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/37a700cb-bd3a-4961-a7b7-cf21f1049fd6","type":"Microsoft.Authorization/roleAssignments","name":"37a700cb-bd3a-4961-a7b7-cf21f1049fd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-09T14:12:43.2358573Z","updatedOn":"2022-12-09T14:12:43.2358573Z","createdBy":"500b0839-c682-4003-9106-8f37a381595d","updatedBy":"500b0839-c682-4003-9106-8f37a381595d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88d9f0e9-77cb-11ed-a931-4ecc509b30ab","type":"Microsoft.Authorization/roleAssignments","name":"88d9f0e9-77cb-11ed-a931-4ecc509b30ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T12:05:48.4827550Z","updatedOn":"2022-12-12T12:05:48.4827550Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d238237a-b393-4ab0-9f00-cdf16c5d6b05","type":"Microsoft.Authorization/roleAssignments","name":"d238237a-b393-4ab0-9f00-cdf16c5d6b05"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T16:10:53.3465450Z","updatedOn":"2022-12-12T16:10:53.3465450Z","createdBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","updatedBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8bcca047-7a37-11ed-9b42-5a0f21a4ffba","type":"Microsoft.Authorization/roleAssignments","name":"8bcca047-7a37-11ed-9b42-5a0f21a4ffba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T16:10:57.7295344Z","updatedOn":"2022-12-12T16:10:57.7295344Z","createdBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","updatedBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e42900b-7a37-11ed-9b42-5a0f21a4ffba","type":"Microsoft.Authorization/roleAssignments","name":"8e42900b-7a37-11ed-9b42-5a0f21a4ffba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-14T08:51:42.0015523Z","updatedOn":"2022-12-14T08:51:42.0015523Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d01084d-4e3a-414c-ac62-c3ef82dc3302","type":"Microsoft.Authorization/roleAssignments","name":"8d01084d-4e3a-414c-ac62-c3ef82dc3302"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-16T07:20:02.6088062Z","updatedOn":"2022-12-16T07:20:02.6088062Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0cb541fc-7d12-11ed-8232-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"0cb541fc-7d12-11ed-8232-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-20T19:00:39.7938573Z","updatedOn":"2022-12-20T19:00:39.7938573Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/991d89fd-8098-11ed-a1dc-1e0cf6619ffa","type":"Microsoft.Authorization/roleAssignments","name":"991d89fd-8098-11ed-a1dc-1e0cf6619ffa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-21T19:53:55.0673117Z","updatedOn":"2022-12-21T19:53:55.0673117Z","createdBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","updatedBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/31f1b70c-8169-11ed-871d-bc091b9528f6","type":"Microsoft.Authorization/roleAssignments","name":"31f1b70c-8169-11ed-871d-bc091b9528f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-21T19:54:01.7874075Z","updatedOn":"2022-12-21T19:54:01.7874075Z","createdBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","updatedBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35eb2367-8169-11ed-871d-bc091b9528f6","type":"Microsoft.Authorization/roleAssignments","name":"35eb2367-8169-11ed-871d-bc091b9528f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-23T14:42:33.0388657Z","updatedOn":"2022-12-23T14:42:33.0388657Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7077d7fa-4615-4792-b394-80918dd155ce","type":"Microsoft.Authorization/roleAssignments","name":"7077d7fa-4615-4792-b394-80918dd155ce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-28T13:20:44.8421429Z","updatedOn":"2022-12-28T13:20:44.8421429Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b48d252-d31a-57c7-8cf6-cb5fed6d1a67","type":"Microsoft.Authorization/roleAssignments","name":"4b48d252-d31a-57c7-8cf6-cb5fed6d1a67"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-03T12:31:11.2683110Z","updatedOn":"2023-01-03T12:31:11.2683110Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d408ddb7-31cd-4d46-ab59-fe1be61b2bdc","type":"Microsoft.Authorization/roleAssignments","name":"d408ddb7-31cd-4d46-ab59-fe1be61b2bdc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-06T08:15:45.7088191Z","updatedOn":"2023-01-06T08:15:45.7088191Z","createdBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","updatedBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/510806b0-8d9a-11ed-9e4f-000d3ac772b5","type":"Microsoft.Authorization/roleAssignments","name":"510806b0-8d9a-11ed-9e4f-000d3ac772b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-06T08:15:51.6046641Z","updatedOn":"2023-01-06T08:15:51.6046641Z","createdBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","updatedBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54802b41-8d9a-11ed-9e4f-000d3ac772b5","type":"Microsoft.Authorization/roleAssignments","name":"54802b41-8d9a-11ed-9e4f-000d3ac772b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-06T22:24:58.0712756Z","updatedOn":"2023-01-06T22:24:58.0712756Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbcde9e0-3481-49ad-b1f1-e7226db43e33","type":"Microsoft.Authorization/roleAssignments","name":"cbcde9e0-3481-49ad-b1f1-e7226db43e33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-07T00:15:43.3039407Z","updatedOn":"2023-01-07T00:15:43.3039407Z","createdBy":"80a6e936-2bdc-4927-b49e-2a7a19943b90","updatedBy":"80a6e936-2bdc-4927-b49e-2a7a19943b90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7e73e7e9-99f9-5fa0-a5c8-33268a3e7acc","type":"Microsoft.Authorization/roleAssignments","name":"7e73e7e9-99f9-5fa0-a5c8-33268a3e7acc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-08T14:40:12.1322327Z","updatedOn":"2023-01-08T14:40:12.1322327Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9146e5ba-1dce-41c3-bee6-6e854049e485","type":"Microsoft.Authorization/roleAssignments","name":"9146e5ba-1dce-41c3-bee6-6e854049e485"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-08T14:46:46.8171282Z","updatedOn":"2023-01-08T14:46:46.8171282Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3073c0fc-4181-4de7-bb2d-ceb46bd805c2","type":"Microsoft.Authorization/roleAssignments","name":"3073c0fc-4181-4de7-bb2d-ceb46bd805c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-10T05:58:31.6725565Z","updatedOn":"2023-01-10T05:58:31.6725565Z","createdBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","updatedBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce4f420e-90ab-11ed-81da-002248575167","type":"Microsoft.Authorization/roleAssignments","name":"ce4f420e-90ab-11ed-81da-002248575167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-10T05:58:38.3068493Z","updatedOn":"2023-01-10T05:58:38.3068493Z","createdBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","updatedBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2369b82-90ab-11ed-81da-002248575167","type":"Microsoft.Authorization/roleAssignments","name":"d2369b82-90ab-11ed-81da-002248575167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-10T06:45:54.6704864Z","updatedOn":"2023-01-10T06:45:54.6704864Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6de0e553-90b2-11ed-9d42-6045bd78eeea","type":"Microsoft.Authorization/roleAssignments","name":"6de0e553-90b2-11ed-9d42-6045bd78eeea"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-11T22:44:31.5456256Z","updatedOn":"2023-01-11T22:44:31.5456256Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/55a9c9ca-e483-44ad-ab32-17ac0f1905e2","type":"Microsoft.Authorization/roleAssignments","name":"55a9c9ca-e483-44ad-ab32-17ac0f1905e2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-12T07:27:30.7499209Z","updatedOn":"2023-01-12T07:27:30.7499209Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c2fcdf3-9376-46c4-862c-c5478fad402d","type":"Microsoft.Authorization/roleAssignments","name":"6c2fcdf3-9376-46c4-862c-c5478fad402d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-12T20:29:47.8942736Z","updatedOn":"2023-01-12T20:29:47.8942736Z","createdBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","updatedBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dad76eb4-92b7-11ed-9e92-3e22fbc2ce2f","type":"Microsoft.Authorization/roleAssignments","name":"dad76eb4-92b7-11ed-9e92-3e22fbc2ce2f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-12T20:29:51.8091784Z","updatedOn":"2023-01-12T20:29:51.8091784Z","createdBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","updatedBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd198dce-92b7-11ed-9e92-3e22fbc2ce2f","type":"Microsoft.Authorization/roleAssignments","name":"dd198dce-92b7-11ed-9e92-3e22fbc2ce2f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-13T05:50:47.3154688Z","updatedOn":"2023-01-13T05:50:47.3154688Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/38d171ad-9306-11ed-a704-ee47e05c3b1e","type":"Microsoft.Authorization/roleAssignments","name":"38d171ad-9306-11ed-a704-ee47e05c3b1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-13T05:50:53.1628390Z","updatedOn":"2023-01-13T05:50:53.1628390Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3bf43d16-9306-11ed-a704-ee47e05c3b1e","type":"Microsoft.Authorization/roleAssignments","name":"3bf43d16-9306-11ed-a704-ee47e05c3b1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-14T06:07:18.3233862Z","updatedOn":"2023-01-14T06:07:18.3233862Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2587a66-93d1-11ed-a6e9-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"b2587a66-93d1-11ed-a6e9-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-14T06:07:23.4646871Z","updatedOn":"2023-01-14T06:07:23.4646871Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b56e4d80-93d1-11ed-a6e9-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"b56e4d80-93d1-11ed-a6e9-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-16T23:52:20.1337328Z","updatedOn":"2023-01-16T23:52:20.1337328Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/911d588d-e4a0-5501-bd42-db0fe4ac81ea","type":"Microsoft.Authorization/roleAssignments","name":"911d588d-e4a0-5501-bd42-db0fe4ac81ea"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-17T21:03:20.3495010Z","updatedOn":"2023-01-17T21:03:20.3495010Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":"partner + team engineer "},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b200ea13-6210-46cf-b622-5e1fa94d7196","type":"Microsoft.Authorization/roleAssignments","name":"b200ea13-6210-46cf-b622-5e1fa94d7196"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-17T21:55:10.9367237Z","updatedOn":"2023-01-17T21:55:10.9367237Z","createdBy":"252476b5-423c-4de6-8f23-f3b57897abfc","updatedBy":"252476b5-423c-4de6-8f23-f3b57897abfc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9c4d35c3-96b1-11ed-bcb1-aa442d61f9f5","type":"Microsoft.Authorization/roleAssignments","name":"9c4d35c3-96b1-11ed-bcb1-aa442d61f9f5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-18T16:39:36.8544109Z","updatedOn":"2023-01-18T16:39:36.8544109Z","createdBy":"57440c04-5eed-4c74-92b6-44b016b882f2","updatedBy":"57440c04-5eed-4c74-92b6-44b016b882f2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e47587fc-952b-11ed-9582-22998bd40e8c","type":"Microsoft.Authorization/roleAssignments","name":"e47587fc-952b-11ed-9582-22998bd40e8c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-19T06:11:42.7348591Z","updatedOn":"2023-01-19T06:11:42.7348591Z","createdBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","updatedBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dcee111d-97c0-11ed-8b08-5e144daaf885","type":"Microsoft.Authorization/roleAssignments","name":"dcee111d-97c0-11ed-8b08-5e144daaf885"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-19T06:11:46.7450508Z","updatedOn":"2023-01-19T06:11:46.7450508Z","createdBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","updatedBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df259f28-97c0-11ed-8b08-5e144daaf885","type":"Microsoft.Authorization/roleAssignments","name":"df259f28-97c0-11ed-8b08-5e144daaf885"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-20T21:01:23.9458046Z","updatedOn":"2023-05-12T17:27:12.7106298Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f654663-8564-546e-a6fc-452f7b76de5a","type":"Microsoft.Authorization/roleAssignments","name":"5f654663-8564-546e-a6fc-452f7b76de5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T17:09:42.5564083Z","updatedOn":"2023-01-23T17:09:42.5564083Z","createdBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","updatedBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9e2414b-9b40-11ed-96c6-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"b9e2414b-9b40-11ed-96c6-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T17:09:45.5610260Z","updatedOn":"2023-01-23T17:09:45.5610260Z","createdBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","updatedBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbc6263b-9b40-11ed-96c6-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"bbc6263b-9b40-11ed-96c6-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T18:43:59.1011432Z","updatedOn":"2023-01-23T18:43:59.1011432Z","createdBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","updatedBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e58487c6-9b4d-11ed-8c22-8c1645a48227","type":"Microsoft.Authorization/roleAssignments","name":"e58487c6-9b4d-11ed-8c22-8c1645a48227"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T18:44:02.5989503Z","updatedOn":"2023-01-23T18:44:02.5989503Z","createdBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","updatedBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7a002ef-9b4d-11ed-8c22-8c1645a48227","type":"Microsoft.Authorization/roleAssignments","name":"e7a002ef-9b4d-11ed-8c22-8c1645a48227"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-10T06:45:47.1925698Z","updatedOn":"2022-03-10T06:45:47.1925698Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4aaa7af-d414-42e9-bd99-b14d707753a7","type":"Microsoft.Authorization/roleAssignments","name":"e4aaa7af-d414-42e9-bd99-b14d707753a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-11T03:42:35.9073660Z","updatedOn":"2022-03-11T03:42:35.9073660Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a0f9eea-a0ed-11ec-9b90-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"4a0f9eea-a0ed-11ec-9b90-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-11T19:59:10.3149108Z","updatedOn":"2022-03-11T19:59:10.3149108Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b6e06a80-a175-11ec-8f66-002248778035","type":"Microsoft.Authorization/roleAssignments","name":"b6e06a80-a175-11ec-8f66-002248778035"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-14T05:57:31.9169431Z","updatedOn":"2022-03-14T05:57:31.9169431Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/04323e79-5b88-4b91-86e7-b8bfa1c2d8b9","type":"Microsoft.Authorization/roleAssignments","name":"04323e79-5b88-4b91-86e7-b8bfa1c2d8b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-14T23:57:21.8404827Z","updatedOn":"2022-03-14T23:57:21.8404827Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/824ca9a3-a3f2-11ec-b5c2-626147b15e2d","type":"Microsoft.Authorization/roleAssignments","name":"824ca9a3-a3f2-11ec-b5c2-626147b15e2d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-15T05:47:06.0764200Z","updatedOn":"2022-03-15T05:47:06.0764200Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d8c0655-15f2-4864-9ebf-6c5d95ea5797","type":"Microsoft.Authorization/roleAssignments","name":"3d8c0655-15f2-4864-9ebf-6c5d95ea5797"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-15T05:48:19.3617384Z","updatedOn":"2022-03-15T05:48:19.3617384Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5a1298d-008a-4dad-95db-70d41dc0ff2e","type":"Microsoft.Authorization/roleAssignments","name":"b5a1298d-008a-4dad-95db-70d41dc0ff2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-15T19:57:01.4651070Z","updatedOn":"2022-03-15T19:57:01.4651070Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f90898e-0a20-4778-b842-abc610614801","type":"Microsoft.Authorization/roleAssignments","name":"2f90898e-0a20-4778-b842-abc610614801"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-16T02:56:12.3673604Z","updatedOn":"2022-03-16T02:56:12.3673604Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be953738-c4c0-4da0-9b0f-42c89eb31451","type":"Microsoft.Authorization/roleAssignments","name":"be953738-c4c0-4da0-9b0f-42c89eb31451"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T10:12:31.1977135Z","updatedOn":"2022-03-21T10:12:31.1977135Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92ad8cda-f519-4160-b28d-6e0e8d19fb8e","type":"Microsoft.Authorization/roleAssignments","name":"92ad8cda-f519-4160-b28d-6e0e8d19fb8e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T17:57:33.7215077Z","updatedOn":"2022-03-21T17:57:33.7215077Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6210523c-a940-11ec-88f4-00224850c1b5","type":"Microsoft.Authorization/roleAssignments","name":"6210523c-a940-11ec-88f4-00224850c1b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T22:00:37.3135630Z","updatedOn":"2022-03-21T22:00:37.3135630Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5678b88f-a962-11ec-b646-0022487a9d6b","type":"Microsoft.Authorization/roleAssignments","name":"5678b88f-a962-11ec-b646-0022487a9d6b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T23:00:49.2441783Z","updatedOn":"2022-03-21T23:00:49.2441783Z","createdBy":"3a522b7c-61fd-4fcf-aa7f-3e8a6e7cc3af","updatedBy":"3a522b7c-61fd-4fcf-aa7f-3e8a6e7cc3af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bef73288-a96a-11ec-bd2b-6acf089951ab","type":"Microsoft.Authorization/roleAssignments","name":"bef73288-a96a-11ec-bd2b-6acf089951ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-22T04:03:04.2502656Z","updatedOn":"2022-03-22T04:03:04.2502656Z","createdBy":"9d0cc8e5-b005-4b2b-9a31-3b6c624d5330","updatedBy":"9d0cc8e5-b005-4b2b-9a31-3b6c624d5330","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8a4f8a7-a994-11ec-b30e-4a9f38c1a382","type":"Microsoft.Authorization/roleAssignments","name":"f8a4f8a7-a994-11ec-b30e-4a9f38c1a382"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-22T13:40:03.8073664Z","updatedOn":"2022-03-22T13:40:03.8073664Z","createdBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","updatedBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/93f47801-a9e5-11ec-86a5-3a3e6c7e1ac8","type":"Microsoft.Authorization/roleAssignments","name":"93f47801-a9e5-11ec-86a5-3a3e6c7e1ac8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-23T10:14:54.3796697Z","updatedOn":"2022-03-23T10:14:54.3796697Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e3f182b-aa92-11ec-9c92-18c04da96df8","type":"Microsoft.Authorization/roleAssignments","name":"0e3f182b-aa92-11ec-9c92-18c04da96df8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-23T23:47:01.7045602Z","updatedOn":"2022-03-23T23:47:01.7045602Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5312596-61f6-486a-ad10-fdb35f1c1665","type":"Microsoft.Authorization/roleAssignments","name":"d5312596-61f6-486a-ad10-fdb35f1c1665"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-25T05:07:14.4623821Z","updatedOn":"2022-03-25T05:07:14.4623821Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df7fe6e9-3cf1-4547-ba81-c1ad0d7d565d","type":"Microsoft.Authorization/roleAssignments","name":"df7fe6e9-3cf1-4547-ba81-c1ad0d7d565d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-29T14:13:44.9635087Z","updatedOn":"2022-03-29T14:13:44.9635087Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/530db943-4ece-46bc-b456-79374d5ec2ba","type":"Microsoft.Authorization/roleAssignments","name":"530db943-4ece-46bc-b456-79374d5ec2ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-30T16:18:52.9056346Z","updatedOn":"2022-03-30T16:18:52.9056346Z","createdBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","updatedBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3e0d853-568c-4e64-851d-2292fe92a007","type":"Microsoft.Authorization/roleAssignments","name":"d3e0d853-568c-4e64-851d-2292fe92a007"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-05T04:54:30.2719737Z","updatedOn":"2022-04-05T04:54:30.2719737Z","createdBy":"f0b00319-13f5-4c2b-928a-73ccb5edd222","updatedBy":"f0b00319-13f5-4c2b-928a-73ccb5edd222","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78ffc9e7-b49c-11ec-964c-b219be9347e3","type":"Microsoft.Authorization/roleAssignments","name":"78ffc9e7-b49c-11ec-964c-b219be9347e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-05T22:40:43.0016940Z","updatedOn":"2022-04-05T22:40:43.0016940Z","createdBy":"639a731d-01eb-47bc-88aa-c1e2ba14db02","updatedBy":"639a731d-01eb-47bc-88aa-c1e2ba14db02","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c9e0e6c-b531-11ec-aea8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6c9e0e6c-b531-11ec-aea8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-06T12:49:05.2173956Z","updatedOn":"2022-04-06T12:49:05.2173956Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f0a7f4e5-b5a7-11ec-bae5-000d3a6f3c6e","type":"Microsoft.Authorization/roleAssignments","name":"f0a7f4e5-b5a7-11ec-bae5-000d3a6f3c6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-07T01:16:34.9503446Z","updatedOn":"2022-04-07T01:16:34.9503446Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5bdb51f8-5551-44f9-9819-a52fa97c2fef","type":"Microsoft.Authorization/roleAssignments","name":"5bdb51f8-5551-44f9-9819-a52fa97c2fef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-11T05:16:56.1225175Z","updatedOn":"2022-04-11T05:16:56.1225175Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99904768-b956-11ec-a61a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"99904768-b956-11ec-a61a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T23:22:51.6419715Z","updatedOn":"2022-04-12T23:22:51.6419715Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/788b9be6-bab7-11ec-b096-0022487898d6","type":"Microsoft.Authorization/roleAssignments","name":"788b9be6-bab7-11ec-b096-0022487898d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T07:42:38.9160126Z","updatedOn":"2022-04-13T07:42:38.9160126Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a58e304-bafd-11ec-8461-a2dde8388af9","type":"Microsoft.Authorization/roleAssignments","name":"4a58e304-bafd-11ec-8461-a2dde8388af9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T16:12:39.4214747Z","updatedOn":"2022-04-13T16:12:39.4214747Z","createdBy":"c302f71c-7b89-4d55-8c87-135833038531","updatedBy":"c302f71c-7b89-4d55-8c87-135833038531","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3bd4838c-4c24-4bb6-b31f-d055dc68694f","type":"Microsoft.Authorization/roleAssignments","name":"3bd4838c-4c24-4bb6-b31f-d055dc68694f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T09:53:20.2997466Z","updatedOn":"2022-04-14T09:53:20.2997466Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b44f0aaa-bbd8-11ec-8da6-0a4cab55437d","type":"Microsoft.Authorization/roleAssignments","name":"b44f0aaa-bbd8-11ec-8da6-0a4cab55437d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T16:49:01.5455829Z","updatedOn":"2022-04-14T16:49:01.5455829Z","createdBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","updatedBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","delegatedManagedIdentityResourceId":null,"description":"Allows + github actions to run e2e tests. Only the main branch is permitted access, + and credentials are not shared with forks."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4e9d34c-9113-45d4-a0f0-175593c38c33","type":"Microsoft.Authorization/roleAssignments","name":"f4e9d34c-9113-45d4-a0f0-175593c38c33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-20T06:23:32.6340955Z","updatedOn":"2022-04-20T06:23:32.6340955Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6675beb7-c072-11ec-b9ab-000d3ac3f60e","type":"Microsoft.Authorization/roleAssignments","name":"6675beb7-c072-11ec-b9ab-000d3ac3f60e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-20T18:02:47.6341581Z","updatedOn":"2022-04-20T18:02:47.6341581Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/56617dbb-76a1-401d-96fe-8a22f58284d8","type":"Microsoft.Authorization/roleAssignments","name":"56617dbb-76a1-401d-96fe-8a22f58284d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T08:17:07.1604388Z","updatedOn":"2022-04-21T08:17:07.1604388Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6e60c2be-c14b-11ec-82b0-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6e60c2be-c14b-11ec-82b0-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T21:36:13.8709604Z","updatedOn":"2022-04-21T21:36:13.8709604Z","createdBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","updatedBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/10b94b6e-c1bb-11ec-9ff7-523c2f7f99a3","type":"Microsoft.Authorization/roleAssignments","name":"10b94b6e-c1bb-11ec-9ff7-523c2f7f99a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-22T18:55:55.5256074Z","updatedOn":"2022-04-22T18:55:55.5256074Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6917978-c26d-11ec-a699-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"d6917978-c26d-11ec-a699-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-24T10:36:03.4988906Z","updatedOn":"2022-04-24T10:36:03.4988906Z","createdBy":"d3cd2b55-3b25-4b68-b6fd-a08967de9266","updatedBy":"d3cd2b55-3b25-4b68-b6fd-a08967de9266","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/558d3e63-c3ba-11ec-b4f9-000d3ac7d8f0","type":"Microsoft.Authorization/roleAssignments","name":"558d3e63-c3ba-11ec-b4f9-000d3ac7d8f0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-25T06:33:58.7782201Z","updatedOn":"2022-04-25T06:33:58.7782201Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ae507161-c461-11ec-b99d-4a4f5b60a172","type":"Microsoft.Authorization/roleAssignments","name":"ae507161-c461-11ec-b99d-4a4f5b60a172"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-26T16:28:17.7010346Z","updatedOn":"2022-04-26T16:28:17.7010346Z","createdBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","updatedBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e04b1510-c57d-11ec-a3c9-0641de48d9d3","type":"Microsoft.Authorization/roleAssignments","name":"e04b1510-c57d-11ec-a3c9-0641de48d9d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-26T21:31:37.1620998Z","updatedOn":"2022-04-26T21:31:37.1620998Z","createdBy":"9bf576b7-c3cf-492b-9bcf-8c8832e2e0a5","updatedBy":"9bf576b7-c3cf-492b-9bcf-8c8832e2e0a5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/409a9eb9-c5a8-11ec-b358-d20abc546c29","type":"Microsoft.Authorization/roleAssignments","name":"409a9eb9-c5a8-11ec-b358-d20abc546c29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-28T07:13:54.9152651Z","updatedOn":"2022-04-28T07:13:54.9152651Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5f3166a-ed3f-43a7-9b34-bb910beaee12","type":"Microsoft.Authorization/roleAssignments","name":"f5f3166a-ed3f-43a7-9b34-bb910beaee12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T12:14:12.5786055Z","updatedOn":"2022-05-02T12:14:12.5786055Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f06c939-ca11-11ec-9966-da65ad1ab332","type":"Microsoft.Authorization/roleAssignments","name":"5f06c939-ca11-11ec-9966-da65ad1ab332"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:17.4008338Z","updatedOn":"2022-05-02T13:40:17.4008338Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/846f4e2d-0ec9-48ef-fd6e-6ac1cb7586e6","type":"Microsoft.Authorization/roleAssignments","name":"846f4e2d-0ec9-48ef-fd6e-6ac1cb7586e6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.8453423Z","updatedOn":"2022-05-02T13:40:18.8453423Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e72a2b8a-2c36-4ac1-aec3-4fa68f3cae16","type":"Microsoft.Authorization/roleAssignments","name":"e72a2b8a-2c36-4ac1-aec3-4fa68f3cae16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.0609853Z","updatedOn":"2022-05-02T13:40:18.0609853Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/72e6bf18-35fb-436e-3e05-9ba0a0747299","type":"Microsoft.Authorization/roleAssignments","name":"72e6bf18-35fb-436e-3e05-9ba0a0747299"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.1173679Z","updatedOn":"2022-05-02T13:40:18.1173679Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/724e274f-6e37-445c-608e-199fb9eaa982","type":"Microsoft.Authorization/roleAssignments","name":"724e274f-6e37-445c-608e-199fb9eaa982"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T16:59:33.5195217Z","updatedOn":"2022-05-02T16:59:33.5195217Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/98620dcd-bcc5-4828-b846-369c64574ee1","type":"Microsoft.Authorization/roleAssignments","name":"98620dcd-bcc5-4828-b846-369c64574ee1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T06:36:46.9583100Z","updatedOn":"2022-05-09T06:36:46.9583100Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5a313ab-6903-471c-a6bf-8d84989e8cb4","type":"Microsoft.Authorization/roleAssignments","name":"d5a313ab-6903-471c-a6bf-8d84989e8cb4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T22:20:41.5499828Z","updatedOn":"2022-05-09T22:20:41.5499828Z","createdBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","updatedBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/425f8b8d-cfe6-11ec-bbe5-00155ddd560d","type":"Microsoft.Authorization/roleAssignments","name":"425f8b8d-cfe6-11ec-bbe5-00155ddd560d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-10T06:15:39.4482664Z","updatedOn":"2022-05-10T06:15:39.4482664Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a2ff126-fb32-4ca9-8c4d-c8b22209cbc1","type":"Microsoft.Authorization/roleAssignments","name":"8a2ff126-fb32-4ca9-8c4d-c8b22209cbc1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-11T23:10:09.0651064Z","updatedOn":"2022-05-11T23:10:09.0651064Z","createdBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","updatedBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/804a630f-d17f-11ec-bb71-6045bdab52dc","type":"Microsoft.Authorization/roleAssignments","name":"804a630f-d17f-11ec-bb71-6045bdab52dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-12T13:47:03.3832395Z","updatedOn":"2022-05-12T13:47:03.3832395Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00bc6898-d1fa-11ec-974a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"00bc6898-d1fa-11ec-974a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-13T20:36:59.6109396Z","updatedOn":"2022-05-13T20:36:59.6109396Z","createdBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","updatedBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ea3a01d-d2fc-11ec-9997-be6e344e58c1","type":"Microsoft.Authorization/roleAssignments","name":"6ea3a01d-d2fc-11ec-9997-be6e344e58c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-17T06:49:11.7087809Z","updatedOn":"2022-05-17T06:49:11.7087809Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07f76b15-d899-4d21-8542-29c2479e05e1","type":"Microsoft.Authorization/roleAssignments","name":"07f76b15-d899-4d21-8542-29c2479e05e1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-18T13:22:09.5941967Z","updatedOn":"2022-05-18T13:22:09.5941967Z","createdBy":"52d64fbe-1728-4b2b-a0c4-849705cb9c96","updatedBy":"52d64fbe-1728-4b2b-a0c4-849705cb9c96","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/847201fc-d6ad-11ec-a176-000d3a083c47","type":"Microsoft.Authorization/roleAssignments","name":"847201fc-d6ad-11ec-a176-000d3a083c47"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-20T22:35:09.9396236Z","updatedOn":"2022-05-20T22:35:09.9396236Z","createdBy":"1ec25b73-94d5-4bf9-a56f-ca7d9bd4164c","updatedBy":"1ec25b73-94d5-4bf9-a56f-ca7d9bd4164c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5d512f6-fb53-4fad-b3be-ec154c7a6085","type":"Microsoft.Authorization/roleAssignments","name":"c5d512f6-fb53-4fad-b3be-ec154c7a6085"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-22T23:45:36.9119159Z","updatedOn":"2022-05-22T23:45:36.9119159Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46fd33ed-da29-11ec-919f-6045bd7a16bc","type":"Microsoft.Authorization/roleAssignments","name":"46fd33ed-da29-11ec-919f-6045bd7a16bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-23T03:50:38.5802008Z","updatedOn":"2022-05-23T03:50:38.5802008Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ab46785f-2521-4172-871f-91e7dc500a5b","type":"Microsoft.Authorization/roleAssignments","name":"ab46785f-2521-4172-871f-91e7dc500a5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-23T18:09:05.5672217Z","updatedOn":"2022-05-23T18:09:05.5672217Z","createdBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","updatedBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3f47f83-e599-4106-974f-5ff73955ffa6","type":"Microsoft.Authorization/roleAssignments","name":"e3f47f83-e599-4106-974f-5ff73955ffa6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-24T20:49:20.4480948Z","updatedOn":"2022-05-24T20:49:20.4480948Z","createdBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","updatedBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbf490ce-dba2-11ec-b0af-6045bdab52dc","type":"Microsoft.Authorization/roleAssignments","name":"fbf490ce-dba2-11ec-b0af-6045bdab52dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-25T18:39:32.8389167Z","updatedOn":"2022-05-25T18:39:32.8389167Z","createdBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","updatedBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/048a3cf1-dc5a-11ec-8804-6045bdab52dc","type":"Microsoft.Authorization/roleAssignments","name":"048a3cf1-dc5a-11ec-8804-6045bdab52dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T01:53:46.3648590Z","updatedOn":"2022-05-26T01:53:46.3648590Z","createdBy":"834b5e76-453d-44f5-80ff-3481c8415d66","updatedBy":"834b5e76-453d-44f5-80ff-3481c8415d66","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac5ab95a-dc96-11ec-92bb-065f8efd402d","type":"Microsoft.Authorization/roleAssignments","name":"ac5ab95a-dc96-11ec-92bb-065f8efd402d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T06:40:41.8769416Z","updatedOn":"2022-05-26T06:40:41.8769416Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2812727c-1e58-49f0-84a6-13e2b8b7cce7","type":"Microsoft.Authorization/roleAssignments","name":"2812727c-1e58-49f0-84a6-13e2b8b7cce7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T16:39:02.6438636Z","updatedOn":"2022-05-26T16:39:02.6438636Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5bb051d1-dd12-11ec-8dd4-9e3ebf2d444f","type":"Microsoft.Authorization/roleAssignments","name":"5bb051d1-dd12-11ec-8dd4-9e3ebf2d444f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-28T07:02:36.1409282Z","updatedOn":"2022-05-28T07:02:36.1409282Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dbf46cb0-1221-443e-bab0-9cd11b7afece","type":"Microsoft.Authorization/roleAssignments","name":"dbf46cb0-1221-443e-bab0-9cd11b7afece"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-31T03:23:22.9404784Z","updatedOn":"2022-05-31T03:23:22.9404784Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/047700b3-e091-11ec-b7b9-f6caf9b02627","type":"Microsoft.Authorization/roleAssignments","name":"047700b3-e091-11ec-b7b9-f6caf9b02627"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-31T03:25:49.5470268Z","updatedOn":"2022-05-31T03:25:49.5470268Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b03550bc-b4aa-4aab-8bd7-0d27b86c9380","type":"Microsoft.Authorization/roleAssignments","name":"b03550bc-b4aa-4aab-8bd7-0d27b86c9380"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-01T14:15:14.5143992Z","updatedOn":"2022-06-01T14:15:14.5143992Z","createdBy":"572b7854-a995-402b-8482-46e12d3c9665","updatedBy":"572b7854-a995-402b-8482-46e12d3c9665","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41183c3a-e1b5-11ec-bad7-3c7c3f1d0035","type":"Microsoft.Authorization/roleAssignments","name":"41183c3a-e1b5-11ec-bad7-3c7c3f1d0035"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-01T15:59:31.6776783Z","updatedOn":"2022-06-01T15:59:31.6776783Z","createdBy":"203de16f-a918-45b1-bde4-6cc574d16944","updatedBy":"203de16f-a918-45b1-bde4-6cc574d16944","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e0dd4b8a-e1c3-11ec-949c-7a1cf6c5b419","type":"Microsoft.Authorization/roleAssignments","name":"e0dd4b8a-e1c3-11ec-949c-7a1cf6c5b419"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-01T18:14:50.2776576Z","updatedOn":"2022-06-01T18:14:50.2776576Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61f89f02-3565-409f-8e72-fc4e58b40178","type":"Microsoft.Authorization/roleAssignments","name":"61f89f02-3565-409f-8e72-fc4e58b40178"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-02T10:22:35.3875246Z","updatedOn":"2022-06-02T10:22:35.3875246Z","createdBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","updatedBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eabe3f5d-e25d-11ec-9d25-002248575167","type":"Microsoft.Authorization/roleAssignments","name":"eabe3f5d-e25d-11ec-9d25-002248575167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-02T19:10:50.1608669Z","updatedOn":"2022-06-02T19:10:50.1608669Z","createdBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","updatedBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d33bf47-7a98-4cca-84be-a622a8a520ae","type":"Microsoft.Authorization/roleAssignments","name":"2d33bf47-7a98-4cca-84be-a622a8a520ae"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-03T17:52:39.6424601Z","updatedOn":"2022-06-03T17:52:39.6424601Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/808a6fa6-1aa8-401a-b12d-3dbf49678aa5","type":"Microsoft.Authorization/roleAssignments","name":"808a6fa6-1aa8-401a-b12d-3dbf49678aa5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-03T18:32:43.3145647Z","updatedOn":"2022-06-03T18:32:43.3145647Z","createdBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","updatedBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ce8e3fe-e36b-11ec-93c2-0ebbe08470ef","type":"Microsoft.Authorization/roleAssignments","name":"8ce8e3fe-e36b-11ec-93c2-0ebbe08470ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-03T20:51:18.9925616Z","updatedOn":"2022-06-03T20:51:18.9925616Z","createdBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","updatedBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea9b98ba-e37e-11ec-b495-0ebbe08470ef","type":"Microsoft.Authorization/roleAssignments","name":"ea9b98ba-e37e-11ec-b495-0ebbe08470ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-06T19:39:15.5380737Z","updatedOn":"2022-06-06T19:39:15.5380737Z","createdBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","updatedBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57d73d6c-e5d0-11ec-a3ee-c220c0843243","type":"Microsoft.Authorization/roleAssignments","name":"57d73d6c-e5d0-11ec-a3ee-c220c0843243"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-07T02:58:19.0816460Z","updatedOn":"2022-06-07T02:58:19.0816460Z","createdBy":"0bf53c4f-0173-466d-967d-debbe9e551d6","updatedBy":"0bf53c4f-0173-466d-967d-debbe9e551d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/adea0756-e60d-11ec-bd0e-66dbb5eba95d","type":"Microsoft.Authorization/roleAssignments","name":"adea0756-e60d-11ec-bd0e-66dbb5eba95d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-07T18:27:18.2907455Z","updatedOn":"2022-06-07T18:27:18.2907455Z","createdBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","updatedBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/75dc9d88-e68f-11ec-bbbc-aa665a03731d","type":"Microsoft.Authorization/roleAssignments","name":"75dc9d88-e68f-11ec-bbbc-aa665a03731d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-08T18:25:22.6640205Z","updatedOn":"2022-06-08T18:25:22.6640205Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/17b651ab-ff7f-4cf2-833a-27f695725732","type":"Microsoft.Authorization/roleAssignments","name":"17b651ab-ff7f-4cf2-833a-27f695725732"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-08T19:34:11.0218858Z","updatedOn":"2022-06-08T19:34:11.0218858Z","createdBy":"1b51b78e-fd1f-484f-98b6-3423d189977b","updatedBy":"1b51b78e-fd1f-484f-98b6-3423d189977b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5e9c3a1d-3f79-4e4b-9b9d-fbe1f3d09ec5","type":"Microsoft.Authorization/roleAssignments","name":"5e9c3a1d-3f79-4e4b-9b9d-fbe1f3d09ec5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-08T19:46:00.8296947Z","updatedOn":"2022-06-08T19:46:00.8296947Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f2fd786-e763-11ec-b282-000d3af64fa4","type":"Microsoft.Authorization/roleAssignments","name":"9f2fd786-e763-11ec-b282-000d3af64fa4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-09T01:49:44.1244830Z","updatedOn":"2022-06-09T01:49:44.1244830Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14a2ebaa-ca44-4eb7-851c-01d577cb625e","type":"Microsoft.Authorization/roleAssignments","name":"14a2ebaa-ca44-4eb7-851c-01d577cb625e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-09T23:29:31.3797237Z","updatedOn":"2022-06-09T23:29:31.3797237Z","createdBy":"b34e062a-5a73-4cec-af00-1ecb446deb92","updatedBy":"b34e062a-5a73-4cec-af00-1ecb446deb92","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/02f3fb8e-e84c-11ec-bd1c-6045bd7e546a","type":"Microsoft.Authorization/roleAssignments","name":"02f3fb8e-e84c-11ec-bd1c-6045bd7e546a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T15:06:09.3851225Z","updatedOn":"2022-06-10T15:06:09.3851225Z","createdBy":"fb4b724d-4b7e-4756-aa0b-d91dc0c5acc9","updatedBy":"fb4b724d-4b7e-4756-aa0b-d91dc0c5acc9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/db7a073e-e8ce-11ec-8b1d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"db7a073e-e8ce-11ec-8b1d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T18:05:28.7449646Z","updatedOn":"2022-06-10T18:05:28.7449646Z","createdBy":"0e06046f-cf0d-4924-86b0-bbcf36a1936f","updatedBy":"0e06046f-cf0d-4924-86b0-bbcf36a1936f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7824ddb-e8e7-11ec-b465-421b394b7a96","type":"Microsoft.Authorization/roleAssignments","name":"e7824ddb-e8e7-11ec-b465-421b394b7a96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T18:05:29.8303312Z","updatedOn":"2022-06-10T18:05:29.8303312Z","createdBy":"1295ee3f-edbd-4185-9628-13318404c52a","updatedBy":"1295ee3f-edbd-4185-9628-13318404c52a","delegatedManagedIdentityResourceId":null,"description":"New + AKS member"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/609b8d2a-2b4f-4767-aa5e-c5c7f11b687b","type":"Microsoft.Authorization/roleAssignments","name":"609b8d2a-2b4f-4767-aa5e-c5c7f11b687b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T21:18:18.0994828Z","updatedOn":"2022-06-10T21:18:18.0994828Z","createdBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","updatedBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d80f2247-e902-11ec-96de-2edd4b852bcf","type":"Microsoft.Authorization/roleAssignments","name":"d80f2247-e902-11ec-96de-2edd4b852bcf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:19.7988558Z","updatedOn":"2022-06-13T09:20:19.7988558Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/053ff776-f32a-4298-cbeb-0da661875d88","type":"Microsoft.Authorization/roleAssignments","name":"053ff776-f32a-4298-cbeb-0da661875d88"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:19.8466660Z","updatedOn":"2022-06-13T09:20:19.8466660Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b4bd6e6-869b-4da3-a50f-b7eb8b183de5","type":"Microsoft.Authorization/roleAssignments","name":"4b4bd6e6-869b-4da3-a50f-b7eb8b183de5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:20.2195738Z","updatedOn":"2022-06-13T09:20:20.2195738Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/21db9db3-7adc-40f3-5885-af265b9ddad2","type":"Microsoft.Authorization/roleAssignments","name":"21db9db3-7adc-40f3-5885-af265b9ddad2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:19.9439478Z","updatedOn":"2022-06-13T09:20:19.9439478Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2418e820-601e-49da-a20d-4fa1ee6cc4cf","type":"Microsoft.Authorization/roleAssignments","name":"2418e820-601e-49da-a20d-4fa1ee6cc4cf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T17:55:18.4118508Z","updatedOn":"2022-06-13T17:55:18.4118508Z","createdBy":"1295ee3f-edbd-4185-9628-13318404c52a","updatedBy":"1295ee3f-edbd-4185-9628-13318404c52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbcfa2a4-eb41-11ec-b38e-467d14df3056","type":"Microsoft.Authorization/roleAssignments","name":"fbcfa2a4-eb41-11ec-b38e-467d14df3056"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-14T09:33:38.7306445Z","updatedOn":"2022-06-14T09:33:38.7306445Z","createdBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","updatedBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/10ffce40-ebc5-11ec-aebe-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"10ffce40-ebc5-11ec-aebe-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-14T23:20:32.7229029Z","updatedOn":"2022-06-14T23:20:32.7229029Z","createdBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","updatedBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/954903db-ec38-11ec-acd7-72f791cfbed2","type":"Microsoft.Authorization/roleAssignments","name":"954903db-ec38-11ec-acd7-72f791cfbed2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T06:30:47.7914595Z","updatedOn":"2022-06-16T06:30:47.7914595Z","createdBy":"504c34f4-8389-4920-aec9-0c595b508740","updatedBy":"504c34f4-8389-4920-aec9-0c595b508740","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb760c25-af25-412f-a643-93e98c629270","type":"Microsoft.Authorization/roleAssignments","name":"bb760c25-af25-412f-a643-93e98c629270"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T20:16:07.8463557Z","updatedOn":"2022-06-16T20:16:07.8463557Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4555d91-07f5-46d6-b29f-50b0d211c4ae","type":"Microsoft.Authorization/roleAssignments","name":"f4555d91-07f5-46d6-b29f-50b0d211c4ae"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T21:30:16.4420742Z","updatedOn":"2022-06-16T21:30:16.4420742Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":"to + programatically create new resource group, aks cluster, and container registry"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2c2fc915-d722-4dde-b730-7c73c8a87fdc","type":"Microsoft.Authorization/roleAssignments","name":"2c2fc915-d722-4dde-b730-7c73c8a87fdc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T22:19:51.5734675Z","updatedOn":"2022-06-16T22:19:51.5734675Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cca9c113-570a-4969-aa72-45c31091684a","type":"Microsoft.Authorization/roleAssignments","name":"cca9c113-570a-4969-aa72-45c31091684a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-17T02:19:37.1755269Z","updatedOn":"2022-06-17T02:19:37.1755269Z","createdBy":"30db9446-b4f8-4485-8c98-10e17387409d","updatedBy":"30db9446-b4f8-4485-8c98-10e17387409d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eee6dfc9-ede3-11ec-9f6d-902e1612d5d0","type":"Microsoft.Authorization/roleAssignments","name":"eee6dfc9-ede3-11ec-9f6d-902e1612d5d0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-20T22:03:11.1423439Z","updatedOn":"2022-06-20T22:03:11.1423439Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5c2bd4a-f0e4-11ec-bbc1-000d3ac67a2f","type":"Microsoft.Authorization/roleAssignments","name":"c5c2bd4a-f0e4-11ec-bbc1-000d3ac67a2f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-21T16:26:57.9805326Z","updatedOn":"2022-06-21T16:26:57.9805326Z","createdBy":"4d730cf1-e190-49af-af02-ea52983c017e","updatedBy":"4d730cf1-e190-49af-af02-ea52983c017e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f814031e-f17e-11ec-bdc4-72d39f810808","type":"Microsoft.Authorization/roleAssignments","name":"f814031e-f17e-11ec-bdc4-72d39f810808"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-22T23:05:28.0851041Z","updatedOn":"2022-06-22T23:05:28.0851041Z","createdBy":"395c8203-ec60-4c13-9730-5f960088f92b","updatedBy":"395c8203-ec60-4c13-9730-5f960088f92b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e672e20f-477a-4475-a5cf-2f7d8401bbc3","type":"Microsoft.Authorization/roleAssignments","name":"e672e20f-477a-4475-a5cf-2f7d8401bbc3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-23T19:51:00.2507743Z","updatedOn":"2022-06-23T19:51:00.2507743Z","createdBy":"8b564e25-6f45-4437-bf8b-9ac6596a5f15","updatedBy":"8b564e25-6f45-4437-bf8b-9ac6596a5f15","delegatedManagedIdentityResourceId":null,"description":"Adding + permissions to SP for running E2E tests. Currently getting error \"The client + ''0cea35e6-9763-4ef3-b2d2-8c241ab58828'' with object id ''0cea35e6-9763-4ef3-b2d2-8c241ab58828'' + does not have authorization to perform action ''Microsoft.Resources/subscriptions/resourcegroups/write'' + over scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/e2erg-indusridebld56865086-VzY'' + or the scope is invalid. If access was recently granted, please refresh your + credentials.\""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5cfb2437-e152-48d8-bb2a-54c89f27707a","type":"Microsoft.Authorization/roleAssignments","name":"5cfb2437-e152-48d8-bb2a-54c89f27707a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-23T21:01:02.9667346Z","updatedOn":"2022-06-23T21:01:02.9667346Z","createdBy":"34d4f830-f9ea-4525-9ca2-b784e3874713","updatedBy":"34d4f830-f9ea-4525-9ca2-b784e3874713","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9527af65-f337-11ec-a743-daea1d98cac0","type":"Microsoft.Authorization/roleAssignments","name":"9527af65-f337-11ec-a743-daea1d98cac0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-24T17:09:56.9678432Z","updatedOn":"2022-06-24T17:09:56.9678432Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba5c2d82-3e34-4b2b-9c5f-27d9d33955ff","type":"Microsoft.Authorization/roleAssignments","name":"ba5c2d82-3e34-4b2b-9c5f-27d9d33955ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-24T17:36:02.0450264Z","updatedOn":"2022-06-24T17:36:02.0450264Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/16b4850b-3e9c-435e-b3f6-b83e02b9146e","type":"Microsoft.Authorization/roleAssignments","name":"16b4850b-3e9c-435e-b3f6-b83e02b9146e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-27T17:58:47.2112371Z","updatedOn":"2022-06-27T17:58:47.2112371Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca6de50e-f642-11ec-83b8-002248773529","type":"Microsoft.Authorization/roleAssignments","name":"ca6de50e-f642-11ec-83b8-002248773529"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-27T21:10:04.9812035Z","updatedOn":"2022-06-27T21:10:04.9812035Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ad97eed-2e77-485f-a2ec-132f3647aef7","type":"Microsoft.Authorization/roleAssignments","name":"8ad97eed-2e77-485f-a2ec-132f3647aef7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T15:43:32.3787489Z","updatedOn":"2022-06-28T15:43:32.3787489Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a1acaea-f6f9-11ec-9ddd-6e578000e34a","type":"Microsoft.Authorization/roleAssignments","name":"0a1acaea-f6f9-11ec-9ddd-6e578000e34a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-29T05:30:23.4400722Z","updatedOn":"2022-06-29T05:30:23.4400722Z","createdBy":"65cfb39a-5f29-4247-8230-9ec6695c5878","updatedBy":"65cfb39a-5f29-4247-8230-9ec6695c5878","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/546c078e-3855-479c-b7aa-b38d4e68bb9f","type":"Microsoft.Authorization/roleAssignments","name":"546c078e-3855-479c-b7aa-b38d4e68bb9f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-29T17:04:07.7235161Z","updatedOn":"2022-06-29T17:04:07.7235161Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/48cbe38c-7d32-4174-8026-7a16994dcdc8","type":"Microsoft.Authorization/roleAssignments","name":"48cbe38c-7d32-4174-8026-7a16994dcdc8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-30T09:06:03.1760556Z","updatedOn":"2022-06-30T09:06:03.1760556Z","createdBy":"42a33e33-55bb-4995-80a2-d1b745371591","updatedBy":"42a33e33-55bb-4995-80a2-d1b745371591","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd7da313-f853-11ec-9993-000d3ac42d43","type":"Microsoft.Authorization/roleAssignments","name":"dd7da313-f853-11ec-9993-000d3ac42d43"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-30T09:06:06.3942443Z","updatedOn":"2022-06-30T09:06:06.3942443Z","createdBy":"42a33e33-55bb-4995-80a2-d1b745371591","updatedBy":"42a33e33-55bb-4995-80a2-d1b745371591","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df6c9d2d-f853-11ec-9993-000d3ac42d43","type":"Microsoft.Authorization/roleAssignments","name":"df6c9d2d-f853-11ec-9993-000d3ac42d43"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-04T08:11:46.0687018Z","updatedOn":"2022-07-04T08:11:46.0687018Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40b64297-b408-4d22-bf82-9b6897914b91","type":"Microsoft.Authorization/roleAssignments","name":"40b64297-b408-4d22-bf82-9b6897914b91"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T17:33:53.2930064Z","updatedOn":"2022-07-05T17:33:53.2930064Z","createdBy":"8e17b6a3-5430-4318-a670-b9df4d106675","updatedBy":"8e17b6a3-5430-4318-a670-b9df4d106675","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a23e2991-fc88-11ec-b99d-fe2d37eeee3f","type":"Microsoft.Authorization/roleAssignments","name":"a23e2991-fc88-11ec-b99d-fe2d37eeee3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T17:33:56.8130933Z","updatedOn":"2022-07-05T17:33:56.8130933Z","createdBy":"8e17b6a3-5430-4318-a670-b9df4d106675","updatedBy":"8e17b6a3-5430-4318-a670-b9df4d106675","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a45a4b60-fc88-11ec-b99d-fe2d37eeee3f","type":"Microsoft.Authorization/roleAssignments","name":"a45a4b60-fc88-11ec-b99d-fe2d37eeee3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T20:50:59.7297844Z","updatedOn":"2022-07-05T20:50:59.7297844Z","createdBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","updatedBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2bf6d528-fca4-11ec-ae95-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2bf6d528-fca4-11ec-ae95-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T20:51:03.8324709Z","updatedOn":"2022-07-05T20:51:03.8324709Z","createdBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","updatedBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2eb27754-fca4-11ec-ae95-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2eb27754-fca4-11ec-ae95-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-06T18:17:04.1589374Z","updatedOn":"2022-07-06T18:17:04.1589374Z","createdBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","updatedBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d66150ce-778b-48b7-9eec-4af15a62d5fb","type":"Microsoft.Authorization/roleAssignments","name":"d66150ce-778b-48b7-9eec-4af15a62d5fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T04:14:56.8781019Z","updatedOn":"2022-07-07T04:14:56.8781019Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d244381e-1809-4aab-b4bf-f6c45efad8a0","type":"Microsoft.Authorization/roleAssignments","name":"d244381e-1809-4aab-b4bf-f6c45efad8a0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T08:02:02.2250086Z","updatedOn":"2022-07-07T08:02:02.2250086Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/209367bb-572e-4543-8ffa-261ab9e3e98e","type":"Microsoft.Authorization/roleAssignments","name":"209367bb-572e-4543-8ffa-261ab9e3e98e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T09:51:45.7545095Z","updatedOn":"2022-07-07T09:51:45.7545095Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9b5f542-ed8b-4591-902d-70f85896c4a9","type":"Microsoft.Authorization/roleAssignments","name":"a9b5f542-ed8b-4591-902d-70f85896c4a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T10:20:52.8789655Z","updatedOn":"2022-07-07T10:20:52.8789655Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67fb0754-2c67-405f-b195-0fc9fb022fc7","type":"Microsoft.Authorization/roleAssignments","name":"67fb0754-2c67-405f-b195-0fc9fb022fc7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T23:54:13.9262172Z","updatedOn":"2022-07-07T23:54:13.9262172Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a13e2124-87c9-402c-9611-fbb6a1b4e4b8","type":"Microsoft.Authorization/roleAssignments","name":"a13e2124-87c9-402c-9611-fbb6a1b4e4b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T02:43:53.0148931Z","updatedOn":"2022-07-08T02:43:53.0148931Z","createdBy":"34e81c0e-d5e6-478f-8544-2686be295567","updatedBy":"34e81c0e-d5e6-478f-8544-2686be295567","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc3fbff8-fe67-11ec-ac64-f69a873c5ca0","type":"Microsoft.Authorization/roleAssignments","name":"cc3fbff8-fe67-11ec-ac64-f69a873c5ca0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T02:43:59.1573960Z","updatedOn":"2022-07-08T02:43:59.1573960Z","createdBy":"34e81c0e-d5e6-478f-8544-2686be295567","updatedBy":"34e81c0e-d5e6-478f-8544-2686be295567","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cfe77b1e-fe67-11ec-ac64-f69a873c5ca0","type":"Microsoft.Authorization/roleAssignments","name":"cfe77b1e-fe67-11ec-ac64-f69a873c5ca0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T16:06:18.0035556Z","updatedOn":"2022-07-08T16:06:18.0035556Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/72a67832-6c5d-4b3e-9067-ceef4bc5dcba","type":"Microsoft.Authorization/roleAssignments","name":"72a67832-6c5d-4b3e-9067-ceef4bc5dcba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T16:17:28.2042061Z","updatedOn":"2022-07-08T16:17:28.2042061Z","createdBy":"cef6ee5d-6edd-413d-9eb7-c205c9802a3f","updatedBy":"cef6ee5d-6edd-413d-9eb7-c205c9802a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82dd5217-b1f7-4be5-8f03-5899493aa314","type":"Microsoft.Authorization/roleAssignments","name":"82dd5217-b1f7-4be5-8f03-5899493aa314"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T17:53:10.4671781Z","updatedOn":"2022-07-08T17:53:10.4671781Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4227602-fee6-11ec-ab63-000d3af64fa4","type":"Microsoft.Authorization/roleAssignments","name":"d4227602-fee6-11ec-ab63-000d3af64fa4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-11T21:30:54.4523951Z","updatedOn":"2022-07-11T21:30:54.4523951Z","createdBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","updatedBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a77632d-0fee-46d8-9f0d-d2ed44a26602","type":"Microsoft.Authorization/roleAssignments","name":"0a77632d-0fee-46d8-9f0d-d2ed44a26602"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-11T22:18:13.7630778Z","updatedOn":"2022-07-11T22:18:13.7630778Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3abee7ef-2e53-478a-b9cd-911e8768e9d6","type":"Microsoft.Authorization/roleAssignments","name":"3abee7ef-2e53-478a-b9cd-911e8768e9d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T04:19:56.7878684Z","updatedOn":"2022-07-12T04:19:56.7878684Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2335b0a-0199-11ed-9afe-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e2335b0a-0199-11ed-9afe-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T04:20:00.9520791Z","updatedOn":"2022-07-12T04:20:00.9520791Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4b0f194-0199-11ed-9afe-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e4b0f194-0199-11ed-9afe-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T11:12:50.2042423Z","updatedOn":"2022-07-12T11:12:50.2042423Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad70c028-d6b8-4efb-96d4-0bf9aa09566c","type":"Microsoft.Authorization/roleAssignments","name":"ad70c028-d6b8-4efb-96d4-0bf9aa09566c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T17:55:10.7687684Z","updatedOn":"2022-07-12T17:55:10.7687684Z","createdBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","updatedBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c642f341-020b-11ed-bc6a-02136178e3ad","type":"Microsoft.Authorization/roleAssignments","name":"c642f341-020b-11ed-bc6a-02136178e3ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T17:55:14.4120596Z","updatedOn":"2022-07-12T17:55:14.4120596Z","createdBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","updatedBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c87a1349-020b-11ed-bc6a-02136178e3ad","type":"Microsoft.Authorization/roleAssignments","name":"c87a1349-020b-11ed-bc6a-02136178e3ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T18:08:22.2861717Z","updatedOn":"2022-07-12T18:08:22.2861717Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/421ff42e-57e3-4b62-b4e6-e8e561eb7212","type":"Microsoft.Authorization/roleAssignments","name":"421ff42e-57e3-4b62-b4e6-e8e561eb7212"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T00:41:08.5337376Z","updatedOn":"2022-07-13T00:41:08.5337376Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78c85e30-0244-11ed-914f-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"78c85e30-0244-11ed-914f-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T08:27:18.8954270Z","updatedOn":"2022-07-13T08:27:18.8954270Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eda0948f-04c7-43eb-a560-0fe9db9681c5","type":"Microsoft.Authorization/roleAssignments","name":"eda0948f-04c7-43eb-a560-0fe9db9681c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T20:09:22.9119861Z","updatedOn":"2022-07-13T20:09:22.9119861Z","createdBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","updatedBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/af556422-02e7-11ed-b490-3e22fbbb55c2","type":"Microsoft.Authorization/roleAssignments","name":"af556422-02e7-11ed-b490-3e22fbbb55c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T20:09:36.4140354Z","updatedOn":"2022-07-13T20:09:36.4140354Z","createdBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","updatedBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b77f8f56-02e7-11ed-b490-3e22fbbb55c2","type":"Microsoft.Authorization/roleAssignments","name":"b77f8f56-02e7-11ed-b490-3e22fbbb55c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-15T03:29:06.6862069Z","updatedOn":"2022-07-15T03:29:06.6862069Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/77952ad7-ace5-45a1-9395-7025cd43927b","type":"Microsoft.Authorization/roleAssignments","name":"77952ad7-ace5-45a1-9395-7025cd43927b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-15T21:17:33.7746216Z","updatedOn":"2022-07-15T21:17:33.7746216Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8aa04a4a-0483-11ed-bcf7-00155dfde705","type":"Microsoft.Authorization/roleAssignments","name":"8aa04a4a-0483-11ed-bcf7-00155dfde705"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-15T21:17:36.9140017Z","updatedOn":"2022-07-15T21:17:36.9140017Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c49fe02-0483-11ed-bcf7-00155dfde705","type":"Microsoft.Authorization/roleAssignments","name":"8c49fe02-0483-11ed-bcf7-00155dfde705"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-18T18:31:44.6615613Z","updatedOn":"2022-07-18T18:31:44.6615613Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9913aa55-1df8-4b7f-b351-bfb577c653b7","type":"Microsoft.Authorization/roleAssignments","name":"9913aa55-1df8-4b7f-b351-bfb577c653b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T03:14:49.6541206Z","updatedOn":"2022-07-19T03:14:49.6541206Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f2a2c960-0710-11ed-af5f-000d3a183800","type":"Microsoft.Authorization/roleAssignments","name":"f2a2c960-0710-11ed-af5f-000d3a183800"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T03:14:52.8659954Z","updatedOn":"2022-07-19T03:14:52.8659954Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f491d46c-0710-11ed-af5f-000d3a183800","type":"Microsoft.Authorization/roleAssignments","name":"f491d46c-0710-11ed-af5f-000d3a183800"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T17:08:01.7695005Z","updatedOn":"2022-07-19T17:08:01.7695005Z","createdBy":"08a0af07-b641-44c2-a174-9b85f2db0af1","updatedBy":"08a0af07-b641-44c2-a174-9b85f2db0af1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57cd16da-0785-11ed-91ee-06d9bf349677","type":"Microsoft.Authorization/roleAssignments","name":"57cd16da-0785-11ed-91ee-06d9bf349677"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T17:28:52.5405320Z","updatedOn":"2022-07-19T17:28:52.5405320Z","createdBy":"395c8203-ec60-4c13-9730-5f960088f92b","updatedBy":"395c8203-ec60-4c13-9730-5f960088f92b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ab94087-7d29-4798-88b0-5ba408389266","type":"Microsoft.Authorization/roleAssignments","name":"6ab94087-7d29-4798-88b0-5ba408389266"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T20:15:51.4129938Z","updatedOn":"2022-07-19T20:15:51.4129938Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/04aeccd9-485e-4667-83ec-0940615dc03f","type":"Microsoft.Authorization/roleAssignments","name":"04aeccd9-485e-4667-83ec-0940615dc03f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-20T00:07:29.4350314Z","updatedOn":"2022-07-20T00:07:29.4350314Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1165576-07bf-11ed-a49d-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"f1165576-07bf-11ed-a49d-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-20T00:07:32.8732624Z","updatedOn":"2022-07-20T00:07:32.8732624Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f358bfdc-07bf-11ed-a49d-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"f358bfdc-07bf-11ed-a49d-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-21T12:09:08.1001074Z","updatedOn":"2022-07-21T12:09:08.1001074Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ebb1f193-08ed-11ed-a201-00224878d5c3","type":"Microsoft.Authorization/roleAssignments","name":"ebb1f193-08ed-11ed-a201-00224878d5c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-21T12:09:11.3486909Z","updatedOn":"2022-07-21T12:09:11.3486909Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/edaa26e6-08ed-11ed-a201-00224878d5c3","type":"Microsoft.Authorization/roleAssignments","name":"edaa26e6-08ed-11ed-a201-00224878d5c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-22T09:35:51.5690357Z","updatedOn":"2022-07-22T09:35:51.5690357Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd07b0f6-982a-4d85-9fdd-d44049270cbd","type":"Microsoft.Authorization/roleAssignments","name":"dd07b0f6-982a-4d85-9fdd-d44049270cbd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-24T17:57:05.6570323Z","updatedOn":"2022-07-24T17:57:05.6570323Z","createdBy":"567715d4-847a-4def-acb2-d157ebfa8439","updatedBy":"567715d4-847a-4def-acb2-d157ebfa8439","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/069fdbd1-0b7a-11ed-aa35-a2d44093b98e","type":"Microsoft.Authorization/roleAssignments","name":"069fdbd1-0b7a-11ed-aa35-a2d44093b98e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-24T17:57:10.6197123Z","updatedOn":"2022-07-24T17:57:10.6197123Z","createdBy":"567715d4-847a-4def-acb2-d157ebfa8439","updatedBy":"567715d4-847a-4def-acb2-d157ebfa8439","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09844b71-0b7a-11ed-aa35-a2d44093b98e","type":"Microsoft.Authorization/roleAssignments","name":"09844b71-0b7a-11ed-aa35-a2d44093b98e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-25T23:51:56.7193261Z","updatedOn":"2022-07-25T23:51:56.7193261Z","createdBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","updatedBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3d43338-0c74-11ed-a558-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"c3d43338-0c74-11ed-a558-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-25T23:51:59.2783640Z","updatedOn":"2022-07-25T23:51:59.2783640Z","createdBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","updatedBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5533d8a-0c74-11ed-a558-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"c5533d8a-0c74-11ed-a558-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-28T04:50:50.7078047Z","updatedOn":"2022-07-28T04:50:50.7078047Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da343068-0e30-11ed-91a5-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"da343068-0e30-11ed-91a5-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-28T04:50:53.7664793Z","updatedOn":"2022-07-28T04:50:53.7664793Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dbfbe50a-0e30-11ed-91a5-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"dbfbe50a-0e30-11ed-91a5-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-29T16:16:58.9941922Z","updatedOn":"2022-07-29T16:16:58.9941922Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/880fa390-3bd7-4075-8071-e33e45423e36","type":"Microsoft.Authorization/roleAssignments","name":"880fa390-3bd7-4075-8071-e33e45423e36"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-31T19:34:43.4356237Z","updatedOn":"2022-07-31T19:34:43.4356237Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d352709e-1107-11ed-be9f-beee8f4e086d","type":"Microsoft.Authorization/roleAssignments","name":"d352709e-1107-11ed-be9f-beee8f4e086d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-04T04:49:44.0295503Z","updatedOn":"2022-08-04T04:49:44.0295503Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da803814-13b0-11ed-b124-e2848198df96","type":"Microsoft.Authorization/roleAssignments","name":"da803814-13b0-11ed-b124-e2848198df96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-04T04:49:49.5833937Z","updatedOn":"2022-08-04T04:49:49.5833937Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd76350a-13b0-11ed-b124-e2848198df96","type":"Microsoft.Authorization/roleAssignments","name":"dd76350a-13b0-11ed-b124-e2848198df96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-05T14:15:13.1099119Z","updatedOn":"2022-08-05T14:15:13.1099119Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7a4c8f3-b60c-4341-acdb-3b8d60976116","type":"Microsoft.Authorization/roleAssignments","name":"e7a4c8f3-b60c-4341-acdb-3b8d60976116"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-08T08:55:19.4739379Z","updatedOn":"2022-08-08T08:55:19.4739379Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3f792cd-16f7-11ed-afb5-000d3a0611f6","type":"Microsoft.Authorization/roleAssignments","name":"d3f792cd-16f7-11ed-afb5-000d3a0611f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-08T14:33:12.5245418Z","updatedOn":"2022-08-08T14:33:12.5245418Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0184de3c-04d4-433f-9221-2df571d921a5","type":"Microsoft.Authorization/roleAssignments","name":"0184de3c-04d4-433f-9221-2df571d921a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-08T17:41:09.4113992Z","updatedOn":"2022-08-08T17:41:09.4113992Z","createdBy":"19263705-0667-497e-85e7-a930fa3441ec","updatedBy":"19263705-0667-497e-85e7-a930fa3441ec","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4919e77a-1741-11ed-b6db-0022487d76b7","type":"Microsoft.Authorization/roleAssignments","name":"4919e77a-1741-11ed-b6db-0022487d76b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:45:21.8695164Z","updatedOn":"2022-08-12T05:45:21.8695164Z","createdBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","updatedBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f23b86bb-1a01-11ed-b496-66a3f79a5cd7","type":"Microsoft.Authorization/roleAssignments","name":"f23b86bb-1a01-11ed-b496-66a3f79a5cd7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:45:28.6932347Z","updatedOn":"2022-08-12T05:45:28.6932347Z","createdBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","updatedBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6a0cefb-1a01-11ed-b496-66a3f79a5cd7","type":"Microsoft.Authorization/roleAssignments","name":"f6a0cefb-1a01-11ed-b496-66a3f79a5cd7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:57:08.1910800Z","updatedOn":"2022-08-12T05:57:08.1910800Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/97fa583a-1a03-11ed-8141-0022484c72fc","type":"Microsoft.Authorization/roleAssignments","name":"97fa583a-1a03-11ed-8141-0022484c72fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:57:16.8561530Z","updatedOn":"2022-08-12T05:57:16.8561530Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9bed6f7d-1a03-11ed-8141-0022484c72fc","type":"Microsoft.Authorization/roleAssignments","name":"9bed6f7d-1a03-11ed-8141-0022484c72fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T10:56:06.3724576Z","updatedOn":"2022-08-12T10:56:06.3724576Z","createdBy":"312333b2-b433-4e3c-bb6f-f60419faa168","updatedBy":"312333b2-b433-4e3c-bb6f-f60419faa168","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5da07cdc-1a2d-11ed-97c4-36311d0c4477","type":"Microsoft.Authorization/roleAssignments","name":"5da07cdc-1a2d-11ed-97c4-36311d0c4477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T10:56:12.1781791Z","updatedOn":"2022-08-12T10:56:12.1781791Z","createdBy":"312333b2-b433-4e3c-bb6f-f60419faa168","updatedBy":"312333b2-b433-4e3c-bb6f-f60419faa168","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/60dfcd5b-1a2d-11ed-97c4-36311d0c4477","type":"Microsoft.Authorization/roleAssignments","name":"60dfcd5b-1a2d-11ed-97c4-36311d0c4477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T23:47:07.1823504Z","updatedOn":"2022-08-12T23:47:07.1823504Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12955060-1a99-11ed-80ae-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"12955060-1a99-11ed-80ae-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T23:47:10.3981690Z","updatedOn":"2022-08-12T23:47:10.3981690Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1452bfa0-1a99-11ed-80ae-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"1452bfa0-1a99-11ed-80ae-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-14T04:59:52.9674492Z","updatedOn":"2022-08-14T04:59:52.9674492Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee779146-1b8d-11ed-ad0f-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"ee779146-1b8d-11ed-ad0f-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-14T04:59:57.7071631Z","updatedOn":"2022-08-14T04:59:57.7071631Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f13fa4b3-1b8d-11ed-ad0f-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"f13fa4b3-1b8d-11ed-ad0f-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-16T23:10:44.7176056Z","updatedOn":"2022-08-16T23:10:44.7176056Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1d255e1-0f5e-41c4-93eb-e683b5cf2ca4","type":"Microsoft.Authorization/roleAssignments","name":"f1d255e1-0f5e-41c4-93eb-e683b5cf2ca4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-16T23:31:16.6919768Z","updatedOn":"2022-08-16T23:31:16.6919768Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a45cbdf-008d-4716-96eb-38389a417827","type":"Microsoft.Authorization/roleAssignments","name":"2a45cbdf-008d-4716-96eb-38389a417827"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-18T00:30:35.0176680Z","updatedOn":"2022-08-18T00:30:35.0176680Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f91d7aa2-1e8c-11ed-b1a6-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f91d7aa2-1e8c-11ed-b1a6-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-18T00:30:38.2729005Z","updatedOn":"2022-08-18T00:30:38.2729005Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb0d664c-1e8c-11ed-b1a6-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"fb0d664c-1e8c-11ed-b1a6-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-18T15:52:38.7113712Z","updatedOn":"2022-08-18T15:52:38.7113712Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8772ddf6-c657-4010-ab7b-5d8627ba3601","type":"Microsoft.Authorization/roleAssignments","name":"8772ddf6-c657-4010-ab7b-5d8627ba3601"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-22T02:37:48.0231077Z","updatedOn":"2022-08-22T02:37:48.0231077Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7c56d8ab-b9ef-4d93-ae58-838c1209c621","type":"Microsoft.Authorization/roleAssignments","name":"7c56d8ab-b9ef-4d93-ae58-838c1209c621"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-22T02:41:47.6649206Z","updatedOn":"2022-08-22T02:41:47.6649206Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b66d25d3-0cb1-4413-9445-caf5db5b40c9","type":"Microsoft.Authorization/roleAssignments","name":"b66d25d3-0cb1-4413-9445-caf5db5b40c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-22T06:25:39.4709093Z","updatedOn":"2022-08-22T06:25:39.4709093Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb7ca852-9adb-4205-a828-a17ca774a8a4","type":"Microsoft.Authorization/roleAssignments","name":"eb7ca852-9adb-4205-a828-a17ca774a8a4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T02:16:22.3620594Z","updatedOn":"2022-08-23T02:16:22.3620594Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94556c2e-2289-11ed-9371-000d3ac51247","type":"Microsoft.Authorization/roleAssignments","name":"94556c2e-2289-11ed-9371-000d3ac51247"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T08:56:15.8011348Z","updatedOn":"2022-08-23T08:56:15.8011348Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7117911f-22c1-11ed-be42-000d3a084591","type":"Microsoft.Authorization/roleAssignments","name":"7117911f-22c1-11ed-be42-000d3a084591"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T08:56:21.1375800Z","updatedOn":"2022-08-23T08:56:21.1375800Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/73becf7d-22c1-11ed-be42-000d3a084591","type":"Microsoft.Authorization/roleAssignments","name":"73becf7d-22c1-11ed-be42-000d3a084591"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T14:02:07.2343806Z","updatedOn":"2022-08-23T14:02:07.2343806Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b9bf190-22ec-11ed-8f86-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"2b9bf190-22ec-11ed-8f86-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T14:02:10.9785694Z","updatedOn":"2022-08-23T14:02:10.9785694Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2dd0099d-22ec-11ed-8f86-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"2dd0099d-22ec-11ed-8f86-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T23:22:24.8240339Z","updatedOn":"2022-08-23T23:22:24.8240339Z","createdBy":"395c8203-ec60-4c13-9730-5f960088f92b","updatedBy":"395c8203-ec60-4c13-9730-5f960088f92b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/abda2c2b-daa3-42bb-abbd-e13cec5fb6b3","type":"Microsoft.Authorization/roleAssignments","name":"abda2c2b-daa3-42bb-abbd-e13cec5fb6b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T23:23:32.8133517Z","updatedOn":"2022-08-23T23:23:32.8133517Z","createdBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","updatedBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/994cd0f0-233a-11ed-90e8-66137476d927","type":"Microsoft.Authorization/roleAssignments","name":"994cd0f0-233a-11ed-90e8-66137476d927"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T23:23:35.3751695Z","updatedOn":"2022-08-23T23:23:35.3751695Z","createdBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","updatedBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9add5dfe-233a-11ed-90e8-66137476d927","type":"Microsoft.Authorization/roleAssignments","name":"9add5dfe-233a-11ed-90e8-66137476d927"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-26T02:48:17.4348909Z","updatedOn":"2022-08-26T02:48:17.4348909Z","createdBy":"d297f8cf-3724-4da6-ae0c-6ea639225042","updatedBy":"d297f8cf-3724-4da6-ae0c-6ea639225042","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9125ee0-b9af-4d25-a2e5-886ad210b3e8","type":"Microsoft.Authorization/roleAssignments","name":"e9125ee0-b9af-4d25-a2e5-886ad210b3e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-29T22:08:43.6923850Z","updatedOn":"2022-08-29T22:08:43.6923850Z","createdBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","updatedBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24b2acd4-27e7-11ed-aa57-9eb40d98da7e","type":"Microsoft.Authorization/roleAssignments","name":"24b2acd4-27e7-11ed-aa57-9eb40d98da7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-29T22:08:46.8049719Z","updatedOn":"2022-08-29T22:08:46.8049719Z","createdBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","updatedBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26a4fa7f-27e7-11ed-aa57-9eb40d98da7e","type":"Microsoft.Authorization/roleAssignments","name":"26a4fa7f-27e7-11ed-aa57-9eb40d98da7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-29T22:11:06.3024798Z","updatedOn":"2022-08-29T22:11:06.3024798Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63e0b566-276e-405d-8d4e-1c82b1f937c6","type":"Microsoft.Authorization/roleAssignments","name":"63e0b566-276e-405d-8d4e-1c82b1f937c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:50:53.4210961Z","updatedOn":"2022-08-30T23:50:53.4210961Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94aa5054-28be-11ed-a6d3-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"94aa5054-28be-11ed-a6d3-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:50:57.2039466Z","updatedOn":"2022-08-30T23:50:57.2039466Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96f9353c-28be-11ed-a6d3-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"96f9353c-28be-11ed-a6d3-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:55:18.1665901Z","updatedOn":"2022-08-30T23:55:18.1665901Z","createdBy":"08de6591-dec9-4255-ab17-d6919151fadd","updatedBy":"08de6591-dec9-4255-ab17-d6919151fadd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/32738d64-28bf-11ed-8c18-d28ee6de8df0","type":"Microsoft.Authorization/roleAssignments","name":"32738d64-28bf-11ed-8c18-d28ee6de8df0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:55:21.0832794Z","updatedOn":"2022-08-30T23:55:21.0832794Z","createdBy":"08de6591-dec9-4255-ab17-d6919151fadd","updatedBy":"08de6591-dec9-4255-ab17-d6919151fadd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/347773d2-28bf-11ed-8c18-d28ee6de8df0","type":"Microsoft.Authorization/roleAssignments","name":"347773d2-28bf-11ed-8c18-d28ee6de8df0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-31T23:23:54.3892344Z","updatedOn":"2022-08-31T23:23:54.3892344Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa44d69e-2983-11ed-aa08-92f3f7a6dd9b","type":"Microsoft.Authorization/roleAssignments","name":"fa44d69e-2983-11ed-aa08-92f3f7a6dd9b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-31T23:23:57.6913146Z","updatedOn":"2022-08-31T23:23:57.6913146Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc468884-2983-11ed-aa08-92f3f7a6dd9b","type":"Microsoft.Authorization/roleAssignments","name":"fc468884-2983-11ed-aa08-92f3f7a6dd9b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-01T06:08:41.4708815Z","updatedOn":"2022-09-01T06:08:41.4708815Z","createdBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","updatedBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/86088e13-29bc-11ed-9e75-ee990064eed4","type":"Microsoft.Authorization/roleAssignments","name":"86088e13-29bc-11ed-9e75-ee990064eed4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-01T14:36:10.3068118Z","updatedOn":"2022-09-01T14:36:10.3068118Z","createdBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","updatedBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b6d0b78-2a03-11ed-8b33-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6b6d0b78-2a03-11ed-8b33-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-01T14:36:19.4793808Z","updatedOn":"2022-09-01T14:36:19.4793808Z","createdBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","updatedBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70bc79b0-2a03-11ed-8b33-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"70bc79b0-2a03-11ed-8b33-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-05T20:13:38.7677056Z","updatedOn":"2022-09-05T20:13:38.7677056Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/396cb586-2d57-11ed-8f60-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"396cb586-2d57-11ed-8f60-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-06T19:58:31.4389144Z","updatedOn":"2022-09-06T19:58:31.4389144Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47bb56b5-2e1e-11ed-9020-000d3a6d9a18","type":"Microsoft.Authorization/roleAssignments","name":"47bb56b5-2e1e-11ed-9020-000d3a6d9a18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-06T19:58:35.6283701Z","updatedOn":"2022-09-06T19:58:35.6283701Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a30eda3-2e1e-11ed-9020-000d3a6d9a18","type":"Microsoft.Authorization/roleAssignments","name":"4a30eda3-2e1e-11ed-9020-000d3a6d9a18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-08T14:38:34.2901394Z","updatedOn":"2022-09-08T14:38:34.2901394Z","createdBy":"61a5600d-3609-43e4-9dd8-bcf58e3ce51f","updatedBy":"61a5600d-3609-43e4-9dd8-bcf58e3ce51f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea4dcb49-2f83-11ed-9efa-000d3a181b06","type":"Microsoft.Authorization/roleAssignments","name":"ea4dcb49-2f83-11ed-9efa-000d3a181b06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-08T17:46:08.1384737Z","updatedOn":"2022-09-08T17:46:08.1384737Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1dc95ee4-2f9e-11ed-89d2-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"1dc95ee4-2f9e-11ed-89d2-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-08T17:46:11.6717566Z","updatedOn":"2022-09-08T17:46:11.6717566Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2008f142-2f9e-11ed-89d2-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2008f142-2f9e-11ed-89d2-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-12T23:42:55.7564365Z","updatedOn":"2022-09-12T23:42:55.7564365Z","createdBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","updatedBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fa0c69c-32f4-11ed-aee5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"9fa0c69c-32f4-11ed-aee5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-12T23:43:04.5756788Z","updatedOn":"2022-09-12T23:43:04.5756788Z","createdBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","updatedBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a4e1656c-32f4-11ed-aee5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"a4e1656c-32f4-11ed-aee5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T00:18:28.3312561Z","updatedOn":"2022-09-13T00:18:28.3312561Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/965f9705-32f9-11ed-a03a-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"965f9705-32f9-11ed-a03a-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T00:18:32.9627131Z","updatedOn":"2022-09-13T00:18:32.9627131Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9918693b-32f9-11ed-a03a-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"9918693b-32f9-11ed-a03a-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T05:20:21.8356068Z","updatedOn":"2022-09-13T05:20:21.8356068Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14ac626a-3acb-4867-a3ce-32d85da9a0e7","type":"Microsoft.Authorization/roleAssignments","name":"14ac626a-3acb-4867-a3ce-32d85da9a0e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T20:31:46.8554799Z","updatedOn":"2022-09-13T20:31:46.8554799Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d71c7b8-3398-11ed-ad11-e6ebdcb69945","type":"Microsoft.Authorization/roleAssignments","name":"6d71c7b8-3398-11ed-ad11-e6ebdcb69945"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T20:31:50.1456004Z","updatedOn":"2022-09-13T20:31:50.1456004Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ca65e0f-3398-11ed-ad11-e6ebdcb69945","type":"Microsoft.Authorization/roleAssignments","name":"7ca65e0f-3398-11ed-ad11-e6ebdcb69945"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T23:17:04.2606442Z","updatedOn":"2022-09-13T23:17:04.2606442Z","createdBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","updatedBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ecfc544-bb26-4b57-9c52-7a3751bf5b9a","type":"Microsoft.Authorization/roleAssignments","name":"8ecfc544-bb26-4b57-9c52-7a3751bf5b9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-14T20:11:09.0922785Z","updatedOn":"2022-09-14T20:11:09.0922785Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/43c2f0e6-bf81-4e83-bf98-eb7d592639a5","type":"Microsoft.Authorization/roleAssignments","name":"43c2f0e6-bf81-4e83-bf98-eb7d592639a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-15T17:44:22.3186068Z","updatedOn":"2022-09-15T17:44:22.3186068Z","createdBy":"2182129f-e575-4986-a7fb-2be7772ba46f","updatedBy":"2182129f-e575-4986-a7fb-2be7772ba46f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/05e871b7-351e-11ed-8cc7-32a64839c39d","type":"Microsoft.Authorization/roleAssignments","name":"05e871b7-351e-11ed-8cc7-32a64839c39d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ab4d3d-a1bf-4477-8ad9-8359bc988f69","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-15T22:34:54.1872835Z","updatedOn":"2022-09-15T22:34:54.1872835Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9ac6f9f-a6dc-43e5-bc80-6e362547ff03","type":"Microsoft.Authorization/roleAssignments","name":"a9ac6f9f-a6dc-43e5-bc80-6e362547ff03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-15T22:36:25.6520797Z","updatedOn":"2022-09-15T22:36:25.6520797Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a48452ae-2a7a-4a35-bc22-de46608a8c12","type":"Microsoft.Authorization/roleAssignments","name":"a48452ae-2a7a-4a35-bc22-de46608a8c12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ab4d3d-a1bf-4477-8ad9-8359bc988f69","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-16T03:26:44.5972975Z","updatedOn":"2022-09-16T03:26:44.5972975Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7ddb897-f37b-4617-8b62-26a42b72d0fd","type":"Microsoft.Authorization/roleAssignments","name":"b7ddb897-f37b-4617-8b62-26a42b72d0fd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-16T03:27:20.0290180Z","updatedOn":"2022-09-16T03:27:20.0290180Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36cbdcc8-a70b-42a9-836a-9bb89dbd301a","type":"Microsoft.Authorization/roleAssignments","name":"36cbdcc8-a70b-42a9-836a-9bb89dbd301a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-16T14:21:41.5963217Z","updatedOn":"2022-09-16T14:21:41.5963217Z","createdBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","updatedBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc428d08-6f99-4619-9554-500bfc75b861","type":"Microsoft.Authorization/roleAssignments","name":"bc428d08-6f99-4619-9554-500bfc75b861"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T01:59:15.5981081Z","updatedOn":"2022-09-19T01:59:15.5981081Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a92c46b1-37be-11ed-8745-00224857f2c5","type":"Microsoft.Authorization/roleAssignments","name":"a92c46b1-37be-11ed-8745-00224857f2c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T01:59:20.5513267Z","updatedOn":"2022-09-19T01:59:20.5513267Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac11dbd2-37be-11ed-8745-00224857f2c5","type":"Microsoft.Authorization/roleAssignments","name":"ac11dbd2-37be-11ed-8745-00224857f2c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T09:51:42.7586328Z","updatedOn":"2022-09-19T09:51:42.7586328Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1cb1222d-5cb9-4d4a-a901-850f4a0d08da","type":"Microsoft.Authorization/roleAssignments","name":"1cb1222d-5cb9-4d4a-a901-850f4a0d08da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T18:49:44.8806347Z","updatedOn":"2022-09-19T18:49:44.8806347Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9c6a4b4-714e-45fc-8bc4-11c41f8c306a","type":"Microsoft.Authorization/roleAssignments","name":"b9c6a4b4-714e-45fc-8bc4-11c41f8c306a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T22:48:28.6777206Z","updatedOn":"2022-09-19T22:48:28.6777206Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ea76d8b-9daa-4d62-bfc8-bb9013ecec53","type":"Microsoft.Authorization/roleAssignments","name":"3ea76d8b-9daa-4d62-bfc8-bb9013ecec53"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-20T22:34:06.1765862Z","updatedOn":"2022-09-20T22:34:06.1765862Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/475a9fc4-c1a8-42c7-9e4e-d897c83f2a86","type":"Microsoft.Authorization/roleAssignments","name":"475a9fc4-c1a8-42c7-9e4e-d897c83f2a86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/434105ed-43f6-45c7-a02f-909b2ba83430","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-21T00:11:12.3038110Z","updatedOn":"2022-09-21T00:11:12.3038110Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce3975e8-d43d-4f8c-a315-e20609d7472a","type":"Microsoft.Authorization/roleAssignments","name":"ce3975e8-d43d-4f8c-a315-e20609d7472a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T07:30:57.3801733Z","updatedOn":"2022-09-23T07:30:57.3801733Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7a5ed22-3b11-11ed-876d-1a48d609785e","type":"Microsoft.Authorization/roleAssignments","name":"a7a5ed22-3b11-11ed-876d-1a48d609785e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T14:34:07.2104918Z","updatedOn":"2022-09-23T14:34:07.2104918Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c756e2ff-3b4c-11ed-be28-000d3a9e5815","type":"Microsoft.Authorization/roleAssignments","name":"c756e2ff-3b4c-11ed-be28-000d3a9e5815"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T14:34:10.7191458Z","updatedOn":"2022-09-23T14:34:10.7191458Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c96352a0-3b4c-11ed-be28-000d3a9e5815","type":"Microsoft.Authorization/roleAssignments","name":"c96352a0-3b4c-11ed-be28-000d3a9e5815"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T19:05:01.8468743Z","updatedOn":"2022-09-23T19:05:01.8468743Z","createdBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","updatedBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ecc7527-3b72-11ed-92ab-a642c656be12","type":"Microsoft.Authorization/roleAssignments","name":"9ecc7527-3b72-11ed-92ab-a642c656be12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T21:31:12.8549148Z","updatedOn":"2022-09-23T21:31:12.8549148Z","createdBy":"0fa3313e-2eee-4835-aeff-681e46364ab6","updatedBy":"0fa3313e-2eee-4835-aeff-681e46364ab6","delegatedManagedIdentityResourceId":null,"description":"New + AKS SRE team member"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b79302d-37ad-406c-b32d-cddbd2387781","type":"Microsoft.Authorization/roleAssignments","name":"2b79302d-37ad-406c-b32d-cddbd2387781"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-25T18:15:06.7527496Z","updatedOn":"2022-09-25T18:15:06.7527496Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f83fc539-aab6-4862-8635-cbe5472eadad","type":"Microsoft.Authorization/roleAssignments","name":"f83fc539-aab6-4862-8635-cbe5472eadad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-25T17:34:50.8733023Z","updatedOn":"2023-01-25T17:34:50.8733023Z","createdBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","updatedBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/91a85771-9cd6-11ed-a528-6045bd8532c1","type":"Microsoft.Authorization/roleAssignments","name":"91a85771-9cd6-11ed-a528-6045bd8532c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T19:40:10.2077596Z","updatedOn":"2023-01-26T19:40:10.2077596Z","createdBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","updatedBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3deeb34a-9db1-11ed-9882-bad388e32b6e","type":"Microsoft.Authorization/roleAssignments","name":"3deeb34a-9db1-11ed-9882-bad388e32b6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T19:40:13.9767599Z","updatedOn":"2023-01-26T19:40:13.9767599Z","createdBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","updatedBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/405d87d0-9db1-11ed-9882-bad388e32b6e","type":"Microsoft.Authorization/roleAssignments","name":"405d87d0-9db1-11ed-9882-bad388e32b6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T21:29:38.0736564Z","updatedOn":"2023-01-26T21:29:38.0736564Z","createdBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","updatedBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88db6aa7-9dc0-11ed-873b-02af4457d3da","type":"Microsoft.Authorization/roleAssignments","name":"88db6aa7-9dc0-11ed-873b-02af4457d3da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T21:29:41.9721959Z","updatedOn":"2023-01-26T21:29:41.9721959Z","createdBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","updatedBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8b20c92b-9dc0-11ed-873b-02af4457d3da","type":"Microsoft.Authorization/roleAssignments","name":"8b20c92b-9dc0-11ed-873b-02af4457d3da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-28T06:05:38.5919016Z","updatedOn":"2023-01-28T06:05:38.5919016Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ee0fdb3-65a0-4344-a73d-15f6b92ea58b","type":"Microsoft.Authorization/roleAssignments","name":"7ee0fdb3-65a0-4344-a73d-15f6b92ea58b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-29T03:40:38.5139182Z","updatedOn":"2023-01-29T03:40:38.5139182Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1dec2dc-9f86-11ed-a95c-0022487e65a6","type":"Microsoft.Authorization/roleAssignments","name":"b1dec2dc-9f86-11ed-a95c-0022487e65a6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-30T05:50:30.0380171Z","updatedOn":"2023-01-30T05:50:30.0380171Z","createdBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","updatedBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/792989a2-3985-4915-bf5a-4eb5451f731b","type":"Microsoft.Authorization/roleAssignments","name":"792989a2-3985-4915-bf5a-4eb5451f731b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-30T15:03:46.9770738Z","updatedOn":"2023-01-30T15:03:46.9770738Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a97ceb8-a0af-11ed-bf9c-a8a1598cc0f3","type":"Microsoft.Authorization/roleAssignments","name":"4a97ceb8-a0af-11ed-bf9c-a8a1598cc0f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-31T08:45:32.8563782Z","updatedOn":"2023-01-31T08:45:32.8563782Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ea26baa-a143-11ed-85d1-1eb0db5454d6","type":"Microsoft.Authorization/roleAssignments","name":"9ea26baa-a143-11ed-85d1-1eb0db5454d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-31T09:18:23.0405616Z","updatedOn":"2023-01-31T09:18:23.0405616Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9063ace1-9e8e-4195-82f8-39fe17fca5ce","type":"Microsoft.Authorization/roleAssignments","name":"9063ace1-9e8e-4195-82f8-39fe17fca5ce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-01T08:12:47.9822357Z","updatedOn":"2023-02-01T08:12:47.9822357Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/31c05c6a-a87b-4ad2-a07e-7acaadecb649","type":"Microsoft.Authorization/roleAssignments","name":"31c05c6a-a87b-4ad2-a07e-7acaadecb649"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-01T19:03:12.2207490Z","updatedOn":"2023-02-01T19:03:12.2207490Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/153174d5-a263-11ed-bad7-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"153174d5-a263-11ed-bad7-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-01T19:03:15.7264802Z","updatedOn":"2023-02-01T19:03:15.7264802Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/172f1d82-a263-11ed-bad7-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"172f1d82-a263-11ed-bad7-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-02T03:13:38.6056072Z","updatedOn":"2023-02-02T03:13:38.6056072Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88d8d974-d77d-450f-89ee-d4a98efea6d8","type":"Microsoft.Authorization/roleAssignments","name":"88d8d974-d77d-450f-89ee-d4a98efea6d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-02T03:19:55.3070568Z","updatedOn":"2023-02-02T03:19:55.3070568Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f273f651-5bde-4219-ab11-33842c5d3224","type":"Microsoft.Authorization/roleAssignments","name":"f273f651-5bde-4219-ab11-33842c5d3224"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-02T09:43:41.0210838Z","updatedOn":"2023-02-02T09:43:41.0210838Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2e9d149-730b-447b-b3e8-3a1fff80f1e1","type":"Microsoft.Authorization/roleAssignments","name":"b2e9d149-730b-447b-b3e8-3a1fff80f1e1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-03T18:49:50.9127720Z","updatedOn":"2023-02-03T18:49:50.9127720Z","createdBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","updatedBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8984621e-a3f3-11ed-b23c-a08cfdd89f0d","type":"Microsoft.Authorization/roleAssignments","name":"8984621e-a3f3-11ed-b23c-a08cfdd89f0d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-03T18:49:55.4277284Z","updatedOn":"2023-02-03T18:49:55.4277284Z","createdBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","updatedBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c3308b8-a3f3-11ed-b23c-a08cfdd89f0d","type":"Microsoft.Authorization/roleAssignments","name":"8c3308b8-a3f3-11ed-b23c-a08cfdd89f0d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-03T21:54:32.5272557Z","updatedOn":"2023-02-03T21:54:32.5272557Z","createdBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","updatedBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5650998f-a40d-11ed-8cfd-763d1fcabad1","type":"Microsoft.Authorization/roleAssignments","name":"5650998f-a40d-11ed-8cfd-763d1fcabad1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-06T16:05:18.7158859Z","updatedOn":"2023-02-06T16:05:18.7158859Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b2a1bdc-a638-11ed-b0e4-de5d54961c0d","type":"Microsoft.Authorization/roleAssignments","name":"0b2a1bdc-a638-11ed-b0e4-de5d54961c0d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-06T21:22:16.0685608Z","updatedOn":"2023-02-06T21:22:16.0685608Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5372f2e2-a664-11ed-99dd-00155d7b2003","type":"Microsoft.Authorization/roleAssignments","name":"5372f2e2-a664-11ed-99dd-00155d7b2003"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T02:31:53.1943940Z","updatedOn":"2023-02-07T02:31:53.1943940Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/93d9ca8e-a68f-11ed-99fe-82539686faad","type":"Microsoft.Authorization/roleAssignments","name":"93d9ca8e-a68f-11ed-99fe-82539686faad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T17:35:09.5804790Z","updatedOn":"2023-02-07T17:35:09.5804790Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c423996c-a70d-11ed-805e-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"c423996c-a70d-11ed-805e-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T21:59:01.9278864Z","updatedOn":"2023-02-07T21:59:01.9278864Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/415eb8ac-2243-415a-8a6a-692cfd82054b","type":"Microsoft.Authorization/roleAssignments","name":"415eb8ac-2243-415a-8a6a-692cfd82054b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T23:07:32.1844748Z","updatedOn":"2023-02-07T23:07:32.1844748Z","createdBy":"bd73a081-fc57-4d58-adb0-f7b098797225","updatedBy":"bd73a081-fc57-4d58-adb0-f7b098797225","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/32edd9f4-a73c-11ed-a351-64d69a01bd73","type":"Microsoft.Authorization/roleAssignments","name":"32edd9f4-a73c-11ed-a351-64d69a01bd73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T23:07:37.2690514Z","updatedOn":"2023-02-07T23:07:37.2690514Z","createdBy":"bd73a081-fc57-4d58-adb0-f7b098797225","updatedBy":"bd73a081-fc57-4d58-adb0-f7b098797225","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3567b721-a73c-11ed-a351-64d69a01bd73","type":"Microsoft.Authorization/roleAssignments","name":"3567b721-a73c-11ed-a351-64d69a01bd73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T16:04:37.2489661Z","updatedOn":"2023-02-08T16:04:37.2489661Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4891c61c-a7ca-11ed-926c-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"4891c61c-a7ca-11ed-926c-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T19:28:37.4403950Z","updatedOn":"2023-02-08T19:28:37.4403950Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7017b0f-925c-43b0-9416-6eb60d8374e3","type":"Microsoft.Authorization/roleAssignments","name":"a7017b0f-925c-43b0-9416-6eb60d8374e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T19:42:35.5124742Z","updatedOn":"2023-02-08T19:42:35.5124742Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd059c37-a7e8-11ed-8d91-7e3b8160807d","type":"Microsoft.Authorization/roleAssignments","name":"bd059c37-a7e8-11ed-8d91-7e3b8160807d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T19:42:39.7153998Z","updatedOn":"2023-02-08T19:42:39.7153998Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf728611-a7e8-11ed-8d91-7e3b8160807d","type":"Microsoft.Authorization/roleAssignments","name":"bf728611-a7e8-11ed-8d91-7e3b8160807d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T22:45:32.7092683Z","updatedOn":"2023-02-08T22:45:32.7092683Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c82f6230-4661-4b60-9ae4-cbd24bc5971d","type":"Microsoft.Authorization/roleAssignments","name":"c82f6230-4661-4b60-9ae4-cbd24bc5971d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T23:38:55.4476717Z","updatedOn":"2023-02-08T23:38:55.4476717Z","createdBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","updatedBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b563f5e3-a809-11ed-92da-061e1dff6519","type":"Microsoft.Authorization/roleAssignments","name":"b563f5e3-a809-11ed-92da-061e1dff6519"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T17:18:01.5061195Z","updatedOn":"2023-02-09T17:18:01.5061195Z","createdBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","updatedBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b477f0fa-a89d-11ed-9d1f-4e375b705c86","type":"Microsoft.Authorization/roleAssignments","name":"b477f0fa-a89d-11ed-9d1f-4e375b705c86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T17:18:03.2471424Z","updatedOn":"2023-02-09T17:18:03.2471424Z","createdBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","updatedBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b58085bc-a89d-11ed-9d1f-4e375b705c86","type":"Microsoft.Authorization/roleAssignments","name":"b58085bc-a89d-11ed-9d1f-4e375b705c86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T18:21:34.0931358Z","updatedOn":"2023-02-09T18:21:34.0931358Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5fe27fe4-6007-4829-afa0-0a3e3780b6d3","type":"Microsoft.Authorization/roleAssignments","name":"5fe27fe4-6007-4829-afa0-0a3e3780b6d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T21:44:30.2729026Z","updatedOn":"2023-02-09T21:44:30.2729026Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eecd187f-a8c2-11ed-9284-1e4dbb47ca8f","type":"Microsoft.Authorization/roleAssignments","name":"eecd187f-a8c2-11ed-9284-1e4dbb47ca8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T21:44:36.9652403Z","updatedOn":"2023-02-09T21:44:36.9652403Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f27e86e2-a8c2-11ed-9284-1e4dbb47ca8f","type":"Microsoft.Authorization/roleAssignments","name":"f27e86e2-a8c2-11ed-9284-1e4dbb47ca8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T01:19:04.3719723Z","updatedOn":"2023-02-10T01:19:04.3719723Z","createdBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","updatedBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d5cdb0f-1b3b-46f9-8e1b-84661382dfe9","type":"Microsoft.Authorization/roleAssignments","name":"0d5cdb0f-1b3b-46f9-8e1b-84661382dfe9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T22:39:09.0776574Z","updatedOn":"2023-02-10T22:39:09.0776574Z","createdBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","updatedBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb3a8a84-a993-11ed-a433-00155df41803","type":"Microsoft.Authorization/roleAssignments","name":"bb3a8a84-a993-11ed-a433-00155df41803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T22:39:12.9098417Z","updatedOn":"2023-02-10T22:39:12.9098417Z","createdBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","updatedBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd7f173a-a993-11ed-a433-00155df41803","type":"Microsoft.Authorization/roleAssignments","name":"bd7f173a-a993-11ed-a433-00155df41803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e3c35f4c-e0ca-4b9e-a01e-5ebdd17e2ee7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-13T07:08:28.2729144Z","updatedOn":"2023-02-13T07:08:28.2729144Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bba123f0-e027-47b5-9f46-15320b0d6ea2","type":"Microsoft.Authorization/roleAssignments","name":"bba123f0-e027-47b5-9f46-15320b0d6ea2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-13T20:30:01.2193678Z","updatedOn":"2023-02-13T20:30:01.2193678Z","createdBy":"40db9032-6efa-443b-a2df-6b0c1d107875","updatedBy":"40db9032-6efa-443b-a2df-6b0c1d107875","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f3b7710-abdd-11ed-8e93-42746b8cdccc","type":"Microsoft.Authorization/roleAssignments","name":"2f3b7710-abdd-11ed-8e93-42746b8cdccc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-13T20:30:05.9299217Z","updatedOn":"2023-02-13T20:30:05.9299217Z","createdBy":"40db9032-6efa-443b-a2df-6b0c1d107875","updatedBy":"40db9032-6efa-443b-a2df-6b0c1d107875","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/321b80cb-abdd-11ed-8e93-42746b8cdccc","type":"Microsoft.Authorization/roleAssignments","name":"321b80cb-abdd-11ed-8e93-42746b8cdccc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-14T20:20:30.1688349Z","updatedOn":"2023-02-14T20:20:30.1688349Z","createdBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","updatedBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/06359457-aca5-11ed-82a6-00155df41803","type":"Microsoft.Authorization/roleAssignments","name":"06359457-aca5-11ed-82a6-00155df41803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T01:37:21.5709630Z","updatedOn":"2023-02-15T01:37:21.5709630Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a7e1874-acd1-11ed-8639-d691c85c3a02","type":"Microsoft.Authorization/roleAssignments","name":"4a7e1874-acd1-11ed-8639-d691c85c3a02"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T09:59:56.7546952Z","updatedOn":"2023-02-15T09:59:56.7546952Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7fa783e6-ad17-11ed-97ee-000d3a9be92a","type":"Microsoft.Authorization/roleAssignments","name":"7fa783e6-ad17-11ed-97ee-000d3a9be92a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T10:00:02.7311424Z","updatedOn":"2023-02-15T10:00:02.7311424Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/836897a6-ad17-11ed-97ee-000d3a9be92a","type":"Microsoft.Authorization/roleAssignments","name":"836897a6-ad17-11ed-97ee-000d3a9be92a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T16:38:42.0341267Z","updatedOn":"2023-02-15T16:38:42.0341267Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3476476d-ad4f-11ed-8fa2-000d3a984fd4","type":"Microsoft.Authorization/roleAssignments","name":"3476476d-ad4f-11ed-8fa2-000d3a984fd4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T16:38:46.6959293Z","updatedOn":"2023-02-15T16:38:46.6959293Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/375326e5-ad4f-11ed-8fa2-000d3a984fd4","type":"Microsoft.Authorization/roleAssignments","name":"375326e5-ad4f-11ed-8fa2-000d3a984fd4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-17T06:21:34.8976862Z","updatedOn":"2023-02-17T06:21:34.8976862Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/52c15699-ae8b-11ed-b14e-023ef88171a7","type":"Microsoft.Authorization/roleAssignments","name":"52c15699-ae8b-11ed-b14e-023ef88171a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-19T02:02:00.9378377Z","updatedOn":"2023-02-19T02:02:00.9378377Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63ae64e6-aff9-11ed-967a-968963402bc6","type":"Microsoft.Authorization/roleAssignments","name":"63ae64e6-aff9-11ed-967a-968963402bc6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-19T02:02:05.4821651Z","updatedOn":"2023-02-19T02:02:05.4821651Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66639a26-aff9-11ed-967a-968963402bc6","type":"Microsoft.Authorization/roleAssignments","name":"66639a26-aff9-11ed-967a-968963402bc6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T09:22:38.4725256Z","updatedOn":"2023-02-21T09:22:38.4725256Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/48461efc-b1c9-11ed-bd41-3ed144e41689","type":"Microsoft.Authorization/roleAssignments","name":"48461efc-b1c9-11ed-bd41-3ed144e41689"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T09:22:42.2363452Z","updatedOn":"2023-02-21T09:22:42.2363452Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a784b6e-b1c9-11ed-bd41-3ed144e41689","type":"Microsoft.Authorization/roleAssignments","name":"4a784b6e-b1c9-11ed-bd41-3ed144e41689"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-23T03:00:31.5651965Z","updatedOn":"2023-02-23T03:00:31.5651965Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cef217b-a8cc-4115-a4bd-042af84325dc","type":"Microsoft.Authorization/roleAssignments","name":"3cef217b-a8cc-4115-a4bd-042af84325dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-23T06:48:16.8637402Z","updatedOn":"2023-02-23T06:48:16.8637402Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0c91daf6-b346-11ed-a964-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"0c91daf6-b346-11ed-a964-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-23T06:48:21.4826289Z","updatedOn":"2023-02-23T06:48:21.4826289Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f55d0c9-b346-11ed-a964-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"0f55d0c9-b346-11ed-a964-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T00:54:23.0966101Z","updatedOn":"2023-02-24T00:54:23.0966101Z","createdBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","updatedBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6e6a721-b3dd-11ed-b60f-0022481da32e","type":"Microsoft.Authorization/roleAssignments","name":"c6e6a721-b3dd-11ed-b60f-0022481da32e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T00:54:31.9826815Z","updatedOn":"2023-02-24T00:54:31.9826815Z","createdBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","updatedBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc3f3b4e-b3dd-11ed-b60f-0022481da32e","type":"Microsoft.Authorization/roleAssignments","name":"cc3f3b4e-b3dd-11ed-b60f-0022481da32e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T02:50:23.5663680Z","updatedOn":"2023-02-24T02:50:23.5663680Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb698872-b3ed-11ed-8f76-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"fb698872-b3ed-11ed-8f76-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T04:50:44.0913238Z","updatedOn":"2023-02-24T04:50:44.0913238Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cb72426d-4967-427c-8cf6-c167bc26814f","type":"Microsoft.Authorization/roleAssignments","name":"cb72426d-4967-427c-8cf6-c167bc26814f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T23:34:22.8669116Z","updatedOn":"2023-02-24T23:34:22.8669116Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3e6258b-b49b-11ed-90ef-000d3a0168de","type":"Microsoft.Authorization/roleAssignments","name":"c3e6258b-b49b-11ed-90ef-000d3a0168de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T23:34:26.7176031Z","updatedOn":"2023-02-24T23:34:26.7176031Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6438a56-b49b-11ed-90ef-000d3a0168de","type":"Microsoft.Authorization/roleAssignments","name":"c6438a56-b49b-11ed-90ef-000d3a0168de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-27T04:38:09.3994350Z","updatedOn":"2023-02-27T04:38:09.3994350Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b58ab305-83cc-4c4e-924b-3c1ba8ffcb83","type":"Microsoft.Authorization/roleAssignments","name":"b58ab305-83cc-4c4e-924b-3c1ba8ffcb83"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-27T04:38:09.8212573Z","updatedOn":"2023-02-27T04:38:09.8212573Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45883a93-4807-4bb9-a2b3-a7163d6c2031","type":"Microsoft.Authorization/roleAssignments","name":"45883a93-4807-4bb9-a2b3-a7163d6c2031"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T04:01:45.4038947Z","updatedOn":"2023-02-28T04:01:45.4038947Z","createdBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","updatedBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9d7a9b0f-b71c-11ed-b33b-6045bd7c1155","type":"Microsoft.Authorization/roleAssignments","name":"9d7a9b0f-b71c-11ed-b33b-6045bd7c1155"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T06:57:12.2026246Z","updatedOn":"2023-02-28T06:57:12.2026246Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1f6f0732-b735-11ed-be49-962abdd2f2a3","type":"Microsoft.Authorization/roleAssignments","name":"1f6f0732-b735-11ed-be49-962abdd2f2a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T15:32:52.3533623Z","updatedOn":"2023-02-28T15:32:52.3533623Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28e54510-b77d-11ed-bcc0-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"28e54510-b77d-11ed-bcc0-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T17:34:23.5106370Z","updatedOn":"2023-02-28T17:34:23.5106370Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/22f4b3a0-b78e-11ed-8898-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"22f4b3a0-b78e-11ed-8898-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T18:16:58.6154652Z","updatedOn":"2023-02-28T18:16:58.6154652Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15c84290-b794-11ed-ba68-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"15c84290-b794-11ed-ba68-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T19:50:58.1867864Z","updatedOn":"2023-03-01T19:50:58.1867864Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61f54236-b86a-11ed-96f5-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"61f54236-b86a-11ed-96f5-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T22:21:34.1000877Z","updatedOn":"2023-03-01T22:21:34.1000877Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b7ce6fa-b87f-11ed-858b-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"6b7ce6fa-b87f-11ed-858b-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T22:45:09.8437635Z","updatedOn":"2023-03-01T22:45:09.8437635Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7b17d80-b882-11ed-a5f7-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"b7b17d80-b882-11ed-a5f7-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T23:11:15.0259743Z","updatedOn":"2023-03-01T23:11:15.0259743Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5c9278f6-b886-11ed-83fe-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"5c9278f6-b886-11ed-83fe-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T06:31:28.5537789Z","updatedOn":"2023-03-02T06:31:28.5537789Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d301d940-45f5-4242-8a04-8ce059ee9054","type":"Microsoft.Authorization/roleAssignments","name":"d301d940-45f5-4242-8a04-8ce059ee9054"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T16:54:46.5495446Z","updatedOn":"2023-03-02T16:54:46.5495446Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef382e78-b91a-11ed-8fc9-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"ef382e78-b91a-11ed-8fc9-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T18:09:39.0923025Z","updatedOn":"2023-03-02T18:09:39.0923025Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65561192-b925-11ed-8582-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"65561192-b925-11ed-8582-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T18:09:44.0481916Z","updatedOn":"2023-03-02T18:09:44.0481916Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/68443e92-b925-11ed-8582-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"68443e92-b925-11ed-8582-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T20:44:44.0250379Z","updatedOn":"2023-03-02T20:44:44.0250379Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f118b20-b93b-11ed-9771-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"0f118b20-b93b-11ed-9771-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T21:25:21.6836921Z","updatedOn":"2023-03-02T21:25:21.6836921Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb99eb4e-b940-11ed-b11e-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"bb99eb4e-b940-11ed-b11e-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T22:13:06.5481097Z","updatedOn":"2023-03-02T22:13:06.5481097Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/671c9222-b947-11ed-bf55-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"671c9222-b947-11ed-bf55-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T23:21:53.5068345Z","updatedOn":"2023-03-02T23:21:53.5068345Z","createdBy":"6a70a9ce-9405-4447-867c-92746716ef5a","updatedBy":"6a70a9ce-9405-4447-867c-92746716ef5a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/03b3dac0-b951-11ed-a3db-5e7d78be13fb","type":"Microsoft.Authorization/roleAssignments","name":"03b3dac0-b951-11ed-a3db-5e7d78be13fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T23:21:58.2602277Z","updatedOn":"2023-03-02T23:21:58.2602277Z","createdBy":"6a70a9ce-9405-4447-867c-92746716ef5a","updatedBy":"6a70a9ce-9405-4447-867c-92746716ef5a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/06a1f991-b951-11ed-a3db-5e7d78be13fb","type":"Microsoft.Authorization/roleAssignments","name":"06a1f991-b951-11ed-a3db-5e7d78be13fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-03T08:24:31.2215832Z","updatedOn":"2023-03-03T08:24:31.2215832Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c439d06c-2e66-4cbc-9c42-f2e962b394a9","type":"Microsoft.Authorization/roleAssignments","name":"c439d06c-2e66-4cbc-9c42-f2e962b394a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-03T08:25:05.4966158Z","updatedOn":"2023-03-03T08:25:05.4966158Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12c86535-6761-4402-a871-c5ed84a4b236","type":"Microsoft.Authorization/roleAssignments","name":"12c86535-6761-4402-a871-c5ed84a4b236"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-06T23:11:36.9481730Z","updatedOn":"2023-03-06T23:11:36.9481730Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d91d90a-bc74-11ed-a26b-66106f6e7480","type":"Microsoft.Authorization/roleAssignments","name":"3d91d90a-bc74-11ed-a26b-66106f6e7480"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-07T11:10:24.3937430Z","updatedOn":"2023-03-07T11:10:24.3937430Z","createdBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","updatedBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a74aed5f-bcd8-11ed-9f36-2636f0255870","type":"Microsoft.Authorization/roleAssignments","name":"a74aed5f-bcd8-11ed-9f36-2636f0255870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-07T11:10:29.5524963Z","updatedOn":"2023-03-07T11:10:29.5524963Z","createdBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","updatedBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa4ebe62-bcd8-11ed-9f36-2636f0255870","type":"Microsoft.Authorization/roleAssignments","name":"aa4ebe62-bcd8-11ed-9f36-2636f0255870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-08T19:24:26.7238172Z","updatedOn":"2023-03-08T19:24:26.7238172Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d65c4fee-bde6-11ed-8e54-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"d65c4fee-bde6-11ed-8e54-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-08T19:24:31.6398973Z","updatedOn":"2023-03-08T19:24:31.6398973Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d90a67f8-bde6-11ed-8e54-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"d90a67f8-bde6-11ed-8e54-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-08T20:06:19.9493503Z","updatedOn":"2023-03-08T20:06:19.9493503Z","createdBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","updatedBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0af95de-bdec-11ed-9669-3e22fb431907","type":"Microsoft.Authorization/roleAssignments","name":"b0af95de-bdec-11ed-9669-3e22fb431907"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-09T01:58:48.5122241Z","updatedOn":"2023-03-09T01:58:48.5122241Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee1bd122-be1d-11ed-a53c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"ee1bd122-be1d-11ed-a53c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-09T17:44:00.7209931Z","updatedOn":"2023-03-09T17:44:00.7209931Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f932fb60-bea1-11ed-afcf-6e3850888c7e","type":"Microsoft.Authorization/roleAssignments","name":"f932fb60-bea1-11ed-afcf-6e3850888c7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-10T08:26:27.9057589Z","updatedOn":"2023-03-10T08:26:27.9057589Z","createdBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","updatedBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f911d1d-bf1d-11ed-a236-002248824659","type":"Microsoft.Authorization/roleAssignments","name":"3f911d1d-bf1d-11ed-a236-002248824659"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-10T08:26:33.2539857Z","updatedOn":"2023-03-10T08:26:33.2539857Z","createdBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","updatedBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42d7f7e6-bf1d-11ed-a236-002248824659","type":"Microsoft.Authorization/roleAssignments","name":"42d7f7e6-bf1d-11ed-a236-002248824659"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-11T05:53:49.4765844Z","updatedOn":"2023-03-11T05:53:49.4765844Z","createdBy":"d378d978-a2b7-46cf-b57b-1e586d281118","updatedBy":"d378d978-a2b7-46cf-b57b-1e586d281118","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/179b8d2a-bfd1-11ed-bd9a-3c52827953b3","type":"Microsoft.Authorization/roleAssignments","name":"179b8d2a-bfd1-11ed-bd9a-3c52827953b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-11T05:53:53.6955891Z","updatedOn":"2023-03-11T05:53:53.6955891Z","createdBy":"d378d978-a2b7-46cf-b57b-1e586d281118","updatedBy":"d378d978-a2b7-46cf-b57b-1e586d281118","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1a1e6965-bfd1-11ed-bd9a-3c52827953b3","type":"Microsoft.Authorization/roleAssignments","name":"1a1e6965-bfd1-11ed-bd9a-3c52827953b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T06:33:26.4594910Z","updatedOn":"2023-03-13T06:33:26.4594910Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b03e0140-e53e-491a-9a7b-e179fa1b8a7b","type":"Microsoft.Authorization/roleAssignments","name":"b03e0140-e53e-491a-9a7b-e179fa1b8a7b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T12:12:33.0193279Z","updatedOn":"2023-03-13T12:12:33.0193279Z","createdBy":"559c030a-5305-402e-ab3c-018e8b685492","updatedBy":"559c030a-5305-402e-ab3c-018e8b685492","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54e258e9-c198-11ed-8db5-be30b45d791c","type":"Microsoft.Authorization/roleAssignments","name":"54e258e9-c198-11ed-8db5-be30b45d791c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T12:12:36.9894487Z","updatedOn":"2023-03-13T12:12:36.9894487Z","createdBy":"559c030a-5305-402e-ab3c-018e8b685492","updatedBy":"559c030a-5305-402e-ab3c-018e8b685492","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/575c39c1-c198-11ed-8db5-be30b45d791c","type":"Microsoft.Authorization/roleAssignments","name":"575c39c1-c198-11ed-8db5-be30b45d791c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-14T18:19:52.2457482Z","updatedOn":"2023-03-14T18:19:52.2457482Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf500684-c294-11ed-aaa3-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"cf500684-c294-11ed-aaa3-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-15T17:17:49.1398598Z","updatedOn":"2023-03-15T17:17:49.1398598Z","createdBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","updatedBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4edbdd66-c355-11ed-8966-d85ed302bf1b","type":"Microsoft.Authorization/roleAssignments","name":"4edbdd66-c355-11ed-8966-d85ed302bf1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-16T00:14:24.3742157Z","updatedOn":"2023-03-16T00:14:24.3742157Z","createdBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","updatedBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7f7be49f-c38f-11ed-ba47-9e7a3e847acb","type":"Microsoft.Authorization/roleAssignments","name":"7f7be49f-c38f-11ed-ba47-9e7a3e847acb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-16T00:14:28.4721252Z","updatedOn":"2023-03-16T00:14:28.4721252Z","createdBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","updatedBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81c01cec-c38f-11ed-ba47-9e7a3e847acb","type":"Microsoft.Authorization/roleAssignments","name":"81c01cec-c38f-11ed-ba47-9e7a3e847acb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-20T06:05:05.2225187Z","updatedOn":"2023-03-20T06:05:05.2225187Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/27de0b5c-c6e5-11ed-8082-0ab78cd2e1ba","type":"Microsoft.Authorization/roleAssignments","name":"27de0b5c-c6e5-11ed-8082-0ab78cd2e1ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-20T19:31:51.9736494Z","updatedOn":"2023-03-20T19:31:51.9736494Z","createdBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","updatedBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dbc8c438-c755-11ed-8659-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"dbc8c438-c755-11ed-8659-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-20T19:31:55.5444616Z","updatedOn":"2023-03-20T19:31:55.5444616Z","createdBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","updatedBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e111eebf-c755-11ed-8659-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"e111eebf-c755-11ed-8659-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T07:50:31.4771973Z","updatedOn":"2023-03-21T07:50:31.4771973Z","createdBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","updatedBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c95fead-0a2b-4d52-a17d-1d3d17997871","type":"Microsoft.Authorization/roleAssignments","name":"6c95fead-0a2b-4d52-a17d-1d3d17997871"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T08:30:33.5552284Z","updatedOn":"2023-03-21T08:30:33.5552284Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a54293b5-c7c2-11ed-a7e6-000d3a044b73","type":"Microsoft.Authorization/roleAssignments","name":"a54293b5-c7c2-11ed-a7e6-000d3a044b73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T19:10:41.8785727Z","updatedOn":"2023-03-21T19:10:41.8785727Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12487a5a-c81c-11ed-ba46-827f6562cca2","type":"Microsoft.Authorization/roleAssignments","name":"12487a5a-c81c-11ed-ba46-827f6562cca2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T19:10:47.3524534Z","updatedOn":"2023-03-21T19:10:47.3524534Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15881bc6-c81c-11ed-ba46-827f6562cca2","type":"Microsoft.Authorization/roleAssignments","name":"15881bc6-c81c-11ed-ba46-827f6562cca2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-23T04:37:57.4678727Z","updatedOn":"2023-03-23T04:37:57.4678727Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b934178-c934-11ed-b9f7-6045bd80c6e6","type":"Microsoft.Authorization/roleAssignments","name":"7b934178-c934-11ed-b9f7-6045bd80c6e6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-27T05:50:19.8871681Z","updatedOn":"2023-03-27T05:50:19.8871681Z","createdBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","updatedBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/410882d1-cc63-11ed-ae41-0022480f1f08","type":"Microsoft.Authorization/roleAssignments","name":"410882d1-cc63-11ed-ae41-0022480f1f08"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-27T05:50:25.6681144Z","updatedOn":"2023-03-27T05:50:25.6681144Z","createdBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","updatedBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/441bda3a-cc63-11ed-ae41-0022480f1f08","type":"Microsoft.Authorization/roleAssignments","name":"441bda3a-cc63-11ed-ae41-0022480f1f08"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d24ecba3-c1f4-40fa-a7bb-4588a071e8fd","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:06.6052430Z","updatedOn":"2023-03-28T04:20:06.6052430Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/407210a5-bc55-40fb-91a9-92aa082cb413","type":"Microsoft.Authorization/roleAssignments","name":"407210a5-bc55-40fb-91a9-92aa082cb413"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:10.8566627Z","updatedOn":"2023-03-28T04:20:10.8566627Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24f5047d-db77-4702-ffab-aa7c979ea3ff","type":"Microsoft.Authorization/roleAssignments","name":"24f5047d-db77-4702-ffab-aa7c979ea3ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:10.9115871Z","updatedOn":"2023-03-28T04:20:10.9115871Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/58df4b89-0de1-4d34-1767-ac1e33e9acd8","type":"Microsoft.Authorization/roleAssignments","name":"58df4b89-0de1-4d34-1767-ac1e33e9acd8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.4495061Z","updatedOn":"2023-03-28T04:20:11.4495061Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a454de4-a1dc-4273-f384-029257fe5c7f","type":"Microsoft.Authorization/roleAssignments","name":"4a454de4-a1dc-4273-f384-029257fe5c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.2724262Z","updatedOn":"2023-03-28T04:20:11.2724262Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd662e52-e7fa-4eeb-5755-696d2e8169b9","type":"Microsoft.Authorization/roleAssignments","name":"cd662e52-e7fa-4eeb-5755-696d2e8169b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.4717540Z","updatedOn":"2023-03-28T04:20:11.4717540Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4680d2be-be84-417b-d222-07880110ada0","type":"Microsoft.Authorization/roleAssignments","name":"4680d2be-be84-417b-d222-07880110ada0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.5533314Z","updatedOn":"2023-03-28T04:20:11.5533314Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28dadd85-c2a5-420f-1563-a6ec9d26fd9a","type":"Microsoft.Authorization/roleAssignments","name":"28dadd85-c2a5-420f-1563-a6ec9d26fd9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.5554589Z","updatedOn":"2023-03-28T04:20:11.5554589Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d1872322-4fde-43f5-e2b4-325dda9f40ad","type":"Microsoft.Authorization/roleAssignments","name":"d1872322-4fde-43f5-e2b4-325dda9f40ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.8299726Z","updatedOn":"2023-03-28T04:20:11.8299726Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ede81bb8-d3cd-4dc8-0fd3-b0a2a5a42b23","type":"Microsoft.Authorization/roleAssignments","name":"ede81bb8-d3cd-4dc8-0fd3-b0a2a5a42b23"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T14:40:42.0514829Z","updatedOn":"2023-03-29T14:40:42.0514829Z","createdBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","updatedBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ae019e96-ce3f-11ed-aa9b-000d3a142c7f","type":"Microsoft.Authorization/roleAssignments","name":"ae019e96-ce3f-11ed-aa9b-000d3a142c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T14:40:45.8687684Z","updatedOn":"2023-03-29T14:40:45.8687684Z","createdBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","updatedBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0540ef4-ce3f-11ed-aa9b-000d3a142c7f","type":"Microsoft.Authorization/roleAssignments","name":"b0540ef4-ce3f-11ed-aa9b-000d3a142c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T17:23:15.2268767Z","updatedOn":"2023-03-29T17:23:15.2268767Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/636243ad-ce56-11ed-9744-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"636243ad-ce56-11ed-9744-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T17:23:18.8739735Z","updatedOn":"2023-03-29T17:23:18.8739735Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6586219c-ce56-11ed-9744-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"6586219c-ce56-11ed-9744-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T19:32:39.0885013Z","updatedOn":"2023-03-29T19:32:39.0885013Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/76c41cef-ce68-11ed-b18b-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"76c41cef-ce68-11ed-b18b-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T19:32:43.3448308Z","updatedOn":"2023-03-29T19:32:43.3448308Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/793f1b95-ce68-11ed-b18b-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"793f1b95-ce68-11ed-b18b-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T02:24:05.4290067Z","updatedOn":"2023-03-31T02:24:05.4290067Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1ad6198a-cf6b-11ed-8440-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"1ad6198a-cf6b-11ed-8440-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T02:24:09.9883076Z","updatedOn":"2023-03-31T02:24:09.9883076Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1dd45f87-cf6b-11ed-8440-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"1dd45f87-cf6b-11ed-8440-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T07:26:15.0154750Z","updatedOn":"2023-03-31T07:26:15.0154750Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/babc263e-1cc9-429d-babf-2b33c8e79093","type":"Microsoft.Authorization/roleAssignments","name":"babc263e-1cc9-429d-babf-2b33c8e79093"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T07:44:54.6073153Z","updatedOn":"2023-03-31T07:44:54.6073153Z","createdBy":"2996d4bf-d495-49f2-a2cd-8d684c724185","updatedBy":"2996d4bf-d495-49f2-a2cd-8d684c724185","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/828df835-2536-4c50-9397-90aabf94db75","type":"Microsoft.Authorization/roleAssignments","name":"828df835-2536-4c50-9397-90aabf94db75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T19:06:47.3414876Z","updatedOn":"2023-03-31T19:06:47.3414876Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2ea3ab94-cff7-11ed-b393-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"2ea3ab94-cff7-11ed-b393-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T19:08:21.6870221Z","updatedOn":"2023-03-31T19:08:21.6870221Z","createdBy":"367712bd-8587-45ef-9e63-1d269a194d53","updatedBy":"367712bd-8587-45ef-9e63-1d269a194d53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66e7009d-cff7-11ed-a7d9-002248a7a68e","type":"Microsoft.Authorization/roleAssignments","name":"66e7009d-cff7-11ed-a7d9-002248a7a68e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T19:08:26.3035343Z","updatedOn":"2023-03-31T19:08:26.3035343Z","createdBy":"367712bd-8587-45ef-9e63-1d269a194d53","updatedBy":"367712bd-8587-45ef-9e63-1d269a194d53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/69a1dd2e-cff7-11ed-a7d9-002248a7a68e","type":"Microsoft.Authorization/roleAssignments","name":"69a1dd2e-cff7-11ed-a7d9-002248a7a68e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-02T04:28:12.7151802Z","updatedOn":"2023-04-02T04:28:12.7151802Z","createdBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","updatedBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c7830a5d-d10e-11ed-a622-f24a877c1ab5","type":"Microsoft.Authorization/roleAssignments","name":"c7830a5d-d10e-11ed-a622-f24a877c1ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-02T04:28:15.3112141Z","updatedOn":"2023-04-02T04:28:15.3112141Z","createdBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","updatedBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9256530-d10e-11ed-a622-f24a877c1ab5","type":"Microsoft.Authorization/roleAssignments","name":"c9256530-d10e-11ed-a622-f24a877c1ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-05T00:24:25.1673334Z","updatedOn":"2023-04-05T00:24:25.1673334Z","createdBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","updatedBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/376ceec9-d348-11ed-9d01-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"376ceec9-d348-11ed-9d01-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-05T00:24:28.5013634Z","updatedOn":"2023-04-05T00:24:28.5013634Z","createdBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","updatedBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39762108-d348-11ed-9d01-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"39762108-d348-11ed-9d01-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-10T17:47:25.2219893Z","updatedOn":"2023-04-10T17:47:25.2219893Z","createdBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","updatedBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0866ce8-d7c7-11ed-a6a7-9660021dc7a9","type":"Microsoft.Authorization/roleAssignments","name":"c0866ce8-d7c7-11ed-a6a7-9660021dc7a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-10T17:47:29.2984077Z","updatedOn":"2023-04-10T17:47:29.2984077Z","createdBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","updatedBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3089c1c-d7c7-11ed-a6a7-9660021dc7a9","type":"Microsoft.Authorization/roleAssignments","name":"c3089c1c-d7c7-11ed-a6a7-9660021dc7a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-13T19:14:02.9424463Z","updatedOn":"2023-04-13T19:14:02.9424463Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d256d6e-ea9e-4124-8252-9da35a5e074b","type":"Microsoft.Authorization/roleAssignments","name":"0d256d6e-ea9e-4124-8252-9da35a5e074b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-17T15:47:32.8370892Z","updatedOn":"2023-04-17T15:47:32.8370892Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3d0f65d-4923-4776-8fb5-288240615c89","type":"Microsoft.Authorization/roleAssignments","name":"b3d0f65d-4923-4776-8fb5-288240615c89"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-17T16:09:03.8628586Z","updatedOn":"2023-04-17T16:09:03.8628586Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2eb3e3cb-598f-4048-aab3-0bd5a8b262ec","type":"Microsoft.Authorization/roleAssignments","name":"2eb3e3cb-598f-4048-aab3-0bd5a8b262ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-19T18:42:49.4053198Z","updatedOn":"2023-04-19T18:42:49.4053198Z","createdBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","updatedBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fba6c131-dee1-11ed-af88-000d3a23f184","type":"Microsoft.Authorization/roleAssignments","name":"fba6c131-dee1-11ed-af88-000d3a23f184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-19T18:42:53.2275925Z","updatedOn":"2023-04-19T18:42:53.2275925Z","createdBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","updatedBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdf8a1c6-dee1-11ed-af88-000d3a23f184","type":"Microsoft.Authorization/roleAssignments","name":"fdf8a1c6-dee1-11ed-af88-000d3a23f184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-19T20:38:29.3110777Z","updatedOn":"2023-04-19T20:38:29.3110777Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23e3d8f0-def2-11ed-8cbe-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"23e3d8f0-def2-11ed-8cbe-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-20T23:41:52.6427527Z","updatedOn":"2023-04-20T23:41:52.6427527Z","createdBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","updatedBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4daefdda-d51e-55b7-9175-548688500778","type":"Microsoft.Authorization/roleAssignments","name":"4daefdda-d51e-55b7-9175-548688500778"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-21T17:49:07.3103199Z","updatedOn":"2023-04-21T17:49:07.3103199Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cfcbdd18-e06c-11ed-8b1a-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"cfcbdd18-e06c-11ed-8b1a-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-21T19:58:00.4291773Z","updatedOn":"2023-04-21T19:58:00.4291773Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d1321fac-e07e-11ed-9f07-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"d1321fac-e07e-11ed-9f07-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-25T18:19:28.7344580Z","updatedOn":"2023-04-25T18:19:28.7344580Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d940b7e-a372-438c-89b3-fe59be8a3d63","type":"Microsoft.Authorization/roleAssignments","name":"6d940b7e-a372-438c-89b3-fe59be8a3d63"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-26T15:27:00.5297027Z","updatedOn":"2023-04-26T15:27:00.5297027Z","createdBy":"b2192440-253a-42f2-8429-40f3820b89be","updatedBy":"b2192440-253a-42f2-8429-40f3820b89be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9b0c1c0-e446-11ed-a01b-00155d1f6f24","type":"Microsoft.Authorization/roleAssignments","name":"c9b0c1c0-e446-11ed-a01b-00155d1f6f24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-26T15:27:03.8070654Z","updatedOn":"2023-04-26T15:27:03.8070654Z","createdBy":"b2192440-253a-42f2-8429-40f3820b89be","updatedBy":"b2192440-253a-42f2-8429-40f3820b89be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbabbec4-e446-11ed-a01b-00155d1f6f24","type":"Microsoft.Authorization/roleAssignments","name":"cbabbec4-e446-11ed-a01b-00155d1f6f24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-28T14:39:15.9639397Z","updatedOn":"2023-04-28T14:39:15.9639397Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/731ed5b6-e5d2-11ed-b4a6-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"731ed5b6-e5d2-11ed-b4a6-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-28T14:39:19.9194172Z","updatedOn":"2023-04-28T14:39:19.9194172Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/757edff4-e5d2-11ed-b4a6-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"757edff4-e5d2-11ed-b4a6-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/974c5e8b-45b9-4653-ba55-5f855dd0fb88","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-01T21:15:30.3600778Z","updatedOn":"2023-05-01T21:15:30.3600778Z","createdBy":"5bef4afd-1360-40a2-ac51-9339229af623","updatedBy":"5bef4afd-1360-40a2-ac51-9339229af623","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4cff74bd-e865-11ed-bd8b-5e022905d313","type":"Microsoft.Authorization/roleAssignments","name":"4cff74bd-e865-11ed-bd8b-5e022905d313"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-01T21:15:34.1175433Z","updatedOn":"2023-05-01T21:15:34.1175433Z","createdBy":"5bef4afd-1360-40a2-ac51-9339229af623","updatedBy":"5bef4afd-1360-40a2-ac51-9339229af623","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4f3e2c7f-e865-11ed-bd8b-5e022905d313","type":"Microsoft.Authorization/roleAssignments","name":"4f3e2c7f-e865-11ed-bd8b-5e022905d313"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-01T22:25:20.9242136Z","updatedOn":"2023-05-01T22:25:20.9242136Z","createdBy":"1ae4ccb9-fb9e-49c0-b500-10d71ff2e737","updatedBy":"1ae4ccb9-fb9e-49c0-b500-10d71ff2e737","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/112fdd75-6ef8-4016-b550-eec1b3c20720","type":"Microsoft.Authorization/roleAssignments","name":"112fdd75-6ef8-4016-b550-eec1b3c20720"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T12:17:42.9403161Z","updatedOn":"2023-05-04T12:17:42.9403161Z","createdBy":"7206144a-a8f7-442f-994e-850c46730a52","updatedBy":"7206144a-a8f7-442f-994e-850c46730a52","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ab58b8d1-ea75-11ed-8e28-8c164501ca31","type":"Microsoft.Authorization/roleAssignments","name":"ab58b8d1-ea75-11ed-8e28-8c164501ca31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T12:17:48.5968787Z","updatedOn":"2023-05-04T12:17:48.5968787Z","createdBy":"7206144a-a8f7-442f-994e-850c46730a52","updatedBy":"7206144a-a8f7-442f-994e-850c46730a52","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aeac0cc1-ea75-11ed-8e28-8c164501ca31","type":"Microsoft.Authorization/roleAssignments","name":"aeac0cc1-ea75-11ed-8e28-8c164501ca31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T14:59:12.9566578Z","updatedOn":"2023-05-04T14:59:12.9566578Z","createdBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","updatedBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a379e3f-ea8c-11ed-b7f9-5254000f02cc","type":"Microsoft.Authorization/roleAssignments","name":"3a379e3f-ea8c-11ed-b7f9-5254000f02cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T14:59:17.0941141Z","updatedOn":"2023-05-04T14:59:17.0941141Z","createdBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","updatedBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cc57207-ea8c-11ed-b7f9-5254000f02cc","type":"Microsoft.Authorization/roleAssignments","name":"3cc57207-ea8c-11ed-b7f9-5254000f02cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-08T17:20:32.4213470Z","updatedOn":"2023-05-08T17:20:32.4213470Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fcb9cd22-d202-49b5-ac49-63b77db3c355","type":"Microsoft.Authorization/roleAssignments","name":"fcb9cd22-d202-49b5-ac49-63b77db3c355"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-08T18:57:28.0040779Z","updatedOn":"2023-05-08T18:57:28.0040779Z","createdBy":"a4ff7404-5868-4532-ab16-142dad6a55af","updatedBy":"a4ff7404-5868-4532-ab16-142dad6a55af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d38f814-edd2-11ed-b548-000d3af78112","type":"Microsoft.Authorization/roleAssignments","name":"2d38f814-edd2-11ed-b548-000d3af78112"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-08T18:57:31.3014429Z","updatedOn":"2023-05-08T18:57:31.3014429Z","createdBy":"a4ff7404-5868-4532-ab16-142dad6a55af","updatedBy":"a4ff7404-5868-4532-ab16-142dad6a55af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f311f92-edd2-11ed-b548-000d3af78112","type":"Microsoft.Authorization/roleAssignments","name":"2f311f92-edd2-11ed-b548-000d3af78112"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T19:02:07.8525568Z","updatedOn":"2023-05-10T19:02:07.8525568Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dedfb4b8-f315-5b5a-b52f-afbb2a175cd5","type":"Microsoft.Authorization/roleAssignments","name":"dedfb4b8-f315-5b5a-b52f-afbb2a175cd5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T19:02:07.5081592Z","updatedOn":"2023-05-10T19:02:07.5081592Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dcfe553d-97cc-5084-b369-d557cd90b386","type":"Microsoft.Authorization/roleAssignments","name":"dcfe553d-97cc-5084-b369-d557cd90b386"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T08:58:12.7125916Z","updatedOn":"2023-05-10T08:58:12.7125916Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d8f9d929-9d3d-42df-a8fe-5f0ceb0bba3e","type":"Microsoft.Authorization/roleAssignments","name":"d8f9d929-9d3d-42df-a8fe-5f0ceb0bba3e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T09:31:17.2430697Z","updatedOn":"2023-05-10T09:31:17.2430697Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3fd12d91-3e5a-4061-bcb2-05a9732b9159","type":"Microsoft.Authorization/roleAssignments","name":"3fd12d91-3e5a-4061-bcb2-05a9732b9159"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:43:09.6330210Z","updatedOn":"2023-05-10T16:43:09.6330210Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/becaa992-ef51-11ed-bf36-f6f4c2331193","type":"Microsoft.Authorization/roleAssignments","name":"becaa992-ef51-11ed-bf36-f6f4c2331193"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:43:13.3065725Z","updatedOn":"2023-05-10T16:43:13.3065725Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0ffd61a-ef51-11ed-bf36-f6f4c2331193","type":"Microsoft.Authorization/roleAssignments","name":"c0ffd61a-ef51-11ed-bf36-f6f4c2331193"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T21:23:06.4822851Z","updatedOn":"2023-05-10T21:23:06.4822851Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/db3e8912-ef78-11ed-9094-0ed70c823176","type":"Microsoft.Authorization/roleAssignments","name":"db3e8912-ef78-11ed-9094-0ed70c823176"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T21:23:10.1751715Z","updatedOn":"2023-05-10T21:23:10.1751715Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd8c02e4-ef78-11ed-9094-0ed70c823176","type":"Microsoft.Authorization/roleAssignments","name":"dd8c02e4-ef78-11ed-9094-0ed70c823176"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-12T17:27:33.1207504Z","updatedOn":"2023-05-12T17:27:33.1207504Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b59475c1-c560-4221-a59e-8c9f845d824c","type":"Microsoft.Authorization/roleAssignments","name":"b59475c1-c560-4221-a59e-8c9f845d824c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T18:50:21.8951381Z","updatedOn":"2023-05-15T18:50:21.8951381Z","createdBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","updatedBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57f8b39a-f351-11ed-a7a2-d28ee6de8df2","type":"Microsoft.Authorization/roleAssignments","name":"57f8b39a-f351-11ed-a7a2-d28ee6de8df2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T18:50:26.0744382Z","updatedOn":"2023-05-15T18:50:26.0744382Z","createdBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","updatedBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5a738a82-f351-11ed-a7a2-d28ee6de8df2","type":"Microsoft.Authorization/roleAssignments","name":"5a738a82-f351-11ed-a7a2-d28ee6de8df2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T20:09:25.9908381Z","updatedOn":"2023-05-15T20:09:25.9908381Z","createdBy":"1f978537-bb5b-4c76-9021-fb832071f334","updatedBy":"1f978537-bb5b-4c76-9021-fb832071f334","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63c222a4-f35c-11ed-a054-6e098a288f3f","type":"Microsoft.Authorization/roleAssignments","name":"63c222a4-f35c-11ed-a054-6e098a288f3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T20:09:35.2733605Z","updatedOn":"2023-05-15T20:09:35.2733605Z","createdBy":"1f978537-bb5b-4c76-9021-fb832071f334","updatedBy":"1f978537-bb5b-4c76-9021-fb832071f334","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6941144c-f35c-11ed-a054-6e098a288f3f","type":"Microsoft.Authorization/roleAssignments","name":"6941144c-f35c-11ed-a054-6e098a288f3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-17T20:10:57.7226371Z","updatedOn":"2023-05-17T20:10:57.7226371Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eda389e3-f4ee-11ed-b5ec-00155d3916e4","type":"Microsoft.Authorization/roleAssignments","name":"eda389e3-f4ee-11ed-b5ec-00155d3916e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-17T20:11:02.1123126Z","updatedOn":"2023-05-17T20:11:02.1123126Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f013376b-f4ee-11ed-b5ec-00155d3916e4","type":"Microsoft.Authorization/roleAssignments","name":"f013376b-f4ee-11ed-b5ec-00155d3916e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-19T16:27:28.8077810Z","updatedOn":"2023-05-19T16:27:28.8077810Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0bb8ff8d-f662-11ed-8f49-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"0bb8ff8d-f662-11ed-8f49-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-19T16:27:33.8052285Z","updatedOn":"2023-05-19T16:27:33.8052285Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ec6735e-f662-11ed-8f49-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"0ec6735e-f662-11ed-8f49-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-22T21:25:31.6093600Z","updatedOn":"2023-05-22T21:25:31.6093600Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d4e15d6-f8e7-11ed-8d3d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2d4e15d6-f8e7-11ed-8d3d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-22T21:25:39.5158809Z","updatedOn":"2023-05-22T21:25:39.5158809Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3232bc64-f8e7-11ed-8d3d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"3232bc64-f8e7-11ed-8d3d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T14:26:30.7681910Z","updatedOn":"2023-05-23T14:26:30.7681910Z","createdBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","updatedBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","delegatedManagedIdentityResourceId":null,"description":"Test + service principal"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/60f05fed-3b0c-4a91-86aa-44a327ded351","type":"Microsoft.Authorization/roleAssignments","name":"60f05fed-3b0c-4a91-86aa-44a327ded351"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T18:52:45.1223272Z","updatedOn":"2023-05-23T18:52:45.1223272Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47caa5b3-b27e-4f95-82b1-b5f87095df3a","type":"Microsoft.Authorization/roleAssignments","name":"47caa5b3-b27e-4f95-82b1-b5f87095df3a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T21:08:13.2773990Z","updatedOn":"2023-05-23T21:08:13.2773990Z","createdBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","updatedBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","delegatedManagedIdentityResourceId":null,"description":"Test + service principal"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79efe060-bf11-43db-ae9d-b281c8d0a9d8","type":"Microsoft.Authorization/roleAssignments","name":"79efe060-bf11-43db-ae9d-b281c8d0a9d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T23:58:25.0358872Z","updatedOn":"2023-05-23T23:58:25.0358872Z","createdBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","updatedBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3ca2af8-f9c5-11ed-9d5d-e64a5a4d2331","type":"Microsoft.Authorization/roleAssignments","name":"b3ca2af8-f9c5-11ed-9d5d-e64a5a4d2331"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T23:58:29.5965022Z","updatedOn":"2023-05-23T23:58:29.5965022Z","createdBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","updatedBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b699d06c-f9c5-11ed-9d5d-e64a5a4d2331","type":"Microsoft.Authorization/roleAssignments","name":"b699d06c-f9c5-11ed-9d5d-e64a5a4d2331"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-25T17:39:08.1426685Z","updatedOn":"2023-05-25T17:39:08.1426685Z","createdBy":"d87783d5-8706-48d6-ba20-d688d69119b2","updatedBy":"d87783d5-8706-48d6-ba20-d688d69119b2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23e6f3b5-225b-4e09-b962-619645aa3b66","type":"Microsoft.Authorization/roleAssignments","name":"23e6f3b5-225b-4e09-b962-619645aa3b66"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-25T20:11:52.1711289Z","updatedOn":"2023-05-25T20:11:52.1711289Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54d2e488-f4a3-4484-802e-ccd2bf4e0973","type":"Microsoft.Authorization/roleAssignments","name":"54d2e488-f4a3-4484-802e-ccd2bf4e0973"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-26T19:08:12.5337243Z","updatedOn":"2023-05-26T19:08:12.5337243Z","createdBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","updatedBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce436091-fe0c-51ad-a3a4-65285790684d","type":"Microsoft.Authorization/roleAssignments","name":"ce436091-fe0c-51ad-a3a4-65285790684d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-26T23:15:50.9221989Z","updatedOn":"2023-05-26T23:15:50.9221989Z","createdBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","updatedBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42aa6334-fc1b-11ed-8275-faccf5616d1b","type":"Microsoft.Authorization/roleAssignments","name":"42aa6334-fc1b-11ed-8275-faccf5616d1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-26T23:15:55.3490253Z","updatedOn":"2023-05-26T23:15:55.3490253Z","createdBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","updatedBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45629004-fc1b-11ed-8275-faccf5616d1b","type":"Microsoft.Authorization/roleAssignments","name":"45629004-fc1b-11ed-8275-faccf5616d1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-31T01:54:29.1188102Z","updatedOn":"2023-05-31T01:54:29.1188102Z","createdBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","updatedBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/13eebbd0-ff56-11ed-9bfa-02e332bf0a73","type":"Microsoft.Authorization/roleAssignments","name":"13eebbd0-ff56-11ed-9bfa-02e332bf0a73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-31T01:54:33.3318294Z","updatedOn":"2023-05-31T01:54:33.3318294Z","createdBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","updatedBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/166f22cd-ff56-11ed-9bfa-02e332bf0a73","type":"Microsoft.Authorization/roleAssignments","name":"166f22cd-ff56-11ed-9bfa-02e332bf0a73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-01T17:50:33.3890390Z","updatedOn":"2023-06-01T17:50:33.3890390Z","createdBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","updatedBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce40a1ba-00a4-11ee-9cf5-00155d28851f","type":"Microsoft.Authorization/roleAssignments","name":"ce40a1ba-00a4-11ee-9cf5-00155d28851f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-01T17:50:37.1678380Z","updatedOn":"2023-06-01T17:50:37.1678380Z","createdBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","updatedBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0850dfa-00a4-11ee-9cf5-00155d28851f","type":"Microsoft.Authorization/roleAssignments","name":"d0850dfa-00a4-11ee-9cf5-00155d28851f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-02T17:57:26.0215079Z","updatedOn":"2023-06-02T17:57:26.0215079Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd9cd89b-ff35-4fa2-9e07-0680ad3fa370","type":"Microsoft.Authorization/roleAssignments","name":"dd9cd89b-ff35-4fa2-9e07-0680ad3fa370"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-02T18:03:23.7925935Z","updatedOn":"2023-06-02T18:03:23.7925935Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d95aec2a-6adc-44a7-bd96-33d53af658bd","type":"Microsoft.Authorization/roleAssignments","name":"d95aec2a-6adc-44a7-bd96-33d53af658bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-03T02:03:08.3558097Z","updatedOn":"2023-06-03T02:03:08.3558097Z","createdBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","updatedBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c0f55e9-ff8c-410b-84c8-c613d1c425d1","type":"Microsoft.Authorization/roleAssignments","name":"6c0f55e9-ff8c-410b-84c8-c613d1c425d1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:28:30.6187015Z","updatedOn":"2023-06-05T17:28:30.6187015Z","createdBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","updatedBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63598898-03c6-11ee-a3b2-00155d87caab","type":"Microsoft.Authorization/roleAssignments","name":"63598898-03c6-11ee-a3b2-00155d87caab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:28:40.0597663Z","updatedOn":"2023-06-05T17:28:40.0597663Z","createdBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","updatedBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/68f66863-03c6-11ee-a3b2-00155d87caab","type":"Microsoft.Authorization/roleAssignments","name":"68f66863-03c6-11ee-a3b2-00155d87caab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:56:05.4845273Z","updatedOn":"2023-06-05T17:56:05.4845273Z","createdBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","updatedBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3dc7635d-03ca-11ee-aaaf-00155da910be","type":"Microsoft.Authorization/roleAssignments","name":"3dc7635d-03ca-11ee-aaaf-00155da910be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:56:09.7600652Z","updatedOn":"2023-06-05T17:56:09.7600652Z","createdBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","updatedBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40502bdc-03ca-11ee-aaaf-00155da910be","type":"Microsoft.Authorization/roleAssignments","name":"40502bdc-03ca-11ee-aaaf-00155da910be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T01:05:13.7066693Z","updatedOn":"2023-06-06T01:05:13.7066693Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/30f7f3e5-0406-11ee-b551-0022482d400c","type":"Microsoft.Authorization/roleAssignments","name":"30f7f3e5-0406-11ee-b551-0022482d400c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T05:00:05.2963688Z","updatedOn":"2023-06-06T05:00:05.2963688Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":"add + RCG-Read Write-CG-23637\n"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca637efb-b6e1-4bf5-bb88-a6724eacb0a7","type":"Microsoft.Authorization/roleAssignments","name":"ca637efb-b6e1-4bf5-bb88-a6724eacb0a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T17:38:31.9010821Z","updatedOn":"2023-06-06T17:38:31.9010821Z","createdBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","updatedBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4658d49-0490-11ee-994b-00155db896c4","type":"Microsoft.Authorization/roleAssignments","name":"f4658d49-0490-11ee-994b-00155db896c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T17:38:35.1906894Z","updatedOn":"2023-06-06T17:38:35.1906894Z","createdBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","updatedBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6601fef-0490-11ee-994b-00155db896c4","type":"Microsoft.Authorization/roleAssignments","name":"f6601fef-0490-11ee-994b-00155db896c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-07T01:57:45.0424798Z","updatedOn":"2023-06-07T01:57:45.0424798Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b19ebd13-04d6-11ee-b0e1-000d3a1d1b64","type":"Microsoft.Authorization/roleAssignments","name":"b19ebd13-04d6-11ee-b0e1-000d3a1d1b64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-07T18:06:20.2372529Z","updatedOn":"2023-06-07T18:06:20.2372529Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/944021da-5dd6-47df-b8bd-2b702ec66b62","type":"Microsoft.Authorization/roleAssignments","name":"944021da-5dd6-47df-b8bd-2b702ec66b62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-08T18:05:13.4812189Z","updatedOn":"2023-06-08T18:05:13.4812189Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/03b31b12-0627-11ee-a6d2-002248be7b21","type":"Microsoft.Authorization/roleAssignments","name":"03b31b12-0627-11ee-a6d2-002248be7b21"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-08T18:05:17.6164752Z","updatedOn":"2023-06-08T18:05:17.6164752Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/061fcfb9-0627-11ee-a6d2-002248be7b21","type":"Microsoft.Authorization/roleAssignments","name":"061fcfb9-0627-11ee-a6d2-002248be7b21"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T21:54:46.4146879Z","updatedOn":"2023-06-09T21:54:46.4146879Z","createdBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","updatedBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f5dc66d-0710-11ee-931c-00155d54ed98","type":"Microsoft.Authorization/roleAssignments","name":"3f5dc66d-0710-11ee-931c-00155d54ed98"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T21:54:50.2224528Z","updatedOn":"2023-06-09T21:54:50.2224528Z","createdBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","updatedBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41a244d2-0710-11ee-931c-00155d54ed98","type":"Microsoft.Authorization/roleAssignments","name":"41a244d2-0710-11ee-931c-00155d54ed98"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T22:15:22.1460837Z","updatedOn":"2023-06-09T22:15:22.1460837Z","createdBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","updatedBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1f99aa10-0713-11ee-9f64-00155dba898f","type":"Microsoft.Authorization/roleAssignments","name":"1f99aa10-0713-11ee-9f64-00155dba898f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T22:15:26.3614867Z","updatedOn":"2023-06-09T22:15:26.3614867Z","createdBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","updatedBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/221f3106-0713-11ee-9f64-00155dba898f","type":"Microsoft.Authorization/roleAssignments","name":"221f3106-0713-11ee-9f64-00155dba898f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-10T00:10:29.8161145Z","updatedOn":"2023-06-10T00:10:29.8161145Z","createdBy":"7df1b69c-686b-452a-9f60-59b12a299512","updatedBy":"7df1b69c-686b-452a-9f60-59b12a299512","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3547a3a6-0723-11ee-af96-521cf0d5af1e","type":"Microsoft.Authorization/roleAssignments","name":"3547a3a6-0723-11ee-af96-521cf0d5af1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-10T00:10:33.6141995Z","updatedOn":"2023-06-10T00:10:33.6141995Z","createdBy":"7df1b69c-686b-452a-9f60-59b12a299512","updatedBy":"7df1b69c-686b-452a-9f60-59b12a299512","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/377f6236-0723-11ee-af96-521cf0d5af1e","type":"Microsoft.Authorization/roleAssignments","name":"377f6236-0723-11ee-af96-521cf0d5af1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-12T03:43:13.3971745Z","updatedOn":"2023-06-12T03:43:13.3971745Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/417d165a-08d3-11ee-8ac2-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"417d165a-08d3-11ee-8ac2-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-12T05:29:01.6737026Z","updatedOn":"2023-06-12T05:29:01.6737026Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b154a136-cc93-46f2-8a71-079a399ec467","type":"Microsoft.Authorization/roleAssignments","name":"b154a136-cc93-46f2-8a71-079a399ec467"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-12T07:33:06.7743063Z","updatedOn":"2023-06-12T07:33:06.7743063Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5d216b6f-33aa-40e9-8b1d-c399739dab45","type":"Microsoft.Authorization/roleAssignments","name":"5d216b6f-33aa-40e9-8b1d-c399739dab45"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T00:55:32.6278707Z","updatedOn":"2023-06-13T00:55:32.6278707Z","createdBy":"859286db-3db2-4ba3-a081-93ef7001669f","updatedBy":"859286db-3db2-4ba3-a081-93ef7001669f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ff444828-0984-11ee-aeab-a6b46b784ab5","type":"Microsoft.Authorization/roleAssignments","name":"ff444828-0984-11ee-aeab-a6b46b784ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T00:55:37.9764519Z","updatedOn":"2023-06-13T00:55:37.9764519Z","createdBy":"859286db-3db2-4ba3-a081-93ef7001669f","updatedBy":"859286db-3db2-4ba3-a081-93ef7001669f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/02794298-0985-11ee-aeab-a6b46b784ab5","type":"Microsoft.Authorization/roleAssignments","name":"02794298-0985-11ee-aeab-a6b46b784ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T00:56:32.2043149Z","updatedOn":"2023-06-13T00:56:32.2043149Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39cae6b9-bfce-4d39-8a33-55001e8e7b87","type":"Microsoft.Authorization/roleAssignments","name":"39cae6b9-bfce-4d39-8a33-55001e8e7b87"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T17:52:57.9703504Z","updatedOn":"2023-06-13T17:52:57.9703504Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57f9abab-a02d-4961-aa68-f7b9a39940e6","type":"Microsoft.Authorization/roleAssignments","name":"57f9abab-a02d-4961-aa68-f7b9a39940e6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T17:54:34.0715865Z","updatedOn":"2023-06-13T17:54:34.0715865Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4caed6f2-725f-4ba4-918a-6b874a08574f","type":"Microsoft.Authorization/roleAssignments","name":"4caed6f2-725f-4ba4-918a-6b874a08574f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f58310d9-a9f6-439a-9e8d-f62e7b41a168","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T18:35:01.5499775Z","updatedOn":"2023-06-13T18:35:01.5499775Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b89c4524-5b48-40cb-9a55-b9712852158d","type":"Microsoft.Authorization/roleAssignments","name":"b89c4524-5b48-40cb-9a55-b9712852158d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T19:11:38.6491712Z","updatedOn":"2023-06-13T19:11:38.6491712Z","createdBy":"d87783d5-8706-48d6-ba20-d688d69119b2","updatedBy":"d87783d5-8706-48d6-ba20-d688d69119b2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09b91438-5494-4648-9766-b0079f6970de","type":"Microsoft.Authorization/roleAssignments","name":"09b91438-5494-4648-9766-b0079f6970de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T19:56:31.5140590Z","updatedOn":"2023-06-13T19:56:31.5140590Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0042f368-b701-4c14-8177-38b23d027a7e","type":"Microsoft.Authorization/roleAssignments","name":"0042f368-b701-4c14-8177-38b23d027a7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T12:57:07.9074452Z","updatedOn":"2023-06-14T12:57:07.9074452Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7e7c27e-0ab2-11ee-a74d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f7e7c27e-0ab2-11ee-a74d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T12:57:11.6755824Z","updatedOn":"2023-06-14T12:57:11.6755824Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa216932-0ab2-11ee-a74d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"fa216932-0ab2-11ee-a74d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T17:38:49.2228645Z","updatedOn":"2023-06-14T17:38:49.2228645Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84bddd3a-c733-408c-b9f2-689e5458a38f","type":"Microsoft.Authorization/roleAssignments","name":"84bddd3a-c733-408c-b9f2-689e5458a38f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T17:38:48.8722593Z","updatedOn":"2023-06-14T17:38:48.8722593Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8aa8e9b1-633b-4e0d-b371-8d21cfdf950a","type":"Microsoft.Authorization/roleAssignments","name":"8aa8e9b1-633b-4e0d-b371-8d21cfdf950a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T17:38:48.8686689Z","updatedOn":"2023-06-14T17:38:48.8686689Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef3807a5-a1bb-4bae-a3d7-781a09a2a198","type":"Microsoft.Authorization/roleAssignments","name":"ef3807a5-a1bb-4bae-a3d7-781a09a2a198"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-15T04:35:58.2394520Z","updatedOn":"2023-06-15T04:35:58.2394520Z","createdBy":"2b03ec40-0dfd-4eed-b0fa-340cf6c5d724","updatedBy":"2b03ec40-0dfd-4eed-b0fa-340cf6c5d724","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1f59df33-0b36-11ee-ac8f-6045bdab405e","type":"Microsoft.Authorization/roleAssignments","name":"1f59df33-0b36-11ee-ac8f-6045bdab405e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-15T04:36:02.5191111Z","updatedOn":"2023-06-15T04:36:02.5191111Z","createdBy":"2b03ec40-0dfd-4eed-b0fa-340cf6c5d724","updatedBy":"2b03ec40-0dfd-4eed-b0fa-340cf6c5d724","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/21f01802-0b36-11ee-ac8f-6045bdab405e","type":"Microsoft.Authorization/roleAssignments","name":"21f01802-0b36-11ee-ac8f-6045bdab405e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-12T17:41:39.7941619Z","updatedOn":"2021-03-12T17:41:39.7941619Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4625aa1-611e-448a-bf3e-f37f2bc878a3","type":"Microsoft.Authorization/roleAssignments","name":"d4625aa1-611e-448a-bf3e-f37f2bc878a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-16T23:49:03.3523073Z","updatedOn":"2021-03-16T23:49:03.3523073Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f33005f1-10be-43e3-a87f-9e2f954fb2db","type":"Microsoft.Authorization/roleAssignments","name":"f33005f1-10be-43e3-a87f-9e2f954fb2db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-25T00:58:10.6501184Z","updatedOn":"2021-03-25T00:58:10.6501184Z","createdBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","updatedBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2aca810c-8d05-11eb-bd25-000d3a4359fa","type":"Microsoft.Authorization/roleAssignments","name":"2aca810c-8d05-11eb-bd25-000d3a4359fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-26T10:24:43.4077585Z","updatedOn":"2021-03-26T10:24:43.4077585Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/779ad30e-8e1d-11eb-8aa9-000d3ac754e3","type":"Microsoft.Authorization/roleAssignments","name":"779ad30e-8e1d-11eb-8aa9-000d3ac754e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/46610f90-7283-a03b-3791-33f202e8180c","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T22:46:23.4119129Z","updatedOn":"2022-01-27T22:46:23.4119129Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/46610f90-7283-a03b-3791-33f202e8180c/providers/Microsoft.Authorization/roleAssignments/d92f870d-03da-4626-a453-84734da0b49c","type":"Microsoft.Authorization/roleAssignments","name":"d92f870d-03da-4626-a453-84734da0b49c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.8423155Z","updatedOn":"2019-03-26T22:01:02.8423155Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad/providers/Microsoft.Authorization/roleAssignments/3d069c98-e792-47bd-b58a-399e2d42dbab","type":"Microsoft.Authorization/roleAssignments","name":"3d069c98-e792-47bd-b58a-399e2d42dbab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad","condition":null,"conditionVersion":null,"createdOn":"2021-04-09T18:15:49.7063250Z","updatedOn":"2021-04-09T18:15:49.7063250Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad/providers/Microsoft.Authorization/roleAssignments/a6b435df-80e6-4a7b-b109-2af5f373d238","type":"Microsoft.Authorization/roleAssignments","name":"a6b435df-80e6-4a7b-b109-2af5f373d238"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9176787Z","updatedOn":"2019-03-26T22:01:02.9176787Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320","type":"Microsoft.Authorization/roleAssignments","name":"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:49:37.3000523Z","updatedOn":"2019-03-27T00:49:37.3000523Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29","type":"Microsoft.Authorization/roleAssignments","name":"e6e1fffd-83f7-40c7-9f33-e56e2cf75b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:50:08.3039053Z","updatedOn":"2019-03-27T00:50:08.3039053Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12","type":"Microsoft.Authorization/roleAssignments","name":"3d01f56e-ee3a-41ed-a775-0e067546cb12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T23:11:28.9217618Z","updatedOn":"2022-06-28T23:11:28.9217618Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/869183bd-893a-46f9-bb02-45e48b13f1be","type":"Microsoft.Authorization/roleAssignments","name":"869183bd-893a-46f9-bb02-45e48b13f1be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T22:32:46.2324804Z","updatedOn":"2023-02-21T22:32:46.2324804Z","createdBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","updatedBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/df7c1e07-5c2d-4b22-b7b9-fd11a8569db3","type":"Microsoft.Authorization/roleAssignments","name":"df7c1e07-5c2d-4b22-b7b9-fd11a8569db3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T20:23:16.3808369Z","updatedOn":"2023-05-04T20:23:16.3808369Z","createdBy":"fa00c2de-57d5-4527-9254-4d513f482d0a","updatedBy":"fa00c2de-57d5-4527-9254-4d513f482d0a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/59109645-7b2b-4278-831a-2e4627ec603d","type":"Microsoft.Authorization/roleAssignments","name":"59109645-7b2b-4278-831a-2e4627ec603d"}]}' headers: cache-control: - no-cache content-length: - - '65957' + - '788801' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 09:56:31 GMT + - Sun, 18 Jun 2023 00:55:41 GMT expires: - '-1' pragma: @@ -167,8 +184,8 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2022-04-01 response: @@ -183,7 +200,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 09:56:32 GMT + - Sun, 18 Jun 2023 00:55:43 GMT expires: - '-1' pragma: @@ -217,25 +234,25 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) AZURECLI/2.46.0 + - python/3.8.16 (macOS-13.4-arm64-arm-64bit) AZURECLI/2.49.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%273fac8b4e-cd90-4baa-a5d2-66d52bc8349d%27%29 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27589aab3b-9823-44db-a486-a28799d1a111%27%29 response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[{"id":"119e1aeb-4592-42d6-9507-c66df857924f","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"azcli-aks-live-test","appDescription":null,"appId":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","applicationTemplateId":null,"appOwnerOrganizationId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"createdDateTime":"2021-04-20T10:17:48Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"azcli-aks-live-test","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["3fac8b4e-cd90-4baa-a5d2-66d52bc8349d"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":["HideApp","WindowsAzureActiveDirectoryIntegratedApp"],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[{"id":"9da81edb-57d8-48d0-aaae-ef965f1637a1","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"clitest000003","appDescription":null,"appId":"589aab3b-9823-44db-a486-a28799d1a111","applicationTemplateId":null,"appOwnerOrganizationId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"createdDateTime":"2023-06-18T00:55:37Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"clitest000003","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["589aab3b-9823-44db-a486-a28799d1a111"],"servicePrincipalType":"Application","signInAudience":"AzureADandPersonalMicrosoftAccount","tags":[],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' headers: cache-control: - no-cache content-length: - - '1354' + - '1312' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 15 Mar 2023 09:56:32 GMT + - Sun, 18 Jun 2023 00:55:43 GMT odata-version: - '4.0' request-id: - - d5a6ec64-afbf-4433-a38a-6d5fcd2e724f + - b4712028-0bec-4396-9ce4-5e26f7aed3c0 strict-transport-security: - max-age=31536000 transfer-encoding: @@ -243,7 +260,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"002","RoleInstance":"MWH0EPF00032D50"}}' + - '{"ServerInfo":{"DataCenter":"North Central US","Slice":"E","Ring":"3","ScaleUnit":"001","RoleInstance":"CH01EPF00016916"}}' x-ms-resource-unit: - '1' status: @@ -272,22 +289,27 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default/providers/Microsoft.Authorization/roleAssignments/7f43654f-083e-4386-81b7-b91d25266eb3?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default/providers/Microsoft.Authorization/roleAssignments/eb761932-4b06-4f2b-84d9-02931e6640dc?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default","condition":null,"conditionVersion":null,"createdOn":"2023-03-15T09:56:34.2954114Z","updatedOn":"2023-03-15T09:56:34.7044206Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default/providers/Microsoft.Authorization/roleAssignments/7f43654f-083e-4386-81b7-b91d25266eb3","type":"Microsoft.Authorization/roleAssignments","name":"7f43654f-083e-4386-81b7-b91d25266eb3"}' + string: '{"error":{"code":"PrincipalNotFound","message":"Principal 9da81edb57d848d0aaaeef965f1637a1 + does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47. Check + that you have the correct principal ID. If you are creating this principal + and then immediately assigning a role, this error might be related to a replication + delay. In this case, set the role assignment principalType property to a value, + such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype"}}' headers: cache-control: - no-cache content-length: - - '1035' + - '489' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 09:56:36 GMT + - Sun, 18 Jun 2023 00:55:45 GMT expires: - '-1' pragma: @@ -299,116 +321,13 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' status: - code: 201 - message: Created -- request: - body: '{"location": "westus2", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliaksdns000005", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osDiskSizeGB": 0, "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default", - "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": - false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": - -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, - "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", - "secret":"fake-secret"}, "addonProfiles": {"aciConnectorLinux": {"enabled": - true, "config": {"SubnetName": "default"}}}, "enableRBAC": true, "networkProfile": - {"networkPlugin": "azure", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - Content-Length: - - '1630' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id - --network-plugin - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000004\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000005\",\n \"fqdn\": \"cliaksdns000005-8bvyzh49.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000005-8bvyzh49.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\",\n - \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"addonProfiles\": {\n \"aciConnectorLinux\": {\n \"enabled\": - true,\n \"config\": {\n \"SubnetName\": \"default\"\n }\n }\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000004_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2cf7e73d-828c-4254-8d31-e9273c2c148e?api-version=2016-03-30 - cache-control: - - no-cache - content-length: - - '3378' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 09:56:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created + code: 400 + message: Bad Request - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -420,29 +339,29 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2cf7e73d-828c-4254-8d31-e9273c2c148e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2022-04-01 response: body: - string: "{\n \"name\": \"3de7f72c-8c82-5442-8d31-e9273c2c148e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:40.2254917Z\"\n }" + string: '{"value":[{"properties":{"roleName":"Network Contributor","type":"BuiltInRole","description":"Lets + you manage networks, but not access to them.","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Network/*","Microsoft.ResourceHealth/availabilityStatuses/read","Microsoft.Resources/deployments/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-06-02T00:18:27.3542698Z","updatedOn":"2021-11-11T20:13:44.6328966Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","type":"Microsoft.Authorization/roleDefinitions","name":"4d97b98b-1d4f-4787-a291-c67834d212e7"}]}' headers: cache-control: - no-cache content-length: - - '126' + - '873' content-type: - - application/json + - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 09:57:10 GMT + - Sun, 18 Jun 2023 00:55:48 GMT expires: - '-1' pragma: - no-cache - server: - - nginx + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -470,95 +389,100 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - python/3.8.16 (macOS-13.4-arm64-arm-64bit) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2cf7e73d-828c-4254-8d31-e9273c2c148e?api-version=2016-03-30 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27589aab3b-9823-44db-a486-a28799d1a111%27%29 response: body: - string: "{\n \"name\": \"3de7f72c-8c82-5442-8d31-e9273c2c148e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:40.2254917Z\"\n }" + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[{"id":"9da81edb-57d8-48d0-aaae-ef965f1637a1","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"clitest000003","appDescription":null,"appId":"589aab3b-9823-44db-a486-a28799d1a111","applicationTemplateId":null,"appOwnerOrganizationId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"createdDateTime":"2023-06-18T00:55:37Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"clitest000003","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["589aab3b-9823-44db-a486-a28799d1a111"],"servicePrincipalType":"Application","signInAudience":"AzureADandPersonalMicrosoftAccount","tags":[],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' headers: cache-control: - no-cache content-length: - - '126' + - '1312' content-type: - - application/json + - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 15 Mar 2023 09:57:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx + - Sun, 18 Jun 2023 00:55:49 GMT + odata-version: + - '4.0' + request-id: + - 12fca1e7-a4cb-443a-b74a-640ddc2c57d5 strict-transport-security: - - max-age=31536000; includeSubDomains + - max-age=31536000 transfer-encoding: - chunked vary: - Accept-Encoding - x-content-type-options: - - nosniff + x-ms-ags-diagnostic: + - '{"ServerInfo":{"DataCenter":"North Central US","Slice":"E","Ring":"3","ScaleUnit":"002","RoleInstance":"CH01EPF0000C250"}}' + x-ms-resource-unit: + - '1' status: code: 200 message: OK - request: - body: null + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", + "principalId":"00000000-0000-0000-0000-000000000001"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - aks create Connection: - keep-alive + Content-Length: + - '232' + Content-Type: + - application/json + Cookie: + - x-ms-gateway-slice=Production ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2cf7e73d-828c-4254-8d31-e9273c2c148e?api-version=2016-03-30 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default/providers/Microsoft.Authorization/roleAssignments/a5cd7779-b1ec-44d0-b92f-5e5bd619b61b?api-version=2022-04-01 response: body: - string: "{\n \"name\": \"3de7f72c-8c82-5442-8d31-e9273c2c148e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:40.2254917Z\"\n }" + string: '{"error":{"code":"PrincipalNotFound","message":"Principal 9da81edb57d848d0aaaeef965f1637a1 + does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47. Check + that you have the correct principal ID. If you are creating this principal + and then immediately assigning a role, this error might be related to a replication + delay. In this case, set the role assignment principalType property to a value, + such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype"}}' headers: cache-control: - no-cache content-length: - - '126' + - '489' content-type: - - application/json + - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 09:58:10 GMT + - Sun, 18 Jun 2023 00:55:50 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -570,29 +494,29 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2cf7e73d-828c-4254-8d31-e9273c2c148e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2022-04-01 response: body: - string: "{\n \"name\": \"3de7f72c-8c82-5442-8d31-e9273c2c148e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:40.2254917Z\"\n }" + string: '{"value":[{"properties":{"roleName":"Network Contributor","type":"BuiltInRole","description":"Lets + you manage networks, but not access to them.","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Network/*","Microsoft.ResourceHealth/availabilityStatuses/read","Microsoft.Resources/deployments/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-06-02T00:18:27.3542698Z","updatedOn":"2021-11-11T20:13:44.6328966Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","type":"Microsoft.Authorization/roleDefinitions","name":"4d97b98b-1d4f-4787-a291-c67834d212e7"}]}' headers: cache-control: - no-cache content-length: - - '126' + - '873' content-type: - - application/json + - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 09:58:40 GMT + - Sun, 18 Jun 2023 00:55:54 GMT expires: - '-1' pragma: - no-cache - server: - - nginx + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -620,179 +544,95 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - python/3.8.16 (macOS-13.4-arm64-arm-64bit) AZURECLI/2.49.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2cf7e73d-828c-4254-8d31-e9273c2c148e?api-version=2016-03-30 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27589aab3b-9823-44db-a486-a28799d1a111%27%29 response: body: - string: "{\n \"name\": \"3de7f72c-8c82-5442-8d31-e9273c2c148e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:56:40.2254917Z\"\n }" + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[{"id":"9da81edb-57d8-48d0-aaae-ef965f1637a1","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"clitest000003","appDescription":null,"appId":"589aab3b-9823-44db-a486-a28799d1a111","applicationTemplateId":null,"appOwnerOrganizationId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"createdDateTime":"2023-06-18T00:55:37Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"clitest000003","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["589aab3b-9823-44db-a486-a28799d1a111"],"servicePrincipalType":"Application","signInAudience":"AzureADandPersonalMicrosoftAccount","tags":[],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' headers: cache-control: - no-cache content-length: - - '126' + - '1312' content-type: - - application/json + - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 15 Mar 2023 09:59:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx + - Sun, 18 Jun 2023 00:55:55 GMT + odata-version: + - '4.0' + request-id: + - 5cb85b9f-ea6e-4386-a151-11fafb8f22c7 strict-transport-security: - - max-age=31536000; includeSubDomains + - max-age=31536000 transfer-encoding: - chunked vary: - Accept-Encoding - x-content-type-options: - - nosniff + x-ms-ags-diagnostic: + - '{"ServerInfo":{"DataCenter":"North Central US","Slice":"E","Ring":"3","ScaleUnit":"000","RoleInstance":"CH01EPF0000C118"}}' + x-ms-resource-unit: + - '1' status: code: 200 message: OK - request: - body: null + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", + "principalId":"00000000-0000-0000-0000-000000000001"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - aks create Connection: - keep-alive + Content-Length: + - '232' + Content-Type: + - application/json + Cookie: + - x-ms-gateway-slice=Production ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2cf7e73d-828c-4254-8d31-e9273c2c148e?api-version=2016-03-30 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default/providers/Microsoft.Authorization/roleAssignments/13431e89-6783-49ed-b73c-01c683e2e03c?api-version=2022-04-01 response: body: - string: "{\n \"name\": \"3de7f72c-8c82-5442-8d31-e9273c2c148e\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T09:56:40.2254917Z\",\n \"endTime\": - \"2023-03-15T09:59:28.0230664Z\"\n }" + string: '{"error":{"code":"PrincipalNotFound","message":"Principal 9da81edb57d848d0aaaeef965f1637a1 + does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47. Check + that you have the correct principal ID. If you are creating this principal + and then immediately assigning a role, this error might be related to a replication + delay. In this case, set the role assignment principalType property to a value, + such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype"}}' headers: cache-control: - no-cache content-length: - - '170' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 09:59:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id - --network-plugin - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000004\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000005\",\n \"fqdn\": \"cliaksdns000005-8bvyzh49.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000005-8bvyzh49.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\",\n - \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"addonProfiles\": {\n \"aciConnectorLinux\": {\n \"enabled\": - true,\n \"config\": {\n \"SubnetName\": \"default\"\n }\n }\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000004_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000004_westus2/providers/Microsoft.Network/publicIPAddresses/90c31e58-6973-4360-bcc4-dad3582c2136\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '3642' + - '489' content-type: - - application/json + - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 09:59:40 GMT + - Sun, 18 Jun 2023 00:55:56 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: body: null headers: @@ -809,24 +649,23 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2022-04-01 response: body: - string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Grants - full access to manage all resources, but does not allow you to assign roles - in Azure RBAC, manage assignments in Azure Blueprints, or share image galleries.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete","Microsoft.Compute/galleries/share/action"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2021-11-11T20:13:28.6061853Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' + string: '{"value":[{"properties":{"roleName":"Network Contributor","type":"BuiltInRole","description":"Lets + you manage networks, but not access to them.","assignableScopes":["/"],"permissions":[{"actions":["Microsoft.Authorization/*/read","Microsoft.Insights/alertRules/*","Microsoft.Network/*","Microsoft.ResourceHealth/availabilityStatuses/read","Microsoft.Resources/deployments/*","Microsoft.Resources/subscriptions/resourceGroups/read","Microsoft.Support/*"],"notActions":[],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-06-02T00:18:27.3542698Z","updatedOn":"2021-11-11T20:13:44.6328966Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","type":"Microsoft.Authorization/roleDefinitions","name":"4d97b98b-1d4f-4787-a291-c67834d212e7"}]}' headers: cache-control: - no-cache content-length: - - '984' + - '873' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 09:59:41 GMT + - Sun, 18 Jun 2023 00:56:03 GMT expires: - '-1' pragma: @@ -860,25 +699,25 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) AZURECLI/2.46.0 + - python/3.8.16 (macOS-13.4-arm64-arm-64bit) AZURECLI/2.49.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%273fac8b4e-cd90-4baa-a5d2-66d52bc8349d%27%29 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27589aab3b-9823-44db-a486-a28799d1a111%27%29 response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[{"id":"119e1aeb-4592-42d6-9507-c66df857924f","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"azcli-aks-live-test","appDescription":null,"appId":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","applicationTemplateId":null,"appOwnerOrganizationId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"createdDateTime":"2021-04-20T10:17:48Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"azcli-aks-live-test","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["3fac8b4e-cd90-4baa-a5d2-66d52bc8349d"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":["HideApp","WindowsAzureActiveDirectoryIntegratedApp"],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[{"id":"9da81edb-57d8-48d0-aaae-ef965f1637a1","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"clitest000003","appDescription":null,"appId":"589aab3b-9823-44db-a486-a28799d1a111","applicationTemplateId":null,"appOwnerOrganizationId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"createdDateTime":"2023-06-18T00:55:37Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"clitest000003","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["589aab3b-9823-44db-a486-a28799d1a111"],"servicePrincipalType":"Application","signInAudience":"AzureADandPersonalMicrosoftAccount","tags":[],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' headers: cache-control: - no-cache content-length: - - '1354' + - '1312' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 15 Mar 2023 09:59:41 GMT + - Sun, 18 Jun 2023 00:56:04 GMT odata-version: - '4.0' request-id: - - 99b9d934-1f2c-40e4-92ed-434229cb925c + - 10a76e33-df09-47ab-8b51-fb5ee4d9c2ad strict-transport-security: - max-age=31536000 transfer-encoding: @@ -886,14 +725,14 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"000","RoleInstance":"CO1PEPF00000EE0"}}' + - '{"ServerInfo":{"DataCenter":"North Central US","Slice":"E","Ring":"3","ScaleUnit":"005","RoleInstance":"CH01EPF000051E9"}}' x-ms-resource-unit: - '1' status: code: 200 message: OK - request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", + body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7", "principalId":"00000000-0000-0000-0000-000000000001"}}' headers: Accept: @@ -915,22 +754,22 @@ interactions: --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleAssignments/09aa13c8-8aa0-4e5b-a802-42aca4314aa3?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default/providers/Microsoft.Authorization/roleAssignments/60eb4774-bfc1-42f0-9aff-f8535ceaf032?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002","condition":null,"conditionVersion":null,"createdOn":"2023-03-15T09:59:42.1783018Z","updatedOn":"2023-03-15T09:59:42.5713061Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleAssignments/09aa13c8-8aa0-4e5b-a802-42aca4314aa3","type":"Microsoft.Authorization/roleAssignments","name":"09aa13c8-8aa0-4e5b-a802-42aca4314aa3"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default","condition":null,"conditionVersion":null,"createdOn":"2023-06-18T00:56:05.0029232Z","updatedOn":"2023-06-18T00:56:05.3379296Z","createdBy":null,"updatedBy":"4d730cf1-e190-49af-af02-ea52983c017e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default/providers/Microsoft.Authorization/roleAssignments/60eb4774-bfc1-42f0-9aff-f8535ceaf032","type":"Microsoft.Authorization/roleAssignments","name":"60eb4774-bfc1-42f0-9aff-f8535ceaf032"}' headers: cache-control: - no-cache content-length: - - '1003' + - '1035' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 09:59:44 GMT + - Sun, 18 Jun 2023 00:56:08 GMT expires: - '-1' pragma: @@ -945,272 +784,96 @@ interactions: code: 201 message: Created - request: - body: null + body: '{"location": "westus2", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000005", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osDiskSizeGB": 0, "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default", + "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": + false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": + -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, + "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "secret":"fake-secret"}, "addonProfiles": {"aciConnectorLinux": {"enabled": + true, "config": {"SubnetName": "default"}}}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "azure", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks show + - aks create Connection: - keep-alive + Content-Length: + - '1959' + Content-Type: + - application/json ParameterSetName: - - -g -n + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id + --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000004\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000005\",\n \"fqdn\": \"cliaksdns000005-8bvyzh49.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000005-8bvyzh49.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\",\n - \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"addonProfiles\": {\n \"aciConnectorLinux\": {\n \"enabled\": - true,\n \"config\": {\n \"SubnetName\": \"default\"\n }\n }\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000004_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000004_westus2/providers/Microsoft.Network/publicIPAddresses/90c31e58-6973-4360-bcc4-dad3582c2136\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '3642' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 09:59:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks disable-addons - Connection: - - keep-alive - ParameterSetName: - - -a -g -n - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000004\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000005\",\n \"fqdn\": \"cliaksdns000005-8bvyzh49.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000005-8bvyzh49.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\",\n - \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"addonProfiles\": {\n \"aciConnectorLinux\": {\n \"enabled\": - true,\n \"config\": {\n \"SubnetName\": \"default\"\n }\n }\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000004_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000004_westus2/providers/Microsoft.Network/publicIPAddresses/90c31e58-6973-4360-bcc4-dad3582c2136\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '3642' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 09:59:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "properties": - {"kubernetesVersion": "1.24.9", "dnsPrefix": "cliaksdns000005", "agentPoolProfiles": - [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": - "Managed", "kubeletDiskType": "OS", "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default", - "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, - "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": - false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser", "enableCSIProxy": true}, "addonProfiles": {"aciConnectorLinux": - {"enabled": false}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": - "MC_clitest000001_cliakstest000004_westus2", "enableRBAC": true, "networkProfile": - {"networkPlugin": "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000004_westus2/providers/Microsoft.Network/publicIPAddresses/90c31e58-6973-4360-bcc4-dad3582c2136"}]}, - "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": - false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": {"enabled": - true}, "fileCSIDriver": {"enabled": true}, "snapshotController": {"enabled": - true}}, "workloadAutoScalerProfile": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks disable-addons - Connection: - - keep-alive - Content-Length: - - '2349' - Content-Type: - - application/json - ParameterSetName: - - -a -g -n - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000004\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000005\",\n \"fqdn\": \"cliaksdns000005-8bvyzh49.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000005-8bvyzh49.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\",\n - \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"addonProfiles\": {\n \"aciConnectorLinux\": {\n \"enabled\": - false,\n \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000004_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000004_westus2/providers/Microsoft.Network/publicIPAddresses/90c31e58-6973-4360-bcc4-dad3582c2136\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000004\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000005\",\n \"fqdn\": \"cliaksdns000005-7tc1r3hm.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000005-7tc1r3hm.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"addonProfiles\": {\n \"aciConnectorLinux\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"SubnetName\": \"default\"\n }\n \ + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000004_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n\ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \ + \ \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9f757b0d-3472-4ce1-aa61-22b115cca12d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3ca288a-dbe5-49e5-a1a5-d42a0d5adfa4?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3607' + - '3739' content-type: - application/json date: - - Wed, 15 Mar 2023 09:59:48 GMT + - Sun, 18 Jun 2023 00:56:16 GMT expires: - '-1' pragma: @@ -1219,17 +882,13 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -1238,20 +897,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks disable-addons + - aks create Connection: - keep-alive ParameterSetName: - - -a -g -n + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id + --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9f757b0d-3472-4ce1-aa61-22b115cca12d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3ca288a-dbe5-49e5-a1a5-d42a0d5adfa4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0d7b759f-7234-e14c-aa61-22b115cca12d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:59:49.3978592Z\"\n }" + string: "{\n \"name\": \"8a28cae3-e5db-e549-a1a5-d42a0d5adfa4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T00:56:15.9872181Z\"\n }" headers: cache-control: - no-cache @@ -1260,7 +921,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:18 GMT + - Sun, 18 Jun 2023 00:56:16 GMT expires: - '-1' pragma: @@ -1286,20 +947,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks disable-addons + - aks create Connection: - keep-alive ParameterSetName: - - -a -g -n + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id + --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9f757b0d-3472-4ce1-aa61-22b115cca12d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3ca288a-dbe5-49e5-a1a5-d42a0d5adfa4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0d7b759f-7234-e14c-aa61-22b115cca12d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T09:59:49.3978592Z\"\n }" + string: "{\n \"name\": \"8a28cae3-e5db-e549-a1a5-d42a0d5adfa4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T00:56:15.9872181Z\"\n }" headers: cache-control: - no-cache @@ -1308,7 +971,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:00:49 GMT + - Sun, 18 Jun 2023 00:56:46 GMT expires: - '-1' pragma: @@ -1334,30 +997,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks disable-addons + - aks create Connection: - keep-alive ParameterSetName: - - -a -g -n + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id + --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9f757b0d-3472-4ce1-aa61-22b115cca12d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3ca288a-dbe5-49e5-a1a5-d42a0d5adfa4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0d7b759f-7234-e14c-aa61-22b115cca12d\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T09:59:49.3978592Z\",\n \"endTime\": - \"2023-03-15T10:01:13.1618909Z\"\n }" + string: "{\n \"name\": \"8a28cae3-e5db-e549-a1a5-d42a0d5adfa4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T00:56:15.9872181Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:01:19 GMT + - Sun, 18 Jun 2023 00:57:16 GMT expires: - '-1' pragma: @@ -1383,66 +1047,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks disable-addons + - aks create Connection: - keep-alive ParameterSetName: - - -a -g -n + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id + --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3ca288a-dbe5-49e5-a1a5-d42a0d5adfa4?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000004\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000005\",\n \"fqdn\": \"cliaksdns000005-8bvyzh49.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000005-8bvyzh49.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\",\n - \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"addonProfiles\": {\n \"aciConnectorLinux\": {\n \"enabled\": - false,\n \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000004_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000004_westus2/providers/Microsoft.Network/publicIPAddresses/90c31e58-6973-4360-bcc4-dad3582c2136\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '3609' + string: "{\n \"name\": \"8a28cae3-e5db-e549-a1a5-d42a0d5adfa4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T00:56:15.9872181Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:01:19 GMT + - Sun, 18 Jun 2023 00:57:46 GMT expires: - '-1' pragma: @@ -1464,70 +1093,35 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks show + - aks create Connection: - keep-alive ParameterSetName: - - -g -n + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id + --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3ca288a-dbe5-49e5-a1a5-d42a0d5adfa4?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000004\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000005\",\n \"fqdn\": \"cliaksdns000005-8bvyzh49.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000005-8bvyzh49.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\",\n - \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"addonProfiles\": {\n \"aciConnectorLinux\": {\n \"enabled\": - false,\n \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000004_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000004_westus2/providers/Microsoft.Network/publicIPAddresses/90c31e58-6973-4360-bcc4-dad3582c2136\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '3609' + string: "{\n \"name\": \"8a28cae3-e5db-e549-a1a5-d42a0d5adfa4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T00:56:15.9872181Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:01:20 GMT + - Sun, 18 Jun 2023 00:58:16 GMT expires: - '-1' pragma: @@ -1549,183 +1143,35 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks enable-addons + - aks create Connection: - keep-alive ParameterSetName: - - -a -g -n --subnet-name + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id + --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000004\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000005\",\n \"fqdn\": \"cliaksdns000005-8bvyzh49.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000005-8bvyzh49.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\",\n - \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"addonProfiles\": {\n \"aciConnectorLinux\": {\n \"enabled\": - false,\n \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000004_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000004_westus2/providers/Microsoft.Network/publicIPAddresses/90c31e58-6973-4360-bcc4-dad3582c2136\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '3609' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:01:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "properties": - {"kubernetesVersion": "1.24.9", "dnsPrefix": "cliaksdns000005", "agentPoolProfiles": - [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": - "Managed", "kubeletDiskType": "OS", "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default", - "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, - "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": - false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser", "enableCSIProxy": true}, "addonProfiles": {"aciConnectorLinux": - {"enabled": true, "config": {"SubnetName": "default"}}}, "oidcIssuerProfile": - {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000004_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "azure", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": - {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000004_westus2/providers/Microsoft.Network/publicIPAddresses/90c31e58-6973-4360-bcc4-dad3582c2136"}]}, - "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": - false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": {"enabled": - true}, "fileCSIDriver": {"enabled": true}, "snapshotController": {"enabled": - true}}, "workloadAutoScalerProfile": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks enable-addons - Connection: - - keep-alive - Content-Length: - - '2385' - Content-Type: - - application/json - ParameterSetName: - - -a -g -n --subnet-name - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3ca288a-dbe5-49e5-a1a5-d42a0d5adfa4?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000004\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000005\",\n \"fqdn\": \"cliaksdns000005-8bvyzh49.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000005-8bvyzh49.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\",\n - \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"addonProfiles\": {\n \"aciConnectorLinux\": {\n \"enabled\": - true,\n \"config\": {\n \"SubnetName\": \"default\"\n }\n }\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000004_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000004_westus2/providers/Microsoft.Network/publicIPAddresses/90c31e58-6973-4360-bcc4-dad3582c2136\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"8a28cae3-e5db-e549-a1a5-d42a0d5adfa4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T00:56:15.9872181Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7eed989c-15c6-41be-ad1f-e86c2a47780f?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3640' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:01:24 GMT + - Sun, 18 Jun 2023 00:58:47 GMT expires: - '-1' pragma: @@ -1740,8 +1186,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -1753,20 +1197,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks enable-addons + - aks create Connection: - keep-alive ParameterSetName: - - -a -g -n --subnet-name + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id + --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7eed989c-15c6-41be-ad1f-e86c2a47780f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3ca288a-dbe5-49e5-a1a5-d42a0d5adfa4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9c98ed7e-c615-be41-ad1f-e86c2a47780f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:01:24.6794169Z\"\n }" + string: "{\n \"name\": \"8a28cae3-e5db-e549-a1a5-d42a0d5adfa4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T00:56:15.9872181Z\"\n }" headers: cache-control: - no-cache @@ -1775,7 +1221,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:01:54 GMT + - Sun, 18 Jun 2023 00:59:17 GMT expires: - '-1' pragma: @@ -1801,20 +1247,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks enable-addons + - aks create Connection: - keep-alive ParameterSetName: - - -a -g -n --subnet-name + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id + --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7eed989c-15c6-41be-ad1f-e86c2a47780f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3ca288a-dbe5-49e5-a1a5-d42a0d5adfa4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9c98ed7e-c615-be41-ad1f-e86c2a47780f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:01:24.6794169Z\"\n }" + string: "{\n \"name\": \"8a28cae3-e5db-e549-a1a5-d42a0d5adfa4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T00:56:15.9872181Z\"\n }" headers: cache-control: - no-cache @@ -1823,7 +1271,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:02:24 GMT + - Sun, 18 Jun 2023 00:59:47 GMT expires: - '-1' pragma: @@ -1849,21 +1297,23 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks enable-addons + - aks create Connection: - keep-alive ParameterSetName: - - -a -g -n --subnet-name + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id + --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7eed989c-15c6-41be-ad1f-e86c2a47780f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e3ca288a-dbe5-49e5-a1a5-d42a0d5adfa4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9c98ed7e-c615-be41-ad1f-e86c2a47780f\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:01:24.6794169Z\",\n \"endTime\": - \"2023-03-15T10:02:50.0392179Z\"\n }" + string: "{\n \"name\": \"8a28cae3-e5db-e549-a1a5-d42a0d5adfa4\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-18T00:56:15.9872181Z\",\n \"\ + endTime\": \"2023-06-18T01:00:15.5026646Z\"\n }" headers: cache-control: - no-cache @@ -1872,7 +1322,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:02:54 GMT + - Sun, 18 Jun 2023 01:00:17 GMT expires: - '-1' pragma: @@ -1898,67 +1348,71 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks enable-addons + - aks create Connection: - keep-alive ParameterSetName: - - -a -g -n --subnet-name + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id + --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000004\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000005\",\n \"fqdn\": \"cliaksdns000005-8bvyzh49.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000005-8bvyzh49.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\",\n - \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"addonProfiles\": {\n \"aciConnectorLinux\": {\n \"enabled\": - true,\n \"config\": {\n \"SubnetName\": \"default\"\n }\n }\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000004_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000004_westus2/providers/Microsoft.Network/publicIPAddresses/90c31e58-6973-4360-bcc4-dad3582c2136\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '3642' + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000004\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000005\",\n \"fqdn\": \"cliaksdns000005-7tc1r3hm.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000005-7tc1r3hm.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"addonProfiles\": {\n \"aciConnectorLinux\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"SubnetName\": \"default\"\n }\n \ + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000004_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ + effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000004_westus2/providers/Microsoft.Network/publicIPAddresses/3e7da07e-b6e5-4123-b7fc-a06c283b9c50\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n\ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4003' content-type: - application/json date: - - Wed, 15 Mar 2023 10:02:55 GMT + - Sun, 18 Jun 2023 01:00:17 GMT expires: - '-1' pragma: @@ -1984,14 +1438,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks enable-addons + - aks create Connection: - keep-alive ParameterSetName: - - -a -g -n --subnet-name + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id + --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2022-04-01 response: @@ -2007,7 +1463,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:02:55 GMT + - Sun, 18 Jun 2023 01:00:19 GMT expires: - '-1' pragma: @@ -2033,31 +1489,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks enable-addons + - aks create Connection: - keep-alive ParameterSetName: - - -a -g -n --subnet-name + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id + --network-plugin User-Agent: - - python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) AZURECLI/2.46.0 + - python/3.8.16 (macOS-13.4-arm64-arm-64bit) AZURECLI/2.49.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%273fac8b4e-cd90-4baa-a5d2-66d52bc8349d%27%29 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27589aab3b-9823-44db-a486-a28799d1a111%27%29 response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[{"id":"119e1aeb-4592-42d6-9507-c66df857924f","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"azcli-aks-live-test","appDescription":null,"appId":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","applicationTemplateId":null,"appOwnerOrganizationId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"createdDateTime":"2021-04-20T10:17:48Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"azcli-aks-live-test","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["3fac8b4e-cd90-4baa-a5d2-66d52bc8349d"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":["HideApp","WindowsAzureActiveDirectoryIntegratedApp"],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[{"id":"9da81edb-57d8-48d0-aaae-ef965f1637a1","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"clitest000003","appDescription":null,"appId":"589aab3b-9823-44db-a486-a28799d1a111","applicationTemplateId":null,"appOwnerOrganizationId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"createdDateTime":"2023-06-18T00:55:37Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"clitest000003","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["589aab3b-9823-44db-a486-a28799d1a111"],"servicePrincipalType":"Application","signInAudience":"AzureADandPersonalMicrosoftAccount","tags":[],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' headers: cache-control: - no-cache content-length: - - '1354' + - '1312' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 15 Mar 2023 10:02:55 GMT + - Sun, 18 Jun 2023 01:00:20 GMT odata-version: - '4.0' request-id: - - 7252c9cb-4130-4fba-a378-75870c1973c0 + - f6e4e79e-8303-4897-b14d-2bfc2a049abc strict-transport-security: - max-age=31536000 transfer-encoding: @@ -2065,7 +1523,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"000","RoleInstance":"CO1PEPF000018B8"}}' + - '{"ServerInfo":{"DataCenter":"North Central US","Slice":"E","Ring":"3","ScaleUnit":"005","RoleInstance":"CH01EPF000051DB"}}' x-ms-resource-unit: - '1' status: @@ -2080,7 +1538,7 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks enable-addons + - aks create Connection: - keep-alive Content-Length: @@ -2090,25 +1548,26 @@ interactions: Cookie: - x-ms-gateway-slice=Production ParameterSetName: - - -a -g -n --subnet-name + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --enable-addons --aci-subnet-name --vnet-subnet-id + --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleAssignments/64310898-d673-43a6-acba-cb92598ae091?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleAssignments/e3479a83-0abb-48dd-a463-0567dc023b28?api-version=2022-04-01 response: body: - string: '{"error":{"code":"RoleAssignmentExists","message":"The role assignment - already exists."}}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002","condition":null,"conditionVersion":null,"createdOn":"2023-06-18T01:00:20.4217841Z","updatedOn":"2023-06-18T01:00:20.7324351Z","createdBy":null,"updatedBy":"4d730cf1-e190-49af-af02-ea52983c017e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleAssignments/e3479a83-0abb-48dd-a463-0567dc023b28","type":"Microsoft.Authorization/roleAssignments","name":"e3479a83-0abb-48dd-a463-0567dc023b28"}' headers: cache-control: - no-cache content-length: - - '89' + - '1003' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:02:56 GMT + - Sun, 18 Jun 2023 01:00:23 GMT expires: - '-1' pragma: @@ -2118,10 +1577,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: - code: 409 - message: Conflict + code: 201 + message: Created - request: body: null headers: @@ -2130,36 +1589,75 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks enable-addons + - aks show Connection: - keep-alive ParameterSetName: - - -a -g -n --subnet-name + - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-04-01 response: body: - string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Grants - full access to manage all resources, but does not allow you to assign roles - in Azure RBAC, manage assignments in Azure Blueprints, or share image galleries.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete","Microsoft.Compute/galleries/share/action"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2021-11-11T20:13:28.6061853Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000004\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000005\",\n \"fqdn\": \"cliaksdns000005-7tc1r3hm.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000005-7tc1r3hm.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"addonProfiles\": {\n \"aciConnectorLinux\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"SubnetName\": \"default\"\n }\n \ + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000004_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ + effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000004_westus2/providers/Microsoft.Network/publicIPAddresses/3e7da07e-b6e5-4123-b7fc-a06c283b9c50\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n\ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '984' + - '4003' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:02:58 GMT + - Sun, 18 Jun 2023 01:00:25 GMT expires: - '-1' pragma: - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2175,137 +1673,244 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks enable-addons + - aks disable-addons Connection: - keep-alive ParameterSetName: - - -a -g -n --subnet-name + - -a -g -n User-Agent: - - python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) AZURECLI/2.46.0 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%273fac8b4e-cd90-4baa-a5d2-66d52bc8349d%27%29 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-04-01 response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[{"id":"119e1aeb-4592-42d6-9507-c66df857924f","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"azcli-aks-live-test","appDescription":null,"appId":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","applicationTemplateId":null,"appOwnerOrganizationId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"createdDateTime":"2021-04-20T10:17:48Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"azcli-aks-live-test","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["3fac8b4e-cd90-4baa-a5d2-66d52bc8349d"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":["HideApp","WindowsAzureActiveDirectoryIntegratedApp"],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000004\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000005\",\n \"fqdn\": \"cliaksdns000005-7tc1r3hm.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000005-7tc1r3hm.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"addonProfiles\": {\n \"aciConnectorLinux\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"SubnetName\": \"default\"\n }\n \ + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000004_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ + effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000004_westus2/providers/Microsoft.Network/publicIPAddresses/3e7da07e-b6e5-4123-b7fc-a06c283b9c50\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n\ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '1354' + - '4003' content-type: - - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:02:58 GMT - odata-version: - - '4.0' - request-id: - - 3148a84e-d359-4cab-a2da-95a8d32dd205 + - Sun, 18 Jun 2023 01:00:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx strict-transport-security: - - max-age=31536000 + - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"002","RoleInstance":"MWH0EPF0004E10A"}}' - x-ms-resource-unit: - - '1' + x-content-type-options: + - nosniff status: code: 200 message: OK - request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", - "principalId":"00000000-0000-0000-0000-000000000001"}}' + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "properties": + {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000005", "agentPoolProfiles": + [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": + "Managed", "kubeletDiskType": "OS", "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default", + "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, + "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser", "enableCSIProxy": + true}, "addonProfiles": {"aciConnectorLinux": {"enabled": false}}, "oidcIssuerProfile": + {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000004_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "azure", "networkDataplane": "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000004_westus2/providers/Microsoft.Network/publicIPAddresses/3e7da07e-b6e5-4123-b7fc-a06c283b9c50"}]}, + "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": + false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": {"enabled": + true}, "fileCSIDriver": {"enabled": true}, "snapshotController": {"enabled": + true}}, "workloadAutoScalerProfile": {}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks enable-addons + - aks disable-addons Connection: - keep-alive Content-Length: - - '232' + - '2706' Content-Type: - application/json - Cookie: - - x-ms-gateway-slice=Production ParameterSetName: - - -a -g -n --subnet-name + - -a -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleAssignments/cc25aa8a-6a35-41b4-8584-b69d0a51ed0b?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-04-01 response: body: - string: '{"error":{"code":"RoleAssignmentExists","message":"The role assignment - already exists."}}' + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000004\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000005\",\n \"fqdn\": \"cliaksdns000005-7tc1r3hm.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000005-7tc1r3hm.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"addonProfiles\": {\n \"aciConnectorLinux\": {\n \"enabled\"\ + : false,\n \"config\": {}\n }\n },\n \"nodeResourceGroup\": \"\ + MC_clitest000001_cliakstest000004_westus2\",\n \"enableRBAC\": true,\n \ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"azure\",\n \"networkDataplane\": \"azure\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000004_westus2/providers/Microsoft.Network/publicIPAddresses/3e7da07e-b6e5-4123-b7fc-a06c283b9c50\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n\ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/215dc6c5-c84c-413d-acc7-bbc00cc7dc4f?api-version=2016-03-30 cache-control: - no-cache content-length: - - '89' + - '3966' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:02:59 GMT + - Sun, 18 Jun 2023 01:00:31 GMT expires: - '-1' pragma: - no-cache + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: - code: 409 - message: Conflict + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks enable-addons + - aks disable-addons Connection: - keep-alive ParameterSetName: - - -a -g -n --subnet-name + - -a -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/215dc6c5-c84c-413d-acc7-bbc00cc7dc4f?api-version=2016-03-30 response: body: - string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Grants - full access to manage all resources, but does not allow you to assign roles - in Azure RBAC, manage assignments in Azure Blueprints, or share image galleries.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete","Microsoft.Compute/galleries/share/action"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2021-11-11T20:13:28.6061853Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' + string: "{\n \"name\": \"c5c65d21-4cc8-3d41-acc7-bbc00cc7dc4f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T01:00:32.4565067Z\"\n }" headers: cache-control: - no-cache content-length: - - '984' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:03:03 GMT + - Sun, 18 Jun 2023 01:00:32 GMT expires: - '-1' pragma: - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2325,133 +1930,131 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks enable-addons + - aks disable-addons Connection: - keep-alive ParameterSetName: - - -a -g -n --subnet-name + - -a -g -n User-Agent: - - python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) AZURECLI/2.46.0 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%273fac8b4e-cd90-4baa-a5d2-66d52bc8349d%27%29 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/215dc6c5-c84c-413d-acc7-bbc00cc7dc4f?api-version=2016-03-30 response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[{"id":"119e1aeb-4592-42d6-9507-c66df857924f","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"azcli-aks-live-test","appDescription":null,"appId":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","applicationTemplateId":null,"appOwnerOrganizationId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"createdDateTime":"2021-04-20T10:17:48Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"azcli-aks-live-test","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["3fac8b4e-cd90-4baa-a5d2-66d52bc8349d"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":["HideApp","WindowsAzureActiveDirectoryIntegratedApp"],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + string: "{\n \"name\": \"c5c65d21-4cc8-3d41-acc7-bbc00cc7dc4f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T01:00:32.4565067Z\"\n }" headers: cache-control: - no-cache content-length: - - '1354' + - '126' content-type: - - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:03:03 GMT - odata-version: - - '4.0' - request-id: - - 4aa99802-4184-4bb9-b952-e18e64de78d6 + - Sun, 18 Jun 2023 01:01:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx strict-transport-security: - - max-age=31536000 + - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"002","RoleInstance":"MWH0EPF00095422"}}' - x-ms-resource-unit: - - '1' + x-content-type-options: + - nosniff status: code: 200 message: OK - request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", - "principalId":"00000000-0000-0000-0000-000000000001"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks enable-addons + - aks disable-addons Connection: - keep-alive - Content-Length: - - '232' - Content-Type: - - application/json - Cookie: - - x-ms-gateway-slice=Production ParameterSetName: - - -a -g -n --subnet-name + - -a -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleAssignments/f0e2556e-64af-49d3-8f19-30dd07b60582?api-version=2022-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/215dc6c5-c84c-413d-acc7-bbc00cc7dc4f?api-version=2016-03-30 response: body: - string: '{"error":{"code":"RoleAssignmentExists","message":"The role assignment - already exists."}}' + string: "{\n \"name\": \"c5c65d21-4cc8-3d41-acc7-bbc00cc7dc4f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T01:00:32.4565067Z\"\n }" headers: cache-control: - no-cache content-length: - - '89' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:03:04 GMT + - Sun, 18 Jun 2023 01:01:32 GMT expires: - '-1' pragma: - no-cache + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' status: - code: 409 - message: Conflict + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks enable-addons + - aks disable-addons Connection: - keep-alive ParameterSetName: - - -a -g -n --subnet-name + - -a -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/215dc6c5-c84c-413d-acc7-bbc00cc7dc4f?api-version=2016-03-30 response: body: - string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Grants - full access to manage all resources, but does not allow you to assign roles - in Azure RBAC, manage assignments in Azure Blueprints, or share image galleries.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete","Microsoft.Compute/galleries/share/action"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2021-11-11T20:13:28.6061853Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' + string: "{\n \"name\": \"c5c65d21-4cc8-3d41-acc7-bbc00cc7dc4f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T01:00:32.4565067Z\"\n }" headers: cache-control: - no-cache content-length: - - '984' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:03:10 GMT + - Sun, 18 Jun 2023 01:02:02 GMT expires: - '-1' pragma: - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2471,133 +2074,131 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks enable-addons + - aks disable-addons Connection: - keep-alive ParameterSetName: - - -a -g -n --subnet-name + - -a -g -n User-Agent: - - python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) AZURECLI/2.46.0 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%273fac8b4e-cd90-4baa-a5d2-66d52bc8349d%27%29 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/215dc6c5-c84c-413d-acc7-bbc00cc7dc4f?api-version=2016-03-30 response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[{"id":"119e1aeb-4592-42d6-9507-c66df857924f","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"azcli-aks-live-test","appDescription":null,"appId":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","applicationTemplateId":null,"appOwnerOrganizationId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"createdDateTime":"2021-04-20T10:17:48Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"azcli-aks-live-test","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["3fac8b4e-cd90-4baa-a5d2-66d52bc8349d"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":["HideApp","WindowsAzureActiveDirectoryIntegratedApp"],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + string: "{\n \"name\": \"c5c65d21-4cc8-3d41-acc7-bbc00cc7dc4f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T01:00:32.4565067Z\"\n }" headers: cache-control: - no-cache content-length: - - '1354' + - '126' content-type: - - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:03:11 GMT - odata-version: - - '4.0' - request-id: - - 1615d896-7c37-4b7c-8210-bb07f0b1b209 + - Sun, 18 Jun 2023 01:02:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx strict-transport-security: - - max-age=31536000 + - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"002","RoleInstance":"MWH0EPF00070F96"}}' - x-ms-resource-unit: - - '1' + x-content-type-options: + - nosniff status: code: 200 message: OK - request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", - "principalId":"00000000-0000-0000-0000-000000000001"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks enable-addons + - aks disable-addons Connection: - keep-alive - Content-Length: - - '232' - Content-Type: - - application/json - Cookie: - - x-ms-gateway-slice=Production ParameterSetName: - - -a -g -n --subnet-name + - -a -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleAssignments/d87dd3f6-8fab-4050-b378-23fcebd92e98?api-version=2022-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/215dc6c5-c84c-413d-acc7-bbc00cc7dc4f?api-version=2016-03-30 response: body: - string: '{"error":{"code":"RoleAssignmentExists","message":"The role assignment - already exists."}}' + string: "{\n \"name\": \"c5c65d21-4cc8-3d41-acc7-bbc00cc7dc4f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T01:00:32.4565067Z\"\n }" headers: cache-control: - no-cache content-length: - - '89' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:03:12 GMT + - Sun, 18 Jun 2023 01:03:03 GMT expires: - '-1' pragma: - no-cache + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: - code: 409 - message: Conflict + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks enable-addons + - aks disable-addons Connection: - keep-alive ParameterSetName: - - -a -g -n --subnet-name + - -a -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/215dc6c5-c84c-413d-acc7-bbc00cc7dc4f?api-version=2016-03-30 response: body: - string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Grants - full access to manage all resources, but does not allow you to assign roles - in Azure RBAC, manage assignments in Azure Blueprints, or share image galleries.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete","Microsoft.Compute/galleries/share/action"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2021-11-11T20:13:28.6061853Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' + string: "{\n \"name\": \"c5c65d21-4cc8-3d41-acc7-bbc00cc7dc4f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T01:00:32.4565067Z\"\n }" headers: cache-control: - no-cache content-length: - - '984' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:03:20 GMT + - Sun, 18 Jun 2023 01:03:33 GMT expires: - '-1' pragma: - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2617,47 +2218,478 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks enable-addons + - aks disable-addons Connection: - keep-alive ParameterSetName: - - -a -g -n --subnet-name + - -a -g -n User-Agent: - - python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) AZURECLI/2.46.0 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%273fac8b4e-cd90-4baa-a5d2-66d52bc8349d%27%29 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/215dc6c5-c84c-413d-acc7-bbc00cc7dc4f?api-version=2016-03-30 response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[{"id":"119e1aeb-4592-42d6-9507-c66df857924f","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"azcli-aks-live-test","appDescription":null,"appId":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","applicationTemplateId":null,"appOwnerOrganizationId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"createdDateTime":"2021-04-20T10:17:48Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"azcli-aks-live-test","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["3fac8b4e-cd90-4baa-a5d2-66d52bc8349d"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":["HideApp","WindowsAzureActiveDirectoryIntegratedApp"],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + string: "{\n \"name\": \"c5c65d21-4cc8-3d41-acc7-bbc00cc7dc4f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T01:00:32.4565067Z\"\n }" headers: cache-control: - no-cache content-length: - - '1354' + - '126' content-type: - - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:03:20 GMT - odata-version: - - '4.0' - request-id: - - c23f2512-f69f-4156-ab13-b5e81fd4cf07 + - Sun, 18 Jun 2023 01:04:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx strict-transport-security: - - max-age=31536000 + - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"000","RoleInstance":"CO1PEPF000018B2"}}' - x-ms-resource-unit: - - '1' + x-content-type-options: + - nosniff status: code: 200 message: OK - request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", - "principalId":"00000000-0000-0000-0000-000000000001"}}' + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/215dc6c5-c84c-413d-acc7-bbc00cc7dc4f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c5c65d21-4cc8-3d41-acc7-bbc00cc7dc4f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T01:00:32.4565067Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sun, 18 Jun 2023 01:04:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/215dc6c5-c84c-413d-acc7-bbc00cc7dc4f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c5c65d21-4cc8-3d41-acc7-bbc00cc7dc4f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T01:00:32.4565067Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sun, 18 Jun 2023 01:05:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/215dc6c5-c84c-413d-acc7-bbc00cc7dc4f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c5c65d21-4cc8-3d41-acc7-bbc00cc7dc4f\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-18T01:00:32.4565067Z\",\n \"\ + endTime\": \"2023-06-18T01:05:28.2940698Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Sun, 18 Jun 2023 01:05:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-04-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000004\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000005\",\n \"fqdn\": \"cliaksdns000005-7tc1r3hm.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000005-7tc1r3hm.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"addonProfiles\": {\n \"aciConnectorLinux\": {\n \"enabled\"\ + : false,\n \"config\": {}\n }\n },\n \"nodeResourceGroup\": \"\ + MC_clitest000001_cliakstest000004_westus2\",\n \"enableRBAC\": true,\n \ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"azure\",\n \"networkDataplane\": \"azure\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000004_westus2/providers/Microsoft.Network/publicIPAddresses/3e7da07e-b6e5-4123-b7fc-a06c283b9c50\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n\ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '3968' + content-type: + - application/json + date: + - Sun, 18 Jun 2023 01:05:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-04-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000004\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000005\",\n \"fqdn\": \"cliaksdns000005-7tc1r3hm.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000005-7tc1r3hm.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"addonProfiles\": {\n \"aciConnectorLinux\": {\n \"enabled\"\ + : false,\n \"config\": {}\n }\n },\n \"nodeResourceGroup\": \"\ + MC_clitest000001_cliakstest000004_westus2\",\n \"enableRBAC\": true,\n \ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"azure\",\n \"networkDataplane\": \"azure\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000004_westus2/providers/Microsoft.Network/publicIPAddresses/3e7da07e-b6e5-4123-b7fc-a06c283b9c50\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n\ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '3968' + content-type: + - application/json + date: + - Sun, 18 Jun 2023 01:05:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -a -g -n --subnet-name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-04-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000004\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000005\",\n \"fqdn\": \"cliaksdns000005-7tc1r3hm.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000005-7tc1r3hm.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"addonProfiles\": {\n \"aciConnectorLinux\": {\n \"enabled\"\ + : false,\n \"config\": {}\n }\n },\n \"nodeResourceGroup\": \"\ + MC_clitest000001_cliakstest000004_westus2\",\n \"enableRBAC\": true,\n \ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"azure\",\n \"networkDataplane\": \"azure\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n \ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000004_westus2/providers/Microsoft.Network/publicIPAddresses/3e7da07e-b6e5-4123-b7fc-a06c283b9c50\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n\ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '3968' + content-type: + - application/json + date: + - Sun, 18 Jun 2023 01:05:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "properties": + {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000005", "agentPoolProfiles": + [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": + "Managed", "kubeletDiskType": "OS", "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default", + "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, + "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser", "enableCSIProxy": + true}, "addonProfiles": {"aciConnectorLinux": {"enabled": true, "config": {"SubnetName": + "default"}}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": + "MC_clitest000001_cliakstest000004_westus2", "enableRBAC": true, "supportPlan": + "KubernetesOfficial", "networkProfile": {"networkPlugin": "azure", "networkDataplane": + "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "outboundType": + "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": + {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000004_westus2/providers/Microsoft.Network/publicIPAddresses/3e7da07e-b6e5-4123-b7fc-a06c283b9c50"}]}, + "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": + false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": {"enabled": + true}, "fileCSIDriver": {"enabled": true}, "snapshotController": {"enabled": + true}}, "workloadAutoScalerProfile": {}}}' headers: Accept: - application/json @@ -2668,49 +2700,95 @@ interactions: Connection: - keep-alive Content-Length: - - '232' + - '2742' Content-Type: - application/json - Cookie: - - x-ms-gateway-slice=Production ParameterSetName: - -a -g -n --subnet-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleAssignments/ed62881a-4d61-424d-8454-b3acb8fd4315?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-04-01 response: body: - string: '{"error":{"code":"RoleAssignmentExists","message":"The role assignment - already exists."}}' + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000004\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000005\",\n \"fqdn\": \"cliaksdns000005-7tc1r3hm.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000005-7tc1r3hm.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"addonProfiles\": {\n \"aciConnectorLinux\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"SubnetName\": \"default\"\n }\n \ + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000004_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ + effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000004_westus2/providers/Microsoft.Network/publicIPAddresses/3e7da07e-b6e5-4123-b7fc-a06c283b9c50\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n\ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e0b07f9-7e21-4823-b5ac-69b6ebb032e7?api-version=2016-03-30 cache-control: - no-cache content-length: - - '89' + - '4001' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:03:21 GMT + - Sun, 18 Jun 2023 01:05:46 GMT expires: - '-1' pragma: - no-cache + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: - code: 409 - message: Conflict + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2720,30 +2798,29 @@ interactions: ParameterSetName: - -a -g -n --subnet-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e0b07f9-7e21-4823-b5ac-69b6ebb032e7?api-version=2016-03-30 response: body: - string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Grants - full access to manage all resources, but does not allow you to assign roles - in Azure RBAC, manage assignments in Azure Blueprints, or share image galleries.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete","Microsoft.Compute/galleries/share/action"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2021-11-11T20:13:28.6061853Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' + string: "{\n \"name\": \"f9070b8e-217e-2348-b5ac-69b6ebb032e7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T01:05:46.0354612Z\"\n }" headers: cache-control: - no-cache content-length: - - '984' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:03:32 GMT + - Sun, 18 Jun 2023 01:05:46 GMT expires: - '-1' pragma: - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2769,94 +2846,93 @@ interactions: ParameterSetName: - -a -g -n --subnet-name User-Agent: - - python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) AZURECLI/2.46.0 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%273fac8b4e-cd90-4baa-a5d2-66d52bc8349d%27%29 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e0b07f9-7e21-4823-b5ac-69b6ebb032e7?api-version=2016-03-30 response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[{"id":"119e1aeb-4592-42d6-9507-c66df857924f","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"azcli-aks-live-test","appDescription":null,"appId":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","applicationTemplateId":null,"appOwnerOrganizationId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"createdDateTime":"2021-04-20T10:17:48Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"azcli-aks-live-test","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["3fac8b4e-cd90-4baa-a5d2-66d52bc8349d"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":["HideApp","WindowsAzureActiveDirectoryIntegratedApp"],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + string: "{\n \"name\": \"f9070b8e-217e-2348-b5ac-69b6ebb032e7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T01:05:46.0354612Z\"\n }" headers: cache-control: - no-cache content-length: - - '1354' + - '126' content-type: - - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:03:32 GMT - odata-version: - - '4.0' - request-id: - - d34b7380-20a3-47b2-a16e-92a7614f0b6e + - Sun, 18 Jun 2023 01:08:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx strict-transport-security: - - max-age=31536000 + - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"001","RoleInstance":"MW2PEPF00006201"}}' - x-ms-resource-unit: - - '1' + x-content-type-options: + - nosniff status: code: 200 message: OK - request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", - "principalId":"00000000-0000-0000-0000-000000000001"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks enable-addons Connection: - keep-alive - Content-Length: - - '232' - Content-Type: - - application/json - Cookie: - - x-ms-gateway-slice=Production ParameterSetName: - -a -g -n --subnet-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleAssignments/51da59bb-b00a-47e6-9051-96d012e6ada8?api-version=2022-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e0b07f9-7e21-4823-b5ac-69b6ebb032e7?api-version=2016-03-30 response: body: - string: '{"error":{"code":"RoleAssignmentExists","message":"The role assignment - already exists."}}' + string: "{\n \"name\": \"f9070b8e-217e-2348-b5ac-69b6ebb032e7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T01:05:46.0354612Z\"\n }" headers: cache-control: - no-cache content-length: - - '89' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:03:33 GMT + - Sun, 18 Jun 2023 01:09:07 GMT expires: - '-1' pragma: - no-cache + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: - code: 409 - message: Conflict + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2866,30 +2942,29 @@ interactions: ParameterSetName: - -a -g -n --subnet-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e0b07f9-7e21-4823-b5ac-69b6ebb032e7?api-version=2016-03-30 response: body: - string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Grants - full access to manage all resources, but does not allow you to assign roles - in Azure RBAC, manage assignments in Azure Blueprints, or share image galleries.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete","Microsoft.Compute/galleries/share/action"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2021-11-11T20:13:28.6061853Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' + string: "{\n \"name\": \"f9070b8e-217e-2348-b5ac-69b6ebb032e7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T01:05:46.0354612Z\"\n }" headers: cache-control: - no-cache content-length: - - '984' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:03:45 GMT + - Sun, 18 Jun 2023 01:09:37 GMT expires: - '-1' pragma: - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2915,94 +2990,93 @@ interactions: ParameterSetName: - -a -g -n --subnet-name User-Agent: - - python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) AZURECLI/2.46.0 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%273fac8b4e-cd90-4baa-a5d2-66d52bc8349d%27%29 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e0b07f9-7e21-4823-b5ac-69b6ebb032e7?api-version=2016-03-30 response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[{"id":"119e1aeb-4592-42d6-9507-c66df857924f","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"azcli-aks-live-test","appDescription":null,"appId":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","applicationTemplateId":null,"appOwnerOrganizationId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"createdDateTime":"2021-04-20T10:17:48Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"azcli-aks-live-test","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["3fac8b4e-cd90-4baa-a5d2-66d52bc8349d"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":["HideApp","WindowsAzureActiveDirectoryIntegratedApp"],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + string: "{\n \"name\": \"f9070b8e-217e-2348-b5ac-69b6ebb032e7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T01:05:46.0354612Z\"\n }" headers: cache-control: - no-cache content-length: - - '1354' + - '126' content-type: - - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:03:44 GMT - odata-version: - - '4.0' - request-id: - - 6aaef81f-b241-4fd1-ad16-bfbc92cf6b3e + - Sun, 18 Jun 2023 01:10:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx strict-transport-security: - - max-age=31536000 + - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"002","RoleInstance":"MWH0EPF0004E171"}}' - x-ms-resource-unit: - - '1' + x-content-type-options: + - nosniff status: code: 200 message: OK - request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", - "principalId":"00000000-0000-0000-0000-000000000001"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks enable-addons Connection: - keep-alive - Content-Length: - - '232' - Content-Type: - - application/json - Cookie: - - x-ms-gateway-slice=Production ParameterSetName: - -a -g -n --subnet-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleAssignments/50ed11c8-df49-4742-af40-c85fc932be3e?api-version=2022-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e0b07f9-7e21-4823-b5ac-69b6ebb032e7?api-version=2016-03-30 response: body: - string: '{"error":{"code":"RoleAssignmentExists","message":"The role assignment - already exists."}}' + string: "{\n \"name\": \"f9070b8e-217e-2348-b5ac-69b6ebb032e7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T01:05:46.0354612Z\"\n }" headers: cache-control: - no-cache content-length: - - '89' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:03:46 GMT + - Sun, 18 Jun 2023 01:10:37 GMT expires: - '-1' pragma: - no-cache + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 409 - message: Conflict + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -3012,30 +3086,29 @@ interactions: ParameterSetName: - -a -g -n --subnet-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e0b07f9-7e21-4823-b5ac-69b6ebb032e7?api-version=2016-03-30 response: body: - string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Grants - full access to manage all resources, but does not allow you to assign roles - in Azure RBAC, manage assignments in Azure Blueprints, or share image galleries.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete","Microsoft.Compute/galleries/share/action"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2021-11-11T20:13:28.6061853Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' + string: "{\n \"name\": \"f9070b8e-217e-2348-b5ac-69b6ebb032e7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T01:05:46.0354612Z\"\n }" headers: cache-control: - no-cache content-length: - - '984' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:04:00 GMT + - Sun, 18 Jun 2023 01:11:17 GMT expires: - '-1' pragma: - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3061,94 +3134,93 @@ interactions: ParameterSetName: - -a -g -n --subnet-name User-Agent: - - python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) AZURECLI/2.46.0 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%273fac8b4e-cd90-4baa-a5d2-66d52bc8349d%27%29 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e0b07f9-7e21-4823-b5ac-69b6ebb032e7?api-version=2016-03-30 response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[{"id":"119e1aeb-4592-42d6-9507-c66df857924f","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"azcli-aks-live-test","appDescription":null,"appId":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","applicationTemplateId":null,"appOwnerOrganizationId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"createdDateTime":"2021-04-20T10:17:48Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"azcli-aks-live-test","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["3fac8b4e-cd90-4baa-a5d2-66d52bc8349d"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":["HideApp","WindowsAzureActiveDirectoryIntegratedApp"],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + string: "{\n \"name\": \"f9070b8e-217e-2348-b5ac-69b6ebb032e7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T01:05:46.0354612Z\"\n }" headers: cache-control: - no-cache content-length: - - '1354' + - '126' content-type: - - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:04:00 GMT - odata-version: - - '4.0' - request-id: - - e5bba4d0-762d-4d9b-a89c-4b566bddd073 + - Sun, 18 Jun 2023 01:11:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx strict-transport-security: - - max-age=31536000 + - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"001","RoleInstance":"MW2PEPF000031DA"}}' - x-ms-resource-unit: - - '1' + x-content-type-options: + - nosniff status: code: 200 message: OK - request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", - "principalId":"00000000-0000-0000-0000-000000000001"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks enable-addons Connection: - keep-alive - Content-Length: - - '232' - Content-Type: - - application/json - Cookie: - - x-ms-gateway-slice=Production ParameterSetName: - -a -g -n --subnet-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleAssignments/5b450be3-1fbf-489d-bb1a-4833ac58aae7?api-version=2022-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e0b07f9-7e21-4823-b5ac-69b6ebb032e7?api-version=2016-03-30 response: body: - string: '{"error":{"code":"RoleAssignmentExists","message":"The role assignment - already exists."}}' + string: "{\n \"name\": \"f9070b8e-217e-2348-b5ac-69b6ebb032e7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T01:05:46.0354612Z\"\n }" headers: cache-control: - no-cache content-length: - - '89' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:04:01 GMT + - Sun, 18 Jun 2023 01:12:18 GMT expires: - '-1' pragma: - no-cache + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: - code: 409 - message: Conflict + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -3158,30 +3230,29 @@ interactions: ParameterSetName: - -a -g -n --subnet-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e0b07f9-7e21-4823-b5ac-69b6ebb032e7?api-version=2016-03-30 response: body: - string: '{"value":[{"properties":{"roleName":"Contributor","type":"BuiltInRole","description":"Grants - full access to manage all resources, but does not allow you to assign roles - in Azure RBAC, manage assignments in Azure Blueprints, or share image galleries.","assignableScopes":["/"],"permissions":[{"actions":["*"],"notActions":["Microsoft.Authorization/*/Delete","Microsoft.Authorization/*/Write","Microsoft.Authorization/elevateAccess/Action","Microsoft.Blueprint/blueprintAssignments/write","Microsoft.Blueprint/blueprintAssignments/delete","Microsoft.Compute/galleries/share/action"],"dataActions":[],"notDataActions":[]}],"createdOn":"2015-02-02T21:55:09.8806423Z","updatedOn":"2021-11-11T20:13:28.6061853Z","createdBy":null,"updatedBy":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","type":"Microsoft.Authorization/roleDefinitions","name":"b24988ac-6180-42a0-ab88-20f7382dd24c"}]}' + string: "{\n \"name\": \"f9070b8e-217e-2348-b5ac-69b6ebb032e7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-18T01:05:46.0354612Z\"\n }" headers: cache-control: - no-cache content-length: - - '984' + - '126' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:04:17 GMT + - Sun, 18 Jun 2023 01:12:48 GMT expires: - '-1' pragma: - no-cache - set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3207,89 +3278,132 @@ interactions: ParameterSetName: - -a -g -n --subnet-name User-Agent: - - python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) AZURECLI/2.46.0 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%273fac8b4e-cd90-4baa-a5d2-66d52bc8349d%27%29 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8e0b07f9-7e21-4823-b5ac-69b6ebb032e7?api-version=2016-03-30 response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[{"id":"119e1aeb-4592-42d6-9507-c66df857924f","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"azcli-aks-live-test","appDescription":null,"appId":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","applicationTemplateId":null,"appOwnerOrganizationId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"createdDateTime":"2021-04-20T10:17:48Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"azcli-aks-live-test","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["3fac8b4e-cd90-4baa-a5d2-66d52bc8349d"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":["HideApp","WindowsAzureActiveDirectoryIntegratedApp"],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + string: "{\n \"name\": \"f9070b8e-217e-2348-b5ac-69b6ebb032e7\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-18T01:05:46.0354612Z\",\n \"\ + endTime\": \"2023-06-18T01:13:19.1369784Z\"\n }" headers: cache-control: - no-cache content-length: - - '1354' + - '170' content-type: - - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:04:17 GMT - odata-version: - - '4.0' - request-id: - - e74047d2-c319-4e75-8b00-b4784197b75c + - Sun, 18 Jun 2023 02:09:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx strict-transport-security: - - max-age=31536000 + - max-age=31536000; includeSubDomains transfer-encoding: - chunked vary: - Accept-Encoding - x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"000","RoleInstance":"CO1PEPF00000107"}}' - x-ms-resource-unit: - - '1' + x-content-type-options: + - nosniff status: code: 200 message: OK - request: - body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", - "principalId":"00000000-0000-0000-0000-000000000001"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks enable-addons Connection: - keep-alive - Content-Length: - - '232' - Content-Type: - - application/json - Cookie: - - x-ms-gateway-slice=Production ParameterSetName: - -a -g -n --subnet-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleAssignments/52bd2b2b-27af-4671-ac49-f31dc15ca418?api-version=2022-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-04-01 response: body: - string: '{"error":{"code":"RoleAssignmentExists","message":"The role assignment - already exists."}}' + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000004\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000005\",\n \"fqdn\": \"cliaksdns000005-7tc1r3hm.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000005-7tc1r3hm.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"addonProfiles\": {\n \"aciConnectorLinux\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"SubnetName\": \"default\"\n }\n \ + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000004_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ + effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000004_westus2/providers/Microsoft.Network/publicIPAddresses/3e7da07e-b6e5-4123-b7fc-a06c283b9c50\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n\ + \ \"securityProfile\": {\n \"defender\": {\n \"logAnalyticsWorkspaceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n }\n\ + \ },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"\ + oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n\ + \ }\n }" headers: cache-control: - no-cache content-length: - - '89' + - '4335' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:04:18 GMT + - Sun, 18 Jun 2023 02:09:06 GMT expires: - '-1' pragma: - no-cache + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1171' status: - code: 409 - message: Conflict + code: 200 + message: OK - request: body: null headers: @@ -3304,8 +3418,8 @@ interactions: ParameterSetName: - -a -g -n --subnet-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Contributor%27&api-version=2022-04-01 response: @@ -3321,7 +3435,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:04:36 GMT + - Sun, 18 Jun 2023 02:09:07 GMT expires: - '-1' pragma: @@ -3353,25 +3467,25 @@ interactions: ParameterSetName: - -a -g -n --subnet-name User-Agent: - - python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) AZURECLI/2.46.0 + - python/3.8.16 (macOS-13.4-arm64-arm-64bit) AZURECLI/2.49.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%273fac8b4e-cd90-4baa-a5d2-66d52bc8349d%27%29 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27589aab3b-9823-44db-a486-a28799d1a111%27%29 response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[{"id":"119e1aeb-4592-42d6-9507-c66df857924f","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"azcli-aks-live-test","appDescription":null,"appId":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","applicationTemplateId":null,"appOwnerOrganizationId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"createdDateTime":"2021-04-20T10:17:48Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"azcli-aks-live-test","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["3fac8b4e-cd90-4baa-a5d2-66d52bc8349d"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":["HideApp","WindowsAzureActiveDirectoryIntegratedApp"],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[{"id":"9da81edb-57d8-48d0-aaae-ef965f1637a1","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"clitest000003","appDescription":null,"appId":"589aab3b-9823-44db-a486-a28799d1a111","applicationTemplateId":null,"appOwnerOrganizationId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"createdDateTime":"2023-06-18T00:55:37Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"clitest000003","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["589aab3b-9823-44db-a486-a28799d1a111"],"servicePrincipalType":"Application","signInAudience":"AzureADandPersonalMicrosoftAccount","tags":[],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' headers: cache-control: - no-cache content-length: - - '1354' + - '1312' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 15 Mar 2023 10:04:37 GMT + - Sun, 18 Jun 2023 02:09:08 GMT odata-version: - '4.0' request-id: - - 4b5f585a-4c0e-49a5-a394-5abcbf7317f6 + - 6857cbb8-ce64-4f97-b8f7-180fe8211d8c strict-transport-security: - max-age=31536000 transfer-encoding: @@ -3379,7 +3493,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"000","RoleInstance":"CO1PEPF00000104"}}' + - '{"ServerInfo":{"DataCenter":"North Central US","Slice":"E","Ring":"3","ScaleUnit":"000","RoleInstance":"CH01EPF0000731A"}}' x-ms-resource-unit: - '1' status: @@ -3406,10 +3520,10 @@ interactions: ParameterSetName: - -a -g -n --subnet-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleAssignments/b1bf4931-e22e-4e83-9d20-c1f29a1d3cc4?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/providers/Microsoft.Authorization/roleAssignments/c3bb67b3-1dc8-4b08-abdf-2d74909733c6?api-version=2022-04-01 response: body: string: '{"error":{"code":"RoleAssignmentExists","message":"The role assignment @@ -3422,7 +3536,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:04:37 GMT + - Sun, 18 Jun 2023 02:09:09 GMT expires: - '-1' pragma: @@ -3432,7 +3546,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 409 message: Conflict @@ -3450,61 +3564,66 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000004\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000005\",\n \"fqdn\": \"cliaksdns000005-8bvyzh49.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000005-8bvyzh49.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\",\n - \ \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"addonProfiles\": {\n \"aciConnectorLinux\": {\n \"enabled\": - true,\n \"config\": {\n \"SubnetName\": \"default\"\n }\n }\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000004_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000004_westus2/providers/Microsoft.Network/publicIPAddresses/90c31e58-6973-4360-bcc4-dad3582c2136\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '3642' + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000004\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000005\",\n \"fqdn\": \"cliaksdns000005-7tc1r3hm.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000005-7tc1r3hm.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clitest.vn000002/subnets/default\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"addonProfiles\": {\n \"aciConnectorLinux\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"SubnetName\": \"default\"\n }\n \ + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000004_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ + effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000004_westus2/providers/Microsoft.Network/publicIPAddresses/3e7da07e-b6e5-4123-b7fc-a06c283b9c50\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n\ + \ \"securityProfile\": {\n \"defender\": {\n \"logAnalyticsWorkspaceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n }\n\ + \ },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"\ + oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n\ + \ }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4335' content-type: - application/json date: - - Wed, 15 Mar 2023 10:04:58 GMT + - Sun, 18 Jun 2023 02:09:11 GMT expires: - '-1' pragma: @@ -3538,8 +3657,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000004?api-version=2023-04-01 response: @@ -3547,17 +3666,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2be02e8b-1e36-4543-9645-4979c94cbbfd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/76052cde-e8ba-4b67-8a19-ac51f6eb1c65?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:04:59 GMT + - Sun, 18 Jun 2023 02:09:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/2be02e8b-1e36-4543-9645-4979c94cbbfd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/76052cde-e8ba-4b67-8a19-ac51f6eb1c65?api-version=2016-03-30 pragma: - no-cache server: @@ -3567,7 +3686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_without_skip_role_assignment.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_without_skip_role_assignment.yaml old mode 100755 new mode 100644 index f1502813232..2412930c274 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_without_skip_role_assignment.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_service_without_skip_role_assignment.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -n -g --address-prefix --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:05:00Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_default_service_without_skip_role_assignment","date":"2023-06-14T21:15:48Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '390' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:05:01 GMT + - Wed, 14 Jun 2023 21:15:54 GMT expires: - '-1' pragma: @@ -61,30 +61,32 @@ interactions: ParameterSetName: - -n -g --address-prefix --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"clivnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004\",\r\n - \ \"etag\": \"W/\\\"c65cf647-eeb8-49d3-9fe2-eb462325d397\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"42654f73-8ad0-4f1c-bbe1-f0b38047d576\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n - \ {\r\n \"name\": \"clisubnet000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005\",\r\n - \ \"etag\": \"W/\\\"c65cf647-eeb8-49d3-9fe2-eb462325d397\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"192.168.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false\r\n }\r\n}" + string: "{\r\n \"name\": \"clivnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004\"\ + ,\r\n \"etag\": \"W/\\\"a06d4d97-9fab-4f1d-b837-d18ba5a4e821\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ + \ \"resourceGuid\": \"f38bbb0d-fa82-48b4-a93f-a8a181f963cb\",\r\n \"\ + addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\ + \r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\"\ + : \"clisubnet000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005\"\ + ,\r\n \"etag\": \"W/\\\"a06d4d97-9fab-4f1d-b837-d18ba5a4e821\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"addressPrefix\": \"192.168.0.0/24\",\r\n \"delegations\"\ + : [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\ + \n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f67e8943-cdb2-4938-9751-c2a90a1b7604?api-version=2022-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e0257230-761d-4644-9add-20c69a2701d0?api-version=2022-01-01 cache-control: - no-cache content-length: @@ -92,7 +94,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:05:01 GMT + - Wed, 14 Jun 2023 21:15:56 GMT expires: - '-1' pragma: @@ -105,7 +107,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 31dffb7b-ebfa-4eec-a8b0-917fd226d1b7 + - 716b44d2-33d5-440c-bd47-bac460d85f32 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -125,9 +127,58 @@ interactions: ParameterSetName: - -n -g --address-prefix --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f67e8943-cdb2-4938-9751-c2a90a1b7604?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e0257230-761d-4644-9add-20c69a2701d0?api-version=2022-01-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 14 Jun 2023 21:15:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - e36ca9c8-d45a-444f-ab3a-e54f8a8422f5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g --address-prefix --subnet-name --subnet-prefix + User-Agent: + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e0257230-761d-4644-9add-20c69a2701d0?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -139,7 +190,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:05:04 GMT + - Wed, 14 Jun 2023 21:16:06 GMT expires: - '-1' pragma: @@ -156,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d5f8a7ed-22d3-4a1c-8e0f-2002fa4ed89e + - 90bd7755-6c22-4194-aa35-81c20618fed0 status: code: 200 message: OK @@ -174,25 +225,27 @@ interactions: ParameterSetName: - -n -g --address-prefix --subnet-name --subnet-prefix User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"clivnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004\",\r\n - \ \"etag\": \"W/\\\"f6915912-0f3a-4a3a-aab0-93a1d2eae189\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"42654f73-8ad0-4f1c-bbe1-f0b38047d576\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n - \ {\r\n \"name\": \"clisubnet000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005\",\r\n - \ \"etag\": \"W/\\\"f6915912-0f3a-4a3a-aab0-93a1d2eae189\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"192.168.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false\r\n }\r\n}" + string: "{\r\n \"name\": \"clivnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004\"\ + ,\r\n \"etag\": \"W/\\\"42300ccc-9f55-495a-958a-a2b227182e60\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ + \ \"resourceGuid\": \"f38bbb0d-fa82-48b4-a93f-a8a181f963cb\",\r\n \"\ + addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\ + \r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\"\ + : \"clisubnet000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005\"\ + ,\r\n \"etag\": \"W/\\\"42300ccc-9f55-495a-958a-a2b227182e60\\\"\"\ + ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"addressPrefix\": \"192.168.0.0/24\",\r\n \"delegations\"\ + : [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\ + \n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\"\ + : false\r\n }\r\n}" headers: cache-control: - no-cache @@ -201,9 +254,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:05:04 GMT + - Wed, 14 Jun 2023 21:16:06 GMT etag: - - W/"f6915912-0f3a-4a3a-aab0-93a1d2eae189" + - W/"42300ccc-9f55-495a-958a-a2b227182e60" expires: - '-1' pragma: @@ -220,7 +273,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d3a9e952-11e9-496c-a80c-fc8b29cd18f3 + - b13ad944-96a6-442a-8279-e0e9020bdaaa status: code: 200 message: OK @@ -239,8 +292,8 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: @@ -256,7 +309,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:05:04 GMT + - Wed, 14 Jun 2023 21:16:08 GMT expires: - '-1' pragma: @@ -285,22 +338,38 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005/providers/Microsoft.Authorization/roleAssignments?$filter=atScope()&api-version=2022-04-01 response: body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-26T05:33:00.7067936Z","updatedOn":"2021-04-26T05:33:00.7067936Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2adf4737-6342-4f63-aeb2-5fcd3426a387","type":"Microsoft.Authorization/roleAssignments","name":"2adf4737-6342-4f63-aeb2-5fcd3426a387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-26T06:09:24.5972802Z","updatedOn":"2021-04-26T06:09:24.5972802Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4572c05-f69f-4e5c-aac6-79afefcf0e2e","type":"Microsoft.Authorization/roleAssignments","name":"c4572c05-f69f-4e5c-aac6-79afefcf0e2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-18T05:18:40.4643436Z","updatedOn":"2021-06-18T05:18:40.4643436Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f926301-cc14-4a88-a3b7-c159d73d01f6","type":"Microsoft.Authorization/roleAssignments","name":"3f926301-cc14-4a88-a3b7-c159d73d01f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:40.4541416Z","updatedOn":"2022-01-25T05:49:40.4541416Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/95e51146-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"95e51146-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:41.6466655Z","updatedOn":"2022-01-25T05:49:41.6466655Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96d4d041-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"96d4d041-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:42.8008295Z","updatedOn":"2022-01-25T05:49:42.8008295Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/978dbc52-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"978dbc52-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:43.7159467Z","updatedOn":"2022-01-25T05:49:43.7159467Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9808753a-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"9808753a-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:44.8535285Z","updatedOn":"2022-01-25T05:49:44.8535285Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9895826c-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"9895826c-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:21.9669611Z","updatedOn":"2022-01-25T06:00:21.9669611Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/143cab45-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"143cab45-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:21.7844500Z","updatedOn":"2022-01-25T06:00:21.7844500Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/143a47b2-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"143a47b2-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:22.8152511Z","updatedOn":"2022-01-25T06:00:22.8152511Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1503a122-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"1503a122-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:22.7549989Z","updatedOn":"2022-01-25T06:00:22.7549989Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14fdfc11-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"14fdfc11-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:47.5002672Z","updatedOn":"2022-01-25T06:00:47.5002672Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23901ba1-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"23901ba1-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:47.9954045Z","updatedOn":"2022-01-25T06:00:47.9954045Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23d4b2c8-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"23d4b2c8-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:48.0124462Z","updatedOn":"2022-01-25T06:00:48.0124462Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23eb1c2a-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"23eb1c2a-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:49.0142818Z","updatedOn":"2022-01-25T06:00:49.0142818Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/248c7804-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"248c7804-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:49.8561822Z","updatedOn":"2022-01-25T06:00:49.8561822Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/25212cc5-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"25212cc5-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:03:00.8232622Z","updatedOn":"2022-01-25T06:03:00.8232622Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/730ae441-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"730ae441-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:03:01.6908492Z","updatedOn":"2022-01-25T06:03:01.6908492Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/73b81c51-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"73b81c51-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:27.0646115Z","updatedOn":"2022-01-25T06:05:27.0646115Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca436279-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"ca436279-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:27.8245772Z","updatedOn":"2022-01-25T06:05:27.8245772Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cad7146c-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cad7146c-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:28.8193427Z","updatedOn":"2022-01-25T06:05:28.8193427Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cb6be874-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cb6be874-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:30.0125029Z","updatedOn":"2022-01-25T06:05:30.0125029Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc20f7f4-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cc20f7f4-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:31.2002633Z","updatedOn":"2022-01-25T06:05:31.2002633Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ccd748dd-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"ccd748dd-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:32.4937030Z","updatedOn":"2022-01-25T06:05:32.4937030Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd4bbd1a-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cd4bbd1a-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:33.6999970Z","updatedOn":"2022-01-25T06:05:33.6999970Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce56964e-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"ce56964e-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:35.3719606Z","updatedOn":"2022-01-25T06:05:35.3719606Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf53c36b-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cf53c36b-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:37.0989473Z","updatedOn":"2022-01-25T06:05:37.0989473Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0537e9f-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d0537e9f-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:37.9186616Z","updatedOn":"2022-01-25T06:05:37.9186616Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0d7c10e-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d0d7c10e-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:39.2245796Z","updatedOn":"2022-01-25T06:05:39.2245796Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d187dc7e-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d187dc7e-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:41.3147495Z","updatedOn":"2022-01-25T06:05:41.3147495Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2d190da-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d2d190da-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:42.0909979Z","updatedOn":"2022-01-25T06:05:42.0909979Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3553305-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d3553305-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T04:11:40.8923959Z","updatedOn":"2023-02-10T04:11:40.8923959Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b9cb4b1-7e07-4127-b87e-47e7ab8ae685","type":"Microsoft.Authorization/roleAssignments","name":"7b9cb4b1-7e07-4127-b87e-47e7ab8ae685"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-18T03:09:33.8702688Z","updatedOn":"2021-09-18T03:09:33.8702688Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99d6fd13-909e-4c52-807e-77f7a5af83c8","type":"Microsoft.Authorization/roleAssignments","name":"99d6fd13-909e-4c52-807e-77f7a5af83c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T17:23:35.8382756Z","updatedOn":"2021-10-08T17:23:35.8382756Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de/providers/Microsoft.Authorization/roleAssignments/ade4333c-4321-4b68-b498-d081d55e2b0c","type":"Microsoft.Authorization/roleAssignments","name":"ade4333c-4321-4b68-b498-d081d55e2b0c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9136073Z","updatedOn":"2019-03-26T22:01:02.9136073Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6f4de15e-9316-4714-a7c4-40c46cf8e067","type":"Microsoft.Authorization/roleAssignments","name":"6f4de15e-9316-4714-a7c4-40c46cf8e067"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:13.2137492Z","updatedOn":"2020-02-25T18:36:13.2137492Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/18fdd87e-1c01-424e-b380-32310f4940c2","type":"Microsoft.Authorization/roleAssignments","name":"18fdd87e-1c01-424e-b380-32310f4940c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:00.4746112Z","updatedOn":"2020-02-25T18:36:00.4746112Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d9bcf58a-6f24-446d-bf60-20ffe5142396","type":"Microsoft.Authorization/roleAssignments","name":"d9bcf58a-6f24-446d-bf60-20ffe5142396"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:55.7490022Z","updatedOn":"2020-02-25T18:35:55.7490022Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6e2b954b-42b2-48e0-997a-622601f0a4b4","type":"Microsoft.Authorization/roleAssignments","name":"6e2b954b-42b2-48e0-997a-622601f0a4b4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:57.9173081Z","updatedOn":"2020-02-25T18:35:57.9173081Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9","type":"Microsoft.Authorization/roleAssignments","name":"8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:23.0673659Z","updatedOn":"2020-02-25T18:36:23.0673659Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d0817c57-3e5b-4363-88b7-52baadd5c362","type":"Microsoft.Authorization/roleAssignments","name":"d0817c57-3e5b-4363-88b7-52baadd5c362"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:31.2596366Z","updatedOn":"2020-02-25T18:36:31.2596366Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0dabf212-a1c7-4af6-ba8b-be045493b368","type":"Microsoft.Authorization/roleAssignments","name":"0dabf212-a1c7-4af6-ba8b-be045493b368"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:52.9188704Z","updatedOn":"2020-02-25T18:35:52.9188704Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d674b853-332e-4437-9ddb-bba8fde7ccce","type":"Microsoft.Authorization/roleAssignments","name":"d674b853-332e-4437-9ddb-bba8fde7ccce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:38.8393742Z","updatedOn":"2020-02-25T18:36:38.8393742Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/00625383-053d-4227-a4db-b098e9bd2289","type":"Microsoft.Authorization/roleAssignments","name":"00625383-053d-4227-a4db-b098e9bd2289"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:05.0954462Z","updatedOn":"2020-02-25T18:36:05.0954462Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/3151fe9c-fcd2-45d3-a256-72fb13b86df5","type":"Microsoft.Authorization/roleAssignments","name":"3151fe9c-fcd2-45d3-a256-72fb13b86df5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-07-06T18:51:23.0753297Z","updatedOn":"2020-07-06T18:51:23.0753297Z","createdBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","updatedBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b3a9e1db-fde1-4ddd-ac1c-91913be67359","type":"Microsoft.Authorization/roleAssignments","name":"b3a9e1db-fde1-4ddd-ac1c-91913be67359"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T21:14:55.1655079Z","updatedOn":"2023-02-28T22:54:18.0450083Z","createdBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","updatedBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6565c104-61e2-5756-96d7-663b216c8b11","type":"Microsoft.Authorization/roleAssignments","name":"6565c104-61e2-5756-96d7-663b216c8b11"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-02-17T00:30:39.4967398Z","updatedOn":"2022-02-17T00:30:39.4967398Z","createdBy":"a4319ad3-20be-4542-8952-685b66e56377","updatedBy":"a4319ad3-20be-4542-8952-685b66e56377","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d8aedac6-3663-42b3-add4-c013b7935fb4","type":"Microsoft.Authorization/roleAssignments","name":"d8aedac6-3663-42b3-add4-c013b7935fb4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-03-02T23:53:39.1630622Z","updatedOn":"2022-03-02T23:53:39.1630622Z","createdBy":"a4319ad3-20be-4542-8952-685b66e56377","updatedBy":"a4319ad3-20be-4542-8952-685b66e56377","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b5f0a13f-ac13-4e45-8588-15f5d9a02b20","type":"Microsoft.Authorization/roleAssignments","name":"b5f0a13f-ac13-4e45-8588-15f5d9a02b20"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:58:05.8353141Z","updatedOn":"2022-03-08T00:58:05.8353141Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/403b97d1-ee0a-4b10-afe1-f36f368d2ced","type":"Microsoft.Authorization/roleAssignments","name":"403b97d1-ee0a-4b10-afe1-f36f368d2ced"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-05-16T23:08:20.8536608Z","updatedOn":"2022-05-16T23:08:20.8536608Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8b338a13-cfa6-42e6-b424-fb375ce9d07c","type":"Microsoft.Authorization/roleAssignments","name":"8b338a13-cfa6-42e6-b424-fb375ce9d07c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-05-17T18:23:54.2264851Z","updatedOn":"2022-05-31T17:20:00.8273681Z","createdBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","updatedBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f0576973-5014-5fe2-b3f2-cf3aace860d6","type":"Microsoft.Authorization/roleAssignments","name":"f0576973-5014-5fe2-b3f2-cf3aace860d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:21.3325762Z","updatedOn":"2022-07-19T00:07:21.3325762Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2697280b-812c-472d-841b-a10a9fe540a5","type":"Microsoft.Authorization/roleAssignments","name":"2697280b-812c-472d-841b-a10a9fe540a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:23.7020980Z","updatedOn":"2022-07-19T00:07:23.7020980Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f4254463-7a28-4d26-b331-5a18c354cbe6","type":"Microsoft.Authorization/roleAssignments","name":"f4254463-7a28-4d26-b331-5a18c354cbe6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:26.4080657Z","updatedOn":"2022-07-19T00:07:26.4080657Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/065a63ba-71cc-4c69-b92b-bc67421e7e64","type":"Microsoft.Authorization/roleAssignments","name":"065a63ba-71cc-4c69-b92b-bc67421e7e64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:33.0012805Z","updatedOn":"2021-08-09T18:17:33.0012805Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/01de8fe7-aae0-4d5c-844a-f0bdb8335252","type":"Microsoft.Authorization/roleAssignments","name":"01de8fe7-aae0-4d5c-844a-f0bdb8335252"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:39.9188336Z","updatedOn":"2021-08-09T18:17:39.9188336Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ab2be506-5489-4c1f-add0-f5ed87a10439","type":"Microsoft.Authorization/roleAssignments","name":"ab2be506-5489-4c1f-add0-f5ed87a10439"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:18.2000692Z","updatedOn":"2021-08-24T19:32:18.2000692Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0ce2f3fb-17ea-4193-9081-09aa4b39fec4","type":"Microsoft.Authorization/roleAssignments","name":"0ce2f3fb-17ea-4193-9081-09aa4b39fec4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:36.6775144Z","updatedOn":"2021-08-24T19:32:36.6775144Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2e95b289-99bd-4e68-83de-5433f2a0428c","type":"Microsoft.Authorization/roleAssignments","name":"2e95b289-99bd-4e68-83de-5433f2a0428c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:09.1056400Z","updatedOn":"2021-11-01T22:46:09.1056400Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/82fe7886-5c1b-42c2-9319-7b4d436d8aba","type":"Microsoft.Authorization/roleAssignments","name":"82fe7886-5c1b-42c2-9319-7b4d436d8aba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:14.7527743Z","updatedOn":"2021-11-01T22:46:14.7527743Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/12162b26-25fb-4ef5-a6e8-651446483cb6","type":"Microsoft.Authorization/roleAssignments","name":"12162b26-25fb-4ef5-a6e8-651446483cb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:20.6399869Z","updatedOn":"2021-11-01T22:46:20.6399869Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870","type":"Microsoft.Authorization/roleAssignments","name":"105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-01-26T20:10:13.8998989Z","updatedOn":"2021-01-26T20:10:13.8998989Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b36517ec-61d3-468d-afdc-eceda8adb4ee","type":"Microsoft.Authorization/roleAssignments","name":"b36517ec-61d3-468d-afdc-eceda8adb4ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-02-06T00:13:19.1780775Z","updatedOn":"2021-02-06T00:13:19.1780775Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5216c1ee-4f58-4d36-b379-6c04b1fbd157","type":"Microsoft.Authorization/roleAssignments","name":"5216c1ee-4f58-4d36-b379-6c04b1fbd157"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:26:34.3109215Z","updatedOn":"2021-04-16T18:26:34.3109215Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/7464f8a3-9f55-443b-a3a5-44a31b100cad","type":"Microsoft.Authorization/roleAssignments","name":"7464f8a3-9f55-443b-a3a5-44a31b100cad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:27:56.4446265Z","updatedOn":"2021-04-16T18:27:56.4446265Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8f430c4c-4317-4495-9f01-4f3d4e1ca111","type":"Microsoft.Authorization/roleAssignments","name":"8f430c4c-4317-4495-9f01-4f3d4e1ca111"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-05-04T19:20:06.7695456Z","updatedOn":"2021-05-04T19:20:06.7695456Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa","type":"Microsoft.Authorization/roleAssignments","name":"fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9176787Z","updatedOn":"2019-03-26T22:01:02.9176787Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320","type":"Microsoft.Authorization/roleAssignments","name":"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:49:37.3000523Z","updatedOn":"2019-03-27T00:49:37.3000523Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29","type":"Microsoft.Authorization/roleAssignments","name":"e6e1fffd-83f7-40c7-9f33-e56e2cf75b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:50:08.3039053Z","updatedOn":"2019-03-27T00:50:08.3039053Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12","type":"Microsoft.Authorization/roleAssignments","name":"3d01f56e-ee3a-41ed-a775-0e067546cb12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T23:11:28.9217618Z","updatedOn":"2022-06-28T23:11:28.9217618Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/869183bd-893a-46f9-bb02-45e48b13f1be","type":"Microsoft.Authorization/roleAssignments","name":"869183bd-893a-46f9-bb02-45e48b13f1be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T22:32:46.2324804Z","updatedOn":"2023-02-21T22:32:46.2324804Z","createdBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","updatedBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/df7c1e07-5c2d-4b22-b7b9-fd11a8569db3","type":"Microsoft.Authorization/roleAssignments","name":"df7c1e07-5c2d-4b22-b7b9-fd11a8569db3"}]}' + string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:58.6582166Z","updatedOn":"2020-08-21T16:23:58.6582166Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ab72fbd-e5fe-4a7d-ae20-baad615d688d","type":"Microsoft.Authorization/roleAssignments","name":"8ab72fbd-e5fe-4a7d-ae20-baad615d688d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:59.5326945Z","updatedOn":"2020-08-21T16:23:59.5326945Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4ed77f1d-82a2-4a02-b48e-fa5776870280","type":"Microsoft.Authorization/roleAssignments","name":"4ed77f1d-82a2-4a02-b48e-fa5776870280"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-02T01:52:45.8299382Z","updatedOn":"2020-09-02T01:52:45.8299382Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3e21284b-6bd7-431a-81ae-ccaf56267ab5","type":"Microsoft.Authorization/roleAssignments","name":"3e21284b-6bd7-431a-81ae-ccaf56267ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-07T09:44:47.3865537Z","updatedOn":"2020-09-07T09:44:47.3865537Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79357f85-973d-4621-b1bd-d1ecb645e146","type":"Microsoft.Authorization/roleAssignments","name":"79357f85-973d-4621-b1bd-d1ecb645e146"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-24T00:04:10.5243862Z","updatedOn":"2020-09-24T00:04:10.5243862Z","createdBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","updatedBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78586b2c-fdf9-11ea-9e5e-8851fb3f4911","type":"Microsoft.Authorization/roleAssignments","name":"78586b2c-fdf9-11ea-9e5e-8851fb3f4911"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-29T10:55:39.3762731Z","updatedOn":"2020-09-29T10:55:39.3762731Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41e159ac-411a-4eed-b319-5b92571d2950","type":"Microsoft.Authorization/roleAssignments","name":"41e159ac-411a-4eed-b319-5b92571d2950"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-06T00:33:22.8792900Z","updatedOn":"2020-10-06T00:33:22.8792900Z","createdBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","updatedBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24d0c5e6-0763-11eb-82a0-d636039e345c","type":"Microsoft.Authorization/roleAssignments","name":"24d0c5e6-0763-11eb-82a0-d636039e345c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-14T00:29:42.9981174Z","updatedOn":"2020-10-14T00:29:42.9981174Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6af4ef5-80f6-4303-a641-45689a1646dc","type":"Microsoft.Authorization/roleAssignments","name":"c6af4ef5-80f6-4303-a641-45689a1646dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-16T16:42:17.7175670Z","updatedOn":"2020-10-16T16:42:17.7175670Z","createdBy":"d69d1d49-5dc8-4c8e-afb6-325d83ddcee8","updatedBy":"d69d1d49-5dc8-4c8e-afb6-325d83ddcee8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5854c7a2-cf00-46f9-9cc1-d977f34324df","type":"Microsoft.Authorization/roleAssignments","name":"5854c7a2-cf00-46f9-9cc1-d977f34324df"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-02T09:02:29.2637630Z","updatedOn":"2020-11-02T09:02:29.2637630Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ad1faa8-8680-4dec-a768-050e8349af33","type":"Microsoft.Authorization/roleAssignments","name":"0ad1faa8-8680-4dec-a768-050e8349af33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-03T22:00:44.4523883Z","updatedOn":"2020-11-03T22:00:44.4523883Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/908aa5ac-22a2-413a-9333-fcb0a1ba2c59","type":"Microsoft.Authorization/roleAssignments","name":"908aa5ac-22a2-413a-9333-fcb0a1ba2c59"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-09T14:00:59.0347294Z","updatedOn":"2020-11-09T14:00:59.0347294Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9541f93-ea4a-4b1b-98bf-839fecfcaa22","type":"Microsoft.Authorization/roleAssignments","name":"e9541f93-ea4a-4b1b-98bf-839fecfcaa22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-12-18T08:00:24.9874024Z","updatedOn":"2020-12-18T08:00:24.9874024Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7f60817e-27b5-486b-bbdb-b748bcb752d4","type":"Microsoft.Authorization/roleAssignments","name":"7f60817e-27b5-486b-bbdb-b748bcb752d4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-12-30T11:06:51.2887287Z","updatedOn":"2020-12-30T11:06:51.2887287Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1cbe1756-4a8f-11eb-b753-720008210d90","type":"Microsoft.Authorization/roleAssignments","name":"1cbe1756-4a8f-11eb-b753-720008210d90"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-01-13T06:12:19.1847916Z","updatedOn":"2021-01-13T06:12:19.1847916Z","createdBy":"241cd743-2c33-4860-bd3a-1df659c06eef","updatedBy":"241cd743-2c33-4860-bd3a-1df659c06eef","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/498bf4f6-5566-11eb-a35b-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"498bf4f6-5566-11eb-a35b-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-04T06:52:05.2038586Z","updatedOn":"2021-02-04T06:52:05.2038586Z","createdBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","updatedBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdf6a314-3605-4944-96c1-08b7364dba54","type":"Microsoft.Authorization/roleAssignments","name":"fdf6a314-3605-4944-96c1-08b7364dba54"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T00:37:53.4699042Z","updatedOn":"2021-02-17T00:37:53.4699042Z","createdBy":"e5ad6d43-d6ac-4061-84cc-f7cb826200a0","updatedBy":"e5ad6d43-d6ac-4061-84cc-f7cb826200a0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c06abb18-9697-41f9-9410-ff0ee9b13ab9","type":"Microsoft.Authorization/roleAssignments","name":"c06abb18-9697-41f9-9410-ff0ee9b13ab9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T01:26:55.0758483Z","updatedOn":"2021-02-17T01:26:55.0758483Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9812b416-33c9-4b88-bcdb-6b8406dd319f","type":"Microsoft.Authorization/roleAssignments","name":"9812b416-33c9-4b88-bcdb-6b8406dd319f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T01:38:17.8125104Z","updatedOn":"2021-02-17T01:38:17.8125104Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82e0c83f-b7dd-49f6-b501-ff05951db69d","type":"Microsoft.Authorization/roleAssignments","name":"82e0c83f-b7dd-49f6-b501-ff05951db69d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-19T01:25:51.9967288Z","updatedOn":"2021-02-19T01:25:51.9967288Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2e4ab306-7ae7-4867-8e22-90215bdbeb9a","type":"Microsoft.Authorization/roleAssignments","name":"2e4ab306-7ae7-4867-8e22-90215bdbeb9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-01T21:51:55.4255791Z","updatedOn":"2021-03-01T21:51:55.4255791Z","createdBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","updatedBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36175f2d-f556-464e-a509-19cbb3f45909","type":"Microsoft.Authorization/roleAssignments","name":"36175f2d-f556-464e-a509-19cbb3f45909"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-21T03:42:13.8891609Z","updatedOn":"2020-02-21T03:42:13.8891609Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c41b0416-12e4-49bb-9e35-411e4f409102","type":"Microsoft.Authorization/roleAssignments","name":"c41b0416-12e4-49bb-9e35-411e4f409102"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-22T07:53:45.7192431Z","updatedOn":"2020-04-22T07:53:45.7192431Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d01cbd3-f3e3-4712-95c6-cf07a0224887","type":"Microsoft.Authorization/roleAssignments","name":"0d01cbd3-f3e3-4712-95c6-cf07a0224887"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-30T06:27:35.9310363Z","updatedOn":"2020-04-30T06:27:35.9310363Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a1327e4-100e-43ee-b04e-1403969b805b","type":"Microsoft.Authorization/roleAssignments","name":"6a1327e4-100e-43ee-b04e-1403969b805b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-06-13T06:44:49.9960198Z","updatedOn":"2019-06-13T06:44:49.9960198Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33958269-41a0-400a-91a1-6303d954c8f0","type":"Microsoft.Authorization/roleAssignments","name":"33958269-41a0-400a-91a1-6303d954c8f0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-04-16T02:04:22.4782415Z","updatedOn":"2019-04-16T02:04:22.4782415Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bacdb283-653c-47eb-a578-11743d7898f8","type":"Microsoft.Authorization/roleAssignments","name":"bacdb283-653c-47eb-a578-11743d7898f8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-27T09:09:33.7347978Z","updatedOn":"2020-03-27T09:09:33.7347978Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d355b17-e9d6-47b7-9181-b54ad0083793","type":"Microsoft.Authorization/roleAssignments","name":"6d355b17-e9d6-47b7-9181-b54ad0083793"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-19T02:50:30.0038186Z","updatedOn":"2019-03-19T02:50:30.0038186Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26adec15-a0e4-4b2e-a437-9b545b9723fc","type":"Microsoft.Authorization/roleAssignments","name":"26adec15-a0e4-4b2e-a437-9b545b9723fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-04-17T00:50:00.2288905Z","updatedOn":"2019-04-17T00:50:00.2288905Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e873fd7-4bdb-4df5-a510-c15f3ce99cd6","type":"Microsoft.Authorization/roleAssignments","name":"0e873fd7-4bdb-4df5-a510-c15f3ce99cd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-08T07:40:31.7235048Z","updatedOn":"2020-05-08T07:40:31.7235048Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbfa0c0c-2653-4fb8-b9e5-d41bd96053a7","type":"Microsoft.Authorization/roleAssignments","name":"cbfa0c0c-2653-4fb8-b9e5-d41bd96053a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-11-15T22:27:15.6601349Z","updatedOn":"2018-11-15T22:27:15.6601349Z","createdBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","updatedBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/418847ec-df97-4b29-9711-fc833817e5d6","type":"Microsoft.Authorization/roleAssignments","name":"418847ec-df97-4b29-9711-fc833817e5d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-28T14:20:52.7506898Z","updatedOn":"2019-08-28T14:20:52.7506898Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/715fd118-93b8-4b09-822d-48de5afb21e3","type":"Microsoft.Authorization/roleAssignments","name":"715fd118-93b8-4b09-822d-48de5afb21e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-06T05:22:04.7673784Z","updatedOn":"2019-01-06T05:22:04.7673784Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba5c8600-8cc9-4778-9735-c3d57d26e50d","type":"Microsoft.Authorization/roleAssignments","name":"ba5c8600-8cc9-4778-9735-c3d57d26e50d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-02T16:21:28.6789246Z","updatedOn":"2020-06-02T16:21:28.6789246Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd6bf5d5-fc1c-4fcd-81f3-0d11d3ff9f42","type":"Microsoft.Authorization/roleAssignments","name":"bd6bf5d5-fc1c-4fcd-81f3-0d11d3ff9f42"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-20T08:42:00.9560545Z","updatedOn":"2020-04-20T08:42:00.9560545Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7a41b62f-97d4-4f4c-8bfc-4a8dd708e00f","type":"Microsoft.Authorization/roleAssignments","name":"7a41b62f-97d4-4f4c-8bfc-4a8dd708e00f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-23T03:10:28.2381030Z","updatedOn":"2020-04-23T03:10:28.2381030Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f98d1512-e634-4663-a219-24be2e6bfe1c","type":"Microsoft.Authorization/roleAssignments","name":"f98d1512-e634-4663-a219-24be2e6bfe1c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-15T02:06:03.3308352Z","updatedOn":"2020-04-15T02:06:03.3308352Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6142150e-c404-48e6-a731-fffb36357051","type":"Microsoft.Authorization/roleAssignments","name":"6142150e-c404-48e6-a731-fffb36357051"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-11-16T23:46:13.9660279Z","updatedOn":"2018-11-16T23:46:13.9660279Z","createdBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","updatedBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b66b1ea-89dd-4bc6-8d89-96298648eb40","type":"Microsoft.Authorization/roleAssignments","name":"2b66b1ea-89dd-4bc6-8d89-96298648eb40"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-10-27T00:03:26.2878499Z","updatedOn":"2018-10-27T00:03:26.2878499Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea920230-1aba-4f80-9eef-3fed8216f594","type":"Microsoft.Authorization/roleAssignments","name":"ea920230-1aba-4f80-9eef-3fed8216f594"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-03T09:55:40.2829720Z","updatedOn":"2020-04-03T09:55:40.2829720Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9c2a551-11aa-4b0a-8816-f8511cd46a32","type":"Microsoft.Authorization/roleAssignments","name":"c9c2a551-11aa-4b0a-8816-f8511cd46a32"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-26T21:10:42.2124416Z","updatedOn":"2020-03-26T21:10:42.2124416Z","createdBy":"50ee185f-0eb1-4577-ae14-4ecf59cfa8f7","updatedBy":"50ee185f-0eb1-4577-ae14-4ecf59cfa8f7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d394da6c-4def-47de-8689-791727331c5b","type":"Microsoft.Authorization/roleAssignments","name":"d394da6c-4def-47de-8689-791727331c5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-21T07:34:50.7125622Z","updatedOn":"2020-04-21T07:34:50.7125622Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ddeb2255-2bb6-458a-a891-532e96ae5483","type":"Microsoft.Authorization/roleAssignments","name":"ddeb2255-2bb6-458a-a891-532e96ae5483"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-23T04:07:45.3308845Z","updatedOn":"2020-06-23T04:07:45.3308845Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15d1dab1-b507-11ea-819c-a28e10bedef6","type":"Microsoft.Authorization/roleAssignments","name":"15d1dab1-b507-11ea-819c-a28e10bedef6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-13T00:09:08.8179220Z","updatedOn":"2020-05-13T00:09:08.8179220Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/08a578f0-4875-47d0-8775-946b3a0f2b06","type":"Microsoft.Authorization/roleAssignments","name":"08a578f0-4875-47d0-8775-946b3a0f2b06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-10T23:15:46.8549700Z","updatedOn":"2020-05-10T23:15:46.8549700Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/22d3da65-7681-445e-9080-e748e494676f","type":"Microsoft.Authorization/roleAssignments","name":"22d3da65-7681-445e-9080-e748e494676f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-29T13:30:14.1177711Z","updatedOn":"2019-08-29T13:30:14.1177711Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a2c1014-c1ba-4ae9-a632-90967c28429d","type":"Microsoft.Authorization/roleAssignments","name":"4a2c1014-c1ba-4ae9-a632-90967c28429d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-27T01:26:21.7189691Z","updatedOn":"2020-02-27T01:26:21.7189691Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28808064-5900-11ea-81c8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"28808064-5900-11ea-81c8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-07-03T01:05:25.8863198Z","updatedOn":"2020-07-03T01:05:25.8863198Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46877403-bcc9-11ea-924f-00155d871f03","type":"Microsoft.Authorization/roleAssignments","name":"46877403-bcc9-11ea-924f-00155d871f03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-28T19:57:23.3708745Z","updatedOn":"2019-03-28T19:57:23.3708745Z","createdBy":"66cb050e-bae1-4005-8c4c-0f6dd9b34978","updatedBy":"66cb050e-bae1-4005-8c4c-0f6dd9b34978","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc796cab-2f6b-4099-b9a3-7500f5516153","type":"Microsoft.Authorization/roleAssignments","name":"cc796cab-2f6b-4099-b9a3-7500f5516153"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-30T22:56:44.9793119Z","updatedOn":"2020-03-30T22:56:44.9793119Z","createdBy":"53bb8815-874d-4b05-9953-1158e05aa080","updatedBy":"53bb8815-874d-4b05-9953-1158e05aa080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/000ea275-41c4-40ce-943f-98a8849a56bc","type":"Microsoft.Authorization/roleAssignments","name":"000ea275-41c4-40ce-943f-98a8849a56bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-10T01:13:53.0806696Z","updatedOn":"2020-06-10T01:13:53.0806696Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a584fad9-aab7-11ea-b7e7-00155d4b0124","type":"Microsoft.Authorization/roleAssignments","name":"a584fad9-aab7-11ea-b7e7-00155d4b0124"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-12T00:23:23.9037436Z","updatedOn":"2020-05-12T00:23:23.9037436Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ff95229-981f-40d7-889f-97bc90b8f387","type":"Microsoft.Authorization/roleAssignments","name":"6ff95229-981f-40d7-889f-97bc90b8f387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-09T00:52:52.1315983Z","updatedOn":"2020-06-09T00:52:52.1315983Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7512dec1-86e5-400d-8bc9-f24f181127f3","type":"Microsoft.Authorization/roleAssignments","name":"7512dec1-86e5-400d-8bc9-f24f181127f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-14T04:03:23.9185561Z","updatedOn":"2020-04-14T04:03:23.9185561Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f0f495d-0356-4239-b966-3f47f5f1054a","type":"Microsoft.Authorization/roleAssignments","name":"0f0f495d-0356-4239-b966-3f47f5f1054a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-14T00:42:59.8868253Z","updatedOn":"2020-05-14T00:42:59.8868253Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b3c8d44-237c-410c-a095-52ded7f5cd26","type":"Microsoft.Authorization/roleAssignments","name":"6b3c8d44-237c-410c-a095-52ded7f5cd26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-11T13:26:01.9493491Z","updatedOn":"2020-02-11T13:26:01.9493491Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8fab1ba3-53c2-4b21-9d32-dc89fd061811","type":"Microsoft.Authorization/roleAssignments","name":"8fab1ba3-53c2-4b21-9d32-dc89fd061811"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-03T05:34:39.2163770Z","updatedOn":"2020-04-03T05:34:39.2163770Z","createdBy":"ed4707f4-8b58-42fe-9afd-0045d7a9b262","updatedBy":"ed4707f4-8b58-42fe-9afd-0045d7a9b262","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e4edc2a-dd1f-469b-9a44-f0693866b843","type":"Microsoft.Authorization/roleAssignments","name":"8e4edc2a-dd1f-469b-9a44-f0693866b843"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-20T19:40:09.1141460Z","updatedOn":"2020-02-20T19:40:09.1141460Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4673bf4-97da-4102-9284-2a7315b88a34","type":"Microsoft.Authorization/roleAssignments","name":"d4673bf4-97da-4102-9284-2a7315b88a34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-21T07:19:44.2488168Z","updatedOn":"2020-04-21T07:19:44.2488168Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fadbe071-d757-48fc-b82a-4784249ded10","type":"Microsoft.Authorization/roleAssignments","name":"fadbe071-d757-48fc-b82a-4784249ded10"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-12T17:29:23.0437979Z","updatedOn":"2019-03-12T17:29:23.0437979Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7e76154-c2a7-4419-b73f-e8c6010318c9","type":"Microsoft.Authorization/roleAssignments","name":"a7e76154-c2a7-4419-b73f-e8c6010318c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-16T23:29:48.3209681Z","updatedOn":"2020-03-16T23:29:48.3209681Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3eb4155b-2965-456b-8f00-bca8a13b1684","type":"Microsoft.Authorization/roleAssignments","name":"3eb4155b-2965-456b-8f00-bca8a13b1684"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:49:54.3783181Z","updatedOn":"2022-01-05T01:49:54.3783181Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/25b4b181-6b51-4bce-beb0-1310829e6de3","type":"Microsoft.Authorization/roleAssignments","name":"25b4b181-6b51-4bce-beb0-1310829e6de3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:50:16.7495633Z","updatedOn":"2022-01-05T01:50:16.7495633Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/093e4a08-9393-4b9d-b3a0-011d77557170","type":"Microsoft.Authorization/roleAssignments","name":"093e4a08-9393-4b9d-b3a0-011d77557170"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:50:40.1521378Z","updatedOn":"2022-01-05T01:50:40.1521378Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e5090ae4-6b40-4bab-9d46-482593ec6229","type":"Microsoft.Authorization/roleAssignments","name":"e5090ae4-6b40-4bab-9d46-482593ec6229"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:52:32.8811339Z","updatedOn":"2022-01-05T01:52:32.8811339Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/923a1dab-e203-422e-bb91-c492a895438e","type":"Microsoft.Authorization/roleAssignments","name":"923a1dab-e203-422e-bb91-c492a895438e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T03:31:42.0793122Z","updatedOn":"2022-01-05T03:31:42.0793122Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6cb2e77-1041-4f33-b449-27f9e8738933","type":"Microsoft.Authorization/roleAssignments","name":"d6cb2e77-1041-4f33-b449-27f9e8738933"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T20:29:36.5271689Z","updatedOn":"2022-01-05T20:29:36.5271689Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3267f83c-6e66-11ec-ae40-aa665a565aa7","type":"Microsoft.Authorization/roleAssignments","name":"3267f83c-6e66-11ec-ae40-aa665a565aa7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-08T01:44:09.0575891Z","updatedOn":"2022-01-08T01:44:09.0575891Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/772c985f-7024-11ec-ab61-00224859aac4","type":"Microsoft.Authorization/roleAssignments","name":"772c985f-7024-11ec-ab61-00224859aac4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-10T07:51:08.0345330Z","updatedOn":"2022-01-10T07:51:08.0345330Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/11391e93-71ea-11ec-97af-0022485937da","type":"Microsoft.Authorization/roleAssignments","name":"11391e93-71ea-11ec-97af-0022485937da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-10T19:52:35.8785494Z","updatedOn":"2022-01-10T19:52:35.8785494Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e403838c-88cd-4fc0-b3e8-45c39ad905c1","type":"Microsoft.Authorization/roleAssignments","name":"e403838c-88cd-4fc0-b3e8-45c39ad905c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-17T09:00:11.8306086Z","updatedOn":"2022-01-17T09:00:11.8306086Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2159ffa-089e-4729-a990-364e13db2a65","type":"Microsoft.Authorization/roleAssignments","name":"b2159ffa-089e-4729-a990-364e13db2a65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-18T13:28:29.0699621Z","updatedOn":"2022-01-18T13:28:29.0699621Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81905706-3ec4-4c25-9c82-d4640a0479c3","type":"Microsoft.Authorization/roleAssignments","name":"81905706-3ec4-4c25-9c82-d4640a0479c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-18T20:11:29.5693659Z","updatedOn":"2022-01-18T20:11:29.5693659Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00f40078-a8bd-4bae-9278-ef9de2d5f632","type":"Microsoft.Authorization/roleAssignments","name":"00f40078-a8bd-4bae-9278-ef9de2d5f632"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-19T08:18:43.7411382Z","updatedOn":"2022-01-19T08:18:43.7411382Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82d96cd7-1671-46d7-afc8-9e3d4c56170d","type":"Microsoft.Authorization/roleAssignments","name":"82d96cd7-1671-46d7-afc8-9e3d4c56170d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-19T18:26:48.3434705Z","updatedOn":"2022-01-19T18:26:48.3434705Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0614428a-cde1-4e89-8202-6cb5cd85e6d8","type":"Microsoft.Authorization/roleAssignments","name":"0614428a-cde1-4e89-8202-6cb5cd85e6d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-20T07:46:22.7990066Z","updatedOn":"2022-01-20T07:46:22.7990066Z","createdBy":"0d969ded-9dc4-4176-8b0f-5194740910bf","updatedBy":"0d969ded-9dc4-4176-8b0f-5194740910bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1134cc98-79c5-11ec-9058-ced79d6624f9","type":"Microsoft.Authorization/roleAssignments","name":"1134cc98-79c5-11ec-9058-ced79d6624f9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-21T02:59:53.1540625Z","updatedOn":"2022-01-21T02:59:53.1540625Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2b558e6-2979-4a34-ba92-81e51afae60d","type":"Microsoft.Authorization/roleAssignments","name":"e2b558e6-2979-4a34-ba92-81e51afae60d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-21T03:51:31.7700381Z","updatedOn":"2022-01-21T03:51:31.7700381Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/774b38ec-8425-4659-9c1c-3662aa0d128a","type":"Microsoft.Authorization/roleAssignments","name":"774b38ec-8425-4659-9c1c-3662aa0d128a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-24T08:18:11.4759466Z","updatedOn":"2022-01-24T08:18:11.4759466Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a6b5b99-dbf6-4270-8c73-cc3e5808e147","type":"Microsoft.Authorization/roleAssignments","name":"9a6b5b99-dbf6-4270-8c73-cc3e5808e147"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-24T08:32:50.8732169Z","updatedOn":"2022-01-24T08:32:50.8732169Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/11d67934-0c51-4dad-8284-f6aced7c815c","type":"Microsoft.Authorization/roleAssignments","name":"11d67934-0c51-4dad-8284-f6aced7c815c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T07:03:14.4901261Z","updatedOn":"2022-01-25T07:03:14.4901261Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dcacb94f-7dac-11ec-be41-c6ce4e0f899a","type":"Microsoft.Authorization/roleAssignments","name":"dcacb94f-7dac-11ec-be41-c6ce4e0f899a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T20:35:15.6769413Z","updatedOn":"2022-01-25T20:35:15.6769413Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9e8bf969-d76d-4923-84d9-d9f98b267d71","type":"Microsoft.Authorization/roleAssignments","name":"9e8bf969-d76d-4923-84d9-d9f98b267d71"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-26T15:50:53.7946290Z","updatedOn":"2022-01-26T15:50:53.7946290Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bdcc5219-7ebf-11ec-bada-00224878d5c3","type":"Microsoft.Authorization/roleAssignments","name":"bdcc5219-7ebf-11ec-bada-00224878d5c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T02:28:59.3221529Z","updatedOn":"2022-01-27T02:28:59.3221529Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28cd45d5-8a0f-4b35-8ee3-f82463ccdf3a","type":"Microsoft.Authorization/roleAssignments","name":"28cd45d5-8a0f-4b35-8ee3-f82463ccdf3a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T02:38:11.8679643Z","updatedOn":"2022-01-27T02:38:11.8679643Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3364749d-7f1a-11ec-9b35-e6e10709004e","type":"Microsoft.Authorization/roleAssignments","name":"3364749d-7f1a-11ec-9b35-e6e10709004e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T03:21:28.9388159Z","updatedOn":"2022-01-27T03:21:28.9388159Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5706d36-4da0-4a7e-abdb-20e8ce5c709d","type":"Microsoft.Authorization/roleAssignments","name":"f5706d36-4da0-4a7e-abdb-20e8ce5c709d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T22:45:56.1614375Z","updatedOn":"2022-01-27T22:45:56.1614375Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8757d35e-c05f-4b14-9b69-94880cf3c630","type":"Microsoft.Authorization/roleAssignments","name":"8757d35e-c05f-4b14-9b69-94880cf3c630"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-31T20:16:07.1248292Z","updatedOn":"2022-01-31T20:16:07.1248292Z","createdBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","updatedBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f16a76e-82d2-11ec-b26c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"9f16a76e-82d2-11ec-b26c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-31T23:19:58.8275488Z","updatedOn":"2022-01-31T23:19:58.8275488Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2192301f-06dd-491e-8e34-93a3cf5c0197","type":"Microsoft.Authorization/roleAssignments","name":"2192301f-06dd-491e-8e34-93a3cf5c0197"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-01T22:56:44.2373253Z","updatedOn":"2022-02-01T22:56:44.2373253Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/395d775a-83b2-11ec-8917-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"395d775a-83b2-11ec-8917-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-01T23:17:51.6753012Z","updatedOn":"2022-02-01T23:17:51.6753012Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb3685a8-f064-431a-8ab6-21f276ae0e4d","type":"Microsoft.Authorization/roleAssignments","name":"fb3685a8-f064-431a-8ab6-21f276ae0e4d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-03T23:18:19.3769285Z","updatedOn":"2022-02-03T23:18:19.3769285Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ff008d0-8547-11ec-87de-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"8ff008d0-8547-11ec-87de-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-05T12:04:01.3658712Z","updatedOn":"2022-02-05T12:04:01.3658712Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3fb26d3-867b-11ec-8bb2-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"b3fb26d3-867b-11ec-8bb2-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-07T19:33:07.4702067Z","updatedOn":"2022-02-07T19:33:07.4702067Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c80d3f4a-065e-4e11-b0a1-9a04f4384563","type":"Microsoft.Authorization/roleAssignments","name":"c80d3f4a-065e-4e11-b0a1-9a04f4384563"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-07T20:03:20.2169334Z","updatedOn":"2022-02-07T20:03:20.2169334Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd6cdc49-8850-11ec-b237-027f0b78f6ab","type":"Microsoft.Authorization/roleAssignments","name":"fd6cdc49-8850-11ec-b237-027f0b78f6ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-08T08:00:07.9076727Z","updatedOn":"2022-02-08T08:00:07.9076727Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cdb4bce2-b187-4057-9fa4-ead6eeb4b442","type":"Microsoft.Authorization/roleAssignments","name":"cdb4bce2-b187-4057-9fa4-ead6eeb4b442"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-08T13:12:19.0792698Z","updatedOn":"2022-02-08T13:12:19.0792698Z","createdBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","updatedBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bccb433c-88e0-11ec-9c26-2e7a733c8e34","type":"Microsoft.Authorization/roleAssignments","name":"bccb433c-88e0-11ec-9c26-2e7a733c8e34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-08T16:00:23.2107710Z","updatedOn":"2022-02-08T16:00:23.2107710Z","createdBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","updatedBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/376f32c6-88f8-11ec-b700-2e7a733c8e34","type":"Microsoft.Authorization/roleAssignments","name":"376f32c6-88f8-11ec-b700-2e7a733c8e34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T08:35:07.6001520Z","updatedOn":"2022-02-11T08:35:07.6001520Z","createdBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","updatedBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8422aed5-8b15-11ec-8a3f-6045bd7c1155","type":"Microsoft.Authorization/roleAssignments","name":"8422aed5-8b15-11ec-8a3f-6045bd7c1155"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T20:16:24.1407485Z","updatedOn":"2022-02-11T20:16:24.1407485Z","createdBy":"c518df35-7e98-4c84-9222-b902d191061e","updatedBy":"c518df35-7e98-4c84-9222-b902d191061e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88cc3504-a850-43bb-a42e-326e300ac247","type":"Microsoft.Authorization/roleAssignments","name":"88cc3504-a850-43bb-a42e-326e300ac247"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T20:17:44.8524024Z","updatedOn":"2022-02-11T20:17:44.8524024Z","createdBy":"c518df35-7e98-4c84-9222-b902d191061e","updatedBy":"c518df35-7e98-4c84-9222-b902d191061e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/270f86d3-cdff-4d1c-8dee-20cbe11a28e0","type":"Microsoft.Authorization/roleAssignments","name":"270f86d3-cdff-4d1c-8dee-20cbe11a28e0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T20:17:45.1659184Z","updatedOn":"2022-02-11T20:17:45.1659184Z","createdBy":"c518df35-7e98-4c84-9222-b902d191061e","updatedBy":"c518df35-7e98-4c84-9222-b902d191061e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a536c303-c7bb-4556-b252-b8faa982403e","type":"Microsoft.Authorization/roleAssignments","name":"a536c303-c7bb-4556-b252-b8faa982403e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-13T11:41:48.7463966Z","updatedOn":"2022-02-13T11:41:48.7463966Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed14b636-8cc1-11ec-b294-002248785c41","type":"Microsoft.Authorization/roleAssignments","name":"ed14b636-8cc1-11ec-b294-002248785c41"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.6113342Z","updatedOn":"2022-02-14T09:22:36.6113342Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca42541d-172f-4c3a-8286-8e260e99050e","type":"Microsoft.Authorization/roleAssignments","name":"ca42541d-172f-4c3a-8286-8e260e99050e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.6424591Z","updatedOn":"2022-02-14T09:22:36.6424591Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8bcdc0e8-d9c2-478a-3363-0965130c9559","type":"Microsoft.Authorization/roleAssignments","name":"8bcdc0e8-d9c2-478a-3363-0965130c9559"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.6556489Z","updatedOn":"2022-02-14T09:22:36.6556489Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdb4d934-dee6-4e1d-d817-9670b25e7200","type":"Microsoft.Authorization/roleAssignments","name":"fdb4d934-dee6-4e1d-d817-9670b25e7200"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.7217526Z","updatedOn":"2022-02-14T09:22:36.7217526Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e9e51fa-3ef2-46c7-ae2b-8a418b68637a","type":"Microsoft.Authorization/roleAssignments","name":"4e9e51fa-3ef2-46c7-ae2b-8a418b68637a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T15:34:50.0327527Z","updatedOn":"2022-02-14T15:34:50.0327527Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5579469-8dab-11ec-aa17-000d3a044b73","type":"Microsoft.Authorization/roleAssignments","name":"a5579469-8dab-11ec-aa17-000d3a044b73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T19:37:05.5912525Z","updatedOn":"2022-02-14T19:37:05.5912525Z","createdBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","updatedBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7aa99c5e-8dcd-11ec-931e-3ee49ac9ec9b","type":"Microsoft.Authorization/roleAssignments","name":"7aa99c5e-8dcd-11ec-931e-3ee49ac9ec9b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T23:14:13.9732126Z","updatedOn":"2022-02-14T23:14:13.9732126Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c604be80-2bb9-48b0-a450-3565ed763f26","type":"Microsoft.Authorization/roleAssignments","name":"c604be80-2bb9-48b0-a450-3565ed763f26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-15T08:25:10.2747643Z","updatedOn":"2022-02-15T08:25:10.2747643Z","createdBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","updatedBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9baa19c-8e38-11ec-8406-000d3a0dff4f","type":"Microsoft.Authorization/roleAssignments","name":"c9baa19c-8e38-11ec-8406-000d3a0dff4f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-15T16:27:03.8176136Z","updatedOn":"2022-02-15T16:27:03.8176136Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1efc7bb8-8e7c-11ec-aba3-5e309da6350b","type":"Microsoft.Authorization/roleAssignments","name":"1efc7bb8-8e7c-11ec-aba3-5e309da6350b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-16T01:17:47.1475801Z","updatedOn":"2022-02-16T01:17:47.1475801Z","createdBy":"20d1aaf0-7699-4c7f-8b08-6e5306613d73","updatedBy":"20d1aaf0-7699-4c7f-8b08-6e5306613d73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3fb9602f-8ec6-11ec-9d90-000d3a6d0522","type":"Microsoft.Authorization/roleAssignments","name":"3fb9602f-8ec6-11ec-9d90-000d3a6d0522"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-16T04:06:52.4519397Z","updatedOn":"2022-02-16T04:06:52.4519397Z","createdBy":"f986308d-63d6-4619-a4f5-851a3bf675cb","updatedBy":"f986308d-63d6-4619-a4f5-851a3bf675cb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/de0a2a00-8edd-11ec-89d6-62e3b50ea3e8","type":"Microsoft.Authorization/roleAssignments","name":"de0a2a00-8edd-11ec-89d6-62e3b50ea3e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-17T07:47:28.0184571Z","updatedOn":"2022-02-17T07:47:28.0184571Z","createdBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","updatedBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/034bc00f-181a-4058-a66b-793a86a3f1d9","type":"Microsoft.Authorization/roleAssignments","name":"034bc00f-181a-4058-a66b-793a86a3f1d9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-18T02:41:56.8572427Z","updatedOn":"2022-02-18T02:41:56.8572427Z","createdBy":"8611abc5-1512-49e0-a6d2-0624ffaf5ef3","updatedBy":"8611abc5-1512-49e0-a6d2-0624ffaf5ef3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/563ddb12-9064-11ec-b259-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"563ddb12-9064-11ec-b259-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-18T02:44:45.0089883Z","updatedOn":"2022-02-18T02:44:45.0089883Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba625e10-9064-11ec-a4c4-000d3a6fbef8","type":"Microsoft.Authorization/roleAssignments","name":"ba625e10-9064-11ec-a4c4-000d3a6fbef8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-21T12:55:18.9707919Z","updatedOn":"2022-02-21T12:55:18.9707919Z","createdBy":"74dcd4fc-6c01-4de6-85b9-6cd3d0b977a0","updatedBy":"74dcd4fc-6c01-4de6-85b9-6cd3d0b977a0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84d1b0a8-9315-11ec-a625-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"84d1b0a8-9315-11ec-a625-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-22T12:02:41.9576481Z","updatedOn":"2022-02-22T12:02:41.9576481Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7ff802f-d555-4740-9446-decc876041c2","type":"Microsoft.Authorization/roleAssignments","name":"f7ff802f-d555-4740-9446-decc876041c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-22T17:40:50.0656641Z","updatedOn":"2022-02-22T17:40:50.0656641Z","createdBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","updatedBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9330f714-9406-11ec-839f-e6018ea1a0b8","type":"Microsoft.Authorization/roleAssignments","name":"9330f714-9406-11ec-839f-e6018ea1a0b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-23T14:56:26.1925430Z","updatedOn":"2022-02-23T14:56:26.1925430Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5f94f93-94b8-11ec-a7aa-ce34ee50a641","type":"Microsoft.Authorization/roleAssignments","name":"c5f94f93-94b8-11ec-a7aa-ce34ee50a641"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-23T19:18:46.5080793Z","updatedOn":"2022-02-23T19:18:46.5080793Z","createdBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","updatedBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6bd539ac-94dd-11ec-af01-8c8590c99d20","type":"Microsoft.Authorization/roleAssignments","name":"6bd539ac-94dd-11ec-af01-8c8590c99d20"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-24T18:48:42.1150127Z","updatedOn":"2022-02-24T18:48:42.1150127Z","createdBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","updatedBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/75d2b821-a297-4959-9c53-d5375978304a","type":"Microsoft.Authorization/roleAssignments","name":"75d2b821-a297-4959-9c53-d5375978304a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-25T19:43:06.0365566Z","updatedOn":"2022-02-25T19:43:06.0365566Z","createdBy":"c2191082-b1ca-4fcd-9645-551452f60be4","updatedBy":"c2191082-b1ca-4fcd-9645-551452f60be4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f5fb238-9673-11ec-87ea-2ef8edc450dc","type":"Microsoft.Authorization/roleAssignments","name":"2f5fb238-9673-11ec-87ea-2ef8edc450dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-28T03:13:54.6616360Z","updatedOn":"2022-02-28T03:13:54.6616360Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/073872ac-f374-444a-ae66-fb821b8532a4","type":"Microsoft.Authorization/roleAssignments","name":"073872ac-f374-444a-ae66-fb821b8532a4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-28T16:39:27.8396295Z","updatedOn":"2022-02-28T16:39:27.8396295Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/60241af8-7226-485e-a261-c69b2cf152c4","type":"Microsoft.Authorization/roleAssignments","name":"60241af8-7226-485e-a261-c69b2cf152c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-01T13:58:58.0676838Z","updatedOn":"2022-03-01T13:58:58.0676838Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1e29644f-ada5-4d30-9c40-a406758409f1","type":"Microsoft.Authorization/roleAssignments","name":"1e29644f-ada5-4d30-9c40-a406758409f1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-03T10:22:00.9954003Z","updatedOn":"2022-03-03T10:22:00.9954003Z","createdBy":"08de6591-dec9-4255-ab17-d6919151fadd","updatedBy":"08de6591-dec9-4255-ab17-d6919151fadd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c30b494c-9adb-11ec-ae58-4a123144b5f6","type":"Microsoft.Authorization/roleAssignments","name":"c30b494c-9adb-11ec-ae58-4a123144b5f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-03T15:10:52.8750196Z","updatedOn":"2022-03-03T15:10:52.8750196Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1d1f5e12-9b04-11ec-bf9f-000d3ac561f6","type":"Microsoft.Authorization/roleAssignments","name":"1d1f5e12-9b04-11ec-bf9f-000d3ac561f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T03:22:58.4512023Z","updatedOn":"2022-03-07T03:22:58.4512023Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e234c5f8-9dc5-11ec-993d-0022485937da","type":"Microsoft.Authorization/roleAssignments","name":"e234c5f8-9dc5-11ec-993d-0022485937da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T11:02:56.8448863Z","updatedOn":"2022-03-07T11:02:56.8448863Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/258a4631-9e06-11ec-9362-98e7f4beee90","type":"Microsoft.Authorization/roleAssignments","name":"258a4631-9e06-11ec-9362-98e7f4beee90"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T22:29:31.2927512Z","updatedOn":"2022-03-07T22:29:31.2927512Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef654596-33a1-443e-8a7d-48c0aa96bfcb","type":"Microsoft.Authorization/roleAssignments","name":"ef654596-33a1-443e-8a7d-48c0aa96bfcb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T23:16:52.1440710Z","updatedOn":"2022-03-07T23:16:52.1440710Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3aea3844-0bdd-4673-9a4e-444433ce4230","type":"Microsoft.Authorization/roleAssignments","name":"3aea3844-0bdd-4673-9a4e-444433ce4230"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:15:35.5981652Z","updatedOn":"2022-03-08T00:15:35.5981652Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":"wenxuan-azure-cli"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be01fdd4-3bdf-4a61-8884-59ffb6e82843","type":"Microsoft.Authorization/roleAssignments","name":"be01fdd4-3bdf-4a61-8884-59ffb6e82843"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:22:25.1920031Z","updatedOn":"2022-03-08T00:22:25.1920031Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1433f18e-b3fc-4984-bd98-c93d9244fb18","type":"Microsoft.Authorization/roleAssignments","name":"1433f18e-b3fc-4984-bd98-c93d9244fb18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T18:56:05.1276019Z","updatedOn":"2022-03-08T18:56:05.1276019Z","createdBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","updatedBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67554406-9f11-11ec-b5da-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"67554406-9f11-11ec-b5da-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-09T00:02:42.6050341Z","updatedOn":"2022-03-09T00:02:42.6050341Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/398c74fc-afb6-47dd-bf7a-efcff5dc1b86","type":"Microsoft.Authorization/roleAssignments","name":"398c74fc-afb6-47dd-bf7a-efcff5dc1b86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-05T14:05:58.2716050Z","updatedOn":"2021-04-05T14:05:58.2716050Z","createdBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","updatedBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a9b0e6a-9618-11eb-879a-88e9fe77e044","type":"Microsoft.Authorization/roleAssignments","name":"0a9b0e6a-9618-11eb-879a-88e9fe77e044"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-05T17:37:43.7040494Z","updatedOn":"2021-04-05T17:37:43.7040494Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a04b0948-9635-11eb-b395-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"a04b0948-9635-11eb-b395-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T02:24:39.3826587Z","updatedOn":"2021-04-06T02:24:39.3826587Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c21611b-a840-4166-b9f4-8cec90c17841","type":"Microsoft.Authorization/roleAssignments","name":"6c21611b-a840-4166-b9f4-8cec90c17841"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T02:24:39.4154930Z","updatedOn":"2021-04-06T02:24:39.4154930Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/925d4876-8fde-4334-8f84-4ce52ca7108e","type":"Microsoft.Authorization/roleAssignments","name":"925d4876-8fde-4334-8f84-4ce52ca7108e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T04:46:32.1029699Z","updatedOn":"2021-04-06T04:46:32.1029699Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0dfdb837-9693-11eb-b629-b6178ece78ec","type":"Microsoft.Authorization/roleAssignments","name":"0dfdb837-9693-11eb-b629-b6178ece78ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T11:25:43.5702772Z","updatedOn":"2021-04-06T11:25:43.5702772Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/958a1320-4346-46fb-9722-828af239eb03","type":"Microsoft.Authorization/roleAssignments","name":"958a1320-4346-46fb-9722-828af239eb03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T20:54:21.5921112Z","updatedOn":"2021-04-06T20:54:21.5921112Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42ad5638-971a-11eb-abf6-00155d3a4c00","type":"Microsoft.Authorization/roleAssignments","name":"42ad5638-971a-11eb-abf6-00155d3a4c00"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T23:22:50.4425724Z","updatedOn":"2021-04-06T23:22:50.4425724Z","createdBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","updatedBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00a90f2a-972f-11eb-9121-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"00a90f2a-972f-11eb-9121-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T00:26:49.7250016Z","updatedOn":"2021-04-07T00:26:49.7250016Z","createdBy":"88f18750-8181-4579-8eff-eb44f510655c","updatedBy":"88f18750-8181-4579-8eff-eb44f510655c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dca2df37-fdd1-49dc-a1de-31a70d62e098","type":"Microsoft.Authorization/roleAssignments","name":"dca2df37-fdd1-49dc-a1de-31a70d62e098"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T09:10:47.4905668Z","updatedOn":"2021-04-07T09:10:47.4905668Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a5dbdef-0896-48cd-a325-318e807ea133","type":"Microsoft.Authorization/roleAssignments","name":"8a5dbdef-0896-48cd-a325-318e807ea133"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T19:55:01.1984055Z","updatedOn":"2021-04-07T19:55:01.1984055Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2301d942-97db-11eb-8bf8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2301d942-97db-11eb-8bf8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T22:36:06.7954601Z","updatedOn":"2021-04-07T22:36:06.7954601Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6070c7de-7571-4d55-8b2f-85285b7d9675","type":"Microsoft.Authorization/roleAssignments","name":"6070c7de-7571-4d55-8b2f-85285b7d9675"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-13T03:07:16.5183912Z","updatedOn":"2021-04-13T03:07:16.5183912Z","createdBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","updatedBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59402850-9c05-11eb-8744-20c9d0477c8f","type":"Microsoft.Authorization/roleAssignments","name":"59402850-9c05-11eb-8744-20c9d0477c8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-14T19:16:13.6465266Z","updatedOn":"2021-04-14T19:16:13.6465266Z","createdBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","updatedBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e04efa46-9d55-11eb-9723-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e04efa46-9d55-11eb-9723-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-15T02:29:06.6768532Z","updatedOn":"2021-04-15T02:29:06.6768532Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/19165f29-858f-47fa-befe-cd1babe9df75","type":"Microsoft.Authorization/roleAssignments","name":"19165f29-858f-47fa-befe-cd1babe9df75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-19T08:59:20.4071341Z","updatedOn":"2021-04-19T08:59:20.4071341Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88489205-a0ed-11eb-996c-1a21256cebfc","type":"Microsoft.Authorization/roleAssignments","name":"88489205-a0ed-11eb-996c-1a21256cebfc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-19T22:35:57.5324093Z","updatedOn":"2021-04-19T22:35:57.5324093Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b85c442-a15f-11eb-8a7c-00155d871f03","type":"Microsoft.Authorization/roleAssignments","name":"9b85c442-a15f-11eb-8a7c-00155d871f03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-21T12:31:21.7286225Z","updatedOn":"2021-04-21T12:31:21.7286225Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7770db7c-a29d-11eb-b48f-42472d33150a","type":"Microsoft.Authorization/roleAssignments","name":"7770db7c-a29d-11eb-b48f-42472d33150a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-11T02:49:35.7701861Z","updatedOn":"2021-05-11T02:49:35.7701861Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83c25ed3-b203-11eb-8150-56db513b8477","type":"Microsoft.Authorization/roleAssignments","name":"83c25ed3-b203-11eb-8150-56db513b8477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-12T06:15:49.6202169Z","updatedOn":"2021-05-12T06:15:49.6202169Z","createdBy":"069015af-8ac7-4304-a60f-69a8a50309be","updatedBy":"069015af-8ac7-4304-a60f-69a8a50309be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ecced22-b2e9-11eb-bdc4-da23ac480b85","type":"Microsoft.Authorization/roleAssignments","name":"7ecced22-b2e9-11eb-bdc4-da23ac480b85"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-18T02:08:43.3533001Z","updatedOn":"2021-05-18T02:08:43.3533001Z","createdBy":"069015af-8ac7-4304-a60f-69a8a50309be","updatedBy":"069015af-8ac7-4304-a60f-69a8a50309be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8582f67-b77d-11eb-bffb-52ac6a27ca65","type":"Microsoft.Authorization/roleAssignments","name":"f8582f67-b77d-11eb-bffb-52ac6a27ca65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-24T05:29:46.7966317Z","updatedOn":"2021-05-24T05:29:46.7966317Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d7389dd2-ee8e-4d34-8703-b304716b1761","type":"Microsoft.Authorization/roleAssignments","name":"d7389dd2-ee8e-4d34-8703-b304716b1761"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-01T09:38:20.8655603Z","updatedOn":"2021-06-01T09:38:20.8655603Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18455841-c2bd-11eb-80b3-9a0a2a9b0ea3","type":"Microsoft.Authorization/roleAssignments","name":"18455841-c2bd-11eb-80b3-9a0a2a9b0ea3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-03T16:55:35.8333154Z","updatedOn":"2021-06-03T16:55:35.8333154Z","createdBy":"ae4622a7-bde9-4bca-9599-2d18571bfeba","updatedBy":"ae4622a7-bde9-4bca-9599-2d18571bfeba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83e4c5e8-c48c-11eb-b991-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"83e4c5e8-c48c-11eb-b991-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-07T22:29:50.4448757Z","updatedOn":"2021-06-07T22:29:50.4448757Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/decef2d4-c7df-11eb-a83e-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"decef2d4-c7df-11eb-a83e-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-08T21:20:41.4426747Z","updatedOn":"2021-06-08T21:20:41.4426747Z","createdBy":"39fc5957-4b28-4245-a1ca-0c05574dd32b","updatedBy":"39fc5957-4b28-4245-a1ca-0c05574dd32b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/607bf63e-c89f-11eb-8348-eecc6a504bf0","type":"Microsoft.Authorization/roleAssignments","name":"607bf63e-c89f-11eb-8348-eecc6a504bf0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T14:35:18.7357331Z","updatedOn":"2021-06-15T14:35:18.7357331Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1151242-c950-413d-a273-4109579eac8a","type":"Microsoft.Authorization/roleAssignments","name":"b1151242-c950-413d-a273-4109579eac8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T14:35:18.7937546Z","updatedOn":"2021-06-15T14:35:18.7937546Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dc21aa69-a99c-435e-a256-64885b24ec34","type":"Microsoft.Authorization/roleAssignments","name":"dc21aa69-a99c-435e-a256-64885b24ec34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T15:23:52.9337722Z","updatedOn":"2021-06-15T15:23:52.9337722Z","createdBy":"1faabf99-27a1-4d2e-9e28-295923ee7a14","updatedBy":"1faabf99-27a1-4d2e-9e28-295923ee7a14","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1f9ad80-cded-11eb-81da-86d728f15930","type":"Microsoft.Authorization/roleAssignments","name":"b1f9ad80-cded-11eb-81da-86d728f15930"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-24T01:15:20.6480687Z","updatedOn":"2021-06-24T01:15:20.6480687Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3fe463a-d489-11eb-bcf6-88e9fe77d9d9","type":"Microsoft.Authorization/roleAssignments","name":"a3fe463a-d489-11eb-bcf6-88e9fe77d9d9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T00:02:18.3011415Z","updatedOn":"2021-06-29T00:02:18.3011415Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ba1c6ba-8f43-4749-9af5-b852adc24ec4","type":"Microsoft.Authorization/roleAssignments","name":"6ba1c6ba-8f43-4749-9af5-b852adc24ec4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T00:02:18.3104039Z","updatedOn":"2021-06-29T00:02:18.3104039Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1b67008-79aa-4059-a618-9f31a59e17ad","type":"Microsoft.Authorization/roleAssignments","name":"f1b67008-79aa-4059-a618-9f31a59e17ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T03:26:28.3273724Z","updatedOn":"2021-06-29T03:26:28.3273724Z","createdBy":"5dc8b685-8bb3-4140-b266-34da5be22de8","updatedBy":"5dc8b685-8bb3-4140-b266-34da5be22de8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cacd20e2-d889-11eb-8faf-365b90995dcc","type":"Microsoft.Authorization/roleAssignments","name":"cacd20e2-d889-11eb-8faf-365b90995dcc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T16:47:51.6512150Z","updatedOn":"2021-07-02T16:47:51.6512150Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ce776fa-db55-11eb-9c3e-0ee0ced9a7ad","type":"Microsoft.Authorization/roleAssignments","name":"3ce776fa-db55-11eb-9c3e-0ee0ced9a7ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T18:02:58.7913777Z","updatedOn":"2021-07-02T18:02:58.7913777Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb92467e-db5f-11eb-93bb-52bfc6c4d939","type":"Microsoft.Authorization/roleAssignments","name":"bb92467e-db5f-11eb-93bb-52bfc6c4d939"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T18:34:50.6034803Z","updatedOn":"2021-07-02T18:34:50.6034803Z","createdBy":"88f18750-8181-4579-8eff-eb44f510655c","updatedBy":"88f18750-8181-4579-8eff-eb44f510655c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e537d7a-5a2e-419c-8c51-0f55adab0793","type":"Microsoft.Authorization/roleAssignments","name":"4e537d7a-5a2e-419c-8c51-0f55adab0793"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-12T18:22:41.0622548Z","updatedOn":"2021-07-12T18:22:41.0622548Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a840989-f344-4bca-97c4-0f91fa1537c6","type":"Microsoft.Authorization/roleAssignments","name":"0a840989-f344-4bca-97c4-0f91fa1537c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-14T19:03:30.7799600Z","updatedOn":"2021-07-14T19:03:30.7799600Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d4385bd-e4d6-11eb-9e75-0a4737195831","type":"Microsoft.Authorization/roleAssignments","name":"2d4385bd-e4d6-11eb-9e75-0a4737195831"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-26T03:44:43.4505353Z","updatedOn":"2021-07-26T03:44:43.4505353Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79b52c96-edc4-11eb-8bd7-1e3bd0e19ace","type":"Microsoft.Authorization/roleAssignments","name":"79b52c96-edc4-11eb-8bd7-1e3bd0e19ace"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-28T21:04:39.7105526Z","updatedOn":"2021-07-28T21:04:39.7105526Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b9c8936-efe7-11eb-9484-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6b9c8936-efe7-11eb-9484-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-04T02:14:38.2049441Z","updatedOn":"2021-08-04T02:14:38.2049441Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b8013ec0-f4c9-11eb-999a-000d3a4fc0a9","type":"Microsoft.Authorization/roleAssignments","name":"b8013ec0-f4c9-11eb-999a-000d3a4fc0a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e3c35f4c-e0ca-4b9e-a01e-5ebdd17e2ee7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-04T18:45:22.7030533Z","updatedOn":"2021-08-04T18:45:22.7030533Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b007f9b6-e259-4c24-b8f1-4b74e434b776","type":"Microsoft.Authorization/roleAssignments","name":"b007f9b6-e259-4c24-b8f1-4b74e434b776"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-10T18:57:36.3877809Z","updatedOn":"2021-08-10T18:57:36.3877809Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d31d5edd-fa0c-11eb-a4e8-00155d4b0124","type":"Microsoft.Authorization/roleAssignments","name":"d31d5edd-fa0c-11eb-a4e8-00155d4b0124"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-11T13:17:28.5790828Z","updatedOn":"2021-08-11T13:17:28.5790828Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79c9ac4e-faa6-11eb-9265-9e748a6ca3f5","type":"Microsoft.Authorization/roleAssignments","name":"79c9ac4e-faa6-11eb-9265-9e748a6ca3f5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T20:40:36.9427810Z","updatedOn":"2021-08-24T20:40:36.9427810Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89077b4a-051b-11ec-b690-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"89077b4a-051b-11ec-b690-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-25T04:55:32.8103400Z","updatedOn":"2021-08-25T04:55:32.8103400Z","createdBy":"d8f2c3f8-41bf-41ae-aedb-23c9387322a8","updatedBy":"d8f2c3f8-41bf-41ae-aedb-23c9387322a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad278da4-0560-11ec-bfcc-00249b623abd","type":"Microsoft.Authorization/roleAssignments","name":"ad278da4-0560-11ec-bfcc-00249b623abd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-31T23:45:51.8536519Z","updatedOn":"2021-08-31T23:45:51.8536519Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92d8ca73-0ab5-11ec-9a80-00224809727f","type":"Microsoft.Authorization/roleAssignments","name":"92d8ca73-0ab5-11ec-9a80-00224809727f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-13T19:32:31.3713301Z","updatedOn":"2021-09-13T19:32:31.3713301Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/55fb0a56-14c9-11ec-ba1a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"55fb0a56-14c9-11ec-ba1a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-17T20:45:08.1118919Z","updatedOn":"2021-09-17T20:45:08.1118919Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/246a4240-17f8-11ec-a87c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"246a4240-17f8-11ec-a87c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T13:55:46.1211332Z","updatedOn":"2021-09-20T13:55:46.1211332Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/738cb0ee-1a1a-11ec-bce5-7a98cea1d963","type":"Microsoft.Authorization/roleAssignments","name":"738cb0ee-1a1a-11ec-bce5-7a98cea1d963"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T16:02:49.0433199Z","updatedOn":"2021-09-20T16:02:49.0433199Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/332824b6-1a2c-11ec-94e6-dadb5e134e96","type":"Microsoft.Authorization/roleAssignments","name":"332824b6-1a2c-11ec-94e6-dadb5e134e96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T18:45:44.1610490Z","updatedOn":"2021-09-20T18:45:44.1610490Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5aacbbc-1a42-11ec-82e7-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f5aacbbc-1a42-11ec-82e7-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-23T14:26:16.9983531Z","updatedOn":"2021-09-23T14:26:16.9983531Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35e02c16-1c7a-11ec-aba5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"35e02c16-1c7a-11ec-aba5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-29T01:26:50.3419658Z","updatedOn":"2021-09-29T01:26:50.3419658Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47eee8e3-89cd-4112-86a8-19f848334dd1","type":"Microsoft.Authorization/roleAssignments","name":"47eee8e3-89cd-4112-86a8-19f848334dd1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-04T20:39:52.4258668Z","updatedOn":"2021-10-04T20:39:52.4258668Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/395b589c-2553-11ec-8d77-000d3af95835","type":"Microsoft.Authorization/roleAssignments","name":"395b589c-2553-11ec-8d77-000d3af95835"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-07T22:03:00.0914961Z","updatedOn":"2021-10-07T22:03:00.0914961Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/554cbdbb-27ba-11ec-9441-ba8d312253c4","type":"Microsoft.Authorization/roleAssignments","name":"554cbdbb-27ba-11ec-9441-ba8d312253c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-07T22:03:56.3285135Z","updatedOn":"2021-10-07T22:03:56.3285135Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/76aa862c-27ba-11ec-a4ef-ba8d312253c4","type":"Microsoft.Authorization/roleAssignments","name":"76aa862c-27ba-11ec-a4ef-ba8d312253c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T18:53:10.3503826Z","updatedOn":"2021-10-08T18:53:10.3503826Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d9510e6f-d37b-4ce8-8a3b-78e5447b11c4","type":"Microsoft.Authorization/roleAssignments","name":"d9510e6f-d37b-4ce8-8a3b-78e5447b11c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T18:59:59.4287762Z","updatedOn":"2021-10-08T18:59:59.4287762Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d1a6d17-6c0a-4105-b86a-dcc55fe735e7","type":"Microsoft.Authorization/roleAssignments","name":"3d1a6d17-6c0a-4105-b86a-dcc55fe735e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-11T22:29:20.4165411Z","updatedOn":"2021-10-11T22:29:20.4165411Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5b65050-4b50-4b02-bea3-5986eccdd944","type":"Microsoft.Authorization/roleAssignments","name":"b5b65050-4b50-4b02-bea3-5986eccdd944"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-12T21:09:25.3258237Z","updatedOn":"2021-10-12T21:09:25.3258237Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/869d24c2-b6b1-4a26-9b9c-c50ecb64bc31","type":"Microsoft.Authorization/roleAssignments","name":"869d24c2-b6b1-4a26-9b9c-c50ecb64bc31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-13T08:19:03.1448099Z","updatedOn":"2021-10-13T08:19:03.1448099Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8869be9-f94e-47ae-90cb-c4d9bcb5b629","type":"Microsoft.Authorization/roleAssignments","name":"f8869be9-f94e-47ae-90cb-c4d9bcb5b629"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T04:53:25.9502873Z","updatedOn":"2021-10-14T04:53:36.3280652Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f622c27f-a03d-4fb8-b17d-7281dc0a984f","type":"Microsoft.Authorization/roleAssignments","name":"f622c27f-a03d-4fb8-b17d-7281dc0a984f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:26:21.6452814Z","updatedOn":"2021-10-14T05:26:21.6452814Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/439e7a28-2caf-11ec-ae23-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"439e7a28-2caf-11ec-ae23-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:54.7980840Z","updatedOn":"2021-10-14T05:37:54.7980840Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e049894b-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e049894b-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:56.1220463Z","updatedOn":"2021-10-14T05:37:56.1220463Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e1920687-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e1920687-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:58.2164501Z","updatedOn":"2021-10-14T05:37:58.2164501Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2809f7d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e2809f7d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:00.1774570Z","updatedOn":"2021-10-14T05:38:00.1774570Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3b78568-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e3b78568-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:01.6914375Z","updatedOn":"2021-10-14T05:38:01.6914375Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4e3f0fc-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e4e3f0fc-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:03.1856045Z","updatedOn":"2021-10-14T05:38:03.1856045Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e5c7c168-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e5c7c168-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:04.4121266Z","updatedOn":"2021-10-14T05:38:04.4121266Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e6847f02-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e6847f02-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:05.9623251Z","updatedOn":"2021-10-14T05:38:05.9623251Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7681b77-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e7681b77-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:07.5974823Z","updatedOn":"2021-10-14T05:38:07.5974823Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e82df158-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e82df158-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:09.3591403Z","updatedOn":"2021-10-14T05:38:09.3591403Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e94e3dd9-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e94e3dd9-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:11.1652349Z","updatedOn":"2021-10-14T05:38:11.1652349Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea5dbe0d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"ea5dbe0d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:12.6474393Z","updatedOn":"2021-10-14T05:38:12.6474393Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb6e896d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"eb6e896d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:15.1702403Z","updatedOn":"2021-10-14T05:38:15.1702403Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eceee9a0-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"eceee9a0-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T06:22:44.8991960Z","updatedOn":"2021-10-14T06:22:44.8991960Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2447d2a2-2cb7-11ec-91be-00224878e942","type":"Microsoft.Authorization/roleAssignments","name":"2447d2a2-2cb7-11ec-91be-00224878e942"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T06:22:46.4374928Z","updatedOn":"2021-10-14T06:22:46.4374928Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/251fc151-2cb7-11ec-91be-00224878e942","type":"Microsoft.Authorization/roleAssignments","name":"251fc151-2cb7-11ec-91be-00224878e942"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:33:15.8218562Z","updatedOn":"2021-10-14T07:33:15.8218562Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe04afe4-2cc0-11ec-81ff-0022487b1e92","type":"Microsoft.Authorization/roleAssignments","name":"fe04afe4-2cc0-11ec-81ff-0022487b1e92"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:18.3020716Z","updatedOn":"2021-10-14T07:59:18.3020716Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a1518374-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a1518374-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:20.8876342Z","updatedOn":"2021-10-14T07:59:20.8876342Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a311df17-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a311df17-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:22.4477860Z","updatedOn":"2021-10-14T07:59:22.4477860Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3c5b71e-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a3c5b71e-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:23.1051657Z","updatedOn":"2021-10-14T08:07:23.1051657Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c227b3cc-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c227b3cc-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:23.5151178Z","updatedOn":"2021-10-14T08:07:23.5151178Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c29ac901-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c29ac901-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:25.7287942Z","updatedOn":"2021-10-14T08:07:25.7287942Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c40b5411-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c40b5411-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:27.2660976Z","updatedOn":"2021-10-14T08:07:27.2660976Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4cb6a30-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c4cb6a30-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:08:16.5190337Z","updatedOn":"2021-10-14T08:08:16.5190337Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e226a828-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"e226a828-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:08:17.7439429Z","updatedOn":"2021-10-14T08:08:17.7439429Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2e43f64-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"e2e43f64-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T09:12:04.1832243Z","updatedOn":"2021-10-14T09:12:04.1832243Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5c9e442c-9d64-4022-9246-0c1c21af04be","type":"Microsoft.Authorization/roleAssignments","name":"5c9e442c-9d64-4022-9246-0c1c21af04be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T17:07:28.8635845Z","updatedOn":"2021-10-14T17:07:28.8635845Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed48d615-e7d8-4aef-90c7-332d7329e41c","type":"Microsoft.Authorization/roleAssignments","name":"ed48d615-e7d8-4aef-90c7-332d7329e41c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T18:16:37.9837987Z","updatedOn":"2021-10-14T18:16:37.9837987Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/debb0903-2d1a-11ec-a603-000d3a06aaec","type":"Microsoft.Authorization/roleAssignments","name":"debb0903-2d1a-11ec-a603-000d3a06aaec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T18:39:15.5366398Z","updatedOn":"2021-10-14T18:39:15.5366398Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07caa301-2d1e-11ec-a2ea-0022487748c3","type":"Microsoft.Authorization/roleAssignments","name":"07caa301-2d1e-11ec-a2ea-0022487748c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-15T17:37:53.7293023Z","updatedOn":"2021-10-15T17:37:53.7293023Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fbd09f2-2dde-11ec-b3e4-000d3a064a8a","type":"Microsoft.Authorization/roleAssignments","name":"9fbd09f2-2dde-11ec-b3e4-000d3a064a8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-18T06:22:38.4617338Z","updatedOn":"2021-10-18T06:22:38.4617338Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70844448-8be3-4c6f-9edf-443944f85a5a","type":"Microsoft.Authorization/roleAssignments","name":"70844448-8be3-4c6f-9edf-443944f85a5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-19T11:29:40.0474212Z","updatedOn":"2021-10-19T11:29:40.0474212Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d86e727f-30cf-11ec-bc8b-000d3ac2ec2b","type":"Microsoft.Authorization/roleAssignments","name":"d86e727f-30cf-11ec-bc8b-000d3ac2ec2b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-20T20:57:56.8996523Z","updatedOn":"2021-10-20T20:57:56.8996523Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66303328-31e8-11ec-99f4-000d3ac5c858","type":"Microsoft.Authorization/roleAssignments","name":"66303328-31e8-11ec-99f4-000d3ac5c858"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-21T15:12:00.0677049Z","updatedOn":"2021-10-21T15:12:00.0677049Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b630a77a-9e75-417f-b251-1584163d8926","type":"Microsoft.Authorization/roleAssignments","name":"b630a77a-9e75-417f-b251-1584163d8926"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-25T21:32:26.0121360Z","updatedOn":"2021-10-25T21:32:26.0121360Z","createdBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","updatedBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b15fba8-35db-11ec-b404-8c8590c603ee","type":"Microsoft.Authorization/roleAssignments","name":"0b15fba8-35db-11ec-b404-8c8590c603ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T07:30:52.4116907Z","updatedOn":"2021-10-26T07:30:52.4116907Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e78ac58b-8cfe-4ff6-9ac6-41453615c7e8","type":"Microsoft.Authorization/roleAssignments","name":"e78ac58b-8cfe-4ff6-9ac6-41453615c7e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T13:47:01.3444676Z","updatedOn":"2021-10-26T13:47:01.3444676Z","createdBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","updatedBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4933f1cd-0863-4429-a5be-3a81b2f80105","type":"Microsoft.Authorization/roleAssignments","name":"4933f1cd-0863-4429-a5be-3a81b2f80105"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T20:43:39.1375235Z","updatedOn":"2021-10-26T20:43:39.1375235Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad8f56c5-19b6-4e9f-b20f-8e3789a93873","type":"Microsoft.Authorization/roleAssignments","name":"ad8f56c5-19b6-4e9f-b20f-8e3789a93873"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-27T01:02:05.1338691Z","updatedOn":"2021-10-27T01:02:05.1338691Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a83de9c2-2bd5-4ba1-bc50-08d475a290a0","type":"Microsoft.Authorization/roleAssignments","name":"a83de9c2-2bd5-4ba1-bc50-08d475a290a0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-28T00:14:34.9745357Z","updatedOn":"2021-10-28T00:14:34.9745357Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3366cd2-4d12-4dbb-b05d-5e914628e986","type":"Microsoft.Authorization/roleAssignments","name":"e3366cd2-4d12-4dbb-b05d-5e914628e986"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-02T23:39:52.9481031Z","updatedOn":"2021-11-02T23:39:52.9481031Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0e37c03-a8a7-4765-af41-9a8584ad6413","type":"Microsoft.Authorization/roleAssignments","name":"b0e37c03-a8a7-4765-af41-9a8584ad6413"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c7393b34-138c-406f-901b-d8cf2b17e6ae","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T15:46:17.8935538Z","updatedOn":"2021-11-03T15:46:17.8935538Z","createdBy":"","updatedBy":"","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5b0e8d6-e30f-42a5-918c-01299416da2c","type":"Microsoft.Authorization/roleAssignments","name":"b5b0e8d6-e30f-42a5-918c-01299416da2c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T21:43:39.4750265Z","updatedOn":"2021-11-03T21:43:39.4750265Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/683b4375-f318-428e-a885-232a29ec8559","type":"Microsoft.Authorization/roleAssignments","name":"683b4375-f318-428e-a885-232a29ec8559"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T21:56:29.9810805Z","updatedOn":"2021-11-03T21:56:29.9810805Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e560c31c-8c6e-4bf0-9828-b2db658455b7","type":"Microsoft.Authorization/roleAssignments","name":"e560c31c-8c6e-4bf0-9828-b2db658455b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T06:06:21.8922666Z","updatedOn":"2021-11-04T06:06:21.8922666Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e1dcc78b-03c3-4db3-95a8-643dbcbbf2a3","type":"Microsoft.Authorization/roleAssignments","name":"e1dcc78b-03c3-4db3-95a8-643dbcbbf2a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T17:22:28.0293110Z","updatedOn":"2021-11-04T17:22:28.0293110Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84a6167f-c7d5-4404-b786-85fe4327c0ba","type":"Microsoft.Authorization/roleAssignments","name":"84a6167f-c7d5-4404-b786-85fe4327c0ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T17:24:51.0627597Z","updatedOn":"2021-11-04T17:24:51.0627597Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ff23217-f8a8-4e77-baee-41850cfb5554","type":"Microsoft.Authorization/roleAssignments","name":"8ff23217-f8a8-4e77-baee-41850cfb5554"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T05:21:11.0446928Z","updatedOn":"2021-11-16T05:21:11.0446928Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d01bef88-e1fa-4fc2-bd98-6845063b53b9","type":"Microsoft.Authorization/roleAssignments","name":"d01bef88-e1fa-4fc2-bd98-6845063b53b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T05:22:06.5362889Z","updatedOn":"2021-11-16T05:22:06.5362889Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/784d9b03-5635-4c89-ae5b-5c11ceff8a4c","type":"Microsoft.Authorization/roleAssignments","name":"784d9b03-5635-4c89-ae5b-5c11ceff8a4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T21:47:20.3762106Z","updatedOn":"2021-11-16T21:47:20.3762106Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/19b8a839-de9e-4712-a227-686679e98414","type":"Microsoft.Authorization/roleAssignments","name":"19b8a839-de9e-4712-a227-686679e98414"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T05:28:26.3873952Z","updatedOn":"2021-11-17T05:28:26.3873952Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a6cb292-435b-45d4-9f44-2dedb6f80804","type":"Microsoft.Authorization/roleAssignments","name":"4a6cb292-435b-45d4-9f44-2dedb6f80804"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T08:37:53.6375476Z","updatedOn":"2021-11-17T08:37:53.6375476Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7314a76-4781-11ec-9554-2eaf851e2751","type":"Microsoft.Authorization/roleAssignments","name":"a7314a76-4781-11ec-9554-2eaf851e2751"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T20:29:38.7986222Z","updatedOn":"2021-11-17T20:29:38.7986222Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41224d04-5912-49e9-98f2-df2d0c5768ed","type":"Microsoft.Authorization/roleAssignments","name":"41224d04-5912-49e9-98f2-df2d0c5768ed"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-23T02:37:39.0525328Z","updatedOn":"2021-11-23T02:37:39.0525328Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2917b10b-1776-4726-9e2a-1406d35584aa","type":"Microsoft.Authorization/roleAssignments","name":"2917b10b-1776-4726-9e2a-1406d35584aa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-24T04:19:48.8430130Z","updatedOn":"2021-11-24T04:19:48.8430130Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4738453f-e889-4428-817e-a18655a6df71","type":"Microsoft.Authorization/roleAssignments","name":"4738453f-e889-4428-817e-a18655a6df71"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-29T22:16:27.4091202Z","updatedOn":"2021-11-29T22:16:27.4091202Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dfaf3275-7f8c-449f-875f-d74ca2998764","type":"Microsoft.Authorization/roleAssignments","name":"dfaf3275-7f8c-449f-875f-d74ca2998764"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T06:59:34.7676928Z","updatedOn":"2021-11-30T06:59:34.7676928Z","createdBy":"471feb6d-5a83-439e-af7b-311f4eee2d0c","updatedBy":"471feb6d-5a83-439e-af7b-311f4eee2d0c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5848b58-7658-45ae-b979-fb230968ddf7","type":"Microsoft.Authorization/roleAssignments","name":"d5848b58-7658-45ae-b979-fb230968ddf7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T20:03:43.2359682Z","updatedOn":"2021-11-30T20:03:43.2359682Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3be3018e-84c0-48a4-bb36-fa997df4a911","type":"Microsoft.Authorization/roleAssignments","name":"3be3018e-84c0-48a4-bb36-fa997df4a911"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T22:23:07.4635927Z","updatedOn":"2021-11-30T22:23:07.4635927Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc52b5ce-1a69-4afd-aaab-745522d55219","type":"Microsoft.Authorization/roleAssignments","name":"fc52b5ce-1a69-4afd-aaab-745522d55219"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T02:05:06.3947111Z","updatedOn":"2021-12-01T02:05:06.3947111Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bfd977a2-74fb-4e8f-88a6-72b675ad0813","type":"Microsoft.Authorization/roleAssignments","name":"bfd977a2-74fb-4e8f-88a6-72b675ad0813"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T23:14:48.6056041Z","updatedOn":"2021-12-01T23:14:48.6056041Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2c2675a2-a48c-492f-a4d5-835ffdf8e57e","type":"Microsoft.Authorization/roleAssignments","name":"2c2675a2-a48c-492f-a4d5-835ffdf8e57e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T23:44:16.3921051Z","updatedOn":"2021-12-01T23:44:16.3921051Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc791163-7d7a-4988-96f8-969053cb4d75","type":"Microsoft.Authorization/roleAssignments","name":"bc791163-7d7a-4988-96f8-969053cb4d75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T07:40:53.7263371Z","updatedOn":"2021-12-02T07:40:53.7263371Z","createdBy":"027bf6cf-7fd4-4a57-80d7-4e52bd1fea5b","updatedBy":"027bf6cf-7fd4-4a57-80d7-4e52bd1fea5b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c592d108-71a6-4fbd-89f7-06c1656d0c93","type":"Microsoft.Authorization/roleAssignments","name":"c592d108-71a6-4fbd-89f7-06c1656d0c93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:36.8568746Z","updatedOn":"2021-12-02T08:41:36.8568746Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a8b008b0-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a8b008b0-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:38.4974834Z","updatedOn":"2021-12-02T08:41:38.4974834Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9ad9deb-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a9ad9deb-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:38.6316008Z","updatedOn":"2021-12-02T08:41:38.6316008Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9aa81cd-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a9aa81cd-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:38.6311993Z","updatedOn":"2021-12-02T08:41:38.6311993Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9c0a1a6-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a9c0a1a6-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T21:35:31.3727027Z","updatedOn":"2021-12-02T21:35:31.3727027Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/663204fa-95cb-45a0-938f-d817824509dd","type":"Microsoft.Authorization/roleAssignments","name":"663204fa-95cb-45a0-938f-d817824509dd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T22:09:46.1565055Z","updatedOn":"2021-12-02T22:09:46.1565055Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e97a88c4-e035-453b-b767-a3dbfadfd28d","type":"Microsoft.Authorization/roleAssignments","name":"e97a88c4-e035-453b-b767-a3dbfadfd28d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T23:10:20.2170014Z","updatedOn":"2021-12-02T23:10:20.2170014Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/afd2116e-f2ce-4bc2-8924-fb6f0c620d64","type":"Microsoft.Authorization/roleAssignments","name":"afd2116e-f2ce-4bc2-8924-fb6f0c620d64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-03T00:07:35.7286641Z","updatedOn":"2021-12-03T00:07:35.7286641Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/56d1c441-73b9-4b86-acc9-260016c81330","type":"Microsoft.Authorization/roleAssignments","name":"56d1c441-73b9-4b86-acc9-260016c81330"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-03T18:42:59.5078987Z","updatedOn":"2021-12-03T18:42:59.5078987Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b083534f-ae88-4db8-b65f-150284339772","type":"Microsoft.Authorization/roleAssignments","name":"b083534f-ae88-4db8-b65f-150284339772"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-03T21:00:00.5789423Z","updatedOn":"2021-12-03T21:00:00.5789423Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8684384c-7276-4e65-b708-6766a7c3a876","type":"Microsoft.Authorization/roleAssignments","name":"8684384c-7276-4e65-b708-6766a7c3a876"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-04T00:50:10.8909441Z","updatedOn":"2021-12-04T00:50:10.8909441Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cb7855e-82da-4910-b4ce-5f38896c067a","type":"Microsoft.Authorization/roleAssignments","name":"3cb7855e-82da-4910-b4ce-5f38896c067a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-07T12:35:57.6917673Z","updatedOn":"2021-12-07T12:35:57.6917673Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39e64286-575a-11ec-95aa-002248232e56","type":"Microsoft.Authorization/roleAssignments","name":"39e64286-575a-11ec-95aa-002248232e56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-07T23:18:12.3548251Z","updatedOn":"2021-12-07T23:18:12.3548251Z","createdBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","updatedBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f2265a95-57b3-11ec-a8e6-de1bbdf97372","type":"Microsoft.Authorization/roleAssignments","name":"f2265a95-57b3-11ec-a8e6-de1bbdf97372"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-08T03:01:28.5641674Z","updatedOn":"2021-12-08T03:01:28.5641674Z","createdBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","updatedBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2232ec95-57d3-11ec-bbe2-de1bbdf97372","type":"Microsoft.Authorization/roleAssignments","name":"2232ec95-57d3-11ec-bbe2-de1bbdf97372"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-08T03:07:36.8342803Z","updatedOn":"2021-12-08T03:07:36.8342803Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f1920cc-5cca-44c7-8175-d46948a9283f","type":"Microsoft.Authorization/roleAssignments","name":"9f1920cc-5cca-44c7-8175-d46948a9283f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-08T13:07:30.9635867Z","updatedOn":"2021-12-08T13:07:30.9635867Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc6359bd-5827-11ec-a516-000d3afc9734","type":"Microsoft.Authorization/roleAssignments","name":"cc6359bd-5827-11ec-a516-000d3afc9734"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-09T17:37:01.4296706Z","updatedOn":"2021-12-09T17:37:01.4296706Z","createdBy":"ae195f21-9b44-473d-9920-601e7899b56d","updatedBy":"ae195f21-9b44-473d-9920-601e7899b56d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9be22fd0-5916-11ec-b5a3-469e91f29611","type":"Microsoft.Authorization/roleAssignments","name":"9be22fd0-5916-11ec-b5a3-469e91f29611"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-10T14:31:24.3746709Z","updatedOn":"2021-12-10T14:31:24.3746709Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d9b6ef44-59c5-11ec-800e-0022487c3cbe","type":"Microsoft.Authorization/roleAssignments","name":"d9b6ef44-59c5-11ec-800e-0022487c3cbe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-13T07:46:54.6104588Z","updatedOn":"2021-12-13T07:46:54.6104588Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c65fe6b5-5be8-11ec-b892-000d3a518d38","type":"Microsoft.Authorization/roleAssignments","name":"c65fe6b5-5be8-11ec-b892-000d3a518d38"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-17T03:03:12.7081063Z","updatedOn":"2021-12-17T03:03:12.7081063Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/deb2cb98-5ee5-11ec-bd7f-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"deb2cb98-5ee5-11ec-bd7f-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-18T06:04:20.9532091Z","updatedOn":"2021-12-18T06:04:20.9532091Z","createdBy":"19263705-0667-497e-85e7-a930fa3441ec","updatedBy":"19263705-0667-497e-85e7-a930fa3441ec","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6eb35762-bc37-4c24-aec0-389e7cb97f95","type":"Microsoft.Authorization/roleAssignments","name":"6eb35762-bc37-4c24-aec0-389e7cb97f95"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-22T09:15:23.9226458Z","updatedOn":"2021-12-22T09:15:23.9226458Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7a9e1ec4-8728-4723-9fca-709f8549e3ac","type":"Microsoft.Authorization/roleAssignments","name":"7a9e1ec4-8728-4723-9fca-709f8549e3ac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-22T19:37:32.9555793Z","updatedOn":"2021-12-22T19:37:32.9555793Z","createdBy":"121978e2-c5f7-437f-b950-07f832f9f06c","updatedBy":"121978e2-c5f7-437f-b950-07f832f9f06c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a77cfdf9-fd0d-43f5-ba0d-0d36c8c1818e","type":"Microsoft.Authorization/roleAssignments","name":"a77cfdf9-fd0d-43f5-ba0d-0d36c8c1818e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-28T17:11:37.6373944Z","updatedOn":"2022-09-28T17:11:37.6373944Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b564621-3f50-11ed-918f-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"9b564621-3f50-11ed-918f-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-28T17:11:52.2247561Z","updatedOn":"2022-09-28T17:11:52.2247561Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3d8aeee-3f50-11ed-918f-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"a3d8aeee-3f50-11ed-918f-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-28T18:45:35.3728959Z","updatedOn":"2022-09-28T18:45:35.3728959Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5bb18d5f-3c20-4899-a01f-58313b28c345","type":"Microsoft.Authorization/roleAssignments","name":"5bb18d5f-3c20-4899-a01f-58313b28c345"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-30T18:34:26.1480517Z","updatedOn":"2022-09-30T18:34:26.1480517Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/828f43f9-40ee-11ed-9683-0022482b84fb","type":"Microsoft.Authorization/roleAssignments","name":"828f43f9-40ee-11ed-9683-0022482b84fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-30T18:34:28.0235766Z","updatedOn":"2022-09-30T18:34:28.0235766Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83a3304a-40ee-11ed-9683-0022482b84fb","type":"Microsoft.Authorization/roleAssignments","name":"83a3304a-40ee-11ed-9683-0022482b84fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T14:35:19.0321994Z","updatedOn":"2022-10-03T14:35:19.0321994Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99965ae6-4328-11ed-939f-aae2aa7b83bb","type":"Microsoft.Authorization/roleAssignments","name":"99965ae6-4328-11ed-939f-aae2aa7b83bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T14:35:23.0970392Z","updatedOn":"2022-10-03T14:35:23.0970392Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9c1721f9-4328-11ed-939f-aae2aa7b83bb","type":"Microsoft.Authorization/roleAssignments","name":"9c1721f9-4328-11ed-939f-aae2aa7b83bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T18:39:25.8455066Z","updatedOn":"2022-10-03T18:39:25.8455066Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":"adding + my aksdev SPs per https://dev.azure.com/msazure/CloudNativeCompute/_wiki/wikis/CloudNativeCompute.wiki/54089/Standalone-Environment-Usage?anchor=authentication-failed-issues"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b4fc89b2-a0bc-4661-a4f4-96170e3da3c3","type":"Microsoft.Authorization/roleAssignments","name":"b4fc89b2-a0bc-4661-a4f4-96170e3da3c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T21:14:21.6709207Z","updatedOn":"2022-10-03T21:14:21.6709207Z","createdBy":"2182129f-e575-4986-a7fb-2be7772ba46f","updatedBy":"2182129f-e575-4986-a7fb-2be7772ba46f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/58ef0b60-4360-11ed-84ae-4ef510510e8a","type":"Microsoft.Authorization/roleAssignments","name":"58ef0b60-4360-11ed-84ae-4ef510510e8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T21:14:25.9942421Z","updatedOn":"2022-10-03T21:14:25.9942421Z","createdBy":"2182129f-e575-4986-a7fb-2be7772ba46f","updatedBy":"2182129f-e575-4986-a7fb-2be7772ba46f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5b271148-4360-11ed-84ae-4ef510510e8a","type":"Microsoft.Authorization/roleAssignments","name":"5b271148-4360-11ed-84ae-4ef510510e8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T08:46:58.1120536Z","updatedOn":"2022-10-04T08:46:58.1120536Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46d7c91e-4182-4715-9d5c-c143514d0e96","type":"Microsoft.Authorization/roleAssignments","name":"46d7c91e-4182-4715-9d5c-c143514d0e96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T08:46:58.7908585Z","updatedOn":"2022-10-04T08:46:58.7908585Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0215f1ea-81dc-42cd-b2b0-62ed51ec1e8f","type":"Microsoft.Authorization/roleAssignments","name":"0215f1ea-81dc-42cd-b2b0-62ed51ec1e8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T15:17:47.0575990Z","updatedOn":"2022-10-04T15:17:47.0575990Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09dff59a-a350-4eb7-b515-b439773bf953","type":"Microsoft.Authorization/roleAssignments","name":"09dff59a-a350-4eb7-b515-b439773bf953"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T20:25:24.7922965Z","updatedOn":"2022-10-04T20:25:24.7922965Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac245566-4422-11ed-b4e4-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"ac245566-4422-11ed-b4e4-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T20:25:29.7192947Z","updatedOn":"2022-10-04T20:25:29.7192947Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/af78cdbe-4422-11ed-b4e4-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"af78cdbe-4422-11ed-b4e4-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-05T17:17:50.2296097Z","updatedOn":"2022-10-05T17:17:50.2296097Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18d61426-19b2-45ab-a04c-35bf0954b5f2","type":"Microsoft.Authorization/roleAssignments","name":"18d61426-19b2-45ab-a04c-35bf0954b5f2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T21:18:34.5111716Z","updatedOn":"2022-10-06T21:18:34.5111716Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/90e84a6f-382e-4cd0-8b7c-249f30414d26","type":"Microsoft.Authorization/roleAssignments","name":"90e84a6f-382e-4cd0-8b7c-249f30414d26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T21:19:26.0775289Z","updatedOn":"2022-10-06T21:19:26.0775289Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/245ffe6b-708b-41b4-b4a5-0328063f9511","type":"Microsoft.Authorization/roleAssignments","name":"245ffe6b-708b-41b4-b4a5-0328063f9511"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T22:01:04.9042316Z","updatedOn":"2022-10-06T22:01:04.9042316Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/809518d2-215b-449f-9909-1cf5275f82ff","type":"Microsoft.Authorization/roleAssignments","name":"809518d2-215b-449f-9909-1cf5275f82ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T22:01:18.8874783Z","updatedOn":"2022-10-06T22:01:18.8874783Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/50ca23bf-0051-4116-a073-86a9415cc7e4","type":"Microsoft.Authorization/roleAssignments","name":"50ca23bf-0051-4116-a073-86a9415cc7e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T00:36:14.3318961Z","updatedOn":"2022-10-07T00:36:14.3318961Z","createdBy":"b3ae1fad-98a9-46c4-bd0b-193e8efd9450","updatedBy":"b3ae1fad-98a9-46c4-bd0b-193e8efd9450","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ba8ceaf-45d8-11ed-bb9e-0eabbd04010c","type":"Microsoft.Authorization/roleAssignments","name":"0ba8ceaf-45d8-11ed-bb9e-0eabbd04010c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:18.2176259Z","updatedOn":"2022-10-07T16:36:18.2176259Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0eafb5be-ea9a-495c-82c9-8337449b1150","type":"Microsoft.Authorization/roleAssignments","name":"0eafb5be-ea9a-495c-82c9-8337449b1150"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:22.7662640Z","updatedOn":"2022-10-07T16:36:22.7662640Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7cb15a6c-7b73-430f-91aa-02113db930cb","type":"Microsoft.Authorization/roleAssignments","name":"7cb15a6c-7b73-430f-91aa-02113db930cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:29.4358024Z","updatedOn":"2022-10-07T16:36:29.4358024Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1b259a44-7824-434b-8f81-8df465b85fd5","type":"Microsoft.Authorization/roleAssignments","name":"1b259a44-7824-434b-8f81-8df465b85fd5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:33.7158336Z","updatedOn":"2022-10-07T16:36:33.7158336Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3156b3a1-bc03-4d84-b2df-09d0d0eab4b1","type":"Microsoft.Authorization/roleAssignments","name":"3156b3a1-bc03-4d84-b2df-09d0d0eab4b1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:35.7999116Z","updatedOn":"2022-10-07T16:36:35.7999116Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1d30073-ff57-48fa-96e7-dfc85b8c7975","type":"Microsoft.Authorization/roleAssignments","name":"b1d30073-ff57-48fa-96e7-dfc85b8c7975"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-09T05:08:21.9096837Z","updatedOn":"2022-10-09T05:08:21.9096837Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d747b25-fa91-4429-a72b-0a4e2079ed03","type":"Microsoft.Authorization/roleAssignments","name":"8d747b25-fa91-4429-a72b-0a4e2079ed03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-10T05:53:40.9849719Z","updatedOn":"2022-10-10T05:53:40.9849719Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3cfb29d-485f-11ed-b38e-562c47d8c70b","type":"Microsoft.Authorization/roleAssignments","name":"e3cfb29d-485f-11ed-b38e-562c47d8c70b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-10T05:53:46.7676576Z","updatedOn":"2022-10-10T05:53:46.7676576Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e6c4b18f-485f-11ed-b38e-562c47d8c70b","type":"Microsoft.Authorization/roleAssignments","name":"e6c4b18f-485f-11ed-b38e-562c47d8c70b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-10T19:26:54.0213364Z","updatedOn":"2022-10-10T19:26:54.0213364Z","createdBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","updatedBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ed9bd3d-48d1-11ed-8d0c-000d3af6a88e","type":"Microsoft.Authorization/roleAssignments","name":"7ed9bd3d-48d1-11ed-8d0c-000d3af6a88e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T05:01:21.4237199Z","updatedOn":"2022-10-11T05:01:21.4237199Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbc092b8-61c0-429f-bc40-457c06ef2ae3","type":"Microsoft.Authorization/roleAssignments","name":"bbc092b8-61c0-429f-bc40-457c06ef2ae3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T06:32:06.2810453Z","updatedOn":"2022-10-11T06:32:06.2810453Z","createdBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","updatedBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c482116-492e-11ed-b1e5-50814031cc1b","type":"Microsoft.Authorization/roleAssignments","name":"6c482116-492e-11ed-b1e5-50814031cc1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T06:32:11.8691902Z","updatedOn":"2022-10-11T06:32:11.8691902Z","createdBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","updatedBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6f333b0b-492e-11ed-b1e5-50814031cc1b","type":"Microsoft.Authorization/roleAssignments","name":"6f333b0b-492e-11ed-b1e5-50814031cc1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T10:41:27.4966216Z","updatedOn":"2022-10-11T10:41:27.4966216Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4aaba87d-be3b-49d5-90e6-02100140c50d","type":"Microsoft.Authorization/roleAssignments","name":"4aaba87d-be3b-49d5-90e6-02100140c50d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-12T06:14:22.3962768Z","updatedOn":"2022-10-12T06:14:22.3962768Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c7ad8940-3c2c-4a0a-b59a-5c6408cce033","type":"Microsoft.Authorization/roleAssignments","name":"c7ad8940-3c2c-4a0a-b59a-5c6408cce033"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-12T23:06:16.2844894Z","updatedOn":"2022-10-12T23:06:16.2844894Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8434c983-cdd3-40c4-9531-78b5f16fea23","type":"Microsoft.Authorization/roleAssignments","name":"8434c983-cdd3-40c4-9531-78b5f16fea23"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-12T23:06:16.4551494Z","updatedOn":"2022-10-12T23:06:16.4551494Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4281f456-78ed-4ef7-b058-d980c90bf6f9","type":"Microsoft.Authorization/roleAssignments","name":"4281f456-78ed-4ef7-b058-d980c90bf6f9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-18T14:04:58.5223716Z","updatedOn":"2022-10-18T14:04:58.5223716Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9158a450-cec7-48ba-8469-fc085e252e56","type":"Microsoft.Authorization/roleAssignments","name":"9158a450-cec7-48ba-8469-fc085e252e56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-19T17:08:57.8704270Z","updatedOn":"2022-10-19T17:08:57.8704270Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf874421-44f9-4a19-8abd-da0f4f04a24f","type":"Microsoft.Authorization/roleAssignments","name":"bf874421-44f9-4a19-8abd-da0f4f04a24f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-19T23:09:40.3682015Z","updatedOn":"2022-10-19T23:09:40.3682015Z","createdBy":"57440c04-5eed-4c74-92b6-44b016b882f2","updatedBy":"57440c04-5eed-4c74-92b6-44b016b882f2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2bafd93-beec-4d8b-b5f0-9893ef27a090","type":"Microsoft.Authorization/roleAssignments","name":"b2bafd93-beec-4d8b-b5f0-9893ef27a090"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-25T20:45:40.4378406Z","updatedOn":"2022-10-25T20:45:40.4378406Z","createdBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","updatedBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbadcf84-54a5-11ed-b2c3-0e0011011627","type":"Microsoft.Authorization/roleAssignments","name":"fbadcf84-54a5-11ed-b2c3-0e0011011627"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-25T20:45:44.2349413Z","updatedOn":"2022-10-25T20:45:44.2349413Z","createdBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","updatedBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fde7916d-54a5-11ed-b2c3-0e0011011627","type":"Microsoft.Authorization/roleAssignments","name":"fde7916d-54a5-11ed-b2c3-0e0011011627"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T16:44:45.2471286Z","updatedOn":"2022-10-26T16:44:45.2471286Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6649fcf-1731-4db5-8e3b-31af16600402","type":"Microsoft.Authorization/roleAssignments","name":"c6649fcf-1731-4db5-8e3b-31af16600402"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T21:24:42.6980121Z","updatedOn":"2022-10-26T21:24:42.6980121Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b1323cf-e4ec-4454-ac08-5f88d588f133","type":"Microsoft.Authorization/roleAssignments","name":"9b1323cf-e4ec-4454-ac08-5f88d588f133"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T23:12:13.5663015Z","updatedOn":"2022-10-26T23:12:13.5663015Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9db19562-5583-11ed-a49b-aa665a565a49","type":"Microsoft.Authorization/roleAssignments","name":"9db19562-5583-11ed-a49b-aa665a565a49"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-27T20:49:50.5273108Z","updatedOn":"2022-10-27T20:49:50.5273108Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1a0bbbc6-febb-4d40-9e39-5274a2edd538","type":"Microsoft.Authorization/roleAssignments","name":"1a0bbbc6-febb-4d40-9e39-5274a2edd538"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-31T21:38:36.6886945Z","updatedOn":"2022-10-31T21:38:36.6886945Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a85bdf2-6490-4989-9276-f2071fcf02c7","type":"Microsoft.Authorization/roleAssignments","name":"6a85bdf2-6490-4989-9276-f2071fcf02c7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-01T17:32:59.4211774Z","updatedOn":"2022-11-01T17:32:59.4211774Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a3d71f8-5a0b-11ed-ae92-000d3a6dafe7","type":"Microsoft.Authorization/roleAssignments","name":"3a3d71f8-5a0b-11ed-ae92-000d3a6dafe7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-03T20:33:30.2762577Z","updatedOn":"2022-11-03T20:33:30.2762577Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6983693-5bb6-11ed-ae23-72674b3691e8","type":"Microsoft.Authorization/roleAssignments","name":"c6983693-5bb6-11ed-ae23-72674b3691e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-03T20:33:33.9941086Z","updatedOn":"2022-11-03T20:33:33.9941086Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c90a1190-5bb6-11ed-ae23-72674b3691e8","type":"Microsoft.Authorization/roleAssignments","name":"c90a1190-5bb6-11ed-ae23-72674b3691e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-03T22:01:34.3526622Z","updatedOn":"2022-11-03T22:01:34.3526622Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/572d1281-1073-4df2-a41a-6ec6ab01ccf4","type":"Microsoft.Authorization/roleAssignments","name":"572d1281-1073-4df2-a41a-6ec6ab01ccf4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-04T17:44:58.1069368Z","updatedOn":"2022-11-04T17:44:58.1069368Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65ead23f-5c68-11ed-81d0-000d3ac6042c","type":"Microsoft.Authorization/roleAssignments","name":"65ead23f-5c68-11ed-81d0-000d3ac6042c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-04T17:44:58.3889675Z","updatedOn":"2022-11-04T17:44:58.3889675Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65f36b55-5c68-11ed-81d0-000d3ac6042c","type":"Microsoft.Authorization/roleAssignments","name":"65f36b55-5c68-11ed-81d0-000d3ac6042c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-07T21:00:30.9927458Z","updatedOn":"2022-11-07T21:00:30.9927458Z","createdBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","updatedBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3631fc51-5edf-11ed-b8d9-bee096dd1f56","type":"Microsoft.Authorization/roleAssignments","name":"3631fc51-5edf-11ed-b8d9-bee096dd1f56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-07T23:06:40.7350135Z","updatedOn":"2022-11-07T23:06:40.7350135Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82f4d8cb-f92b-4183-8a57-9a266f8ed475","type":"Microsoft.Authorization/roleAssignments","name":"82f4d8cb-f92b-4183-8a57-9a266f8ed475"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T00:45:45.2308519Z","updatedOn":"2022-11-08T00:45:45.2308519Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad83b644-5efe-11ed-9afa-76a84c3a8985","type":"Microsoft.Authorization/roleAssignments","name":"ad83b644-5efe-11ed-9afa-76a84c3a8985"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T00:45:54.5576407Z","updatedOn":"2022-11-08T00:45:54.5576407Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2f5ecd2-5efe-11ed-9afa-76a84c3a8985","type":"Microsoft.Authorization/roleAssignments","name":"b2f5ecd2-5efe-11ed-9afa-76a84c3a8985"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T17:38:14.0062888Z","updatedOn":"2022-11-08T17:38:14.0062888Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5a5cfdf-e8ad-4d53-a1a9-3a7191efa68a","type":"Microsoft.Authorization/roleAssignments","name":"b5a5cfdf-e8ad-4d53-a1a9-3a7191efa68a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T20:41:35.2460898Z","updatedOn":"2022-11-08T20:41:35.2460898Z","createdBy":"77ac7883-1816-45e5-8784-444d95195dfe","updatedBy":"77ac7883-1816-45e5-8784-444d95195dfe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbdb8a06-5fa5-11ed-87b5-52a0a45b7fbb","type":"Microsoft.Authorization/roleAssignments","name":"bbdb8a06-5fa5-11ed-87b5-52a0a45b7fbb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T20:41:39.0095016Z","updatedOn":"2022-11-08T20:41:39.0095016Z","createdBy":"77ac7883-1816-45e5-8784-444d95195dfe","updatedBy":"77ac7883-1816-45e5-8784-444d95195dfe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be17ddaf-5fa5-11ed-87b5-52a0a45b7fbb","type":"Microsoft.Authorization/roleAssignments","name":"be17ddaf-5fa5-11ed-87b5-52a0a45b7fbb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T04:24:29.2903032Z","updatedOn":"2022-11-09T04:24:29.2903032Z","createdBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","updatedBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6672401b-5fe6-11ed-8d26-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"6672401b-5fe6-11ed-8d26-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T04:24:32.7816834Z","updatedOn":"2022-11-09T04:24:32.7816834Z","createdBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","updatedBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/687908be-5fe6-11ed-8d26-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"687908be-5fe6-11ed-8d26-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T06:49:46.3320446Z","updatedOn":"2022-11-09T06:49:46.3320446Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40e96901-a9d4-4fc3-8d80-c55979cad3f4","type":"Microsoft.Authorization/roleAssignments","name":"40e96901-a9d4-4fc3-8d80-c55979cad3f4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T06:57:50.8140024Z","updatedOn":"2022-11-09T06:57:50.8140024Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54117e37-77ed-4fc2-a64e-7f5cfee1e3cb","type":"Microsoft.Authorization/roleAssignments","name":"54117e37-77ed-4fc2-a64e-7f5cfee1e3cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-15T17:00:53.9224351Z","updatedOn":"2022-11-15T17:00:53.9224351Z","createdBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","updatedBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb3fa35d-14c6-476e-965d-3287df835fb6","type":"Microsoft.Authorization/roleAssignments","name":"eb3fa35d-14c6-476e-965d-3287df835fb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-16T17:45:41.6438991Z","updatedOn":"2022-11-16T18:12:21.7351318Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89d1db20-3058-52b8-8e72-ffbee92652bc","type":"Microsoft.Authorization/roleAssignments","name":"89d1db20-3058-52b8-8e72-ffbee92652bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-17T20:00:21.8300657Z","updatedOn":"2022-11-17T20:00:21.8300657Z","createdBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","updatedBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/770d246f-66b2-11ed-9a7a-5eff6da83896","type":"Microsoft.Authorization/roleAssignments","name":"770d246f-66b2-11ed-9a7a-5eff6da83896"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:13:16.4073065Z","updatedOn":"2023-05-12T17:27:11.5958673Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d9c1e76-d133-5014-a053-fa81b5a5ddcc","type":"Microsoft.Authorization/roleAssignments","name":"8d9c1e76-d133-5014-a053-fa81b5a5ddcc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:13:16.3810810Z","updatedOn":"2023-05-12T17:27:11.6002511Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9589fe9-37b5-52e8-b6a1-05baa0e40ea2","type":"Microsoft.Authorization/roleAssignments","name":"b9589fe9-37b5-52e8-b6a1-05baa0e40ea2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:13:16.4335352Z","updatedOn":"2023-05-12T17:27:11.6253602Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df3deb96-df88-5ecf-9db1-b40cda69a5b1","type":"Microsoft.Authorization/roleAssignments","name":"df3deb96-df88-5ecf-9db1-b40cda69a5b1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-29T22:31:21.5082047Z","updatedOn":"2023-05-12T17:27:12.7611677Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe4c31ea-8d12-5bbd-80e8-749dd04c242c","type":"Microsoft.Authorization/roleAssignments","name":"fe4c31ea-8d12-5bbd-80e8-749dd04c242c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-18T19:59:52.7113168Z","updatedOn":"2022-11-18T19:59:52.7113168Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/909e97c0-677b-11ed-b3d1-4e4b7fc6d2d7","type":"Microsoft.Authorization/roleAssignments","name":"909e97c0-677b-11ed-b3d1-4e4b7fc6d2d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-18T19:59:56.7899280Z","updatedOn":"2022-11-18T19:59:56.7899280Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9302a900-677b-11ed-b3d1-4e4b7fc6d2d7","type":"Microsoft.Authorization/roleAssignments","name":"9302a900-677b-11ed-b3d1-4e4b7fc6d2d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-18T22:57:24.7333928Z","updatedOn":"2022-11-18T22:57:24.7333928Z","createdBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","updatedBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/616b0a5c-ef17-4f5c-8f54-932fb42ed1b6","type":"Microsoft.Authorization/roleAssignments","name":"616b0a5c-ef17-4f5c-8f54-932fb42ed1b6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-20T08:02:14.3563436Z","updatedOn":"2022-11-20T08:02:14.3563436Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59455a7f-8688-4fa9-bca1-b14ff86b45d8","type":"Microsoft.Authorization/roleAssignments","name":"59455a7f-8688-4fa9-bca1-b14ff86b45d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-22T12:28:29.6735062Z","updatedOn":"2022-11-22T12:28:29.6735062Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a01068c-6a61-11ed-b280-38f9d359b369","type":"Microsoft.Authorization/roleAssignments","name":"2a01068c-6a61-11ed-b280-38f9d359b369"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-22T12:28:35.6487701Z","updatedOn":"2022-11-22T12:28:35.6487701Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2dec6a7a-6a61-11ed-b280-38f9d359b369","type":"Microsoft.Authorization/roleAssignments","name":"2dec6a7a-6a61-11ed-b280-38f9d359b369"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-23T19:27:15.6029824Z","updatedOn":"2022-11-23T19:27:15.6029824Z","createdBy":"573ee898-c9b5-4556-b5b7-ba398712832e","updatedBy":"573ee898-c9b5-4556-b5b7-ba398712832e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5624ab6-6b64-11ed-99e5-a29c0e078d5a","type":"Microsoft.Authorization/roleAssignments","name":"d5624ab6-6b64-11ed-99e5-a29c0e078d5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-23T19:27:29.8496193Z","updatedOn":"2022-11-23T19:27:29.8496193Z","createdBy":"573ee898-c9b5-4556-b5b7-ba398712832e","updatedBy":"573ee898-c9b5-4556-b5b7-ba398712832e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ddce2c51-6b64-11ed-99e5-a29c0e078d5a","type":"Microsoft.Authorization/roleAssignments","name":"ddce2c51-6b64-11ed-99e5-a29c0e078d5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-24T08:00:52.4569469Z","updatedOn":"2022-11-24T08:00:52.4569469Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ea38765-a469-4975-a3b3-69c47e46e70b","type":"Microsoft.Authorization/roleAssignments","name":"9ea38765-a469-4975-a3b3-69c47e46e70b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-24T08:01:11.1412012Z","updatedOn":"2022-11-24T08:01:11.1412012Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f7e731a-0d5b-4591-a97d-0ee2053825bb","type":"Microsoft.Authorization/roleAssignments","name":"9f7e731a-0d5b-4591-a97d-0ee2053825bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T08:56:33.0370700Z","updatedOn":"2022-11-28T08:56:33.0370700Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4d08049c-272d-4905-a2b6-cd89456c5382","type":"Microsoft.Authorization/roleAssignments","name":"4d08049c-272d-4905-a2b6-cd89456c5382"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T18:00:17.3116606Z","updatedOn":"2022-11-28T18:00:17.3116606Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/839a632b-6f46-11ed-9f3a-002248be91cc","type":"Microsoft.Authorization/roleAssignments","name":"839a632b-6f46-11ed-9f3a-002248be91cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T21:24:30.3728549Z","updatedOn":"2022-11-28T21:24:30.3728549Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ad622e0-6f63-11ed-a15a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"0ad622e0-6f63-11ed-a15a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T21:24:34.5112467Z","updatedOn":"2022-11-28T21:24:34.5112467Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d6f187c-6f63-11ed-a15a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"0d6f187c-6f63-11ed-a15a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-29T19:42:39.8350492Z","updatedOn":"2022-11-29T19:42:39.8350492Z","createdBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","updatedBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb69dd10-701d-11ed-8940-6ca1001ae258","type":"Microsoft.Authorization/roleAssignments","name":"fb69dd10-701d-11ed-8940-6ca1001ae258"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-29T19:42:43.2096038Z","updatedOn":"2022-11-29T19:42:43.2096038Z","createdBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","updatedBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd6fed09-701d-11ed-8940-6ca1001ae258","type":"Microsoft.Authorization/roleAssignments","name":"fd6fed09-701d-11ed-8940-6ca1001ae258"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-30T07:32:24.0648059Z","updatedOn":"2022-11-30T07:32:24.0648059Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d745d98-b683-45b9-92a8-918aacf64633","type":"Microsoft.Authorization/roleAssignments","name":"2d745d98-b683-45b9-92a8-918aacf64633"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-01T22:00:12.5092022Z","updatedOn":"2022-12-01T22:00:12.5092022Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/29f80035-534e-479f-bf9d-3243cd2eba93","type":"Microsoft.Authorization/roleAssignments","name":"29f80035-534e-479f-bf9d-3243cd2eba93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-02T07:52:06.0754526Z","updatedOn":"2022-12-02T07:52:06.0754526Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/17ce4c2c-8051-4420-a6ac-6aeb91441711","type":"Microsoft.Authorization/roleAssignments","name":"17ce4c2c-8051-4420-a6ac-6aeb91441711"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-02T23:54:37.7637423Z","updatedOn":"2022-12-02T23:54:37.7637423Z","createdBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","updatedBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e8902907-9bef-55f7-9a6d-64e3cf3b1a77","type":"Microsoft.Authorization/roleAssignments","name":"e8902907-9bef-55f7-9a6d-64e3cf3b1a77"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-05T17:29:10.2915092Z","updatedOn":"2022-12-05T17:29:10.2915092Z","createdBy":"500b0839-c682-4003-9106-8f37a381595d","updatedBy":"500b0839-c682-4003-9106-8f37a381595d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/53a3b656-74c2-11ed-b2ea-f21d81f4d94b","type":"Microsoft.Authorization/roleAssignments","name":"53a3b656-74c2-11ed-b2ea-f21d81f4d94b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-05T17:29:19.7335221Z","updatedOn":"2022-12-05T17:29:19.7335221Z","createdBy":"500b0839-c682-4003-9106-8f37a381595d","updatedBy":"500b0839-c682-4003-9106-8f37a381595d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59486582-74c2-11ed-b2ea-f21d81f4d94b","type":"Microsoft.Authorization/roleAssignments","name":"59486582-74c2-11ed-b2ea-f21d81f4d94b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T00:27:21.1321238Z","updatedOn":"2022-12-06T00:27:21.1321238Z","createdBy":"010e39fa-3d22-4576-ad28-9709490d3973","updatedBy":"010e39fa-3d22-4576-ad28-9709490d3973","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bdc7c72a-74fc-11ed-b1d9-fe40d632c9c8","type":"Microsoft.Authorization/roleAssignments","name":"bdc7c72a-74fc-11ed-b1d9-fe40d632c9c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T00:27:26.7978650Z","updatedOn":"2022-12-06T00:27:26.7978650Z","createdBy":"010e39fa-3d22-4576-ad28-9709490d3973","updatedBy":"010e39fa-3d22-4576-ad28-9709490d3973","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c1df0b20-74fc-11ed-b1d9-fe40d632c9c8","type":"Microsoft.Authorization/roleAssignments","name":"c1df0b20-74fc-11ed-b1d9-fe40d632c9c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T08:09:07.9286883Z","updatedOn":"2022-12-06T08:09:07.9286883Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a54f40a-fc73-4967-93de-1fda5f77fa18","type":"Microsoft.Authorization/roleAssignments","name":"8a54f40a-fc73-4967-93de-1fda5f77fa18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T08:09:07.0223985Z","updatedOn":"2022-12-06T08:09:07.0223985Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/37a700cb-bd3a-4961-a7b7-cf21f1049fd6","type":"Microsoft.Authorization/roleAssignments","name":"37a700cb-bd3a-4961-a7b7-cf21f1049fd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-09T14:12:43.2358573Z","updatedOn":"2022-12-09T14:12:43.2358573Z","createdBy":"500b0839-c682-4003-9106-8f37a381595d","updatedBy":"500b0839-c682-4003-9106-8f37a381595d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88d9f0e9-77cb-11ed-a931-4ecc509b30ab","type":"Microsoft.Authorization/roleAssignments","name":"88d9f0e9-77cb-11ed-a931-4ecc509b30ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T12:05:48.4827550Z","updatedOn":"2022-12-12T12:05:48.4827550Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d238237a-b393-4ab0-9f00-cdf16c5d6b05","type":"Microsoft.Authorization/roleAssignments","name":"d238237a-b393-4ab0-9f00-cdf16c5d6b05"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T16:10:53.3465450Z","updatedOn":"2022-12-12T16:10:53.3465450Z","createdBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","updatedBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8bcca047-7a37-11ed-9b42-5a0f21a4ffba","type":"Microsoft.Authorization/roleAssignments","name":"8bcca047-7a37-11ed-9b42-5a0f21a4ffba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T16:10:57.7295344Z","updatedOn":"2022-12-12T16:10:57.7295344Z","createdBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","updatedBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e42900b-7a37-11ed-9b42-5a0f21a4ffba","type":"Microsoft.Authorization/roleAssignments","name":"8e42900b-7a37-11ed-9b42-5a0f21a4ffba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-14T08:51:42.0015523Z","updatedOn":"2022-12-14T08:51:42.0015523Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d01084d-4e3a-414c-ac62-c3ef82dc3302","type":"Microsoft.Authorization/roleAssignments","name":"8d01084d-4e3a-414c-ac62-c3ef82dc3302"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-16T07:20:02.6088062Z","updatedOn":"2022-12-16T07:20:02.6088062Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0cb541fc-7d12-11ed-8232-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"0cb541fc-7d12-11ed-8232-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-20T19:00:39.7938573Z","updatedOn":"2022-12-20T19:00:39.7938573Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/991d89fd-8098-11ed-a1dc-1e0cf6619ffa","type":"Microsoft.Authorization/roleAssignments","name":"991d89fd-8098-11ed-a1dc-1e0cf6619ffa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-21T19:53:55.0673117Z","updatedOn":"2022-12-21T19:53:55.0673117Z","createdBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","updatedBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/31f1b70c-8169-11ed-871d-bc091b9528f6","type":"Microsoft.Authorization/roleAssignments","name":"31f1b70c-8169-11ed-871d-bc091b9528f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-21T19:54:01.7874075Z","updatedOn":"2022-12-21T19:54:01.7874075Z","createdBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","updatedBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35eb2367-8169-11ed-871d-bc091b9528f6","type":"Microsoft.Authorization/roleAssignments","name":"35eb2367-8169-11ed-871d-bc091b9528f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-23T14:42:33.0388657Z","updatedOn":"2022-12-23T14:42:33.0388657Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7077d7fa-4615-4792-b394-80918dd155ce","type":"Microsoft.Authorization/roleAssignments","name":"7077d7fa-4615-4792-b394-80918dd155ce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-28T13:20:44.8421429Z","updatedOn":"2022-12-28T13:20:44.8421429Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b48d252-d31a-57c7-8cf6-cb5fed6d1a67","type":"Microsoft.Authorization/roleAssignments","name":"4b48d252-d31a-57c7-8cf6-cb5fed6d1a67"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-03T12:31:11.2683110Z","updatedOn":"2023-01-03T12:31:11.2683110Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d408ddb7-31cd-4d46-ab59-fe1be61b2bdc","type":"Microsoft.Authorization/roleAssignments","name":"d408ddb7-31cd-4d46-ab59-fe1be61b2bdc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-06T08:15:45.7088191Z","updatedOn":"2023-01-06T08:15:45.7088191Z","createdBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","updatedBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/510806b0-8d9a-11ed-9e4f-000d3ac772b5","type":"Microsoft.Authorization/roleAssignments","name":"510806b0-8d9a-11ed-9e4f-000d3ac772b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-06T08:15:51.6046641Z","updatedOn":"2023-01-06T08:15:51.6046641Z","createdBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","updatedBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54802b41-8d9a-11ed-9e4f-000d3ac772b5","type":"Microsoft.Authorization/roleAssignments","name":"54802b41-8d9a-11ed-9e4f-000d3ac772b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-06T22:24:58.0712756Z","updatedOn":"2023-01-06T22:24:58.0712756Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbcde9e0-3481-49ad-b1f1-e7226db43e33","type":"Microsoft.Authorization/roleAssignments","name":"cbcde9e0-3481-49ad-b1f1-e7226db43e33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-07T00:15:43.3039407Z","updatedOn":"2023-01-07T00:15:43.3039407Z","createdBy":"80a6e936-2bdc-4927-b49e-2a7a19943b90","updatedBy":"80a6e936-2bdc-4927-b49e-2a7a19943b90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7e73e7e9-99f9-5fa0-a5c8-33268a3e7acc","type":"Microsoft.Authorization/roleAssignments","name":"7e73e7e9-99f9-5fa0-a5c8-33268a3e7acc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-08T14:40:12.1322327Z","updatedOn":"2023-01-08T14:40:12.1322327Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9146e5ba-1dce-41c3-bee6-6e854049e485","type":"Microsoft.Authorization/roleAssignments","name":"9146e5ba-1dce-41c3-bee6-6e854049e485"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-08T14:46:46.8171282Z","updatedOn":"2023-01-08T14:46:46.8171282Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3073c0fc-4181-4de7-bb2d-ceb46bd805c2","type":"Microsoft.Authorization/roleAssignments","name":"3073c0fc-4181-4de7-bb2d-ceb46bd805c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-10T05:58:31.6725565Z","updatedOn":"2023-01-10T05:58:31.6725565Z","createdBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","updatedBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce4f420e-90ab-11ed-81da-002248575167","type":"Microsoft.Authorization/roleAssignments","name":"ce4f420e-90ab-11ed-81da-002248575167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-10T05:58:38.3068493Z","updatedOn":"2023-01-10T05:58:38.3068493Z","createdBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","updatedBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2369b82-90ab-11ed-81da-002248575167","type":"Microsoft.Authorization/roleAssignments","name":"d2369b82-90ab-11ed-81da-002248575167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-10T06:45:54.6704864Z","updatedOn":"2023-01-10T06:45:54.6704864Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6de0e553-90b2-11ed-9d42-6045bd78eeea","type":"Microsoft.Authorization/roleAssignments","name":"6de0e553-90b2-11ed-9d42-6045bd78eeea"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-11T22:44:31.5456256Z","updatedOn":"2023-01-11T22:44:31.5456256Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/55a9c9ca-e483-44ad-ab32-17ac0f1905e2","type":"Microsoft.Authorization/roleAssignments","name":"55a9c9ca-e483-44ad-ab32-17ac0f1905e2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-12T07:27:30.7499209Z","updatedOn":"2023-01-12T07:27:30.7499209Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c2fcdf3-9376-46c4-862c-c5478fad402d","type":"Microsoft.Authorization/roleAssignments","name":"6c2fcdf3-9376-46c4-862c-c5478fad402d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-12T20:29:47.8942736Z","updatedOn":"2023-01-12T20:29:47.8942736Z","createdBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","updatedBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dad76eb4-92b7-11ed-9e92-3e22fbc2ce2f","type":"Microsoft.Authorization/roleAssignments","name":"dad76eb4-92b7-11ed-9e92-3e22fbc2ce2f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-12T20:29:51.8091784Z","updatedOn":"2023-01-12T20:29:51.8091784Z","createdBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","updatedBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd198dce-92b7-11ed-9e92-3e22fbc2ce2f","type":"Microsoft.Authorization/roleAssignments","name":"dd198dce-92b7-11ed-9e92-3e22fbc2ce2f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-13T05:50:47.3154688Z","updatedOn":"2023-01-13T05:50:47.3154688Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/38d171ad-9306-11ed-a704-ee47e05c3b1e","type":"Microsoft.Authorization/roleAssignments","name":"38d171ad-9306-11ed-a704-ee47e05c3b1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-13T05:50:53.1628390Z","updatedOn":"2023-01-13T05:50:53.1628390Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3bf43d16-9306-11ed-a704-ee47e05c3b1e","type":"Microsoft.Authorization/roleAssignments","name":"3bf43d16-9306-11ed-a704-ee47e05c3b1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-14T06:07:18.3233862Z","updatedOn":"2023-01-14T06:07:18.3233862Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2587a66-93d1-11ed-a6e9-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"b2587a66-93d1-11ed-a6e9-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-14T06:07:23.4646871Z","updatedOn":"2023-01-14T06:07:23.4646871Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b56e4d80-93d1-11ed-a6e9-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"b56e4d80-93d1-11ed-a6e9-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-16T23:52:20.1337328Z","updatedOn":"2023-01-16T23:52:20.1337328Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/911d588d-e4a0-5501-bd42-db0fe4ac81ea","type":"Microsoft.Authorization/roleAssignments","name":"911d588d-e4a0-5501-bd42-db0fe4ac81ea"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-17T21:03:20.3495010Z","updatedOn":"2023-01-17T21:03:20.3495010Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":"partner + team engineer "},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b200ea13-6210-46cf-b622-5e1fa94d7196","type":"Microsoft.Authorization/roleAssignments","name":"b200ea13-6210-46cf-b622-5e1fa94d7196"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-17T21:55:10.9367237Z","updatedOn":"2023-01-17T21:55:10.9367237Z","createdBy":"252476b5-423c-4de6-8f23-f3b57897abfc","updatedBy":"252476b5-423c-4de6-8f23-f3b57897abfc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9c4d35c3-96b1-11ed-bcb1-aa442d61f9f5","type":"Microsoft.Authorization/roleAssignments","name":"9c4d35c3-96b1-11ed-bcb1-aa442d61f9f5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-18T16:39:36.8544109Z","updatedOn":"2023-01-18T16:39:36.8544109Z","createdBy":"57440c04-5eed-4c74-92b6-44b016b882f2","updatedBy":"57440c04-5eed-4c74-92b6-44b016b882f2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e47587fc-952b-11ed-9582-22998bd40e8c","type":"Microsoft.Authorization/roleAssignments","name":"e47587fc-952b-11ed-9582-22998bd40e8c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-19T06:11:42.7348591Z","updatedOn":"2023-01-19T06:11:42.7348591Z","createdBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","updatedBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dcee111d-97c0-11ed-8b08-5e144daaf885","type":"Microsoft.Authorization/roleAssignments","name":"dcee111d-97c0-11ed-8b08-5e144daaf885"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-19T06:11:46.7450508Z","updatedOn":"2023-01-19T06:11:46.7450508Z","createdBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","updatedBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df259f28-97c0-11ed-8b08-5e144daaf885","type":"Microsoft.Authorization/roleAssignments","name":"df259f28-97c0-11ed-8b08-5e144daaf885"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-20T21:01:23.9458046Z","updatedOn":"2023-05-12T17:27:12.7106298Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f654663-8564-546e-a6fc-452f7b76de5a","type":"Microsoft.Authorization/roleAssignments","name":"5f654663-8564-546e-a6fc-452f7b76de5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T17:09:42.5564083Z","updatedOn":"2023-01-23T17:09:42.5564083Z","createdBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","updatedBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9e2414b-9b40-11ed-96c6-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"b9e2414b-9b40-11ed-96c6-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T17:09:45.5610260Z","updatedOn":"2023-01-23T17:09:45.5610260Z","createdBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","updatedBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbc6263b-9b40-11ed-96c6-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"bbc6263b-9b40-11ed-96c6-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T18:43:59.1011432Z","updatedOn":"2023-01-23T18:43:59.1011432Z","createdBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","updatedBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e58487c6-9b4d-11ed-8c22-8c1645a48227","type":"Microsoft.Authorization/roleAssignments","name":"e58487c6-9b4d-11ed-8c22-8c1645a48227"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T18:44:02.5989503Z","updatedOn":"2023-01-23T18:44:02.5989503Z","createdBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","updatedBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7a002ef-9b4d-11ed-8c22-8c1645a48227","type":"Microsoft.Authorization/roleAssignments","name":"e7a002ef-9b4d-11ed-8c22-8c1645a48227"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-10T06:45:47.1925698Z","updatedOn":"2022-03-10T06:45:47.1925698Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4aaa7af-d414-42e9-bd99-b14d707753a7","type":"Microsoft.Authorization/roleAssignments","name":"e4aaa7af-d414-42e9-bd99-b14d707753a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-11T03:42:35.9073660Z","updatedOn":"2022-03-11T03:42:35.9073660Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a0f9eea-a0ed-11ec-9b90-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"4a0f9eea-a0ed-11ec-9b90-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-11T19:59:10.3149108Z","updatedOn":"2022-03-11T19:59:10.3149108Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b6e06a80-a175-11ec-8f66-002248778035","type":"Microsoft.Authorization/roleAssignments","name":"b6e06a80-a175-11ec-8f66-002248778035"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-14T05:57:31.9169431Z","updatedOn":"2022-03-14T05:57:31.9169431Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/04323e79-5b88-4b91-86e7-b8bfa1c2d8b9","type":"Microsoft.Authorization/roleAssignments","name":"04323e79-5b88-4b91-86e7-b8bfa1c2d8b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-14T23:57:21.8404827Z","updatedOn":"2022-03-14T23:57:21.8404827Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/824ca9a3-a3f2-11ec-b5c2-626147b15e2d","type":"Microsoft.Authorization/roleAssignments","name":"824ca9a3-a3f2-11ec-b5c2-626147b15e2d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-15T05:47:06.0764200Z","updatedOn":"2022-03-15T05:47:06.0764200Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d8c0655-15f2-4864-9ebf-6c5d95ea5797","type":"Microsoft.Authorization/roleAssignments","name":"3d8c0655-15f2-4864-9ebf-6c5d95ea5797"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-15T05:48:19.3617384Z","updatedOn":"2022-03-15T05:48:19.3617384Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5a1298d-008a-4dad-95db-70d41dc0ff2e","type":"Microsoft.Authorization/roleAssignments","name":"b5a1298d-008a-4dad-95db-70d41dc0ff2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-15T19:57:01.4651070Z","updatedOn":"2022-03-15T19:57:01.4651070Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f90898e-0a20-4778-b842-abc610614801","type":"Microsoft.Authorization/roleAssignments","name":"2f90898e-0a20-4778-b842-abc610614801"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-16T02:56:12.3673604Z","updatedOn":"2022-03-16T02:56:12.3673604Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be953738-c4c0-4da0-9b0f-42c89eb31451","type":"Microsoft.Authorization/roleAssignments","name":"be953738-c4c0-4da0-9b0f-42c89eb31451"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T10:12:31.1977135Z","updatedOn":"2022-03-21T10:12:31.1977135Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92ad8cda-f519-4160-b28d-6e0e8d19fb8e","type":"Microsoft.Authorization/roleAssignments","name":"92ad8cda-f519-4160-b28d-6e0e8d19fb8e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T17:57:33.7215077Z","updatedOn":"2022-03-21T17:57:33.7215077Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6210523c-a940-11ec-88f4-00224850c1b5","type":"Microsoft.Authorization/roleAssignments","name":"6210523c-a940-11ec-88f4-00224850c1b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T22:00:37.3135630Z","updatedOn":"2022-03-21T22:00:37.3135630Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5678b88f-a962-11ec-b646-0022487a9d6b","type":"Microsoft.Authorization/roleAssignments","name":"5678b88f-a962-11ec-b646-0022487a9d6b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T23:00:49.2441783Z","updatedOn":"2022-03-21T23:00:49.2441783Z","createdBy":"3a522b7c-61fd-4fcf-aa7f-3e8a6e7cc3af","updatedBy":"3a522b7c-61fd-4fcf-aa7f-3e8a6e7cc3af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bef73288-a96a-11ec-bd2b-6acf089951ab","type":"Microsoft.Authorization/roleAssignments","name":"bef73288-a96a-11ec-bd2b-6acf089951ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-22T04:03:04.2502656Z","updatedOn":"2022-03-22T04:03:04.2502656Z","createdBy":"9d0cc8e5-b005-4b2b-9a31-3b6c624d5330","updatedBy":"9d0cc8e5-b005-4b2b-9a31-3b6c624d5330","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8a4f8a7-a994-11ec-b30e-4a9f38c1a382","type":"Microsoft.Authorization/roleAssignments","name":"f8a4f8a7-a994-11ec-b30e-4a9f38c1a382"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-22T13:40:03.8073664Z","updatedOn":"2022-03-22T13:40:03.8073664Z","createdBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","updatedBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/93f47801-a9e5-11ec-86a5-3a3e6c7e1ac8","type":"Microsoft.Authorization/roleAssignments","name":"93f47801-a9e5-11ec-86a5-3a3e6c7e1ac8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-23T10:14:54.3796697Z","updatedOn":"2022-03-23T10:14:54.3796697Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e3f182b-aa92-11ec-9c92-18c04da96df8","type":"Microsoft.Authorization/roleAssignments","name":"0e3f182b-aa92-11ec-9c92-18c04da96df8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-23T23:47:01.7045602Z","updatedOn":"2022-03-23T23:47:01.7045602Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5312596-61f6-486a-ad10-fdb35f1c1665","type":"Microsoft.Authorization/roleAssignments","name":"d5312596-61f6-486a-ad10-fdb35f1c1665"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-25T05:07:14.4623821Z","updatedOn":"2022-03-25T05:07:14.4623821Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df7fe6e9-3cf1-4547-ba81-c1ad0d7d565d","type":"Microsoft.Authorization/roleAssignments","name":"df7fe6e9-3cf1-4547-ba81-c1ad0d7d565d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-29T14:13:44.9635087Z","updatedOn":"2022-03-29T14:13:44.9635087Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/530db943-4ece-46bc-b456-79374d5ec2ba","type":"Microsoft.Authorization/roleAssignments","name":"530db943-4ece-46bc-b456-79374d5ec2ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-30T16:18:52.9056346Z","updatedOn":"2022-03-30T16:18:52.9056346Z","createdBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","updatedBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3e0d853-568c-4e64-851d-2292fe92a007","type":"Microsoft.Authorization/roleAssignments","name":"d3e0d853-568c-4e64-851d-2292fe92a007"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-05T04:54:30.2719737Z","updatedOn":"2022-04-05T04:54:30.2719737Z","createdBy":"f0b00319-13f5-4c2b-928a-73ccb5edd222","updatedBy":"f0b00319-13f5-4c2b-928a-73ccb5edd222","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78ffc9e7-b49c-11ec-964c-b219be9347e3","type":"Microsoft.Authorization/roleAssignments","name":"78ffc9e7-b49c-11ec-964c-b219be9347e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-05T22:40:43.0016940Z","updatedOn":"2022-04-05T22:40:43.0016940Z","createdBy":"639a731d-01eb-47bc-88aa-c1e2ba14db02","updatedBy":"639a731d-01eb-47bc-88aa-c1e2ba14db02","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c9e0e6c-b531-11ec-aea8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6c9e0e6c-b531-11ec-aea8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-06T12:49:05.2173956Z","updatedOn":"2022-04-06T12:49:05.2173956Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f0a7f4e5-b5a7-11ec-bae5-000d3a6f3c6e","type":"Microsoft.Authorization/roleAssignments","name":"f0a7f4e5-b5a7-11ec-bae5-000d3a6f3c6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-07T01:16:34.9503446Z","updatedOn":"2022-04-07T01:16:34.9503446Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5bdb51f8-5551-44f9-9819-a52fa97c2fef","type":"Microsoft.Authorization/roleAssignments","name":"5bdb51f8-5551-44f9-9819-a52fa97c2fef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-11T05:16:56.1225175Z","updatedOn":"2022-04-11T05:16:56.1225175Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99904768-b956-11ec-a61a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"99904768-b956-11ec-a61a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T23:22:51.6419715Z","updatedOn":"2022-04-12T23:22:51.6419715Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/788b9be6-bab7-11ec-b096-0022487898d6","type":"Microsoft.Authorization/roleAssignments","name":"788b9be6-bab7-11ec-b096-0022487898d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T07:42:38.9160126Z","updatedOn":"2022-04-13T07:42:38.9160126Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a58e304-bafd-11ec-8461-a2dde8388af9","type":"Microsoft.Authorization/roleAssignments","name":"4a58e304-bafd-11ec-8461-a2dde8388af9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T16:12:39.4214747Z","updatedOn":"2022-04-13T16:12:39.4214747Z","createdBy":"c302f71c-7b89-4d55-8c87-135833038531","updatedBy":"c302f71c-7b89-4d55-8c87-135833038531","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3bd4838c-4c24-4bb6-b31f-d055dc68694f","type":"Microsoft.Authorization/roleAssignments","name":"3bd4838c-4c24-4bb6-b31f-d055dc68694f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T09:53:20.2997466Z","updatedOn":"2022-04-14T09:53:20.2997466Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b44f0aaa-bbd8-11ec-8da6-0a4cab55437d","type":"Microsoft.Authorization/roleAssignments","name":"b44f0aaa-bbd8-11ec-8da6-0a4cab55437d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T16:49:01.5455829Z","updatedOn":"2022-04-14T16:49:01.5455829Z","createdBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","updatedBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","delegatedManagedIdentityResourceId":null,"description":"Allows + github actions to run e2e tests. Only the main branch is permitted access, + and credentials are not shared with forks."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4e9d34c-9113-45d4-a0f0-175593c38c33","type":"Microsoft.Authorization/roleAssignments","name":"f4e9d34c-9113-45d4-a0f0-175593c38c33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-20T06:23:32.6340955Z","updatedOn":"2022-04-20T06:23:32.6340955Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6675beb7-c072-11ec-b9ab-000d3ac3f60e","type":"Microsoft.Authorization/roleAssignments","name":"6675beb7-c072-11ec-b9ab-000d3ac3f60e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-20T18:02:47.6341581Z","updatedOn":"2022-04-20T18:02:47.6341581Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/56617dbb-76a1-401d-96fe-8a22f58284d8","type":"Microsoft.Authorization/roleAssignments","name":"56617dbb-76a1-401d-96fe-8a22f58284d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T08:17:07.1604388Z","updatedOn":"2022-04-21T08:17:07.1604388Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6e60c2be-c14b-11ec-82b0-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6e60c2be-c14b-11ec-82b0-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T21:36:13.8709604Z","updatedOn":"2022-04-21T21:36:13.8709604Z","createdBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","updatedBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/10b94b6e-c1bb-11ec-9ff7-523c2f7f99a3","type":"Microsoft.Authorization/roleAssignments","name":"10b94b6e-c1bb-11ec-9ff7-523c2f7f99a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-22T18:55:55.5256074Z","updatedOn":"2022-04-22T18:55:55.5256074Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6917978-c26d-11ec-a699-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"d6917978-c26d-11ec-a699-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-24T10:36:03.4988906Z","updatedOn":"2022-04-24T10:36:03.4988906Z","createdBy":"d3cd2b55-3b25-4b68-b6fd-a08967de9266","updatedBy":"d3cd2b55-3b25-4b68-b6fd-a08967de9266","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/558d3e63-c3ba-11ec-b4f9-000d3ac7d8f0","type":"Microsoft.Authorization/roleAssignments","name":"558d3e63-c3ba-11ec-b4f9-000d3ac7d8f0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-25T06:33:58.7782201Z","updatedOn":"2022-04-25T06:33:58.7782201Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ae507161-c461-11ec-b99d-4a4f5b60a172","type":"Microsoft.Authorization/roleAssignments","name":"ae507161-c461-11ec-b99d-4a4f5b60a172"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-26T16:28:17.7010346Z","updatedOn":"2022-04-26T16:28:17.7010346Z","createdBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","updatedBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e04b1510-c57d-11ec-a3c9-0641de48d9d3","type":"Microsoft.Authorization/roleAssignments","name":"e04b1510-c57d-11ec-a3c9-0641de48d9d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-26T21:31:37.1620998Z","updatedOn":"2022-04-26T21:31:37.1620998Z","createdBy":"9bf576b7-c3cf-492b-9bcf-8c8832e2e0a5","updatedBy":"9bf576b7-c3cf-492b-9bcf-8c8832e2e0a5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/409a9eb9-c5a8-11ec-b358-d20abc546c29","type":"Microsoft.Authorization/roleAssignments","name":"409a9eb9-c5a8-11ec-b358-d20abc546c29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-28T07:13:54.9152651Z","updatedOn":"2022-04-28T07:13:54.9152651Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5f3166a-ed3f-43a7-9b34-bb910beaee12","type":"Microsoft.Authorization/roleAssignments","name":"f5f3166a-ed3f-43a7-9b34-bb910beaee12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T12:14:12.5786055Z","updatedOn":"2022-05-02T12:14:12.5786055Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f06c939-ca11-11ec-9966-da65ad1ab332","type":"Microsoft.Authorization/roleAssignments","name":"5f06c939-ca11-11ec-9966-da65ad1ab332"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:17.4008338Z","updatedOn":"2022-05-02T13:40:17.4008338Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/846f4e2d-0ec9-48ef-fd6e-6ac1cb7586e6","type":"Microsoft.Authorization/roleAssignments","name":"846f4e2d-0ec9-48ef-fd6e-6ac1cb7586e6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.8453423Z","updatedOn":"2022-05-02T13:40:18.8453423Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e72a2b8a-2c36-4ac1-aec3-4fa68f3cae16","type":"Microsoft.Authorization/roleAssignments","name":"e72a2b8a-2c36-4ac1-aec3-4fa68f3cae16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.0609853Z","updatedOn":"2022-05-02T13:40:18.0609853Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/72e6bf18-35fb-436e-3e05-9ba0a0747299","type":"Microsoft.Authorization/roleAssignments","name":"72e6bf18-35fb-436e-3e05-9ba0a0747299"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.1173679Z","updatedOn":"2022-05-02T13:40:18.1173679Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/724e274f-6e37-445c-608e-199fb9eaa982","type":"Microsoft.Authorization/roleAssignments","name":"724e274f-6e37-445c-608e-199fb9eaa982"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T16:59:33.5195217Z","updatedOn":"2022-05-02T16:59:33.5195217Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/98620dcd-bcc5-4828-b846-369c64574ee1","type":"Microsoft.Authorization/roleAssignments","name":"98620dcd-bcc5-4828-b846-369c64574ee1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T06:36:46.9583100Z","updatedOn":"2022-05-09T06:36:46.9583100Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5a313ab-6903-471c-a6bf-8d84989e8cb4","type":"Microsoft.Authorization/roleAssignments","name":"d5a313ab-6903-471c-a6bf-8d84989e8cb4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T22:20:41.5499828Z","updatedOn":"2022-05-09T22:20:41.5499828Z","createdBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","updatedBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/425f8b8d-cfe6-11ec-bbe5-00155ddd560d","type":"Microsoft.Authorization/roleAssignments","name":"425f8b8d-cfe6-11ec-bbe5-00155ddd560d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-10T06:15:39.4482664Z","updatedOn":"2022-05-10T06:15:39.4482664Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a2ff126-fb32-4ca9-8c4d-c8b22209cbc1","type":"Microsoft.Authorization/roleAssignments","name":"8a2ff126-fb32-4ca9-8c4d-c8b22209cbc1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-11T23:10:09.0651064Z","updatedOn":"2022-05-11T23:10:09.0651064Z","createdBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","updatedBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/804a630f-d17f-11ec-bb71-6045bdab52dc","type":"Microsoft.Authorization/roleAssignments","name":"804a630f-d17f-11ec-bb71-6045bdab52dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-12T13:47:03.3832395Z","updatedOn":"2022-05-12T13:47:03.3832395Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00bc6898-d1fa-11ec-974a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"00bc6898-d1fa-11ec-974a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-13T20:36:59.6109396Z","updatedOn":"2022-05-13T20:36:59.6109396Z","createdBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","updatedBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ea3a01d-d2fc-11ec-9997-be6e344e58c1","type":"Microsoft.Authorization/roleAssignments","name":"6ea3a01d-d2fc-11ec-9997-be6e344e58c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-17T06:49:11.7087809Z","updatedOn":"2022-05-17T06:49:11.7087809Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07f76b15-d899-4d21-8542-29c2479e05e1","type":"Microsoft.Authorization/roleAssignments","name":"07f76b15-d899-4d21-8542-29c2479e05e1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-18T13:22:09.5941967Z","updatedOn":"2022-05-18T13:22:09.5941967Z","createdBy":"52d64fbe-1728-4b2b-a0c4-849705cb9c96","updatedBy":"52d64fbe-1728-4b2b-a0c4-849705cb9c96","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/847201fc-d6ad-11ec-a176-000d3a083c47","type":"Microsoft.Authorization/roleAssignments","name":"847201fc-d6ad-11ec-a176-000d3a083c47"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-20T22:35:09.9396236Z","updatedOn":"2022-05-20T22:35:09.9396236Z","createdBy":"1ec25b73-94d5-4bf9-a56f-ca7d9bd4164c","updatedBy":"1ec25b73-94d5-4bf9-a56f-ca7d9bd4164c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5d512f6-fb53-4fad-b3be-ec154c7a6085","type":"Microsoft.Authorization/roleAssignments","name":"c5d512f6-fb53-4fad-b3be-ec154c7a6085"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-22T23:45:36.9119159Z","updatedOn":"2022-05-22T23:45:36.9119159Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46fd33ed-da29-11ec-919f-6045bd7a16bc","type":"Microsoft.Authorization/roleAssignments","name":"46fd33ed-da29-11ec-919f-6045bd7a16bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-23T03:50:38.5802008Z","updatedOn":"2022-05-23T03:50:38.5802008Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ab46785f-2521-4172-871f-91e7dc500a5b","type":"Microsoft.Authorization/roleAssignments","name":"ab46785f-2521-4172-871f-91e7dc500a5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-23T18:09:05.5672217Z","updatedOn":"2022-05-23T18:09:05.5672217Z","createdBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","updatedBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3f47f83-e599-4106-974f-5ff73955ffa6","type":"Microsoft.Authorization/roleAssignments","name":"e3f47f83-e599-4106-974f-5ff73955ffa6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-24T20:49:20.4480948Z","updatedOn":"2022-05-24T20:49:20.4480948Z","createdBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","updatedBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbf490ce-dba2-11ec-b0af-6045bdab52dc","type":"Microsoft.Authorization/roleAssignments","name":"fbf490ce-dba2-11ec-b0af-6045bdab52dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-25T18:39:32.8389167Z","updatedOn":"2022-05-25T18:39:32.8389167Z","createdBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","updatedBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/048a3cf1-dc5a-11ec-8804-6045bdab52dc","type":"Microsoft.Authorization/roleAssignments","name":"048a3cf1-dc5a-11ec-8804-6045bdab52dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T01:53:46.3648590Z","updatedOn":"2022-05-26T01:53:46.3648590Z","createdBy":"834b5e76-453d-44f5-80ff-3481c8415d66","updatedBy":"834b5e76-453d-44f5-80ff-3481c8415d66","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac5ab95a-dc96-11ec-92bb-065f8efd402d","type":"Microsoft.Authorization/roleAssignments","name":"ac5ab95a-dc96-11ec-92bb-065f8efd402d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T06:40:41.8769416Z","updatedOn":"2022-05-26T06:40:41.8769416Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2812727c-1e58-49f0-84a6-13e2b8b7cce7","type":"Microsoft.Authorization/roleAssignments","name":"2812727c-1e58-49f0-84a6-13e2b8b7cce7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T16:39:02.6438636Z","updatedOn":"2022-05-26T16:39:02.6438636Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5bb051d1-dd12-11ec-8dd4-9e3ebf2d444f","type":"Microsoft.Authorization/roleAssignments","name":"5bb051d1-dd12-11ec-8dd4-9e3ebf2d444f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-28T07:02:36.1409282Z","updatedOn":"2022-05-28T07:02:36.1409282Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dbf46cb0-1221-443e-bab0-9cd11b7afece","type":"Microsoft.Authorization/roleAssignments","name":"dbf46cb0-1221-443e-bab0-9cd11b7afece"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-31T03:23:22.9404784Z","updatedOn":"2022-05-31T03:23:22.9404784Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/047700b3-e091-11ec-b7b9-f6caf9b02627","type":"Microsoft.Authorization/roleAssignments","name":"047700b3-e091-11ec-b7b9-f6caf9b02627"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-31T03:25:49.5470268Z","updatedOn":"2022-05-31T03:25:49.5470268Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b03550bc-b4aa-4aab-8bd7-0d27b86c9380","type":"Microsoft.Authorization/roleAssignments","name":"b03550bc-b4aa-4aab-8bd7-0d27b86c9380"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-01T14:15:14.5143992Z","updatedOn":"2022-06-01T14:15:14.5143992Z","createdBy":"572b7854-a995-402b-8482-46e12d3c9665","updatedBy":"572b7854-a995-402b-8482-46e12d3c9665","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41183c3a-e1b5-11ec-bad7-3c7c3f1d0035","type":"Microsoft.Authorization/roleAssignments","name":"41183c3a-e1b5-11ec-bad7-3c7c3f1d0035"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-01T15:59:31.6776783Z","updatedOn":"2022-06-01T15:59:31.6776783Z","createdBy":"203de16f-a918-45b1-bde4-6cc574d16944","updatedBy":"203de16f-a918-45b1-bde4-6cc574d16944","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e0dd4b8a-e1c3-11ec-949c-7a1cf6c5b419","type":"Microsoft.Authorization/roleAssignments","name":"e0dd4b8a-e1c3-11ec-949c-7a1cf6c5b419"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-01T18:14:50.2776576Z","updatedOn":"2022-06-01T18:14:50.2776576Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61f89f02-3565-409f-8e72-fc4e58b40178","type":"Microsoft.Authorization/roleAssignments","name":"61f89f02-3565-409f-8e72-fc4e58b40178"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-02T10:22:35.3875246Z","updatedOn":"2022-06-02T10:22:35.3875246Z","createdBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","updatedBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eabe3f5d-e25d-11ec-9d25-002248575167","type":"Microsoft.Authorization/roleAssignments","name":"eabe3f5d-e25d-11ec-9d25-002248575167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-02T19:10:50.1608669Z","updatedOn":"2022-06-02T19:10:50.1608669Z","createdBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","updatedBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d33bf47-7a98-4cca-84be-a622a8a520ae","type":"Microsoft.Authorization/roleAssignments","name":"2d33bf47-7a98-4cca-84be-a622a8a520ae"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-03T17:52:39.6424601Z","updatedOn":"2022-06-03T17:52:39.6424601Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/808a6fa6-1aa8-401a-b12d-3dbf49678aa5","type":"Microsoft.Authorization/roleAssignments","name":"808a6fa6-1aa8-401a-b12d-3dbf49678aa5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-03T18:32:43.3145647Z","updatedOn":"2022-06-03T18:32:43.3145647Z","createdBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","updatedBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ce8e3fe-e36b-11ec-93c2-0ebbe08470ef","type":"Microsoft.Authorization/roleAssignments","name":"8ce8e3fe-e36b-11ec-93c2-0ebbe08470ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-03T20:51:18.9925616Z","updatedOn":"2022-06-03T20:51:18.9925616Z","createdBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","updatedBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea9b98ba-e37e-11ec-b495-0ebbe08470ef","type":"Microsoft.Authorization/roleAssignments","name":"ea9b98ba-e37e-11ec-b495-0ebbe08470ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-06T19:39:15.5380737Z","updatedOn":"2022-06-06T19:39:15.5380737Z","createdBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","updatedBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57d73d6c-e5d0-11ec-a3ee-c220c0843243","type":"Microsoft.Authorization/roleAssignments","name":"57d73d6c-e5d0-11ec-a3ee-c220c0843243"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-07T02:58:19.0816460Z","updatedOn":"2022-06-07T02:58:19.0816460Z","createdBy":"0bf53c4f-0173-466d-967d-debbe9e551d6","updatedBy":"0bf53c4f-0173-466d-967d-debbe9e551d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/adea0756-e60d-11ec-bd0e-66dbb5eba95d","type":"Microsoft.Authorization/roleAssignments","name":"adea0756-e60d-11ec-bd0e-66dbb5eba95d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-07T18:27:18.2907455Z","updatedOn":"2022-06-07T18:27:18.2907455Z","createdBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","updatedBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/75dc9d88-e68f-11ec-bbbc-aa665a03731d","type":"Microsoft.Authorization/roleAssignments","name":"75dc9d88-e68f-11ec-bbbc-aa665a03731d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-08T18:25:22.6640205Z","updatedOn":"2022-06-08T18:25:22.6640205Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/17b651ab-ff7f-4cf2-833a-27f695725732","type":"Microsoft.Authorization/roleAssignments","name":"17b651ab-ff7f-4cf2-833a-27f695725732"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-08T19:34:11.0218858Z","updatedOn":"2022-06-08T19:34:11.0218858Z","createdBy":"1b51b78e-fd1f-484f-98b6-3423d189977b","updatedBy":"1b51b78e-fd1f-484f-98b6-3423d189977b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5e9c3a1d-3f79-4e4b-9b9d-fbe1f3d09ec5","type":"Microsoft.Authorization/roleAssignments","name":"5e9c3a1d-3f79-4e4b-9b9d-fbe1f3d09ec5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-08T19:46:00.8296947Z","updatedOn":"2022-06-08T19:46:00.8296947Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f2fd786-e763-11ec-b282-000d3af64fa4","type":"Microsoft.Authorization/roleAssignments","name":"9f2fd786-e763-11ec-b282-000d3af64fa4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-09T01:49:44.1244830Z","updatedOn":"2022-06-09T01:49:44.1244830Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14a2ebaa-ca44-4eb7-851c-01d577cb625e","type":"Microsoft.Authorization/roleAssignments","name":"14a2ebaa-ca44-4eb7-851c-01d577cb625e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-09T23:29:31.3797237Z","updatedOn":"2022-06-09T23:29:31.3797237Z","createdBy":"b34e062a-5a73-4cec-af00-1ecb446deb92","updatedBy":"b34e062a-5a73-4cec-af00-1ecb446deb92","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/02f3fb8e-e84c-11ec-bd1c-6045bd7e546a","type":"Microsoft.Authorization/roleAssignments","name":"02f3fb8e-e84c-11ec-bd1c-6045bd7e546a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T15:06:09.3851225Z","updatedOn":"2022-06-10T15:06:09.3851225Z","createdBy":"fb4b724d-4b7e-4756-aa0b-d91dc0c5acc9","updatedBy":"fb4b724d-4b7e-4756-aa0b-d91dc0c5acc9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/db7a073e-e8ce-11ec-8b1d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"db7a073e-e8ce-11ec-8b1d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T18:05:28.7449646Z","updatedOn":"2022-06-10T18:05:28.7449646Z","createdBy":"0e06046f-cf0d-4924-86b0-bbcf36a1936f","updatedBy":"0e06046f-cf0d-4924-86b0-bbcf36a1936f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7824ddb-e8e7-11ec-b465-421b394b7a96","type":"Microsoft.Authorization/roleAssignments","name":"e7824ddb-e8e7-11ec-b465-421b394b7a96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T18:05:29.8303312Z","updatedOn":"2022-06-10T18:05:29.8303312Z","createdBy":"1295ee3f-edbd-4185-9628-13318404c52a","updatedBy":"1295ee3f-edbd-4185-9628-13318404c52a","delegatedManagedIdentityResourceId":null,"description":"New + AKS member"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/609b8d2a-2b4f-4767-aa5e-c5c7f11b687b","type":"Microsoft.Authorization/roleAssignments","name":"609b8d2a-2b4f-4767-aa5e-c5c7f11b687b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T21:18:18.0994828Z","updatedOn":"2022-06-10T21:18:18.0994828Z","createdBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","updatedBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d80f2247-e902-11ec-96de-2edd4b852bcf","type":"Microsoft.Authorization/roleAssignments","name":"d80f2247-e902-11ec-96de-2edd4b852bcf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:19.7988558Z","updatedOn":"2022-06-13T09:20:19.7988558Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/053ff776-f32a-4298-cbeb-0da661875d88","type":"Microsoft.Authorization/roleAssignments","name":"053ff776-f32a-4298-cbeb-0da661875d88"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:19.8466660Z","updatedOn":"2022-06-13T09:20:19.8466660Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b4bd6e6-869b-4da3-a50f-b7eb8b183de5","type":"Microsoft.Authorization/roleAssignments","name":"4b4bd6e6-869b-4da3-a50f-b7eb8b183de5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:20.2195738Z","updatedOn":"2022-06-13T09:20:20.2195738Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/21db9db3-7adc-40f3-5885-af265b9ddad2","type":"Microsoft.Authorization/roleAssignments","name":"21db9db3-7adc-40f3-5885-af265b9ddad2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:19.9439478Z","updatedOn":"2022-06-13T09:20:19.9439478Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2418e820-601e-49da-a20d-4fa1ee6cc4cf","type":"Microsoft.Authorization/roleAssignments","name":"2418e820-601e-49da-a20d-4fa1ee6cc4cf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T17:55:18.4118508Z","updatedOn":"2022-06-13T17:55:18.4118508Z","createdBy":"1295ee3f-edbd-4185-9628-13318404c52a","updatedBy":"1295ee3f-edbd-4185-9628-13318404c52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbcfa2a4-eb41-11ec-b38e-467d14df3056","type":"Microsoft.Authorization/roleAssignments","name":"fbcfa2a4-eb41-11ec-b38e-467d14df3056"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-14T09:33:38.7306445Z","updatedOn":"2022-06-14T09:33:38.7306445Z","createdBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","updatedBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/10ffce40-ebc5-11ec-aebe-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"10ffce40-ebc5-11ec-aebe-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-14T23:20:32.7229029Z","updatedOn":"2022-06-14T23:20:32.7229029Z","createdBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","updatedBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/954903db-ec38-11ec-acd7-72f791cfbed2","type":"Microsoft.Authorization/roleAssignments","name":"954903db-ec38-11ec-acd7-72f791cfbed2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T06:30:47.7914595Z","updatedOn":"2022-06-16T06:30:47.7914595Z","createdBy":"504c34f4-8389-4920-aec9-0c595b508740","updatedBy":"504c34f4-8389-4920-aec9-0c595b508740","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb760c25-af25-412f-a643-93e98c629270","type":"Microsoft.Authorization/roleAssignments","name":"bb760c25-af25-412f-a643-93e98c629270"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T20:16:07.8463557Z","updatedOn":"2022-06-16T20:16:07.8463557Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4555d91-07f5-46d6-b29f-50b0d211c4ae","type":"Microsoft.Authorization/roleAssignments","name":"f4555d91-07f5-46d6-b29f-50b0d211c4ae"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T21:30:16.4420742Z","updatedOn":"2022-06-16T21:30:16.4420742Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":"to + programatically create new resource group, aks cluster, and container registry"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2c2fc915-d722-4dde-b730-7c73c8a87fdc","type":"Microsoft.Authorization/roleAssignments","name":"2c2fc915-d722-4dde-b730-7c73c8a87fdc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T22:19:51.5734675Z","updatedOn":"2022-06-16T22:19:51.5734675Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cca9c113-570a-4969-aa72-45c31091684a","type":"Microsoft.Authorization/roleAssignments","name":"cca9c113-570a-4969-aa72-45c31091684a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-17T02:19:37.1755269Z","updatedOn":"2022-06-17T02:19:37.1755269Z","createdBy":"30db9446-b4f8-4485-8c98-10e17387409d","updatedBy":"30db9446-b4f8-4485-8c98-10e17387409d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eee6dfc9-ede3-11ec-9f6d-902e1612d5d0","type":"Microsoft.Authorization/roleAssignments","name":"eee6dfc9-ede3-11ec-9f6d-902e1612d5d0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-20T22:03:11.1423439Z","updatedOn":"2022-06-20T22:03:11.1423439Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5c2bd4a-f0e4-11ec-bbc1-000d3ac67a2f","type":"Microsoft.Authorization/roleAssignments","name":"c5c2bd4a-f0e4-11ec-bbc1-000d3ac67a2f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-21T16:26:57.9805326Z","updatedOn":"2022-06-21T16:26:57.9805326Z","createdBy":"4d730cf1-e190-49af-af02-ea52983c017e","updatedBy":"4d730cf1-e190-49af-af02-ea52983c017e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f814031e-f17e-11ec-bdc4-72d39f810808","type":"Microsoft.Authorization/roleAssignments","name":"f814031e-f17e-11ec-bdc4-72d39f810808"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-22T23:05:28.0851041Z","updatedOn":"2022-06-22T23:05:28.0851041Z","createdBy":"395c8203-ec60-4c13-9730-5f960088f92b","updatedBy":"395c8203-ec60-4c13-9730-5f960088f92b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e672e20f-477a-4475-a5cf-2f7d8401bbc3","type":"Microsoft.Authorization/roleAssignments","name":"e672e20f-477a-4475-a5cf-2f7d8401bbc3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-23T19:51:00.2507743Z","updatedOn":"2022-06-23T19:51:00.2507743Z","createdBy":"8b564e25-6f45-4437-bf8b-9ac6596a5f15","updatedBy":"8b564e25-6f45-4437-bf8b-9ac6596a5f15","delegatedManagedIdentityResourceId":null,"description":"Adding + permissions to SP for running E2E tests. Currently getting error \"The client + ''0cea35e6-9763-4ef3-b2d2-8c241ab58828'' with object id ''0cea35e6-9763-4ef3-b2d2-8c241ab58828'' + does not have authorization to perform action ''Microsoft.Resources/subscriptions/resourcegroups/write'' + over scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/e2erg-indusridebld56865086-VzY'' + or the scope is invalid. If access was recently granted, please refresh your + credentials.\""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5cfb2437-e152-48d8-bb2a-54c89f27707a","type":"Microsoft.Authorization/roleAssignments","name":"5cfb2437-e152-48d8-bb2a-54c89f27707a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-23T21:01:02.9667346Z","updatedOn":"2022-06-23T21:01:02.9667346Z","createdBy":"34d4f830-f9ea-4525-9ca2-b784e3874713","updatedBy":"34d4f830-f9ea-4525-9ca2-b784e3874713","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9527af65-f337-11ec-a743-daea1d98cac0","type":"Microsoft.Authorization/roleAssignments","name":"9527af65-f337-11ec-a743-daea1d98cac0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-24T17:09:56.9678432Z","updatedOn":"2022-06-24T17:09:56.9678432Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba5c2d82-3e34-4b2b-9c5f-27d9d33955ff","type":"Microsoft.Authorization/roleAssignments","name":"ba5c2d82-3e34-4b2b-9c5f-27d9d33955ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-24T17:36:02.0450264Z","updatedOn":"2022-06-24T17:36:02.0450264Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/16b4850b-3e9c-435e-b3f6-b83e02b9146e","type":"Microsoft.Authorization/roleAssignments","name":"16b4850b-3e9c-435e-b3f6-b83e02b9146e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-27T17:58:47.2112371Z","updatedOn":"2022-06-27T17:58:47.2112371Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca6de50e-f642-11ec-83b8-002248773529","type":"Microsoft.Authorization/roleAssignments","name":"ca6de50e-f642-11ec-83b8-002248773529"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-27T21:10:04.9812035Z","updatedOn":"2022-06-27T21:10:04.9812035Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ad97eed-2e77-485f-a2ec-132f3647aef7","type":"Microsoft.Authorization/roleAssignments","name":"8ad97eed-2e77-485f-a2ec-132f3647aef7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T15:43:32.3787489Z","updatedOn":"2022-06-28T15:43:32.3787489Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a1acaea-f6f9-11ec-9ddd-6e578000e34a","type":"Microsoft.Authorization/roleAssignments","name":"0a1acaea-f6f9-11ec-9ddd-6e578000e34a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-29T05:30:23.4400722Z","updatedOn":"2022-06-29T05:30:23.4400722Z","createdBy":"65cfb39a-5f29-4247-8230-9ec6695c5878","updatedBy":"65cfb39a-5f29-4247-8230-9ec6695c5878","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/546c078e-3855-479c-b7aa-b38d4e68bb9f","type":"Microsoft.Authorization/roleAssignments","name":"546c078e-3855-479c-b7aa-b38d4e68bb9f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-29T17:04:07.7235161Z","updatedOn":"2022-06-29T17:04:07.7235161Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/48cbe38c-7d32-4174-8026-7a16994dcdc8","type":"Microsoft.Authorization/roleAssignments","name":"48cbe38c-7d32-4174-8026-7a16994dcdc8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-30T09:06:03.1760556Z","updatedOn":"2022-06-30T09:06:03.1760556Z","createdBy":"42a33e33-55bb-4995-80a2-d1b745371591","updatedBy":"42a33e33-55bb-4995-80a2-d1b745371591","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd7da313-f853-11ec-9993-000d3ac42d43","type":"Microsoft.Authorization/roleAssignments","name":"dd7da313-f853-11ec-9993-000d3ac42d43"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-30T09:06:06.3942443Z","updatedOn":"2022-06-30T09:06:06.3942443Z","createdBy":"42a33e33-55bb-4995-80a2-d1b745371591","updatedBy":"42a33e33-55bb-4995-80a2-d1b745371591","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df6c9d2d-f853-11ec-9993-000d3ac42d43","type":"Microsoft.Authorization/roleAssignments","name":"df6c9d2d-f853-11ec-9993-000d3ac42d43"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-04T08:11:46.0687018Z","updatedOn":"2022-07-04T08:11:46.0687018Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40b64297-b408-4d22-bf82-9b6897914b91","type":"Microsoft.Authorization/roleAssignments","name":"40b64297-b408-4d22-bf82-9b6897914b91"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T17:33:53.2930064Z","updatedOn":"2022-07-05T17:33:53.2930064Z","createdBy":"8e17b6a3-5430-4318-a670-b9df4d106675","updatedBy":"8e17b6a3-5430-4318-a670-b9df4d106675","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a23e2991-fc88-11ec-b99d-fe2d37eeee3f","type":"Microsoft.Authorization/roleAssignments","name":"a23e2991-fc88-11ec-b99d-fe2d37eeee3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T17:33:56.8130933Z","updatedOn":"2022-07-05T17:33:56.8130933Z","createdBy":"8e17b6a3-5430-4318-a670-b9df4d106675","updatedBy":"8e17b6a3-5430-4318-a670-b9df4d106675","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a45a4b60-fc88-11ec-b99d-fe2d37eeee3f","type":"Microsoft.Authorization/roleAssignments","name":"a45a4b60-fc88-11ec-b99d-fe2d37eeee3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T20:50:59.7297844Z","updatedOn":"2022-07-05T20:50:59.7297844Z","createdBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","updatedBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2bf6d528-fca4-11ec-ae95-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2bf6d528-fca4-11ec-ae95-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T20:51:03.8324709Z","updatedOn":"2022-07-05T20:51:03.8324709Z","createdBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","updatedBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2eb27754-fca4-11ec-ae95-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2eb27754-fca4-11ec-ae95-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-06T18:17:04.1589374Z","updatedOn":"2022-07-06T18:17:04.1589374Z","createdBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","updatedBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d66150ce-778b-48b7-9eec-4af15a62d5fb","type":"Microsoft.Authorization/roleAssignments","name":"d66150ce-778b-48b7-9eec-4af15a62d5fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T04:14:56.8781019Z","updatedOn":"2022-07-07T04:14:56.8781019Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d244381e-1809-4aab-b4bf-f6c45efad8a0","type":"Microsoft.Authorization/roleAssignments","name":"d244381e-1809-4aab-b4bf-f6c45efad8a0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T08:02:02.2250086Z","updatedOn":"2022-07-07T08:02:02.2250086Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/209367bb-572e-4543-8ffa-261ab9e3e98e","type":"Microsoft.Authorization/roleAssignments","name":"209367bb-572e-4543-8ffa-261ab9e3e98e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T09:51:45.7545095Z","updatedOn":"2022-07-07T09:51:45.7545095Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9b5f542-ed8b-4591-902d-70f85896c4a9","type":"Microsoft.Authorization/roleAssignments","name":"a9b5f542-ed8b-4591-902d-70f85896c4a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T10:20:52.8789655Z","updatedOn":"2022-07-07T10:20:52.8789655Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67fb0754-2c67-405f-b195-0fc9fb022fc7","type":"Microsoft.Authorization/roleAssignments","name":"67fb0754-2c67-405f-b195-0fc9fb022fc7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T23:54:13.9262172Z","updatedOn":"2022-07-07T23:54:13.9262172Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a13e2124-87c9-402c-9611-fbb6a1b4e4b8","type":"Microsoft.Authorization/roleAssignments","name":"a13e2124-87c9-402c-9611-fbb6a1b4e4b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T02:43:53.0148931Z","updatedOn":"2022-07-08T02:43:53.0148931Z","createdBy":"34e81c0e-d5e6-478f-8544-2686be295567","updatedBy":"34e81c0e-d5e6-478f-8544-2686be295567","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc3fbff8-fe67-11ec-ac64-f69a873c5ca0","type":"Microsoft.Authorization/roleAssignments","name":"cc3fbff8-fe67-11ec-ac64-f69a873c5ca0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T02:43:59.1573960Z","updatedOn":"2022-07-08T02:43:59.1573960Z","createdBy":"34e81c0e-d5e6-478f-8544-2686be295567","updatedBy":"34e81c0e-d5e6-478f-8544-2686be295567","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cfe77b1e-fe67-11ec-ac64-f69a873c5ca0","type":"Microsoft.Authorization/roleAssignments","name":"cfe77b1e-fe67-11ec-ac64-f69a873c5ca0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T16:06:18.0035556Z","updatedOn":"2022-07-08T16:06:18.0035556Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/72a67832-6c5d-4b3e-9067-ceef4bc5dcba","type":"Microsoft.Authorization/roleAssignments","name":"72a67832-6c5d-4b3e-9067-ceef4bc5dcba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T16:17:28.2042061Z","updatedOn":"2022-07-08T16:17:28.2042061Z","createdBy":"cef6ee5d-6edd-413d-9eb7-c205c9802a3f","updatedBy":"cef6ee5d-6edd-413d-9eb7-c205c9802a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82dd5217-b1f7-4be5-8f03-5899493aa314","type":"Microsoft.Authorization/roleAssignments","name":"82dd5217-b1f7-4be5-8f03-5899493aa314"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T17:53:10.4671781Z","updatedOn":"2022-07-08T17:53:10.4671781Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4227602-fee6-11ec-ab63-000d3af64fa4","type":"Microsoft.Authorization/roleAssignments","name":"d4227602-fee6-11ec-ab63-000d3af64fa4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-11T21:30:54.4523951Z","updatedOn":"2022-07-11T21:30:54.4523951Z","createdBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","updatedBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a77632d-0fee-46d8-9f0d-d2ed44a26602","type":"Microsoft.Authorization/roleAssignments","name":"0a77632d-0fee-46d8-9f0d-d2ed44a26602"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-11T22:18:13.7630778Z","updatedOn":"2022-07-11T22:18:13.7630778Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3abee7ef-2e53-478a-b9cd-911e8768e9d6","type":"Microsoft.Authorization/roleAssignments","name":"3abee7ef-2e53-478a-b9cd-911e8768e9d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T04:19:56.7878684Z","updatedOn":"2022-07-12T04:19:56.7878684Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2335b0a-0199-11ed-9afe-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e2335b0a-0199-11ed-9afe-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T04:20:00.9520791Z","updatedOn":"2022-07-12T04:20:00.9520791Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4b0f194-0199-11ed-9afe-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e4b0f194-0199-11ed-9afe-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T11:12:50.2042423Z","updatedOn":"2022-07-12T11:12:50.2042423Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad70c028-d6b8-4efb-96d4-0bf9aa09566c","type":"Microsoft.Authorization/roleAssignments","name":"ad70c028-d6b8-4efb-96d4-0bf9aa09566c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T17:55:10.7687684Z","updatedOn":"2022-07-12T17:55:10.7687684Z","createdBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","updatedBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c642f341-020b-11ed-bc6a-02136178e3ad","type":"Microsoft.Authorization/roleAssignments","name":"c642f341-020b-11ed-bc6a-02136178e3ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T17:55:14.4120596Z","updatedOn":"2022-07-12T17:55:14.4120596Z","createdBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","updatedBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c87a1349-020b-11ed-bc6a-02136178e3ad","type":"Microsoft.Authorization/roleAssignments","name":"c87a1349-020b-11ed-bc6a-02136178e3ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T18:08:22.2861717Z","updatedOn":"2022-07-12T18:08:22.2861717Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/421ff42e-57e3-4b62-b4e6-e8e561eb7212","type":"Microsoft.Authorization/roleAssignments","name":"421ff42e-57e3-4b62-b4e6-e8e561eb7212"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T00:41:08.5337376Z","updatedOn":"2022-07-13T00:41:08.5337376Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78c85e30-0244-11ed-914f-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"78c85e30-0244-11ed-914f-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T08:27:18.8954270Z","updatedOn":"2022-07-13T08:27:18.8954270Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eda0948f-04c7-43eb-a560-0fe9db9681c5","type":"Microsoft.Authorization/roleAssignments","name":"eda0948f-04c7-43eb-a560-0fe9db9681c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T20:09:22.9119861Z","updatedOn":"2022-07-13T20:09:22.9119861Z","createdBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","updatedBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/af556422-02e7-11ed-b490-3e22fbbb55c2","type":"Microsoft.Authorization/roleAssignments","name":"af556422-02e7-11ed-b490-3e22fbbb55c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T20:09:36.4140354Z","updatedOn":"2022-07-13T20:09:36.4140354Z","createdBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","updatedBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b77f8f56-02e7-11ed-b490-3e22fbbb55c2","type":"Microsoft.Authorization/roleAssignments","name":"b77f8f56-02e7-11ed-b490-3e22fbbb55c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-15T03:29:06.6862069Z","updatedOn":"2022-07-15T03:29:06.6862069Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/77952ad7-ace5-45a1-9395-7025cd43927b","type":"Microsoft.Authorization/roleAssignments","name":"77952ad7-ace5-45a1-9395-7025cd43927b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-15T21:17:33.7746216Z","updatedOn":"2022-07-15T21:17:33.7746216Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8aa04a4a-0483-11ed-bcf7-00155dfde705","type":"Microsoft.Authorization/roleAssignments","name":"8aa04a4a-0483-11ed-bcf7-00155dfde705"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-15T21:17:36.9140017Z","updatedOn":"2022-07-15T21:17:36.9140017Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c49fe02-0483-11ed-bcf7-00155dfde705","type":"Microsoft.Authorization/roleAssignments","name":"8c49fe02-0483-11ed-bcf7-00155dfde705"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-18T18:31:44.6615613Z","updatedOn":"2022-07-18T18:31:44.6615613Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9913aa55-1df8-4b7f-b351-bfb577c653b7","type":"Microsoft.Authorization/roleAssignments","name":"9913aa55-1df8-4b7f-b351-bfb577c653b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T03:14:49.6541206Z","updatedOn":"2022-07-19T03:14:49.6541206Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f2a2c960-0710-11ed-af5f-000d3a183800","type":"Microsoft.Authorization/roleAssignments","name":"f2a2c960-0710-11ed-af5f-000d3a183800"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T03:14:52.8659954Z","updatedOn":"2022-07-19T03:14:52.8659954Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f491d46c-0710-11ed-af5f-000d3a183800","type":"Microsoft.Authorization/roleAssignments","name":"f491d46c-0710-11ed-af5f-000d3a183800"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T17:08:01.7695005Z","updatedOn":"2022-07-19T17:08:01.7695005Z","createdBy":"08a0af07-b641-44c2-a174-9b85f2db0af1","updatedBy":"08a0af07-b641-44c2-a174-9b85f2db0af1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57cd16da-0785-11ed-91ee-06d9bf349677","type":"Microsoft.Authorization/roleAssignments","name":"57cd16da-0785-11ed-91ee-06d9bf349677"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T17:28:52.5405320Z","updatedOn":"2022-07-19T17:28:52.5405320Z","createdBy":"395c8203-ec60-4c13-9730-5f960088f92b","updatedBy":"395c8203-ec60-4c13-9730-5f960088f92b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ab94087-7d29-4798-88b0-5ba408389266","type":"Microsoft.Authorization/roleAssignments","name":"6ab94087-7d29-4798-88b0-5ba408389266"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T20:15:51.4129938Z","updatedOn":"2022-07-19T20:15:51.4129938Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/04aeccd9-485e-4667-83ec-0940615dc03f","type":"Microsoft.Authorization/roleAssignments","name":"04aeccd9-485e-4667-83ec-0940615dc03f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-20T00:07:29.4350314Z","updatedOn":"2022-07-20T00:07:29.4350314Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1165576-07bf-11ed-a49d-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"f1165576-07bf-11ed-a49d-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-20T00:07:32.8732624Z","updatedOn":"2022-07-20T00:07:32.8732624Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f358bfdc-07bf-11ed-a49d-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"f358bfdc-07bf-11ed-a49d-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-21T12:09:08.1001074Z","updatedOn":"2022-07-21T12:09:08.1001074Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ebb1f193-08ed-11ed-a201-00224878d5c3","type":"Microsoft.Authorization/roleAssignments","name":"ebb1f193-08ed-11ed-a201-00224878d5c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-21T12:09:11.3486909Z","updatedOn":"2022-07-21T12:09:11.3486909Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/edaa26e6-08ed-11ed-a201-00224878d5c3","type":"Microsoft.Authorization/roleAssignments","name":"edaa26e6-08ed-11ed-a201-00224878d5c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-22T09:35:51.5690357Z","updatedOn":"2022-07-22T09:35:51.5690357Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd07b0f6-982a-4d85-9fdd-d44049270cbd","type":"Microsoft.Authorization/roleAssignments","name":"dd07b0f6-982a-4d85-9fdd-d44049270cbd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-24T17:57:05.6570323Z","updatedOn":"2022-07-24T17:57:05.6570323Z","createdBy":"567715d4-847a-4def-acb2-d157ebfa8439","updatedBy":"567715d4-847a-4def-acb2-d157ebfa8439","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/069fdbd1-0b7a-11ed-aa35-a2d44093b98e","type":"Microsoft.Authorization/roleAssignments","name":"069fdbd1-0b7a-11ed-aa35-a2d44093b98e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-24T17:57:10.6197123Z","updatedOn":"2022-07-24T17:57:10.6197123Z","createdBy":"567715d4-847a-4def-acb2-d157ebfa8439","updatedBy":"567715d4-847a-4def-acb2-d157ebfa8439","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09844b71-0b7a-11ed-aa35-a2d44093b98e","type":"Microsoft.Authorization/roleAssignments","name":"09844b71-0b7a-11ed-aa35-a2d44093b98e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-25T23:51:56.7193261Z","updatedOn":"2022-07-25T23:51:56.7193261Z","createdBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","updatedBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3d43338-0c74-11ed-a558-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"c3d43338-0c74-11ed-a558-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-25T23:51:59.2783640Z","updatedOn":"2022-07-25T23:51:59.2783640Z","createdBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","updatedBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5533d8a-0c74-11ed-a558-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"c5533d8a-0c74-11ed-a558-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-28T04:50:50.7078047Z","updatedOn":"2022-07-28T04:50:50.7078047Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da343068-0e30-11ed-91a5-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"da343068-0e30-11ed-91a5-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-28T04:50:53.7664793Z","updatedOn":"2022-07-28T04:50:53.7664793Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dbfbe50a-0e30-11ed-91a5-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"dbfbe50a-0e30-11ed-91a5-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-29T16:16:58.9941922Z","updatedOn":"2022-07-29T16:16:58.9941922Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/880fa390-3bd7-4075-8071-e33e45423e36","type":"Microsoft.Authorization/roleAssignments","name":"880fa390-3bd7-4075-8071-e33e45423e36"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-31T19:34:43.4356237Z","updatedOn":"2022-07-31T19:34:43.4356237Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d352709e-1107-11ed-be9f-beee8f4e086d","type":"Microsoft.Authorization/roleAssignments","name":"d352709e-1107-11ed-be9f-beee8f4e086d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-04T04:49:44.0295503Z","updatedOn":"2022-08-04T04:49:44.0295503Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da803814-13b0-11ed-b124-e2848198df96","type":"Microsoft.Authorization/roleAssignments","name":"da803814-13b0-11ed-b124-e2848198df96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-04T04:49:49.5833937Z","updatedOn":"2022-08-04T04:49:49.5833937Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd76350a-13b0-11ed-b124-e2848198df96","type":"Microsoft.Authorization/roleAssignments","name":"dd76350a-13b0-11ed-b124-e2848198df96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-05T14:15:13.1099119Z","updatedOn":"2022-08-05T14:15:13.1099119Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7a4c8f3-b60c-4341-acdb-3b8d60976116","type":"Microsoft.Authorization/roleAssignments","name":"e7a4c8f3-b60c-4341-acdb-3b8d60976116"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-08T08:55:19.4739379Z","updatedOn":"2022-08-08T08:55:19.4739379Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3f792cd-16f7-11ed-afb5-000d3a0611f6","type":"Microsoft.Authorization/roleAssignments","name":"d3f792cd-16f7-11ed-afb5-000d3a0611f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-08T14:33:12.5245418Z","updatedOn":"2022-08-08T14:33:12.5245418Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0184de3c-04d4-433f-9221-2df571d921a5","type":"Microsoft.Authorization/roleAssignments","name":"0184de3c-04d4-433f-9221-2df571d921a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-08T17:41:09.4113992Z","updatedOn":"2022-08-08T17:41:09.4113992Z","createdBy":"19263705-0667-497e-85e7-a930fa3441ec","updatedBy":"19263705-0667-497e-85e7-a930fa3441ec","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4919e77a-1741-11ed-b6db-0022487d76b7","type":"Microsoft.Authorization/roleAssignments","name":"4919e77a-1741-11ed-b6db-0022487d76b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:45:21.8695164Z","updatedOn":"2022-08-12T05:45:21.8695164Z","createdBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","updatedBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f23b86bb-1a01-11ed-b496-66a3f79a5cd7","type":"Microsoft.Authorization/roleAssignments","name":"f23b86bb-1a01-11ed-b496-66a3f79a5cd7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:45:28.6932347Z","updatedOn":"2022-08-12T05:45:28.6932347Z","createdBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","updatedBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6a0cefb-1a01-11ed-b496-66a3f79a5cd7","type":"Microsoft.Authorization/roleAssignments","name":"f6a0cefb-1a01-11ed-b496-66a3f79a5cd7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:57:08.1910800Z","updatedOn":"2022-08-12T05:57:08.1910800Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/97fa583a-1a03-11ed-8141-0022484c72fc","type":"Microsoft.Authorization/roleAssignments","name":"97fa583a-1a03-11ed-8141-0022484c72fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:57:16.8561530Z","updatedOn":"2022-08-12T05:57:16.8561530Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9bed6f7d-1a03-11ed-8141-0022484c72fc","type":"Microsoft.Authorization/roleAssignments","name":"9bed6f7d-1a03-11ed-8141-0022484c72fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T10:56:06.3724576Z","updatedOn":"2022-08-12T10:56:06.3724576Z","createdBy":"312333b2-b433-4e3c-bb6f-f60419faa168","updatedBy":"312333b2-b433-4e3c-bb6f-f60419faa168","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5da07cdc-1a2d-11ed-97c4-36311d0c4477","type":"Microsoft.Authorization/roleAssignments","name":"5da07cdc-1a2d-11ed-97c4-36311d0c4477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T10:56:12.1781791Z","updatedOn":"2022-08-12T10:56:12.1781791Z","createdBy":"312333b2-b433-4e3c-bb6f-f60419faa168","updatedBy":"312333b2-b433-4e3c-bb6f-f60419faa168","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/60dfcd5b-1a2d-11ed-97c4-36311d0c4477","type":"Microsoft.Authorization/roleAssignments","name":"60dfcd5b-1a2d-11ed-97c4-36311d0c4477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T23:47:07.1823504Z","updatedOn":"2022-08-12T23:47:07.1823504Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12955060-1a99-11ed-80ae-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"12955060-1a99-11ed-80ae-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T23:47:10.3981690Z","updatedOn":"2022-08-12T23:47:10.3981690Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1452bfa0-1a99-11ed-80ae-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"1452bfa0-1a99-11ed-80ae-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-14T04:59:52.9674492Z","updatedOn":"2022-08-14T04:59:52.9674492Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee779146-1b8d-11ed-ad0f-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"ee779146-1b8d-11ed-ad0f-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-14T04:59:57.7071631Z","updatedOn":"2022-08-14T04:59:57.7071631Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f13fa4b3-1b8d-11ed-ad0f-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"f13fa4b3-1b8d-11ed-ad0f-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-16T23:10:44.7176056Z","updatedOn":"2022-08-16T23:10:44.7176056Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1d255e1-0f5e-41c4-93eb-e683b5cf2ca4","type":"Microsoft.Authorization/roleAssignments","name":"f1d255e1-0f5e-41c4-93eb-e683b5cf2ca4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-16T23:31:16.6919768Z","updatedOn":"2022-08-16T23:31:16.6919768Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a45cbdf-008d-4716-96eb-38389a417827","type":"Microsoft.Authorization/roleAssignments","name":"2a45cbdf-008d-4716-96eb-38389a417827"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-18T00:30:35.0176680Z","updatedOn":"2022-08-18T00:30:35.0176680Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f91d7aa2-1e8c-11ed-b1a6-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f91d7aa2-1e8c-11ed-b1a6-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-18T00:30:38.2729005Z","updatedOn":"2022-08-18T00:30:38.2729005Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb0d664c-1e8c-11ed-b1a6-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"fb0d664c-1e8c-11ed-b1a6-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-18T15:52:38.7113712Z","updatedOn":"2022-08-18T15:52:38.7113712Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8772ddf6-c657-4010-ab7b-5d8627ba3601","type":"Microsoft.Authorization/roleAssignments","name":"8772ddf6-c657-4010-ab7b-5d8627ba3601"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-22T02:37:48.0231077Z","updatedOn":"2022-08-22T02:37:48.0231077Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7c56d8ab-b9ef-4d93-ae58-838c1209c621","type":"Microsoft.Authorization/roleAssignments","name":"7c56d8ab-b9ef-4d93-ae58-838c1209c621"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-22T02:41:47.6649206Z","updatedOn":"2022-08-22T02:41:47.6649206Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b66d25d3-0cb1-4413-9445-caf5db5b40c9","type":"Microsoft.Authorization/roleAssignments","name":"b66d25d3-0cb1-4413-9445-caf5db5b40c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-22T06:25:39.4709093Z","updatedOn":"2022-08-22T06:25:39.4709093Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb7ca852-9adb-4205-a828-a17ca774a8a4","type":"Microsoft.Authorization/roleAssignments","name":"eb7ca852-9adb-4205-a828-a17ca774a8a4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T02:16:22.3620594Z","updatedOn":"2022-08-23T02:16:22.3620594Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94556c2e-2289-11ed-9371-000d3ac51247","type":"Microsoft.Authorization/roleAssignments","name":"94556c2e-2289-11ed-9371-000d3ac51247"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T08:56:15.8011348Z","updatedOn":"2022-08-23T08:56:15.8011348Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7117911f-22c1-11ed-be42-000d3a084591","type":"Microsoft.Authorization/roleAssignments","name":"7117911f-22c1-11ed-be42-000d3a084591"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T08:56:21.1375800Z","updatedOn":"2022-08-23T08:56:21.1375800Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/73becf7d-22c1-11ed-be42-000d3a084591","type":"Microsoft.Authorization/roleAssignments","name":"73becf7d-22c1-11ed-be42-000d3a084591"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T14:02:07.2343806Z","updatedOn":"2022-08-23T14:02:07.2343806Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b9bf190-22ec-11ed-8f86-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"2b9bf190-22ec-11ed-8f86-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T14:02:10.9785694Z","updatedOn":"2022-08-23T14:02:10.9785694Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2dd0099d-22ec-11ed-8f86-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"2dd0099d-22ec-11ed-8f86-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T23:22:24.8240339Z","updatedOn":"2022-08-23T23:22:24.8240339Z","createdBy":"395c8203-ec60-4c13-9730-5f960088f92b","updatedBy":"395c8203-ec60-4c13-9730-5f960088f92b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/abda2c2b-daa3-42bb-abbd-e13cec5fb6b3","type":"Microsoft.Authorization/roleAssignments","name":"abda2c2b-daa3-42bb-abbd-e13cec5fb6b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T23:23:32.8133517Z","updatedOn":"2022-08-23T23:23:32.8133517Z","createdBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","updatedBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/994cd0f0-233a-11ed-90e8-66137476d927","type":"Microsoft.Authorization/roleAssignments","name":"994cd0f0-233a-11ed-90e8-66137476d927"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T23:23:35.3751695Z","updatedOn":"2022-08-23T23:23:35.3751695Z","createdBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","updatedBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9add5dfe-233a-11ed-90e8-66137476d927","type":"Microsoft.Authorization/roleAssignments","name":"9add5dfe-233a-11ed-90e8-66137476d927"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-26T02:48:17.4348909Z","updatedOn":"2022-08-26T02:48:17.4348909Z","createdBy":"d297f8cf-3724-4da6-ae0c-6ea639225042","updatedBy":"d297f8cf-3724-4da6-ae0c-6ea639225042","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9125ee0-b9af-4d25-a2e5-886ad210b3e8","type":"Microsoft.Authorization/roleAssignments","name":"e9125ee0-b9af-4d25-a2e5-886ad210b3e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-29T22:08:43.6923850Z","updatedOn":"2022-08-29T22:08:43.6923850Z","createdBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","updatedBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24b2acd4-27e7-11ed-aa57-9eb40d98da7e","type":"Microsoft.Authorization/roleAssignments","name":"24b2acd4-27e7-11ed-aa57-9eb40d98da7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-29T22:08:46.8049719Z","updatedOn":"2022-08-29T22:08:46.8049719Z","createdBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","updatedBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26a4fa7f-27e7-11ed-aa57-9eb40d98da7e","type":"Microsoft.Authorization/roleAssignments","name":"26a4fa7f-27e7-11ed-aa57-9eb40d98da7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-29T22:11:06.3024798Z","updatedOn":"2022-08-29T22:11:06.3024798Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63e0b566-276e-405d-8d4e-1c82b1f937c6","type":"Microsoft.Authorization/roleAssignments","name":"63e0b566-276e-405d-8d4e-1c82b1f937c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:50:53.4210961Z","updatedOn":"2022-08-30T23:50:53.4210961Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94aa5054-28be-11ed-a6d3-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"94aa5054-28be-11ed-a6d3-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:50:57.2039466Z","updatedOn":"2022-08-30T23:50:57.2039466Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96f9353c-28be-11ed-a6d3-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"96f9353c-28be-11ed-a6d3-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:55:18.1665901Z","updatedOn":"2022-08-30T23:55:18.1665901Z","createdBy":"08de6591-dec9-4255-ab17-d6919151fadd","updatedBy":"08de6591-dec9-4255-ab17-d6919151fadd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/32738d64-28bf-11ed-8c18-d28ee6de8df0","type":"Microsoft.Authorization/roleAssignments","name":"32738d64-28bf-11ed-8c18-d28ee6de8df0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:55:21.0832794Z","updatedOn":"2022-08-30T23:55:21.0832794Z","createdBy":"08de6591-dec9-4255-ab17-d6919151fadd","updatedBy":"08de6591-dec9-4255-ab17-d6919151fadd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/347773d2-28bf-11ed-8c18-d28ee6de8df0","type":"Microsoft.Authorization/roleAssignments","name":"347773d2-28bf-11ed-8c18-d28ee6de8df0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-31T23:23:54.3892344Z","updatedOn":"2022-08-31T23:23:54.3892344Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa44d69e-2983-11ed-aa08-92f3f7a6dd9b","type":"Microsoft.Authorization/roleAssignments","name":"fa44d69e-2983-11ed-aa08-92f3f7a6dd9b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-31T23:23:57.6913146Z","updatedOn":"2022-08-31T23:23:57.6913146Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc468884-2983-11ed-aa08-92f3f7a6dd9b","type":"Microsoft.Authorization/roleAssignments","name":"fc468884-2983-11ed-aa08-92f3f7a6dd9b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-01T06:08:41.4708815Z","updatedOn":"2022-09-01T06:08:41.4708815Z","createdBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","updatedBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/86088e13-29bc-11ed-9e75-ee990064eed4","type":"Microsoft.Authorization/roleAssignments","name":"86088e13-29bc-11ed-9e75-ee990064eed4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-01T14:36:10.3068118Z","updatedOn":"2022-09-01T14:36:10.3068118Z","createdBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","updatedBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b6d0b78-2a03-11ed-8b33-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6b6d0b78-2a03-11ed-8b33-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-01T14:36:19.4793808Z","updatedOn":"2022-09-01T14:36:19.4793808Z","createdBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","updatedBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70bc79b0-2a03-11ed-8b33-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"70bc79b0-2a03-11ed-8b33-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-05T20:13:38.7677056Z","updatedOn":"2022-09-05T20:13:38.7677056Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/396cb586-2d57-11ed-8f60-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"396cb586-2d57-11ed-8f60-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-06T19:58:31.4389144Z","updatedOn":"2022-09-06T19:58:31.4389144Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47bb56b5-2e1e-11ed-9020-000d3a6d9a18","type":"Microsoft.Authorization/roleAssignments","name":"47bb56b5-2e1e-11ed-9020-000d3a6d9a18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-06T19:58:35.6283701Z","updatedOn":"2022-09-06T19:58:35.6283701Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a30eda3-2e1e-11ed-9020-000d3a6d9a18","type":"Microsoft.Authorization/roleAssignments","name":"4a30eda3-2e1e-11ed-9020-000d3a6d9a18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-08T14:38:34.2901394Z","updatedOn":"2022-09-08T14:38:34.2901394Z","createdBy":"61a5600d-3609-43e4-9dd8-bcf58e3ce51f","updatedBy":"61a5600d-3609-43e4-9dd8-bcf58e3ce51f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea4dcb49-2f83-11ed-9efa-000d3a181b06","type":"Microsoft.Authorization/roleAssignments","name":"ea4dcb49-2f83-11ed-9efa-000d3a181b06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-08T17:46:08.1384737Z","updatedOn":"2022-09-08T17:46:08.1384737Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1dc95ee4-2f9e-11ed-89d2-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"1dc95ee4-2f9e-11ed-89d2-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-08T17:46:11.6717566Z","updatedOn":"2022-09-08T17:46:11.6717566Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2008f142-2f9e-11ed-89d2-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2008f142-2f9e-11ed-89d2-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-12T23:42:55.7564365Z","updatedOn":"2022-09-12T23:42:55.7564365Z","createdBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","updatedBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fa0c69c-32f4-11ed-aee5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"9fa0c69c-32f4-11ed-aee5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-12T23:43:04.5756788Z","updatedOn":"2022-09-12T23:43:04.5756788Z","createdBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","updatedBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a4e1656c-32f4-11ed-aee5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"a4e1656c-32f4-11ed-aee5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T00:18:28.3312561Z","updatedOn":"2022-09-13T00:18:28.3312561Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/965f9705-32f9-11ed-a03a-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"965f9705-32f9-11ed-a03a-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T00:18:32.9627131Z","updatedOn":"2022-09-13T00:18:32.9627131Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9918693b-32f9-11ed-a03a-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"9918693b-32f9-11ed-a03a-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T05:20:21.8356068Z","updatedOn":"2022-09-13T05:20:21.8356068Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14ac626a-3acb-4867-a3ce-32d85da9a0e7","type":"Microsoft.Authorization/roleAssignments","name":"14ac626a-3acb-4867-a3ce-32d85da9a0e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T20:31:46.8554799Z","updatedOn":"2022-09-13T20:31:46.8554799Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d71c7b8-3398-11ed-ad11-e6ebdcb69945","type":"Microsoft.Authorization/roleAssignments","name":"6d71c7b8-3398-11ed-ad11-e6ebdcb69945"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T20:31:50.1456004Z","updatedOn":"2022-09-13T20:31:50.1456004Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ca65e0f-3398-11ed-ad11-e6ebdcb69945","type":"Microsoft.Authorization/roleAssignments","name":"7ca65e0f-3398-11ed-ad11-e6ebdcb69945"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T23:17:04.2606442Z","updatedOn":"2022-09-13T23:17:04.2606442Z","createdBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","updatedBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ecfc544-bb26-4b57-9c52-7a3751bf5b9a","type":"Microsoft.Authorization/roleAssignments","name":"8ecfc544-bb26-4b57-9c52-7a3751bf5b9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-14T20:11:09.0922785Z","updatedOn":"2022-09-14T20:11:09.0922785Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/43c2f0e6-bf81-4e83-bf98-eb7d592639a5","type":"Microsoft.Authorization/roleAssignments","name":"43c2f0e6-bf81-4e83-bf98-eb7d592639a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-15T17:44:22.3186068Z","updatedOn":"2022-09-15T17:44:22.3186068Z","createdBy":"2182129f-e575-4986-a7fb-2be7772ba46f","updatedBy":"2182129f-e575-4986-a7fb-2be7772ba46f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/05e871b7-351e-11ed-8cc7-32a64839c39d","type":"Microsoft.Authorization/roleAssignments","name":"05e871b7-351e-11ed-8cc7-32a64839c39d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ab4d3d-a1bf-4477-8ad9-8359bc988f69","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-15T22:34:54.1872835Z","updatedOn":"2022-09-15T22:34:54.1872835Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9ac6f9f-a6dc-43e5-bc80-6e362547ff03","type":"Microsoft.Authorization/roleAssignments","name":"a9ac6f9f-a6dc-43e5-bc80-6e362547ff03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-15T22:36:25.6520797Z","updatedOn":"2022-09-15T22:36:25.6520797Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a48452ae-2a7a-4a35-bc22-de46608a8c12","type":"Microsoft.Authorization/roleAssignments","name":"a48452ae-2a7a-4a35-bc22-de46608a8c12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ab4d3d-a1bf-4477-8ad9-8359bc988f69","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-16T03:26:44.5972975Z","updatedOn":"2022-09-16T03:26:44.5972975Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7ddb897-f37b-4617-8b62-26a42b72d0fd","type":"Microsoft.Authorization/roleAssignments","name":"b7ddb897-f37b-4617-8b62-26a42b72d0fd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-16T03:27:20.0290180Z","updatedOn":"2022-09-16T03:27:20.0290180Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36cbdcc8-a70b-42a9-836a-9bb89dbd301a","type":"Microsoft.Authorization/roleAssignments","name":"36cbdcc8-a70b-42a9-836a-9bb89dbd301a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-16T14:21:41.5963217Z","updatedOn":"2022-09-16T14:21:41.5963217Z","createdBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","updatedBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc428d08-6f99-4619-9554-500bfc75b861","type":"Microsoft.Authorization/roleAssignments","name":"bc428d08-6f99-4619-9554-500bfc75b861"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T01:59:15.5981081Z","updatedOn":"2022-09-19T01:59:15.5981081Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a92c46b1-37be-11ed-8745-00224857f2c5","type":"Microsoft.Authorization/roleAssignments","name":"a92c46b1-37be-11ed-8745-00224857f2c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T01:59:20.5513267Z","updatedOn":"2022-09-19T01:59:20.5513267Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac11dbd2-37be-11ed-8745-00224857f2c5","type":"Microsoft.Authorization/roleAssignments","name":"ac11dbd2-37be-11ed-8745-00224857f2c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T09:51:42.7586328Z","updatedOn":"2022-09-19T09:51:42.7586328Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1cb1222d-5cb9-4d4a-a901-850f4a0d08da","type":"Microsoft.Authorization/roleAssignments","name":"1cb1222d-5cb9-4d4a-a901-850f4a0d08da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T18:49:44.8806347Z","updatedOn":"2022-09-19T18:49:44.8806347Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9c6a4b4-714e-45fc-8bc4-11c41f8c306a","type":"Microsoft.Authorization/roleAssignments","name":"b9c6a4b4-714e-45fc-8bc4-11c41f8c306a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T22:48:28.6777206Z","updatedOn":"2022-09-19T22:48:28.6777206Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ea76d8b-9daa-4d62-bfc8-bb9013ecec53","type":"Microsoft.Authorization/roleAssignments","name":"3ea76d8b-9daa-4d62-bfc8-bb9013ecec53"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-20T22:34:06.1765862Z","updatedOn":"2022-09-20T22:34:06.1765862Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/475a9fc4-c1a8-42c7-9e4e-d897c83f2a86","type":"Microsoft.Authorization/roleAssignments","name":"475a9fc4-c1a8-42c7-9e4e-d897c83f2a86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/434105ed-43f6-45c7-a02f-909b2ba83430","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-21T00:11:12.3038110Z","updatedOn":"2022-09-21T00:11:12.3038110Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce3975e8-d43d-4f8c-a315-e20609d7472a","type":"Microsoft.Authorization/roleAssignments","name":"ce3975e8-d43d-4f8c-a315-e20609d7472a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T07:30:57.3801733Z","updatedOn":"2022-09-23T07:30:57.3801733Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7a5ed22-3b11-11ed-876d-1a48d609785e","type":"Microsoft.Authorization/roleAssignments","name":"a7a5ed22-3b11-11ed-876d-1a48d609785e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T14:34:07.2104918Z","updatedOn":"2022-09-23T14:34:07.2104918Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c756e2ff-3b4c-11ed-be28-000d3a9e5815","type":"Microsoft.Authorization/roleAssignments","name":"c756e2ff-3b4c-11ed-be28-000d3a9e5815"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T14:34:10.7191458Z","updatedOn":"2022-09-23T14:34:10.7191458Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c96352a0-3b4c-11ed-be28-000d3a9e5815","type":"Microsoft.Authorization/roleAssignments","name":"c96352a0-3b4c-11ed-be28-000d3a9e5815"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T19:05:01.8468743Z","updatedOn":"2022-09-23T19:05:01.8468743Z","createdBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","updatedBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ecc7527-3b72-11ed-92ab-a642c656be12","type":"Microsoft.Authorization/roleAssignments","name":"9ecc7527-3b72-11ed-92ab-a642c656be12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T21:31:12.8549148Z","updatedOn":"2022-09-23T21:31:12.8549148Z","createdBy":"0fa3313e-2eee-4835-aeff-681e46364ab6","updatedBy":"0fa3313e-2eee-4835-aeff-681e46364ab6","delegatedManagedIdentityResourceId":null,"description":"New + AKS SRE team member"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b79302d-37ad-406c-b32d-cddbd2387781","type":"Microsoft.Authorization/roleAssignments","name":"2b79302d-37ad-406c-b32d-cddbd2387781"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-25T18:15:06.7527496Z","updatedOn":"2022-09-25T18:15:06.7527496Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f83fc539-aab6-4862-8635-cbe5472eadad","type":"Microsoft.Authorization/roleAssignments","name":"f83fc539-aab6-4862-8635-cbe5472eadad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-25T17:34:50.8733023Z","updatedOn":"2023-01-25T17:34:50.8733023Z","createdBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","updatedBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/91a85771-9cd6-11ed-a528-6045bd8532c1","type":"Microsoft.Authorization/roleAssignments","name":"91a85771-9cd6-11ed-a528-6045bd8532c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T19:40:10.2077596Z","updatedOn":"2023-01-26T19:40:10.2077596Z","createdBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","updatedBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3deeb34a-9db1-11ed-9882-bad388e32b6e","type":"Microsoft.Authorization/roleAssignments","name":"3deeb34a-9db1-11ed-9882-bad388e32b6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T19:40:13.9767599Z","updatedOn":"2023-01-26T19:40:13.9767599Z","createdBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","updatedBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/405d87d0-9db1-11ed-9882-bad388e32b6e","type":"Microsoft.Authorization/roleAssignments","name":"405d87d0-9db1-11ed-9882-bad388e32b6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T21:29:38.0736564Z","updatedOn":"2023-01-26T21:29:38.0736564Z","createdBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","updatedBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88db6aa7-9dc0-11ed-873b-02af4457d3da","type":"Microsoft.Authorization/roleAssignments","name":"88db6aa7-9dc0-11ed-873b-02af4457d3da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T21:29:41.9721959Z","updatedOn":"2023-01-26T21:29:41.9721959Z","createdBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","updatedBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8b20c92b-9dc0-11ed-873b-02af4457d3da","type":"Microsoft.Authorization/roleAssignments","name":"8b20c92b-9dc0-11ed-873b-02af4457d3da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-28T06:05:38.5919016Z","updatedOn":"2023-01-28T06:05:38.5919016Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ee0fdb3-65a0-4344-a73d-15f6b92ea58b","type":"Microsoft.Authorization/roleAssignments","name":"7ee0fdb3-65a0-4344-a73d-15f6b92ea58b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-29T03:40:38.5139182Z","updatedOn":"2023-01-29T03:40:38.5139182Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1dec2dc-9f86-11ed-a95c-0022487e65a6","type":"Microsoft.Authorization/roleAssignments","name":"b1dec2dc-9f86-11ed-a95c-0022487e65a6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-30T05:50:30.0380171Z","updatedOn":"2023-01-30T05:50:30.0380171Z","createdBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","updatedBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/792989a2-3985-4915-bf5a-4eb5451f731b","type":"Microsoft.Authorization/roleAssignments","name":"792989a2-3985-4915-bf5a-4eb5451f731b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-30T15:03:46.9770738Z","updatedOn":"2023-01-30T15:03:46.9770738Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a97ceb8-a0af-11ed-bf9c-a8a1598cc0f3","type":"Microsoft.Authorization/roleAssignments","name":"4a97ceb8-a0af-11ed-bf9c-a8a1598cc0f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-31T08:45:32.8563782Z","updatedOn":"2023-01-31T08:45:32.8563782Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ea26baa-a143-11ed-85d1-1eb0db5454d6","type":"Microsoft.Authorization/roleAssignments","name":"9ea26baa-a143-11ed-85d1-1eb0db5454d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-31T09:18:23.0405616Z","updatedOn":"2023-01-31T09:18:23.0405616Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9063ace1-9e8e-4195-82f8-39fe17fca5ce","type":"Microsoft.Authorization/roleAssignments","name":"9063ace1-9e8e-4195-82f8-39fe17fca5ce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-01T08:12:47.9822357Z","updatedOn":"2023-02-01T08:12:47.9822357Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/31c05c6a-a87b-4ad2-a07e-7acaadecb649","type":"Microsoft.Authorization/roleAssignments","name":"31c05c6a-a87b-4ad2-a07e-7acaadecb649"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-01T19:03:12.2207490Z","updatedOn":"2023-02-01T19:03:12.2207490Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/153174d5-a263-11ed-bad7-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"153174d5-a263-11ed-bad7-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-01T19:03:15.7264802Z","updatedOn":"2023-02-01T19:03:15.7264802Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/172f1d82-a263-11ed-bad7-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"172f1d82-a263-11ed-bad7-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-02T03:13:38.6056072Z","updatedOn":"2023-02-02T03:13:38.6056072Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88d8d974-d77d-450f-89ee-d4a98efea6d8","type":"Microsoft.Authorization/roleAssignments","name":"88d8d974-d77d-450f-89ee-d4a98efea6d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-02T03:19:55.3070568Z","updatedOn":"2023-02-02T03:19:55.3070568Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f273f651-5bde-4219-ab11-33842c5d3224","type":"Microsoft.Authorization/roleAssignments","name":"f273f651-5bde-4219-ab11-33842c5d3224"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-02T09:43:41.0210838Z","updatedOn":"2023-02-02T09:43:41.0210838Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2e9d149-730b-447b-b3e8-3a1fff80f1e1","type":"Microsoft.Authorization/roleAssignments","name":"b2e9d149-730b-447b-b3e8-3a1fff80f1e1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-03T18:49:50.9127720Z","updatedOn":"2023-02-03T18:49:50.9127720Z","createdBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","updatedBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8984621e-a3f3-11ed-b23c-a08cfdd89f0d","type":"Microsoft.Authorization/roleAssignments","name":"8984621e-a3f3-11ed-b23c-a08cfdd89f0d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-03T18:49:55.4277284Z","updatedOn":"2023-02-03T18:49:55.4277284Z","createdBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","updatedBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c3308b8-a3f3-11ed-b23c-a08cfdd89f0d","type":"Microsoft.Authorization/roleAssignments","name":"8c3308b8-a3f3-11ed-b23c-a08cfdd89f0d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-03T21:54:32.5272557Z","updatedOn":"2023-02-03T21:54:32.5272557Z","createdBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","updatedBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5650998f-a40d-11ed-8cfd-763d1fcabad1","type":"Microsoft.Authorization/roleAssignments","name":"5650998f-a40d-11ed-8cfd-763d1fcabad1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-06T16:05:18.7158859Z","updatedOn":"2023-02-06T16:05:18.7158859Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b2a1bdc-a638-11ed-b0e4-de5d54961c0d","type":"Microsoft.Authorization/roleAssignments","name":"0b2a1bdc-a638-11ed-b0e4-de5d54961c0d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-06T21:22:16.0685608Z","updatedOn":"2023-02-06T21:22:16.0685608Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5372f2e2-a664-11ed-99dd-00155d7b2003","type":"Microsoft.Authorization/roleAssignments","name":"5372f2e2-a664-11ed-99dd-00155d7b2003"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T02:31:53.1943940Z","updatedOn":"2023-02-07T02:31:53.1943940Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/93d9ca8e-a68f-11ed-99fe-82539686faad","type":"Microsoft.Authorization/roleAssignments","name":"93d9ca8e-a68f-11ed-99fe-82539686faad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T17:35:09.5804790Z","updatedOn":"2023-02-07T17:35:09.5804790Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c423996c-a70d-11ed-805e-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"c423996c-a70d-11ed-805e-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T21:59:01.9278864Z","updatedOn":"2023-02-07T21:59:01.9278864Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/415eb8ac-2243-415a-8a6a-692cfd82054b","type":"Microsoft.Authorization/roleAssignments","name":"415eb8ac-2243-415a-8a6a-692cfd82054b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T23:07:32.1844748Z","updatedOn":"2023-02-07T23:07:32.1844748Z","createdBy":"bd73a081-fc57-4d58-adb0-f7b098797225","updatedBy":"bd73a081-fc57-4d58-adb0-f7b098797225","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/32edd9f4-a73c-11ed-a351-64d69a01bd73","type":"Microsoft.Authorization/roleAssignments","name":"32edd9f4-a73c-11ed-a351-64d69a01bd73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T23:07:37.2690514Z","updatedOn":"2023-02-07T23:07:37.2690514Z","createdBy":"bd73a081-fc57-4d58-adb0-f7b098797225","updatedBy":"bd73a081-fc57-4d58-adb0-f7b098797225","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3567b721-a73c-11ed-a351-64d69a01bd73","type":"Microsoft.Authorization/roleAssignments","name":"3567b721-a73c-11ed-a351-64d69a01bd73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T16:04:37.2489661Z","updatedOn":"2023-02-08T16:04:37.2489661Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4891c61c-a7ca-11ed-926c-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"4891c61c-a7ca-11ed-926c-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T19:28:37.4403950Z","updatedOn":"2023-02-08T19:28:37.4403950Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7017b0f-925c-43b0-9416-6eb60d8374e3","type":"Microsoft.Authorization/roleAssignments","name":"a7017b0f-925c-43b0-9416-6eb60d8374e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T19:42:35.5124742Z","updatedOn":"2023-02-08T19:42:35.5124742Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd059c37-a7e8-11ed-8d91-7e3b8160807d","type":"Microsoft.Authorization/roleAssignments","name":"bd059c37-a7e8-11ed-8d91-7e3b8160807d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T19:42:39.7153998Z","updatedOn":"2023-02-08T19:42:39.7153998Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf728611-a7e8-11ed-8d91-7e3b8160807d","type":"Microsoft.Authorization/roleAssignments","name":"bf728611-a7e8-11ed-8d91-7e3b8160807d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T22:45:32.7092683Z","updatedOn":"2023-02-08T22:45:32.7092683Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c82f6230-4661-4b60-9ae4-cbd24bc5971d","type":"Microsoft.Authorization/roleAssignments","name":"c82f6230-4661-4b60-9ae4-cbd24bc5971d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T23:38:55.4476717Z","updatedOn":"2023-02-08T23:38:55.4476717Z","createdBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","updatedBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b563f5e3-a809-11ed-92da-061e1dff6519","type":"Microsoft.Authorization/roleAssignments","name":"b563f5e3-a809-11ed-92da-061e1dff6519"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T17:18:01.5061195Z","updatedOn":"2023-02-09T17:18:01.5061195Z","createdBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","updatedBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b477f0fa-a89d-11ed-9d1f-4e375b705c86","type":"Microsoft.Authorization/roleAssignments","name":"b477f0fa-a89d-11ed-9d1f-4e375b705c86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T17:18:03.2471424Z","updatedOn":"2023-02-09T17:18:03.2471424Z","createdBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","updatedBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b58085bc-a89d-11ed-9d1f-4e375b705c86","type":"Microsoft.Authorization/roleAssignments","name":"b58085bc-a89d-11ed-9d1f-4e375b705c86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T18:21:34.0931358Z","updatedOn":"2023-02-09T18:21:34.0931358Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5fe27fe4-6007-4829-afa0-0a3e3780b6d3","type":"Microsoft.Authorization/roleAssignments","name":"5fe27fe4-6007-4829-afa0-0a3e3780b6d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T21:44:30.2729026Z","updatedOn":"2023-02-09T21:44:30.2729026Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eecd187f-a8c2-11ed-9284-1e4dbb47ca8f","type":"Microsoft.Authorization/roleAssignments","name":"eecd187f-a8c2-11ed-9284-1e4dbb47ca8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T21:44:36.9652403Z","updatedOn":"2023-02-09T21:44:36.9652403Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f27e86e2-a8c2-11ed-9284-1e4dbb47ca8f","type":"Microsoft.Authorization/roleAssignments","name":"f27e86e2-a8c2-11ed-9284-1e4dbb47ca8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T01:19:04.3719723Z","updatedOn":"2023-02-10T01:19:04.3719723Z","createdBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","updatedBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d5cdb0f-1b3b-46f9-8e1b-84661382dfe9","type":"Microsoft.Authorization/roleAssignments","name":"0d5cdb0f-1b3b-46f9-8e1b-84661382dfe9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T22:39:09.0776574Z","updatedOn":"2023-02-10T22:39:09.0776574Z","createdBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","updatedBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb3a8a84-a993-11ed-a433-00155df41803","type":"Microsoft.Authorization/roleAssignments","name":"bb3a8a84-a993-11ed-a433-00155df41803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T22:39:12.9098417Z","updatedOn":"2023-02-10T22:39:12.9098417Z","createdBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","updatedBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd7f173a-a993-11ed-a433-00155df41803","type":"Microsoft.Authorization/roleAssignments","name":"bd7f173a-a993-11ed-a433-00155df41803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e3c35f4c-e0ca-4b9e-a01e-5ebdd17e2ee7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-13T07:08:28.2729144Z","updatedOn":"2023-02-13T07:08:28.2729144Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bba123f0-e027-47b5-9f46-15320b0d6ea2","type":"Microsoft.Authorization/roleAssignments","name":"bba123f0-e027-47b5-9f46-15320b0d6ea2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-13T20:30:01.2193678Z","updatedOn":"2023-02-13T20:30:01.2193678Z","createdBy":"40db9032-6efa-443b-a2df-6b0c1d107875","updatedBy":"40db9032-6efa-443b-a2df-6b0c1d107875","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f3b7710-abdd-11ed-8e93-42746b8cdccc","type":"Microsoft.Authorization/roleAssignments","name":"2f3b7710-abdd-11ed-8e93-42746b8cdccc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-13T20:30:05.9299217Z","updatedOn":"2023-02-13T20:30:05.9299217Z","createdBy":"40db9032-6efa-443b-a2df-6b0c1d107875","updatedBy":"40db9032-6efa-443b-a2df-6b0c1d107875","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/321b80cb-abdd-11ed-8e93-42746b8cdccc","type":"Microsoft.Authorization/roleAssignments","name":"321b80cb-abdd-11ed-8e93-42746b8cdccc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-14T20:20:30.1688349Z","updatedOn":"2023-02-14T20:20:30.1688349Z","createdBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","updatedBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/06359457-aca5-11ed-82a6-00155df41803","type":"Microsoft.Authorization/roleAssignments","name":"06359457-aca5-11ed-82a6-00155df41803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T01:37:21.5709630Z","updatedOn":"2023-02-15T01:37:21.5709630Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a7e1874-acd1-11ed-8639-d691c85c3a02","type":"Microsoft.Authorization/roleAssignments","name":"4a7e1874-acd1-11ed-8639-d691c85c3a02"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T09:59:56.7546952Z","updatedOn":"2023-02-15T09:59:56.7546952Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7fa783e6-ad17-11ed-97ee-000d3a9be92a","type":"Microsoft.Authorization/roleAssignments","name":"7fa783e6-ad17-11ed-97ee-000d3a9be92a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T10:00:02.7311424Z","updatedOn":"2023-02-15T10:00:02.7311424Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/836897a6-ad17-11ed-97ee-000d3a9be92a","type":"Microsoft.Authorization/roleAssignments","name":"836897a6-ad17-11ed-97ee-000d3a9be92a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T16:38:42.0341267Z","updatedOn":"2023-02-15T16:38:42.0341267Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3476476d-ad4f-11ed-8fa2-000d3a984fd4","type":"Microsoft.Authorization/roleAssignments","name":"3476476d-ad4f-11ed-8fa2-000d3a984fd4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T16:38:46.6959293Z","updatedOn":"2023-02-15T16:38:46.6959293Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/375326e5-ad4f-11ed-8fa2-000d3a984fd4","type":"Microsoft.Authorization/roleAssignments","name":"375326e5-ad4f-11ed-8fa2-000d3a984fd4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-17T06:21:34.8976862Z","updatedOn":"2023-02-17T06:21:34.8976862Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/52c15699-ae8b-11ed-b14e-023ef88171a7","type":"Microsoft.Authorization/roleAssignments","name":"52c15699-ae8b-11ed-b14e-023ef88171a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-19T02:02:00.9378377Z","updatedOn":"2023-02-19T02:02:00.9378377Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63ae64e6-aff9-11ed-967a-968963402bc6","type":"Microsoft.Authorization/roleAssignments","name":"63ae64e6-aff9-11ed-967a-968963402bc6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-19T02:02:05.4821651Z","updatedOn":"2023-02-19T02:02:05.4821651Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66639a26-aff9-11ed-967a-968963402bc6","type":"Microsoft.Authorization/roleAssignments","name":"66639a26-aff9-11ed-967a-968963402bc6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T09:22:38.4725256Z","updatedOn":"2023-02-21T09:22:38.4725256Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/48461efc-b1c9-11ed-bd41-3ed144e41689","type":"Microsoft.Authorization/roleAssignments","name":"48461efc-b1c9-11ed-bd41-3ed144e41689"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T09:22:42.2363452Z","updatedOn":"2023-02-21T09:22:42.2363452Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a784b6e-b1c9-11ed-bd41-3ed144e41689","type":"Microsoft.Authorization/roleAssignments","name":"4a784b6e-b1c9-11ed-bd41-3ed144e41689"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-23T03:00:31.5651965Z","updatedOn":"2023-02-23T03:00:31.5651965Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cef217b-a8cc-4115-a4bd-042af84325dc","type":"Microsoft.Authorization/roleAssignments","name":"3cef217b-a8cc-4115-a4bd-042af84325dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-23T06:48:16.8637402Z","updatedOn":"2023-02-23T06:48:16.8637402Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0c91daf6-b346-11ed-a964-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"0c91daf6-b346-11ed-a964-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-23T06:48:21.4826289Z","updatedOn":"2023-02-23T06:48:21.4826289Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f55d0c9-b346-11ed-a964-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"0f55d0c9-b346-11ed-a964-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T00:54:23.0966101Z","updatedOn":"2023-02-24T00:54:23.0966101Z","createdBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","updatedBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6e6a721-b3dd-11ed-b60f-0022481da32e","type":"Microsoft.Authorization/roleAssignments","name":"c6e6a721-b3dd-11ed-b60f-0022481da32e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T00:54:31.9826815Z","updatedOn":"2023-02-24T00:54:31.9826815Z","createdBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","updatedBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc3f3b4e-b3dd-11ed-b60f-0022481da32e","type":"Microsoft.Authorization/roleAssignments","name":"cc3f3b4e-b3dd-11ed-b60f-0022481da32e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T02:50:23.5663680Z","updatedOn":"2023-02-24T02:50:23.5663680Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb698872-b3ed-11ed-8f76-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"fb698872-b3ed-11ed-8f76-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T04:50:44.0913238Z","updatedOn":"2023-02-24T04:50:44.0913238Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cb72426d-4967-427c-8cf6-c167bc26814f","type":"Microsoft.Authorization/roleAssignments","name":"cb72426d-4967-427c-8cf6-c167bc26814f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T23:34:22.8669116Z","updatedOn":"2023-02-24T23:34:22.8669116Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3e6258b-b49b-11ed-90ef-000d3a0168de","type":"Microsoft.Authorization/roleAssignments","name":"c3e6258b-b49b-11ed-90ef-000d3a0168de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T23:34:26.7176031Z","updatedOn":"2023-02-24T23:34:26.7176031Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6438a56-b49b-11ed-90ef-000d3a0168de","type":"Microsoft.Authorization/roleAssignments","name":"c6438a56-b49b-11ed-90ef-000d3a0168de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-27T04:38:09.3994350Z","updatedOn":"2023-02-27T04:38:09.3994350Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b58ab305-83cc-4c4e-924b-3c1ba8ffcb83","type":"Microsoft.Authorization/roleAssignments","name":"b58ab305-83cc-4c4e-924b-3c1ba8ffcb83"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-27T04:38:09.8212573Z","updatedOn":"2023-02-27T04:38:09.8212573Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45883a93-4807-4bb9-a2b3-a7163d6c2031","type":"Microsoft.Authorization/roleAssignments","name":"45883a93-4807-4bb9-a2b3-a7163d6c2031"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T04:01:45.4038947Z","updatedOn":"2023-02-28T04:01:45.4038947Z","createdBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","updatedBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9d7a9b0f-b71c-11ed-b33b-6045bd7c1155","type":"Microsoft.Authorization/roleAssignments","name":"9d7a9b0f-b71c-11ed-b33b-6045bd7c1155"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T06:57:12.2026246Z","updatedOn":"2023-02-28T06:57:12.2026246Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1f6f0732-b735-11ed-be49-962abdd2f2a3","type":"Microsoft.Authorization/roleAssignments","name":"1f6f0732-b735-11ed-be49-962abdd2f2a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T15:32:52.3533623Z","updatedOn":"2023-02-28T15:32:52.3533623Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28e54510-b77d-11ed-bcc0-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"28e54510-b77d-11ed-bcc0-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T17:34:23.5106370Z","updatedOn":"2023-02-28T17:34:23.5106370Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/22f4b3a0-b78e-11ed-8898-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"22f4b3a0-b78e-11ed-8898-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T18:16:58.6154652Z","updatedOn":"2023-02-28T18:16:58.6154652Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15c84290-b794-11ed-ba68-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"15c84290-b794-11ed-ba68-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T19:50:58.1867864Z","updatedOn":"2023-03-01T19:50:58.1867864Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61f54236-b86a-11ed-96f5-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"61f54236-b86a-11ed-96f5-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T22:21:34.1000877Z","updatedOn":"2023-03-01T22:21:34.1000877Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b7ce6fa-b87f-11ed-858b-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"6b7ce6fa-b87f-11ed-858b-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T22:45:09.8437635Z","updatedOn":"2023-03-01T22:45:09.8437635Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7b17d80-b882-11ed-a5f7-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"b7b17d80-b882-11ed-a5f7-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T23:11:15.0259743Z","updatedOn":"2023-03-01T23:11:15.0259743Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5c9278f6-b886-11ed-83fe-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"5c9278f6-b886-11ed-83fe-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T06:31:28.5537789Z","updatedOn":"2023-03-02T06:31:28.5537789Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d301d940-45f5-4242-8a04-8ce059ee9054","type":"Microsoft.Authorization/roleAssignments","name":"d301d940-45f5-4242-8a04-8ce059ee9054"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T16:54:46.5495446Z","updatedOn":"2023-03-02T16:54:46.5495446Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef382e78-b91a-11ed-8fc9-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"ef382e78-b91a-11ed-8fc9-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T18:09:39.0923025Z","updatedOn":"2023-03-02T18:09:39.0923025Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65561192-b925-11ed-8582-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"65561192-b925-11ed-8582-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T18:09:44.0481916Z","updatedOn":"2023-03-02T18:09:44.0481916Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/68443e92-b925-11ed-8582-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"68443e92-b925-11ed-8582-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T20:44:44.0250379Z","updatedOn":"2023-03-02T20:44:44.0250379Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f118b20-b93b-11ed-9771-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"0f118b20-b93b-11ed-9771-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T21:25:21.6836921Z","updatedOn":"2023-03-02T21:25:21.6836921Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb99eb4e-b940-11ed-b11e-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"bb99eb4e-b940-11ed-b11e-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T22:13:06.5481097Z","updatedOn":"2023-03-02T22:13:06.5481097Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/671c9222-b947-11ed-bf55-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"671c9222-b947-11ed-bf55-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T23:21:53.5068345Z","updatedOn":"2023-03-02T23:21:53.5068345Z","createdBy":"6a70a9ce-9405-4447-867c-92746716ef5a","updatedBy":"6a70a9ce-9405-4447-867c-92746716ef5a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/03b3dac0-b951-11ed-a3db-5e7d78be13fb","type":"Microsoft.Authorization/roleAssignments","name":"03b3dac0-b951-11ed-a3db-5e7d78be13fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T23:21:58.2602277Z","updatedOn":"2023-03-02T23:21:58.2602277Z","createdBy":"6a70a9ce-9405-4447-867c-92746716ef5a","updatedBy":"6a70a9ce-9405-4447-867c-92746716ef5a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/06a1f991-b951-11ed-a3db-5e7d78be13fb","type":"Microsoft.Authorization/roleAssignments","name":"06a1f991-b951-11ed-a3db-5e7d78be13fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-03T08:24:31.2215832Z","updatedOn":"2023-03-03T08:24:31.2215832Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c439d06c-2e66-4cbc-9c42-f2e962b394a9","type":"Microsoft.Authorization/roleAssignments","name":"c439d06c-2e66-4cbc-9c42-f2e962b394a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-03T08:25:05.4966158Z","updatedOn":"2023-03-03T08:25:05.4966158Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12c86535-6761-4402-a871-c5ed84a4b236","type":"Microsoft.Authorization/roleAssignments","name":"12c86535-6761-4402-a871-c5ed84a4b236"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-06T23:11:36.9481730Z","updatedOn":"2023-03-06T23:11:36.9481730Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d91d90a-bc74-11ed-a26b-66106f6e7480","type":"Microsoft.Authorization/roleAssignments","name":"3d91d90a-bc74-11ed-a26b-66106f6e7480"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-07T11:10:24.3937430Z","updatedOn":"2023-03-07T11:10:24.3937430Z","createdBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","updatedBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a74aed5f-bcd8-11ed-9f36-2636f0255870","type":"Microsoft.Authorization/roleAssignments","name":"a74aed5f-bcd8-11ed-9f36-2636f0255870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-07T11:10:29.5524963Z","updatedOn":"2023-03-07T11:10:29.5524963Z","createdBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","updatedBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa4ebe62-bcd8-11ed-9f36-2636f0255870","type":"Microsoft.Authorization/roleAssignments","name":"aa4ebe62-bcd8-11ed-9f36-2636f0255870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-08T19:24:26.7238172Z","updatedOn":"2023-03-08T19:24:26.7238172Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d65c4fee-bde6-11ed-8e54-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"d65c4fee-bde6-11ed-8e54-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-08T19:24:31.6398973Z","updatedOn":"2023-03-08T19:24:31.6398973Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d90a67f8-bde6-11ed-8e54-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"d90a67f8-bde6-11ed-8e54-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-08T20:06:19.9493503Z","updatedOn":"2023-03-08T20:06:19.9493503Z","createdBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","updatedBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0af95de-bdec-11ed-9669-3e22fb431907","type":"Microsoft.Authorization/roleAssignments","name":"b0af95de-bdec-11ed-9669-3e22fb431907"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-09T01:58:48.5122241Z","updatedOn":"2023-03-09T01:58:48.5122241Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee1bd122-be1d-11ed-a53c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"ee1bd122-be1d-11ed-a53c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-09T17:44:00.7209931Z","updatedOn":"2023-03-09T17:44:00.7209931Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f932fb60-bea1-11ed-afcf-6e3850888c7e","type":"Microsoft.Authorization/roleAssignments","name":"f932fb60-bea1-11ed-afcf-6e3850888c7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-10T08:26:27.9057589Z","updatedOn":"2023-03-10T08:26:27.9057589Z","createdBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","updatedBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f911d1d-bf1d-11ed-a236-002248824659","type":"Microsoft.Authorization/roleAssignments","name":"3f911d1d-bf1d-11ed-a236-002248824659"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-10T08:26:33.2539857Z","updatedOn":"2023-03-10T08:26:33.2539857Z","createdBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","updatedBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42d7f7e6-bf1d-11ed-a236-002248824659","type":"Microsoft.Authorization/roleAssignments","name":"42d7f7e6-bf1d-11ed-a236-002248824659"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-11T05:53:49.4765844Z","updatedOn":"2023-03-11T05:53:49.4765844Z","createdBy":"d378d978-a2b7-46cf-b57b-1e586d281118","updatedBy":"d378d978-a2b7-46cf-b57b-1e586d281118","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/179b8d2a-bfd1-11ed-bd9a-3c52827953b3","type":"Microsoft.Authorization/roleAssignments","name":"179b8d2a-bfd1-11ed-bd9a-3c52827953b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-11T05:53:53.6955891Z","updatedOn":"2023-03-11T05:53:53.6955891Z","createdBy":"d378d978-a2b7-46cf-b57b-1e586d281118","updatedBy":"d378d978-a2b7-46cf-b57b-1e586d281118","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1a1e6965-bfd1-11ed-bd9a-3c52827953b3","type":"Microsoft.Authorization/roleAssignments","name":"1a1e6965-bfd1-11ed-bd9a-3c52827953b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T06:33:26.4594910Z","updatedOn":"2023-03-13T06:33:26.4594910Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b03e0140-e53e-491a-9a7b-e179fa1b8a7b","type":"Microsoft.Authorization/roleAssignments","name":"b03e0140-e53e-491a-9a7b-e179fa1b8a7b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T12:12:33.0193279Z","updatedOn":"2023-03-13T12:12:33.0193279Z","createdBy":"559c030a-5305-402e-ab3c-018e8b685492","updatedBy":"559c030a-5305-402e-ab3c-018e8b685492","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54e258e9-c198-11ed-8db5-be30b45d791c","type":"Microsoft.Authorization/roleAssignments","name":"54e258e9-c198-11ed-8db5-be30b45d791c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T12:12:36.9894487Z","updatedOn":"2023-03-13T12:12:36.9894487Z","createdBy":"559c030a-5305-402e-ab3c-018e8b685492","updatedBy":"559c030a-5305-402e-ab3c-018e8b685492","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/575c39c1-c198-11ed-8db5-be30b45d791c","type":"Microsoft.Authorization/roleAssignments","name":"575c39c1-c198-11ed-8db5-be30b45d791c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-14T18:19:52.2457482Z","updatedOn":"2023-03-14T18:19:52.2457482Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf500684-c294-11ed-aaa3-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"cf500684-c294-11ed-aaa3-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-15T17:17:49.1398598Z","updatedOn":"2023-03-15T17:17:49.1398598Z","createdBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","updatedBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4edbdd66-c355-11ed-8966-d85ed302bf1b","type":"Microsoft.Authorization/roleAssignments","name":"4edbdd66-c355-11ed-8966-d85ed302bf1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-16T00:14:24.3742157Z","updatedOn":"2023-03-16T00:14:24.3742157Z","createdBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","updatedBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7f7be49f-c38f-11ed-ba47-9e7a3e847acb","type":"Microsoft.Authorization/roleAssignments","name":"7f7be49f-c38f-11ed-ba47-9e7a3e847acb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-16T00:14:28.4721252Z","updatedOn":"2023-03-16T00:14:28.4721252Z","createdBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","updatedBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81c01cec-c38f-11ed-ba47-9e7a3e847acb","type":"Microsoft.Authorization/roleAssignments","name":"81c01cec-c38f-11ed-ba47-9e7a3e847acb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-20T06:05:05.2225187Z","updatedOn":"2023-03-20T06:05:05.2225187Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/27de0b5c-c6e5-11ed-8082-0ab78cd2e1ba","type":"Microsoft.Authorization/roleAssignments","name":"27de0b5c-c6e5-11ed-8082-0ab78cd2e1ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-20T19:31:51.9736494Z","updatedOn":"2023-03-20T19:31:51.9736494Z","createdBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","updatedBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dbc8c438-c755-11ed-8659-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"dbc8c438-c755-11ed-8659-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-20T19:31:55.5444616Z","updatedOn":"2023-03-20T19:31:55.5444616Z","createdBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","updatedBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e111eebf-c755-11ed-8659-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"e111eebf-c755-11ed-8659-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T07:50:31.4771973Z","updatedOn":"2023-03-21T07:50:31.4771973Z","createdBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","updatedBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c95fead-0a2b-4d52-a17d-1d3d17997871","type":"Microsoft.Authorization/roleAssignments","name":"6c95fead-0a2b-4d52-a17d-1d3d17997871"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T08:30:33.5552284Z","updatedOn":"2023-03-21T08:30:33.5552284Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a54293b5-c7c2-11ed-a7e6-000d3a044b73","type":"Microsoft.Authorization/roleAssignments","name":"a54293b5-c7c2-11ed-a7e6-000d3a044b73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T19:10:41.8785727Z","updatedOn":"2023-03-21T19:10:41.8785727Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12487a5a-c81c-11ed-ba46-827f6562cca2","type":"Microsoft.Authorization/roleAssignments","name":"12487a5a-c81c-11ed-ba46-827f6562cca2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T19:10:47.3524534Z","updatedOn":"2023-03-21T19:10:47.3524534Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15881bc6-c81c-11ed-ba46-827f6562cca2","type":"Microsoft.Authorization/roleAssignments","name":"15881bc6-c81c-11ed-ba46-827f6562cca2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-23T04:37:57.4678727Z","updatedOn":"2023-03-23T04:37:57.4678727Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b934178-c934-11ed-b9f7-6045bd80c6e6","type":"Microsoft.Authorization/roleAssignments","name":"7b934178-c934-11ed-b9f7-6045bd80c6e6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-27T05:50:19.8871681Z","updatedOn":"2023-03-27T05:50:19.8871681Z","createdBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","updatedBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/410882d1-cc63-11ed-ae41-0022480f1f08","type":"Microsoft.Authorization/roleAssignments","name":"410882d1-cc63-11ed-ae41-0022480f1f08"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-27T05:50:25.6681144Z","updatedOn":"2023-03-27T05:50:25.6681144Z","createdBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","updatedBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/441bda3a-cc63-11ed-ae41-0022480f1f08","type":"Microsoft.Authorization/roleAssignments","name":"441bda3a-cc63-11ed-ae41-0022480f1f08"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d24ecba3-c1f4-40fa-a7bb-4588a071e8fd","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:06.6052430Z","updatedOn":"2023-03-28T04:20:06.6052430Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/407210a5-bc55-40fb-91a9-92aa082cb413","type":"Microsoft.Authorization/roleAssignments","name":"407210a5-bc55-40fb-91a9-92aa082cb413"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:10.8566627Z","updatedOn":"2023-03-28T04:20:10.8566627Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24f5047d-db77-4702-ffab-aa7c979ea3ff","type":"Microsoft.Authorization/roleAssignments","name":"24f5047d-db77-4702-ffab-aa7c979ea3ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:10.9115871Z","updatedOn":"2023-03-28T04:20:10.9115871Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/58df4b89-0de1-4d34-1767-ac1e33e9acd8","type":"Microsoft.Authorization/roleAssignments","name":"58df4b89-0de1-4d34-1767-ac1e33e9acd8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.4495061Z","updatedOn":"2023-03-28T04:20:11.4495061Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a454de4-a1dc-4273-f384-029257fe5c7f","type":"Microsoft.Authorization/roleAssignments","name":"4a454de4-a1dc-4273-f384-029257fe5c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.2724262Z","updatedOn":"2023-03-28T04:20:11.2724262Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd662e52-e7fa-4eeb-5755-696d2e8169b9","type":"Microsoft.Authorization/roleAssignments","name":"cd662e52-e7fa-4eeb-5755-696d2e8169b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.4717540Z","updatedOn":"2023-03-28T04:20:11.4717540Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4680d2be-be84-417b-d222-07880110ada0","type":"Microsoft.Authorization/roleAssignments","name":"4680d2be-be84-417b-d222-07880110ada0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.5533314Z","updatedOn":"2023-03-28T04:20:11.5533314Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28dadd85-c2a5-420f-1563-a6ec9d26fd9a","type":"Microsoft.Authorization/roleAssignments","name":"28dadd85-c2a5-420f-1563-a6ec9d26fd9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.5554589Z","updatedOn":"2023-03-28T04:20:11.5554589Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d1872322-4fde-43f5-e2b4-325dda9f40ad","type":"Microsoft.Authorization/roleAssignments","name":"d1872322-4fde-43f5-e2b4-325dda9f40ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.8299726Z","updatedOn":"2023-03-28T04:20:11.8299726Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ede81bb8-d3cd-4dc8-0fd3-b0a2a5a42b23","type":"Microsoft.Authorization/roleAssignments","name":"ede81bb8-d3cd-4dc8-0fd3-b0a2a5a42b23"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T14:40:42.0514829Z","updatedOn":"2023-03-29T14:40:42.0514829Z","createdBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","updatedBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ae019e96-ce3f-11ed-aa9b-000d3a142c7f","type":"Microsoft.Authorization/roleAssignments","name":"ae019e96-ce3f-11ed-aa9b-000d3a142c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T14:40:45.8687684Z","updatedOn":"2023-03-29T14:40:45.8687684Z","createdBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","updatedBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0540ef4-ce3f-11ed-aa9b-000d3a142c7f","type":"Microsoft.Authorization/roleAssignments","name":"b0540ef4-ce3f-11ed-aa9b-000d3a142c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T17:23:15.2268767Z","updatedOn":"2023-03-29T17:23:15.2268767Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/636243ad-ce56-11ed-9744-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"636243ad-ce56-11ed-9744-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T17:23:18.8739735Z","updatedOn":"2023-03-29T17:23:18.8739735Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6586219c-ce56-11ed-9744-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"6586219c-ce56-11ed-9744-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T19:32:39.0885013Z","updatedOn":"2023-03-29T19:32:39.0885013Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/76c41cef-ce68-11ed-b18b-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"76c41cef-ce68-11ed-b18b-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T19:32:43.3448308Z","updatedOn":"2023-03-29T19:32:43.3448308Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/793f1b95-ce68-11ed-b18b-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"793f1b95-ce68-11ed-b18b-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T02:24:05.4290067Z","updatedOn":"2023-03-31T02:24:05.4290067Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1ad6198a-cf6b-11ed-8440-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"1ad6198a-cf6b-11ed-8440-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T02:24:09.9883076Z","updatedOn":"2023-03-31T02:24:09.9883076Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1dd45f87-cf6b-11ed-8440-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"1dd45f87-cf6b-11ed-8440-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T07:26:15.0154750Z","updatedOn":"2023-03-31T07:26:15.0154750Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/babc263e-1cc9-429d-babf-2b33c8e79093","type":"Microsoft.Authorization/roleAssignments","name":"babc263e-1cc9-429d-babf-2b33c8e79093"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T07:44:54.6073153Z","updatedOn":"2023-03-31T07:44:54.6073153Z","createdBy":"2996d4bf-d495-49f2-a2cd-8d684c724185","updatedBy":"2996d4bf-d495-49f2-a2cd-8d684c724185","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/828df835-2536-4c50-9397-90aabf94db75","type":"Microsoft.Authorization/roleAssignments","name":"828df835-2536-4c50-9397-90aabf94db75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T19:06:47.3414876Z","updatedOn":"2023-03-31T19:06:47.3414876Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2ea3ab94-cff7-11ed-b393-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"2ea3ab94-cff7-11ed-b393-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T19:08:21.6870221Z","updatedOn":"2023-03-31T19:08:21.6870221Z","createdBy":"367712bd-8587-45ef-9e63-1d269a194d53","updatedBy":"367712bd-8587-45ef-9e63-1d269a194d53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66e7009d-cff7-11ed-a7d9-002248a7a68e","type":"Microsoft.Authorization/roleAssignments","name":"66e7009d-cff7-11ed-a7d9-002248a7a68e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T19:08:26.3035343Z","updatedOn":"2023-03-31T19:08:26.3035343Z","createdBy":"367712bd-8587-45ef-9e63-1d269a194d53","updatedBy":"367712bd-8587-45ef-9e63-1d269a194d53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/69a1dd2e-cff7-11ed-a7d9-002248a7a68e","type":"Microsoft.Authorization/roleAssignments","name":"69a1dd2e-cff7-11ed-a7d9-002248a7a68e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-02T04:28:12.7151802Z","updatedOn":"2023-04-02T04:28:12.7151802Z","createdBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","updatedBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c7830a5d-d10e-11ed-a622-f24a877c1ab5","type":"Microsoft.Authorization/roleAssignments","name":"c7830a5d-d10e-11ed-a622-f24a877c1ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-02T04:28:15.3112141Z","updatedOn":"2023-04-02T04:28:15.3112141Z","createdBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","updatedBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9256530-d10e-11ed-a622-f24a877c1ab5","type":"Microsoft.Authorization/roleAssignments","name":"c9256530-d10e-11ed-a622-f24a877c1ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-05T00:24:25.1673334Z","updatedOn":"2023-04-05T00:24:25.1673334Z","createdBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","updatedBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/376ceec9-d348-11ed-9d01-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"376ceec9-d348-11ed-9d01-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-05T00:24:28.5013634Z","updatedOn":"2023-04-05T00:24:28.5013634Z","createdBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","updatedBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39762108-d348-11ed-9d01-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"39762108-d348-11ed-9d01-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-10T17:47:25.2219893Z","updatedOn":"2023-04-10T17:47:25.2219893Z","createdBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","updatedBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0866ce8-d7c7-11ed-a6a7-9660021dc7a9","type":"Microsoft.Authorization/roleAssignments","name":"c0866ce8-d7c7-11ed-a6a7-9660021dc7a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-10T17:47:29.2984077Z","updatedOn":"2023-04-10T17:47:29.2984077Z","createdBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","updatedBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3089c1c-d7c7-11ed-a6a7-9660021dc7a9","type":"Microsoft.Authorization/roleAssignments","name":"c3089c1c-d7c7-11ed-a6a7-9660021dc7a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-13T19:14:02.9424463Z","updatedOn":"2023-04-13T19:14:02.9424463Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d256d6e-ea9e-4124-8252-9da35a5e074b","type":"Microsoft.Authorization/roleAssignments","name":"0d256d6e-ea9e-4124-8252-9da35a5e074b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-17T15:47:32.8370892Z","updatedOn":"2023-04-17T15:47:32.8370892Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3d0f65d-4923-4776-8fb5-288240615c89","type":"Microsoft.Authorization/roleAssignments","name":"b3d0f65d-4923-4776-8fb5-288240615c89"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-17T16:09:03.8628586Z","updatedOn":"2023-04-17T16:09:03.8628586Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2eb3e3cb-598f-4048-aab3-0bd5a8b262ec","type":"Microsoft.Authorization/roleAssignments","name":"2eb3e3cb-598f-4048-aab3-0bd5a8b262ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-19T18:42:49.4053198Z","updatedOn":"2023-04-19T18:42:49.4053198Z","createdBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","updatedBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fba6c131-dee1-11ed-af88-000d3a23f184","type":"Microsoft.Authorization/roleAssignments","name":"fba6c131-dee1-11ed-af88-000d3a23f184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-19T18:42:53.2275925Z","updatedOn":"2023-04-19T18:42:53.2275925Z","createdBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","updatedBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdf8a1c6-dee1-11ed-af88-000d3a23f184","type":"Microsoft.Authorization/roleAssignments","name":"fdf8a1c6-dee1-11ed-af88-000d3a23f184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-19T20:38:29.3110777Z","updatedOn":"2023-04-19T20:38:29.3110777Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23e3d8f0-def2-11ed-8cbe-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"23e3d8f0-def2-11ed-8cbe-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-20T23:41:52.6427527Z","updatedOn":"2023-04-20T23:41:52.6427527Z","createdBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","updatedBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4daefdda-d51e-55b7-9175-548688500778","type":"Microsoft.Authorization/roleAssignments","name":"4daefdda-d51e-55b7-9175-548688500778"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-21T17:49:07.3103199Z","updatedOn":"2023-04-21T17:49:07.3103199Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cfcbdd18-e06c-11ed-8b1a-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"cfcbdd18-e06c-11ed-8b1a-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-21T19:58:00.4291773Z","updatedOn":"2023-04-21T19:58:00.4291773Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d1321fac-e07e-11ed-9f07-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"d1321fac-e07e-11ed-9f07-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-25T18:19:28.7344580Z","updatedOn":"2023-04-25T18:19:28.7344580Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d940b7e-a372-438c-89b3-fe59be8a3d63","type":"Microsoft.Authorization/roleAssignments","name":"6d940b7e-a372-438c-89b3-fe59be8a3d63"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-26T15:27:00.5297027Z","updatedOn":"2023-04-26T15:27:00.5297027Z","createdBy":"b2192440-253a-42f2-8429-40f3820b89be","updatedBy":"b2192440-253a-42f2-8429-40f3820b89be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9b0c1c0-e446-11ed-a01b-00155d1f6f24","type":"Microsoft.Authorization/roleAssignments","name":"c9b0c1c0-e446-11ed-a01b-00155d1f6f24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-26T15:27:03.8070654Z","updatedOn":"2023-04-26T15:27:03.8070654Z","createdBy":"b2192440-253a-42f2-8429-40f3820b89be","updatedBy":"b2192440-253a-42f2-8429-40f3820b89be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbabbec4-e446-11ed-a01b-00155d1f6f24","type":"Microsoft.Authorization/roleAssignments","name":"cbabbec4-e446-11ed-a01b-00155d1f6f24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-28T14:39:15.9639397Z","updatedOn":"2023-04-28T14:39:15.9639397Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/731ed5b6-e5d2-11ed-b4a6-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"731ed5b6-e5d2-11ed-b4a6-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-28T14:39:19.9194172Z","updatedOn":"2023-04-28T14:39:19.9194172Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/757edff4-e5d2-11ed-b4a6-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"757edff4-e5d2-11ed-b4a6-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/974c5e8b-45b9-4653-ba55-5f855dd0fb88","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-01T21:15:30.3600778Z","updatedOn":"2023-05-01T21:15:30.3600778Z","createdBy":"5bef4afd-1360-40a2-ac51-9339229af623","updatedBy":"5bef4afd-1360-40a2-ac51-9339229af623","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4cff74bd-e865-11ed-bd8b-5e022905d313","type":"Microsoft.Authorization/roleAssignments","name":"4cff74bd-e865-11ed-bd8b-5e022905d313"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-01T21:15:34.1175433Z","updatedOn":"2023-05-01T21:15:34.1175433Z","createdBy":"5bef4afd-1360-40a2-ac51-9339229af623","updatedBy":"5bef4afd-1360-40a2-ac51-9339229af623","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4f3e2c7f-e865-11ed-bd8b-5e022905d313","type":"Microsoft.Authorization/roleAssignments","name":"4f3e2c7f-e865-11ed-bd8b-5e022905d313"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-01T22:25:20.9242136Z","updatedOn":"2023-05-01T22:25:20.9242136Z","createdBy":"1ae4ccb9-fb9e-49c0-b500-10d71ff2e737","updatedBy":"1ae4ccb9-fb9e-49c0-b500-10d71ff2e737","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/112fdd75-6ef8-4016-b550-eec1b3c20720","type":"Microsoft.Authorization/roleAssignments","name":"112fdd75-6ef8-4016-b550-eec1b3c20720"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T12:17:42.9403161Z","updatedOn":"2023-05-04T12:17:42.9403161Z","createdBy":"7206144a-a8f7-442f-994e-850c46730a52","updatedBy":"7206144a-a8f7-442f-994e-850c46730a52","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ab58b8d1-ea75-11ed-8e28-8c164501ca31","type":"Microsoft.Authorization/roleAssignments","name":"ab58b8d1-ea75-11ed-8e28-8c164501ca31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T12:17:48.5968787Z","updatedOn":"2023-05-04T12:17:48.5968787Z","createdBy":"7206144a-a8f7-442f-994e-850c46730a52","updatedBy":"7206144a-a8f7-442f-994e-850c46730a52","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aeac0cc1-ea75-11ed-8e28-8c164501ca31","type":"Microsoft.Authorization/roleAssignments","name":"aeac0cc1-ea75-11ed-8e28-8c164501ca31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T14:59:12.9566578Z","updatedOn":"2023-05-04T14:59:12.9566578Z","createdBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","updatedBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a379e3f-ea8c-11ed-b7f9-5254000f02cc","type":"Microsoft.Authorization/roleAssignments","name":"3a379e3f-ea8c-11ed-b7f9-5254000f02cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T14:59:17.0941141Z","updatedOn":"2023-05-04T14:59:17.0941141Z","createdBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","updatedBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cc57207-ea8c-11ed-b7f9-5254000f02cc","type":"Microsoft.Authorization/roleAssignments","name":"3cc57207-ea8c-11ed-b7f9-5254000f02cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-08T17:20:32.4213470Z","updatedOn":"2023-05-08T17:20:32.4213470Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fcb9cd22-d202-49b5-ac49-63b77db3c355","type":"Microsoft.Authorization/roleAssignments","name":"fcb9cd22-d202-49b5-ac49-63b77db3c355"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-08T18:57:28.0040779Z","updatedOn":"2023-05-08T18:57:28.0040779Z","createdBy":"a4ff7404-5868-4532-ab16-142dad6a55af","updatedBy":"a4ff7404-5868-4532-ab16-142dad6a55af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d38f814-edd2-11ed-b548-000d3af78112","type":"Microsoft.Authorization/roleAssignments","name":"2d38f814-edd2-11ed-b548-000d3af78112"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-08T18:57:31.3014429Z","updatedOn":"2023-05-08T18:57:31.3014429Z","createdBy":"a4ff7404-5868-4532-ab16-142dad6a55af","updatedBy":"a4ff7404-5868-4532-ab16-142dad6a55af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f311f92-edd2-11ed-b548-000d3af78112","type":"Microsoft.Authorization/roleAssignments","name":"2f311f92-edd2-11ed-b548-000d3af78112"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T19:02:07.8525568Z","updatedOn":"2023-05-10T19:02:07.8525568Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dedfb4b8-f315-5b5a-b52f-afbb2a175cd5","type":"Microsoft.Authorization/roleAssignments","name":"dedfb4b8-f315-5b5a-b52f-afbb2a175cd5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T19:02:07.5081592Z","updatedOn":"2023-05-10T19:02:07.5081592Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dcfe553d-97cc-5084-b369-d557cd90b386","type":"Microsoft.Authorization/roleAssignments","name":"dcfe553d-97cc-5084-b369-d557cd90b386"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T08:58:12.7125916Z","updatedOn":"2023-05-10T08:58:12.7125916Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d8f9d929-9d3d-42df-a8fe-5f0ceb0bba3e","type":"Microsoft.Authorization/roleAssignments","name":"d8f9d929-9d3d-42df-a8fe-5f0ceb0bba3e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T09:31:17.2430697Z","updatedOn":"2023-05-10T09:31:17.2430697Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3fd12d91-3e5a-4061-bcb2-05a9732b9159","type":"Microsoft.Authorization/roleAssignments","name":"3fd12d91-3e5a-4061-bcb2-05a9732b9159"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:43:09.6330210Z","updatedOn":"2023-05-10T16:43:09.6330210Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/becaa992-ef51-11ed-bf36-f6f4c2331193","type":"Microsoft.Authorization/roleAssignments","name":"becaa992-ef51-11ed-bf36-f6f4c2331193"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:43:13.3065725Z","updatedOn":"2023-05-10T16:43:13.3065725Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0ffd61a-ef51-11ed-bf36-f6f4c2331193","type":"Microsoft.Authorization/roleAssignments","name":"c0ffd61a-ef51-11ed-bf36-f6f4c2331193"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T21:23:06.4822851Z","updatedOn":"2023-05-10T21:23:06.4822851Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/db3e8912-ef78-11ed-9094-0ed70c823176","type":"Microsoft.Authorization/roleAssignments","name":"db3e8912-ef78-11ed-9094-0ed70c823176"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T21:23:10.1751715Z","updatedOn":"2023-05-10T21:23:10.1751715Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd8c02e4-ef78-11ed-9094-0ed70c823176","type":"Microsoft.Authorization/roleAssignments","name":"dd8c02e4-ef78-11ed-9094-0ed70c823176"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-12T17:27:33.1207504Z","updatedOn":"2023-05-12T17:27:33.1207504Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b59475c1-c560-4221-a59e-8c9f845d824c","type":"Microsoft.Authorization/roleAssignments","name":"b59475c1-c560-4221-a59e-8c9f845d824c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T18:50:21.8951381Z","updatedOn":"2023-05-15T18:50:21.8951381Z","createdBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","updatedBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57f8b39a-f351-11ed-a7a2-d28ee6de8df2","type":"Microsoft.Authorization/roleAssignments","name":"57f8b39a-f351-11ed-a7a2-d28ee6de8df2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T18:50:26.0744382Z","updatedOn":"2023-05-15T18:50:26.0744382Z","createdBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","updatedBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5a738a82-f351-11ed-a7a2-d28ee6de8df2","type":"Microsoft.Authorization/roleAssignments","name":"5a738a82-f351-11ed-a7a2-d28ee6de8df2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T20:09:25.9908381Z","updatedOn":"2023-05-15T20:09:25.9908381Z","createdBy":"1f978537-bb5b-4c76-9021-fb832071f334","updatedBy":"1f978537-bb5b-4c76-9021-fb832071f334","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63c222a4-f35c-11ed-a054-6e098a288f3f","type":"Microsoft.Authorization/roleAssignments","name":"63c222a4-f35c-11ed-a054-6e098a288f3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T20:09:35.2733605Z","updatedOn":"2023-05-15T20:09:35.2733605Z","createdBy":"1f978537-bb5b-4c76-9021-fb832071f334","updatedBy":"1f978537-bb5b-4c76-9021-fb832071f334","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6941144c-f35c-11ed-a054-6e098a288f3f","type":"Microsoft.Authorization/roleAssignments","name":"6941144c-f35c-11ed-a054-6e098a288f3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-17T20:10:57.7226371Z","updatedOn":"2023-05-17T20:10:57.7226371Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eda389e3-f4ee-11ed-b5ec-00155d3916e4","type":"Microsoft.Authorization/roleAssignments","name":"eda389e3-f4ee-11ed-b5ec-00155d3916e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-17T20:11:02.1123126Z","updatedOn":"2023-05-17T20:11:02.1123126Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f013376b-f4ee-11ed-b5ec-00155d3916e4","type":"Microsoft.Authorization/roleAssignments","name":"f013376b-f4ee-11ed-b5ec-00155d3916e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-19T16:27:28.8077810Z","updatedOn":"2023-05-19T16:27:28.8077810Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0bb8ff8d-f662-11ed-8f49-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"0bb8ff8d-f662-11ed-8f49-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-19T16:27:33.8052285Z","updatedOn":"2023-05-19T16:27:33.8052285Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ec6735e-f662-11ed-8f49-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"0ec6735e-f662-11ed-8f49-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-22T21:25:31.6093600Z","updatedOn":"2023-05-22T21:25:31.6093600Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d4e15d6-f8e7-11ed-8d3d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2d4e15d6-f8e7-11ed-8d3d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-22T21:25:39.5158809Z","updatedOn":"2023-05-22T21:25:39.5158809Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3232bc64-f8e7-11ed-8d3d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"3232bc64-f8e7-11ed-8d3d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T14:26:30.7681910Z","updatedOn":"2023-05-23T14:26:30.7681910Z","createdBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","updatedBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","delegatedManagedIdentityResourceId":null,"description":"Test + service principal"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/60f05fed-3b0c-4a91-86aa-44a327ded351","type":"Microsoft.Authorization/roleAssignments","name":"60f05fed-3b0c-4a91-86aa-44a327ded351"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T18:52:45.1223272Z","updatedOn":"2023-05-23T18:52:45.1223272Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47caa5b3-b27e-4f95-82b1-b5f87095df3a","type":"Microsoft.Authorization/roleAssignments","name":"47caa5b3-b27e-4f95-82b1-b5f87095df3a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T21:08:13.2773990Z","updatedOn":"2023-05-23T21:08:13.2773990Z","createdBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","updatedBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","delegatedManagedIdentityResourceId":null,"description":"Test + service principal"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79efe060-bf11-43db-ae9d-b281c8d0a9d8","type":"Microsoft.Authorization/roleAssignments","name":"79efe060-bf11-43db-ae9d-b281c8d0a9d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T23:58:25.0358872Z","updatedOn":"2023-05-23T23:58:25.0358872Z","createdBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","updatedBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3ca2af8-f9c5-11ed-9d5d-e64a5a4d2331","type":"Microsoft.Authorization/roleAssignments","name":"b3ca2af8-f9c5-11ed-9d5d-e64a5a4d2331"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T23:58:29.5965022Z","updatedOn":"2023-05-23T23:58:29.5965022Z","createdBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","updatedBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b699d06c-f9c5-11ed-9d5d-e64a5a4d2331","type":"Microsoft.Authorization/roleAssignments","name":"b699d06c-f9c5-11ed-9d5d-e64a5a4d2331"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-25T17:39:08.1426685Z","updatedOn":"2023-05-25T17:39:08.1426685Z","createdBy":"d87783d5-8706-48d6-ba20-d688d69119b2","updatedBy":"d87783d5-8706-48d6-ba20-d688d69119b2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23e6f3b5-225b-4e09-b962-619645aa3b66","type":"Microsoft.Authorization/roleAssignments","name":"23e6f3b5-225b-4e09-b962-619645aa3b66"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-25T20:11:52.1711289Z","updatedOn":"2023-05-25T20:11:52.1711289Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54d2e488-f4a3-4484-802e-ccd2bf4e0973","type":"Microsoft.Authorization/roleAssignments","name":"54d2e488-f4a3-4484-802e-ccd2bf4e0973"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-26T19:08:12.5337243Z","updatedOn":"2023-05-26T19:08:12.5337243Z","createdBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","updatedBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce436091-fe0c-51ad-a3a4-65285790684d","type":"Microsoft.Authorization/roleAssignments","name":"ce436091-fe0c-51ad-a3a4-65285790684d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-26T23:15:50.9221989Z","updatedOn":"2023-05-26T23:15:50.9221989Z","createdBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","updatedBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42aa6334-fc1b-11ed-8275-faccf5616d1b","type":"Microsoft.Authorization/roleAssignments","name":"42aa6334-fc1b-11ed-8275-faccf5616d1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-26T23:15:55.3490253Z","updatedOn":"2023-05-26T23:15:55.3490253Z","createdBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","updatedBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45629004-fc1b-11ed-8275-faccf5616d1b","type":"Microsoft.Authorization/roleAssignments","name":"45629004-fc1b-11ed-8275-faccf5616d1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-31T01:54:29.1188102Z","updatedOn":"2023-05-31T01:54:29.1188102Z","createdBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","updatedBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/13eebbd0-ff56-11ed-9bfa-02e332bf0a73","type":"Microsoft.Authorization/roleAssignments","name":"13eebbd0-ff56-11ed-9bfa-02e332bf0a73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-31T01:54:33.3318294Z","updatedOn":"2023-05-31T01:54:33.3318294Z","createdBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","updatedBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/166f22cd-ff56-11ed-9bfa-02e332bf0a73","type":"Microsoft.Authorization/roleAssignments","name":"166f22cd-ff56-11ed-9bfa-02e332bf0a73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-01T17:50:33.3890390Z","updatedOn":"2023-06-01T17:50:33.3890390Z","createdBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","updatedBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce40a1ba-00a4-11ee-9cf5-00155d28851f","type":"Microsoft.Authorization/roleAssignments","name":"ce40a1ba-00a4-11ee-9cf5-00155d28851f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-01T17:50:37.1678380Z","updatedOn":"2023-06-01T17:50:37.1678380Z","createdBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","updatedBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0850dfa-00a4-11ee-9cf5-00155d28851f","type":"Microsoft.Authorization/roleAssignments","name":"d0850dfa-00a4-11ee-9cf5-00155d28851f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-02T17:57:26.0215079Z","updatedOn":"2023-06-02T17:57:26.0215079Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd9cd89b-ff35-4fa2-9e07-0680ad3fa370","type":"Microsoft.Authorization/roleAssignments","name":"dd9cd89b-ff35-4fa2-9e07-0680ad3fa370"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-02T18:03:23.7925935Z","updatedOn":"2023-06-02T18:03:23.7925935Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d95aec2a-6adc-44a7-bd96-33d53af658bd","type":"Microsoft.Authorization/roleAssignments","name":"d95aec2a-6adc-44a7-bd96-33d53af658bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-03T02:03:08.3558097Z","updatedOn":"2023-06-03T02:03:08.3558097Z","createdBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","updatedBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c0f55e9-ff8c-410b-84c8-c613d1c425d1","type":"Microsoft.Authorization/roleAssignments","name":"6c0f55e9-ff8c-410b-84c8-c613d1c425d1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:28:30.6187015Z","updatedOn":"2023-06-05T17:28:30.6187015Z","createdBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","updatedBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63598898-03c6-11ee-a3b2-00155d87caab","type":"Microsoft.Authorization/roleAssignments","name":"63598898-03c6-11ee-a3b2-00155d87caab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:28:40.0597663Z","updatedOn":"2023-06-05T17:28:40.0597663Z","createdBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","updatedBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/68f66863-03c6-11ee-a3b2-00155d87caab","type":"Microsoft.Authorization/roleAssignments","name":"68f66863-03c6-11ee-a3b2-00155d87caab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:56:05.4845273Z","updatedOn":"2023-06-05T17:56:05.4845273Z","createdBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","updatedBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3dc7635d-03ca-11ee-aaaf-00155da910be","type":"Microsoft.Authorization/roleAssignments","name":"3dc7635d-03ca-11ee-aaaf-00155da910be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:56:09.7600652Z","updatedOn":"2023-06-05T17:56:09.7600652Z","createdBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","updatedBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40502bdc-03ca-11ee-aaaf-00155da910be","type":"Microsoft.Authorization/roleAssignments","name":"40502bdc-03ca-11ee-aaaf-00155da910be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T01:05:13.7066693Z","updatedOn":"2023-06-06T01:05:13.7066693Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/30f7f3e5-0406-11ee-b551-0022482d400c","type":"Microsoft.Authorization/roleAssignments","name":"30f7f3e5-0406-11ee-b551-0022482d400c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T05:00:05.2963688Z","updatedOn":"2023-06-06T05:00:05.2963688Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":"add + RCG-Read Write-CG-23637\n"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca637efb-b6e1-4bf5-bb88-a6724eacb0a7","type":"Microsoft.Authorization/roleAssignments","name":"ca637efb-b6e1-4bf5-bb88-a6724eacb0a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T17:38:31.9010821Z","updatedOn":"2023-06-06T17:38:31.9010821Z","createdBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","updatedBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4658d49-0490-11ee-994b-00155db896c4","type":"Microsoft.Authorization/roleAssignments","name":"f4658d49-0490-11ee-994b-00155db896c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T17:38:35.1906894Z","updatedOn":"2023-06-06T17:38:35.1906894Z","createdBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","updatedBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6601fef-0490-11ee-994b-00155db896c4","type":"Microsoft.Authorization/roleAssignments","name":"f6601fef-0490-11ee-994b-00155db896c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-07T01:57:45.0424798Z","updatedOn":"2023-06-07T01:57:45.0424798Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b19ebd13-04d6-11ee-b0e1-000d3a1d1b64","type":"Microsoft.Authorization/roleAssignments","name":"b19ebd13-04d6-11ee-b0e1-000d3a1d1b64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-07T18:06:20.2372529Z","updatedOn":"2023-06-07T18:06:20.2372529Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/944021da-5dd6-47df-b8bd-2b702ec66b62","type":"Microsoft.Authorization/roleAssignments","name":"944021da-5dd6-47df-b8bd-2b702ec66b62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-08T18:05:13.4812189Z","updatedOn":"2023-06-08T18:05:13.4812189Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/03b31b12-0627-11ee-a6d2-002248be7b21","type":"Microsoft.Authorization/roleAssignments","name":"03b31b12-0627-11ee-a6d2-002248be7b21"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-08T18:05:17.6164752Z","updatedOn":"2023-06-08T18:05:17.6164752Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/061fcfb9-0627-11ee-a6d2-002248be7b21","type":"Microsoft.Authorization/roleAssignments","name":"061fcfb9-0627-11ee-a6d2-002248be7b21"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T21:54:46.4146879Z","updatedOn":"2023-06-09T21:54:46.4146879Z","createdBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","updatedBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f5dc66d-0710-11ee-931c-00155d54ed98","type":"Microsoft.Authorization/roleAssignments","name":"3f5dc66d-0710-11ee-931c-00155d54ed98"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T21:54:50.2224528Z","updatedOn":"2023-06-09T21:54:50.2224528Z","createdBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","updatedBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41a244d2-0710-11ee-931c-00155d54ed98","type":"Microsoft.Authorization/roleAssignments","name":"41a244d2-0710-11ee-931c-00155d54ed98"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T22:15:22.1460837Z","updatedOn":"2023-06-09T22:15:22.1460837Z","createdBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","updatedBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1f99aa10-0713-11ee-9f64-00155dba898f","type":"Microsoft.Authorization/roleAssignments","name":"1f99aa10-0713-11ee-9f64-00155dba898f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T22:15:26.3614867Z","updatedOn":"2023-06-09T22:15:26.3614867Z","createdBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","updatedBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/221f3106-0713-11ee-9f64-00155dba898f","type":"Microsoft.Authorization/roleAssignments","name":"221f3106-0713-11ee-9f64-00155dba898f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-10T00:10:29.8161145Z","updatedOn":"2023-06-10T00:10:29.8161145Z","createdBy":"7df1b69c-686b-452a-9f60-59b12a299512","updatedBy":"7df1b69c-686b-452a-9f60-59b12a299512","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3547a3a6-0723-11ee-af96-521cf0d5af1e","type":"Microsoft.Authorization/roleAssignments","name":"3547a3a6-0723-11ee-af96-521cf0d5af1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-10T00:10:33.6141995Z","updatedOn":"2023-06-10T00:10:33.6141995Z","createdBy":"7df1b69c-686b-452a-9f60-59b12a299512","updatedBy":"7df1b69c-686b-452a-9f60-59b12a299512","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/377f6236-0723-11ee-af96-521cf0d5af1e","type":"Microsoft.Authorization/roleAssignments","name":"377f6236-0723-11ee-af96-521cf0d5af1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-12T03:43:13.3971745Z","updatedOn":"2023-06-12T03:43:13.3971745Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/417d165a-08d3-11ee-8ac2-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"417d165a-08d3-11ee-8ac2-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-12T05:29:01.6737026Z","updatedOn":"2023-06-12T05:29:01.6737026Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b154a136-cc93-46f2-8a71-079a399ec467","type":"Microsoft.Authorization/roleAssignments","name":"b154a136-cc93-46f2-8a71-079a399ec467"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-12T07:33:06.7743063Z","updatedOn":"2023-06-12T07:33:06.7743063Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5d216b6f-33aa-40e9-8b1d-c399739dab45","type":"Microsoft.Authorization/roleAssignments","name":"5d216b6f-33aa-40e9-8b1d-c399739dab45"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T00:55:32.6278707Z","updatedOn":"2023-06-13T00:55:32.6278707Z","createdBy":"859286db-3db2-4ba3-a081-93ef7001669f","updatedBy":"859286db-3db2-4ba3-a081-93ef7001669f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ff444828-0984-11ee-aeab-a6b46b784ab5","type":"Microsoft.Authorization/roleAssignments","name":"ff444828-0984-11ee-aeab-a6b46b784ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T00:55:37.9764519Z","updatedOn":"2023-06-13T00:55:37.9764519Z","createdBy":"859286db-3db2-4ba3-a081-93ef7001669f","updatedBy":"859286db-3db2-4ba3-a081-93ef7001669f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/02794298-0985-11ee-aeab-a6b46b784ab5","type":"Microsoft.Authorization/roleAssignments","name":"02794298-0985-11ee-aeab-a6b46b784ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T00:56:32.2043149Z","updatedOn":"2023-06-13T00:56:32.2043149Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39cae6b9-bfce-4d39-8a33-55001e8e7b87","type":"Microsoft.Authorization/roleAssignments","name":"39cae6b9-bfce-4d39-8a33-55001e8e7b87"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T17:52:57.9703504Z","updatedOn":"2023-06-13T17:52:57.9703504Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57f9abab-a02d-4961-aa68-f7b9a39940e6","type":"Microsoft.Authorization/roleAssignments","name":"57f9abab-a02d-4961-aa68-f7b9a39940e6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T17:54:34.0715865Z","updatedOn":"2023-06-13T17:54:34.0715865Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4caed6f2-725f-4ba4-918a-6b874a08574f","type":"Microsoft.Authorization/roleAssignments","name":"4caed6f2-725f-4ba4-918a-6b874a08574f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f58310d9-a9f6-439a-9e8d-f62e7b41a168","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T18:35:01.5499775Z","updatedOn":"2023-06-13T18:35:01.5499775Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b89c4524-5b48-40cb-9a55-b9712852158d","type":"Microsoft.Authorization/roleAssignments","name":"b89c4524-5b48-40cb-9a55-b9712852158d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T19:11:38.6491712Z","updatedOn":"2023-06-13T19:11:38.6491712Z","createdBy":"d87783d5-8706-48d6-ba20-d688d69119b2","updatedBy":"d87783d5-8706-48d6-ba20-d688d69119b2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09b91438-5494-4648-9766-b0079f6970de","type":"Microsoft.Authorization/roleAssignments","name":"09b91438-5494-4648-9766-b0079f6970de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T19:56:31.5140590Z","updatedOn":"2023-06-13T19:56:31.5140590Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0042f368-b701-4c14-8177-38b23d027a7e","type":"Microsoft.Authorization/roleAssignments","name":"0042f368-b701-4c14-8177-38b23d027a7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T12:57:07.9074452Z","updatedOn":"2023-06-14T12:57:07.9074452Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7e7c27e-0ab2-11ee-a74d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f7e7c27e-0ab2-11ee-a74d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T12:57:11.6755824Z","updatedOn":"2023-06-14T12:57:11.6755824Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa216932-0ab2-11ee-a74d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"fa216932-0ab2-11ee-a74d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T17:38:49.2228645Z","updatedOn":"2023-06-14T17:38:49.2228645Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84bddd3a-c733-408c-b9f2-689e5458a38f","type":"Microsoft.Authorization/roleAssignments","name":"84bddd3a-c733-408c-b9f2-689e5458a38f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T17:38:48.8722593Z","updatedOn":"2023-06-14T17:38:48.8722593Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8aa8e9b1-633b-4e0d-b371-8d21cfdf950a","type":"Microsoft.Authorization/roleAssignments","name":"8aa8e9b1-633b-4e0d-b371-8d21cfdf950a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T17:38:48.8686689Z","updatedOn":"2023-06-14T17:38:48.8686689Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef3807a5-a1bb-4bae-a3d7-781a09a2a198","type":"Microsoft.Authorization/roleAssignments","name":"ef3807a5-a1bb-4bae-a3d7-781a09a2a198"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-12T17:41:39.7941619Z","updatedOn":"2021-03-12T17:41:39.7941619Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4625aa1-611e-448a-bf3e-f37f2bc878a3","type":"Microsoft.Authorization/roleAssignments","name":"d4625aa1-611e-448a-bf3e-f37f2bc878a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-16T23:49:03.3523073Z","updatedOn":"2021-03-16T23:49:03.3523073Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f33005f1-10be-43e3-a87f-9e2f954fb2db","type":"Microsoft.Authorization/roleAssignments","name":"f33005f1-10be-43e3-a87f-9e2f954fb2db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-25T00:58:10.6501184Z","updatedOn":"2021-03-25T00:58:10.6501184Z","createdBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","updatedBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2aca810c-8d05-11eb-bd25-000d3a4359fa","type":"Microsoft.Authorization/roleAssignments","name":"2aca810c-8d05-11eb-bd25-000d3a4359fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-26T10:24:43.4077585Z","updatedOn":"2021-03-26T10:24:43.4077585Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/779ad30e-8e1d-11eb-8aa9-000d3ac754e3","type":"Microsoft.Authorization/roleAssignments","name":"779ad30e-8e1d-11eb-8aa9-000d3ac754e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/46610f90-7283-a03b-3791-33f202e8180c","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T22:46:23.4119129Z","updatedOn":"2022-01-27T22:46:23.4119129Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/46610f90-7283-a03b-3791-33f202e8180c/providers/Microsoft.Authorization/roleAssignments/d92f870d-03da-4626-a453-84734da0b49c","type":"Microsoft.Authorization/roleAssignments","name":"d92f870d-03da-4626-a453-84734da0b49c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.8423155Z","updatedOn":"2019-03-26T22:01:02.8423155Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad/providers/Microsoft.Authorization/roleAssignments/3d069c98-e792-47bd-b58a-399e2d42dbab","type":"Microsoft.Authorization/roleAssignments","name":"3d069c98-e792-47bd-b58a-399e2d42dbab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad","condition":null,"conditionVersion":null,"createdOn":"2021-04-09T18:15:49.7063250Z","updatedOn":"2021-04-09T18:15:49.7063250Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad/providers/Microsoft.Authorization/roleAssignments/a6b435df-80e6-4a7b-b109-2af5f373d238","type":"Microsoft.Authorization/roleAssignments","name":"a6b435df-80e6-4a7b-b109-2af5f373d238"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9176787Z","updatedOn":"2019-03-26T22:01:02.9176787Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320","type":"Microsoft.Authorization/roleAssignments","name":"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:49:37.3000523Z","updatedOn":"2019-03-27T00:49:37.3000523Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29","type":"Microsoft.Authorization/roleAssignments","name":"e6e1fffd-83f7-40c7-9f33-e56e2cf75b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:50:08.3039053Z","updatedOn":"2019-03-27T00:50:08.3039053Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12","type":"Microsoft.Authorization/roleAssignments","name":"3d01f56e-ee3a-41ed-a775-0e067546cb12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T23:11:28.9217618Z","updatedOn":"2022-06-28T23:11:28.9217618Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/869183bd-893a-46f9-bb02-45e48b13f1be","type":"Microsoft.Authorization/roleAssignments","name":"869183bd-893a-46f9-bb02-45e48b13f1be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T22:32:46.2324804Z","updatedOn":"2023-02-21T22:32:46.2324804Z","createdBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","updatedBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/df7c1e07-5c2d-4b22-b7b9-fd11a8569db3","type":"Microsoft.Authorization/roleAssignments","name":"df7c1e07-5c2d-4b22-b7b9-fd11a8569db3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T20:23:16.3808369Z","updatedOn":"2023-05-04T20:23:16.3808369Z","createdBy":"fa00c2de-57d5-4527-9254-4d513f482d0a","updatedBy":"fa00c2de-57d5-4527-9254-4d513f482d0a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/59109645-7b2b-4278-831a-2e4627ec603d","type":"Microsoft.Authorization/roleAssignments","name":"59109645-7b2b-4278-831a-2e4627ec603d"}]}' headers: cache-control: - no-cache content-length: - - '65957' + - '787085' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:05:05 GMT + - Wed, 14 Jun 2023 21:16:08 GMT expires: - '-1' pragma: @@ -333,8 +402,8 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Network%20Contributor%27&api-version=2022-04-01 response: @@ -349,7 +418,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:05:05 GMT + - Wed, 14 Jun 2023 21:16:10 GMT expires: - '-1' pragma: @@ -382,25 +451,25 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) AZURECLI/2.46.0 + - python/3.8.16 (macOS-13.4-arm64-arm-64bit) AZURECLI/2.49.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%273fac8b4e-cd90-4baa-a5d2-66d52bc8349d%27%29 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27eb533a58-db68-4a4e-b8b4-1abd93a5c11e%27%29 response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[{"id":"119e1aeb-4592-42d6-9507-c66df857924f","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"azcli-aks-live-test","appDescription":null,"appId":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","applicationTemplateId":null,"appOwnerOrganizationId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"createdDateTime":"2021-04-20T10:17:48Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"azcli-aks-live-test","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["3fac8b4e-cd90-4baa-a5d2-66d52bc8349d"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":["HideApp","WindowsAzureActiveDirectoryIntegratedApp"],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[{"id":"f874a9b2-feb3-475f-a306-27720ae6be3d","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"clitest000002","appDescription":null,"appId":"eb533a58-db68-4a4e-b8b4-1abd93a5c11e","applicationTemplateId":null,"appOwnerOrganizationId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"createdDateTime":"2023-06-14T21:15:53Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"clitest000002","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["eb533a58-db68-4a4e-b8b4-1abd93a5c11e"],"servicePrincipalType":"Application","signInAudience":"AzureADandPersonalMicrosoftAccount","tags":[],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' headers: cache-control: - no-cache content-length: - - '1354' + - '1312' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 15 Mar 2023 10:05:04 GMT + - Wed, 14 Jun 2023 21:16:11 GMT odata-version: - '4.0' request-id: - - 0e086fb5-049c-42e9-b657-28dee1936474 + - 904c3852-7410-4c60-892e-47b7bd3b191e strict-transport-security: - max-age=31536000 transfer-encoding: @@ -408,7 +477,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"002","RoleInstance":"MWH0EPF0004E10A"}}' + - '{"ServerInfo":{"DataCenter":"North Central US","Slice":"E","Ring":"3","ScaleUnit":"004","RoleInstance":"CH01EPF00016349"}}' x-ms-resource-unit: - '1' status: @@ -436,13 +505,13 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005/providers/Microsoft.Authorization/roleAssignments/1130d241-8d54-42e4-a95c-7d149e0a9b19?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005/providers/Microsoft.Authorization/roleAssignments/0a597482-2658-451c-bc34-11ed8a1180db?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005","condition":null,"conditionVersion":null,"createdOn":"2023-03-15T10:05:05.6942429Z","updatedOn":"2023-03-15T10:05:06.1252467Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005/providers/Microsoft.Authorization/roleAssignments/1130d241-8d54-42e4-a95c-7d149e0a9b19","type":"Microsoft.Authorization/roleAssignments","name":"1130d241-8d54-42e4-a95c-7d149e0a9b19"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T21:16:11.6001160Z","updatedOn":"2023-06-14T21:16:11.8951215Z","createdBy":null,"updatedBy":"4d730cf1-e190-49af-af02-ea52983c017e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005/providers/Microsoft.Authorization/roleAssignments/0a597482-2658-451c-bc34-11ed8a1180db","type":"Microsoft.Authorization/roleAssignments","name":"0a597482-2658-451c-bc34-11ed8a1180db"}' headers: cache-control: - no-cache @@ -451,7 +520,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:05:06 GMT + - Wed, 14 Jun 2023 21:16:14 GMT expires: - '-1' pragma: @@ -461,13 +530,13 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created - request: body: '{"location": "westus2", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliakstest-clitestwgfu23jj6-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestubb6jek5g-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": @@ -476,9 +545,8 @@ interactions: "enableFIPS": false, "name": "nodepool1"}], "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, - "storageProfile": {}}}' + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -489,63 +557,66 @@ interactions: Connection: - keep-alive Content-Length: - - '1201' + - '1164' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestwgfu23jj6-79a739\",\n \"fqdn\": \"cliakstest-clitestwgfu23jj6-79a739-i6mk2y0a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwgfu23jj6-79a739-i6mk2y0a.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": - \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestubb6jek5g-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestubb6jek5g-8ecadf-hpw545fn.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestubb6jek5g-8ecadf-hpw545fn.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74af7353-aa7a-4188-94d4-8052970a47fb?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dfd61693-b6b7-480f-a9a2-ae394aecdd24?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2735' + - '2734' content-type: - application/json date: - - Wed, 15 Mar 2023 10:05:13 GMT + - Wed, 14 Jun 2023 21:16:23 GMT expires: - '-1' pragma: @@ -576,14 +647,14 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74af7353-aa7a-4188-94d4-8052970a47fb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dfd61693-b6b7-480f-a9a2-ae394aecdd24?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5373af74-7aaa-8841-94d4-8052970a47fb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:05:13.1804231Z\"\n }" + string: "{\n \"name\": \"9316d6df-b7b6-0f48-a9a2-ae394aecdd24\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T21:16:23.0298198Z\"\n }" headers: cache-control: - no-cache @@ -592,7 +663,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:05:42 GMT + - Wed, 14 Jun 2023 21:16:23 GMT expires: - '-1' pragma: @@ -625,14 +696,14 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74af7353-aa7a-4188-94d4-8052970a47fb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dfd61693-b6b7-480f-a9a2-ae394aecdd24?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5373af74-7aaa-8841-94d4-8052970a47fb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:05:13.1804231Z\"\n }" + string: "{\n \"name\": \"9316d6df-b7b6-0f48-a9a2-ae394aecdd24\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T21:16:23.0298198Z\"\n }" headers: cache-control: - no-cache @@ -641,7 +712,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:06:12 GMT + - Wed, 14 Jun 2023 21:16:54 GMT expires: - '-1' pragma: @@ -674,14 +745,14 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74af7353-aa7a-4188-94d4-8052970a47fb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dfd61693-b6b7-480f-a9a2-ae394aecdd24?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5373af74-7aaa-8841-94d4-8052970a47fb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:05:13.1804231Z\"\n }" + string: "{\n \"name\": \"9316d6df-b7b6-0f48-a9a2-ae394aecdd24\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T21:16:23.0298198Z\"\n }" headers: cache-control: - no-cache @@ -690,7 +761,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:06:42 GMT + - Wed, 14 Jun 2023 21:17:24 GMT expires: - '-1' pragma: @@ -723,14 +794,14 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74af7353-aa7a-4188-94d4-8052970a47fb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dfd61693-b6b7-480f-a9a2-ae394aecdd24?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5373af74-7aaa-8841-94d4-8052970a47fb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:05:13.1804231Z\"\n }" + string: "{\n \"name\": \"9316d6df-b7b6-0f48-a9a2-ae394aecdd24\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T21:16:23.0298198Z\"\n }" headers: cache-control: - no-cache @@ -739,7 +810,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:07:12 GMT + - Wed, 14 Jun 2023 21:17:54 GMT expires: - '-1' pragma: @@ -772,14 +843,14 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74af7353-aa7a-4188-94d4-8052970a47fb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dfd61693-b6b7-480f-a9a2-ae394aecdd24?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5373af74-7aaa-8841-94d4-8052970a47fb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:05:13.1804231Z\"\n }" + string: "{\n \"name\": \"9316d6df-b7b6-0f48-a9a2-ae394aecdd24\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T21:16:23.0298198Z\"\n }" headers: cache-control: - no-cache @@ -788,7 +859,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:07:43 GMT + - Wed, 14 Jun 2023 21:18:24 GMT expires: - '-1' pragma: @@ -821,14 +892,14 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74af7353-aa7a-4188-94d4-8052970a47fb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dfd61693-b6b7-480f-a9a2-ae394aecdd24?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5373af74-7aaa-8841-94d4-8052970a47fb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:05:13.1804231Z\"\n }" + string: "{\n \"name\": \"9316d6df-b7b6-0f48-a9a2-ae394aecdd24\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T21:16:23.0298198Z\"\n }" headers: cache-control: - no-cache @@ -837,7 +908,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:08:13 GMT + - Wed, 14 Jun 2023 21:18:54 GMT expires: - '-1' pragma: @@ -870,24 +941,73 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74af7353-aa7a-4188-94d4-8052970a47fb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dfd61693-b6b7-480f-a9a2-ae394aecdd24?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5373af74-7aaa-8841-94d4-8052970a47fb\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:05:13.1804231Z\",\n \"endTime\": - \"2023-03-15T10:08:24.3423613Z\"\n }" + string: "{\n \"name\": \"9316d6df-b7b6-0f48-a9a2-ae394aecdd24\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T21:16:23.0298198Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 21:19:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --node-count --service-principal --client-secret + --vnet-subnet-id --no-ssh-key + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dfd61693-b6b7-480f-a9a2-ae394aecdd24?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9316d6df-b7b6-0f48-a9a2-ae394aecdd24\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T21:16:23.0298198Z\",\n \"\ + endTime\": \"2023-06-14T21:19:31.738274Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' content-type: - application/json date: - - Wed, 15 Mar 2023 10:08:43 GMT + - Wed, 14 Jun 2023 21:19:54 GMT expires: - '-1' pragma: @@ -920,56 +1040,59 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestwgfu23jj6-79a739\",\n \"fqdn\": \"cliakstest-clitestwgfu23jj6-79a739-i6mk2y0a.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwgfu23jj6-79a739-i6mk2y0a.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/eed4cecc-7d36-42aa-9215-51aa1a05c60c\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestubb6jek5g-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestubb6jek5g-8ecadf-hpw545fn.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestubb6jek5g-8ecadf-hpw545fn.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/4e20a6c9-f37a-452b-969f-eeb50c7680b1\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '2999' + - '2998' content-type: - application/json date: - - Wed, 15 Mar 2023 10:08:43 GMT + - Wed, 14 Jun 2023 21:19:54 GMT expires: - '-1' pragma: @@ -1001,22 +1124,38 @@ interactions: ParameterSetName: - --scope User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005/providers/Microsoft.Authorization/roleAssignments?$filter=atScope()&api-version=2022-04-01 response: body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-26T05:33:00.7067936Z","updatedOn":"2021-04-26T05:33:00.7067936Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2adf4737-6342-4f63-aeb2-5fcd3426a387","type":"Microsoft.Authorization/roleAssignments","name":"2adf4737-6342-4f63-aeb2-5fcd3426a387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-26T06:09:24.5972802Z","updatedOn":"2021-04-26T06:09:24.5972802Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4572c05-f69f-4e5c-aac6-79afefcf0e2e","type":"Microsoft.Authorization/roleAssignments","name":"c4572c05-f69f-4e5c-aac6-79afefcf0e2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-18T05:18:40.4643436Z","updatedOn":"2021-06-18T05:18:40.4643436Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f926301-cc14-4a88-a3b7-c159d73d01f6","type":"Microsoft.Authorization/roleAssignments","name":"3f926301-cc14-4a88-a3b7-c159d73d01f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:40.4541416Z","updatedOn":"2022-01-25T05:49:40.4541416Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/95e51146-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"95e51146-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:41.6466655Z","updatedOn":"2022-01-25T05:49:41.6466655Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96d4d041-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"96d4d041-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:42.8008295Z","updatedOn":"2022-01-25T05:49:42.8008295Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/978dbc52-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"978dbc52-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:43.7159467Z","updatedOn":"2022-01-25T05:49:43.7159467Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9808753a-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"9808753a-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:44.8535285Z","updatedOn":"2022-01-25T05:49:44.8535285Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9895826c-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"9895826c-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:21.9669611Z","updatedOn":"2022-01-25T06:00:21.9669611Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/143cab45-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"143cab45-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:21.7844500Z","updatedOn":"2022-01-25T06:00:21.7844500Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/143a47b2-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"143a47b2-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:22.8152511Z","updatedOn":"2022-01-25T06:00:22.8152511Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1503a122-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"1503a122-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:22.7549989Z","updatedOn":"2022-01-25T06:00:22.7549989Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14fdfc11-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"14fdfc11-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:47.5002672Z","updatedOn":"2022-01-25T06:00:47.5002672Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23901ba1-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"23901ba1-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:47.9954045Z","updatedOn":"2022-01-25T06:00:47.9954045Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23d4b2c8-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"23d4b2c8-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:48.0124462Z","updatedOn":"2022-01-25T06:00:48.0124462Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23eb1c2a-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"23eb1c2a-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:49.0142818Z","updatedOn":"2022-01-25T06:00:49.0142818Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/248c7804-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"248c7804-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:49.8561822Z","updatedOn":"2022-01-25T06:00:49.8561822Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/25212cc5-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"25212cc5-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:03:00.8232622Z","updatedOn":"2022-01-25T06:03:00.8232622Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/730ae441-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"730ae441-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:03:01.6908492Z","updatedOn":"2022-01-25T06:03:01.6908492Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/73b81c51-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"73b81c51-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:27.0646115Z","updatedOn":"2022-01-25T06:05:27.0646115Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca436279-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"ca436279-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:27.8245772Z","updatedOn":"2022-01-25T06:05:27.8245772Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cad7146c-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cad7146c-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:28.8193427Z","updatedOn":"2022-01-25T06:05:28.8193427Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cb6be874-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cb6be874-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:30.0125029Z","updatedOn":"2022-01-25T06:05:30.0125029Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc20f7f4-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cc20f7f4-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:31.2002633Z","updatedOn":"2022-01-25T06:05:31.2002633Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ccd748dd-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"ccd748dd-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:32.4937030Z","updatedOn":"2022-01-25T06:05:32.4937030Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd4bbd1a-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cd4bbd1a-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:33.6999970Z","updatedOn":"2022-01-25T06:05:33.6999970Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce56964e-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"ce56964e-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:35.3719606Z","updatedOn":"2022-01-25T06:05:35.3719606Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf53c36b-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cf53c36b-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:37.0989473Z","updatedOn":"2022-01-25T06:05:37.0989473Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0537e9f-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d0537e9f-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:37.9186616Z","updatedOn":"2022-01-25T06:05:37.9186616Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0d7c10e-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d0d7c10e-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:39.2245796Z","updatedOn":"2022-01-25T06:05:39.2245796Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d187dc7e-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d187dc7e-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:41.3147495Z","updatedOn":"2022-01-25T06:05:41.3147495Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2d190da-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d2d190da-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:42.0909979Z","updatedOn":"2022-01-25T06:05:42.0909979Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3553305-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d3553305-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T04:11:40.8923959Z","updatedOn":"2023-02-10T04:11:40.8923959Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b9cb4b1-7e07-4127-b87e-47e7ab8ae685","type":"Microsoft.Authorization/roleAssignments","name":"7b9cb4b1-7e07-4127-b87e-47e7ab8ae685"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005","condition":null,"conditionVersion":null,"createdOn":"2023-03-15T10:05:06.5242530Z","updatedOn":"2023-03-15T10:05:06.5242530Z","createdBy":"119e1aeb-4592-42d6-9507-c66df857924f","updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005/providers/Microsoft.Authorization/roleAssignments/1130d241-8d54-42e4-a95c-7d149e0a9b19","type":"Microsoft.Authorization/roleAssignments","name":"1130d241-8d54-42e4-a95c-7d149e0a9b19"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-18T03:09:33.8702688Z","updatedOn":"2021-09-18T03:09:33.8702688Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99d6fd13-909e-4c52-807e-77f7a5af83c8","type":"Microsoft.Authorization/roleAssignments","name":"99d6fd13-909e-4c52-807e-77f7a5af83c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T17:23:35.8382756Z","updatedOn":"2021-10-08T17:23:35.8382756Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de/providers/Microsoft.Authorization/roleAssignments/ade4333c-4321-4b68-b498-d081d55e2b0c","type":"Microsoft.Authorization/roleAssignments","name":"ade4333c-4321-4b68-b498-d081d55e2b0c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9136073Z","updatedOn":"2019-03-26T22:01:02.9136073Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6f4de15e-9316-4714-a7c4-40c46cf8e067","type":"Microsoft.Authorization/roleAssignments","name":"6f4de15e-9316-4714-a7c4-40c46cf8e067"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:13.2137492Z","updatedOn":"2020-02-25T18:36:13.2137492Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/18fdd87e-1c01-424e-b380-32310f4940c2","type":"Microsoft.Authorization/roleAssignments","name":"18fdd87e-1c01-424e-b380-32310f4940c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:00.4746112Z","updatedOn":"2020-02-25T18:36:00.4746112Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d9bcf58a-6f24-446d-bf60-20ffe5142396","type":"Microsoft.Authorization/roleAssignments","name":"d9bcf58a-6f24-446d-bf60-20ffe5142396"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:55.7490022Z","updatedOn":"2020-02-25T18:35:55.7490022Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6e2b954b-42b2-48e0-997a-622601f0a4b4","type":"Microsoft.Authorization/roleAssignments","name":"6e2b954b-42b2-48e0-997a-622601f0a4b4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:57.9173081Z","updatedOn":"2020-02-25T18:35:57.9173081Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9","type":"Microsoft.Authorization/roleAssignments","name":"8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:23.0673659Z","updatedOn":"2020-02-25T18:36:23.0673659Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d0817c57-3e5b-4363-88b7-52baadd5c362","type":"Microsoft.Authorization/roleAssignments","name":"d0817c57-3e5b-4363-88b7-52baadd5c362"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:31.2596366Z","updatedOn":"2020-02-25T18:36:31.2596366Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0dabf212-a1c7-4af6-ba8b-be045493b368","type":"Microsoft.Authorization/roleAssignments","name":"0dabf212-a1c7-4af6-ba8b-be045493b368"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:52.9188704Z","updatedOn":"2020-02-25T18:35:52.9188704Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d674b853-332e-4437-9ddb-bba8fde7ccce","type":"Microsoft.Authorization/roleAssignments","name":"d674b853-332e-4437-9ddb-bba8fde7ccce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:38.8393742Z","updatedOn":"2020-02-25T18:36:38.8393742Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/00625383-053d-4227-a4db-b098e9bd2289","type":"Microsoft.Authorization/roleAssignments","name":"00625383-053d-4227-a4db-b098e9bd2289"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:05.0954462Z","updatedOn":"2020-02-25T18:36:05.0954462Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/3151fe9c-fcd2-45d3-a256-72fb13b86df5","type":"Microsoft.Authorization/roleAssignments","name":"3151fe9c-fcd2-45d3-a256-72fb13b86df5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-07-06T18:51:23.0753297Z","updatedOn":"2020-07-06T18:51:23.0753297Z","createdBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","updatedBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b3a9e1db-fde1-4ddd-ac1c-91913be67359","type":"Microsoft.Authorization/roleAssignments","name":"b3a9e1db-fde1-4ddd-ac1c-91913be67359"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T21:14:55.1655079Z","updatedOn":"2023-02-28T22:54:18.0450083Z","createdBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","updatedBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6565c104-61e2-5756-96d7-663b216c8b11","type":"Microsoft.Authorization/roleAssignments","name":"6565c104-61e2-5756-96d7-663b216c8b11"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-02-17T00:30:39.4967398Z","updatedOn":"2022-02-17T00:30:39.4967398Z","createdBy":"a4319ad3-20be-4542-8952-685b66e56377","updatedBy":"a4319ad3-20be-4542-8952-685b66e56377","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d8aedac6-3663-42b3-add4-c013b7935fb4","type":"Microsoft.Authorization/roleAssignments","name":"d8aedac6-3663-42b3-add4-c013b7935fb4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-03-02T23:53:39.1630622Z","updatedOn":"2022-03-02T23:53:39.1630622Z","createdBy":"a4319ad3-20be-4542-8952-685b66e56377","updatedBy":"a4319ad3-20be-4542-8952-685b66e56377","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b5f0a13f-ac13-4e45-8588-15f5d9a02b20","type":"Microsoft.Authorization/roleAssignments","name":"b5f0a13f-ac13-4e45-8588-15f5d9a02b20"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:58:05.8353141Z","updatedOn":"2022-03-08T00:58:05.8353141Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/403b97d1-ee0a-4b10-afe1-f36f368d2ced","type":"Microsoft.Authorization/roleAssignments","name":"403b97d1-ee0a-4b10-afe1-f36f368d2ced"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-05-16T23:08:20.8536608Z","updatedOn":"2022-05-16T23:08:20.8536608Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8b338a13-cfa6-42e6-b424-fb375ce9d07c","type":"Microsoft.Authorization/roleAssignments","name":"8b338a13-cfa6-42e6-b424-fb375ce9d07c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-05-17T18:23:54.2264851Z","updatedOn":"2022-05-31T17:20:00.8273681Z","createdBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","updatedBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f0576973-5014-5fe2-b3f2-cf3aace860d6","type":"Microsoft.Authorization/roleAssignments","name":"f0576973-5014-5fe2-b3f2-cf3aace860d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:21.3325762Z","updatedOn":"2022-07-19T00:07:21.3325762Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2697280b-812c-472d-841b-a10a9fe540a5","type":"Microsoft.Authorization/roleAssignments","name":"2697280b-812c-472d-841b-a10a9fe540a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:23.7020980Z","updatedOn":"2022-07-19T00:07:23.7020980Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f4254463-7a28-4d26-b331-5a18c354cbe6","type":"Microsoft.Authorization/roleAssignments","name":"f4254463-7a28-4d26-b331-5a18c354cbe6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:26.4080657Z","updatedOn":"2022-07-19T00:07:26.4080657Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/065a63ba-71cc-4c69-b92b-bc67421e7e64","type":"Microsoft.Authorization/roleAssignments","name":"065a63ba-71cc-4c69-b92b-bc67421e7e64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:33.0012805Z","updatedOn":"2021-08-09T18:17:33.0012805Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/01de8fe7-aae0-4d5c-844a-f0bdb8335252","type":"Microsoft.Authorization/roleAssignments","name":"01de8fe7-aae0-4d5c-844a-f0bdb8335252"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:39.9188336Z","updatedOn":"2021-08-09T18:17:39.9188336Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ab2be506-5489-4c1f-add0-f5ed87a10439","type":"Microsoft.Authorization/roleAssignments","name":"ab2be506-5489-4c1f-add0-f5ed87a10439"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:18.2000692Z","updatedOn":"2021-08-24T19:32:18.2000692Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0ce2f3fb-17ea-4193-9081-09aa4b39fec4","type":"Microsoft.Authorization/roleAssignments","name":"0ce2f3fb-17ea-4193-9081-09aa4b39fec4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:36.6775144Z","updatedOn":"2021-08-24T19:32:36.6775144Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2e95b289-99bd-4e68-83de-5433f2a0428c","type":"Microsoft.Authorization/roleAssignments","name":"2e95b289-99bd-4e68-83de-5433f2a0428c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:09.1056400Z","updatedOn":"2021-11-01T22:46:09.1056400Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/82fe7886-5c1b-42c2-9319-7b4d436d8aba","type":"Microsoft.Authorization/roleAssignments","name":"82fe7886-5c1b-42c2-9319-7b4d436d8aba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:14.7527743Z","updatedOn":"2021-11-01T22:46:14.7527743Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/12162b26-25fb-4ef5-a6e8-651446483cb6","type":"Microsoft.Authorization/roleAssignments","name":"12162b26-25fb-4ef5-a6e8-651446483cb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:20.6399869Z","updatedOn":"2021-11-01T22:46:20.6399869Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870","type":"Microsoft.Authorization/roleAssignments","name":"105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-01-26T20:10:13.8998989Z","updatedOn":"2021-01-26T20:10:13.8998989Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b36517ec-61d3-468d-afdc-eceda8adb4ee","type":"Microsoft.Authorization/roleAssignments","name":"b36517ec-61d3-468d-afdc-eceda8adb4ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-02-06T00:13:19.1780775Z","updatedOn":"2021-02-06T00:13:19.1780775Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5216c1ee-4f58-4d36-b379-6c04b1fbd157","type":"Microsoft.Authorization/roleAssignments","name":"5216c1ee-4f58-4d36-b379-6c04b1fbd157"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:26:34.3109215Z","updatedOn":"2021-04-16T18:26:34.3109215Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/7464f8a3-9f55-443b-a3a5-44a31b100cad","type":"Microsoft.Authorization/roleAssignments","name":"7464f8a3-9f55-443b-a3a5-44a31b100cad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:27:56.4446265Z","updatedOn":"2021-04-16T18:27:56.4446265Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8f430c4c-4317-4495-9f01-4f3d4e1ca111","type":"Microsoft.Authorization/roleAssignments","name":"8f430c4c-4317-4495-9f01-4f3d4e1ca111"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-05-04T19:20:06.7695456Z","updatedOn":"2021-05-04T19:20:06.7695456Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa","type":"Microsoft.Authorization/roleAssignments","name":"fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9176787Z","updatedOn":"2019-03-26T22:01:02.9176787Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320","type":"Microsoft.Authorization/roleAssignments","name":"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:49:37.3000523Z","updatedOn":"2019-03-27T00:49:37.3000523Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29","type":"Microsoft.Authorization/roleAssignments","name":"e6e1fffd-83f7-40c7-9f33-e56e2cf75b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:50:08.3039053Z","updatedOn":"2019-03-27T00:50:08.3039053Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12","type":"Microsoft.Authorization/roleAssignments","name":"3d01f56e-ee3a-41ed-a775-0e067546cb12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T23:11:28.9217618Z","updatedOn":"2022-06-28T23:11:28.9217618Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/869183bd-893a-46f9-bb02-45e48b13f1be","type":"Microsoft.Authorization/roleAssignments","name":"869183bd-893a-46f9-bb02-45e48b13f1be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T22:32:46.2324804Z","updatedOn":"2023-02-21T22:32:46.2324804Z","createdBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","updatedBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/df7c1e07-5c2d-4b22-b7b9-fd11a8569db3","type":"Microsoft.Authorization/roleAssignments","name":"df7c1e07-5c2d-4b22-b7b9-fd11a8569db3"}]}' + string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:58.6582166Z","updatedOn":"2020-08-21T16:23:58.6582166Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ab72fbd-e5fe-4a7d-ae20-baad615d688d","type":"Microsoft.Authorization/roleAssignments","name":"8ab72fbd-e5fe-4a7d-ae20-baad615d688d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:59.5326945Z","updatedOn":"2020-08-21T16:23:59.5326945Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4ed77f1d-82a2-4a02-b48e-fa5776870280","type":"Microsoft.Authorization/roleAssignments","name":"4ed77f1d-82a2-4a02-b48e-fa5776870280"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-02T01:52:45.8299382Z","updatedOn":"2020-09-02T01:52:45.8299382Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3e21284b-6bd7-431a-81ae-ccaf56267ab5","type":"Microsoft.Authorization/roleAssignments","name":"3e21284b-6bd7-431a-81ae-ccaf56267ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-07T09:44:47.3865537Z","updatedOn":"2020-09-07T09:44:47.3865537Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79357f85-973d-4621-b1bd-d1ecb645e146","type":"Microsoft.Authorization/roleAssignments","name":"79357f85-973d-4621-b1bd-d1ecb645e146"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-24T00:04:10.5243862Z","updatedOn":"2020-09-24T00:04:10.5243862Z","createdBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","updatedBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78586b2c-fdf9-11ea-9e5e-8851fb3f4911","type":"Microsoft.Authorization/roleAssignments","name":"78586b2c-fdf9-11ea-9e5e-8851fb3f4911"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-29T10:55:39.3762731Z","updatedOn":"2020-09-29T10:55:39.3762731Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41e159ac-411a-4eed-b319-5b92571d2950","type":"Microsoft.Authorization/roleAssignments","name":"41e159ac-411a-4eed-b319-5b92571d2950"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-06T00:33:22.8792900Z","updatedOn":"2020-10-06T00:33:22.8792900Z","createdBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","updatedBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24d0c5e6-0763-11eb-82a0-d636039e345c","type":"Microsoft.Authorization/roleAssignments","name":"24d0c5e6-0763-11eb-82a0-d636039e345c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-14T00:29:42.9981174Z","updatedOn":"2020-10-14T00:29:42.9981174Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6af4ef5-80f6-4303-a641-45689a1646dc","type":"Microsoft.Authorization/roleAssignments","name":"c6af4ef5-80f6-4303-a641-45689a1646dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-16T16:42:17.7175670Z","updatedOn":"2020-10-16T16:42:17.7175670Z","createdBy":"d69d1d49-5dc8-4c8e-afb6-325d83ddcee8","updatedBy":"d69d1d49-5dc8-4c8e-afb6-325d83ddcee8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5854c7a2-cf00-46f9-9cc1-d977f34324df","type":"Microsoft.Authorization/roleAssignments","name":"5854c7a2-cf00-46f9-9cc1-d977f34324df"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-02T09:02:29.2637630Z","updatedOn":"2020-11-02T09:02:29.2637630Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ad1faa8-8680-4dec-a768-050e8349af33","type":"Microsoft.Authorization/roleAssignments","name":"0ad1faa8-8680-4dec-a768-050e8349af33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-03T22:00:44.4523883Z","updatedOn":"2020-11-03T22:00:44.4523883Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/908aa5ac-22a2-413a-9333-fcb0a1ba2c59","type":"Microsoft.Authorization/roleAssignments","name":"908aa5ac-22a2-413a-9333-fcb0a1ba2c59"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-09T14:00:59.0347294Z","updatedOn":"2020-11-09T14:00:59.0347294Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9541f93-ea4a-4b1b-98bf-839fecfcaa22","type":"Microsoft.Authorization/roleAssignments","name":"e9541f93-ea4a-4b1b-98bf-839fecfcaa22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-12-18T08:00:24.9874024Z","updatedOn":"2020-12-18T08:00:24.9874024Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7f60817e-27b5-486b-bbdb-b748bcb752d4","type":"Microsoft.Authorization/roleAssignments","name":"7f60817e-27b5-486b-bbdb-b748bcb752d4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-12-30T11:06:51.2887287Z","updatedOn":"2020-12-30T11:06:51.2887287Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1cbe1756-4a8f-11eb-b753-720008210d90","type":"Microsoft.Authorization/roleAssignments","name":"1cbe1756-4a8f-11eb-b753-720008210d90"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-01-13T06:12:19.1847916Z","updatedOn":"2021-01-13T06:12:19.1847916Z","createdBy":"241cd743-2c33-4860-bd3a-1df659c06eef","updatedBy":"241cd743-2c33-4860-bd3a-1df659c06eef","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/498bf4f6-5566-11eb-a35b-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"498bf4f6-5566-11eb-a35b-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-04T06:52:05.2038586Z","updatedOn":"2021-02-04T06:52:05.2038586Z","createdBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","updatedBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdf6a314-3605-4944-96c1-08b7364dba54","type":"Microsoft.Authorization/roleAssignments","name":"fdf6a314-3605-4944-96c1-08b7364dba54"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T00:37:53.4699042Z","updatedOn":"2021-02-17T00:37:53.4699042Z","createdBy":"e5ad6d43-d6ac-4061-84cc-f7cb826200a0","updatedBy":"e5ad6d43-d6ac-4061-84cc-f7cb826200a0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c06abb18-9697-41f9-9410-ff0ee9b13ab9","type":"Microsoft.Authorization/roleAssignments","name":"c06abb18-9697-41f9-9410-ff0ee9b13ab9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T01:26:55.0758483Z","updatedOn":"2021-02-17T01:26:55.0758483Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9812b416-33c9-4b88-bcdb-6b8406dd319f","type":"Microsoft.Authorization/roleAssignments","name":"9812b416-33c9-4b88-bcdb-6b8406dd319f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T01:38:17.8125104Z","updatedOn":"2021-02-17T01:38:17.8125104Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82e0c83f-b7dd-49f6-b501-ff05951db69d","type":"Microsoft.Authorization/roleAssignments","name":"82e0c83f-b7dd-49f6-b501-ff05951db69d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-19T01:25:51.9967288Z","updatedOn":"2021-02-19T01:25:51.9967288Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2e4ab306-7ae7-4867-8e22-90215bdbeb9a","type":"Microsoft.Authorization/roleAssignments","name":"2e4ab306-7ae7-4867-8e22-90215bdbeb9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-01T21:51:55.4255791Z","updatedOn":"2021-03-01T21:51:55.4255791Z","createdBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","updatedBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36175f2d-f556-464e-a509-19cbb3f45909","type":"Microsoft.Authorization/roleAssignments","name":"36175f2d-f556-464e-a509-19cbb3f45909"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-21T03:42:13.8891609Z","updatedOn":"2020-02-21T03:42:13.8891609Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c41b0416-12e4-49bb-9e35-411e4f409102","type":"Microsoft.Authorization/roleAssignments","name":"c41b0416-12e4-49bb-9e35-411e4f409102"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-22T07:53:45.7192431Z","updatedOn":"2020-04-22T07:53:45.7192431Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d01cbd3-f3e3-4712-95c6-cf07a0224887","type":"Microsoft.Authorization/roleAssignments","name":"0d01cbd3-f3e3-4712-95c6-cf07a0224887"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-30T06:27:35.9310363Z","updatedOn":"2020-04-30T06:27:35.9310363Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a1327e4-100e-43ee-b04e-1403969b805b","type":"Microsoft.Authorization/roleAssignments","name":"6a1327e4-100e-43ee-b04e-1403969b805b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-06-13T06:44:49.9960198Z","updatedOn":"2019-06-13T06:44:49.9960198Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33958269-41a0-400a-91a1-6303d954c8f0","type":"Microsoft.Authorization/roleAssignments","name":"33958269-41a0-400a-91a1-6303d954c8f0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-04-16T02:04:22.4782415Z","updatedOn":"2019-04-16T02:04:22.4782415Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bacdb283-653c-47eb-a578-11743d7898f8","type":"Microsoft.Authorization/roleAssignments","name":"bacdb283-653c-47eb-a578-11743d7898f8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-27T09:09:33.7347978Z","updatedOn":"2020-03-27T09:09:33.7347978Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d355b17-e9d6-47b7-9181-b54ad0083793","type":"Microsoft.Authorization/roleAssignments","name":"6d355b17-e9d6-47b7-9181-b54ad0083793"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-19T02:50:30.0038186Z","updatedOn":"2019-03-19T02:50:30.0038186Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26adec15-a0e4-4b2e-a437-9b545b9723fc","type":"Microsoft.Authorization/roleAssignments","name":"26adec15-a0e4-4b2e-a437-9b545b9723fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-04-17T00:50:00.2288905Z","updatedOn":"2019-04-17T00:50:00.2288905Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e873fd7-4bdb-4df5-a510-c15f3ce99cd6","type":"Microsoft.Authorization/roleAssignments","name":"0e873fd7-4bdb-4df5-a510-c15f3ce99cd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-08T07:40:31.7235048Z","updatedOn":"2020-05-08T07:40:31.7235048Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbfa0c0c-2653-4fb8-b9e5-d41bd96053a7","type":"Microsoft.Authorization/roleAssignments","name":"cbfa0c0c-2653-4fb8-b9e5-d41bd96053a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-11-15T22:27:15.6601349Z","updatedOn":"2018-11-15T22:27:15.6601349Z","createdBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","updatedBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/418847ec-df97-4b29-9711-fc833817e5d6","type":"Microsoft.Authorization/roleAssignments","name":"418847ec-df97-4b29-9711-fc833817e5d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-28T14:20:52.7506898Z","updatedOn":"2019-08-28T14:20:52.7506898Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/715fd118-93b8-4b09-822d-48de5afb21e3","type":"Microsoft.Authorization/roleAssignments","name":"715fd118-93b8-4b09-822d-48de5afb21e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-06T05:22:04.7673784Z","updatedOn":"2019-01-06T05:22:04.7673784Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba5c8600-8cc9-4778-9735-c3d57d26e50d","type":"Microsoft.Authorization/roleAssignments","name":"ba5c8600-8cc9-4778-9735-c3d57d26e50d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-02T16:21:28.6789246Z","updatedOn":"2020-06-02T16:21:28.6789246Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd6bf5d5-fc1c-4fcd-81f3-0d11d3ff9f42","type":"Microsoft.Authorization/roleAssignments","name":"bd6bf5d5-fc1c-4fcd-81f3-0d11d3ff9f42"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-20T08:42:00.9560545Z","updatedOn":"2020-04-20T08:42:00.9560545Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7a41b62f-97d4-4f4c-8bfc-4a8dd708e00f","type":"Microsoft.Authorization/roleAssignments","name":"7a41b62f-97d4-4f4c-8bfc-4a8dd708e00f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-23T03:10:28.2381030Z","updatedOn":"2020-04-23T03:10:28.2381030Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f98d1512-e634-4663-a219-24be2e6bfe1c","type":"Microsoft.Authorization/roleAssignments","name":"f98d1512-e634-4663-a219-24be2e6bfe1c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-15T02:06:03.3308352Z","updatedOn":"2020-04-15T02:06:03.3308352Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6142150e-c404-48e6-a731-fffb36357051","type":"Microsoft.Authorization/roleAssignments","name":"6142150e-c404-48e6-a731-fffb36357051"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-11-16T23:46:13.9660279Z","updatedOn":"2018-11-16T23:46:13.9660279Z","createdBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","updatedBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b66b1ea-89dd-4bc6-8d89-96298648eb40","type":"Microsoft.Authorization/roleAssignments","name":"2b66b1ea-89dd-4bc6-8d89-96298648eb40"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-10-27T00:03:26.2878499Z","updatedOn":"2018-10-27T00:03:26.2878499Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea920230-1aba-4f80-9eef-3fed8216f594","type":"Microsoft.Authorization/roleAssignments","name":"ea920230-1aba-4f80-9eef-3fed8216f594"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-03T09:55:40.2829720Z","updatedOn":"2020-04-03T09:55:40.2829720Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9c2a551-11aa-4b0a-8816-f8511cd46a32","type":"Microsoft.Authorization/roleAssignments","name":"c9c2a551-11aa-4b0a-8816-f8511cd46a32"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-26T21:10:42.2124416Z","updatedOn":"2020-03-26T21:10:42.2124416Z","createdBy":"50ee185f-0eb1-4577-ae14-4ecf59cfa8f7","updatedBy":"50ee185f-0eb1-4577-ae14-4ecf59cfa8f7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d394da6c-4def-47de-8689-791727331c5b","type":"Microsoft.Authorization/roleAssignments","name":"d394da6c-4def-47de-8689-791727331c5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-21T07:34:50.7125622Z","updatedOn":"2020-04-21T07:34:50.7125622Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ddeb2255-2bb6-458a-a891-532e96ae5483","type":"Microsoft.Authorization/roleAssignments","name":"ddeb2255-2bb6-458a-a891-532e96ae5483"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-23T04:07:45.3308845Z","updatedOn":"2020-06-23T04:07:45.3308845Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15d1dab1-b507-11ea-819c-a28e10bedef6","type":"Microsoft.Authorization/roleAssignments","name":"15d1dab1-b507-11ea-819c-a28e10bedef6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-13T00:09:08.8179220Z","updatedOn":"2020-05-13T00:09:08.8179220Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/08a578f0-4875-47d0-8775-946b3a0f2b06","type":"Microsoft.Authorization/roleAssignments","name":"08a578f0-4875-47d0-8775-946b3a0f2b06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-10T23:15:46.8549700Z","updatedOn":"2020-05-10T23:15:46.8549700Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/22d3da65-7681-445e-9080-e748e494676f","type":"Microsoft.Authorization/roleAssignments","name":"22d3da65-7681-445e-9080-e748e494676f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-29T13:30:14.1177711Z","updatedOn":"2019-08-29T13:30:14.1177711Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a2c1014-c1ba-4ae9-a632-90967c28429d","type":"Microsoft.Authorization/roleAssignments","name":"4a2c1014-c1ba-4ae9-a632-90967c28429d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-27T01:26:21.7189691Z","updatedOn":"2020-02-27T01:26:21.7189691Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28808064-5900-11ea-81c8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"28808064-5900-11ea-81c8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-07-03T01:05:25.8863198Z","updatedOn":"2020-07-03T01:05:25.8863198Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46877403-bcc9-11ea-924f-00155d871f03","type":"Microsoft.Authorization/roleAssignments","name":"46877403-bcc9-11ea-924f-00155d871f03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-28T19:57:23.3708745Z","updatedOn":"2019-03-28T19:57:23.3708745Z","createdBy":"66cb050e-bae1-4005-8c4c-0f6dd9b34978","updatedBy":"66cb050e-bae1-4005-8c4c-0f6dd9b34978","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc796cab-2f6b-4099-b9a3-7500f5516153","type":"Microsoft.Authorization/roleAssignments","name":"cc796cab-2f6b-4099-b9a3-7500f5516153"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-30T22:56:44.9793119Z","updatedOn":"2020-03-30T22:56:44.9793119Z","createdBy":"53bb8815-874d-4b05-9953-1158e05aa080","updatedBy":"53bb8815-874d-4b05-9953-1158e05aa080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/000ea275-41c4-40ce-943f-98a8849a56bc","type":"Microsoft.Authorization/roleAssignments","name":"000ea275-41c4-40ce-943f-98a8849a56bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-10T01:13:53.0806696Z","updatedOn":"2020-06-10T01:13:53.0806696Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a584fad9-aab7-11ea-b7e7-00155d4b0124","type":"Microsoft.Authorization/roleAssignments","name":"a584fad9-aab7-11ea-b7e7-00155d4b0124"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-12T00:23:23.9037436Z","updatedOn":"2020-05-12T00:23:23.9037436Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ff95229-981f-40d7-889f-97bc90b8f387","type":"Microsoft.Authorization/roleAssignments","name":"6ff95229-981f-40d7-889f-97bc90b8f387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-09T00:52:52.1315983Z","updatedOn":"2020-06-09T00:52:52.1315983Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7512dec1-86e5-400d-8bc9-f24f181127f3","type":"Microsoft.Authorization/roleAssignments","name":"7512dec1-86e5-400d-8bc9-f24f181127f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-14T04:03:23.9185561Z","updatedOn":"2020-04-14T04:03:23.9185561Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f0f495d-0356-4239-b966-3f47f5f1054a","type":"Microsoft.Authorization/roleAssignments","name":"0f0f495d-0356-4239-b966-3f47f5f1054a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-14T00:42:59.8868253Z","updatedOn":"2020-05-14T00:42:59.8868253Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b3c8d44-237c-410c-a095-52ded7f5cd26","type":"Microsoft.Authorization/roleAssignments","name":"6b3c8d44-237c-410c-a095-52ded7f5cd26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-11T13:26:01.9493491Z","updatedOn":"2020-02-11T13:26:01.9493491Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8fab1ba3-53c2-4b21-9d32-dc89fd061811","type":"Microsoft.Authorization/roleAssignments","name":"8fab1ba3-53c2-4b21-9d32-dc89fd061811"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-03T05:34:39.2163770Z","updatedOn":"2020-04-03T05:34:39.2163770Z","createdBy":"ed4707f4-8b58-42fe-9afd-0045d7a9b262","updatedBy":"ed4707f4-8b58-42fe-9afd-0045d7a9b262","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e4edc2a-dd1f-469b-9a44-f0693866b843","type":"Microsoft.Authorization/roleAssignments","name":"8e4edc2a-dd1f-469b-9a44-f0693866b843"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-20T19:40:09.1141460Z","updatedOn":"2020-02-20T19:40:09.1141460Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4673bf4-97da-4102-9284-2a7315b88a34","type":"Microsoft.Authorization/roleAssignments","name":"d4673bf4-97da-4102-9284-2a7315b88a34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-21T07:19:44.2488168Z","updatedOn":"2020-04-21T07:19:44.2488168Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fadbe071-d757-48fc-b82a-4784249ded10","type":"Microsoft.Authorization/roleAssignments","name":"fadbe071-d757-48fc-b82a-4784249ded10"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-12T17:29:23.0437979Z","updatedOn":"2019-03-12T17:29:23.0437979Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7e76154-c2a7-4419-b73f-e8c6010318c9","type":"Microsoft.Authorization/roleAssignments","name":"a7e76154-c2a7-4419-b73f-e8c6010318c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-16T23:29:48.3209681Z","updatedOn":"2020-03-16T23:29:48.3209681Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3eb4155b-2965-456b-8f00-bca8a13b1684","type":"Microsoft.Authorization/roleAssignments","name":"3eb4155b-2965-456b-8f00-bca8a13b1684"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:49:54.3783181Z","updatedOn":"2022-01-05T01:49:54.3783181Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/25b4b181-6b51-4bce-beb0-1310829e6de3","type":"Microsoft.Authorization/roleAssignments","name":"25b4b181-6b51-4bce-beb0-1310829e6de3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:50:16.7495633Z","updatedOn":"2022-01-05T01:50:16.7495633Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/093e4a08-9393-4b9d-b3a0-011d77557170","type":"Microsoft.Authorization/roleAssignments","name":"093e4a08-9393-4b9d-b3a0-011d77557170"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:50:40.1521378Z","updatedOn":"2022-01-05T01:50:40.1521378Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e5090ae4-6b40-4bab-9d46-482593ec6229","type":"Microsoft.Authorization/roleAssignments","name":"e5090ae4-6b40-4bab-9d46-482593ec6229"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:52:32.8811339Z","updatedOn":"2022-01-05T01:52:32.8811339Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/923a1dab-e203-422e-bb91-c492a895438e","type":"Microsoft.Authorization/roleAssignments","name":"923a1dab-e203-422e-bb91-c492a895438e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T03:31:42.0793122Z","updatedOn":"2022-01-05T03:31:42.0793122Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6cb2e77-1041-4f33-b449-27f9e8738933","type":"Microsoft.Authorization/roleAssignments","name":"d6cb2e77-1041-4f33-b449-27f9e8738933"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T20:29:36.5271689Z","updatedOn":"2022-01-05T20:29:36.5271689Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3267f83c-6e66-11ec-ae40-aa665a565aa7","type":"Microsoft.Authorization/roleAssignments","name":"3267f83c-6e66-11ec-ae40-aa665a565aa7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-08T01:44:09.0575891Z","updatedOn":"2022-01-08T01:44:09.0575891Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/772c985f-7024-11ec-ab61-00224859aac4","type":"Microsoft.Authorization/roleAssignments","name":"772c985f-7024-11ec-ab61-00224859aac4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-10T07:51:08.0345330Z","updatedOn":"2022-01-10T07:51:08.0345330Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/11391e93-71ea-11ec-97af-0022485937da","type":"Microsoft.Authorization/roleAssignments","name":"11391e93-71ea-11ec-97af-0022485937da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-10T19:52:35.8785494Z","updatedOn":"2022-01-10T19:52:35.8785494Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e403838c-88cd-4fc0-b3e8-45c39ad905c1","type":"Microsoft.Authorization/roleAssignments","name":"e403838c-88cd-4fc0-b3e8-45c39ad905c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-17T09:00:11.8306086Z","updatedOn":"2022-01-17T09:00:11.8306086Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2159ffa-089e-4729-a990-364e13db2a65","type":"Microsoft.Authorization/roleAssignments","name":"b2159ffa-089e-4729-a990-364e13db2a65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-18T13:28:29.0699621Z","updatedOn":"2022-01-18T13:28:29.0699621Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81905706-3ec4-4c25-9c82-d4640a0479c3","type":"Microsoft.Authorization/roleAssignments","name":"81905706-3ec4-4c25-9c82-d4640a0479c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-18T20:11:29.5693659Z","updatedOn":"2022-01-18T20:11:29.5693659Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00f40078-a8bd-4bae-9278-ef9de2d5f632","type":"Microsoft.Authorization/roleAssignments","name":"00f40078-a8bd-4bae-9278-ef9de2d5f632"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-19T08:18:43.7411382Z","updatedOn":"2022-01-19T08:18:43.7411382Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82d96cd7-1671-46d7-afc8-9e3d4c56170d","type":"Microsoft.Authorization/roleAssignments","name":"82d96cd7-1671-46d7-afc8-9e3d4c56170d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-19T18:26:48.3434705Z","updatedOn":"2022-01-19T18:26:48.3434705Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0614428a-cde1-4e89-8202-6cb5cd85e6d8","type":"Microsoft.Authorization/roleAssignments","name":"0614428a-cde1-4e89-8202-6cb5cd85e6d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-20T07:46:22.7990066Z","updatedOn":"2022-01-20T07:46:22.7990066Z","createdBy":"0d969ded-9dc4-4176-8b0f-5194740910bf","updatedBy":"0d969ded-9dc4-4176-8b0f-5194740910bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1134cc98-79c5-11ec-9058-ced79d6624f9","type":"Microsoft.Authorization/roleAssignments","name":"1134cc98-79c5-11ec-9058-ced79d6624f9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-21T02:59:53.1540625Z","updatedOn":"2022-01-21T02:59:53.1540625Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2b558e6-2979-4a34-ba92-81e51afae60d","type":"Microsoft.Authorization/roleAssignments","name":"e2b558e6-2979-4a34-ba92-81e51afae60d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-21T03:51:31.7700381Z","updatedOn":"2022-01-21T03:51:31.7700381Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/774b38ec-8425-4659-9c1c-3662aa0d128a","type":"Microsoft.Authorization/roleAssignments","name":"774b38ec-8425-4659-9c1c-3662aa0d128a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-24T08:18:11.4759466Z","updatedOn":"2022-01-24T08:18:11.4759466Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a6b5b99-dbf6-4270-8c73-cc3e5808e147","type":"Microsoft.Authorization/roleAssignments","name":"9a6b5b99-dbf6-4270-8c73-cc3e5808e147"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-24T08:32:50.8732169Z","updatedOn":"2022-01-24T08:32:50.8732169Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/11d67934-0c51-4dad-8284-f6aced7c815c","type":"Microsoft.Authorization/roleAssignments","name":"11d67934-0c51-4dad-8284-f6aced7c815c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T07:03:14.4901261Z","updatedOn":"2022-01-25T07:03:14.4901261Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dcacb94f-7dac-11ec-be41-c6ce4e0f899a","type":"Microsoft.Authorization/roleAssignments","name":"dcacb94f-7dac-11ec-be41-c6ce4e0f899a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T20:35:15.6769413Z","updatedOn":"2022-01-25T20:35:15.6769413Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9e8bf969-d76d-4923-84d9-d9f98b267d71","type":"Microsoft.Authorization/roleAssignments","name":"9e8bf969-d76d-4923-84d9-d9f98b267d71"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-26T15:50:53.7946290Z","updatedOn":"2022-01-26T15:50:53.7946290Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bdcc5219-7ebf-11ec-bada-00224878d5c3","type":"Microsoft.Authorization/roleAssignments","name":"bdcc5219-7ebf-11ec-bada-00224878d5c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T02:28:59.3221529Z","updatedOn":"2022-01-27T02:28:59.3221529Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28cd45d5-8a0f-4b35-8ee3-f82463ccdf3a","type":"Microsoft.Authorization/roleAssignments","name":"28cd45d5-8a0f-4b35-8ee3-f82463ccdf3a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T02:38:11.8679643Z","updatedOn":"2022-01-27T02:38:11.8679643Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3364749d-7f1a-11ec-9b35-e6e10709004e","type":"Microsoft.Authorization/roleAssignments","name":"3364749d-7f1a-11ec-9b35-e6e10709004e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T03:21:28.9388159Z","updatedOn":"2022-01-27T03:21:28.9388159Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5706d36-4da0-4a7e-abdb-20e8ce5c709d","type":"Microsoft.Authorization/roleAssignments","name":"f5706d36-4da0-4a7e-abdb-20e8ce5c709d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T22:45:56.1614375Z","updatedOn":"2022-01-27T22:45:56.1614375Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8757d35e-c05f-4b14-9b69-94880cf3c630","type":"Microsoft.Authorization/roleAssignments","name":"8757d35e-c05f-4b14-9b69-94880cf3c630"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-31T20:16:07.1248292Z","updatedOn":"2022-01-31T20:16:07.1248292Z","createdBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","updatedBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f16a76e-82d2-11ec-b26c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"9f16a76e-82d2-11ec-b26c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-31T23:19:58.8275488Z","updatedOn":"2022-01-31T23:19:58.8275488Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2192301f-06dd-491e-8e34-93a3cf5c0197","type":"Microsoft.Authorization/roleAssignments","name":"2192301f-06dd-491e-8e34-93a3cf5c0197"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-01T22:56:44.2373253Z","updatedOn":"2022-02-01T22:56:44.2373253Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/395d775a-83b2-11ec-8917-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"395d775a-83b2-11ec-8917-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-01T23:17:51.6753012Z","updatedOn":"2022-02-01T23:17:51.6753012Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb3685a8-f064-431a-8ab6-21f276ae0e4d","type":"Microsoft.Authorization/roleAssignments","name":"fb3685a8-f064-431a-8ab6-21f276ae0e4d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-03T23:18:19.3769285Z","updatedOn":"2022-02-03T23:18:19.3769285Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ff008d0-8547-11ec-87de-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"8ff008d0-8547-11ec-87de-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-05T12:04:01.3658712Z","updatedOn":"2022-02-05T12:04:01.3658712Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3fb26d3-867b-11ec-8bb2-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"b3fb26d3-867b-11ec-8bb2-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-07T19:33:07.4702067Z","updatedOn":"2022-02-07T19:33:07.4702067Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c80d3f4a-065e-4e11-b0a1-9a04f4384563","type":"Microsoft.Authorization/roleAssignments","name":"c80d3f4a-065e-4e11-b0a1-9a04f4384563"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-07T20:03:20.2169334Z","updatedOn":"2022-02-07T20:03:20.2169334Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd6cdc49-8850-11ec-b237-027f0b78f6ab","type":"Microsoft.Authorization/roleAssignments","name":"fd6cdc49-8850-11ec-b237-027f0b78f6ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-08T08:00:07.9076727Z","updatedOn":"2022-02-08T08:00:07.9076727Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cdb4bce2-b187-4057-9fa4-ead6eeb4b442","type":"Microsoft.Authorization/roleAssignments","name":"cdb4bce2-b187-4057-9fa4-ead6eeb4b442"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-08T13:12:19.0792698Z","updatedOn":"2022-02-08T13:12:19.0792698Z","createdBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","updatedBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bccb433c-88e0-11ec-9c26-2e7a733c8e34","type":"Microsoft.Authorization/roleAssignments","name":"bccb433c-88e0-11ec-9c26-2e7a733c8e34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-08T16:00:23.2107710Z","updatedOn":"2022-02-08T16:00:23.2107710Z","createdBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","updatedBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/376f32c6-88f8-11ec-b700-2e7a733c8e34","type":"Microsoft.Authorization/roleAssignments","name":"376f32c6-88f8-11ec-b700-2e7a733c8e34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T08:35:07.6001520Z","updatedOn":"2022-02-11T08:35:07.6001520Z","createdBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","updatedBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8422aed5-8b15-11ec-8a3f-6045bd7c1155","type":"Microsoft.Authorization/roleAssignments","name":"8422aed5-8b15-11ec-8a3f-6045bd7c1155"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T20:16:24.1407485Z","updatedOn":"2022-02-11T20:16:24.1407485Z","createdBy":"c518df35-7e98-4c84-9222-b902d191061e","updatedBy":"c518df35-7e98-4c84-9222-b902d191061e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88cc3504-a850-43bb-a42e-326e300ac247","type":"Microsoft.Authorization/roleAssignments","name":"88cc3504-a850-43bb-a42e-326e300ac247"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T20:17:44.8524024Z","updatedOn":"2022-02-11T20:17:44.8524024Z","createdBy":"c518df35-7e98-4c84-9222-b902d191061e","updatedBy":"c518df35-7e98-4c84-9222-b902d191061e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/270f86d3-cdff-4d1c-8dee-20cbe11a28e0","type":"Microsoft.Authorization/roleAssignments","name":"270f86d3-cdff-4d1c-8dee-20cbe11a28e0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T20:17:45.1659184Z","updatedOn":"2022-02-11T20:17:45.1659184Z","createdBy":"c518df35-7e98-4c84-9222-b902d191061e","updatedBy":"c518df35-7e98-4c84-9222-b902d191061e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a536c303-c7bb-4556-b252-b8faa982403e","type":"Microsoft.Authorization/roleAssignments","name":"a536c303-c7bb-4556-b252-b8faa982403e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-13T11:41:48.7463966Z","updatedOn":"2022-02-13T11:41:48.7463966Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed14b636-8cc1-11ec-b294-002248785c41","type":"Microsoft.Authorization/roleAssignments","name":"ed14b636-8cc1-11ec-b294-002248785c41"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.6113342Z","updatedOn":"2022-02-14T09:22:36.6113342Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca42541d-172f-4c3a-8286-8e260e99050e","type":"Microsoft.Authorization/roleAssignments","name":"ca42541d-172f-4c3a-8286-8e260e99050e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.6424591Z","updatedOn":"2022-02-14T09:22:36.6424591Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8bcdc0e8-d9c2-478a-3363-0965130c9559","type":"Microsoft.Authorization/roleAssignments","name":"8bcdc0e8-d9c2-478a-3363-0965130c9559"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.6556489Z","updatedOn":"2022-02-14T09:22:36.6556489Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdb4d934-dee6-4e1d-d817-9670b25e7200","type":"Microsoft.Authorization/roleAssignments","name":"fdb4d934-dee6-4e1d-d817-9670b25e7200"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.7217526Z","updatedOn":"2022-02-14T09:22:36.7217526Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e9e51fa-3ef2-46c7-ae2b-8a418b68637a","type":"Microsoft.Authorization/roleAssignments","name":"4e9e51fa-3ef2-46c7-ae2b-8a418b68637a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T15:34:50.0327527Z","updatedOn":"2022-02-14T15:34:50.0327527Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5579469-8dab-11ec-aa17-000d3a044b73","type":"Microsoft.Authorization/roleAssignments","name":"a5579469-8dab-11ec-aa17-000d3a044b73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T19:37:05.5912525Z","updatedOn":"2022-02-14T19:37:05.5912525Z","createdBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","updatedBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7aa99c5e-8dcd-11ec-931e-3ee49ac9ec9b","type":"Microsoft.Authorization/roleAssignments","name":"7aa99c5e-8dcd-11ec-931e-3ee49ac9ec9b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T23:14:13.9732126Z","updatedOn":"2022-02-14T23:14:13.9732126Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c604be80-2bb9-48b0-a450-3565ed763f26","type":"Microsoft.Authorization/roleAssignments","name":"c604be80-2bb9-48b0-a450-3565ed763f26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-15T08:25:10.2747643Z","updatedOn":"2022-02-15T08:25:10.2747643Z","createdBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","updatedBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9baa19c-8e38-11ec-8406-000d3a0dff4f","type":"Microsoft.Authorization/roleAssignments","name":"c9baa19c-8e38-11ec-8406-000d3a0dff4f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-15T16:27:03.8176136Z","updatedOn":"2022-02-15T16:27:03.8176136Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1efc7bb8-8e7c-11ec-aba3-5e309da6350b","type":"Microsoft.Authorization/roleAssignments","name":"1efc7bb8-8e7c-11ec-aba3-5e309da6350b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-16T01:17:47.1475801Z","updatedOn":"2022-02-16T01:17:47.1475801Z","createdBy":"20d1aaf0-7699-4c7f-8b08-6e5306613d73","updatedBy":"20d1aaf0-7699-4c7f-8b08-6e5306613d73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3fb9602f-8ec6-11ec-9d90-000d3a6d0522","type":"Microsoft.Authorization/roleAssignments","name":"3fb9602f-8ec6-11ec-9d90-000d3a6d0522"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-16T04:06:52.4519397Z","updatedOn":"2022-02-16T04:06:52.4519397Z","createdBy":"f986308d-63d6-4619-a4f5-851a3bf675cb","updatedBy":"f986308d-63d6-4619-a4f5-851a3bf675cb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/de0a2a00-8edd-11ec-89d6-62e3b50ea3e8","type":"Microsoft.Authorization/roleAssignments","name":"de0a2a00-8edd-11ec-89d6-62e3b50ea3e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-17T07:47:28.0184571Z","updatedOn":"2022-02-17T07:47:28.0184571Z","createdBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","updatedBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/034bc00f-181a-4058-a66b-793a86a3f1d9","type":"Microsoft.Authorization/roleAssignments","name":"034bc00f-181a-4058-a66b-793a86a3f1d9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-18T02:41:56.8572427Z","updatedOn":"2022-02-18T02:41:56.8572427Z","createdBy":"8611abc5-1512-49e0-a6d2-0624ffaf5ef3","updatedBy":"8611abc5-1512-49e0-a6d2-0624ffaf5ef3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/563ddb12-9064-11ec-b259-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"563ddb12-9064-11ec-b259-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-18T02:44:45.0089883Z","updatedOn":"2022-02-18T02:44:45.0089883Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba625e10-9064-11ec-a4c4-000d3a6fbef8","type":"Microsoft.Authorization/roleAssignments","name":"ba625e10-9064-11ec-a4c4-000d3a6fbef8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-21T12:55:18.9707919Z","updatedOn":"2022-02-21T12:55:18.9707919Z","createdBy":"74dcd4fc-6c01-4de6-85b9-6cd3d0b977a0","updatedBy":"74dcd4fc-6c01-4de6-85b9-6cd3d0b977a0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84d1b0a8-9315-11ec-a625-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"84d1b0a8-9315-11ec-a625-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-22T12:02:41.9576481Z","updatedOn":"2022-02-22T12:02:41.9576481Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7ff802f-d555-4740-9446-decc876041c2","type":"Microsoft.Authorization/roleAssignments","name":"f7ff802f-d555-4740-9446-decc876041c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-22T17:40:50.0656641Z","updatedOn":"2022-02-22T17:40:50.0656641Z","createdBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","updatedBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9330f714-9406-11ec-839f-e6018ea1a0b8","type":"Microsoft.Authorization/roleAssignments","name":"9330f714-9406-11ec-839f-e6018ea1a0b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-23T14:56:26.1925430Z","updatedOn":"2022-02-23T14:56:26.1925430Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5f94f93-94b8-11ec-a7aa-ce34ee50a641","type":"Microsoft.Authorization/roleAssignments","name":"c5f94f93-94b8-11ec-a7aa-ce34ee50a641"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-23T19:18:46.5080793Z","updatedOn":"2022-02-23T19:18:46.5080793Z","createdBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","updatedBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6bd539ac-94dd-11ec-af01-8c8590c99d20","type":"Microsoft.Authorization/roleAssignments","name":"6bd539ac-94dd-11ec-af01-8c8590c99d20"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-24T18:48:42.1150127Z","updatedOn":"2022-02-24T18:48:42.1150127Z","createdBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","updatedBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/75d2b821-a297-4959-9c53-d5375978304a","type":"Microsoft.Authorization/roleAssignments","name":"75d2b821-a297-4959-9c53-d5375978304a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-25T19:43:06.0365566Z","updatedOn":"2022-02-25T19:43:06.0365566Z","createdBy":"c2191082-b1ca-4fcd-9645-551452f60be4","updatedBy":"c2191082-b1ca-4fcd-9645-551452f60be4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f5fb238-9673-11ec-87ea-2ef8edc450dc","type":"Microsoft.Authorization/roleAssignments","name":"2f5fb238-9673-11ec-87ea-2ef8edc450dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-28T03:13:54.6616360Z","updatedOn":"2022-02-28T03:13:54.6616360Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/073872ac-f374-444a-ae66-fb821b8532a4","type":"Microsoft.Authorization/roleAssignments","name":"073872ac-f374-444a-ae66-fb821b8532a4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-28T16:39:27.8396295Z","updatedOn":"2022-02-28T16:39:27.8396295Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/60241af8-7226-485e-a261-c69b2cf152c4","type":"Microsoft.Authorization/roleAssignments","name":"60241af8-7226-485e-a261-c69b2cf152c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-01T13:58:58.0676838Z","updatedOn":"2022-03-01T13:58:58.0676838Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1e29644f-ada5-4d30-9c40-a406758409f1","type":"Microsoft.Authorization/roleAssignments","name":"1e29644f-ada5-4d30-9c40-a406758409f1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-03T10:22:00.9954003Z","updatedOn":"2022-03-03T10:22:00.9954003Z","createdBy":"08de6591-dec9-4255-ab17-d6919151fadd","updatedBy":"08de6591-dec9-4255-ab17-d6919151fadd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c30b494c-9adb-11ec-ae58-4a123144b5f6","type":"Microsoft.Authorization/roleAssignments","name":"c30b494c-9adb-11ec-ae58-4a123144b5f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-03T15:10:52.8750196Z","updatedOn":"2022-03-03T15:10:52.8750196Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1d1f5e12-9b04-11ec-bf9f-000d3ac561f6","type":"Microsoft.Authorization/roleAssignments","name":"1d1f5e12-9b04-11ec-bf9f-000d3ac561f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T03:22:58.4512023Z","updatedOn":"2022-03-07T03:22:58.4512023Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e234c5f8-9dc5-11ec-993d-0022485937da","type":"Microsoft.Authorization/roleAssignments","name":"e234c5f8-9dc5-11ec-993d-0022485937da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T11:02:56.8448863Z","updatedOn":"2022-03-07T11:02:56.8448863Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/258a4631-9e06-11ec-9362-98e7f4beee90","type":"Microsoft.Authorization/roleAssignments","name":"258a4631-9e06-11ec-9362-98e7f4beee90"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T22:29:31.2927512Z","updatedOn":"2022-03-07T22:29:31.2927512Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef654596-33a1-443e-8a7d-48c0aa96bfcb","type":"Microsoft.Authorization/roleAssignments","name":"ef654596-33a1-443e-8a7d-48c0aa96bfcb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T23:16:52.1440710Z","updatedOn":"2022-03-07T23:16:52.1440710Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3aea3844-0bdd-4673-9a4e-444433ce4230","type":"Microsoft.Authorization/roleAssignments","name":"3aea3844-0bdd-4673-9a4e-444433ce4230"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:15:35.5981652Z","updatedOn":"2022-03-08T00:15:35.5981652Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":"wenxuan-azure-cli"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be01fdd4-3bdf-4a61-8884-59ffb6e82843","type":"Microsoft.Authorization/roleAssignments","name":"be01fdd4-3bdf-4a61-8884-59ffb6e82843"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:22:25.1920031Z","updatedOn":"2022-03-08T00:22:25.1920031Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1433f18e-b3fc-4984-bd98-c93d9244fb18","type":"Microsoft.Authorization/roleAssignments","name":"1433f18e-b3fc-4984-bd98-c93d9244fb18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T18:56:05.1276019Z","updatedOn":"2022-03-08T18:56:05.1276019Z","createdBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","updatedBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67554406-9f11-11ec-b5da-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"67554406-9f11-11ec-b5da-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-09T00:02:42.6050341Z","updatedOn":"2022-03-09T00:02:42.6050341Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/398c74fc-afb6-47dd-bf7a-efcff5dc1b86","type":"Microsoft.Authorization/roleAssignments","name":"398c74fc-afb6-47dd-bf7a-efcff5dc1b86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-05T14:05:58.2716050Z","updatedOn":"2021-04-05T14:05:58.2716050Z","createdBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","updatedBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a9b0e6a-9618-11eb-879a-88e9fe77e044","type":"Microsoft.Authorization/roleAssignments","name":"0a9b0e6a-9618-11eb-879a-88e9fe77e044"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-05T17:37:43.7040494Z","updatedOn":"2021-04-05T17:37:43.7040494Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a04b0948-9635-11eb-b395-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"a04b0948-9635-11eb-b395-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T02:24:39.3826587Z","updatedOn":"2021-04-06T02:24:39.3826587Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c21611b-a840-4166-b9f4-8cec90c17841","type":"Microsoft.Authorization/roleAssignments","name":"6c21611b-a840-4166-b9f4-8cec90c17841"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T02:24:39.4154930Z","updatedOn":"2021-04-06T02:24:39.4154930Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/925d4876-8fde-4334-8f84-4ce52ca7108e","type":"Microsoft.Authorization/roleAssignments","name":"925d4876-8fde-4334-8f84-4ce52ca7108e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T04:46:32.1029699Z","updatedOn":"2021-04-06T04:46:32.1029699Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0dfdb837-9693-11eb-b629-b6178ece78ec","type":"Microsoft.Authorization/roleAssignments","name":"0dfdb837-9693-11eb-b629-b6178ece78ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T11:25:43.5702772Z","updatedOn":"2021-04-06T11:25:43.5702772Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/958a1320-4346-46fb-9722-828af239eb03","type":"Microsoft.Authorization/roleAssignments","name":"958a1320-4346-46fb-9722-828af239eb03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T20:54:21.5921112Z","updatedOn":"2021-04-06T20:54:21.5921112Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42ad5638-971a-11eb-abf6-00155d3a4c00","type":"Microsoft.Authorization/roleAssignments","name":"42ad5638-971a-11eb-abf6-00155d3a4c00"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T23:22:50.4425724Z","updatedOn":"2021-04-06T23:22:50.4425724Z","createdBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","updatedBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00a90f2a-972f-11eb-9121-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"00a90f2a-972f-11eb-9121-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T00:26:49.7250016Z","updatedOn":"2021-04-07T00:26:49.7250016Z","createdBy":"88f18750-8181-4579-8eff-eb44f510655c","updatedBy":"88f18750-8181-4579-8eff-eb44f510655c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dca2df37-fdd1-49dc-a1de-31a70d62e098","type":"Microsoft.Authorization/roleAssignments","name":"dca2df37-fdd1-49dc-a1de-31a70d62e098"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T09:10:47.4905668Z","updatedOn":"2021-04-07T09:10:47.4905668Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a5dbdef-0896-48cd-a325-318e807ea133","type":"Microsoft.Authorization/roleAssignments","name":"8a5dbdef-0896-48cd-a325-318e807ea133"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T19:55:01.1984055Z","updatedOn":"2021-04-07T19:55:01.1984055Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2301d942-97db-11eb-8bf8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2301d942-97db-11eb-8bf8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T22:36:06.7954601Z","updatedOn":"2021-04-07T22:36:06.7954601Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6070c7de-7571-4d55-8b2f-85285b7d9675","type":"Microsoft.Authorization/roleAssignments","name":"6070c7de-7571-4d55-8b2f-85285b7d9675"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-13T03:07:16.5183912Z","updatedOn":"2021-04-13T03:07:16.5183912Z","createdBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","updatedBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59402850-9c05-11eb-8744-20c9d0477c8f","type":"Microsoft.Authorization/roleAssignments","name":"59402850-9c05-11eb-8744-20c9d0477c8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-14T19:16:13.6465266Z","updatedOn":"2021-04-14T19:16:13.6465266Z","createdBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","updatedBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e04efa46-9d55-11eb-9723-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e04efa46-9d55-11eb-9723-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-15T02:29:06.6768532Z","updatedOn":"2021-04-15T02:29:06.6768532Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/19165f29-858f-47fa-befe-cd1babe9df75","type":"Microsoft.Authorization/roleAssignments","name":"19165f29-858f-47fa-befe-cd1babe9df75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-19T08:59:20.4071341Z","updatedOn":"2021-04-19T08:59:20.4071341Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88489205-a0ed-11eb-996c-1a21256cebfc","type":"Microsoft.Authorization/roleAssignments","name":"88489205-a0ed-11eb-996c-1a21256cebfc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-19T22:35:57.5324093Z","updatedOn":"2021-04-19T22:35:57.5324093Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b85c442-a15f-11eb-8a7c-00155d871f03","type":"Microsoft.Authorization/roleAssignments","name":"9b85c442-a15f-11eb-8a7c-00155d871f03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-21T12:31:21.7286225Z","updatedOn":"2021-04-21T12:31:21.7286225Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7770db7c-a29d-11eb-b48f-42472d33150a","type":"Microsoft.Authorization/roleAssignments","name":"7770db7c-a29d-11eb-b48f-42472d33150a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-11T02:49:35.7701861Z","updatedOn":"2021-05-11T02:49:35.7701861Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83c25ed3-b203-11eb-8150-56db513b8477","type":"Microsoft.Authorization/roleAssignments","name":"83c25ed3-b203-11eb-8150-56db513b8477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-12T06:15:49.6202169Z","updatedOn":"2021-05-12T06:15:49.6202169Z","createdBy":"069015af-8ac7-4304-a60f-69a8a50309be","updatedBy":"069015af-8ac7-4304-a60f-69a8a50309be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ecced22-b2e9-11eb-bdc4-da23ac480b85","type":"Microsoft.Authorization/roleAssignments","name":"7ecced22-b2e9-11eb-bdc4-da23ac480b85"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-18T02:08:43.3533001Z","updatedOn":"2021-05-18T02:08:43.3533001Z","createdBy":"069015af-8ac7-4304-a60f-69a8a50309be","updatedBy":"069015af-8ac7-4304-a60f-69a8a50309be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8582f67-b77d-11eb-bffb-52ac6a27ca65","type":"Microsoft.Authorization/roleAssignments","name":"f8582f67-b77d-11eb-bffb-52ac6a27ca65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-24T05:29:46.7966317Z","updatedOn":"2021-05-24T05:29:46.7966317Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d7389dd2-ee8e-4d34-8703-b304716b1761","type":"Microsoft.Authorization/roleAssignments","name":"d7389dd2-ee8e-4d34-8703-b304716b1761"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-01T09:38:20.8655603Z","updatedOn":"2021-06-01T09:38:20.8655603Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18455841-c2bd-11eb-80b3-9a0a2a9b0ea3","type":"Microsoft.Authorization/roleAssignments","name":"18455841-c2bd-11eb-80b3-9a0a2a9b0ea3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-03T16:55:35.8333154Z","updatedOn":"2021-06-03T16:55:35.8333154Z","createdBy":"ae4622a7-bde9-4bca-9599-2d18571bfeba","updatedBy":"ae4622a7-bde9-4bca-9599-2d18571bfeba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83e4c5e8-c48c-11eb-b991-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"83e4c5e8-c48c-11eb-b991-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-07T22:29:50.4448757Z","updatedOn":"2021-06-07T22:29:50.4448757Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/decef2d4-c7df-11eb-a83e-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"decef2d4-c7df-11eb-a83e-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-08T21:20:41.4426747Z","updatedOn":"2021-06-08T21:20:41.4426747Z","createdBy":"39fc5957-4b28-4245-a1ca-0c05574dd32b","updatedBy":"39fc5957-4b28-4245-a1ca-0c05574dd32b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/607bf63e-c89f-11eb-8348-eecc6a504bf0","type":"Microsoft.Authorization/roleAssignments","name":"607bf63e-c89f-11eb-8348-eecc6a504bf0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T14:35:18.7357331Z","updatedOn":"2021-06-15T14:35:18.7357331Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1151242-c950-413d-a273-4109579eac8a","type":"Microsoft.Authorization/roleAssignments","name":"b1151242-c950-413d-a273-4109579eac8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T14:35:18.7937546Z","updatedOn":"2021-06-15T14:35:18.7937546Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dc21aa69-a99c-435e-a256-64885b24ec34","type":"Microsoft.Authorization/roleAssignments","name":"dc21aa69-a99c-435e-a256-64885b24ec34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T15:23:52.9337722Z","updatedOn":"2021-06-15T15:23:52.9337722Z","createdBy":"1faabf99-27a1-4d2e-9e28-295923ee7a14","updatedBy":"1faabf99-27a1-4d2e-9e28-295923ee7a14","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1f9ad80-cded-11eb-81da-86d728f15930","type":"Microsoft.Authorization/roleAssignments","name":"b1f9ad80-cded-11eb-81da-86d728f15930"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-24T01:15:20.6480687Z","updatedOn":"2021-06-24T01:15:20.6480687Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3fe463a-d489-11eb-bcf6-88e9fe77d9d9","type":"Microsoft.Authorization/roleAssignments","name":"a3fe463a-d489-11eb-bcf6-88e9fe77d9d9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T00:02:18.3011415Z","updatedOn":"2021-06-29T00:02:18.3011415Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ba1c6ba-8f43-4749-9af5-b852adc24ec4","type":"Microsoft.Authorization/roleAssignments","name":"6ba1c6ba-8f43-4749-9af5-b852adc24ec4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T00:02:18.3104039Z","updatedOn":"2021-06-29T00:02:18.3104039Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1b67008-79aa-4059-a618-9f31a59e17ad","type":"Microsoft.Authorization/roleAssignments","name":"f1b67008-79aa-4059-a618-9f31a59e17ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T03:26:28.3273724Z","updatedOn":"2021-06-29T03:26:28.3273724Z","createdBy":"5dc8b685-8bb3-4140-b266-34da5be22de8","updatedBy":"5dc8b685-8bb3-4140-b266-34da5be22de8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cacd20e2-d889-11eb-8faf-365b90995dcc","type":"Microsoft.Authorization/roleAssignments","name":"cacd20e2-d889-11eb-8faf-365b90995dcc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T16:47:51.6512150Z","updatedOn":"2021-07-02T16:47:51.6512150Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ce776fa-db55-11eb-9c3e-0ee0ced9a7ad","type":"Microsoft.Authorization/roleAssignments","name":"3ce776fa-db55-11eb-9c3e-0ee0ced9a7ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T18:02:58.7913777Z","updatedOn":"2021-07-02T18:02:58.7913777Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb92467e-db5f-11eb-93bb-52bfc6c4d939","type":"Microsoft.Authorization/roleAssignments","name":"bb92467e-db5f-11eb-93bb-52bfc6c4d939"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T18:34:50.6034803Z","updatedOn":"2021-07-02T18:34:50.6034803Z","createdBy":"88f18750-8181-4579-8eff-eb44f510655c","updatedBy":"88f18750-8181-4579-8eff-eb44f510655c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e537d7a-5a2e-419c-8c51-0f55adab0793","type":"Microsoft.Authorization/roleAssignments","name":"4e537d7a-5a2e-419c-8c51-0f55adab0793"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-12T18:22:41.0622548Z","updatedOn":"2021-07-12T18:22:41.0622548Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a840989-f344-4bca-97c4-0f91fa1537c6","type":"Microsoft.Authorization/roleAssignments","name":"0a840989-f344-4bca-97c4-0f91fa1537c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-14T19:03:30.7799600Z","updatedOn":"2021-07-14T19:03:30.7799600Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d4385bd-e4d6-11eb-9e75-0a4737195831","type":"Microsoft.Authorization/roleAssignments","name":"2d4385bd-e4d6-11eb-9e75-0a4737195831"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-26T03:44:43.4505353Z","updatedOn":"2021-07-26T03:44:43.4505353Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79b52c96-edc4-11eb-8bd7-1e3bd0e19ace","type":"Microsoft.Authorization/roleAssignments","name":"79b52c96-edc4-11eb-8bd7-1e3bd0e19ace"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-28T21:04:39.7105526Z","updatedOn":"2021-07-28T21:04:39.7105526Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b9c8936-efe7-11eb-9484-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6b9c8936-efe7-11eb-9484-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-04T02:14:38.2049441Z","updatedOn":"2021-08-04T02:14:38.2049441Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b8013ec0-f4c9-11eb-999a-000d3a4fc0a9","type":"Microsoft.Authorization/roleAssignments","name":"b8013ec0-f4c9-11eb-999a-000d3a4fc0a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e3c35f4c-e0ca-4b9e-a01e-5ebdd17e2ee7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-04T18:45:22.7030533Z","updatedOn":"2021-08-04T18:45:22.7030533Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b007f9b6-e259-4c24-b8f1-4b74e434b776","type":"Microsoft.Authorization/roleAssignments","name":"b007f9b6-e259-4c24-b8f1-4b74e434b776"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-10T18:57:36.3877809Z","updatedOn":"2021-08-10T18:57:36.3877809Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d31d5edd-fa0c-11eb-a4e8-00155d4b0124","type":"Microsoft.Authorization/roleAssignments","name":"d31d5edd-fa0c-11eb-a4e8-00155d4b0124"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-11T13:17:28.5790828Z","updatedOn":"2021-08-11T13:17:28.5790828Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79c9ac4e-faa6-11eb-9265-9e748a6ca3f5","type":"Microsoft.Authorization/roleAssignments","name":"79c9ac4e-faa6-11eb-9265-9e748a6ca3f5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T20:40:36.9427810Z","updatedOn":"2021-08-24T20:40:36.9427810Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89077b4a-051b-11ec-b690-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"89077b4a-051b-11ec-b690-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-25T04:55:32.8103400Z","updatedOn":"2021-08-25T04:55:32.8103400Z","createdBy":"d8f2c3f8-41bf-41ae-aedb-23c9387322a8","updatedBy":"d8f2c3f8-41bf-41ae-aedb-23c9387322a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad278da4-0560-11ec-bfcc-00249b623abd","type":"Microsoft.Authorization/roleAssignments","name":"ad278da4-0560-11ec-bfcc-00249b623abd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-31T23:45:51.8536519Z","updatedOn":"2021-08-31T23:45:51.8536519Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92d8ca73-0ab5-11ec-9a80-00224809727f","type":"Microsoft.Authorization/roleAssignments","name":"92d8ca73-0ab5-11ec-9a80-00224809727f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-13T19:32:31.3713301Z","updatedOn":"2021-09-13T19:32:31.3713301Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/55fb0a56-14c9-11ec-ba1a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"55fb0a56-14c9-11ec-ba1a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-17T20:45:08.1118919Z","updatedOn":"2021-09-17T20:45:08.1118919Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/246a4240-17f8-11ec-a87c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"246a4240-17f8-11ec-a87c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T13:55:46.1211332Z","updatedOn":"2021-09-20T13:55:46.1211332Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/738cb0ee-1a1a-11ec-bce5-7a98cea1d963","type":"Microsoft.Authorization/roleAssignments","name":"738cb0ee-1a1a-11ec-bce5-7a98cea1d963"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T16:02:49.0433199Z","updatedOn":"2021-09-20T16:02:49.0433199Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/332824b6-1a2c-11ec-94e6-dadb5e134e96","type":"Microsoft.Authorization/roleAssignments","name":"332824b6-1a2c-11ec-94e6-dadb5e134e96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T18:45:44.1610490Z","updatedOn":"2021-09-20T18:45:44.1610490Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5aacbbc-1a42-11ec-82e7-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f5aacbbc-1a42-11ec-82e7-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-23T14:26:16.9983531Z","updatedOn":"2021-09-23T14:26:16.9983531Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35e02c16-1c7a-11ec-aba5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"35e02c16-1c7a-11ec-aba5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-29T01:26:50.3419658Z","updatedOn":"2021-09-29T01:26:50.3419658Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47eee8e3-89cd-4112-86a8-19f848334dd1","type":"Microsoft.Authorization/roleAssignments","name":"47eee8e3-89cd-4112-86a8-19f848334dd1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-04T20:39:52.4258668Z","updatedOn":"2021-10-04T20:39:52.4258668Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/395b589c-2553-11ec-8d77-000d3af95835","type":"Microsoft.Authorization/roleAssignments","name":"395b589c-2553-11ec-8d77-000d3af95835"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-07T22:03:00.0914961Z","updatedOn":"2021-10-07T22:03:00.0914961Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/554cbdbb-27ba-11ec-9441-ba8d312253c4","type":"Microsoft.Authorization/roleAssignments","name":"554cbdbb-27ba-11ec-9441-ba8d312253c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-07T22:03:56.3285135Z","updatedOn":"2021-10-07T22:03:56.3285135Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/76aa862c-27ba-11ec-a4ef-ba8d312253c4","type":"Microsoft.Authorization/roleAssignments","name":"76aa862c-27ba-11ec-a4ef-ba8d312253c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T18:53:10.3503826Z","updatedOn":"2021-10-08T18:53:10.3503826Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d9510e6f-d37b-4ce8-8a3b-78e5447b11c4","type":"Microsoft.Authorization/roleAssignments","name":"d9510e6f-d37b-4ce8-8a3b-78e5447b11c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T18:59:59.4287762Z","updatedOn":"2021-10-08T18:59:59.4287762Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d1a6d17-6c0a-4105-b86a-dcc55fe735e7","type":"Microsoft.Authorization/roleAssignments","name":"3d1a6d17-6c0a-4105-b86a-dcc55fe735e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-11T22:29:20.4165411Z","updatedOn":"2021-10-11T22:29:20.4165411Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5b65050-4b50-4b02-bea3-5986eccdd944","type":"Microsoft.Authorization/roleAssignments","name":"b5b65050-4b50-4b02-bea3-5986eccdd944"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-12T21:09:25.3258237Z","updatedOn":"2021-10-12T21:09:25.3258237Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/869d24c2-b6b1-4a26-9b9c-c50ecb64bc31","type":"Microsoft.Authorization/roleAssignments","name":"869d24c2-b6b1-4a26-9b9c-c50ecb64bc31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-13T08:19:03.1448099Z","updatedOn":"2021-10-13T08:19:03.1448099Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8869be9-f94e-47ae-90cb-c4d9bcb5b629","type":"Microsoft.Authorization/roleAssignments","name":"f8869be9-f94e-47ae-90cb-c4d9bcb5b629"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T04:53:25.9502873Z","updatedOn":"2021-10-14T04:53:36.3280652Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f622c27f-a03d-4fb8-b17d-7281dc0a984f","type":"Microsoft.Authorization/roleAssignments","name":"f622c27f-a03d-4fb8-b17d-7281dc0a984f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:26:21.6452814Z","updatedOn":"2021-10-14T05:26:21.6452814Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/439e7a28-2caf-11ec-ae23-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"439e7a28-2caf-11ec-ae23-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:54.7980840Z","updatedOn":"2021-10-14T05:37:54.7980840Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e049894b-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e049894b-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:56.1220463Z","updatedOn":"2021-10-14T05:37:56.1220463Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e1920687-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e1920687-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:58.2164501Z","updatedOn":"2021-10-14T05:37:58.2164501Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2809f7d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e2809f7d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:00.1774570Z","updatedOn":"2021-10-14T05:38:00.1774570Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3b78568-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e3b78568-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:01.6914375Z","updatedOn":"2021-10-14T05:38:01.6914375Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4e3f0fc-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e4e3f0fc-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:03.1856045Z","updatedOn":"2021-10-14T05:38:03.1856045Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e5c7c168-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e5c7c168-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:04.4121266Z","updatedOn":"2021-10-14T05:38:04.4121266Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e6847f02-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e6847f02-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:05.9623251Z","updatedOn":"2021-10-14T05:38:05.9623251Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7681b77-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e7681b77-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:07.5974823Z","updatedOn":"2021-10-14T05:38:07.5974823Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e82df158-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e82df158-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:09.3591403Z","updatedOn":"2021-10-14T05:38:09.3591403Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e94e3dd9-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e94e3dd9-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:11.1652349Z","updatedOn":"2021-10-14T05:38:11.1652349Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea5dbe0d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"ea5dbe0d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:12.6474393Z","updatedOn":"2021-10-14T05:38:12.6474393Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb6e896d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"eb6e896d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:15.1702403Z","updatedOn":"2021-10-14T05:38:15.1702403Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eceee9a0-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"eceee9a0-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T06:22:44.8991960Z","updatedOn":"2021-10-14T06:22:44.8991960Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2447d2a2-2cb7-11ec-91be-00224878e942","type":"Microsoft.Authorization/roleAssignments","name":"2447d2a2-2cb7-11ec-91be-00224878e942"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T06:22:46.4374928Z","updatedOn":"2021-10-14T06:22:46.4374928Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/251fc151-2cb7-11ec-91be-00224878e942","type":"Microsoft.Authorization/roleAssignments","name":"251fc151-2cb7-11ec-91be-00224878e942"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:33:15.8218562Z","updatedOn":"2021-10-14T07:33:15.8218562Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe04afe4-2cc0-11ec-81ff-0022487b1e92","type":"Microsoft.Authorization/roleAssignments","name":"fe04afe4-2cc0-11ec-81ff-0022487b1e92"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:18.3020716Z","updatedOn":"2021-10-14T07:59:18.3020716Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a1518374-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a1518374-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:20.8876342Z","updatedOn":"2021-10-14T07:59:20.8876342Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a311df17-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a311df17-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:22.4477860Z","updatedOn":"2021-10-14T07:59:22.4477860Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3c5b71e-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a3c5b71e-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:23.1051657Z","updatedOn":"2021-10-14T08:07:23.1051657Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c227b3cc-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c227b3cc-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:23.5151178Z","updatedOn":"2021-10-14T08:07:23.5151178Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c29ac901-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c29ac901-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:25.7287942Z","updatedOn":"2021-10-14T08:07:25.7287942Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c40b5411-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c40b5411-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:27.2660976Z","updatedOn":"2021-10-14T08:07:27.2660976Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4cb6a30-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c4cb6a30-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:08:16.5190337Z","updatedOn":"2021-10-14T08:08:16.5190337Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e226a828-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"e226a828-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:08:17.7439429Z","updatedOn":"2021-10-14T08:08:17.7439429Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2e43f64-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"e2e43f64-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T09:12:04.1832243Z","updatedOn":"2021-10-14T09:12:04.1832243Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5c9e442c-9d64-4022-9246-0c1c21af04be","type":"Microsoft.Authorization/roleAssignments","name":"5c9e442c-9d64-4022-9246-0c1c21af04be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T17:07:28.8635845Z","updatedOn":"2021-10-14T17:07:28.8635845Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed48d615-e7d8-4aef-90c7-332d7329e41c","type":"Microsoft.Authorization/roleAssignments","name":"ed48d615-e7d8-4aef-90c7-332d7329e41c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T18:16:37.9837987Z","updatedOn":"2021-10-14T18:16:37.9837987Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/debb0903-2d1a-11ec-a603-000d3a06aaec","type":"Microsoft.Authorization/roleAssignments","name":"debb0903-2d1a-11ec-a603-000d3a06aaec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T18:39:15.5366398Z","updatedOn":"2021-10-14T18:39:15.5366398Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07caa301-2d1e-11ec-a2ea-0022487748c3","type":"Microsoft.Authorization/roleAssignments","name":"07caa301-2d1e-11ec-a2ea-0022487748c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-15T17:37:53.7293023Z","updatedOn":"2021-10-15T17:37:53.7293023Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fbd09f2-2dde-11ec-b3e4-000d3a064a8a","type":"Microsoft.Authorization/roleAssignments","name":"9fbd09f2-2dde-11ec-b3e4-000d3a064a8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-18T06:22:38.4617338Z","updatedOn":"2021-10-18T06:22:38.4617338Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70844448-8be3-4c6f-9edf-443944f85a5a","type":"Microsoft.Authorization/roleAssignments","name":"70844448-8be3-4c6f-9edf-443944f85a5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-19T11:29:40.0474212Z","updatedOn":"2021-10-19T11:29:40.0474212Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d86e727f-30cf-11ec-bc8b-000d3ac2ec2b","type":"Microsoft.Authorization/roleAssignments","name":"d86e727f-30cf-11ec-bc8b-000d3ac2ec2b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-20T20:57:56.8996523Z","updatedOn":"2021-10-20T20:57:56.8996523Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66303328-31e8-11ec-99f4-000d3ac5c858","type":"Microsoft.Authorization/roleAssignments","name":"66303328-31e8-11ec-99f4-000d3ac5c858"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-21T15:12:00.0677049Z","updatedOn":"2021-10-21T15:12:00.0677049Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b630a77a-9e75-417f-b251-1584163d8926","type":"Microsoft.Authorization/roleAssignments","name":"b630a77a-9e75-417f-b251-1584163d8926"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-25T21:32:26.0121360Z","updatedOn":"2021-10-25T21:32:26.0121360Z","createdBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","updatedBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b15fba8-35db-11ec-b404-8c8590c603ee","type":"Microsoft.Authorization/roleAssignments","name":"0b15fba8-35db-11ec-b404-8c8590c603ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T07:30:52.4116907Z","updatedOn":"2021-10-26T07:30:52.4116907Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e78ac58b-8cfe-4ff6-9ac6-41453615c7e8","type":"Microsoft.Authorization/roleAssignments","name":"e78ac58b-8cfe-4ff6-9ac6-41453615c7e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T13:47:01.3444676Z","updatedOn":"2021-10-26T13:47:01.3444676Z","createdBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","updatedBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4933f1cd-0863-4429-a5be-3a81b2f80105","type":"Microsoft.Authorization/roleAssignments","name":"4933f1cd-0863-4429-a5be-3a81b2f80105"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T20:43:39.1375235Z","updatedOn":"2021-10-26T20:43:39.1375235Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad8f56c5-19b6-4e9f-b20f-8e3789a93873","type":"Microsoft.Authorization/roleAssignments","name":"ad8f56c5-19b6-4e9f-b20f-8e3789a93873"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-27T01:02:05.1338691Z","updatedOn":"2021-10-27T01:02:05.1338691Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a83de9c2-2bd5-4ba1-bc50-08d475a290a0","type":"Microsoft.Authorization/roleAssignments","name":"a83de9c2-2bd5-4ba1-bc50-08d475a290a0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-28T00:14:34.9745357Z","updatedOn":"2021-10-28T00:14:34.9745357Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3366cd2-4d12-4dbb-b05d-5e914628e986","type":"Microsoft.Authorization/roleAssignments","name":"e3366cd2-4d12-4dbb-b05d-5e914628e986"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-02T23:39:52.9481031Z","updatedOn":"2021-11-02T23:39:52.9481031Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0e37c03-a8a7-4765-af41-9a8584ad6413","type":"Microsoft.Authorization/roleAssignments","name":"b0e37c03-a8a7-4765-af41-9a8584ad6413"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c7393b34-138c-406f-901b-d8cf2b17e6ae","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T15:46:17.8935538Z","updatedOn":"2021-11-03T15:46:17.8935538Z","createdBy":"","updatedBy":"","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5b0e8d6-e30f-42a5-918c-01299416da2c","type":"Microsoft.Authorization/roleAssignments","name":"b5b0e8d6-e30f-42a5-918c-01299416da2c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T21:43:39.4750265Z","updatedOn":"2021-11-03T21:43:39.4750265Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/683b4375-f318-428e-a885-232a29ec8559","type":"Microsoft.Authorization/roleAssignments","name":"683b4375-f318-428e-a885-232a29ec8559"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T21:56:29.9810805Z","updatedOn":"2021-11-03T21:56:29.9810805Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e560c31c-8c6e-4bf0-9828-b2db658455b7","type":"Microsoft.Authorization/roleAssignments","name":"e560c31c-8c6e-4bf0-9828-b2db658455b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T06:06:21.8922666Z","updatedOn":"2021-11-04T06:06:21.8922666Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e1dcc78b-03c3-4db3-95a8-643dbcbbf2a3","type":"Microsoft.Authorization/roleAssignments","name":"e1dcc78b-03c3-4db3-95a8-643dbcbbf2a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T17:22:28.0293110Z","updatedOn":"2021-11-04T17:22:28.0293110Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84a6167f-c7d5-4404-b786-85fe4327c0ba","type":"Microsoft.Authorization/roleAssignments","name":"84a6167f-c7d5-4404-b786-85fe4327c0ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T17:24:51.0627597Z","updatedOn":"2021-11-04T17:24:51.0627597Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ff23217-f8a8-4e77-baee-41850cfb5554","type":"Microsoft.Authorization/roleAssignments","name":"8ff23217-f8a8-4e77-baee-41850cfb5554"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T05:21:11.0446928Z","updatedOn":"2021-11-16T05:21:11.0446928Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d01bef88-e1fa-4fc2-bd98-6845063b53b9","type":"Microsoft.Authorization/roleAssignments","name":"d01bef88-e1fa-4fc2-bd98-6845063b53b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T05:22:06.5362889Z","updatedOn":"2021-11-16T05:22:06.5362889Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/784d9b03-5635-4c89-ae5b-5c11ceff8a4c","type":"Microsoft.Authorization/roleAssignments","name":"784d9b03-5635-4c89-ae5b-5c11ceff8a4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T21:47:20.3762106Z","updatedOn":"2021-11-16T21:47:20.3762106Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/19b8a839-de9e-4712-a227-686679e98414","type":"Microsoft.Authorization/roleAssignments","name":"19b8a839-de9e-4712-a227-686679e98414"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T05:28:26.3873952Z","updatedOn":"2021-11-17T05:28:26.3873952Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a6cb292-435b-45d4-9f44-2dedb6f80804","type":"Microsoft.Authorization/roleAssignments","name":"4a6cb292-435b-45d4-9f44-2dedb6f80804"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T08:37:53.6375476Z","updatedOn":"2021-11-17T08:37:53.6375476Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7314a76-4781-11ec-9554-2eaf851e2751","type":"Microsoft.Authorization/roleAssignments","name":"a7314a76-4781-11ec-9554-2eaf851e2751"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T20:29:38.7986222Z","updatedOn":"2021-11-17T20:29:38.7986222Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41224d04-5912-49e9-98f2-df2d0c5768ed","type":"Microsoft.Authorization/roleAssignments","name":"41224d04-5912-49e9-98f2-df2d0c5768ed"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-23T02:37:39.0525328Z","updatedOn":"2021-11-23T02:37:39.0525328Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2917b10b-1776-4726-9e2a-1406d35584aa","type":"Microsoft.Authorization/roleAssignments","name":"2917b10b-1776-4726-9e2a-1406d35584aa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-24T04:19:48.8430130Z","updatedOn":"2021-11-24T04:19:48.8430130Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4738453f-e889-4428-817e-a18655a6df71","type":"Microsoft.Authorization/roleAssignments","name":"4738453f-e889-4428-817e-a18655a6df71"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-29T22:16:27.4091202Z","updatedOn":"2021-11-29T22:16:27.4091202Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dfaf3275-7f8c-449f-875f-d74ca2998764","type":"Microsoft.Authorization/roleAssignments","name":"dfaf3275-7f8c-449f-875f-d74ca2998764"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T06:59:34.7676928Z","updatedOn":"2021-11-30T06:59:34.7676928Z","createdBy":"471feb6d-5a83-439e-af7b-311f4eee2d0c","updatedBy":"471feb6d-5a83-439e-af7b-311f4eee2d0c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5848b58-7658-45ae-b979-fb230968ddf7","type":"Microsoft.Authorization/roleAssignments","name":"d5848b58-7658-45ae-b979-fb230968ddf7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T20:03:43.2359682Z","updatedOn":"2021-11-30T20:03:43.2359682Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3be3018e-84c0-48a4-bb36-fa997df4a911","type":"Microsoft.Authorization/roleAssignments","name":"3be3018e-84c0-48a4-bb36-fa997df4a911"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T22:23:07.4635927Z","updatedOn":"2021-11-30T22:23:07.4635927Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc52b5ce-1a69-4afd-aaab-745522d55219","type":"Microsoft.Authorization/roleAssignments","name":"fc52b5ce-1a69-4afd-aaab-745522d55219"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T02:05:06.3947111Z","updatedOn":"2021-12-01T02:05:06.3947111Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bfd977a2-74fb-4e8f-88a6-72b675ad0813","type":"Microsoft.Authorization/roleAssignments","name":"bfd977a2-74fb-4e8f-88a6-72b675ad0813"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T23:14:48.6056041Z","updatedOn":"2021-12-01T23:14:48.6056041Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2c2675a2-a48c-492f-a4d5-835ffdf8e57e","type":"Microsoft.Authorization/roleAssignments","name":"2c2675a2-a48c-492f-a4d5-835ffdf8e57e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T23:44:16.3921051Z","updatedOn":"2021-12-01T23:44:16.3921051Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc791163-7d7a-4988-96f8-969053cb4d75","type":"Microsoft.Authorization/roleAssignments","name":"bc791163-7d7a-4988-96f8-969053cb4d75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T07:40:53.7263371Z","updatedOn":"2021-12-02T07:40:53.7263371Z","createdBy":"027bf6cf-7fd4-4a57-80d7-4e52bd1fea5b","updatedBy":"027bf6cf-7fd4-4a57-80d7-4e52bd1fea5b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c592d108-71a6-4fbd-89f7-06c1656d0c93","type":"Microsoft.Authorization/roleAssignments","name":"c592d108-71a6-4fbd-89f7-06c1656d0c93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:36.8568746Z","updatedOn":"2021-12-02T08:41:36.8568746Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a8b008b0-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a8b008b0-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:38.4974834Z","updatedOn":"2021-12-02T08:41:38.4974834Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9ad9deb-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a9ad9deb-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:38.6316008Z","updatedOn":"2021-12-02T08:41:38.6316008Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9aa81cd-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a9aa81cd-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:38.6311993Z","updatedOn":"2021-12-02T08:41:38.6311993Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9c0a1a6-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a9c0a1a6-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T21:35:31.3727027Z","updatedOn":"2021-12-02T21:35:31.3727027Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/663204fa-95cb-45a0-938f-d817824509dd","type":"Microsoft.Authorization/roleAssignments","name":"663204fa-95cb-45a0-938f-d817824509dd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T22:09:46.1565055Z","updatedOn":"2021-12-02T22:09:46.1565055Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e97a88c4-e035-453b-b767-a3dbfadfd28d","type":"Microsoft.Authorization/roleAssignments","name":"e97a88c4-e035-453b-b767-a3dbfadfd28d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T23:10:20.2170014Z","updatedOn":"2021-12-02T23:10:20.2170014Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/afd2116e-f2ce-4bc2-8924-fb6f0c620d64","type":"Microsoft.Authorization/roleAssignments","name":"afd2116e-f2ce-4bc2-8924-fb6f0c620d64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-03T00:07:35.7286641Z","updatedOn":"2021-12-03T00:07:35.7286641Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/56d1c441-73b9-4b86-acc9-260016c81330","type":"Microsoft.Authorization/roleAssignments","name":"56d1c441-73b9-4b86-acc9-260016c81330"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-03T18:42:59.5078987Z","updatedOn":"2021-12-03T18:42:59.5078987Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b083534f-ae88-4db8-b65f-150284339772","type":"Microsoft.Authorization/roleAssignments","name":"b083534f-ae88-4db8-b65f-150284339772"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-03T21:00:00.5789423Z","updatedOn":"2021-12-03T21:00:00.5789423Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8684384c-7276-4e65-b708-6766a7c3a876","type":"Microsoft.Authorization/roleAssignments","name":"8684384c-7276-4e65-b708-6766a7c3a876"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-04T00:50:10.8909441Z","updatedOn":"2021-12-04T00:50:10.8909441Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cb7855e-82da-4910-b4ce-5f38896c067a","type":"Microsoft.Authorization/roleAssignments","name":"3cb7855e-82da-4910-b4ce-5f38896c067a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-07T12:35:57.6917673Z","updatedOn":"2021-12-07T12:35:57.6917673Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39e64286-575a-11ec-95aa-002248232e56","type":"Microsoft.Authorization/roleAssignments","name":"39e64286-575a-11ec-95aa-002248232e56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-07T23:18:12.3548251Z","updatedOn":"2021-12-07T23:18:12.3548251Z","createdBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","updatedBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f2265a95-57b3-11ec-a8e6-de1bbdf97372","type":"Microsoft.Authorization/roleAssignments","name":"f2265a95-57b3-11ec-a8e6-de1bbdf97372"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-08T03:01:28.5641674Z","updatedOn":"2021-12-08T03:01:28.5641674Z","createdBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","updatedBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2232ec95-57d3-11ec-bbe2-de1bbdf97372","type":"Microsoft.Authorization/roleAssignments","name":"2232ec95-57d3-11ec-bbe2-de1bbdf97372"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-08T03:07:36.8342803Z","updatedOn":"2021-12-08T03:07:36.8342803Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f1920cc-5cca-44c7-8175-d46948a9283f","type":"Microsoft.Authorization/roleAssignments","name":"9f1920cc-5cca-44c7-8175-d46948a9283f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-08T13:07:30.9635867Z","updatedOn":"2021-12-08T13:07:30.9635867Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc6359bd-5827-11ec-a516-000d3afc9734","type":"Microsoft.Authorization/roleAssignments","name":"cc6359bd-5827-11ec-a516-000d3afc9734"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-09T17:37:01.4296706Z","updatedOn":"2021-12-09T17:37:01.4296706Z","createdBy":"ae195f21-9b44-473d-9920-601e7899b56d","updatedBy":"ae195f21-9b44-473d-9920-601e7899b56d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9be22fd0-5916-11ec-b5a3-469e91f29611","type":"Microsoft.Authorization/roleAssignments","name":"9be22fd0-5916-11ec-b5a3-469e91f29611"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-10T14:31:24.3746709Z","updatedOn":"2021-12-10T14:31:24.3746709Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d9b6ef44-59c5-11ec-800e-0022487c3cbe","type":"Microsoft.Authorization/roleAssignments","name":"d9b6ef44-59c5-11ec-800e-0022487c3cbe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-13T07:46:54.6104588Z","updatedOn":"2021-12-13T07:46:54.6104588Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c65fe6b5-5be8-11ec-b892-000d3a518d38","type":"Microsoft.Authorization/roleAssignments","name":"c65fe6b5-5be8-11ec-b892-000d3a518d38"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-17T03:03:12.7081063Z","updatedOn":"2021-12-17T03:03:12.7081063Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/deb2cb98-5ee5-11ec-bd7f-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"deb2cb98-5ee5-11ec-bd7f-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-18T06:04:20.9532091Z","updatedOn":"2021-12-18T06:04:20.9532091Z","createdBy":"19263705-0667-497e-85e7-a930fa3441ec","updatedBy":"19263705-0667-497e-85e7-a930fa3441ec","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6eb35762-bc37-4c24-aec0-389e7cb97f95","type":"Microsoft.Authorization/roleAssignments","name":"6eb35762-bc37-4c24-aec0-389e7cb97f95"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-22T09:15:23.9226458Z","updatedOn":"2021-12-22T09:15:23.9226458Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7a9e1ec4-8728-4723-9fca-709f8549e3ac","type":"Microsoft.Authorization/roleAssignments","name":"7a9e1ec4-8728-4723-9fca-709f8549e3ac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-22T19:37:32.9555793Z","updatedOn":"2021-12-22T19:37:32.9555793Z","createdBy":"121978e2-c5f7-437f-b950-07f832f9f06c","updatedBy":"121978e2-c5f7-437f-b950-07f832f9f06c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a77cfdf9-fd0d-43f5-ba0d-0d36c8c1818e","type":"Microsoft.Authorization/roleAssignments","name":"a77cfdf9-fd0d-43f5-ba0d-0d36c8c1818e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-28T17:11:37.6373944Z","updatedOn":"2022-09-28T17:11:37.6373944Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b564621-3f50-11ed-918f-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"9b564621-3f50-11ed-918f-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-28T17:11:52.2247561Z","updatedOn":"2022-09-28T17:11:52.2247561Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3d8aeee-3f50-11ed-918f-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"a3d8aeee-3f50-11ed-918f-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-28T18:45:35.3728959Z","updatedOn":"2022-09-28T18:45:35.3728959Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5bb18d5f-3c20-4899-a01f-58313b28c345","type":"Microsoft.Authorization/roleAssignments","name":"5bb18d5f-3c20-4899-a01f-58313b28c345"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-30T18:34:26.1480517Z","updatedOn":"2022-09-30T18:34:26.1480517Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/828f43f9-40ee-11ed-9683-0022482b84fb","type":"Microsoft.Authorization/roleAssignments","name":"828f43f9-40ee-11ed-9683-0022482b84fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-30T18:34:28.0235766Z","updatedOn":"2022-09-30T18:34:28.0235766Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83a3304a-40ee-11ed-9683-0022482b84fb","type":"Microsoft.Authorization/roleAssignments","name":"83a3304a-40ee-11ed-9683-0022482b84fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T14:35:19.0321994Z","updatedOn":"2022-10-03T14:35:19.0321994Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99965ae6-4328-11ed-939f-aae2aa7b83bb","type":"Microsoft.Authorization/roleAssignments","name":"99965ae6-4328-11ed-939f-aae2aa7b83bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T14:35:23.0970392Z","updatedOn":"2022-10-03T14:35:23.0970392Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9c1721f9-4328-11ed-939f-aae2aa7b83bb","type":"Microsoft.Authorization/roleAssignments","name":"9c1721f9-4328-11ed-939f-aae2aa7b83bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T18:39:25.8455066Z","updatedOn":"2022-10-03T18:39:25.8455066Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":"adding + my aksdev SPs per https://dev.azure.com/msazure/CloudNativeCompute/_wiki/wikis/CloudNativeCompute.wiki/54089/Standalone-Environment-Usage?anchor=authentication-failed-issues"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b4fc89b2-a0bc-4661-a4f4-96170e3da3c3","type":"Microsoft.Authorization/roleAssignments","name":"b4fc89b2-a0bc-4661-a4f4-96170e3da3c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T21:14:21.6709207Z","updatedOn":"2022-10-03T21:14:21.6709207Z","createdBy":"2182129f-e575-4986-a7fb-2be7772ba46f","updatedBy":"2182129f-e575-4986-a7fb-2be7772ba46f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/58ef0b60-4360-11ed-84ae-4ef510510e8a","type":"Microsoft.Authorization/roleAssignments","name":"58ef0b60-4360-11ed-84ae-4ef510510e8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T21:14:25.9942421Z","updatedOn":"2022-10-03T21:14:25.9942421Z","createdBy":"2182129f-e575-4986-a7fb-2be7772ba46f","updatedBy":"2182129f-e575-4986-a7fb-2be7772ba46f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5b271148-4360-11ed-84ae-4ef510510e8a","type":"Microsoft.Authorization/roleAssignments","name":"5b271148-4360-11ed-84ae-4ef510510e8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T08:46:58.1120536Z","updatedOn":"2022-10-04T08:46:58.1120536Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46d7c91e-4182-4715-9d5c-c143514d0e96","type":"Microsoft.Authorization/roleAssignments","name":"46d7c91e-4182-4715-9d5c-c143514d0e96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T08:46:58.7908585Z","updatedOn":"2022-10-04T08:46:58.7908585Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0215f1ea-81dc-42cd-b2b0-62ed51ec1e8f","type":"Microsoft.Authorization/roleAssignments","name":"0215f1ea-81dc-42cd-b2b0-62ed51ec1e8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T15:17:47.0575990Z","updatedOn":"2022-10-04T15:17:47.0575990Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09dff59a-a350-4eb7-b515-b439773bf953","type":"Microsoft.Authorization/roleAssignments","name":"09dff59a-a350-4eb7-b515-b439773bf953"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T20:25:24.7922965Z","updatedOn":"2022-10-04T20:25:24.7922965Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac245566-4422-11ed-b4e4-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"ac245566-4422-11ed-b4e4-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T20:25:29.7192947Z","updatedOn":"2022-10-04T20:25:29.7192947Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/af78cdbe-4422-11ed-b4e4-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"af78cdbe-4422-11ed-b4e4-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-05T17:17:50.2296097Z","updatedOn":"2022-10-05T17:17:50.2296097Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18d61426-19b2-45ab-a04c-35bf0954b5f2","type":"Microsoft.Authorization/roleAssignments","name":"18d61426-19b2-45ab-a04c-35bf0954b5f2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T21:18:34.5111716Z","updatedOn":"2022-10-06T21:18:34.5111716Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/90e84a6f-382e-4cd0-8b7c-249f30414d26","type":"Microsoft.Authorization/roleAssignments","name":"90e84a6f-382e-4cd0-8b7c-249f30414d26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T21:19:26.0775289Z","updatedOn":"2022-10-06T21:19:26.0775289Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/245ffe6b-708b-41b4-b4a5-0328063f9511","type":"Microsoft.Authorization/roleAssignments","name":"245ffe6b-708b-41b4-b4a5-0328063f9511"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T22:01:04.9042316Z","updatedOn":"2022-10-06T22:01:04.9042316Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/809518d2-215b-449f-9909-1cf5275f82ff","type":"Microsoft.Authorization/roleAssignments","name":"809518d2-215b-449f-9909-1cf5275f82ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T22:01:18.8874783Z","updatedOn":"2022-10-06T22:01:18.8874783Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/50ca23bf-0051-4116-a073-86a9415cc7e4","type":"Microsoft.Authorization/roleAssignments","name":"50ca23bf-0051-4116-a073-86a9415cc7e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T00:36:14.3318961Z","updatedOn":"2022-10-07T00:36:14.3318961Z","createdBy":"b3ae1fad-98a9-46c4-bd0b-193e8efd9450","updatedBy":"b3ae1fad-98a9-46c4-bd0b-193e8efd9450","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ba8ceaf-45d8-11ed-bb9e-0eabbd04010c","type":"Microsoft.Authorization/roleAssignments","name":"0ba8ceaf-45d8-11ed-bb9e-0eabbd04010c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:18.2176259Z","updatedOn":"2022-10-07T16:36:18.2176259Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0eafb5be-ea9a-495c-82c9-8337449b1150","type":"Microsoft.Authorization/roleAssignments","name":"0eafb5be-ea9a-495c-82c9-8337449b1150"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:22.7662640Z","updatedOn":"2022-10-07T16:36:22.7662640Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7cb15a6c-7b73-430f-91aa-02113db930cb","type":"Microsoft.Authorization/roleAssignments","name":"7cb15a6c-7b73-430f-91aa-02113db930cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:29.4358024Z","updatedOn":"2022-10-07T16:36:29.4358024Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1b259a44-7824-434b-8f81-8df465b85fd5","type":"Microsoft.Authorization/roleAssignments","name":"1b259a44-7824-434b-8f81-8df465b85fd5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:33.7158336Z","updatedOn":"2022-10-07T16:36:33.7158336Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3156b3a1-bc03-4d84-b2df-09d0d0eab4b1","type":"Microsoft.Authorization/roleAssignments","name":"3156b3a1-bc03-4d84-b2df-09d0d0eab4b1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:35.7999116Z","updatedOn":"2022-10-07T16:36:35.7999116Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1d30073-ff57-48fa-96e7-dfc85b8c7975","type":"Microsoft.Authorization/roleAssignments","name":"b1d30073-ff57-48fa-96e7-dfc85b8c7975"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-09T05:08:21.9096837Z","updatedOn":"2022-10-09T05:08:21.9096837Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d747b25-fa91-4429-a72b-0a4e2079ed03","type":"Microsoft.Authorization/roleAssignments","name":"8d747b25-fa91-4429-a72b-0a4e2079ed03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-10T05:53:40.9849719Z","updatedOn":"2022-10-10T05:53:40.9849719Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3cfb29d-485f-11ed-b38e-562c47d8c70b","type":"Microsoft.Authorization/roleAssignments","name":"e3cfb29d-485f-11ed-b38e-562c47d8c70b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-10T05:53:46.7676576Z","updatedOn":"2022-10-10T05:53:46.7676576Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e6c4b18f-485f-11ed-b38e-562c47d8c70b","type":"Microsoft.Authorization/roleAssignments","name":"e6c4b18f-485f-11ed-b38e-562c47d8c70b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-10T19:26:54.0213364Z","updatedOn":"2022-10-10T19:26:54.0213364Z","createdBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","updatedBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ed9bd3d-48d1-11ed-8d0c-000d3af6a88e","type":"Microsoft.Authorization/roleAssignments","name":"7ed9bd3d-48d1-11ed-8d0c-000d3af6a88e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T05:01:21.4237199Z","updatedOn":"2022-10-11T05:01:21.4237199Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbc092b8-61c0-429f-bc40-457c06ef2ae3","type":"Microsoft.Authorization/roleAssignments","name":"bbc092b8-61c0-429f-bc40-457c06ef2ae3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T06:32:06.2810453Z","updatedOn":"2022-10-11T06:32:06.2810453Z","createdBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","updatedBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c482116-492e-11ed-b1e5-50814031cc1b","type":"Microsoft.Authorization/roleAssignments","name":"6c482116-492e-11ed-b1e5-50814031cc1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T06:32:11.8691902Z","updatedOn":"2022-10-11T06:32:11.8691902Z","createdBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","updatedBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6f333b0b-492e-11ed-b1e5-50814031cc1b","type":"Microsoft.Authorization/roleAssignments","name":"6f333b0b-492e-11ed-b1e5-50814031cc1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T10:41:27.4966216Z","updatedOn":"2022-10-11T10:41:27.4966216Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4aaba87d-be3b-49d5-90e6-02100140c50d","type":"Microsoft.Authorization/roleAssignments","name":"4aaba87d-be3b-49d5-90e6-02100140c50d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-12T06:14:22.3962768Z","updatedOn":"2022-10-12T06:14:22.3962768Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c7ad8940-3c2c-4a0a-b59a-5c6408cce033","type":"Microsoft.Authorization/roleAssignments","name":"c7ad8940-3c2c-4a0a-b59a-5c6408cce033"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-12T23:06:16.2844894Z","updatedOn":"2022-10-12T23:06:16.2844894Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8434c983-cdd3-40c4-9531-78b5f16fea23","type":"Microsoft.Authorization/roleAssignments","name":"8434c983-cdd3-40c4-9531-78b5f16fea23"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-12T23:06:16.4551494Z","updatedOn":"2022-10-12T23:06:16.4551494Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4281f456-78ed-4ef7-b058-d980c90bf6f9","type":"Microsoft.Authorization/roleAssignments","name":"4281f456-78ed-4ef7-b058-d980c90bf6f9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-18T14:04:58.5223716Z","updatedOn":"2022-10-18T14:04:58.5223716Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9158a450-cec7-48ba-8469-fc085e252e56","type":"Microsoft.Authorization/roleAssignments","name":"9158a450-cec7-48ba-8469-fc085e252e56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-19T17:08:57.8704270Z","updatedOn":"2022-10-19T17:08:57.8704270Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf874421-44f9-4a19-8abd-da0f4f04a24f","type":"Microsoft.Authorization/roleAssignments","name":"bf874421-44f9-4a19-8abd-da0f4f04a24f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-19T23:09:40.3682015Z","updatedOn":"2022-10-19T23:09:40.3682015Z","createdBy":"57440c04-5eed-4c74-92b6-44b016b882f2","updatedBy":"57440c04-5eed-4c74-92b6-44b016b882f2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2bafd93-beec-4d8b-b5f0-9893ef27a090","type":"Microsoft.Authorization/roleAssignments","name":"b2bafd93-beec-4d8b-b5f0-9893ef27a090"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-25T20:45:40.4378406Z","updatedOn":"2022-10-25T20:45:40.4378406Z","createdBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","updatedBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbadcf84-54a5-11ed-b2c3-0e0011011627","type":"Microsoft.Authorization/roleAssignments","name":"fbadcf84-54a5-11ed-b2c3-0e0011011627"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-25T20:45:44.2349413Z","updatedOn":"2022-10-25T20:45:44.2349413Z","createdBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","updatedBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fde7916d-54a5-11ed-b2c3-0e0011011627","type":"Microsoft.Authorization/roleAssignments","name":"fde7916d-54a5-11ed-b2c3-0e0011011627"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T16:44:45.2471286Z","updatedOn":"2022-10-26T16:44:45.2471286Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6649fcf-1731-4db5-8e3b-31af16600402","type":"Microsoft.Authorization/roleAssignments","name":"c6649fcf-1731-4db5-8e3b-31af16600402"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T21:24:42.6980121Z","updatedOn":"2022-10-26T21:24:42.6980121Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b1323cf-e4ec-4454-ac08-5f88d588f133","type":"Microsoft.Authorization/roleAssignments","name":"9b1323cf-e4ec-4454-ac08-5f88d588f133"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T23:12:13.5663015Z","updatedOn":"2022-10-26T23:12:13.5663015Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9db19562-5583-11ed-a49b-aa665a565a49","type":"Microsoft.Authorization/roleAssignments","name":"9db19562-5583-11ed-a49b-aa665a565a49"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-27T20:49:50.5273108Z","updatedOn":"2022-10-27T20:49:50.5273108Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1a0bbbc6-febb-4d40-9e39-5274a2edd538","type":"Microsoft.Authorization/roleAssignments","name":"1a0bbbc6-febb-4d40-9e39-5274a2edd538"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-31T21:38:36.6886945Z","updatedOn":"2022-10-31T21:38:36.6886945Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a85bdf2-6490-4989-9276-f2071fcf02c7","type":"Microsoft.Authorization/roleAssignments","name":"6a85bdf2-6490-4989-9276-f2071fcf02c7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-01T17:32:59.4211774Z","updatedOn":"2022-11-01T17:32:59.4211774Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a3d71f8-5a0b-11ed-ae92-000d3a6dafe7","type":"Microsoft.Authorization/roleAssignments","name":"3a3d71f8-5a0b-11ed-ae92-000d3a6dafe7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-03T20:33:30.2762577Z","updatedOn":"2022-11-03T20:33:30.2762577Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6983693-5bb6-11ed-ae23-72674b3691e8","type":"Microsoft.Authorization/roleAssignments","name":"c6983693-5bb6-11ed-ae23-72674b3691e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-03T20:33:33.9941086Z","updatedOn":"2022-11-03T20:33:33.9941086Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c90a1190-5bb6-11ed-ae23-72674b3691e8","type":"Microsoft.Authorization/roleAssignments","name":"c90a1190-5bb6-11ed-ae23-72674b3691e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-03T22:01:34.3526622Z","updatedOn":"2022-11-03T22:01:34.3526622Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/572d1281-1073-4df2-a41a-6ec6ab01ccf4","type":"Microsoft.Authorization/roleAssignments","name":"572d1281-1073-4df2-a41a-6ec6ab01ccf4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-04T17:44:58.1069368Z","updatedOn":"2022-11-04T17:44:58.1069368Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65ead23f-5c68-11ed-81d0-000d3ac6042c","type":"Microsoft.Authorization/roleAssignments","name":"65ead23f-5c68-11ed-81d0-000d3ac6042c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-04T17:44:58.3889675Z","updatedOn":"2022-11-04T17:44:58.3889675Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65f36b55-5c68-11ed-81d0-000d3ac6042c","type":"Microsoft.Authorization/roleAssignments","name":"65f36b55-5c68-11ed-81d0-000d3ac6042c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-07T21:00:30.9927458Z","updatedOn":"2022-11-07T21:00:30.9927458Z","createdBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","updatedBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3631fc51-5edf-11ed-b8d9-bee096dd1f56","type":"Microsoft.Authorization/roleAssignments","name":"3631fc51-5edf-11ed-b8d9-bee096dd1f56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-07T23:06:40.7350135Z","updatedOn":"2022-11-07T23:06:40.7350135Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82f4d8cb-f92b-4183-8a57-9a266f8ed475","type":"Microsoft.Authorization/roleAssignments","name":"82f4d8cb-f92b-4183-8a57-9a266f8ed475"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T00:45:45.2308519Z","updatedOn":"2022-11-08T00:45:45.2308519Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad83b644-5efe-11ed-9afa-76a84c3a8985","type":"Microsoft.Authorization/roleAssignments","name":"ad83b644-5efe-11ed-9afa-76a84c3a8985"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T00:45:54.5576407Z","updatedOn":"2022-11-08T00:45:54.5576407Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2f5ecd2-5efe-11ed-9afa-76a84c3a8985","type":"Microsoft.Authorization/roleAssignments","name":"b2f5ecd2-5efe-11ed-9afa-76a84c3a8985"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T17:38:14.0062888Z","updatedOn":"2022-11-08T17:38:14.0062888Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5a5cfdf-e8ad-4d53-a1a9-3a7191efa68a","type":"Microsoft.Authorization/roleAssignments","name":"b5a5cfdf-e8ad-4d53-a1a9-3a7191efa68a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T20:41:35.2460898Z","updatedOn":"2022-11-08T20:41:35.2460898Z","createdBy":"77ac7883-1816-45e5-8784-444d95195dfe","updatedBy":"77ac7883-1816-45e5-8784-444d95195dfe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbdb8a06-5fa5-11ed-87b5-52a0a45b7fbb","type":"Microsoft.Authorization/roleAssignments","name":"bbdb8a06-5fa5-11ed-87b5-52a0a45b7fbb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T20:41:39.0095016Z","updatedOn":"2022-11-08T20:41:39.0095016Z","createdBy":"77ac7883-1816-45e5-8784-444d95195dfe","updatedBy":"77ac7883-1816-45e5-8784-444d95195dfe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be17ddaf-5fa5-11ed-87b5-52a0a45b7fbb","type":"Microsoft.Authorization/roleAssignments","name":"be17ddaf-5fa5-11ed-87b5-52a0a45b7fbb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T04:24:29.2903032Z","updatedOn":"2022-11-09T04:24:29.2903032Z","createdBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","updatedBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6672401b-5fe6-11ed-8d26-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"6672401b-5fe6-11ed-8d26-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T04:24:32.7816834Z","updatedOn":"2022-11-09T04:24:32.7816834Z","createdBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","updatedBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/687908be-5fe6-11ed-8d26-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"687908be-5fe6-11ed-8d26-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T06:49:46.3320446Z","updatedOn":"2022-11-09T06:49:46.3320446Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40e96901-a9d4-4fc3-8d80-c55979cad3f4","type":"Microsoft.Authorization/roleAssignments","name":"40e96901-a9d4-4fc3-8d80-c55979cad3f4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T06:57:50.8140024Z","updatedOn":"2022-11-09T06:57:50.8140024Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54117e37-77ed-4fc2-a64e-7f5cfee1e3cb","type":"Microsoft.Authorization/roleAssignments","name":"54117e37-77ed-4fc2-a64e-7f5cfee1e3cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-15T17:00:53.9224351Z","updatedOn":"2022-11-15T17:00:53.9224351Z","createdBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","updatedBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb3fa35d-14c6-476e-965d-3287df835fb6","type":"Microsoft.Authorization/roleAssignments","name":"eb3fa35d-14c6-476e-965d-3287df835fb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-16T17:45:41.6438991Z","updatedOn":"2022-11-16T18:12:21.7351318Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89d1db20-3058-52b8-8e72-ffbee92652bc","type":"Microsoft.Authorization/roleAssignments","name":"89d1db20-3058-52b8-8e72-ffbee92652bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-17T20:00:21.8300657Z","updatedOn":"2022-11-17T20:00:21.8300657Z","createdBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","updatedBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/770d246f-66b2-11ed-9a7a-5eff6da83896","type":"Microsoft.Authorization/roleAssignments","name":"770d246f-66b2-11ed-9a7a-5eff6da83896"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:13:16.4073065Z","updatedOn":"2023-05-12T17:27:11.5958673Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d9c1e76-d133-5014-a053-fa81b5a5ddcc","type":"Microsoft.Authorization/roleAssignments","name":"8d9c1e76-d133-5014-a053-fa81b5a5ddcc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:13:16.3810810Z","updatedOn":"2023-05-12T17:27:11.6002511Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9589fe9-37b5-52e8-b6a1-05baa0e40ea2","type":"Microsoft.Authorization/roleAssignments","name":"b9589fe9-37b5-52e8-b6a1-05baa0e40ea2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:13:16.4335352Z","updatedOn":"2023-05-12T17:27:11.6253602Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df3deb96-df88-5ecf-9db1-b40cda69a5b1","type":"Microsoft.Authorization/roleAssignments","name":"df3deb96-df88-5ecf-9db1-b40cda69a5b1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-29T22:31:21.5082047Z","updatedOn":"2023-05-12T17:27:12.7611677Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe4c31ea-8d12-5bbd-80e8-749dd04c242c","type":"Microsoft.Authorization/roleAssignments","name":"fe4c31ea-8d12-5bbd-80e8-749dd04c242c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-18T19:59:52.7113168Z","updatedOn":"2022-11-18T19:59:52.7113168Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/909e97c0-677b-11ed-b3d1-4e4b7fc6d2d7","type":"Microsoft.Authorization/roleAssignments","name":"909e97c0-677b-11ed-b3d1-4e4b7fc6d2d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-18T19:59:56.7899280Z","updatedOn":"2022-11-18T19:59:56.7899280Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9302a900-677b-11ed-b3d1-4e4b7fc6d2d7","type":"Microsoft.Authorization/roleAssignments","name":"9302a900-677b-11ed-b3d1-4e4b7fc6d2d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-18T22:57:24.7333928Z","updatedOn":"2022-11-18T22:57:24.7333928Z","createdBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","updatedBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/616b0a5c-ef17-4f5c-8f54-932fb42ed1b6","type":"Microsoft.Authorization/roleAssignments","name":"616b0a5c-ef17-4f5c-8f54-932fb42ed1b6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-20T08:02:14.3563436Z","updatedOn":"2022-11-20T08:02:14.3563436Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59455a7f-8688-4fa9-bca1-b14ff86b45d8","type":"Microsoft.Authorization/roleAssignments","name":"59455a7f-8688-4fa9-bca1-b14ff86b45d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-22T12:28:29.6735062Z","updatedOn":"2022-11-22T12:28:29.6735062Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a01068c-6a61-11ed-b280-38f9d359b369","type":"Microsoft.Authorization/roleAssignments","name":"2a01068c-6a61-11ed-b280-38f9d359b369"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-22T12:28:35.6487701Z","updatedOn":"2022-11-22T12:28:35.6487701Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2dec6a7a-6a61-11ed-b280-38f9d359b369","type":"Microsoft.Authorization/roleAssignments","name":"2dec6a7a-6a61-11ed-b280-38f9d359b369"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-23T19:27:15.6029824Z","updatedOn":"2022-11-23T19:27:15.6029824Z","createdBy":"573ee898-c9b5-4556-b5b7-ba398712832e","updatedBy":"573ee898-c9b5-4556-b5b7-ba398712832e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5624ab6-6b64-11ed-99e5-a29c0e078d5a","type":"Microsoft.Authorization/roleAssignments","name":"d5624ab6-6b64-11ed-99e5-a29c0e078d5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-23T19:27:29.8496193Z","updatedOn":"2022-11-23T19:27:29.8496193Z","createdBy":"573ee898-c9b5-4556-b5b7-ba398712832e","updatedBy":"573ee898-c9b5-4556-b5b7-ba398712832e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ddce2c51-6b64-11ed-99e5-a29c0e078d5a","type":"Microsoft.Authorization/roleAssignments","name":"ddce2c51-6b64-11ed-99e5-a29c0e078d5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-24T08:00:52.4569469Z","updatedOn":"2022-11-24T08:00:52.4569469Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ea38765-a469-4975-a3b3-69c47e46e70b","type":"Microsoft.Authorization/roleAssignments","name":"9ea38765-a469-4975-a3b3-69c47e46e70b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-24T08:01:11.1412012Z","updatedOn":"2022-11-24T08:01:11.1412012Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f7e731a-0d5b-4591-a97d-0ee2053825bb","type":"Microsoft.Authorization/roleAssignments","name":"9f7e731a-0d5b-4591-a97d-0ee2053825bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T08:56:33.0370700Z","updatedOn":"2022-11-28T08:56:33.0370700Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4d08049c-272d-4905-a2b6-cd89456c5382","type":"Microsoft.Authorization/roleAssignments","name":"4d08049c-272d-4905-a2b6-cd89456c5382"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T18:00:17.3116606Z","updatedOn":"2022-11-28T18:00:17.3116606Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/839a632b-6f46-11ed-9f3a-002248be91cc","type":"Microsoft.Authorization/roleAssignments","name":"839a632b-6f46-11ed-9f3a-002248be91cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T21:24:30.3728549Z","updatedOn":"2022-11-28T21:24:30.3728549Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ad622e0-6f63-11ed-a15a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"0ad622e0-6f63-11ed-a15a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T21:24:34.5112467Z","updatedOn":"2022-11-28T21:24:34.5112467Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d6f187c-6f63-11ed-a15a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"0d6f187c-6f63-11ed-a15a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-29T19:42:39.8350492Z","updatedOn":"2022-11-29T19:42:39.8350492Z","createdBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","updatedBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb69dd10-701d-11ed-8940-6ca1001ae258","type":"Microsoft.Authorization/roleAssignments","name":"fb69dd10-701d-11ed-8940-6ca1001ae258"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-29T19:42:43.2096038Z","updatedOn":"2022-11-29T19:42:43.2096038Z","createdBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","updatedBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd6fed09-701d-11ed-8940-6ca1001ae258","type":"Microsoft.Authorization/roleAssignments","name":"fd6fed09-701d-11ed-8940-6ca1001ae258"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-30T07:32:24.0648059Z","updatedOn":"2022-11-30T07:32:24.0648059Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d745d98-b683-45b9-92a8-918aacf64633","type":"Microsoft.Authorization/roleAssignments","name":"2d745d98-b683-45b9-92a8-918aacf64633"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-01T22:00:12.5092022Z","updatedOn":"2022-12-01T22:00:12.5092022Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/29f80035-534e-479f-bf9d-3243cd2eba93","type":"Microsoft.Authorization/roleAssignments","name":"29f80035-534e-479f-bf9d-3243cd2eba93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-02T07:52:06.0754526Z","updatedOn":"2022-12-02T07:52:06.0754526Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/17ce4c2c-8051-4420-a6ac-6aeb91441711","type":"Microsoft.Authorization/roleAssignments","name":"17ce4c2c-8051-4420-a6ac-6aeb91441711"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-02T23:54:37.7637423Z","updatedOn":"2022-12-02T23:54:37.7637423Z","createdBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","updatedBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e8902907-9bef-55f7-9a6d-64e3cf3b1a77","type":"Microsoft.Authorization/roleAssignments","name":"e8902907-9bef-55f7-9a6d-64e3cf3b1a77"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-05T17:29:10.2915092Z","updatedOn":"2022-12-05T17:29:10.2915092Z","createdBy":"500b0839-c682-4003-9106-8f37a381595d","updatedBy":"500b0839-c682-4003-9106-8f37a381595d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/53a3b656-74c2-11ed-b2ea-f21d81f4d94b","type":"Microsoft.Authorization/roleAssignments","name":"53a3b656-74c2-11ed-b2ea-f21d81f4d94b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-05T17:29:19.7335221Z","updatedOn":"2022-12-05T17:29:19.7335221Z","createdBy":"500b0839-c682-4003-9106-8f37a381595d","updatedBy":"500b0839-c682-4003-9106-8f37a381595d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59486582-74c2-11ed-b2ea-f21d81f4d94b","type":"Microsoft.Authorization/roleAssignments","name":"59486582-74c2-11ed-b2ea-f21d81f4d94b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T00:27:21.1321238Z","updatedOn":"2022-12-06T00:27:21.1321238Z","createdBy":"010e39fa-3d22-4576-ad28-9709490d3973","updatedBy":"010e39fa-3d22-4576-ad28-9709490d3973","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bdc7c72a-74fc-11ed-b1d9-fe40d632c9c8","type":"Microsoft.Authorization/roleAssignments","name":"bdc7c72a-74fc-11ed-b1d9-fe40d632c9c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T00:27:26.7978650Z","updatedOn":"2022-12-06T00:27:26.7978650Z","createdBy":"010e39fa-3d22-4576-ad28-9709490d3973","updatedBy":"010e39fa-3d22-4576-ad28-9709490d3973","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c1df0b20-74fc-11ed-b1d9-fe40d632c9c8","type":"Microsoft.Authorization/roleAssignments","name":"c1df0b20-74fc-11ed-b1d9-fe40d632c9c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T08:09:07.9286883Z","updatedOn":"2022-12-06T08:09:07.9286883Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a54f40a-fc73-4967-93de-1fda5f77fa18","type":"Microsoft.Authorization/roleAssignments","name":"8a54f40a-fc73-4967-93de-1fda5f77fa18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T08:09:07.0223985Z","updatedOn":"2022-12-06T08:09:07.0223985Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/37a700cb-bd3a-4961-a7b7-cf21f1049fd6","type":"Microsoft.Authorization/roleAssignments","name":"37a700cb-bd3a-4961-a7b7-cf21f1049fd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-09T14:12:43.2358573Z","updatedOn":"2022-12-09T14:12:43.2358573Z","createdBy":"500b0839-c682-4003-9106-8f37a381595d","updatedBy":"500b0839-c682-4003-9106-8f37a381595d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88d9f0e9-77cb-11ed-a931-4ecc509b30ab","type":"Microsoft.Authorization/roleAssignments","name":"88d9f0e9-77cb-11ed-a931-4ecc509b30ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T12:05:48.4827550Z","updatedOn":"2022-12-12T12:05:48.4827550Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d238237a-b393-4ab0-9f00-cdf16c5d6b05","type":"Microsoft.Authorization/roleAssignments","name":"d238237a-b393-4ab0-9f00-cdf16c5d6b05"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T16:10:53.3465450Z","updatedOn":"2022-12-12T16:10:53.3465450Z","createdBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","updatedBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8bcca047-7a37-11ed-9b42-5a0f21a4ffba","type":"Microsoft.Authorization/roleAssignments","name":"8bcca047-7a37-11ed-9b42-5a0f21a4ffba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T16:10:57.7295344Z","updatedOn":"2022-12-12T16:10:57.7295344Z","createdBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","updatedBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e42900b-7a37-11ed-9b42-5a0f21a4ffba","type":"Microsoft.Authorization/roleAssignments","name":"8e42900b-7a37-11ed-9b42-5a0f21a4ffba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-14T08:51:42.0015523Z","updatedOn":"2022-12-14T08:51:42.0015523Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d01084d-4e3a-414c-ac62-c3ef82dc3302","type":"Microsoft.Authorization/roleAssignments","name":"8d01084d-4e3a-414c-ac62-c3ef82dc3302"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-16T07:20:02.6088062Z","updatedOn":"2022-12-16T07:20:02.6088062Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0cb541fc-7d12-11ed-8232-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"0cb541fc-7d12-11ed-8232-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-20T19:00:39.7938573Z","updatedOn":"2022-12-20T19:00:39.7938573Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/991d89fd-8098-11ed-a1dc-1e0cf6619ffa","type":"Microsoft.Authorization/roleAssignments","name":"991d89fd-8098-11ed-a1dc-1e0cf6619ffa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-21T19:53:55.0673117Z","updatedOn":"2022-12-21T19:53:55.0673117Z","createdBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","updatedBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/31f1b70c-8169-11ed-871d-bc091b9528f6","type":"Microsoft.Authorization/roleAssignments","name":"31f1b70c-8169-11ed-871d-bc091b9528f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-21T19:54:01.7874075Z","updatedOn":"2022-12-21T19:54:01.7874075Z","createdBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","updatedBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35eb2367-8169-11ed-871d-bc091b9528f6","type":"Microsoft.Authorization/roleAssignments","name":"35eb2367-8169-11ed-871d-bc091b9528f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-23T14:42:33.0388657Z","updatedOn":"2022-12-23T14:42:33.0388657Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7077d7fa-4615-4792-b394-80918dd155ce","type":"Microsoft.Authorization/roleAssignments","name":"7077d7fa-4615-4792-b394-80918dd155ce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-28T13:20:44.8421429Z","updatedOn":"2022-12-28T13:20:44.8421429Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b48d252-d31a-57c7-8cf6-cb5fed6d1a67","type":"Microsoft.Authorization/roleAssignments","name":"4b48d252-d31a-57c7-8cf6-cb5fed6d1a67"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-03T12:31:11.2683110Z","updatedOn":"2023-01-03T12:31:11.2683110Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d408ddb7-31cd-4d46-ab59-fe1be61b2bdc","type":"Microsoft.Authorization/roleAssignments","name":"d408ddb7-31cd-4d46-ab59-fe1be61b2bdc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-06T08:15:45.7088191Z","updatedOn":"2023-01-06T08:15:45.7088191Z","createdBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","updatedBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/510806b0-8d9a-11ed-9e4f-000d3ac772b5","type":"Microsoft.Authorization/roleAssignments","name":"510806b0-8d9a-11ed-9e4f-000d3ac772b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-06T08:15:51.6046641Z","updatedOn":"2023-01-06T08:15:51.6046641Z","createdBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","updatedBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54802b41-8d9a-11ed-9e4f-000d3ac772b5","type":"Microsoft.Authorization/roleAssignments","name":"54802b41-8d9a-11ed-9e4f-000d3ac772b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-06T22:24:58.0712756Z","updatedOn":"2023-01-06T22:24:58.0712756Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbcde9e0-3481-49ad-b1f1-e7226db43e33","type":"Microsoft.Authorization/roleAssignments","name":"cbcde9e0-3481-49ad-b1f1-e7226db43e33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-07T00:15:43.3039407Z","updatedOn":"2023-01-07T00:15:43.3039407Z","createdBy":"80a6e936-2bdc-4927-b49e-2a7a19943b90","updatedBy":"80a6e936-2bdc-4927-b49e-2a7a19943b90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7e73e7e9-99f9-5fa0-a5c8-33268a3e7acc","type":"Microsoft.Authorization/roleAssignments","name":"7e73e7e9-99f9-5fa0-a5c8-33268a3e7acc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-08T14:40:12.1322327Z","updatedOn":"2023-01-08T14:40:12.1322327Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9146e5ba-1dce-41c3-bee6-6e854049e485","type":"Microsoft.Authorization/roleAssignments","name":"9146e5ba-1dce-41c3-bee6-6e854049e485"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-08T14:46:46.8171282Z","updatedOn":"2023-01-08T14:46:46.8171282Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3073c0fc-4181-4de7-bb2d-ceb46bd805c2","type":"Microsoft.Authorization/roleAssignments","name":"3073c0fc-4181-4de7-bb2d-ceb46bd805c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-10T05:58:31.6725565Z","updatedOn":"2023-01-10T05:58:31.6725565Z","createdBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","updatedBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce4f420e-90ab-11ed-81da-002248575167","type":"Microsoft.Authorization/roleAssignments","name":"ce4f420e-90ab-11ed-81da-002248575167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-10T05:58:38.3068493Z","updatedOn":"2023-01-10T05:58:38.3068493Z","createdBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","updatedBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2369b82-90ab-11ed-81da-002248575167","type":"Microsoft.Authorization/roleAssignments","name":"d2369b82-90ab-11ed-81da-002248575167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-10T06:45:54.6704864Z","updatedOn":"2023-01-10T06:45:54.6704864Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6de0e553-90b2-11ed-9d42-6045bd78eeea","type":"Microsoft.Authorization/roleAssignments","name":"6de0e553-90b2-11ed-9d42-6045bd78eeea"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-11T22:44:31.5456256Z","updatedOn":"2023-01-11T22:44:31.5456256Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/55a9c9ca-e483-44ad-ab32-17ac0f1905e2","type":"Microsoft.Authorization/roleAssignments","name":"55a9c9ca-e483-44ad-ab32-17ac0f1905e2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-12T07:27:30.7499209Z","updatedOn":"2023-01-12T07:27:30.7499209Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c2fcdf3-9376-46c4-862c-c5478fad402d","type":"Microsoft.Authorization/roleAssignments","name":"6c2fcdf3-9376-46c4-862c-c5478fad402d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-12T20:29:47.8942736Z","updatedOn":"2023-01-12T20:29:47.8942736Z","createdBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","updatedBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dad76eb4-92b7-11ed-9e92-3e22fbc2ce2f","type":"Microsoft.Authorization/roleAssignments","name":"dad76eb4-92b7-11ed-9e92-3e22fbc2ce2f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-12T20:29:51.8091784Z","updatedOn":"2023-01-12T20:29:51.8091784Z","createdBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","updatedBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd198dce-92b7-11ed-9e92-3e22fbc2ce2f","type":"Microsoft.Authorization/roleAssignments","name":"dd198dce-92b7-11ed-9e92-3e22fbc2ce2f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-13T05:50:47.3154688Z","updatedOn":"2023-01-13T05:50:47.3154688Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/38d171ad-9306-11ed-a704-ee47e05c3b1e","type":"Microsoft.Authorization/roleAssignments","name":"38d171ad-9306-11ed-a704-ee47e05c3b1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-13T05:50:53.1628390Z","updatedOn":"2023-01-13T05:50:53.1628390Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3bf43d16-9306-11ed-a704-ee47e05c3b1e","type":"Microsoft.Authorization/roleAssignments","name":"3bf43d16-9306-11ed-a704-ee47e05c3b1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-14T06:07:18.3233862Z","updatedOn":"2023-01-14T06:07:18.3233862Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2587a66-93d1-11ed-a6e9-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"b2587a66-93d1-11ed-a6e9-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-14T06:07:23.4646871Z","updatedOn":"2023-01-14T06:07:23.4646871Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b56e4d80-93d1-11ed-a6e9-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"b56e4d80-93d1-11ed-a6e9-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-16T23:52:20.1337328Z","updatedOn":"2023-01-16T23:52:20.1337328Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/911d588d-e4a0-5501-bd42-db0fe4ac81ea","type":"Microsoft.Authorization/roleAssignments","name":"911d588d-e4a0-5501-bd42-db0fe4ac81ea"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-17T21:03:20.3495010Z","updatedOn":"2023-01-17T21:03:20.3495010Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":"partner + team engineer "},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b200ea13-6210-46cf-b622-5e1fa94d7196","type":"Microsoft.Authorization/roleAssignments","name":"b200ea13-6210-46cf-b622-5e1fa94d7196"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-17T21:55:10.9367237Z","updatedOn":"2023-01-17T21:55:10.9367237Z","createdBy":"252476b5-423c-4de6-8f23-f3b57897abfc","updatedBy":"252476b5-423c-4de6-8f23-f3b57897abfc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9c4d35c3-96b1-11ed-bcb1-aa442d61f9f5","type":"Microsoft.Authorization/roleAssignments","name":"9c4d35c3-96b1-11ed-bcb1-aa442d61f9f5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-18T16:39:36.8544109Z","updatedOn":"2023-01-18T16:39:36.8544109Z","createdBy":"57440c04-5eed-4c74-92b6-44b016b882f2","updatedBy":"57440c04-5eed-4c74-92b6-44b016b882f2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e47587fc-952b-11ed-9582-22998bd40e8c","type":"Microsoft.Authorization/roleAssignments","name":"e47587fc-952b-11ed-9582-22998bd40e8c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-19T06:11:42.7348591Z","updatedOn":"2023-01-19T06:11:42.7348591Z","createdBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","updatedBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dcee111d-97c0-11ed-8b08-5e144daaf885","type":"Microsoft.Authorization/roleAssignments","name":"dcee111d-97c0-11ed-8b08-5e144daaf885"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-19T06:11:46.7450508Z","updatedOn":"2023-01-19T06:11:46.7450508Z","createdBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","updatedBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df259f28-97c0-11ed-8b08-5e144daaf885","type":"Microsoft.Authorization/roleAssignments","name":"df259f28-97c0-11ed-8b08-5e144daaf885"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-20T21:01:23.9458046Z","updatedOn":"2023-05-12T17:27:12.7106298Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f654663-8564-546e-a6fc-452f7b76de5a","type":"Microsoft.Authorization/roleAssignments","name":"5f654663-8564-546e-a6fc-452f7b76de5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T17:09:42.5564083Z","updatedOn":"2023-01-23T17:09:42.5564083Z","createdBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","updatedBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9e2414b-9b40-11ed-96c6-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"b9e2414b-9b40-11ed-96c6-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T17:09:45.5610260Z","updatedOn":"2023-01-23T17:09:45.5610260Z","createdBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","updatedBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbc6263b-9b40-11ed-96c6-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"bbc6263b-9b40-11ed-96c6-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T18:43:59.1011432Z","updatedOn":"2023-01-23T18:43:59.1011432Z","createdBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","updatedBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e58487c6-9b4d-11ed-8c22-8c1645a48227","type":"Microsoft.Authorization/roleAssignments","name":"e58487c6-9b4d-11ed-8c22-8c1645a48227"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T18:44:02.5989503Z","updatedOn":"2023-01-23T18:44:02.5989503Z","createdBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","updatedBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7a002ef-9b4d-11ed-8c22-8c1645a48227","type":"Microsoft.Authorization/roleAssignments","name":"e7a002ef-9b4d-11ed-8c22-8c1645a48227"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-10T06:45:47.1925698Z","updatedOn":"2022-03-10T06:45:47.1925698Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4aaa7af-d414-42e9-bd99-b14d707753a7","type":"Microsoft.Authorization/roleAssignments","name":"e4aaa7af-d414-42e9-bd99-b14d707753a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-11T03:42:35.9073660Z","updatedOn":"2022-03-11T03:42:35.9073660Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a0f9eea-a0ed-11ec-9b90-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"4a0f9eea-a0ed-11ec-9b90-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-11T19:59:10.3149108Z","updatedOn":"2022-03-11T19:59:10.3149108Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b6e06a80-a175-11ec-8f66-002248778035","type":"Microsoft.Authorization/roleAssignments","name":"b6e06a80-a175-11ec-8f66-002248778035"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-14T05:57:31.9169431Z","updatedOn":"2022-03-14T05:57:31.9169431Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/04323e79-5b88-4b91-86e7-b8bfa1c2d8b9","type":"Microsoft.Authorization/roleAssignments","name":"04323e79-5b88-4b91-86e7-b8bfa1c2d8b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-14T23:57:21.8404827Z","updatedOn":"2022-03-14T23:57:21.8404827Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/824ca9a3-a3f2-11ec-b5c2-626147b15e2d","type":"Microsoft.Authorization/roleAssignments","name":"824ca9a3-a3f2-11ec-b5c2-626147b15e2d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-15T05:47:06.0764200Z","updatedOn":"2022-03-15T05:47:06.0764200Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d8c0655-15f2-4864-9ebf-6c5d95ea5797","type":"Microsoft.Authorization/roleAssignments","name":"3d8c0655-15f2-4864-9ebf-6c5d95ea5797"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-15T05:48:19.3617384Z","updatedOn":"2022-03-15T05:48:19.3617384Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5a1298d-008a-4dad-95db-70d41dc0ff2e","type":"Microsoft.Authorization/roleAssignments","name":"b5a1298d-008a-4dad-95db-70d41dc0ff2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-15T19:57:01.4651070Z","updatedOn":"2022-03-15T19:57:01.4651070Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f90898e-0a20-4778-b842-abc610614801","type":"Microsoft.Authorization/roleAssignments","name":"2f90898e-0a20-4778-b842-abc610614801"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-16T02:56:12.3673604Z","updatedOn":"2022-03-16T02:56:12.3673604Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be953738-c4c0-4da0-9b0f-42c89eb31451","type":"Microsoft.Authorization/roleAssignments","name":"be953738-c4c0-4da0-9b0f-42c89eb31451"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T10:12:31.1977135Z","updatedOn":"2022-03-21T10:12:31.1977135Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92ad8cda-f519-4160-b28d-6e0e8d19fb8e","type":"Microsoft.Authorization/roleAssignments","name":"92ad8cda-f519-4160-b28d-6e0e8d19fb8e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T17:57:33.7215077Z","updatedOn":"2022-03-21T17:57:33.7215077Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6210523c-a940-11ec-88f4-00224850c1b5","type":"Microsoft.Authorization/roleAssignments","name":"6210523c-a940-11ec-88f4-00224850c1b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T22:00:37.3135630Z","updatedOn":"2022-03-21T22:00:37.3135630Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5678b88f-a962-11ec-b646-0022487a9d6b","type":"Microsoft.Authorization/roleAssignments","name":"5678b88f-a962-11ec-b646-0022487a9d6b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T23:00:49.2441783Z","updatedOn":"2022-03-21T23:00:49.2441783Z","createdBy":"3a522b7c-61fd-4fcf-aa7f-3e8a6e7cc3af","updatedBy":"3a522b7c-61fd-4fcf-aa7f-3e8a6e7cc3af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bef73288-a96a-11ec-bd2b-6acf089951ab","type":"Microsoft.Authorization/roleAssignments","name":"bef73288-a96a-11ec-bd2b-6acf089951ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-22T04:03:04.2502656Z","updatedOn":"2022-03-22T04:03:04.2502656Z","createdBy":"9d0cc8e5-b005-4b2b-9a31-3b6c624d5330","updatedBy":"9d0cc8e5-b005-4b2b-9a31-3b6c624d5330","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8a4f8a7-a994-11ec-b30e-4a9f38c1a382","type":"Microsoft.Authorization/roleAssignments","name":"f8a4f8a7-a994-11ec-b30e-4a9f38c1a382"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-22T13:40:03.8073664Z","updatedOn":"2022-03-22T13:40:03.8073664Z","createdBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","updatedBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/93f47801-a9e5-11ec-86a5-3a3e6c7e1ac8","type":"Microsoft.Authorization/roleAssignments","name":"93f47801-a9e5-11ec-86a5-3a3e6c7e1ac8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-23T10:14:54.3796697Z","updatedOn":"2022-03-23T10:14:54.3796697Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e3f182b-aa92-11ec-9c92-18c04da96df8","type":"Microsoft.Authorization/roleAssignments","name":"0e3f182b-aa92-11ec-9c92-18c04da96df8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-23T23:47:01.7045602Z","updatedOn":"2022-03-23T23:47:01.7045602Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5312596-61f6-486a-ad10-fdb35f1c1665","type":"Microsoft.Authorization/roleAssignments","name":"d5312596-61f6-486a-ad10-fdb35f1c1665"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-25T05:07:14.4623821Z","updatedOn":"2022-03-25T05:07:14.4623821Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df7fe6e9-3cf1-4547-ba81-c1ad0d7d565d","type":"Microsoft.Authorization/roleAssignments","name":"df7fe6e9-3cf1-4547-ba81-c1ad0d7d565d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-29T14:13:44.9635087Z","updatedOn":"2022-03-29T14:13:44.9635087Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/530db943-4ece-46bc-b456-79374d5ec2ba","type":"Microsoft.Authorization/roleAssignments","name":"530db943-4ece-46bc-b456-79374d5ec2ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-30T16:18:52.9056346Z","updatedOn":"2022-03-30T16:18:52.9056346Z","createdBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","updatedBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3e0d853-568c-4e64-851d-2292fe92a007","type":"Microsoft.Authorization/roleAssignments","name":"d3e0d853-568c-4e64-851d-2292fe92a007"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-05T04:54:30.2719737Z","updatedOn":"2022-04-05T04:54:30.2719737Z","createdBy":"f0b00319-13f5-4c2b-928a-73ccb5edd222","updatedBy":"f0b00319-13f5-4c2b-928a-73ccb5edd222","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78ffc9e7-b49c-11ec-964c-b219be9347e3","type":"Microsoft.Authorization/roleAssignments","name":"78ffc9e7-b49c-11ec-964c-b219be9347e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-05T22:40:43.0016940Z","updatedOn":"2022-04-05T22:40:43.0016940Z","createdBy":"639a731d-01eb-47bc-88aa-c1e2ba14db02","updatedBy":"639a731d-01eb-47bc-88aa-c1e2ba14db02","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c9e0e6c-b531-11ec-aea8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6c9e0e6c-b531-11ec-aea8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-06T12:49:05.2173956Z","updatedOn":"2022-04-06T12:49:05.2173956Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f0a7f4e5-b5a7-11ec-bae5-000d3a6f3c6e","type":"Microsoft.Authorization/roleAssignments","name":"f0a7f4e5-b5a7-11ec-bae5-000d3a6f3c6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-07T01:16:34.9503446Z","updatedOn":"2022-04-07T01:16:34.9503446Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5bdb51f8-5551-44f9-9819-a52fa97c2fef","type":"Microsoft.Authorization/roleAssignments","name":"5bdb51f8-5551-44f9-9819-a52fa97c2fef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-11T05:16:56.1225175Z","updatedOn":"2022-04-11T05:16:56.1225175Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99904768-b956-11ec-a61a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"99904768-b956-11ec-a61a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T23:22:51.6419715Z","updatedOn":"2022-04-12T23:22:51.6419715Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/788b9be6-bab7-11ec-b096-0022487898d6","type":"Microsoft.Authorization/roleAssignments","name":"788b9be6-bab7-11ec-b096-0022487898d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T07:42:38.9160126Z","updatedOn":"2022-04-13T07:42:38.9160126Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a58e304-bafd-11ec-8461-a2dde8388af9","type":"Microsoft.Authorization/roleAssignments","name":"4a58e304-bafd-11ec-8461-a2dde8388af9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T16:12:39.4214747Z","updatedOn":"2022-04-13T16:12:39.4214747Z","createdBy":"c302f71c-7b89-4d55-8c87-135833038531","updatedBy":"c302f71c-7b89-4d55-8c87-135833038531","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3bd4838c-4c24-4bb6-b31f-d055dc68694f","type":"Microsoft.Authorization/roleAssignments","name":"3bd4838c-4c24-4bb6-b31f-d055dc68694f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T09:53:20.2997466Z","updatedOn":"2022-04-14T09:53:20.2997466Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b44f0aaa-bbd8-11ec-8da6-0a4cab55437d","type":"Microsoft.Authorization/roleAssignments","name":"b44f0aaa-bbd8-11ec-8da6-0a4cab55437d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T16:49:01.5455829Z","updatedOn":"2022-04-14T16:49:01.5455829Z","createdBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","updatedBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","delegatedManagedIdentityResourceId":null,"description":"Allows + github actions to run e2e tests. Only the main branch is permitted access, + and credentials are not shared with forks."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4e9d34c-9113-45d4-a0f0-175593c38c33","type":"Microsoft.Authorization/roleAssignments","name":"f4e9d34c-9113-45d4-a0f0-175593c38c33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-20T06:23:32.6340955Z","updatedOn":"2022-04-20T06:23:32.6340955Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6675beb7-c072-11ec-b9ab-000d3ac3f60e","type":"Microsoft.Authorization/roleAssignments","name":"6675beb7-c072-11ec-b9ab-000d3ac3f60e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-20T18:02:47.6341581Z","updatedOn":"2022-04-20T18:02:47.6341581Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/56617dbb-76a1-401d-96fe-8a22f58284d8","type":"Microsoft.Authorization/roleAssignments","name":"56617dbb-76a1-401d-96fe-8a22f58284d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T08:17:07.1604388Z","updatedOn":"2022-04-21T08:17:07.1604388Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6e60c2be-c14b-11ec-82b0-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6e60c2be-c14b-11ec-82b0-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T21:36:13.8709604Z","updatedOn":"2022-04-21T21:36:13.8709604Z","createdBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","updatedBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/10b94b6e-c1bb-11ec-9ff7-523c2f7f99a3","type":"Microsoft.Authorization/roleAssignments","name":"10b94b6e-c1bb-11ec-9ff7-523c2f7f99a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-22T18:55:55.5256074Z","updatedOn":"2022-04-22T18:55:55.5256074Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6917978-c26d-11ec-a699-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"d6917978-c26d-11ec-a699-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-24T10:36:03.4988906Z","updatedOn":"2022-04-24T10:36:03.4988906Z","createdBy":"d3cd2b55-3b25-4b68-b6fd-a08967de9266","updatedBy":"d3cd2b55-3b25-4b68-b6fd-a08967de9266","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/558d3e63-c3ba-11ec-b4f9-000d3ac7d8f0","type":"Microsoft.Authorization/roleAssignments","name":"558d3e63-c3ba-11ec-b4f9-000d3ac7d8f0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-25T06:33:58.7782201Z","updatedOn":"2022-04-25T06:33:58.7782201Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ae507161-c461-11ec-b99d-4a4f5b60a172","type":"Microsoft.Authorization/roleAssignments","name":"ae507161-c461-11ec-b99d-4a4f5b60a172"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-26T16:28:17.7010346Z","updatedOn":"2022-04-26T16:28:17.7010346Z","createdBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","updatedBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e04b1510-c57d-11ec-a3c9-0641de48d9d3","type":"Microsoft.Authorization/roleAssignments","name":"e04b1510-c57d-11ec-a3c9-0641de48d9d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-26T21:31:37.1620998Z","updatedOn":"2022-04-26T21:31:37.1620998Z","createdBy":"9bf576b7-c3cf-492b-9bcf-8c8832e2e0a5","updatedBy":"9bf576b7-c3cf-492b-9bcf-8c8832e2e0a5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/409a9eb9-c5a8-11ec-b358-d20abc546c29","type":"Microsoft.Authorization/roleAssignments","name":"409a9eb9-c5a8-11ec-b358-d20abc546c29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-28T07:13:54.9152651Z","updatedOn":"2022-04-28T07:13:54.9152651Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5f3166a-ed3f-43a7-9b34-bb910beaee12","type":"Microsoft.Authorization/roleAssignments","name":"f5f3166a-ed3f-43a7-9b34-bb910beaee12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T12:14:12.5786055Z","updatedOn":"2022-05-02T12:14:12.5786055Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f06c939-ca11-11ec-9966-da65ad1ab332","type":"Microsoft.Authorization/roleAssignments","name":"5f06c939-ca11-11ec-9966-da65ad1ab332"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:17.4008338Z","updatedOn":"2022-05-02T13:40:17.4008338Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/846f4e2d-0ec9-48ef-fd6e-6ac1cb7586e6","type":"Microsoft.Authorization/roleAssignments","name":"846f4e2d-0ec9-48ef-fd6e-6ac1cb7586e6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.8453423Z","updatedOn":"2022-05-02T13:40:18.8453423Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e72a2b8a-2c36-4ac1-aec3-4fa68f3cae16","type":"Microsoft.Authorization/roleAssignments","name":"e72a2b8a-2c36-4ac1-aec3-4fa68f3cae16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.0609853Z","updatedOn":"2022-05-02T13:40:18.0609853Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/72e6bf18-35fb-436e-3e05-9ba0a0747299","type":"Microsoft.Authorization/roleAssignments","name":"72e6bf18-35fb-436e-3e05-9ba0a0747299"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.1173679Z","updatedOn":"2022-05-02T13:40:18.1173679Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/724e274f-6e37-445c-608e-199fb9eaa982","type":"Microsoft.Authorization/roleAssignments","name":"724e274f-6e37-445c-608e-199fb9eaa982"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T16:59:33.5195217Z","updatedOn":"2022-05-02T16:59:33.5195217Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/98620dcd-bcc5-4828-b846-369c64574ee1","type":"Microsoft.Authorization/roleAssignments","name":"98620dcd-bcc5-4828-b846-369c64574ee1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T06:36:46.9583100Z","updatedOn":"2022-05-09T06:36:46.9583100Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5a313ab-6903-471c-a6bf-8d84989e8cb4","type":"Microsoft.Authorization/roleAssignments","name":"d5a313ab-6903-471c-a6bf-8d84989e8cb4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T22:20:41.5499828Z","updatedOn":"2022-05-09T22:20:41.5499828Z","createdBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","updatedBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/425f8b8d-cfe6-11ec-bbe5-00155ddd560d","type":"Microsoft.Authorization/roleAssignments","name":"425f8b8d-cfe6-11ec-bbe5-00155ddd560d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-10T06:15:39.4482664Z","updatedOn":"2022-05-10T06:15:39.4482664Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a2ff126-fb32-4ca9-8c4d-c8b22209cbc1","type":"Microsoft.Authorization/roleAssignments","name":"8a2ff126-fb32-4ca9-8c4d-c8b22209cbc1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-11T23:10:09.0651064Z","updatedOn":"2022-05-11T23:10:09.0651064Z","createdBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","updatedBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/804a630f-d17f-11ec-bb71-6045bdab52dc","type":"Microsoft.Authorization/roleAssignments","name":"804a630f-d17f-11ec-bb71-6045bdab52dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-12T13:47:03.3832395Z","updatedOn":"2022-05-12T13:47:03.3832395Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00bc6898-d1fa-11ec-974a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"00bc6898-d1fa-11ec-974a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-13T20:36:59.6109396Z","updatedOn":"2022-05-13T20:36:59.6109396Z","createdBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","updatedBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ea3a01d-d2fc-11ec-9997-be6e344e58c1","type":"Microsoft.Authorization/roleAssignments","name":"6ea3a01d-d2fc-11ec-9997-be6e344e58c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-17T06:49:11.7087809Z","updatedOn":"2022-05-17T06:49:11.7087809Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07f76b15-d899-4d21-8542-29c2479e05e1","type":"Microsoft.Authorization/roleAssignments","name":"07f76b15-d899-4d21-8542-29c2479e05e1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-18T13:22:09.5941967Z","updatedOn":"2022-05-18T13:22:09.5941967Z","createdBy":"52d64fbe-1728-4b2b-a0c4-849705cb9c96","updatedBy":"52d64fbe-1728-4b2b-a0c4-849705cb9c96","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/847201fc-d6ad-11ec-a176-000d3a083c47","type":"Microsoft.Authorization/roleAssignments","name":"847201fc-d6ad-11ec-a176-000d3a083c47"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-20T22:35:09.9396236Z","updatedOn":"2022-05-20T22:35:09.9396236Z","createdBy":"1ec25b73-94d5-4bf9-a56f-ca7d9bd4164c","updatedBy":"1ec25b73-94d5-4bf9-a56f-ca7d9bd4164c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5d512f6-fb53-4fad-b3be-ec154c7a6085","type":"Microsoft.Authorization/roleAssignments","name":"c5d512f6-fb53-4fad-b3be-ec154c7a6085"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-22T23:45:36.9119159Z","updatedOn":"2022-05-22T23:45:36.9119159Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46fd33ed-da29-11ec-919f-6045bd7a16bc","type":"Microsoft.Authorization/roleAssignments","name":"46fd33ed-da29-11ec-919f-6045bd7a16bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-23T03:50:38.5802008Z","updatedOn":"2022-05-23T03:50:38.5802008Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ab46785f-2521-4172-871f-91e7dc500a5b","type":"Microsoft.Authorization/roleAssignments","name":"ab46785f-2521-4172-871f-91e7dc500a5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-23T18:09:05.5672217Z","updatedOn":"2022-05-23T18:09:05.5672217Z","createdBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","updatedBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3f47f83-e599-4106-974f-5ff73955ffa6","type":"Microsoft.Authorization/roleAssignments","name":"e3f47f83-e599-4106-974f-5ff73955ffa6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-24T20:49:20.4480948Z","updatedOn":"2022-05-24T20:49:20.4480948Z","createdBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","updatedBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbf490ce-dba2-11ec-b0af-6045bdab52dc","type":"Microsoft.Authorization/roleAssignments","name":"fbf490ce-dba2-11ec-b0af-6045bdab52dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-25T18:39:32.8389167Z","updatedOn":"2022-05-25T18:39:32.8389167Z","createdBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","updatedBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/048a3cf1-dc5a-11ec-8804-6045bdab52dc","type":"Microsoft.Authorization/roleAssignments","name":"048a3cf1-dc5a-11ec-8804-6045bdab52dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T01:53:46.3648590Z","updatedOn":"2022-05-26T01:53:46.3648590Z","createdBy":"834b5e76-453d-44f5-80ff-3481c8415d66","updatedBy":"834b5e76-453d-44f5-80ff-3481c8415d66","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac5ab95a-dc96-11ec-92bb-065f8efd402d","type":"Microsoft.Authorization/roleAssignments","name":"ac5ab95a-dc96-11ec-92bb-065f8efd402d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T06:40:41.8769416Z","updatedOn":"2022-05-26T06:40:41.8769416Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2812727c-1e58-49f0-84a6-13e2b8b7cce7","type":"Microsoft.Authorization/roleAssignments","name":"2812727c-1e58-49f0-84a6-13e2b8b7cce7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T16:39:02.6438636Z","updatedOn":"2022-05-26T16:39:02.6438636Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5bb051d1-dd12-11ec-8dd4-9e3ebf2d444f","type":"Microsoft.Authorization/roleAssignments","name":"5bb051d1-dd12-11ec-8dd4-9e3ebf2d444f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-28T07:02:36.1409282Z","updatedOn":"2022-05-28T07:02:36.1409282Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dbf46cb0-1221-443e-bab0-9cd11b7afece","type":"Microsoft.Authorization/roleAssignments","name":"dbf46cb0-1221-443e-bab0-9cd11b7afece"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-31T03:23:22.9404784Z","updatedOn":"2022-05-31T03:23:22.9404784Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/047700b3-e091-11ec-b7b9-f6caf9b02627","type":"Microsoft.Authorization/roleAssignments","name":"047700b3-e091-11ec-b7b9-f6caf9b02627"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-31T03:25:49.5470268Z","updatedOn":"2022-05-31T03:25:49.5470268Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b03550bc-b4aa-4aab-8bd7-0d27b86c9380","type":"Microsoft.Authorization/roleAssignments","name":"b03550bc-b4aa-4aab-8bd7-0d27b86c9380"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-01T14:15:14.5143992Z","updatedOn":"2022-06-01T14:15:14.5143992Z","createdBy":"572b7854-a995-402b-8482-46e12d3c9665","updatedBy":"572b7854-a995-402b-8482-46e12d3c9665","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41183c3a-e1b5-11ec-bad7-3c7c3f1d0035","type":"Microsoft.Authorization/roleAssignments","name":"41183c3a-e1b5-11ec-bad7-3c7c3f1d0035"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-01T15:59:31.6776783Z","updatedOn":"2022-06-01T15:59:31.6776783Z","createdBy":"203de16f-a918-45b1-bde4-6cc574d16944","updatedBy":"203de16f-a918-45b1-bde4-6cc574d16944","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e0dd4b8a-e1c3-11ec-949c-7a1cf6c5b419","type":"Microsoft.Authorization/roleAssignments","name":"e0dd4b8a-e1c3-11ec-949c-7a1cf6c5b419"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-01T18:14:50.2776576Z","updatedOn":"2022-06-01T18:14:50.2776576Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61f89f02-3565-409f-8e72-fc4e58b40178","type":"Microsoft.Authorization/roleAssignments","name":"61f89f02-3565-409f-8e72-fc4e58b40178"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-02T10:22:35.3875246Z","updatedOn":"2022-06-02T10:22:35.3875246Z","createdBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","updatedBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eabe3f5d-e25d-11ec-9d25-002248575167","type":"Microsoft.Authorization/roleAssignments","name":"eabe3f5d-e25d-11ec-9d25-002248575167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-02T19:10:50.1608669Z","updatedOn":"2022-06-02T19:10:50.1608669Z","createdBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","updatedBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d33bf47-7a98-4cca-84be-a622a8a520ae","type":"Microsoft.Authorization/roleAssignments","name":"2d33bf47-7a98-4cca-84be-a622a8a520ae"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-03T17:52:39.6424601Z","updatedOn":"2022-06-03T17:52:39.6424601Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/808a6fa6-1aa8-401a-b12d-3dbf49678aa5","type":"Microsoft.Authorization/roleAssignments","name":"808a6fa6-1aa8-401a-b12d-3dbf49678aa5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-03T18:32:43.3145647Z","updatedOn":"2022-06-03T18:32:43.3145647Z","createdBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","updatedBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ce8e3fe-e36b-11ec-93c2-0ebbe08470ef","type":"Microsoft.Authorization/roleAssignments","name":"8ce8e3fe-e36b-11ec-93c2-0ebbe08470ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-03T20:51:18.9925616Z","updatedOn":"2022-06-03T20:51:18.9925616Z","createdBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","updatedBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea9b98ba-e37e-11ec-b495-0ebbe08470ef","type":"Microsoft.Authorization/roleAssignments","name":"ea9b98ba-e37e-11ec-b495-0ebbe08470ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-06T19:39:15.5380737Z","updatedOn":"2022-06-06T19:39:15.5380737Z","createdBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","updatedBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57d73d6c-e5d0-11ec-a3ee-c220c0843243","type":"Microsoft.Authorization/roleAssignments","name":"57d73d6c-e5d0-11ec-a3ee-c220c0843243"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-07T02:58:19.0816460Z","updatedOn":"2022-06-07T02:58:19.0816460Z","createdBy":"0bf53c4f-0173-466d-967d-debbe9e551d6","updatedBy":"0bf53c4f-0173-466d-967d-debbe9e551d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/adea0756-e60d-11ec-bd0e-66dbb5eba95d","type":"Microsoft.Authorization/roleAssignments","name":"adea0756-e60d-11ec-bd0e-66dbb5eba95d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-07T18:27:18.2907455Z","updatedOn":"2022-06-07T18:27:18.2907455Z","createdBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","updatedBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/75dc9d88-e68f-11ec-bbbc-aa665a03731d","type":"Microsoft.Authorization/roleAssignments","name":"75dc9d88-e68f-11ec-bbbc-aa665a03731d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-08T18:25:22.6640205Z","updatedOn":"2022-06-08T18:25:22.6640205Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/17b651ab-ff7f-4cf2-833a-27f695725732","type":"Microsoft.Authorization/roleAssignments","name":"17b651ab-ff7f-4cf2-833a-27f695725732"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-08T19:34:11.0218858Z","updatedOn":"2022-06-08T19:34:11.0218858Z","createdBy":"1b51b78e-fd1f-484f-98b6-3423d189977b","updatedBy":"1b51b78e-fd1f-484f-98b6-3423d189977b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5e9c3a1d-3f79-4e4b-9b9d-fbe1f3d09ec5","type":"Microsoft.Authorization/roleAssignments","name":"5e9c3a1d-3f79-4e4b-9b9d-fbe1f3d09ec5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-08T19:46:00.8296947Z","updatedOn":"2022-06-08T19:46:00.8296947Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f2fd786-e763-11ec-b282-000d3af64fa4","type":"Microsoft.Authorization/roleAssignments","name":"9f2fd786-e763-11ec-b282-000d3af64fa4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-09T01:49:44.1244830Z","updatedOn":"2022-06-09T01:49:44.1244830Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14a2ebaa-ca44-4eb7-851c-01d577cb625e","type":"Microsoft.Authorization/roleAssignments","name":"14a2ebaa-ca44-4eb7-851c-01d577cb625e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-09T23:29:31.3797237Z","updatedOn":"2022-06-09T23:29:31.3797237Z","createdBy":"b34e062a-5a73-4cec-af00-1ecb446deb92","updatedBy":"b34e062a-5a73-4cec-af00-1ecb446deb92","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/02f3fb8e-e84c-11ec-bd1c-6045bd7e546a","type":"Microsoft.Authorization/roleAssignments","name":"02f3fb8e-e84c-11ec-bd1c-6045bd7e546a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T15:06:09.3851225Z","updatedOn":"2022-06-10T15:06:09.3851225Z","createdBy":"fb4b724d-4b7e-4756-aa0b-d91dc0c5acc9","updatedBy":"fb4b724d-4b7e-4756-aa0b-d91dc0c5acc9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/db7a073e-e8ce-11ec-8b1d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"db7a073e-e8ce-11ec-8b1d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T18:05:28.7449646Z","updatedOn":"2022-06-10T18:05:28.7449646Z","createdBy":"0e06046f-cf0d-4924-86b0-bbcf36a1936f","updatedBy":"0e06046f-cf0d-4924-86b0-bbcf36a1936f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7824ddb-e8e7-11ec-b465-421b394b7a96","type":"Microsoft.Authorization/roleAssignments","name":"e7824ddb-e8e7-11ec-b465-421b394b7a96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T18:05:29.8303312Z","updatedOn":"2022-06-10T18:05:29.8303312Z","createdBy":"1295ee3f-edbd-4185-9628-13318404c52a","updatedBy":"1295ee3f-edbd-4185-9628-13318404c52a","delegatedManagedIdentityResourceId":null,"description":"New + AKS member"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/609b8d2a-2b4f-4767-aa5e-c5c7f11b687b","type":"Microsoft.Authorization/roleAssignments","name":"609b8d2a-2b4f-4767-aa5e-c5c7f11b687b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T21:18:18.0994828Z","updatedOn":"2022-06-10T21:18:18.0994828Z","createdBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","updatedBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d80f2247-e902-11ec-96de-2edd4b852bcf","type":"Microsoft.Authorization/roleAssignments","name":"d80f2247-e902-11ec-96de-2edd4b852bcf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:19.7988558Z","updatedOn":"2022-06-13T09:20:19.7988558Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/053ff776-f32a-4298-cbeb-0da661875d88","type":"Microsoft.Authorization/roleAssignments","name":"053ff776-f32a-4298-cbeb-0da661875d88"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:19.8466660Z","updatedOn":"2022-06-13T09:20:19.8466660Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b4bd6e6-869b-4da3-a50f-b7eb8b183de5","type":"Microsoft.Authorization/roleAssignments","name":"4b4bd6e6-869b-4da3-a50f-b7eb8b183de5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:20.2195738Z","updatedOn":"2022-06-13T09:20:20.2195738Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/21db9db3-7adc-40f3-5885-af265b9ddad2","type":"Microsoft.Authorization/roleAssignments","name":"21db9db3-7adc-40f3-5885-af265b9ddad2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:19.9439478Z","updatedOn":"2022-06-13T09:20:19.9439478Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2418e820-601e-49da-a20d-4fa1ee6cc4cf","type":"Microsoft.Authorization/roleAssignments","name":"2418e820-601e-49da-a20d-4fa1ee6cc4cf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T17:55:18.4118508Z","updatedOn":"2022-06-13T17:55:18.4118508Z","createdBy":"1295ee3f-edbd-4185-9628-13318404c52a","updatedBy":"1295ee3f-edbd-4185-9628-13318404c52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbcfa2a4-eb41-11ec-b38e-467d14df3056","type":"Microsoft.Authorization/roleAssignments","name":"fbcfa2a4-eb41-11ec-b38e-467d14df3056"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-14T09:33:38.7306445Z","updatedOn":"2022-06-14T09:33:38.7306445Z","createdBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","updatedBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/10ffce40-ebc5-11ec-aebe-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"10ffce40-ebc5-11ec-aebe-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-14T23:20:32.7229029Z","updatedOn":"2022-06-14T23:20:32.7229029Z","createdBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","updatedBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/954903db-ec38-11ec-acd7-72f791cfbed2","type":"Microsoft.Authorization/roleAssignments","name":"954903db-ec38-11ec-acd7-72f791cfbed2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T06:30:47.7914595Z","updatedOn":"2022-06-16T06:30:47.7914595Z","createdBy":"504c34f4-8389-4920-aec9-0c595b508740","updatedBy":"504c34f4-8389-4920-aec9-0c595b508740","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb760c25-af25-412f-a643-93e98c629270","type":"Microsoft.Authorization/roleAssignments","name":"bb760c25-af25-412f-a643-93e98c629270"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T20:16:07.8463557Z","updatedOn":"2022-06-16T20:16:07.8463557Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4555d91-07f5-46d6-b29f-50b0d211c4ae","type":"Microsoft.Authorization/roleAssignments","name":"f4555d91-07f5-46d6-b29f-50b0d211c4ae"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T21:30:16.4420742Z","updatedOn":"2022-06-16T21:30:16.4420742Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":"to + programatically create new resource group, aks cluster, and container registry"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2c2fc915-d722-4dde-b730-7c73c8a87fdc","type":"Microsoft.Authorization/roleAssignments","name":"2c2fc915-d722-4dde-b730-7c73c8a87fdc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T22:19:51.5734675Z","updatedOn":"2022-06-16T22:19:51.5734675Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cca9c113-570a-4969-aa72-45c31091684a","type":"Microsoft.Authorization/roleAssignments","name":"cca9c113-570a-4969-aa72-45c31091684a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-17T02:19:37.1755269Z","updatedOn":"2022-06-17T02:19:37.1755269Z","createdBy":"30db9446-b4f8-4485-8c98-10e17387409d","updatedBy":"30db9446-b4f8-4485-8c98-10e17387409d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eee6dfc9-ede3-11ec-9f6d-902e1612d5d0","type":"Microsoft.Authorization/roleAssignments","name":"eee6dfc9-ede3-11ec-9f6d-902e1612d5d0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-20T22:03:11.1423439Z","updatedOn":"2022-06-20T22:03:11.1423439Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5c2bd4a-f0e4-11ec-bbc1-000d3ac67a2f","type":"Microsoft.Authorization/roleAssignments","name":"c5c2bd4a-f0e4-11ec-bbc1-000d3ac67a2f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-21T16:26:57.9805326Z","updatedOn":"2022-06-21T16:26:57.9805326Z","createdBy":"4d730cf1-e190-49af-af02-ea52983c017e","updatedBy":"4d730cf1-e190-49af-af02-ea52983c017e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f814031e-f17e-11ec-bdc4-72d39f810808","type":"Microsoft.Authorization/roleAssignments","name":"f814031e-f17e-11ec-bdc4-72d39f810808"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-22T23:05:28.0851041Z","updatedOn":"2022-06-22T23:05:28.0851041Z","createdBy":"395c8203-ec60-4c13-9730-5f960088f92b","updatedBy":"395c8203-ec60-4c13-9730-5f960088f92b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e672e20f-477a-4475-a5cf-2f7d8401bbc3","type":"Microsoft.Authorization/roleAssignments","name":"e672e20f-477a-4475-a5cf-2f7d8401bbc3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-23T19:51:00.2507743Z","updatedOn":"2022-06-23T19:51:00.2507743Z","createdBy":"8b564e25-6f45-4437-bf8b-9ac6596a5f15","updatedBy":"8b564e25-6f45-4437-bf8b-9ac6596a5f15","delegatedManagedIdentityResourceId":null,"description":"Adding + permissions to SP for running E2E tests. Currently getting error \"The client + ''0cea35e6-9763-4ef3-b2d2-8c241ab58828'' with object id ''0cea35e6-9763-4ef3-b2d2-8c241ab58828'' + does not have authorization to perform action ''Microsoft.Resources/subscriptions/resourcegroups/write'' + over scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/e2erg-indusridebld56865086-VzY'' + or the scope is invalid. If access was recently granted, please refresh your + credentials.\""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5cfb2437-e152-48d8-bb2a-54c89f27707a","type":"Microsoft.Authorization/roleAssignments","name":"5cfb2437-e152-48d8-bb2a-54c89f27707a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-23T21:01:02.9667346Z","updatedOn":"2022-06-23T21:01:02.9667346Z","createdBy":"34d4f830-f9ea-4525-9ca2-b784e3874713","updatedBy":"34d4f830-f9ea-4525-9ca2-b784e3874713","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9527af65-f337-11ec-a743-daea1d98cac0","type":"Microsoft.Authorization/roleAssignments","name":"9527af65-f337-11ec-a743-daea1d98cac0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-24T17:09:56.9678432Z","updatedOn":"2022-06-24T17:09:56.9678432Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba5c2d82-3e34-4b2b-9c5f-27d9d33955ff","type":"Microsoft.Authorization/roleAssignments","name":"ba5c2d82-3e34-4b2b-9c5f-27d9d33955ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-24T17:36:02.0450264Z","updatedOn":"2022-06-24T17:36:02.0450264Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/16b4850b-3e9c-435e-b3f6-b83e02b9146e","type":"Microsoft.Authorization/roleAssignments","name":"16b4850b-3e9c-435e-b3f6-b83e02b9146e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-27T17:58:47.2112371Z","updatedOn":"2022-06-27T17:58:47.2112371Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca6de50e-f642-11ec-83b8-002248773529","type":"Microsoft.Authorization/roleAssignments","name":"ca6de50e-f642-11ec-83b8-002248773529"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-27T21:10:04.9812035Z","updatedOn":"2022-06-27T21:10:04.9812035Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ad97eed-2e77-485f-a2ec-132f3647aef7","type":"Microsoft.Authorization/roleAssignments","name":"8ad97eed-2e77-485f-a2ec-132f3647aef7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T15:43:32.3787489Z","updatedOn":"2022-06-28T15:43:32.3787489Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a1acaea-f6f9-11ec-9ddd-6e578000e34a","type":"Microsoft.Authorization/roleAssignments","name":"0a1acaea-f6f9-11ec-9ddd-6e578000e34a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-29T05:30:23.4400722Z","updatedOn":"2022-06-29T05:30:23.4400722Z","createdBy":"65cfb39a-5f29-4247-8230-9ec6695c5878","updatedBy":"65cfb39a-5f29-4247-8230-9ec6695c5878","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/546c078e-3855-479c-b7aa-b38d4e68bb9f","type":"Microsoft.Authorization/roleAssignments","name":"546c078e-3855-479c-b7aa-b38d4e68bb9f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-29T17:04:07.7235161Z","updatedOn":"2022-06-29T17:04:07.7235161Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/48cbe38c-7d32-4174-8026-7a16994dcdc8","type":"Microsoft.Authorization/roleAssignments","name":"48cbe38c-7d32-4174-8026-7a16994dcdc8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-30T09:06:03.1760556Z","updatedOn":"2022-06-30T09:06:03.1760556Z","createdBy":"42a33e33-55bb-4995-80a2-d1b745371591","updatedBy":"42a33e33-55bb-4995-80a2-d1b745371591","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd7da313-f853-11ec-9993-000d3ac42d43","type":"Microsoft.Authorization/roleAssignments","name":"dd7da313-f853-11ec-9993-000d3ac42d43"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-30T09:06:06.3942443Z","updatedOn":"2022-06-30T09:06:06.3942443Z","createdBy":"42a33e33-55bb-4995-80a2-d1b745371591","updatedBy":"42a33e33-55bb-4995-80a2-d1b745371591","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df6c9d2d-f853-11ec-9993-000d3ac42d43","type":"Microsoft.Authorization/roleAssignments","name":"df6c9d2d-f853-11ec-9993-000d3ac42d43"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-04T08:11:46.0687018Z","updatedOn":"2022-07-04T08:11:46.0687018Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40b64297-b408-4d22-bf82-9b6897914b91","type":"Microsoft.Authorization/roleAssignments","name":"40b64297-b408-4d22-bf82-9b6897914b91"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T17:33:53.2930064Z","updatedOn":"2022-07-05T17:33:53.2930064Z","createdBy":"8e17b6a3-5430-4318-a670-b9df4d106675","updatedBy":"8e17b6a3-5430-4318-a670-b9df4d106675","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a23e2991-fc88-11ec-b99d-fe2d37eeee3f","type":"Microsoft.Authorization/roleAssignments","name":"a23e2991-fc88-11ec-b99d-fe2d37eeee3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T17:33:56.8130933Z","updatedOn":"2022-07-05T17:33:56.8130933Z","createdBy":"8e17b6a3-5430-4318-a670-b9df4d106675","updatedBy":"8e17b6a3-5430-4318-a670-b9df4d106675","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a45a4b60-fc88-11ec-b99d-fe2d37eeee3f","type":"Microsoft.Authorization/roleAssignments","name":"a45a4b60-fc88-11ec-b99d-fe2d37eeee3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T20:50:59.7297844Z","updatedOn":"2022-07-05T20:50:59.7297844Z","createdBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","updatedBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2bf6d528-fca4-11ec-ae95-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2bf6d528-fca4-11ec-ae95-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T20:51:03.8324709Z","updatedOn":"2022-07-05T20:51:03.8324709Z","createdBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","updatedBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2eb27754-fca4-11ec-ae95-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2eb27754-fca4-11ec-ae95-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-06T18:17:04.1589374Z","updatedOn":"2022-07-06T18:17:04.1589374Z","createdBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","updatedBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d66150ce-778b-48b7-9eec-4af15a62d5fb","type":"Microsoft.Authorization/roleAssignments","name":"d66150ce-778b-48b7-9eec-4af15a62d5fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T04:14:56.8781019Z","updatedOn":"2022-07-07T04:14:56.8781019Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d244381e-1809-4aab-b4bf-f6c45efad8a0","type":"Microsoft.Authorization/roleAssignments","name":"d244381e-1809-4aab-b4bf-f6c45efad8a0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T08:02:02.2250086Z","updatedOn":"2022-07-07T08:02:02.2250086Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/209367bb-572e-4543-8ffa-261ab9e3e98e","type":"Microsoft.Authorization/roleAssignments","name":"209367bb-572e-4543-8ffa-261ab9e3e98e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T09:51:45.7545095Z","updatedOn":"2022-07-07T09:51:45.7545095Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9b5f542-ed8b-4591-902d-70f85896c4a9","type":"Microsoft.Authorization/roleAssignments","name":"a9b5f542-ed8b-4591-902d-70f85896c4a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T10:20:52.8789655Z","updatedOn":"2022-07-07T10:20:52.8789655Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67fb0754-2c67-405f-b195-0fc9fb022fc7","type":"Microsoft.Authorization/roleAssignments","name":"67fb0754-2c67-405f-b195-0fc9fb022fc7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T23:54:13.9262172Z","updatedOn":"2022-07-07T23:54:13.9262172Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a13e2124-87c9-402c-9611-fbb6a1b4e4b8","type":"Microsoft.Authorization/roleAssignments","name":"a13e2124-87c9-402c-9611-fbb6a1b4e4b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T02:43:53.0148931Z","updatedOn":"2022-07-08T02:43:53.0148931Z","createdBy":"34e81c0e-d5e6-478f-8544-2686be295567","updatedBy":"34e81c0e-d5e6-478f-8544-2686be295567","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc3fbff8-fe67-11ec-ac64-f69a873c5ca0","type":"Microsoft.Authorization/roleAssignments","name":"cc3fbff8-fe67-11ec-ac64-f69a873c5ca0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T02:43:59.1573960Z","updatedOn":"2022-07-08T02:43:59.1573960Z","createdBy":"34e81c0e-d5e6-478f-8544-2686be295567","updatedBy":"34e81c0e-d5e6-478f-8544-2686be295567","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cfe77b1e-fe67-11ec-ac64-f69a873c5ca0","type":"Microsoft.Authorization/roleAssignments","name":"cfe77b1e-fe67-11ec-ac64-f69a873c5ca0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T16:06:18.0035556Z","updatedOn":"2022-07-08T16:06:18.0035556Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/72a67832-6c5d-4b3e-9067-ceef4bc5dcba","type":"Microsoft.Authorization/roleAssignments","name":"72a67832-6c5d-4b3e-9067-ceef4bc5dcba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T16:17:28.2042061Z","updatedOn":"2022-07-08T16:17:28.2042061Z","createdBy":"cef6ee5d-6edd-413d-9eb7-c205c9802a3f","updatedBy":"cef6ee5d-6edd-413d-9eb7-c205c9802a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82dd5217-b1f7-4be5-8f03-5899493aa314","type":"Microsoft.Authorization/roleAssignments","name":"82dd5217-b1f7-4be5-8f03-5899493aa314"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T17:53:10.4671781Z","updatedOn":"2022-07-08T17:53:10.4671781Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4227602-fee6-11ec-ab63-000d3af64fa4","type":"Microsoft.Authorization/roleAssignments","name":"d4227602-fee6-11ec-ab63-000d3af64fa4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-11T21:30:54.4523951Z","updatedOn":"2022-07-11T21:30:54.4523951Z","createdBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","updatedBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a77632d-0fee-46d8-9f0d-d2ed44a26602","type":"Microsoft.Authorization/roleAssignments","name":"0a77632d-0fee-46d8-9f0d-d2ed44a26602"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-11T22:18:13.7630778Z","updatedOn":"2022-07-11T22:18:13.7630778Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3abee7ef-2e53-478a-b9cd-911e8768e9d6","type":"Microsoft.Authorization/roleAssignments","name":"3abee7ef-2e53-478a-b9cd-911e8768e9d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T04:19:56.7878684Z","updatedOn":"2022-07-12T04:19:56.7878684Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2335b0a-0199-11ed-9afe-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e2335b0a-0199-11ed-9afe-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T04:20:00.9520791Z","updatedOn":"2022-07-12T04:20:00.9520791Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4b0f194-0199-11ed-9afe-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e4b0f194-0199-11ed-9afe-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T11:12:50.2042423Z","updatedOn":"2022-07-12T11:12:50.2042423Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad70c028-d6b8-4efb-96d4-0bf9aa09566c","type":"Microsoft.Authorization/roleAssignments","name":"ad70c028-d6b8-4efb-96d4-0bf9aa09566c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T17:55:10.7687684Z","updatedOn":"2022-07-12T17:55:10.7687684Z","createdBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","updatedBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c642f341-020b-11ed-bc6a-02136178e3ad","type":"Microsoft.Authorization/roleAssignments","name":"c642f341-020b-11ed-bc6a-02136178e3ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T17:55:14.4120596Z","updatedOn":"2022-07-12T17:55:14.4120596Z","createdBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","updatedBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c87a1349-020b-11ed-bc6a-02136178e3ad","type":"Microsoft.Authorization/roleAssignments","name":"c87a1349-020b-11ed-bc6a-02136178e3ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T18:08:22.2861717Z","updatedOn":"2022-07-12T18:08:22.2861717Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/421ff42e-57e3-4b62-b4e6-e8e561eb7212","type":"Microsoft.Authorization/roleAssignments","name":"421ff42e-57e3-4b62-b4e6-e8e561eb7212"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T00:41:08.5337376Z","updatedOn":"2022-07-13T00:41:08.5337376Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78c85e30-0244-11ed-914f-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"78c85e30-0244-11ed-914f-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T08:27:18.8954270Z","updatedOn":"2022-07-13T08:27:18.8954270Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eda0948f-04c7-43eb-a560-0fe9db9681c5","type":"Microsoft.Authorization/roleAssignments","name":"eda0948f-04c7-43eb-a560-0fe9db9681c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T20:09:22.9119861Z","updatedOn":"2022-07-13T20:09:22.9119861Z","createdBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","updatedBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/af556422-02e7-11ed-b490-3e22fbbb55c2","type":"Microsoft.Authorization/roleAssignments","name":"af556422-02e7-11ed-b490-3e22fbbb55c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T20:09:36.4140354Z","updatedOn":"2022-07-13T20:09:36.4140354Z","createdBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","updatedBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b77f8f56-02e7-11ed-b490-3e22fbbb55c2","type":"Microsoft.Authorization/roleAssignments","name":"b77f8f56-02e7-11ed-b490-3e22fbbb55c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-15T03:29:06.6862069Z","updatedOn":"2022-07-15T03:29:06.6862069Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/77952ad7-ace5-45a1-9395-7025cd43927b","type":"Microsoft.Authorization/roleAssignments","name":"77952ad7-ace5-45a1-9395-7025cd43927b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-15T21:17:33.7746216Z","updatedOn":"2022-07-15T21:17:33.7746216Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8aa04a4a-0483-11ed-bcf7-00155dfde705","type":"Microsoft.Authorization/roleAssignments","name":"8aa04a4a-0483-11ed-bcf7-00155dfde705"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-15T21:17:36.9140017Z","updatedOn":"2022-07-15T21:17:36.9140017Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c49fe02-0483-11ed-bcf7-00155dfde705","type":"Microsoft.Authorization/roleAssignments","name":"8c49fe02-0483-11ed-bcf7-00155dfde705"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-18T18:31:44.6615613Z","updatedOn":"2022-07-18T18:31:44.6615613Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9913aa55-1df8-4b7f-b351-bfb577c653b7","type":"Microsoft.Authorization/roleAssignments","name":"9913aa55-1df8-4b7f-b351-bfb577c653b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T03:14:49.6541206Z","updatedOn":"2022-07-19T03:14:49.6541206Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f2a2c960-0710-11ed-af5f-000d3a183800","type":"Microsoft.Authorization/roleAssignments","name":"f2a2c960-0710-11ed-af5f-000d3a183800"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T03:14:52.8659954Z","updatedOn":"2022-07-19T03:14:52.8659954Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f491d46c-0710-11ed-af5f-000d3a183800","type":"Microsoft.Authorization/roleAssignments","name":"f491d46c-0710-11ed-af5f-000d3a183800"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T17:08:01.7695005Z","updatedOn":"2022-07-19T17:08:01.7695005Z","createdBy":"08a0af07-b641-44c2-a174-9b85f2db0af1","updatedBy":"08a0af07-b641-44c2-a174-9b85f2db0af1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57cd16da-0785-11ed-91ee-06d9bf349677","type":"Microsoft.Authorization/roleAssignments","name":"57cd16da-0785-11ed-91ee-06d9bf349677"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T17:28:52.5405320Z","updatedOn":"2022-07-19T17:28:52.5405320Z","createdBy":"395c8203-ec60-4c13-9730-5f960088f92b","updatedBy":"395c8203-ec60-4c13-9730-5f960088f92b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ab94087-7d29-4798-88b0-5ba408389266","type":"Microsoft.Authorization/roleAssignments","name":"6ab94087-7d29-4798-88b0-5ba408389266"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T20:15:51.4129938Z","updatedOn":"2022-07-19T20:15:51.4129938Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/04aeccd9-485e-4667-83ec-0940615dc03f","type":"Microsoft.Authorization/roleAssignments","name":"04aeccd9-485e-4667-83ec-0940615dc03f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-20T00:07:29.4350314Z","updatedOn":"2022-07-20T00:07:29.4350314Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1165576-07bf-11ed-a49d-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"f1165576-07bf-11ed-a49d-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-20T00:07:32.8732624Z","updatedOn":"2022-07-20T00:07:32.8732624Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f358bfdc-07bf-11ed-a49d-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"f358bfdc-07bf-11ed-a49d-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-21T12:09:08.1001074Z","updatedOn":"2022-07-21T12:09:08.1001074Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ebb1f193-08ed-11ed-a201-00224878d5c3","type":"Microsoft.Authorization/roleAssignments","name":"ebb1f193-08ed-11ed-a201-00224878d5c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-21T12:09:11.3486909Z","updatedOn":"2022-07-21T12:09:11.3486909Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/edaa26e6-08ed-11ed-a201-00224878d5c3","type":"Microsoft.Authorization/roleAssignments","name":"edaa26e6-08ed-11ed-a201-00224878d5c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-22T09:35:51.5690357Z","updatedOn":"2022-07-22T09:35:51.5690357Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd07b0f6-982a-4d85-9fdd-d44049270cbd","type":"Microsoft.Authorization/roleAssignments","name":"dd07b0f6-982a-4d85-9fdd-d44049270cbd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-24T17:57:05.6570323Z","updatedOn":"2022-07-24T17:57:05.6570323Z","createdBy":"567715d4-847a-4def-acb2-d157ebfa8439","updatedBy":"567715d4-847a-4def-acb2-d157ebfa8439","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/069fdbd1-0b7a-11ed-aa35-a2d44093b98e","type":"Microsoft.Authorization/roleAssignments","name":"069fdbd1-0b7a-11ed-aa35-a2d44093b98e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-24T17:57:10.6197123Z","updatedOn":"2022-07-24T17:57:10.6197123Z","createdBy":"567715d4-847a-4def-acb2-d157ebfa8439","updatedBy":"567715d4-847a-4def-acb2-d157ebfa8439","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09844b71-0b7a-11ed-aa35-a2d44093b98e","type":"Microsoft.Authorization/roleAssignments","name":"09844b71-0b7a-11ed-aa35-a2d44093b98e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-25T23:51:56.7193261Z","updatedOn":"2022-07-25T23:51:56.7193261Z","createdBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","updatedBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3d43338-0c74-11ed-a558-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"c3d43338-0c74-11ed-a558-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-25T23:51:59.2783640Z","updatedOn":"2022-07-25T23:51:59.2783640Z","createdBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","updatedBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5533d8a-0c74-11ed-a558-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"c5533d8a-0c74-11ed-a558-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-28T04:50:50.7078047Z","updatedOn":"2022-07-28T04:50:50.7078047Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da343068-0e30-11ed-91a5-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"da343068-0e30-11ed-91a5-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-28T04:50:53.7664793Z","updatedOn":"2022-07-28T04:50:53.7664793Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dbfbe50a-0e30-11ed-91a5-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"dbfbe50a-0e30-11ed-91a5-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-29T16:16:58.9941922Z","updatedOn":"2022-07-29T16:16:58.9941922Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/880fa390-3bd7-4075-8071-e33e45423e36","type":"Microsoft.Authorization/roleAssignments","name":"880fa390-3bd7-4075-8071-e33e45423e36"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-31T19:34:43.4356237Z","updatedOn":"2022-07-31T19:34:43.4356237Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d352709e-1107-11ed-be9f-beee8f4e086d","type":"Microsoft.Authorization/roleAssignments","name":"d352709e-1107-11ed-be9f-beee8f4e086d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-04T04:49:44.0295503Z","updatedOn":"2022-08-04T04:49:44.0295503Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da803814-13b0-11ed-b124-e2848198df96","type":"Microsoft.Authorization/roleAssignments","name":"da803814-13b0-11ed-b124-e2848198df96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-04T04:49:49.5833937Z","updatedOn":"2022-08-04T04:49:49.5833937Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd76350a-13b0-11ed-b124-e2848198df96","type":"Microsoft.Authorization/roleAssignments","name":"dd76350a-13b0-11ed-b124-e2848198df96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-05T14:15:13.1099119Z","updatedOn":"2022-08-05T14:15:13.1099119Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7a4c8f3-b60c-4341-acdb-3b8d60976116","type":"Microsoft.Authorization/roleAssignments","name":"e7a4c8f3-b60c-4341-acdb-3b8d60976116"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-08T08:55:19.4739379Z","updatedOn":"2022-08-08T08:55:19.4739379Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3f792cd-16f7-11ed-afb5-000d3a0611f6","type":"Microsoft.Authorization/roleAssignments","name":"d3f792cd-16f7-11ed-afb5-000d3a0611f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-08T14:33:12.5245418Z","updatedOn":"2022-08-08T14:33:12.5245418Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0184de3c-04d4-433f-9221-2df571d921a5","type":"Microsoft.Authorization/roleAssignments","name":"0184de3c-04d4-433f-9221-2df571d921a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-08T17:41:09.4113992Z","updatedOn":"2022-08-08T17:41:09.4113992Z","createdBy":"19263705-0667-497e-85e7-a930fa3441ec","updatedBy":"19263705-0667-497e-85e7-a930fa3441ec","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4919e77a-1741-11ed-b6db-0022487d76b7","type":"Microsoft.Authorization/roleAssignments","name":"4919e77a-1741-11ed-b6db-0022487d76b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:45:21.8695164Z","updatedOn":"2022-08-12T05:45:21.8695164Z","createdBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","updatedBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f23b86bb-1a01-11ed-b496-66a3f79a5cd7","type":"Microsoft.Authorization/roleAssignments","name":"f23b86bb-1a01-11ed-b496-66a3f79a5cd7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:45:28.6932347Z","updatedOn":"2022-08-12T05:45:28.6932347Z","createdBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","updatedBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6a0cefb-1a01-11ed-b496-66a3f79a5cd7","type":"Microsoft.Authorization/roleAssignments","name":"f6a0cefb-1a01-11ed-b496-66a3f79a5cd7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:57:08.1910800Z","updatedOn":"2022-08-12T05:57:08.1910800Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/97fa583a-1a03-11ed-8141-0022484c72fc","type":"Microsoft.Authorization/roleAssignments","name":"97fa583a-1a03-11ed-8141-0022484c72fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:57:16.8561530Z","updatedOn":"2022-08-12T05:57:16.8561530Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9bed6f7d-1a03-11ed-8141-0022484c72fc","type":"Microsoft.Authorization/roleAssignments","name":"9bed6f7d-1a03-11ed-8141-0022484c72fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T10:56:06.3724576Z","updatedOn":"2022-08-12T10:56:06.3724576Z","createdBy":"312333b2-b433-4e3c-bb6f-f60419faa168","updatedBy":"312333b2-b433-4e3c-bb6f-f60419faa168","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5da07cdc-1a2d-11ed-97c4-36311d0c4477","type":"Microsoft.Authorization/roleAssignments","name":"5da07cdc-1a2d-11ed-97c4-36311d0c4477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T10:56:12.1781791Z","updatedOn":"2022-08-12T10:56:12.1781791Z","createdBy":"312333b2-b433-4e3c-bb6f-f60419faa168","updatedBy":"312333b2-b433-4e3c-bb6f-f60419faa168","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/60dfcd5b-1a2d-11ed-97c4-36311d0c4477","type":"Microsoft.Authorization/roleAssignments","name":"60dfcd5b-1a2d-11ed-97c4-36311d0c4477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T23:47:07.1823504Z","updatedOn":"2022-08-12T23:47:07.1823504Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12955060-1a99-11ed-80ae-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"12955060-1a99-11ed-80ae-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T23:47:10.3981690Z","updatedOn":"2022-08-12T23:47:10.3981690Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1452bfa0-1a99-11ed-80ae-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"1452bfa0-1a99-11ed-80ae-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-14T04:59:52.9674492Z","updatedOn":"2022-08-14T04:59:52.9674492Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee779146-1b8d-11ed-ad0f-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"ee779146-1b8d-11ed-ad0f-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-14T04:59:57.7071631Z","updatedOn":"2022-08-14T04:59:57.7071631Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f13fa4b3-1b8d-11ed-ad0f-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"f13fa4b3-1b8d-11ed-ad0f-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-16T23:10:44.7176056Z","updatedOn":"2022-08-16T23:10:44.7176056Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1d255e1-0f5e-41c4-93eb-e683b5cf2ca4","type":"Microsoft.Authorization/roleAssignments","name":"f1d255e1-0f5e-41c4-93eb-e683b5cf2ca4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-16T23:31:16.6919768Z","updatedOn":"2022-08-16T23:31:16.6919768Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a45cbdf-008d-4716-96eb-38389a417827","type":"Microsoft.Authorization/roleAssignments","name":"2a45cbdf-008d-4716-96eb-38389a417827"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-18T00:30:35.0176680Z","updatedOn":"2022-08-18T00:30:35.0176680Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f91d7aa2-1e8c-11ed-b1a6-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f91d7aa2-1e8c-11ed-b1a6-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-18T00:30:38.2729005Z","updatedOn":"2022-08-18T00:30:38.2729005Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb0d664c-1e8c-11ed-b1a6-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"fb0d664c-1e8c-11ed-b1a6-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-18T15:52:38.7113712Z","updatedOn":"2022-08-18T15:52:38.7113712Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8772ddf6-c657-4010-ab7b-5d8627ba3601","type":"Microsoft.Authorization/roleAssignments","name":"8772ddf6-c657-4010-ab7b-5d8627ba3601"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-22T02:37:48.0231077Z","updatedOn":"2022-08-22T02:37:48.0231077Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7c56d8ab-b9ef-4d93-ae58-838c1209c621","type":"Microsoft.Authorization/roleAssignments","name":"7c56d8ab-b9ef-4d93-ae58-838c1209c621"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-22T02:41:47.6649206Z","updatedOn":"2022-08-22T02:41:47.6649206Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b66d25d3-0cb1-4413-9445-caf5db5b40c9","type":"Microsoft.Authorization/roleAssignments","name":"b66d25d3-0cb1-4413-9445-caf5db5b40c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-22T06:25:39.4709093Z","updatedOn":"2022-08-22T06:25:39.4709093Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb7ca852-9adb-4205-a828-a17ca774a8a4","type":"Microsoft.Authorization/roleAssignments","name":"eb7ca852-9adb-4205-a828-a17ca774a8a4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T02:16:22.3620594Z","updatedOn":"2022-08-23T02:16:22.3620594Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94556c2e-2289-11ed-9371-000d3ac51247","type":"Microsoft.Authorization/roleAssignments","name":"94556c2e-2289-11ed-9371-000d3ac51247"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T08:56:15.8011348Z","updatedOn":"2022-08-23T08:56:15.8011348Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7117911f-22c1-11ed-be42-000d3a084591","type":"Microsoft.Authorization/roleAssignments","name":"7117911f-22c1-11ed-be42-000d3a084591"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T08:56:21.1375800Z","updatedOn":"2022-08-23T08:56:21.1375800Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/73becf7d-22c1-11ed-be42-000d3a084591","type":"Microsoft.Authorization/roleAssignments","name":"73becf7d-22c1-11ed-be42-000d3a084591"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T14:02:07.2343806Z","updatedOn":"2022-08-23T14:02:07.2343806Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b9bf190-22ec-11ed-8f86-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"2b9bf190-22ec-11ed-8f86-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T14:02:10.9785694Z","updatedOn":"2022-08-23T14:02:10.9785694Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2dd0099d-22ec-11ed-8f86-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"2dd0099d-22ec-11ed-8f86-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T23:22:24.8240339Z","updatedOn":"2022-08-23T23:22:24.8240339Z","createdBy":"395c8203-ec60-4c13-9730-5f960088f92b","updatedBy":"395c8203-ec60-4c13-9730-5f960088f92b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/abda2c2b-daa3-42bb-abbd-e13cec5fb6b3","type":"Microsoft.Authorization/roleAssignments","name":"abda2c2b-daa3-42bb-abbd-e13cec5fb6b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T23:23:32.8133517Z","updatedOn":"2022-08-23T23:23:32.8133517Z","createdBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","updatedBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/994cd0f0-233a-11ed-90e8-66137476d927","type":"Microsoft.Authorization/roleAssignments","name":"994cd0f0-233a-11ed-90e8-66137476d927"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T23:23:35.3751695Z","updatedOn":"2022-08-23T23:23:35.3751695Z","createdBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","updatedBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9add5dfe-233a-11ed-90e8-66137476d927","type":"Microsoft.Authorization/roleAssignments","name":"9add5dfe-233a-11ed-90e8-66137476d927"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-26T02:48:17.4348909Z","updatedOn":"2022-08-26T02:48:17.4348909Z","createdBy":"d297f8cf-3724-4da6-ae0c-6ea639225042","updatedBy":"d297f8cf-3724-4da6-ae0c-6ea639225042","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9125ee0-b9af-4d25-a2e5-886ad210b3e8","type":"Microsoft.Authorization/roleAssignments","name":"e9125ee0-b9af-4d25-a2e5-886ad210b3e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-29T22:08:43.6923850Z","updatedOn":"2022-08-29T22:08:43.6923850Z","createdBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","updatedBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24b2acd4-27e7-11ed-aa57-9eb40d98da7e","type":"Microsoft.Authorization/roleAssignments","name":"24b2acd4-27e7-11ed-aa57-9eb40d98da7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-29T22:08:46.8049719Z","updatedOn":"2022-08-29T22:08:46.8049719Z","createdBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","updatedBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26a4fa7f-27e7-11ed-aa57-9eb40d98da7e","type":"Microsoft.Authorization/roleAssignments","name":"26a4fa7f-27e7-11ed-aa57-9eb40d98da7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-29T22:11:06.3024798Z","updatedOn":"2022-08-29T22:11:06.3024798Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63e0b566-276e-405d-8d4e-1c82b1f937c6","type":"Microsoft.Authorization/roleAssignments","name":"63e0b566-276e-405d-8d4e-1c82b1f937c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:50:53.4210961Z","updatedOn":"2022-08-30T23:50:53.4210961Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94aa5054-28be-11ed-a6d3-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"94aa5054-28be-11ed-a6d3-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:50:57.2039466Z","updatedOn":"2022-08-30T23:50:57.2039466Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96f9353c-28be-11ed-a6d3-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"96f9353c-28be-11ed-a6d3-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:55:18.1665901Z","updatedOn":"2022-08-30T23:55:18.1665901Z","createdBy":"08de6591-dec9-4255-ab17-d6919151fadd","updatedBy":"08de6591-dec9-4255-ab17-d6919151fadd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/32738d64-28bf-11ed-8c18-d28ee6de8df0","type":"Microsoft.Authorization/roleAssignments","name":"32738d64-28bf-11ed-8c18-d28ee6de8df0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:55:21.0832794Z","updatedOn":"2022-08-30T23:55:21.0832794Z","createdBy":"08de6591-dec9-4255-ab17-d6919151fadd","updatedBy":"08de6591-dec9-4255-ab17-d6919151fadd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/347773d2-28bf-11ed-8c18-d28ee6de8df0","type":"Microsoft.Authorization/roleAssignments","name":"347773d2-28bf-11ed-8c18-d28ee6de8df0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-31T23:23:54.3892344Z","updatedOn":"2022-08-31T23:23:54.3892344Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa44d69e-2983-11ed-aa08-92f3f7a6dd9b","type":"Microsoft.Authorization/roleAssignments","name":"fa44d69e-2983-11ed-aa08-92f3f7a6dd9b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-31T23:23:57.6913146Z","updatedOn":"2022-08-31T23:23:57.6913146Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc468884-2983-11ed-aa08-92f3f7a6dd9b","type":"Microsoft.Authorization/roleAssignments","name":"fc468884-2983-11ed-aa08-92f3f7a6dd9b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-01T06:08:41.4708815Z","updatedOn":"2022-09-01T06:08:41.4708815Z","createdBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","updatedBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/86088e13-29bc-11ed-9e75-ee990064eed4","type":"Microsoft.Authorization/roleAssignments","name":"86088e13-29bc-11ed-9e75-ee990064eed4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-01T14:36:10.3068118Z","updatedOn":"2022-09-01T14:36:10.3068118Z","createdBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","updatedBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b6d0b78-2a03-11ed-8b33-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6b6d0b78-2a03-11ed-8b33-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-01T14:36:19.4793808Z","updatedOn":"2022-09-01T14:36:19.4793808Z","createdBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","updatedBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70bc79b0-2a03-11ed-8b33-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"70bc79b0-2a03-11ed-8b33-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-05T20:13:38.7677056Z","updatedOn":"2022-09-05T20:13:38.7677056Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/396cb586-2d57-11ed-8f60-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"396cb586-2d57-11ed-8f60-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-06T19:58:31.4389144Z","updatedOn":"2022-09-06T19:58:31.4389144Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47bb56b5-2e1e-11ed-9020-000d3a6d9a18","type":"Microsoft.Authorization/roleAssignments","name":"47bb56b5-2e1e-11ed-9020-000d3a6d9a18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-06T19:58:35.6283701Z","updatedOn":"2022-09-06T19:58:35.6283701Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a30eda3-2e1e-11ed-9020-000d3a6d9a18","type":"Microsoft.Authorization/roleAssignments","name":"4a30eda3-2e1e-11ed-9020-000d3a6d9a18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-08T14:38:34.2901394Z","updatedOn":"2022-09-08T14:38:34.2901394Z","createdBy":"61a5600d-3609-43e4-9dd8-bcf58e3ce51f","updatedBy":"61a5600d-3609-43e4-9dd8-bcf58e3ce51f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea4dcb49-2f83-11ed-9efa-000d3a181b06","type":"Microsoft.Authorization/roleAssignments","name":"ea4dcb49-2f83-11ed-9efa-000d3a181b06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-08T17:46:08.1384737Z","updatedOn":"2022-09-08T17:46:08.1384737Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1dc95ee4-2f9e-11ed-89d2-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"1dc95ee4-2f9e-11ed-89d2-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-08T17:46:11.6717566Z","updatedOn":"2022-09-08T17:46:11.6717566Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2008f142-2f9e-11ed-89d2-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2008f142-2f9e-11ed-89d2-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-12T23:42:55.7564365Z","updatedOn":"2022-09-12T23:42:55.7564365Z","createdBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","updatedBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fa0c69c-32f4-11ed-aee5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"9fa0c69c-32f4-11ed-aee5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-12T23:43:04.5756788Z","updatedOn":"2022-09-12T23:43:04.5756788Z","createdBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","updatedBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a4e1656c-32f4-11ed-aee5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"a4e1656c-32f4-11ed-aee5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T00:18:28.3312561Z","updatedOn":"2022-09-13T00:18:28.3312561Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/965f9705-32f9-11ed-a03a-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"965f9705-32f9-11ed-a03a-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T00:18:32.9627131Z","updatedOn":"2022-09-13T00:18:32.9627131Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9918693b-32f9-11ed-a03a-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"9918693b-32f9-11ed-a03a-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T05:20:21.8356068Z","updatedOn":"2022-09-13T05:20:21.8356068Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14ac626a-3acb-4867-a3ce-32d85da9a0e7","type":"Microsoft.Authorization/roleAssignments","name":"14ac626a-3acb-4867-a3ce-32d85da9a0e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T20:31:46.8554799Z","updatedOn":"2022-09-13T20:31:46.8554799Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d71c7b8-3398-11ed-ad11-e6ebdcb69945","type":"Microsoft.Authorization/roleAssignments","name":"6d71c7b8-3398-11ed-ad11-e6ebdcb69945"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T20:31:50.1456004Z","updatedOn":"2022-09-13T20:31:50.1456004Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ca65e0f-3398-11ed-ad11-e6ebdcb69945","type":"Microsoft.Authorization/roleAssignments","name":"7ca65e0f-3398-11ed-ad11-e6ebdcb69945"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T23:17:04.2606442Z","updatedOn":"2022-09-13T23:17:04.2606442Z","createdBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","updatedBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ecfc544-bb26-4b57-9c52-7a3751bf5b9a","type":"Microsoft.Authorization/roleAssignments","name":"8ecfc544-bb26-4b57-9c52-7a3751bf5b9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-14T20:11:09.0922785Z","updatedOn":"2022-09-14T20:11:09.0922785Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/43c2f0e6-bf81-4e83-bf98-eb7d592639a5","type":"Microsoft.Authorization/roleAssignments","name":"43c2f0e6-bf81-4e83-bf98-eb7d592639a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-15T17:44:22.3186068Z","updatedOn":"2022-09-15T17:44:22.3186068Z","createdBy":"2182129f-e575-4986-a7fb-2be7772ba46f","updatedBy":"2182129f-e575-4986-a7fb-2be7772ba46f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/05e871b7-351e-11ed-8cc7-32a64839c39d","type":"Microsoft.Authorization/roleAssignments","name":"05e871b7-351e-11ed-8cc7-32a64839c39d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ab4d3d-a1bf-4477-8ad9-8359bc988f69","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-15T22:34:54.1872835Z","updatedOn":"2022-09-15T22:34:54.1872835Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9ac6f9f-a6dc-43e5-bc80-6e362547ff03","type":"Microsoft.Authorization/roleAssignments","name":"a9ac6f9f-a6dc-43e5-bc80-6e362547ff03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-15T22:36:25.6520797Z","updatedOn":"2022-09-15T22:36:25.6520797Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a48452ae-2a7a-4a35-bc22-de46608a8c12","type":"Microsoft.Authorization/roleAssignments","name":"a48452ae-2a7a-4a35-bc22-de46608a8c12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ab4d3d-a1bf-4477-8ad9-8359bc988f69","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-16T03:26:44.5972975Z","updatedOn":"2022-09-16T03:26:44.5972975Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7ddb897-f37b-4617-8b62-26a42b72d0fd","type":"Microsoft.Authorization/roleAssignments","name":"b7ddb897-f37b-4617-8b62-26a42b72d0fd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-16T03:27:20.0290180Z","updatedOn":"2022-09-16T03:27:20.0290180Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36cbdcc8-a70b-42a9-836a-9bb89dbd301a","type":"Microsoft.Authorization/roleAssignments","name":"36cbdcc8-a70b-42a9-836a-9bb89dbd301a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-16T14:21:41.5963217Z","updatedOn":"2022-09-16T14:21:41.5963217Z","createdBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","updatedBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc428d08-6f99-4619-9554-500bfc75b861","type":"Microsoft.Authorization/roleAssignments","name":"bc428d08-6f99-4619-9554-500bfc75b861"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T01:59:15.5981081Z","updatedOn":"2022-09-19T01:59:15.5981081Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a92c46b1-37be-11ed-8745-00224857f2c5","type":"Microsoft.Authorization/roleAssignments","name":"a92c46b1-37be-11ed-8745-00224857f2c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T01:59:20.5513267Z","updatedOn":"2022-09-19T01:59:20.5513267Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac11dbd2-37be-11ed-8745-00224857f2c5","type":"Microsoft.Authorization/roleAssignments","name":"ac11dbd2-37be-11ed-8745-00224857f2c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T09:51:42.7586328Z","updatedOn":"2022-09-19T09:51:42.7586328Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1cb1222d-5cb9-4d4a-a901-850f4a0d08da","type":"Microsoft.Authorization/roleAssignments","name":"1cb1222d-5cb9-4d4a-a901-850f4a0d08da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T18:49:44.8806347Z","updatedOn":"2022-09-19T18:49:44.8806347Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9c6a4b4-714e-45fc-8bc4-11c41f8c306a","type":"Microsoft.Authorization/roleAssignments","name":"b9c6a4b4-714e-45fc-8bc4-11c41f8c306a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T22:48:28.6777206Z","updatedOn":"2022-09-19T22:48:28.6777206Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ea76d8b-9daa-4d62-bfc8-bb9013ecec53","type":"Microsoft.Authorization/roleAssignments","name":"3ea76d8b-9daa-4d62-bfc8-bb9013ecec53"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-20T22:34:06.1765862Z","updatedOn":"2022-09-20T22:34:06.1765862Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/475a9fc4-c1a8-42c7-9e4e-d897c83f2a86","type":"Microsoft.Authorization/roleAssignments","name":"475a9fc4-c1a8-42c7-9e4e-d897c83f2a86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/434105ed-43f6-45c7-a02f-909b2ba83430","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-21T00:11:12.3038110Z","updatedOn":"2022-09-21T00:11:12.3038110Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce3975e8-d43d-4f8c-a315-e20609d7472a","type":"Microsoft.Authorization/roleAssignments","name":"ce3975e8-d43d-4f8c-a315-e20609d7472a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T07:30:57.3801733Z","updatedOn":"2022-09-23T07:30:57.3801733Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7a5ed22-3b11-11ed-876d-1a48d609785e","type":"Microsoft.Authorization/roleAssignments","name":"a7a5ed22-3b11-11ed-876d-1a48d609785e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T14:34:07.2104918Z","updatedOn":"2022-09-23T14:34:07.2104918Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c756e2ff-3b4c-11ed-be28-000d3a9e5815","type":"Microsoft.Authorization/roleAssignments","name":"c756e2ff-3b4c-11ed-be28-000d3a9e5815"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T14:34:10.7191458Z","updatedOn":"2022-09-23T14:34:10.7191458Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c96352a0-3b4c-11ed-be28-000d3a9e5815","type":"Microsoft.Authorization/roleAssignments","name":"c96352a0-3b4c-11ed-be28-000d3a9e5815"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T19:05:01.8468743Z","updatedOn":"2022-09-23T19:05:01.8468743Z","createdBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","updatedBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ecc7527-3b72-11ed-92ab-a642c656be12","type":"Microsoft.Authorization/roleAssignments","name":"9ecc7527-3b72-11ed-92ab-a642c656be12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T21:31:12.8549148Z","updatedOn":"2022-09-23T21:31:12.8549148Z","createdBy":"0fa3313e-2eee-4835-aeff-681e46364ab6","updatedBy":"0fa3313e-2eee-4835-aeff-681e46364ab6","delegatedManagedIdentityResourceId":null,"description":"New + AKS SRE team member"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b79302d-37ad-406c-b32d-cddbd2387781","type":"Microsoft.Authorization/roleAssignments","name":"2b79302d-37ad-406c-b32d-cddbd2387781"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-25T18:15:06.7527496Z","updatedOn":"2022-09-25T18:15:06.7527496Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f83fc539-aab6-4862-8635-cbe5472eadad","type":"Microsoft.Authorization/roleAssignments","name":"f83fc539-aab6-4862-8635-cbe5472eadad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-25T17:34:50.8733023Z","updatedOn":"2023-01-25T17:34:50.8733023Z","createdBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","updatedBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/91a85771-9cd6-11ed-a528-6045bd8532c1","type":"Microsoft.Authorization/roleAssignments","name":"91a85771-9cd6-11ed-a528-6045bd8532c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T19:40:10.2077596Z","updatedOn":"2023-01-26T19:40:10.2077596Z","createdBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","updatedBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3deeb34a-9db1-11ed-9882-bad388e32b6e","type":"Microsoft.Authorization/roleAssignments","name":"3deeb34a-9db1-11ed-9882-bad388e32b6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T19:40:13.9767599Z","updatedOn":"2023-01-26T19:40:13.9767599Z","createdBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","updatedBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/405d87d0-9db1-11ed-9882-bad388e32b6e","type":"Microsoft.Authorization/roleAssignments","name":"405d87d0-9db1-11ed-9882-bad388e32b6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T21:29:38.0736564Z","updatedOn":"2023-01-26T21:29:38.0736564Z","createdBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","updatedBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88db6aa7-9dc0-11ed-873b-02af4457d3da","type":"Microsoft.Authorization/roleAssignments","name":"88db6aa7-9dc0-11ed-873b-02af4457d3da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T21:29:41.9721959Z","updatedOn":"2023-01-26T21:29:41.9721959Z","createdBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","updatedBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8b20c92b-9dc0-11ed-873b-02af4457d3da","type":"Microsoft.Authorization/roleAssignments","name":"8b20c92b-9dc0-11ed-873b-02af4457d3da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-28T06:05:38.5919016Z","updatedOn":"2023-01-28T06:05:38.5919016Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ee0fdb3-65a0-4344-a73d-15f6b92ea58b","type":"Microsoft.Authorization/roleAssignments","name":"7ee0fdb3-65a0-4344-a73d-15f6b92ea58b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-29T03:40:38.5139182Z","updatedOn":"2023-01-29T03:40:38.5139182Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1dec2dc-9f86-11ed-a95c-0022487e65a6","type":"Microsoft.Authorization/roleAssignments","name":"b1dec2dc-9f86-11ed-a95c-0022487e65a6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-30T05:50:30.0380171Z","updatedOn":"2023-01-30T05:50:30.0380171Z","createdBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","updatedBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/792989a2-3985-4915-bf5a-4eb5451f731b","type":"Microsoft.Authorization/roleAssignments","name":"792989a2-3985-4915-bf5a-4eb5451f731b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-30T15:03:46.9770738Z","updatedOn":"2023-01-30T15:03:46.9770738Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a97ceb8-a0af-11ed-bf9c-a8a1598cc0f3","type":"Microsoft.Authorization/roleAssignments","name":"4a97ceb8-a0af-11ed-bf9c-a8a1598cc0f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-31T08:45:32.8563782Z","updatedOn":"2023-01-31T08:45:32.8563782Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ea26baa-a143-11ed-85d1-1eb0db5454d6","type":"Microsoft.Authorization/roleAssignments","name":"9ea26baa-a143-11ed-85d1-1eb0db5454d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-31T09:18:23.0405616Z","updatedOn":"2023-01-31T09:18:23.0405616Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9063ace1-9e8e-4195-82f8-39fe17fca5ce","type":"Microsoft.Authorization/roleAssignments","name":"9063ace1-9e8e-4195-82f8-39fe17fca5ce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-01T08:12:47.9822357Z","updatedOn":"2023-02-01T08:12:47.9822357Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/31c05c6a-a87b-4ad2-a07e-7acaadecb649","type":"Microsoft.Authorization/roleAssignments","name":"31c05c6a-a87b-4ad2-a07e-7acaadecb649"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-01T19:03:12.2207490Z","updatedOn":"2023-02-01T19:03:12.2207490Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/153174d5-a263-11ed-bad7-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"153174d5-a263-11ed-bad7-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-01T19:03:15.7264802Z","updatedOn":"2023-02-01T19:03:15.7264802Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/172f1d82-a263-11ed-bad7-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"172f1d82-a263-11ed-bad7-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-02T03:13:38.6056072Z","updatedOn":"2023-02-02T03:13:38.6056072Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88d8d974-d77d-450f-89ee-d4a98efea6d8","type":"Microsoft.Authorization/roleAssignments","name":"88d8d974-d77d-450f-89ee-d4a98efea6d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-02T03:19:55.3070568Z","updatedOn":"2023-02-02T03:19:55.3070568Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f273f651-5bde-4219-ab11-33842c5d3224","type":"Microsoft.Authorization/roleAssignments","name":"f273f651-5bde-4219-ab11-33842c5d3224"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-02T09:43:41.0210838Z","updatedOn":"2023-02-02T09:43:41.0210838Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2e9d149-730b-447b-b3e8-3a1fff80f1e1","type":"Microsoft.Authorization/roleAssignments","name":"b2e9d149-730b-447b-b3e8-3a1fff80f1e1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-03T18:49:50.9127720Z","updatedOn":"2023-02-03T18:49:50.9127720Z","createdBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","updatedBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8984621e-a3f3-11ed-b23c-a08cfdd89f0d","type":"Microsoft.Authorization/roleAssignments","name":"8984621e-a3f3-11ed-b23c-a08cfdd89f0d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-03T18:49:55.4277284Z","updatedOn":"2023-02-03T18:49:55.4277284Z","createdBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","updatedBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c3308b8-a3f3-11ed-b23c-a08cfdd89f0d","type":"Microsoft.Authorization/roleAssignments","name":"8c3308b8-a3f3-11ed-b23c-a08cfdd89f0d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-03T21:54:32.5272557Z","updatedOn":"2023-02-03T21:54:32.5272557Z","createdBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","updatedBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5650998f-a40d-11ed-8cfd-763d1fcabad1","type":"Microsoft.Authorization/roleAssignments","name":"5650998f-a40d-11ed-8cfd-763d1fcabad1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-06T16:05:18.7158859Z","updatedOn":"2023-02-06T16:05:18.7158859Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b2a1bdc-a638-11ed-b0e4-de5d54961c0d","type":"Microsoft.Authorization/roleAssignments","name":"0b2a1bdc-a638-11ed-b0e4-de5d54961c0d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-06T21:22:16.0685608Z","updatedOn":"2023-02-06T21:22:16.0685608Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5372f2e2-a664-11ed-99dd-00155d7b2003","type":"Microsoft.Authorization/roleAssignments","name":"5372f2e2-a664-11ed-99dd-00155d7b2003"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T02:31:53.1943940Z","updatedOn":"2023-02-07T02:31:53.1943940Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/93d9ca8e-a68f-11ed-99fe-82539686faad","type":"Microsoft.Authorization/roleAssignments","name":"93d9ca8e-a68f-11ed-99fe-82539686faad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T17:35:09.5804790Z","updatedOn":"2023-02-07T17:35:09.5804790Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c423996c-a70d-11ed-805e-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"c423996c-a70d-11ed-805e-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T21:59:01.9278864Z","updatedOn":"2023-02-07T21:59:01.9278864Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/415eb8ac-2243-415a-8a6a-692cfd82054b","type":"Microsoft.Authorization/roleAssignments","name":"415eb8ac-2243-415a-8a6a-692cfd82054b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T23:07:32.1844748Z","updatedOn":"2023-02-07T23:07:32.1844748Z","createdBy":"bd73a081-fc57-4d58-adb0-f7b098797225","updatedBy":"bd73a081-fc57-4d58-adb0-f7b098797225","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/32edd9f4-a73c-11ed-a351-64d69a01bd73","type":"Microsoft.Authorization/roleAssignments","name":"32edd9f4-a73c-11ed-a351-64d69a01bd73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T23:07:37.2690514Z","updatedOn":"2023-02-07T23:07:37.2690514Z","createdBy":"bd73a081-fc57-4d58-adb0-f7b098797225","updatedBy":"bd73a081-fc57-4d58-adb0-f7b098797225","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3567b721-a73c-11ed-a351-64d69a01bd73","type":"Microsoft.Authorization/roleAssignments","name":"3567b721-a73c-11ed-a351-64d69a01bd73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T16:04:37.2489661Z","updatedOn":"2023-02-08T16:04:37.2489661Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4891c61c-a7ca-11ed-926c-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"4891c61c-a7ca-11ed-926c-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T19:28:37.4403950Z","updatedOn":"2023-02-08T19:28:37.4403950Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7017b0f-925c-43b0-9416-6eb60d8374e3","type":"Microsoft.Authorization/roleAssignments","name":"a7017b0f-925c-43b0-9416-6eb60d8374e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T19:42:35.5124742Z","updatedOn":"2023-02-08T19:42:35.5124742Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd059c37-a7e8-11ed-8d91-7e3b8160807d","type":"Microsoft.Authorization/roleAssignments","name":"bd059c37-a7e8-11ed-8d91-7e3b8160807d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T19:42:39.7153998Z","updatedOn":"2023-02-08T19:42:39.7153998Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf728611-a7e8-11ed-8d91-7e3b8160807d","type":"Microsoft.Authorization/roleAssignments","name":"bf728611-a7e8-11ed-8d91-7e3b8160807d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T22:45:32.7092683Z","updatedOn":"2023-02-08T22:45:32.7092683Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c82f6230-4661-4b60-9ae4-cbd24bc5971d","type":"Microsoft.Authorization/roleAssignments","name":"c82f6230-4661-4b60-9ae4-cbd24bc5971d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T23:38:55.4476717Z","updatedOn":"2023-02-08T23:38:55.4476717Z","createdBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","updatedBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b563f5e3-a809-11ed-92da-061e1dff6519","type":"Microsoft.Authorization/roleAssignments","name":"b563f5e3-a809-11ed-92da-061e1dff6519"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T17:18:01.5061195Z","updatedOn":"2023-02-09T17:18:01.5061195Z","createdBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","updatedBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b477f0fa-a89d-11ed-9d1f-4e375b705c86","type":"Microsoft.Authorization/roleAssignments","name":"b477f0fa-a89d-11ed-9d1f-4e375b705c86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T17:18:03.2471424Z","updatedOn":"2023-02-09T17:18:03.2471424Z","createdBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","updatedBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b58085bc-a89d-11ed-9d1f-4e375b705c86","type":"Microsoft.Authorization/roleAssignments","name":"b58085bc-a89d-11ed-9d1f-4e375b705c86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T18:21:34.0931358Z","updatedOn":"2023-02-09T18:21:34.0931358Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5fe27fe4-6007-4829-afa0-0a3e3780b6d3","type":"Microsoft.Authorization/roleAssignments","name":"5fe27fe4-6007-4829-afa0-0a3e3780b6d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T21:44:30.2729026Z","updatedOn":"2023-02-09T21:44:30.2729026Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eecd187f-a8c2-11ed-9284-1e4dbb47ca8f","type":"Microsoft.Authorization/roleAssignments","name":"eecd187f-a8c2-11ed-9284-1e4dbb47ca8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T21:44:36.9652403Z","updatedOn":"2023-02-09T21:44:36.9652403Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f27e86e2-a8c2-11ed-9284-1e4dbb47ca8f","type":"Microsoft.Authorization/roleAssignments","name":"f27e86e2-a8c2-11ed-9284-1e4dbb47ca8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T01:19:04.3719723Z","updatedOn":"2023-02-10T01:19:04.3719723Z","createdBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","updatedBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d5cdb0f-1b3b-46f9-8e1b-84661382dfe9","type":"Microsoft.Authorization/roleAssignments","name":"0d5cdb0f-1b3b-46f9-8e1b-84661382dfe9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T22:39:09.0776574Z","updatedOn":"2023-02-10T22:39:09.0776574Z","createdBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","updatedBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb3a8a84-a993-11ed-a433-00155df41803","type":"Microsoft.Authorization/roleAssignments","name":"bb3a8a84-a993-11ed-a433-00155df41803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T22:39:12.9098417Z","updatedOn":"2023-02-10T22:39:12.9098417Z","createdBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","updatedBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd7f173a-a993-11ed-a433-00155df41803","type":"Microsoft.Authorization/roleAssignments","name":"bd7f173a-a993-11ed-a433-00155df41803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e3c35f4c-e0ca-4b9e-a01e-5ebdd17e2ee7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-13T07:08:28.2729144Z","updatedOn":"2023-02-13T07:08:28.2729144Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bba123f0-e027-47b5-9f46-15320b0d6ea2","type":"Microsoft.Authorization/roleAssignments","name":"bba123f0-e027-47b5-9f46-15320b0d6ea2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-13T20:30:01.2193678Z","updatedOn":"2023-02-13T20:30:01.2193678Z","createdBy":"40db9032-6efa-443b-a2df-6b0c1d107875","updatedBy":"40db9032-6efa-443b-a2df-6b0c1d107875","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f3b7710-abdd-11ed-8e93-42746b8cdccc","type":"Microsoft.Authorization/roleAssignments","name":"2f3b7710-abdd-11ed-8e93-42746b8cdccc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-13T20:30:05.9299217Z","updatedOn":"2023-02-13T20:30:05.9299217Z","createdBy":"40db9032-6efa-443b-a2df-6b0c1d107875","updatedBy":"40db9032-6efa-443b-a2df-6b0c1d107875","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/321b80cb-abdd-11ed-8e93-42746b8cdccc","type":"Microsoft.Authorization/roleAssignments","name":"321b80cb-abdd-11ed-8e93-42746b8cdccc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-14T20:20:30.1688349Z","updatedOn":"2023-02-14T20:20:30.1688349Z","createdBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","updatedBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/06359457-aca5-11ed-82a6-00155df41803","type":"Microsoft.Authorization/roleAssignments","name":"06359457-aca5-11ed-82a6-00155df41803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T01:37:21.5709630Z","updatedOn":"2023-02-15T01:37:21.5709630Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a7e1874-acd1-11ed-8639-d691c85c3a02","type":"Microsoft.Authorization/roleAssignments","name":"4a7e1874-acd1-11ed-8639-d691c85c3a02"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T09:59:56.7546952Z","updatedOn":"2023-02-15T09:59:56.7546952Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7fa783e6-ad17-11ed-97ee-000d3a9be92a","type":"Microsoft.Authorization/roleAssignments","name":"7fa783e6-ad17-11ed-97ee-000d3a9be92a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T10:00:02.7311424Z","updatedOn":"2023-02-15T10:00:02.7311424Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/836897a6-ad17-11ed-97ee-000d3a9be92a","type":"Microsoft.Authorization/roleAssignments","name":"836897a6-ad17-11ed-97ee-000d3a9be92a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T16:38:42.0341267Z","updatedOn":"2023-02-15T16:38:42.0341267Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3476476d-ad4f-11ed-8fa2-000d3a984fd4","type":"Microsoft.Authorization/roleAssignments","name":"3476476d-ad4f-11ed-8fa2-000d3a984fd4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T16:38:46.6959293Z","updatedOn":"2023-02-15T16:38:46.6959293Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/375326e5-ad4f-11ed-8fa2-000d3a984fd4","type":"Microsoft.Authorization/roleAssignments","name":"375326e5-ad4f-11ed-8fa2-000d3a984fd4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-17T06:21:34.8976862Z","updatedOn":"2023-02-17T06:21:34.8976862Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/52c15699-ae8b-11ed-b14e-023ef88171a7","type":"Microsoft.Authorization/roleAssignments","name":"52c15699-ae8b-11ed-b14e-023ef88171a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-19T02:02:00.9378377Z","updatedOn":"2023-02-19T02:02:00.9378377Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63ae64e6-aff9-11ed-967a-968963402bc6","type":"Microsoft.Authorization/roleAssignments","name":"63ae64e6-aff9-11ed-967a-968963402bc6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-19T02:02:05.4821651Z","updatedOn":"2023-02-19T02:02:05.4821651Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66639a26-aff9-11ed-967a-968963402bc6","type":"Microsoft.Authorization/roleAssignments","name":"66639a26-aff9-11ed-967a-968963402bc6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T09:22:38.4725256Z","updatedOn":"2023-02-21T09:22:38.4725256Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/48461efc-b1c9-11ed-bd41-3ed144e41689","type":"Microsoft.Authorization/roleAssignments","name":"48461efc-b1c9-11ed-bd41-3ed144e41689"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T09:22:42.2363452Z","updatedOn":"2023-02-21T09:22:42.2363452Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a784b6e-b1c9-11ed-bd41-3ed144e41689","type":"Microsoft.Authorization/roleAssignments","name":"4a784b6e-b1c9-11ed-bd41-3ed144e41689"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-23T03:00:31.5651965Z","updatedOn":"2023-02-23T03:00:31.5651965Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cef217b-a8cc-4115-a4bd-042af84325dc","type":"Microsoft.Authorization/roleAssignments","name":"3cef217b-a8cc-4115-a4bd-042af84325dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-23T06:48:16.8637402Z","updatedOn":"2023-02-23T06:48:16.8637402Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0c91daf6-b346-11ed-a964-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"0c91daf6-b346-11ed-a964-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-23T06:48:21.4826289Z","updatedOn":"2023-02-23T06:48:21.4826289Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f55d0c9-b346-11ed-a964-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"0f55d0c9-b346-11ed-a964-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T00:54:23.0966101Z","updatedOn":"2023-02-24T00:54:23.0966101Z","createdBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","updatedBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6e6a721-b3dd-11ed-b60f-0022481da32e","type":"Microsoft.Authorization/roleAssignments","name":"c6e6a721-b3dd-11ed-b60f-0022481da32e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T00:54:31.9826815Z","updatedOn":"2023-02-24T00:54:31.9826815Z","createdBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","updatedBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc3f3b4e-b3dd-11ed-b60f-0022481da32e","type":"Microsoft.Authorization/roleAssignments","name":"cc3f3b4e-b3dd-11ed-b60f-0022481da32e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T02:50:23.5663680Z","updatedOn":"2023-02-24T02:50:23.5663680Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb698872-b3ed-11ed-8f76-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"fb698872-b3ed-11ed-8f76-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T04:50:44.0913238Z","updatedOn":"2023-02-24T04:50:44.0913238Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cb72426d-4967-427c-8cf6-c167bc26814f","type":"Microsoft.Authorization/roleAssignments","name":"cb72426d-4967-427c-8cf6-c167bc26814f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T23:34:22.8669116Z","updatedOn":"2023-02-24T23:34:22.8669116Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3e6258b-b49b-11ed-90ef-000d3a0168de","type":"Microsoft.Authorization/roleAssignments","name":"c3e6258b-b49b-11ed-90ef-000d3a0168de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T23:34:26.7176031Z","updatedOn":"2023-02-24T23:34:26.7176031Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6438a56-b49b-11ed-90ef-000d3a0168de","type":"Microsoft.Authorization/roleAssignments","name":"c6438a56-b49b-11ed-90ef-000d3a0168de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-27T04:38:09.3994350Z","updatedOn":"2023-02-27T04:38:09.3994350Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b58ab305-83cc-4c4e-924b-3c1ba8ffcb83","type":"Microsoft.Authorization/roleAssignments","name":"b58ab305-83cc-4c4e-924b-3c1ba8ffcb83"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-27T04:38:09.8212573Z","updatedOn":"2023-02-27T04:38:09.8212573Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45883a93-4807-4bb9-a2b3-a7163d6c2031","type":"Microsoft.Authorization/roleAssignments","name":"45883a93-4807-4bb9-a2b3-a7163d6c2031"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T04:01:45.4038947Z","updatedOn":"2023-02-28T04:01:45.4038947Z","createdBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","updatedBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9d7a9b0f-b71c-11ed-b33b-6045bd7c1155","type":"Microsoft.Authorization/roleAssignments","name":"9d7a9b0f-b71c-11ed-b33b-6045bd7c1155"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T06:57:12.2026246Z","updatedOn":"2023-02-28T06:57:12.2026246Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1f6f0732-b735-11ed-be49-962abdd2f2a3","type":"Microsoft.Authorization/roleAssignments","name":"1f6f0732-b735-11ed-be49-962abdd2f2a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T15:32:52.3533623Z","updatedOn":"2023-02-28T15:32:52.3533623Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28e54510-b77d-11ed-bcc0-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"28e54510-b77d-11ed-bcc0-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T17:34:23.5106370Z","updatedOn":"2023-02-28T17:34:23.5106370Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/22f4b3a0-b78e-11ed-8898-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"22f4b3a0-b78e-11ed-8898-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T18:16:58.6154652Z","updatedOn":"2023-02-28T18:16:58.6154652Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15c84290-b794-11ed-ba68-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"15c84290-b794-11ed-ba68-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T19:50:58.1867864Z","updatedOn":"2023-03-01T19:50:58.1867864Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61f54236-b86a-11ed-96f5-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"61f54236-b86a-11ed-96f5-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T22:21:34.1000877Z","updatedOn":"2023-03-01T22:21:34.1000877Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b7ce6fa-b87f-11ed-858b-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"6b7ce6fa-b87f-11ed-858b-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T22:45:09.8437635Z","updatedOn":"2023-03-01T22:45:09.8437635Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7b17d80-b882-11ed-a5f7-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"b7b17d80-b882-11ed-a5f7-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T23:11:15.0259743Z","updatedOn":"2023-03-01T23:11:15.0259743Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5c9278f6-b886-11ed-83fe-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"5c9278f6-b886-11ed-83fe-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T06:31:28.5537789Z","updatedOn":"2023-03-02T06:31:28.5537789Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d301d940-45f5-4242-8a04-8ce059ee9054","type":"Microsoft.Authorization/roleAssignments","name":"d301d940-45f5-4242-8a04-8ce059ee9054"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T16:54:46.5495446Z","updatedOn":"2023-03-02T16:54:46.5495446Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef382e78-b91a-11ed-8fc9-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"ef382e78-b91a-11ed-8fc9-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T18:09:39.0923025Z","updatedOn":"2023-03-02T18:09:39.0923025Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65561192-b925-11ed-8582-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"65561192-b925-11ed-8582-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T18:09:44.0481916Z","updatedOn":"2023-03-02T18:09:44.0481916Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/68443e92-b925-11ed-8582-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"68443e92-b925-11ed-8582-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T20:44:44.0250379Z","updatedOn":"2023-03-02T20:44:44.0250379Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f118b20-b93b-11ed-9771-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"0f118b20-b93b-11ed-9771-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T21:25:21.6836921Z","updatedOn":"2023-03-02T21:25:21.6836921Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb99eb4e-b940-11ed-b11e-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"bb99eb4e-b940-11ed-b11e-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T22:13:06.5481097Z","updatedOn":"2023-03-02T22:13:06.5481097Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/671c9222-b947-11ed-bf55-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"671c9222-b947-11ed-bf55-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T23:21:53.5068345Z","updatedOn":"2023-03-02T23:21:53.5068345Z","createdBy":"6a70a9ce-9405-4447-867c-92746716ef5a","updatedBy":"6a70a9ce-9405-4447-867c-92746716ef5a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/03b3dac0-b951-11ed-a3db-5e7d78be13fb","type":"Microsoft.Authorization/roleAssignments","name":"03b3dac0-b951-11ed-a3db-5e7d78be13fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T23:21:58.2602277Z","updatedOn":"2023-03-02T23:21:58.2602277Z","createdBy":"6a70a9ce-9405-4447-867c-92746716ef5a","updatedBy":"6a70a9ce-9405-4447-867c-92746716ef5a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/06a1f991-b951-11ed-a3db-5e7d78be13fb","type":"Microsoft.Authorization/roleAssignments","name":"06a1f991-b951-11ed-a3db-5e7d78be13fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-03T08:24:31.2215832Z","updatedOn":"2023-03-03T08:24:31.2215832Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c439d06c-2e66-4cbc-9c42-f2e962b394a9","type":"Microsoft.Authorization/roleAssignments","name":"c439d06c-2e66-4cbc-9c42-f2e962b394a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-03T08:25:05.4966158Z","updatedOn":"2023-03-03T08:25:05.4966158Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12c86535-6761-4402-a871-c5ed84a4b236","type":"Microsoft.Authorization/roleAssignments","name":"12c86535-6761-4402-a871-c5ed84a4b236"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-06T23:11:36.9481730Z","updatedOn":"2023-03-06T23:11:36.9481730Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d91d90a-bc74-11ed-a26b-66106f6e7480","type":"Microsoft.Authorization/roleAssignments","name":"3d91d90a-bc74-11ed-a26b-66106f6e7480"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-07T11:10:24.3937430Z","updatedOn":"2023-03-07T11:10:24.3937430Z","createdBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","updatedBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a74aed5f-bcd8-11ed-9f36-2636f0255870","type":"Microsoft.Authorization/roleAssignments","name":"a74aed5f-bcd8-11ed-9f36-2636f0255870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-07T11:10:29.5524963Z","updatedOn":"2023-03-07T11:10:29.5524963Z","createdBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","updatedBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa4ebe62-bcd8-11ed-9f36-2636f0255870","type":"Microsoft.Authorization/roleAssignments","name":"aa4ebe62-bcd8-11ed-9f36-2636f0255870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-08T19:24:26.7238172Z","updatedOn":"2023-03-08T19:24:26.7238172Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d65c4fee-bde6-11ed-8e54-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"d65c4fee-bde6-11ed-8e54-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-08T19:24:31.6398973Z","updatedOn":"2023-03-08T19:24:31.6398973Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d90a67f8-bde6-11ed-8e54-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"d90a67f8-bde6-11ed-8e54-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-08T20:06:19.9493503Z","updatedOn":"2023-03-08T20:06:19.9493503Z","createdBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","updatedBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0af95de-bdec-11ed-9669-3e22fb431907","type":"Microsoft.Authorization/roleAssignments","name":"b0af95de-bdec-11ed-9669-3e22fb431907"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-09T01:58:48.5122241Z","updatedOn":"2023-03-09T01:58:48.5122241Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee1bd122-be1d-11ed-a53c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"ee1bd122-be1d-11ed-a53c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-09T17:44:00.7209931Z","updatedOn":"2023-03-09T17:44:00.7209931Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f932fb60-bea1-11ed-afcf-6e3850888c7e","type":"Microsoft.Authorization/roleAssignments","name":"f932fb60-bea1-11ed-afcf-6e3850888c7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-10T08:26:27.9057589Z","updatedOn":"2023-03-10T08:26:27.9057589Z","createdBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","updatedBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f911d1d-bf1d-11ed-a236-002248824659","type":"Microsoft.Authorization/roleAssignments","name":"3f911d1d-bf1d-11ed-a236-002248824659"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-10T08:26:33.2539857Z","updatedOn":"2023-03-10T08:26:33.2539857Z","createdBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","updatedBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42d7f7e6-bf1d-11ed-a236-002248824659","type":"Microsoft.Authorization/roleAssignments","name":"42d7f7e6-bf1d-11ed-a236-002248824659"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-11T05:53:49.4765844Z","updatedOn":"2023-03-11T05:53:49.4765844Z","createdBy":"d378d978-a2b7-46cf-b57b-1e586d281118","updatedBy":"d378d978-a2b7-46cf-b57b-1e586d281118","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/179b8d2a-bfd1-11ed-bd9a-3c52827953b3","type":"Microsoft.Authorization/roleAssignments","name":"179b8d2a-bfd1-11ed-bd9a-3c52827953b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-11T05:53:53.6955891Z","updatedOn":"2023-03-11T05:53:53.6955891Z","createdBy":"d378d978-a2b7-46cf-b57b-1e586d281118","updatedBy":"d378d978-a2b7-46cf-b57b-1e586d281118","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1a1e6965-bfd1-11ed-bd9a-3c52827953b3","type":"Microsoft.Authorization/roleAssignments","name":"1a1e6965-bfd1-11ed-bd9a-3c52827953b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T06:33:26.4594910Z","updatedOn":"2023-03-13T06:33:26.4594910Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b03e0140-e53e-491a-9a7b-e179fa1b8a7b","type":"Microsoft.Authorization/roleAssignments","name":"b03e0140-e53e-491a-9a7b-e179fa1b8a7b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T12:12:33.0193279Z","updatedOn":"2023-03-13T12:12:33.0193279Z","createdBy":"559c030a-5305-402e-ab3c-018e8b685492","updatedBy":"559c030a-5305-402e-ab3c-018e8b685492","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54e258e9-c198-11ed-8db5-be30b45d791c","type":"Microsoft.Authorization/roleAssignments","name":"54e258e9-c198-11ed-8db5-be30b45d791c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T12:12:36.9894487Z","updatedOn":"2023-03-13T12:12:36.9894487Z","createdBy":"559c030a-5305-402e-ab3c-018e8b685492","updatedBy":"559c030a-5305-402e-ab3c-018e8b685492","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/575c39c1-c198-11ed-8db5-be30b45d791c","type":"Microsoft.Authorization/roleAssignments","name":"575c39c1-c198-11ed-8db5-be30b45d791c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-14T18:19:52.2457482Z","updatedOn":"2023-03-14T18:19:52.2457482Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf500684-c294-11ed-aaa3-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"cf500684-c294-11ed-aaa3-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-15T17:17:49.1398598Z","updatedOn":"2023-03-15T17:17:49.1398598Z","createdBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","updatedBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4edbdd66-c355-11ed-8966-d85ed302bf1b","type":"Microsoft.Authorization/roleAssignments","name":"4edbdd66-c355-11ed-8966-d85ed302bf1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-16T00:14:24.3742157Z","updatedOn":"2023-03-16T00:14:24.3742157Z","createdBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","updatedBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7f7be49f-c38f-11ed-ba47-9e7a3e847acb","type":"Microsoft.Authorization/roleAssignments","name":"7f7be49f-c38f-11ed-ba47-9e7a3e847acb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-16T00:14:28.4721252Z","updatedOn":"2023-03-16T00:14:28.4721252Z","createdBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","updatedBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81c01cec-c38f-11ed-ba47-9e7a3e847acb","type":"Microsoft.Authorization/roleAssignments","name":"81c01cec-c38f-11ed-ba47-9e7a3e847acb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-20T06:05:05.2225187Z","updatedOn":"2023-03-20T06:05:05.2225187Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/27de0b5c-c6e5-11ed-8082-0ab78cd2e1ba","type":"Microsoft.Authorization/roleAssignments","name":"27de0b5c-c6e5-11ed-8082-0ab78cd2e1ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-20T19:31:51.9736494Z","updatedOn":"2023-03-20T19:31:51.9736494Z","createdBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","updatedBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dbc8c438-c755-11ed-8659-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"dbc8c438-c755-11ed-8659-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-20T19:31:55.5444616Z","updatedOn":"2023-03-20T19:31:55.5444616Z","createdBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","updatedBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e111eebf-c755-11ed-8659-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"e111eebf-c755-11ed-8659-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T07:50:31.4771973Z","updatedOn":"2023-03-21T07:50:31.4771973Z","createdBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","updatedBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c95fead-0a2b-4d52-a17d-1d3d17997871","type":"Microsoft.Authorization/roleAssignments","name":"6c95fead-0a2b-4d52-a17d-1d3d17997871"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T08:30:33.5552284Z","updatedOn":"2023-03-21T08:30:33.5552284Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a54293b5-c7c2-11ed-a7e6-000d3a044b73","type":"Microsoft.Authorization/roleAssignments","name":"a54293b5-c7c2-11ed-a7e6-000d3a044b73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T19:10:41.8785727Z","updatedOn":"2023-03-21T19:10:41.8785727Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12487a5a-c81c-11ed-ba46-827f6562cca2","type":"Microsoft.Authorization/roleAssignments","name":"12487a5a-c81c-11ed-ba46-827f6562cca2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T19:10:47.3524534Z","updatedOn":"2023-03-21T19:10:47.3524534Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15881bc6-c81c-11ed-ba46-827f6562cca2","type":"Microsoft.Authorization/roleAssignments","name":"15881bc6-c81c-11ed-ba46-827f6562cca2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-23T04:37:57.4678727Z","updatedOn":"2023-03-23T04:37:57.4678727Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b934178-c934-11ed-b9f7-6045bd80c6e6","type":"Microsoft.Authorization/roleAssignments","name":"7b934178-c934-11ed-b9f7-6045bd80c6e6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-27T05:50:19.8871681Z","updatedOn":"2023-03-27T05:50:19.8871681Z","createdBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","updatedBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/410882d1-cc63-11ed-ae41-0022480f1f08","type":"Microsoft.Authorization/roleAssignments","name":"410882d1-cc63-11ed-ae41-0022480f1f08"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-27T05:50:25.6681144Z","updatedOn":"2023-03-27T05:50:25.6681144Z","createdBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","updatedBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/441bda3a-cc63-11ed-ae41-0022480f1f08","type":"Microsoft.Authorization/roleAssignments","name":"441bda3a-cc63-11ed-ae41-0022480f1f08"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d24ecba3-c1f4-40fa-a7bb-4588a071e8fd","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:06.6052430Z","updatedOn":"2023-03-28T04:20:06.6052430Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/407210a5-bc55-40fb-91a9-92aa082cb413","type":"Microsoft.Authorization/roleAssignments","name":"407210a5-bc55-40fb-91a9-92aa082cb413"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:10.8566627Z","updatedOn":"2023-03-28T04:20:10.8566627Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24f5047d-db77-4702-ffab-aa7c979ea3ff","type":"Microsoft.Authorization/roleAssignments","name":"24f5047d-db77-4702-ffab-aa7c979ea3ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:10.9115871Z","updatedOn":"2023-03-28T04:20:10.9115871Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/58df4b89-0de1-4d34-1767-ac1e33e9acd8","type":"Microsoft.Authorization/roleAssignments","name":"58df4b89-0de1-4d34-1767-ac1e33e9acd8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.4495061Z","updatedOn":"2023-03-28T04:20:11.4495061Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a454de4-a1dc-4273-f384-029257fe5c7f","type":"Microsoft.Authorization/roleAssignments","name":"4a454de4-a1dc-4273-f384-029257fe5c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.2724262Z","updatedOn":"2023-03-28T04:20:11.2724262Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd662e52-e7fa-4eeb-5755-696d2e8169b9","type":"Microsoft.Authorization/roleAssignments","name":"cd662e52-e7fa-4eeb-5755-696d2e8169b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.4717540Z","updatedOn":"2023-03-28T04:20:11.4717540Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4680d2be-be84-417b-d222-07880110ada0","type":"Microsoft.Authorization/roleAssignments","name":"4680d2be-be84-417b-d222-07880110ada0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.5533314Z","updatedOn":"2023-03-28T04:20:11.5533314Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28dadd85-c2a5-420f-1563-a6ec9d26fd9a","type":"Microsoft.Authorization/roleAssignments","name":"28dadd85-c2a5-420f-1563-a6ec9d26fd9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.5554589Z","updatedOn":"2023-03-28T04:20:11.5554589Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d1872322-4fde-43f5-e2b4-325dda9f40ad","type":"Microsoft.Authorization/roleAssignments","name":"d1872322-4fde-43f5-e2b4-325dda9f40ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.8299726Z","updatedOn":"2023-03-28T04:20:11.8299726Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ede81bb8-d3cd-4dc8-0fd3-b0a2a5a42b23","type":"Microsoft.Authorization/roleAssignments","name":"ede81bb8-d3cd-4dc8-0fd3-b0a2a5a42b23"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T14:40:42.0514829Z","updatedOn":"2023-03-29T14:40:42.0514829Z","createdBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","updatedBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ae019e96-ce3f-11ed-aa9b-000d3a142c7f","type":"Microsoft.Authorization/roleAssignments","name":"ae019e96-ce3f-11ed-aa9b-000d3a142c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T14:40:45.8687684Z","updatedOn":"2023-03-29T14:40:45.8687684Z","createdBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","updatedBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0540ef4-ce3f-11ed-aa9b-000d3a142c7f","type":"Microsoft.Authorization/roleAssignments","name":"b0540ef4-ce3f-11ed-aa9b-000d3a142c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T17:23:15.2268767Z","updatedOn":"2023-03-29T17:23:15.2268767Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/636243ad-ce56-11ed-9744-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"636243ad-ce56-11ed-9744-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T17:23:18.8739735Z","updatedOn":"2023-03-29T17:23:18.8739735Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6586219c-ce56-11ed-9744-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"6586219c-ce56-11ed-9744-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T19:32:39.0885013Z","updatedOn":"2023-03-29T19:32:39.0885013Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/76c41cef-ce68-11ed-b18b-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"76c41cef-ce68-11ed-b18b-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T19:32:43.3448308Z","updatedOn":"2023-03-29T19:32:43.3448308Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/793f1b95-ce68-11ed-b18b-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"793f1b95-ce68-11ed-b18b-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T02:24:05.4290067Z","updatedOn":"2023-03-31T02:24:05.4290067Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1ad6198a-cf6b-11ed-8440-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"1ad6198a-cf6b-11ed-8440-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T02:24:09.9883076Z","updatedOn":"2023-03-31T02:24:09.9883076Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1dd45f87-cf6b-11ed-8440-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"1dd45f87-cf6b-11ed-8440-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T07:26:15.0154750Z","updatedOn":"2023-03-31T07:26:15.0154750Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/babc263e-1cc9-429d-babf-2b33c8e79093","type":"Microsoft.Authorization/roleAssignments","name":"babc263e-1cc9-429d-babf-2b33c8e79093"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T07:44:54.6073153Z","updatedOn":"2023-03-31T07:44:54.6073153Z","createdBy":"2996d4bf-d495-49f2-a2cd-8d684c724185","updatedBy":"2996d4bf-d495-49f2-a2cd-8d684c724185","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/828df835-2536-4c50-9397-90aabf94db75","type":"Microsoft.Authorization/roleAssignments","name":"828df835-2536-4c50-9397-90aabf94db75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T19:06:47.3414876Z","updatedOn":"2023-03-31T19:06:47.3414876Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2ea3ab94-cff7-11ed-b393-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"2ea3ab94-cff7-11ed-b393-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T19:08:21.6870221Z","updatedOn":"2023-03-31T19:08:21.6870221Z","createdBy":"367712bd-8587-45ef-9e63-1d269a194d53","updatedBy":"367712bd-8587-45ef-9e63-1d269a194d53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66e7009d-cff7-11ed-a7d9-002248a7a68e","type":"Microsoft.Authorization/roleAssignments","name":"66e7009d-cff7-11ed-a7d9-002248a7a68e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T19:08:26.3035343Z","updatedOn":"2023-03-31T19:08:26.3035343Z","createdBy":"367712bd-8587-45ef-9e63-1d269a194d53","updatedBy":"367712bd-8587-45ef-9e63-1d269a194d53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/69a1dd2e-cff7-11ed-a7d9-002248a7a68e","type":"Microsoft.Authorization/roleAssignments","name":"69a1dd2e-cff7-11ed-a7d9-002248a7a68e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-02T04:28:12.7151802Z","updatedOn":"2023-04-02T04:28:12.7151802Z","createdBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","updatedBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c7830a5d-d10e-11ed-a622-f24a877c1ab5","type":"Microsoft.Authorization/roleAssignments","name":"c7830a5d-d10e-11ed-a622-f24a877c1ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-02T04:28:15.3112141Z","updatedOn":"2023-04-02T04:28:15.3112141Z","createdBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","updatedBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9256530-d10e-11ed-a622-f24a877c1ab5","type":"Microsoft.Authorization/roleAssignments","name":"c9256530-d10e-11ed-a622-f24a877c1ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-05T00:24:25.1673334Z","updatedOn":"2023-04-05T00:24:25.1673334Z","createdBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","updatedBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/376ceec9-d348-11ed-9d01-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"376ceec9-d348-11ed-9d01-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-05T00:24:28.5013634Z","updatedOn":"2023-04-05T00:24:28.5013634Z","createdBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","updatedBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39762108-d348-11ed-9d01-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"39762108-d348-11ed-9d01-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-10T17:47:25.2219893Z","updatedOn":"2023-04-10T17:47:25.2219893Z","createdBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","updatedBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0866ce8-d7c7-11ed-a6a7-9660021dc7a9","type":"Microsoft.Authorization/roleAssignments","name":"c0866ce8-d7c7-11ed-a6a7-9660021dc7a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-10T17:47:29.2984077Z","updatedOn":"2023-04-10T17:47:29.2984077Z","createdBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","updatedBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3089c1c-d7c7-11ed-a6a7-9660021dc7a9","type":"Microsoft.Authorization/roleAssignments","name":"c3089c1c-d7c7-11ed-a6a7-9660021dc7a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-13T19:14:02.9424463Z","updatedOn":"2023-04-13T19:14:02.9424463Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d256d6e-ea9e-4124-8252-9da35a5e074b","type":"Microsoft.Authorization/roleAssignments","name":"0d256d6e-ea9e-4124-8252-9da35a5e074b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-17T15:47:32.8370892Z","updatedOn":"2023-04-17T15:47:32.8370892Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3d0f65d-4923-4776-8fb5-288240615c89","type":"Microsoft.Authorization/roleAssignments","name":"b3d0f65d-4923-4776-8fb5-288240615c89"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-17T16:09:03.8628586Z","updatedOn":"2023-04-17T16:09:03.8628586Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2eb3e3cb-598f-4048-aab3-0bd5a8b262ec","type":"Microsoft.Authorization/roleAssignments","name":"2eb3e3cb-598f-4048-aab3-0bd5a8b262ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-19T18:42:49.4053198Z","updatedOn":"2023-04-19T18:42:49.4053198Z","createdBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","updatedBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fba6c131-dee1-11ed-af88-000d3a23f184","type":"Microsoft.Authorization/roleAssignments","name":"fba6c131-dee1-11ed-af88-000d3a23f184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-19T18:42:53.2275925Z","updatedOn":"2023-04-19T18:42:53.2275925Z","createdBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","updatedBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdf8a1c6-dee1-11ed-af88-000d3a23f184","type":"Microsoft.Authorization/roleAssignments","name":"fdf8a1c6-dee1-11ed-af88-000d3a23f184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-19T20:38:29.3110777Z","updatedOn":"2023-04-19T20:38:29.3110777Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23e3d8f0-def2-11ed-8cbe-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"23e3d8f0-def2-11ed-8cbe-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-20T23:41:52.6427527Z","updatedOn":"2023-04-20T23:41:52.6427527Z","createdBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","updatedBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4daefdda-d51e-55b7-9175-548688500778","type":"Microsoft.Authorization/roleAssignments","name":"4daefdda-d51e-55b7-9175-548688500778"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-21T17:49:07.3103199Z","updatedOn":"2023-04-21T17:49:07.3103199Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cfcbdd18-e06c-11ed-8b1a-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"cfcbdd18-e06c-11ed-8b1a-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-21T19:58:00.4291773Z","updatedOn":"2023-04-21T19:58:00.4291773Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d1321fac-e07e-11ed-9f07-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"d1321fac-e07e-11ed-9f07-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-25T18:19:28.7344580Z","updatedOn":"2023-04-25T18:19:28.7344580Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d940b7e-a372-438c-89b3-fe59be8a3d63","type":"Microsoft.Authorization/roleAssignments","name":"6d940b7e-a372-438c-89b3-fe59be8a3d63"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-26T15:27:00.5297027Z","updatedOn":"2023-04-26T15:27:00.5297027Z","createdBy":"b2192440-253a-42f2-8429-40f3820b89be","updatedBy":"b2192440-253a-42f2-8429-40f3820b89be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9b0c1c0-e446-11ed-a01b-00155d1f6f24","type":"Microsoft.Authorization/roleAssignments","name":"c9b0c1c0-e446-11ed-a01b-00155d1f6f24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-26T15:27:03.8070654Z","updatedOn":"2023-04-26T15:27:03.8070654Z","createdBy":"b2192440-253a-42f2-8429-40f3820b89be","updatedBy":"b2192440-253a-42f2-8429-40f3820b89be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbabbec4-e446-11ed-a01b-00155d1f6f24","type":"Microsoft.Authorization/roleAssignments","name":"cbabbec4-e446-11ed-a01b-00155d1f6f24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-28T14:39:15.9639397Z","updatedOn":"2023-04-28T14:39:15.9639397Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/731ed5b6-e5d2-11ed-b4a6-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"731ed5b6-e5d2-11ed-b4a6-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-28T14:39:19.9194172Z","updatedOn":"2023-04-28T14:39:19.9194172Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/757edff4-e5d2-11ed-b4a6-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"757edff4-e5d2-11ed-b4a6-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/974c5e8b-45b9-4653-ba55-5f855dd0fb88","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-01T21:15:30.3600778Z","updatedOn":"2023-05-01T21:15:30.3600778Z","createdBy":"5bef4afd-1360-40a2-ac51-9339229af623","updatedBy":"5bef4afd-1360-40a2-ac51-9339229af623","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4cff74bd-e865-11ed-bd8b-5e022905d313","type":"Microsoft.Authorization/roleAssignments","name":"4cff74bd-e865-11ed-bd8b-5e022905d313"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-01T21:15:34.1175433Z","updatedOn":"2023-05-01T21:15:34.1175433Z","createdBy":"5bef4afd-1360-40a2-ac51-9339229af623","updatedBy":"5bef4afd-1360-40a2-ac51-9339229af623","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4f3e2c7f-e865-11ed-bd8b-5e022905d313","type":"Microsoft.Authorization/roleAssignments","name":"4f3e2c7f-e865-11ed-bd8b-5e022905d313"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-01T22:25:20.9242136Z","updatedOn":"2023-05-01T22:25:20.9242136Z","createdBy":"1ae4ccb9-fb9e-49c0-b500-10d71ff2e737","updatedBy":"1ae4ccb9-fb9e-49c0-b500-10d71ff2e737","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/112fdd75-6ef8-4016-b550-eec1b3c20720","type":"Microsoft.Authorization/roleAssignments","name":"112fdd75-6ef8-4016-b550-eec1b3c20720"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T12:17:42.9403161Z","updatedOn":"2023-05-04T12:17:42.9403161Z","createdBy":"7206144a-a8f7-442f-994e-850c46730a52","updatedBy":"7206144a-a8f7-442f-994e-850c46730a52","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ab58b8d1-ea75-11ed-8e28-8c164501ca31","type":"Microsoft.Authorization/roleAssignments","name":"ab58b8d1-ea75-11ed-8e28-8c164501ca31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T12:17:48.5968787Z","updatedOn":"2023-05-04T12:17:48.5968787Z","createdBy":"7206144a-a8f7-442f-994e-850c46730a52","updatedBy":"7206144a-a8f7-442f-994e-850c46730a52","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aeac0cc1-ea75-11ed-8e28-8c164501ca31","type":"Microsoft.Authorization/roleAssignments","name":"aeac0cc1-ea75-11ed-8e28-8c164501ca31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T14:59:12.9566578Z","updatedOn":"2023-05-04T14:59:12.9566578Z","createdBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","updatedBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a379e3f-ea8c-11ed-b7f9-5254000f02cc","type":"Microsoft.Authorization/roleAssignments","name":"3a379e3f-ea8c-11ed-b7f9-5254000f02cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T14:59:17.0941141Z","updatedOn":"2023-05-04T14:59:17.0941141Z","createdBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","updatedBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cc57207-ea8c-11ed-b7f9-5254000f02cc","type":"Microsoft.Authorization/roleAssignments","name":"3cc57207-ea8c-11ed-b7f9-5254000f02cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-08T17:20:32.4213470Z","updatedOn":"2023-05-08T17:20:32.4213470Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fcb9cd22-d202-49b5-ac49-63b77db3c355","type":"Microsoft.Authorization/roleAssignments","name":"fcb9cd22-d202-49b5-ac49-63b77db3c355"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-08T18:57:28.0040779Z","updatedOn":"2023-05-08T18:57:28.0040779Z","createdBy":"a4ff7404-5868-4532-ab16-142dad6a55af","updatedBy":"a4ff7404-5868-4532-ab16-142dad6a55af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d38f814-edd2-11ed-b548-000d3af78112","type":"Microsoft.Authorization/roleAssignments","name":"2d38f814-edd2-11ed-b548-000d3af78112"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-08T18:57:31.3014429Z","updatedOn":"2023-05-08T18:57:31.3014429Z","createdBy":"a4ff7404-5868-4532-ab16-142dad6a55af","updatedBy":"a4ff7404-5868-4532-ab16-142dad6a55af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f311f92-edd2-11ed-b548-000d3af78112","type":"Microsoft.Authorization/roleAssignments","name":"2f311f92-edd2-11ed-b548-000d3af78112"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T19:02:07.8525568Z","updatedOn":"2023-05-10T19:02:07.8525568Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dedfb4b8-f315-5b5a-b52f-afbb2a175cd5","type":"Microsoft.Authorization/roleAssignments","name":"dedfb4b8-f315-5b5a-b52f-afbb2a175cd5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T19:02:07.5081592Z","updatedOn":"2023-05-10T19:02:07.5081592Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dcfe553d-97cc-5084-b369-d557cd90b386","type":"Microsoft.Authorization/roleAssignments","name":"dcfe553d-97cc-5084-b369-d557cd90b386"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T08:58:12.7125916Z","updatedOn":"2023-05-10T08:58:12.7125916Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d8f9d929-9d3d-42df-a8fe-5f0ceb0bba3e","type":"Microsoft.Authorization/roleAssignments","name":"d8f9d929-9d3d-42df-a8fe-5f0ceb0bba3e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T09:31:17.2430697Z","updatedOn":"2023-05-10T09:31:17.2430697Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3fd12d91-3e5a-4061-bcb2-05a9732b9159","type":"Microsoft.Authorization/roleAssignments","name":"3fd12d91-3e5a-4061-bcb2-05a9732b9159"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:43:09.6330210Z","updatedOn":"2023-05-10T16:43:09.6330210Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/becaa992-ef51-11ed-bf36-f6f4c2331193","type":"Microsoft.Authorization/roleAssignments","name":"becaa992-ef51-11ed-bf36-f6f4c2331193"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:43:13.3065725Z","updatedOn":"2023-05-10T16:43:13.3065725Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0ffd61a-ef51-11ed-bf36-f6f4c2331193","type":"Microsoft.Authorization/roleAssignments","name":"c0ffd61a-ef51-11ed-bf36-f6f4c2331193"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T21:23:06.4822851Z","updatedOn":"2023-05-10T21:23:06.4822851Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/db3e8912-ef78-11ed-9094-0ed70c823176","type":"Microsoft.Authorization/roleAssignments","name":"db3e8912-ef78-11ed-9094-0ed70c823176"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T21:23:10.1751715Z","updatedOn":"2023-05-10T21:23:10.1751715Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd8c02e4-ef78-11ed-9094-0ed70c823176","type":"Microsoft.Authorization/roleAssignments","name":"dd8c02e4-ef78-11ed-9094-0ed70c823176"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-12T17:27:33.1207504Z","updatedOn":"2023-05-12T17:27:33.1207504Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b59475c1-c560-4221-a59e-8c9f845d824c","type":"Microsoft.Authorization/roleAssignments","name":"b59475c1-c560-4221-a59e-8c9f845d824c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T18:50:21.8951381Z","updatedOn":"2023-05-15T18:50:21.8951381Z","createdBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","updatedBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57f8b39a-f351-11ed-a7a2-d28ee6de8df2","type":"Microsoft.Authorization/roleAssignments","name":"57f8b39a-f351-11ed-a7a2-d28ee6de8df2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T18:50:26.0744382Z","updatedOn":"2023-05-15T18:50:26.0744382Z","createdBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","updatedBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5a738a82-f351-11ed-a7a2-d28ee6de8df2","type":"Microsoft.Authorization/roleAssignments","name":"5a738a82-f351-11ed-a7a2-d28ee6de8df2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T20:09:25.9908381Z","updatedOn":"2023-05-15T20:09:25.9908381Z","createdBy":"1f978537-bb5b-4c76-9021-fb832071f334","updatedBy":"1f978537-bb5b-4c76-9021-fb832071f334","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63c222a4-f35c-11ed-a054-6e098a288f3f","type":"Microsoft.Authorization/roleAssignments","name":"63c222a4-f35c-11ed-a054-6e098a288f3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T20:09:35.2733605Z","updatedOn":"2023-05-15T20:09:35.2733605Z","createdBy":"1f978537-bb5b-4c76-9021-fb832071f334","updatedBy":"1f978537-bb5b-4c76-9021-fb832071f334","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6941144c-f35c-11ed-a054-6e098a288f3f","type":"Microsoft.Authorization/roleAssignments","name":"6941144c-f35c-11ed-a054-6e098a288f3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-17T20:10:57.7226371Z","updatedOn":"2023-05-17T20:10:57.7226371Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eda389e3-f4ee-11ed-b5ec-00155d3916e4","type":"Microsoft.Authorization/roleAssignments","name":"eda389e3-f4ee-11ed-b5ec-00155d3916e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-17T20:11:02.1123126Z","updatedOn":"2023-05-17T20:11:02.1123126Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f013376b-f4ee-11ed-b5ec-00155d3916e4","type":"Microsoft.Authorization/roleAssignments","name":"f013376b-f4ee-11ed-b5ec-00155d3916e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-19T16:27:28.8077810Z","updatedOn":"2023-05-19T16:27:28.8077810Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0bb8ff8d-f662-11ed-8f49-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"0bb8ff8d-f662-11ed-8f49-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-19T16:27:33.8052285Z","updatedOn":"2023-05-19T16:27:33.8052285Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ec6735e-f662-11ed-8f49-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"0ec6735e-f662-11ed-8f49-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-22T21:25:31.6093600Z","updatedOn":"2023-05-22T21:25:31.6093600Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d4e15d6-f8e7-11ed-8d3d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2d4e15d6-f8e7-11ed-8d3d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-22T21:25:39.5158809Z","updatedOn":"2023-05-22T21:25:39.5158809Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3232bc64-f8e7-11ed-8d3d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"3232bc64-f8e7-11ed-8d3d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T14:26:30.7681910Z","updatedOn":"2023-05-23T14:26:30.7681910Z","createdBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","updatedBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","delegatedManagedIdentityResourceId":null,"description":"Test + service principal"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/60f05fed-3b0c-4a91-86aa-44a327ded351","type":"Microsoft.Authorization/roleAssignments","name":"60f05fed-3b0c-4a91-86aa-44a327ded351"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T18:52:45.1223272Z","updatedOn":"2023-05-23T18:52:45.1223272Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47caa5b3-b27e-4f95-82b1-b5f87095df3a","type":"Microsoft.Authorization/roleAssignments","name":"47caa5b3-b27e-4f95-82b1-b5f87095df3a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T21:08:13.2773990Z","updatedOn":"2023-05-23T21:08:13.2773990Z","createdBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","updatedBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","delegatedManagedIdentityResourceId":null,"description":"Test + service principal"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79efe060-bf11-43db-ae9d-b281c8d0a9d8","type":"Microsoft.Authorization/roleAssignments","name":"79efe060-bf11-43db-ae9d-b281c8d0a9d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T23:58:25.0358872Z","updatedOn":"2023-05-23T23:58:25.0358872Z","createdBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","updatedBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3ca2af8-f9c5-11ed-9d5d-e64a5a4d2331","type":"Microsoft.Authorization/roleAssignments","name":"b3ca2af8-f9c5-11ed-9d5d-e64a5a4d2331"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T23:58:29.5965022Z","updatedOn":"2023-05-23T23:58:29.5965022Z","createdBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","updatedBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b699d06c-f9c5-11ed-9d5d-e64a5a4d2331","type":"Microsoft.Authorization/roleAssignments","name":"b699d06c-f9c5-11ed-9d5d-e64a5a4d2331"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-25T17:39:08.1426685Z","updatedOn":"2023-05-25T17:39:08.1426685Z","createdBy":"d87783d5-8706-48d6-ba20-d688d69119b2","updatedBy":"d87783d5-8706-48d6-ba20-d688d69119b2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23e6f3b5-225b-4e09-b962-619645aa3b66","type":"Microsoft.Authorization/roleAssignments","name":"23e6f3b5-225b-4e09-b962-619645aa3b66"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-25T20:11:52.1711289Z","updatedOn":"2023-05-25T20:11:52.1711289Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54d2e488-f4a3-4484-802e-ccd2bf4e0973","type":"Microsoft.Authorization/roleAssignments","name":"54d2e488-f4a3-4484-802e-ccd2bf4e0973"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-26T19:08:12.5337243Z","updatedOn":"2023-05-26T19:08:12.5337243Z","createdBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","updatedBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce436091-fe0c-51ad-a3a4-65285790684d","type":"Microsoft.Authorization/roleAssignments","name":"ce436091-fe0c-51ad-a3a4-65285790684d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-26T23:15:50.9221989Z","updatedOn":"2023-05-26T23:15:50.9221989Z","createdBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","updatedBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42aa6334-fc1b-11ed-8275-faccf5616d1b","type":"Microsoft.Authorization/roleAssignments","name":"42aa6334-fc1b-11ed-8275-faccf5616d1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-26T23:15:55.3490253Z","updatedOn":"2023-05-26T23:15:55.3490253Z","createdBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","updatedBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45629004-fc1b-11ed-8275-faccf5616d1b","type":"Microsoft.Authorization/roleAssignments","name":"45629004-fc1b-11ed-8275-faccf5616d1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-31T01:54:29.1188102Z","updatedOn":"2023-05-31T01:54:29.1188102Z","createdBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","updatedBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/13eebbd0-ff56-11ed-9bfa-02e332bf0a73","type":"Microsoft.Authorization/roleAssignments","name":"13eebbd0-ff56-11ed-9bfa-02e332bf0a73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-31T01:54:33.3318294Z","updatedOn":"2023-05-31T01:54:33.3318294Z","createdBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","updatedBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/166f22cd-ff56-11ed-9bfa-02e332bf0a73","type":"Microsoft.Authorization/roleAssignments","name":"166f22cd-ff56-11ed-9bfa-02e332bf0a73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-01T17:50:33.3890390Z","updatedOn":"2023-06-01T17:50:33.3890390Z","createdBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","updatedBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce40a1ba-00a4-11ee-9cf5-00155d28851f","type":"Microsoft.Authorization/roleAssignments","name":"ce40a1ba-00a4-11ee-9cf5-00155d28851f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-01T17:50:37.1678380Z","updatedOn":"2023-06-01T17:50:37.1678380Z","createdBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","updatedBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0850dfa-00a4-11ee-9cf5-00155d28851f","type":"Microsoft.Authorization/roleAssignments","name":"d0850dfa-00a4-11ee-9cf5-00155d28851f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-02T17:57:26.0215079Z","updatedOn":"2023-06-02T17:57:26.0215079Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd9cd89b-ff35-4fa2-9e07-0680ad3fa370","type":"Microsoft.Authorization/roleAssignments","name":"dd9cd89b-ff35-4fa2-9e07-0680ad3fa370"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-02T18:03:23.7925935Z","updatedOn":"2023-06-02T18:03:23.7925935Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d95aec2a-6adc-44a7-bd96-33d53af658bd","type":"Microsoft.Authorization/roleAssignments","name":"d95aec2a-6adc-44a7-bd96-33d53af658bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-03T02:03:08.3558097Z","updatedOn":"2023-06-03T02:03:08.3558097Z","createdBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","updatedBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c0f55e9-ff8c-410b-84c8-c613d1c425d1","type":"Microsoft.Authorization/roleAssignments","name":"6c0f55e9-ff8c-410b-84c8-c613d1c425d1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:28:30.6187015Z","updatedOn":"2023-06-05T17:28:30.6187015Z","createdBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","updatedBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63598898-03c6-11ee-a3b2-00155d87caab","type":"Microsoft.Authorization/roleAssignments","name":"63598898-03c6-11ee-a3b2-00155d87caab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:28:40.0597663Z","updatedOn":"2023-06-05T17:28:40.0597663Z","createdBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","updatedBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/68f66863-03c6-11ee-a3b2-00155d87caab","type":"Microsoft.Authorization/roleAssignments","name":"68f66863-03c6-11ee-a3b2-00155d87caab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:56:05.4845273Z","updatedOn":"2023-06-05T17:56:05.4845273Z","createdBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","updatedBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3dc7635d-03ca-11ee-aaaf-00155da910be","type":"Microsoft.Authorization/roleAssignments","name":"3dc7635d-03ca-11ee-aaaf-00155da910be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:56:09.7600652Z","updatedOn":"2023-06-05T17:56:09.7600652Z","createdBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","updatedBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40502bdc-03ca-11ee-aaaf-00155da910be","type":"Microsoft.Authorization/roleAssignments","name":"40502bdc-03ca-11ee-aaaf-00155da910be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T01:05:13.7066693Z","updatedOn":"2023-06-06T01:05:13.7066693Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/30f7f3e5-0406-11ee-b551-0022482d400c","type":"Microsoft.Authorization/roleAssignments","name":"30f7f3e5-0406-11ee-b551-0022482d400c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T05:00:05.2963688Z","updatedOn":"2023-06-06T05:00:05.2963688Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":"add + RCG-Read Write-CG-23637\n"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca637efb-b6e1-4bf5-bb88-a6724eacb0a7","type":"Microsoft.Authorization/roleAssignments","name":"ca637efb-b6e1-4bf5-bb88-a6724eacb0a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T17:38:31.9010821Z","updatedOn":"2023-06-06T17:38:31.9010821Z","createdBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","updatedBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4658d49-0490-11ee-994b-00155db896c4","type":"Microsoft.Authorization/roleAssignments","name":"f4658d49-0490-11ee-994b-00155db896c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T17:38:35.1906894Z","updatedOn":"2023-06-06T17:38:35.1906894Z","createdBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","updatedBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6601fef-0490-11ee-994b-00155db896c4","type":"Microsoft.Authorization/roleAssignments","name":"f6601fef-0490-11ee-994b-00155db896c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-07T01:57:45.0424798Z","updatedOn":"2023-06-07T01:57:45.0424798Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b19ebd13-04d6-11ee-b0e1-000d3a1d1b64","type":"Microsoft.Authorization/roleAssignments","name":"b19ebd13-04d6-11ee-b0e1-000d3a1d1b64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-07T18:06:20.2372529Z","updatedOn":"2023-06-07T18:06:20.2372529Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/944021da-5dd6-47df-b8bd-2b702ec66b62","type":"Microsoft.Authorization/roleAssignments","name":"944021da-5dd6-47df-b8bd-2b702ec66b62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-08T18:05:13.4812189Z","updatedOn":"2023-06-08T18:05:13.4812189Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/03b31b12-0627-11ee-a6d2-002248be7b21","type":"Microsoft.Authorization/roleAssignments","name":"03b31b12-0627-11ee-a6d2-002248be7b21"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-08T18:05:17.6164752Z","updatedOn":"2023-06-08T18:05:17.6164752Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/061fcfb9-0627-11ee-a6d2-002248be7b21","type":"Microsoft.Authorization/roleAssignments","name":"061fcfb9-0627-11ee-a6d2-002248be7b21"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T21:54:46.4146879Z","updatedOn":"2023-06-09T21:54:46.4146879Z","createdBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","updatedBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f5dc66d-0710-11ee-931c-00155d54ed98","type":"Microsoft.Authorization/roleAssignments","name":"3f5dc66d-0710-11ee-931c-00155d54ed98"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T21:54:50.2224528Z","updatedOn":"2023-06-09T21:54:50.2224528Z","createdBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","updatedBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41a244d2-0710-11ee-931c-00155d54ed98","type":"Microsoft.Authorization/roleAssignments","name":"41a244d2-0710-11ee-931c-00155d54ed98"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T22:15:22.1460837Z","updatedOn":"2023-06-09T22:15:22.1460837Z","createdBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","updatedBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1f99aa10-0713-11ee-9f64-00155dba898f","type":"Microsoft.Authorization/roleAssignments","name":"1f99aa10-0713-11ee-9f64-00155dba898f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T22:15:26.3614867Z","updatedOn":"2023-06-09T22:15:26.3614867Z","createdBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","updatedBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/221f3106-0713-11ee-9f64-00155dba898f","type":"Microsoft.Authorization/roleAssignments","name":"221f3106-0713-11ee-9f64-00155dba898f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-10T00:10:29.8161145Z","updatedOn":"2023-06-10T00:10:29.8161145Z","createdBy":"7df1b69c-686b-452a-9f60-59b12a299512","updatedBy":"7df1b69c-686b-452a-9f60-59b12a299512","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3547a3a6-0723-11ee-af96-521cf0d5af1e","type":"Microsoft.Authorization/roleAssignments","name":"3547a3a6-0723-11ee-af96-521cf0d5af1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-10T00:10:33.6141995Z","updatedOn":"2023-06-10T00:10:33.6141995Z","createdBy":"7df1b69c-686b-452a-9f60-59b12a299512","updatedBy":"7df1b69c-686b-452a-9f60-59b12a299512","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/377f6236-0723-11ee-af96-521cf0d5af1e","type":"Microsoft.Authorization/roleAssignments","name":"377f6236-0723-11ee-af96-521cf0d5af1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-12T03:43:13.3971745Z","updatedOn":"2023-06-12T03:43:13.3971745Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/417d165a-08d3-11ee-8ac2-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"417d165a-08d3-11ee-8ac2-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-12T05:29:01.6737026Z","updatedOn":"2023-06-12T05:29:01.6737026Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b154a136-cc93-46f2-8a71-079a399ec467","type":"Microsoft.Authorization/roleAssignments","name":"b154a136-cc93-46f2-8a71-079a399ec467"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-12T07:33:06.7743063Z","updatedOn":"2023-06-12T07:33:06.7743063Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5d216b6f-33aa-40e9-8b1d-c399739dab45","type":"Microsoft.Authorization/roleAssignments","name":"5d216b6f-33aa-40e9-8b1d-c399739dab45"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T00:55:32.6278707Z","updatedOn":"2023-06-13T00:55:32.6278707Z","createdBy":"859286db-3db2-4ba3-a081-93ef7001669f","updatedBy":"859286db-3db2-4ba3-a081-93ef7001669f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ff444828-0984-11ee-aeab-a6b46b784ab5","type":"Microsoft.Authorization/roleAssignments","name":"ff444828-0984-11ee-aeab-a6b46b784ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T00:55:37.9764519Z","updatedOn":"2023-06-13T00:55:37.9764519Z","createdBy":"859286db-3db2-4ba3-a081-93ef7001669f","updatedBy":"859286db-3db2-4ba3-a081-93ef7001669f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/02794298-0985-11ee-aeab-a6b46b784ab5","type":"Microsoft.Authorization/roleAssignments","name":"02794298-0985-11ee-aeab-a6b46b784ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T00:56:32.2043149Z","updatedOn":"2023-06-13T00:56:32.2043149Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39cae6b9-bfce-4d39-8a33-55001e8e7b87","type":"Microsoft.Authorization/roleAssignments","name":"39cae6b9-bfce-4d39-8a33-55001e8e7b87"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T17:52:57.9703504Z","updatedOn":"2023-06-13T17:52:57.9703504Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57f9abab-a02d-4961-aa68-f7b9a39940e6","type":"Microsoft.Authorization/roleAssignments","name":"57f9abab-a02d-4961-aa68-f7b9a39940e6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T17:54:34.0715865Z","updatedOn":"2023-06-13T17:54:34.0715865Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4caed6f2-725f-4ba4-918a-6b874a08574f","type":"Microsoft.Authorization/roleAssignments","name":"4caed6f2-725f-4ba4-918a-6b874a08574f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f58310d9-a9f6-439a-9e8d-f62e7b41a168","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T18:35:01.5499775Z","updatedOn":"2023-06-13T18:35:01.5499775Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b89c4524-5b48-40cb-9a55-b9712852158d","type":"Microsoft.Authorization/roleAssignments","name":"b89c4524-5b48-40cb-9a55-b9712852158d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T19:11:38.6491712Z","updatedOn":"2023-06-13T19:11:38.6491712Z","createdBy":"d87783d5-8706-48d6-ba20-d688d69119b2","updatedBy":"d87783d5-8706-48d6-ba20-d688d69119b2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09b91438-5494-4648-9766-b0079f6970de","type":"Microsoft.Authorization/roleAssignments","name":"09b91438-5494-4648-9766-b0079f6970de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T19:56:31.5140590Z","updatedOn":"2023-06-13T19:56:31.5140590Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0042f368-b701-4c14-8177-38b23d027a7e","type":"Microsoft.Authorization/roleAssignments","name":"0042f368-b701-4c14-8177-38b23d027a7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T12:57:07.9074452Z","updatedOn":"2023-06-14T12:57:07.9074452Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7e7c27e-0ab2-11ee-a74d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f7e7c27e-0ab2-11ee-a74d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T12:57:11.6755824Z","updatedOn":"2023-06-14T12:57:11.6755824Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa216932-0ab2-11ee-a74d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"fa216932-0ab2-11ee-a74d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T17:38:49.2228645Z","updatedOn":"2023-06-14T17:38:49.2228645Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84bddd3a-c733-408c-b9f2-689e5458a38f","type":"Microsoft.Authorization/roleAssignments","name":"84bddd3a-c733-408c-b9f2-689e5458a38f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T17:38:48.8722593Z","updatedOn":"2023-06-14T17:38:48.8722593Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8aa8e9b1-633b-4e0d-b371-8d21cfdf950a","type":"Microsoft.Authorization/roleAssignments","name":"8aa8e9b1-633b-4e0d-b371-8d21cfdf950a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T17:38:48.8686689Z","updatedOn":"2023-06-14T17:38:48.8686689Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef3807a5-a1bb-4bae-a3d7-781a09a2a198","type":"Microsoft.Authorization/roleAssignments","name":"ef3807a5-a1bb-4bae-a3d7-781a09a2a198"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T21:16:11.8951215Z","updatedOn":"2023-06-14T21:16:11.8951215Z","createdBy":"4d730cf1-e190-49af-af02-ea52983c017e","updatedBy":"4d730cf1-e190-49af-af02-ea52983c017e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005/providers/Microsoft.Authorization/roleAssignments/0a597482-2658-451c-bc34-11ed8a1180db","type":"Microsoft.Authorization/roleAssignments","name":"0a597482-2658-451c-bc34-11ed8a1180db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-12T17:41:39.7941619Z","updatedOn":"2021-03-12T17:41:39.7941619Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4625aa1-611e-448a-bf3e-f37f2bc878a3","type":"Microsoft.Authorization/roleAssignments","name":"d4625aa1-611e-448a-bf3e-f37f2bc878a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-16T23:49:03.3523073Z","updatedOn":"2021-03-16T23:49:03.3523073Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f33005f1-10be-43e3-a87f-9e2f954fb2db","type":"Microsoft.Authorization/roleAssignments","name":"f33005f1-10be-43e3-a87f-9e2f954fb2db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-25T00:58:10.6501184Z","updatedOn":"2021-03-25T00:58:10.6501184Z","createdBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","updatedBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2aca810c-8d05-11eb-bd25-000d3a4359fa","type":"Microsoft.Authorization/roleAssignments","name":"2aca810c-8d05-11eb-bd25-000d3a4359fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-26T10:24:43.4077585Z","updatedOn":"2021-03-26T10:24:43.4077585Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/779ad30e-8e1d-11eb-8aa9-000d3ac754e3","type":"Microsoft.Authorization/roleAssignments","name":"779ad30e-8e1d-11eb-8aa9-000d3ac754e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/46610f90-7283-a03b-3791-33f202e8180c","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T22:46:23.4119129Z","updatedOn":"2022-01-27T22:46:23.4119129Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/46610f90-7283-a03b-3791-33f202e8180c/providers/Microsoft.Authorization/roleAssignments/d92f870d-03da-4626-a453-84734da0b49c","type":"Microsoft.Authorization/roleAssignments","name":"d92f870d-03da-4626-a453-84734da0b49c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.8423155Z","updatedOn":"2019-03-26T22:01:02.8423155Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad/providers/Microsoft.Authorization/roleAssignments/3d069c98-e792-47bd-b58a-399e2d42dbab","type":"Microsoft.Authorization/roleAssignments","name":"3d069c98-e792-47bd-b58a-399e2d42dbab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad","condition":null,"conditionVersion":null,"createdOn":"2021-04-09T18:15:49.7063250Z","updatedOn":"2021-04-09T18:15:49.7063250Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad/providers/Microsoft.Authorization/roleAssignments/a6b435df-80e6-4a7b-b109-2af5f373d238","type":"Microsoft.Authorization/roleAssignments","name":"a6b435df-80e6-4a7b-b109-2af5f373d238"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9176787Z","updatedOn":"2019-03-26T22:01:02.9176787Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320","type":"Microsoft.Authorization/roleAssignments","name":"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:49:37.3000523Z","updatedOn":"2019-03-27T00:49:37.3000523Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29","type":"Microsoft.Authorization/roleAssignments","name":"e6e1fffd-83f7-40c7-9f33-e56e2cf75b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:50:08.3039053Z","updatedOn":"2019-03-27T00:50:08.3039053Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12","type":"Microsoft.Authorization/roleAssignments","name":"3d01f56e-ee3a-41ed-a775-0e067546cb12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T23:11:28.9217618Z","updatedOn":"2022-06-28T23:11:28.9217618Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/869183bd-893a-46f9-bb02-45e48b13f1be","type":"Microsoft.Authorization/roleAssignments","name":"869183bd-893a-46f9-bb02-45e48b13f1be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T22:32:46.2324804Z","updatedOn":"2023-02-21T22:32:46.2324804Z","createdBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","updatedBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/df7c1e07-5c2d-4b22-b7b9-fd11a8569db3","type":"Microsoft.Authorization/roleAssignments","name":"df7c1e07-5c2d-4b22-b7b9-fd11a8569db3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T20:23:16.3808369Z","updatedOn":"2023-05-04T20:23:16.3808369Z","createdBy":"fa00c2de-57d5-4527-9254-4d513f482d0a","updatedBy":"fa00c2de-57d5-4527-9254-4d513f482d0a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/59109645-7b2b-4278-831a-2e4627ec603d","type":"Microsoft.Authorization/roleAssignments","name":"59109645-7b2b-4278-831a-2e4627ec603d"}]}' headers: cache-control: - no-cache content-length: - - '67037' + - '788165' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:08:44 GMT + - Wed, 14 Jun 2023 21:19:56 GMT expires: - '-1' pragma: @@ -1050,965 +1189,5675 @@ interactions: ParameterSetName: - --scope User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005/providers/Microsoft.Authorization/roleDefinitions?api-version=2022-04-01 response: body: - string: "{\"value\":[{\"properties\":{\"roleName\":\"Avere Cluster Create\",\"type\":\"CustomRole\",\"description\":\"Avere - cluster create role used by the Avere controller to create a vFXT cluster.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Authorization/roleAssignments/*\",\"Microsoft.Authorization/roleDefinitions/*\",\"Microsoft.Compute/*/read\",\"Microsoft.Compute/availabilitySets/*\",\"Microsoft.Compute/virtualMachines/*\",\"Microsoft.Network/*/read\",\"Microsoft.Network/networkInterfaces/*\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\"Microsoft.Storage/*/read\",\"Microsoft.Storage/storageAccounts/listKeys/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-11-29T18:46:55.0492387Z\",\"updatedOn\":\"2018-11-29T18:46:55.0492387Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a7b1b19a-0e83-4fe5-935c-faaefbfd18c3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a7b1b19a-0e83-4fe5-935c-faaefbfd18c3\"},{\"properties\":{\"roleName\":\"Avere - Cluster Runtime Operator\",\"type\":\"CustomRole\",\"description\":\"Avere - cluster runtime role used by Avere clusters running in subscriptions, for - the purpose of failing over IP addresses, accessing BLOB storage, etc\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/networkSecurityGroups/join/action\",\"Microsoft.Network/routeTables/read\",\"Microsoft.Network/routeTables/routes/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/write\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"],\"notDataActions\":[]}],\"createdOn\":\"2018-08-26T00:41:26.2170858Z\",\"updatedOn\":\"2018-08-26T00:41:26.2170858Z\",\"createdBy\":\"dda50086-5e3d-4a4b-b8bc-f54771104d89\",\"updatedBy\":\"dda50086-5e3d-4a4b-b8bc-f54771104d89\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e078ab98-ef3a-4c9a-aba7-12f5172b45d0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e078ab98-ef3a-4c9a-aba7-12f5172b45d0\"},{\"properties\":{\"roleName\":\"Azure - Service Deploy Release Management Contributor\",\"type\":\"CustomRole\",\"description\":\"Contributor - role for services deploying through Azure Service Deploy.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*\"],\"notActions\":[\"Microsoft.Authorization/*/Delete\",\"Microsoft.Authorization/*/Write\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-02-04T02:26:31.5413362Z\",\"updatedOn\":\"2018-01-08T20:20:16.3660174Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/21d96096-b162-414a-8302-d8354f9d91b2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"21d96096-b162-414a-8302-d8354f9d91b2\"},{\"properties\":{\"roleName\":\"CAL-Custom-Role\",\"type\":\"CustomRole\",\"description\":\"Lets - SAP Cloud Appliance Library application manage Network and Compute services, - manage Resource Groups and Management locks.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/locks/*\",\"Microsoft.Authorization/roleDefinitions/*\",\"Microsoft.Authorization/roleAssignments/*\",\"Microsoft.Compute/*\",\"Microsoft.Network/*\",\"Microsoft.Resources/*\",\"Microsoft.Storage/*\",\"Microsoft.ContainerService/*\",\"Microsoft.ContainerRegistry/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-05-14T19:30:51.0664585Z\",\"updatedOn\":\"2019-02-19T19:11:57.5963229Z\",\"createdBy\":\"dda50086-5e3d-4a4b-b8bc-f54771104d89\",\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7b266cd7-0bba-4ae2-8423-90ede5e1e898\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7b266cd7-0bba-4ae2-8423-90ede5e1e898\"},{\"properties\":{\"roleName\":\"Dsms - Role (deprecated)\",\"type\":\"CustomRole\",\"description\":\"Custom role - used by Dsms to perform operations. Can list and regnerate storage account - keys.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\"Microsoft.ClassicStorage/storageAccounts/regenerateKey/action\",\"Microsoft.Storage/storageAccounts/listkeys/action\",\"Microsoft.Storage/storageAccounts/regeneratekey/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-17T18:02:11.1225951Z\",\"updatedOn\":\"2018-01-13T00:21:52.7211696Z\",\"createdBy\":\"ca5f3715-e7dd-427b-b2db-45b6a4a2df87\",\"updatedBy\":\"ca5f3715-e7dd-427b-b2db-45b6a4a2df87\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b91f4c0b-46e3-47bb-a242-eecfe23b3b5b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b91f4c0b-46e3-47bb-a242-eecfe23b3b5b\"},{\"properties\":{\"roleName\":\"Dsms - Role (do not use)\",\"type\":\"CustomRole\",\"description\":\"Custom role - used by Dsms to perform operations. Can list and regnerate storage account - keys.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\"Microsoft.ClassicStorage/storageAccounts/regenerateKey/action\",\"Microsoft.Storage/storageAccounts/listkeys/action\",\"Microsoft.Storage/storageAccounts/regeneratekey/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-02-01T07:56:12.5880222Z\",\"updatedOn\":\"2018-08-09T17:53:48.5432297Z\",\"createdBy\":\"becb4b6b-fe16-413b-a5c3-90355e0b2982\",\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7aff565e-6c55-448d-83db-ccf482c6da2f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7aff565e-6c55-448d-83db-ccf482c6da2f\"},{\"properties\":{\"roleName\":\"ExpressRoute - Administrator\",\"type\":\"CustomRole\",\"description\":\"Can create, delete - and manage ExpressRoutes\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/locks/*\",\"Microsoft.Authorization/policyAssignments/*\",\"Microsoft.Authorization/policyDefinitions/*\",\"Microsoft.Authorization/roleAssignments/*\",\"Microsoft.ClassicNetwork/*\",\"Microsoft.EventGrid/*\",\"Microsoft.Insights/*\",\"Microsoft.Network/*\",\"Microsoft.Resources/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-08-31T03:51:32.2843055Z\",\"updatedOn\":\"2019-03-20T22:55:18.8222085Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a48d7896-14b4-4889-afef-fbb65a96e5a2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a48d7896-14b4-4889-afef-fbb65a96e5a2\"},{\"properties\":{\"roleName\":\"GenevaWarmPathResourceContributor\",\"type\":\"CustomRole\",\"description\":\"Can - manage service bus and storage accounts.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EventHub/namespaces/*\",\"Microsoft.Resources/subscriptions/resourceGroups/*\",\"Microsoft.ServiceBus/namespaces/*\",\"Microsoft.Storage/storageAccounts/*\",\"Microsoft.Storage/storageAccounts/managementPolicies/write\",\"Microsoft.Storage/storageAccounts/managementPolicies/read\",\"Microsoft.Storage/storageAccounts/managementPolicies/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-03-14T22:30:10.1999436Z\",\"updatedOn\":\"2022-02-28T23:26:40.0052537Z\",\"createdBy\":null,\"updatedBy\":\"acis\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9f15f5f5-77bd-413a-aa88-4b9c68b1e7bc\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9f15f5f5-77bd-413a-aa88-4b9c68b1e7bc\"},{\"properties\":{\"roleName\":\"masterreader\",\"type\":\"CustomRole\",\"description\":\"Lets - you view everything, but not make any changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-11-14T23:38:05.3353858Z\",\"updatedOn\":\"2017-11-14T23:38:05.3353858Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a48d7796-14b4-4889-afef-fbb65a93e5a2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a48d7796-14b4-4889-afef-fbb65a93e5a2\"},{\"properties\":{\"roleName\":\"Microsoft - OneAsset Reader\",\"type\":\"CustomRole\",\"description\":\"This role is for - Microsoft OneAsset team (CSEO) to track internal security compliance and resource - utilization.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/virtualMachines/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-03-27T23:51:08.6333052Z\",\"updatedOn\":\"2019-04-02T20:35:43.3396263Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd1bb084-1503-4bd2-99c0-630220046786\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fd1bb084-1503-4bd2-99c0-630220046786\"},{\"properties\":{\"roleName\":\"Office - DevOps\",\"type\":\"CustomRole\",\"description\":\"Custom access for developers - to operations but not secrets.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/virtualMachineScaleSets/restart/action\",\"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/restart/action\",\"Microsoft.Sql/servers/databases/replicationLinks/delete\",\"Microsoft.Sql/servers/databases/replicationLinks/failover/action\",\"Microsoft.Sql/servers/databases/replicationLinks/forceFailoverAllowDataLoss/action\",\"Microsoft.Sql/servers/databases/replicationLinks/operationResults/read\",\"Microsoft.Sql/servers/databases/replicationLinks/read\",\"Microsoft.Sql/servers/databases/replicationLinks/unlink/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-10-07T08:11:46.1639398Z\",\"updatedOn\":\"2017-03-16T18:43:08.3234306Z\",\"createdBy\":\"25aea6be-b605-4347-a92d-33e178e412ec\",\"updatedBy\":\"25aea6be-b605-4347-a92d-33e178e412ec\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7fd64851-3279-459b-b614-e2b2ba760f5b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7fd64851-3279-459b-b614-e2b2ba760f5b\"},{\"properties\":{\"roleName\":\"GenevaWarmPathStorageBlobContributor\",\"type\":\"CustomRole\",\"description\":\"Geneva - Warm Path Storage Blob Contributor\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\"Microsoft.Storage/storageAccounts/blobServices/containers/lease/action\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/lock/action\",\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/write\",\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/extend/action\",\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/delete\",\"Microsoft.Storage/storageAccounts/managementPolicies/write\",\"Microsoft.Storage/storageAccounts/managementPolicies/read\",\"Microsoft.Storage/storageAccounts/managementPolicies/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-12-06T22:46:27.1365630Z\",\"updatedOn\":\"2022-02-28T23:26:40.4152515Z\",\"createdBy\":null,\"updatedBy\":\"acis\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a16c43ca-2d67-4dcd-9ded-6412f5edc51a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a16c43ca-2d67-4dcd-9ded-6412f5edc51a\"},{\"properties\":{\"roleName\":\"Azure - Service Deploy Release Management Restricted Owner\",\"type\":\"CustomRole\",\"description\":\"Restricted - owner role for services deploying through Azure Service Deploy.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*\"],\"notActions\":[\"Microsoft.Authorization/*/Delete\",\"Microsoft.Authorization/*/Write\"],\"dataActions\":[],\"notDataActions\":[]},{\"actions\":[\"Microsoft.Authorization/roleAssignments/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]},{\"actions\":[\"Microsoft.Authorization/locks/write\",\"Microsoft.Authorization/policyassignments/write\",\"Microsoft.Authorization/policydefinitions/write\",\"Microsoft.Authorization/policysetdefinitions/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-03-07T22:16:06.8803898Z\",\"updatedOn\":\"2022-03-07T22:16:06.8803898Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"94ddc4bc-25f5-4f3e-b527-c587da93cfe4\"},{\"properties\":{\"roleName\":\"Azure - Service Deploy Test Release Management Key Vault Secrets User\",\"type\":\"CustomRole\",\"description\":\"Read - secret and certificate contents. Only works for key vaults that use the 'Azure - role-based access control' permission model.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/secrets/getSecret/action\",\"Microsoft.KeyVault/vaults/certificates/read\"],\"notDataActions\":[]}],\"createdOn\":\"2022-07-20T22:52:19.9944274Z\",\"updatedOn\":\"2022-08-31T23:25:32.0649353Z\",\"createdBy\":\"19669f00-ee56-44ec-94c3-83159a41292e\",\"updatedBy\":\"19669f00-ee56-44ec-94c3-83159a41292e\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/87d31636-ad85-4caa-802d-1535972b5612\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"87d31636-ad85-4caa-802d-1535972b5612\"},{\"properties\":{\"roleName\":\"Azure - Service Deploy Release Management Key Vault Secrets User\",\"type\":\"CustomRole\",\"description\":\"Read - secret and certificate contents. Only works for key vaults that use the 'Azure - role-based access control' permission model.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/secrets/getSecret/action\",\"Microsoft.KeyVault/vaults/certificates/read\"],\"notDataActions\":[]}],\"createdOn\":\"2022-08-02T21:14:21.3331588Z\",\"updatedOn\":\"2022-09-10T00:44:34.5904437Z\",\"createdBy\":\"19669f00-ee56-44ec-94c3-83159a41292e\",\"updatedBy\":\"19669f00-ee56-44ec-94c3-83159a41292e\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/260691e6-68c2-47cf-bd4a-97d5fd4dbcd5\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"260691e6-68c2-47cf-bd4a-97d5fd4dbcd5\"},{\"properties\":{\"roleName\":\"AzSecPackUAPolicyResourceContributorCorpProd\",\"type\":\"CustomRole\",\"description\":\"Resource - contributor role for allowing the AzSecPack Policy to create and add user - assigned identity to VM and VMSS resources.\",\"assignableScopes\":[\"/providers/microsoft.management/managementGroups/CnAIOrchestrationServicePublicCorpprod\"],\"permissions\":[{\"actions\":[\"Microsoft.ManagedIdentity/userAssignedIdentities/assign/action\",\"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\"Microsoft.Resources/subscriptions/resourceGroups/write\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Compute/virtualMachineScaleSets/write\",\"Microsoft.Compute/virtualMachineScaleSets/read\",\"Microsoft.Compute/virtualMachines/write\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Authorization/locks/write\",\"Microsoft.Authorization/locks/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.ManagedIdentity/register/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-01-30T22:27:31.9638459Z\",\"updatedOn\":\"2021-03-05T21:43:25.6522065Z\",\"createdBy\":\"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\"updatedBy\":\"2ffe2392-0a52-4093-b041-66b10ebc8317\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fd6e57ea-fe3c-4f21-bd1e-de170a9a4971\"},{\"properties\":{\"roleName\":\"AcrPush\",\"type\":\"BuiltInRole\",\"description\":\"acr - push\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/pull/read\",\"Microsoft.ContainerRegistry/registries/push/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-10-29T17:52:32.5201177Z\",\"updatedOn\":\"2021-11-11T20:13:07.4993029Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8311e382-0749-4cb8-b61a-304f252e45ec\"},{\"properties\":{\"roleName\":\"API - Management Service Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can - manage service and the APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8650193Z\",\"updatedOn\":\"2021-11-11T20:13:08.3179618Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"312a565d-c81f-4fd8-895a-4e21e48d571c\"},{\"properties\":{\"roleName\":\"AcrPull\",\"type\":\"BuiltInRole\",\"description\":\"acr - pull\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/pull/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-10-22T19:01:56.8227182Z\",\"updatedOn\":\"2021-11-11T20:13:08.8779328Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7f951dda-4ed3-4680-a7ca-43fe172d538d\"},{\"properties\":{\"roleName\":\"AcrImageSigner\",\"type\":\"BuiltInRole\",\"description\":\"acr - image signer\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/sign/write\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerRegistry/registries/trustedCollections/write\"],\"notDataActions\":[]}],\"createdOn\":\"2018-03-15T23:23:08.4038322Z\",\"updatedOn\":\"2021-11-11T20:13:09.6070759Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6cef56e8-d556-48e5-a04f-b8e64114680f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6cef56e8-d556-48e5-a04f-b8e64114680f\"},{\"properties\":{\"roleName\":\"AcrDelete\",\"type\":\"BuiltInRole\",\"description\":\"acr - delete\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/artifacts/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-03-11T20:19:31.6682804Z\",\"updatedOn\":\"2021-11-11T20:13:09.9631744Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c2f4ef07-c644-48eb-af81-4b1b4947fb11\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c2f4ef07-c644-48eb-af81-4b1b4947fb11\"},{\"properties\":{\"roleName\":\"AcrQuarantineReader\",\"type\":\"BuiltInRole\",\"description\":\"acr - quarantine data reader\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/quarantine/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerRegistry/registries/quarantinedArtifacts/read\"],\"notDataActions\":[]}],\"createdOn\":\"2018-03-16T00:27:39.9596835Z\",\"updatedOn\":\"2021-11-11T20:13:10.3188052Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cdda3590-29a3-44f6-95f2-9f980659eb04\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"cdda3590-29a3-44f6-95f2-9f980659eb04\"},{\"properties\":{\"roleName\":\"AcrQuarantineWriter\",\"type\":\"BuiltInRole\",\"description\":\"acr - quarantine data writer\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/quarantine/read\",\"Microsoft.ContainerRegistry/registries/quarantine/write\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerRegistry/registries/quarantinedArtifacts/read\",\"Microsoft.ContainerRegistry/registries/quarantinedArtifacts/write\"],\"notDataActions\":[]}],\"createdOn\":\"2018-03-16T00:26:37.5871820Z\",\"updatedOn\":\"2021-11-11T20:13:11.3488079Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c8d4ff99-41c3-41a8-9f60-21dfdad59608\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c8d4ff99-41c3-41a8-9f60-21dfdad59608\"},{\"properties\":{\"roleName\":\"API - Management Service Operator Role\",\"type\":\"BuiltInRole\",\"description\":\"Can - manage service but not the APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/*/read\",\"Microsoft.ApiManagement/service/backup/action\",\"Microsoft.ApiManagement/service/delete\",\"Microsoft.ApiManagement/service/managedeployments/action\",\"Microsoft.ApiManagement/service/read\",\"Microsoft.ApiManagement/service/restore/action\",\"Microsoft.ApiManagement/service/updatecertificate/action\",\"Microsoft.ApiManagement/service/updatehostname/action\",\"Microsoft.ApiManagement/service/write\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[\"Microsoft.ApiManagement/service/users/keys/read\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-11-09T00:03:42.1194019Z\",\"updatedOn\":\"2021-11-11T20:13:11.5244023Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"},{\"properties\":{\"roleName\":\"API - Management Service Reader Role\",\"type\":\"BuiltInRole\",\"description\":\"Read-only - access to service and APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/*/read\",\"Microsoft.ApiManagement/service/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[\"Microsoft.ApiManagement/service/users/keys/read\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-11-09T00:26:45.1540473Z\",\"updatedOn\":\"2021-11-11T20:13:11.8704466Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"71522526-b88f-4d52-b57f-d31fc3546d0d\"},{\"properties\":{\"roleName\":\"Application - Insights Component Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can - manage Application Insights components\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/generateLiveToken/read\",\"Microsoft.Insights/metricAlerts/*\",\"Microsoft.Insights/components/*\",\"Microsoft.Insights/scheduledqueryrules/*\",\"Microsoft.Insights/topology/read\",\"Microsoft.Insights/transactions/read\",\"Microsoft.Insights/webtests/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:12.6428401Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ae349356-3a1b-4a5e-921d-050484c6347e\"},{\"properties\":{\"roleName\":\"Application - Insights Snapshot Debugger\",\"type\":\"BuiltInRole\",\"description\":\"Gives - user permission to use Application Insights Snapshot Debugger features\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/components/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-04-19T21:25:12.3728747Z\",\"updatedOn\":\"2021-11-11T20:13:13.0034435Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"},{\"properties\":{\"roleName\":\"Attestation - Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can read the attestation - provider properties\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Attestation/attestationProviders/attestation/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-03-25T19:42:59.1576710Z\",\"updatedOn\":\"2021-11-11T20:13:13.3634724Z\",\"createdBy\":null,\"updatedBy\":\"SYSTEM\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd1bd22b-8476-40bc-a0bc-69b95687b9f3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fd1bd22b-8476-40bc-a0bc-69b95687b9f3\"},{\"properties\":{\"roleName\":\"Automation - Job Operator\",\"type\":\"BuiltInRole\",\"description\":\"Create and Manage - Jobs using Automation Runbooks.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Automation/automationAccounts/hybridRunbookWorkerGroups/read\",\"Microsoft.Automation/automationAccounts/jobs/read\",\"Microsoft.Automation/automationAccounts/jobs/resume/action\",\"Microsoft.Automation/automationAccounts/jobs/stop/action\",\"Microsoft.Automation/automationAccounts/jobs/streams/read\",\"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\"Microsoft.Automation/automationAccounts/jobs/write\",\"Microsoft.Automation/automationAccounts/jobs/output/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-04-19T20:52:41.0020018Z\",\"updatedOn\":\"2021-11-11T20:13:13.7065660Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4fe576fe-1146-4730-92eb-48519fa6bf9f\"},{\"properties\":{\"roleName\":\"Automation - Runbook Operator\",\"type\":\"BuiltInRole\",\"description\":\"Read Runbook - properties - to be able to create Jobs of the runbook.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Automation/automationAccounts/runbooks/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-04-19T20:47:49.5640674Z\",\"updatedOn\":\"2021-11-11T20:13:13.8815461Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"},{\"properties\":{\"roleName\":\"Automation - Operator\",\"type\":\"BuiltInRole\",\"description\":\"Automation Operators - are able to start, stop, suspend, and resume jobs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Automation/automationAccounts/hybridRunbookWorkerGroups/read\",\"Microsoft.Automation/automationAccounts/jobs/read\",\"Microsoft.Automation/automationAccounts/jobs/resume/action\",\"Microsoft.Automation/automationAccounts/jobs/stop/action\",\"Microsoft.Automation/automationAccounts/jobs/streams/read\",\"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\"Microsoft.Automation/automationAccounts/jobs/write\",\"Microsoft.Automation/automationAccounts/jobSchedules/read\",\"Microsoft.Automation/automationAccounts/jobSchedules/write\",\"Microsoft.Automation/automationAccounts/linkedWorkspace/read\",\"Microsoft.Automation/automationAccounts/read\",\"Microsoft.Automation/automationAccounts/runbooks/read\",\"Microsoft.Automation/automationAccounts/schedules/read\",\"Microsoft.Automation/automationAccounts/schedules/write\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Automation/automationAccounts/jobs/output/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-08-18T01:05:03.3916130Z\",\"updatedOn\":\"2021-11-11T20:13:14.0515408Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d3881f73-407a-4167-8283-e981cbba0404\"},{\"properties\":{\"roleName\":\"Avere - Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can create and manage - an Avere vFXT cluster.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Compute/*/read\",\"Microsoft.Compute/availabilitySets/*\",\"Microsoft.Compute/proximityPlacementGroups/*\",\"Microsoft.Compute/virtualMachines/*\",\"Microsoft.Compute/disks/*\",\"Microsoft.Network/*/read\",\"Microsoft.Network/networkInterfaces/*\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\"Microsoft.Network/networkSecurityGroups/join/action\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/*/read\",\"Microsoft.Storage/storageAccounts/*\",\"Microsoft.Support/*\",\"Microsoft.Resources/subscriptions/resourceGroups/resources/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"],\"notDataActions\":[]}],\"createdOn\":\"2019-03-18T20:00:58.9207889Z\",\"updatedOn\":\"2021-11-11T20:13:14.2265665Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4f8fab4f-1852-4a58-a46a-8eaf358af14a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4f8fab4f-1852-4a58-a46a-8eaf358af14a\"},{\"properties\":{\"roleName\":\"Avere - Operator\",\"type\":\"BuiltInRole\",\"description\":\"Used by the Avere vFXT - cluster to manage the cluster\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/networkSecurityGroups/join/action\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/write\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"],\"notDataActions\":[]}],\"createdOn\":\"2019-03-18T20:02:38.3399857Z\",\"updatedOn\":\"2021-11-11T20:13:15.1065886Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c025889f-8102-4ebf-b32c-fc0c6f0c6bd9\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c025889f-8102-4ebf-b32c-fc0c6f0c6bd9\"},{\"properties\":{\"roleName\":\"Azure - Kubernetes Service Cluster Admin Role\",\"type\":\"BuiltInRole\",\"description\":\"List - cluster admin credential action.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerService/managedClusters/listClusterAdminCredential/action\",\"Microsoft.ContainerService/managedClusters/accessProfiles/listCredential/action\",\"Microsoft.ContainerService/managedClusters/read\",\"Microsoft.ContainerService/managedClusters/runcommand/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-08-15T21:38:18.5953853Z\",\"updatedOn\":\"2022-05-17T01:51:12.0390652Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0ab0b1a8-8aac-4efd-b8c2-3ee1fb270be8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0ab0b1a8-8aac-4efd-b8c2-3ee1fb270be8\"},{\"properties\":{\"roleName\":\"Azure - Kubernetes Service Cluster User Role\",\"type\":\"BuiltInRole\",\"description\":\"List - cluster user credential action.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\",\"Microsoft.ContainerService/managedClusters/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-08-15T22:04:53.4037241Z\",\"updatedOn\":\"2021-11-11T20:13:20.4351976Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4abbcc35-e782-43d8-92c5-2d3f1bd2253f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4abbcc35-e782-43d8-92c5-2d3f1bd2253f\"},{\"properties\":{\"roleName\":\"Azure - Maps Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Grants access - to read map related data from an Azure maps account.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Maps/accounts/*/read\"],\"notDataActions\":[]}],\"createdOn\":\"2018-10-05T19:47:03.4723070Z\",\"updatedOn\":\"2021-11-11T20:13:20.9582685Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/423170ca-a8f6-4b0f-8487-9e4eb8f49bfa\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"423170ca-a8f6-4b0f-8487-9e4eb8f49bfa\"},{\"properties\":{\"roleName\":\"Azure - Stack Registration Owner\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you manage Azure Stack registrations.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AzureStack/edgeSubscriptions/read\",\"Microsoft.AzureStack/registrations/products/*/action\",\"Microsoft.AzureStack/registrations/products/read\",\"Microsoft.AzureStack/registrations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-11-13T23:42:06.2161827Z\",\"updatedOn\":\"2021-11-11T20:13:23.2957820Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"},{\"properties\":{\"roleName\":\"Backup - Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage backup - service,but can't create vaults and give access to others\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.RecoveryServices/locations/*\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\",\"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\"Microsoft.RecoveryServices/Vaults/certificates/*\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\"Microsoft.RecoveryServices/Vaults/usages/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\"Microsoft.RecoveryServices/Vaults/backupconfig/*\",\"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\",\"Microsoft.RecoveryServices/Vaults/write\",\"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/*\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\",\"Microsoft.RecoveryServices/vaults/operationStatus/read\",\"Microsoft.RecoveryServices/vaults/operationResults/read\",\"Microsoft.RecoveryServices/locations/backupStatus/action\",\"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\",\"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\"Microsoft.RecoveryServices/operations/read\",\"Microsoft.RecoveryServices/locations/operationStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\"Microsoft.Support/*\",\"Microsoft.DataProtection/locations/getBackupStatus/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/write\",\"Microsoft.DataProtection/backupVaults/backupInstances/delete\",\"Microsoft.DataProtection/backupVaults/backupInstances/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/read\",\"Microsoft.DataProtection/backupVaults/deletedBackupInstances/read\",\"Microsoft.DataProtection/backupVaults/deletedBackupInstances/undelete/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/backup/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/validateRestore/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/restore/action\",\"Microsoft.DataProtection/backupVaults/backupPolicies/write\",\"Microsoft.DataProtection/backupVaults/backupPolicies/delete\",\"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/findRestorableTimeRanges/action\",\"Microsoft.DataProtection/backupVaults/write\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/backupVaults/operationResults/read\",\"Microsoft.DataProtection/backupVaults/operationStatus/read\",\"Microsoft.DataProtection/locations/checkNameAvailability/action\",\"Microsoft.DataProtection/locations/checkFeatureSupport/action\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/locations/operationStatus/read\",\"Microsoft.DataProtection/locations/operationResults/read\",\"Microsoft.DataProtection/backupVaults/validateForBackup/action\",\"Microsoft.DataProtection/operations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-01-03T13:12:15.7321344Z\",\"updatedOn\":\"2023-02-24T13:11:03.6791298Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5e467623-bb1f-42f4-a55d-6e525e11384b\"},{\"properties\":{\"roleName\":\"Billing - Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows read access to - billing data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Billing/*/read\",\"Microsoft.Commerce/*/read\",\"Microsoft.Consumption/*/read\",\"Microsoft.Management/managementGroups/read\",\"Microsoft.CostManagement/*/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-04-25T02:13:38.9054151Z\",\"updatedOn\":\"2021-11-11T20:13:24.5342563Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"},{\"properties\":{\"roleName\":\"Backup - Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can view backup services, - but can't make changes\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\"Microsoft.RecoveryServices/Vaults/backupstorageconfig/read\",\"Microsoft.RecoveryServices/Vaults/backupconfig/read\",\"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\",\"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\",\"Microsoft.RecoveryServices/locations/backupStatus/action\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\"Microsoft.RecoveryServices/operations/read\",\"Microsoft.RecoveryServices/locations/operationStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\"Microsoft.RecoveryServices/Vaults/usages/read\",\"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\"Microsoft.RecoveryServices/locations/backupCrrJobs/action\",\"Microsoft.RecoveryServices/locations/backupCrrJob/action\",\"Microsoft.RecoveryServices/locations/backupCrrOperationResults/read\",\"Microsoft.RecoveryServices/locations/backupCrrOperationsStatus/read\",\"Microsoft.DataProtection/locations/getBackupStatus/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/write\",\"Microsoft.DataProtection/backupVaults/backupInstances/read\",\"Microsoft.DataProtection/backupVaults/deletedBackupInstances/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/backup/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/validateRestore/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/restore/action\",\"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/findRestorableTimeRanges/action\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/backupVaults/operationResults/read\",\"Microsoft.DataProtection/backupVaults/operationStatus/read\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/locations/operationStatus/read\",\"Microsoft.DataProtection/locations/operationResults/read\",\"Microsoft.DataProtection/backupVaults/validateForBackup/action\",\"Microsoft.DataProtection/operations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-01-03T13:18:41.3893065Z\",\"updatedOn\":\"2022-10-14T08:58:53.5811091Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a795c7a0-d4a2-40c1-ae25-d81f01202912\"},{\"properties\":{\"roleName\":\"Blockchain - Member Node Access (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Allows - for access to Blockchain Member nodes\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Blockchain/blockchainMembers/transactionNodes/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Blockchain/blockchainMembers/transactionNodes/connect/action\"],\"notDataActions\":[]}],\"createdOn\":\"2018-12-21T10:33:01.9604839Z\",\"updatedOn\":\"2021-11-11T20:13:25.0558920Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/31a002a1-acaf-453e-8a5b-297c9ca1ea24\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"31a002a1-acaf-453e-8a5b-297c9ca1ea24\"},{\"properties\":{\"roleName\":\"BizTalk - Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage BizTalk - services, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.BizTalkServices/BizTalk/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:25.2359269Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5e3c6656-6cfa-4708-81fe-0de47ac73342\"},{\"properties\":{\"roleName\":\"CDN - Endpoint Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can manage - CDN endpoints, but can\u2019t grant access to other users.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Cdn/edgenodes/read\",\"Microsoft.Cdn/operationresults/*\",\"Microsoft.Cdn/profiles/endpoints/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-01-23T02:48:46.4996252Z\",\"updatedOn\":\"2021-11-11T20:13:25.4059314Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"},{\"properties\":{\"roleName\":\"CDN - Profile Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can manage - CDN profiles and their endpoints, but can\u2019t grant access to other users.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Cdn/edgenodes/read\",\"Microsoft.Cdn/operationresults/*\",\"Microsoft.Cdn/profiles/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-01-23T02:48:46.4996252Z\",\"updatedOn\":\"2021-11-11T20:13:25.9224344Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ec156ff8-a8d1-4d15-830c-5b80698ca432\"},{\"properties\":{\"roleName\":\"CDN - Profile Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can view CDN profiles - and their endpoints, but can\u2019t make changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Cdn/edgenodes/read\",\"Microsoft.Cdn/operationresults/*\",\"Microsoft.Cdn/profiles/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-01-23T02:48:46.4996252Z\",\"updatedOn\":\"2021-11-11T20:13:26.0983652Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8f96442b-4075-438f-813d-ad51ab4019af\"},{\"properties\":{\"roleName\":\"Classic - Network Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - manage classic networks, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.ClassicNetwork/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:26.4433301Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"},{\"properties\":{\"roleName\":\"Classic - Storage Account Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you manage classic storage accounts, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.ClassicStorage/storageAccounts/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:26.6183566Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"},{\"properties\":{\"roleName\":\"Classic - Storage Account Key Operator Service Role\",\"type\":\"BuiltInRole\",\"description\":\"Classic - Storage Account Key Operators are allowed to list and regenerate keys on Classic - Storage Accounts\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-04-13T18:22:52.1461100Z\",\"updatedOn\":\"2021-11-11T20:13:26.9796021Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"},{\"properties\":{\"roleName\":\"ClearDB - MySQL DB Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - manage ClearDB MySQL databases, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"successbricks.cleardb/databases/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:27.1646373Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9106cda0-8a86-4e81-b686-29a22c54effe\"},{\"properties\":{\"roleName\":\"Classic - Virtual Machine Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you manage classic virtual machines, but not access to them, and not the virtual - network or storage account they\u2019re connected to.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.ClassicCompute/domainNames/*\",\"Microsoft.ClassicCompute/virtualMachines/*\",\"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\"Microsoft.ClassicNetwork/reservedIps/link/action\",\"Microsoft.ClassicNetwork/reservedIps/read\",\"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\"Microsoft.ClassicNetwork/virtualNetworks/read\",\"Microsoft.ClassicStorage/storageAccounts/disks/read\",\"Microsoft.ClassicStorage/storageAccounts/images/read\",\"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\"Microsoft.ClassicStorage/storageAccounts/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-04-25T00:37:56.5416086Z\",\"updatedOn\":\"2021-11-11T20:13:27.3446332Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"},{\"properties\":{\"roleName\":\"Cognitive - Services User\",\"type\":\"BuiltInRole\",\"description\":\"Lets you read and - list keys of Cognitive Services.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.CognitiveServices/accounts/listkeys/action\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.Insights/diagnosticSettings/read\",\"Microsoft.Insights/logDefinitions/read\",\"Microsoft.Insights/metricdefinitions/read\",\"Microsoft.Insights/metrics/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/*\"],\"notDataActions\":[]}],\"createdOn\":\"2018-08-08T23:23:43.7701274Z\",\"updatedOn\":\"2021-11-11T20:13:27.5316443Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a97b65f3-24c7-4388-baec-2e87135dc908\"},{\"properties\":{\"roleName\":\"Cognitive - Services Data Reader (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you read Cognitive Services data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/*/read\"],\"notDataActions\":[]}],\"createdOn\":\"2019-02-13T20:02:12.6849986Z\",\"updatedOn\":\"2021-11-11T20:13:27.7138054Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b59867f0-fa02-499b-be73-45a86b5b3e1c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b59867f0-fa02-499b-be73-45a86b5b3e1c\"},{\"properties\":{\"roleName\":\"Cognitive - Services Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - create, read, update, delete and manage keys of Cognitive Services.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.CognitiveServices/*\",\"Microsoft.Features/features/read\",\"Microsoft.Features/providers/features/read\",\"Microsoft.Features/providers/features/register/action\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/diagnosticSettings/*\",\"Microsoft.Insights/logDefinitions/read\",\"Microsoft.Insights/metricdefinitions/read\",\"Microsoft.Insights/metrics/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-08-08T23:18:39.2257848Z\",\"updatedOn\":\"2021-11-11T20:13:27.9116230Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/25fbc0a9-bd7c-42a3-aa1a-3b75d497ee68\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"25fbc0a9-bd7c-42a3-aa1a-3b75d497ee68\"},{\"properties\":{\"roleName\":\"CosmosBackupOperator\",\"type\":\"BuiltInRole\",\"description\":\"Can - submit restore request for a Cosmos DB database or a container for an account\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DocumentDB/databaseAccounts/backup/action\",\"Microsoft.DocumentDB/databaseAccounts/restore/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-12-07T19:47:14.9651560Z\",\"updatedOn\":\"2021-11-11T20:13:28.4333692Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/db7b14f2-5adf-42da-9f96-f2ee17bab5cb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"db7b14f2-5adf-42da-9f96-f2ee17bab5cb\"},{\"properties\":{\"roleName\":\"Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Grants - full access to manage all resources, but does not allow you to assign roles - in Azure RBAC, manage assignments in Azure Blueprints, or share image galleries.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*\"],\"notActions\":[\"Microsoft.Authorization/*/Delete\",\"Microsoft.Authorization/*/Write\",\"Microsoft.Authorization/elevateAccess/Action\",\"Microsoft.Blueprint/blueprintAssignments/write\",\"Microsoft.Blueprint/blueprintAssignments/delete\",\"Microsoft.Compute/galleries/share/action\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:28.6061853Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b24988ac-6180-42a0-ab88-20f7382dd24c\"},{\"properties\":{\"roleName\":\"Cosmos - DB Account Reader Role\",\"type\":\"BuiltInRole\",\"description\":\"Can read - Azure Cosmos DB Accounts data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.DocumentDB/*/read\",\"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\"Microsoft.Insights/MetricDefinitions/read\",\"Microsoft.Insights/Metrics/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-10-30T17:53:54.6005577Z\",\"updatedOn\":\"2021-11-11T20:13:28.7911765Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"},{\"properties\":{\"roleName\":\"Cost - Management Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can view - costs and manage cost configuration (e.g. budgets, exports)\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Consumption/*\",\"Microsoft.CostManagement/*\",\"Microsoft.Billing/billingPeriods/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Advisor/configurations/read\",\"Microsoft.Advisor/recommendations/read\",\"Microsoft.Management/managementGroups/read\",\"Microsoft.Billing/billingProperty/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-03-14T16:09:22.8834827Z\",\"updatedOn\":\"2021-11-11T20:13:29.4851851Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/434105ed-43f6-45c7-a02f-909b2ba83430\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"434105ed-43f6-45c7-a02f-909b2ba83430\"},{\"properties\":{\"roleName\":\"Cost - Management Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can view cost - data and configuration (e.g. budgets, exports)\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Consumption/*/read\",\"Microsoft.CostManagement/*/read\",\"Microsoft.Billing/billingPeriods/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Advisor/configurations/read\",\"Microsoft.Advisor/recommendations/read\",\"Microsoft.Management/managementGroups/read\",\"Microsoft.Billing/billingProperty/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-03-14T16:09:22.8834827Z\",\"updatedOn\":\"2021-11-11T20:13:29.6601800Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/72fafb9e-0641-4937-9268-a91bfd8191a3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"72fafb9e-0641-4937-9268-a91bfd8191a3\"},{\"properties\":{\"roleName\":\"Data - Box Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage - everything under Data Box Service except giving access to others.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Databox/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-07-27T08:28:42.7140210Z\",\"updatedOn\":\"2021-11-11T20:13:30.3737856Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/add466c9-e687-43fc-8d98-dfcf8d720be5\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"add466c9-e687-43fc-8d98-dfcf8d720be5\"},{\"properties\":{\"roleName\":\"Data - Box Reader\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage Data - Box Service except creating order or editing order details and giving access - to others.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Databox/*/read\",\"Microsoft.Databox/jobs/listsecrets/action\",\"Microsoft.Databox/jobs/listcredentials/action\",\"Microsoft.Databox/locations/availableSkus/action\",\"Microsoft.Databox/locations/validateInputs/action\",\"Microsoft.Databox/locations/regionConfiguration/action\",\"Microsoft.Databox/locations/validateAddress/action\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-07-27T08:26:21.9284772Z\",\"updatedOn\":\"2021-11-11T20:13:30.5546117Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/028f4ed7-e2a9-465e-a8f4-9c0ffdfdc027\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"028f4ed7-e2a9-465e-a8f4-9c0ffdfdc027\"},{\"properties\":{\"roleName\":\"Data - Factory Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Create and - manage data factories, as well as child resources within them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.DataFactory/dataFactories/*\",\"Microsoft.DataFactory/factories/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.EventGrid/eventSubscriptions/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:30.7420174Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"673868aa-7521-48a0-acc6-0f60742d39f5\"},{\"properties\":{\"roleName\":\"Data - Purger\",\"type\":\"BuiltInRole\",\"description\":\"Can purge analytics data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Insights/components/*/read\",\"Microsoft.Insights/components/purge/action\",\"Microsoft.OperationalInsights/workspaces/*/read\",\"Microsoft.OperationalInsights/workspaces/purge/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-04-30T22:39:49.6167700Z\",\"updatedOn\":\"2021-11-11T20:13:31.2788395Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/150f5e0c-0603-4f03-8c7f-cf70034c4e90\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"150f5e0c-0603-4f03-8c7f-cf70034c4e90\"},{\"properties\":{\"roleName\":\"Data - Lake Analytics Developer\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you submit, monitor, and manage your own jobs but not create or delete Data - Lake Analytics accounts.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.BigAnalytics/accounts/*\",\"Microsoft.DataLakeAnalytics/accounts/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[\"Microsoft.BigAnalytics/accounts/Delete\",\"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\"Microsoft.BigAnalytics/accounts/Write\",\"Microsoft.DataLakeAnalytics/accounts/Delete\",\"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\"Microsoft.DataLakeAnalytics/accounts/Write\",\"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-10-20T00:33:29.3115234Z\",\"updatedOn\":\"2021-11-11T20:13:31.4688491Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"47b7735b-770e-4598-a7da-8b91488b4c88\"},{\"properties\":{\"roleName\":\"DevTest - Labs User\",\"type\":\"BuiltInRole\",\"description\":\"Lets you connect, start, - restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Compute/availabilitySets/read\",\"Microsoft.Compute/virtualMachines/*/read\",\"Microsoft.Compute/virtualMachines/deallocate/action\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/virtualMachines/restart/action\",\"Microsoft.Compute/virtualMachines/start/action\",\"Microsoft.DevTestLab/*/read\",\"Microsoft.DevTestLab/labs/claimAnyVm/action\",\"Microsoft.DevTestLab/labs/createEnvironment/action\",\"Microsoft.DevTestLab/labs/ensureCurrentUserProfile/action\",\"Microsoft.DevTestLab/labs/formulas/delete\",\"Microsoft.DevTestLab/labs/formulas/read\",\"Microsoft.DevTestLab/labs/formulas/write\",\"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\"Microsoft.DevTestLab/labs/virtualmachines/listApplicableSchedules/action\",\"Microsoft.DevTestLab/labs/virtualMachines/getRdpFileContents/action\",\"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\"Microsoft.Network/networkInterfaces/*/read\",\"Microsoft.Network/networkInterfaces/join/action\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/publicIPAddresses/*/read\",\"Microsoft.Network/publicIPAddresses/join/action\",\"Microsoft.Network/publicIPAddresses/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/listKeys/action\"],\"notActions\":[\"Microsoft.Compute/virtualMachines/vmSizes/read\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-06-08T21:52:45.0657582Z\",\"updatedOn\":\"2021-11-11T20:13:32.1746507Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"76283e04-6283-4c54-8f91-bcf1374a3c64\"},{\"properties\":{\"roleName\":\"DocumentDB - Account Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - manage DocumentDB accounts, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.DocumentDb/databaseAccounts/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:32.3496502Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5bd9cd88-fe45-4216-938b-f97437e15450\"},{\"properties\":{\"roleName\":\"DNS - Zone Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage - DNS zones and record sets in Azure DNS, but does not let you control who has - access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/dnsZones/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-10-15T23:33:25.9730842Z\",\"updatedOn\":\"2021-11-11T20:13:32.5233957Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"befefa01-2a29-4197-83a8-272ff33ce314\"},{\"properties\":{\"roleName\":\"EventGrid - EventSubscription Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you manage EventGrid event subscription operations.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.EventGrid/eventSubscriptions/*\",\"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\"Microsoft.EventGrid/locations/eventSubscriptions/read\",\"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-10-08T23:27:28.3130743Z\",\"updatedOn\":\"2021-11-11T20:13:33.4166738Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/428e0ff0-5e57-4d9c-a221-2c70d0e0a443\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"428e0ff0-5e57-4d9c-a221-2c70d0e0a443\"},{\"properties\":{\"roleName\":\"EventGrid - EventSubscription Reader\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you read EventGrid event subscriptions.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.EventGrid/eventSubscriptions/read\",\"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\"Microsoft.EventGrid/locations/eventSubscriptions/read\",\"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-10-09T17:29:28.1417894Z\",\"updatedOn\":\"2021-11-11T20:13:33.7846748Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2414bbcf-6497-4faf-8c65-045460748405\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2414bbcf-6497-4faf-8c65-045460748405\"},{\"properties\":{\"roleName\":\"Graph - Owner\",\"type\":\"BuiltInRole\",\"description\":\"Create and manage all aspects - of the Enterprise Graph - Ontology, Schema mapping, Conflation and Conversational - AI and Ingestions\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EnterpriseKnowledgeGraph/services/conflation/read\",\"Microsoft.EnterpriseKnowledgeGraph/services/conflation/write\",\"Microsoft.EnterpriseKnowledgeGraph/services/sourceschema/read\",\"Microsoft.EnterpriseKnowledgeGraph/services/sourceschema/write\",\"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/read\",\"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/write\",\"Microsoft.EnterpriseKnowledgeGraph/services/intentclassification/read\",\"Microsoft.EnterpriseKnowledgeGraph/services/intentclassification/write\",\"Microsoft.EnterpriseKnowledgeGraph/services/ingestion/read\",\"Microsoft.EnterpriseKnowledgeGraph/services/ingestion/write\",\"Microsoft.EnterpriseKnowledgeGraph/services/ontology/read\",\"Microsoft.EnterpriseKnowledgeGraph/services/ontology/write\",\"Microsoft.EnterpriseKnowledgeGraph/services/delete\",\"Microsoft.EnterpriseKnowledgeGraph/operations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-02-23T21:07:22.5844236Z\",\"updatedOn\":\"2021-11-11T20:13:34.6707886Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b60367af-1334-4454-b71e-769d9a4f83d9\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b60367af-1334-4454-b71e-769d9a4f83d9\"},{\"properties\":{\"roleName\":\"HDInsight - Domain Services Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can - Read, Create, Modify and Delete Domain Services related operations needed - for HDInsight Enterprise Security Package\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AAD/*/read\",\"Microsoft.AAD/domainServices/*/read\",\"Microsoft.AAD/domainServices/oucontainer/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-09-12T22:42:51.7451109Z\",\"updatedOn\":\"2021-11-11T20:13:35.3921342Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8d8d5a11-05d3-4bda-a417-a08778121c7c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8d8d5a11-05d3-4bda-a417-a08778121c7c\"},{\"properties\":{\"roleName\":\"Intelligent - Systems Account Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you manage Intelligent Systems accounts, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.IntelligentSystems/accounts/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:35.9371582Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"03a6d094-3444-4b3d-88af-7477090a9e5e\"},{\"properties\":{\"roleName\":\"Key - Vault Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage - key vaults, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.KeyVault/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[\"Microsoft.KeyVault/locations/deletedVaults/purge/action\",\"Microsoft.KeyVault/hsmPools/*\",\"Microsoft.KeyVault/managedHsms/*\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-02-25T17:08:28.5184971Z\",\"updatedOn\":\"2021-11-11T20:13:36.1170988Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f25e0fa2-a7c8-4377-a976-54943a77a395\"},{\"properties\":{\"roleName\":\"Knowledge - Consumer\",\"type\":\"BuiltInRole\",\"description\":\"Knowledge Read permission - to consume Enterprise Graph Knowledge using entity search and graph query\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-02-23T21:23:31.4037552Z\",\"updatedOn\":\"2021-11-11T20:13:37.0021342Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ee361c5d-f7b5-4119-b4b6-892157c8f64c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ee361c5d-f7b5-4119-b4b6-892157c8f64c\"},{\"properties\":{\"roleName\":\"Lab - Creator\",\"type\":\"BuiltInRole\",\"description\":\"Lets you create new labs - under your Azure Lab Accounts.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.LabServices/labAccounts/*/read\",\"Microsoft.LabServices/labAccounts/createLab/action\",\"Microsoft.LabServices/labAccounts/getPricingAndAvailability/action\",\"Microsoft.LabServices/labAccounts/getRestrictionsAndUsage/action\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.LabServices/labPlans/images/read\",\"Microsoft.LabServices/labPlans/read\",\"Microsoft.LabServices/labPlans/saveImage/action\",\"Microsoft.LabServices/labs/read\",\"Microsoft.LabServices/labs/schedules/read\",\"Microsoft.LabServices/labs/users/read\",\"Microsoft.LabServices/labs/virtualMachines/read\",\"Microsoft.LabServices/locations/usages/read\",\"Microsoft.LabServices/skus/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.LabServices/labPlans/createLab/action\"],\"notDataActions\":[]}],\"createdOn\":\"2018-01-18T23:38:58.1036141Z\",\"updatedOn\":\"2021-11-11T20:13:37.1821588Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b97fb8bc-a8b2-4522-a38b-dd33c7e65ead\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b97fb8bc-a8b2-4522-a38b-dd33c7e65ead\"},{\"properties\":{\"roleName\":\"Log - Analytics Reader\",\"type\":\"BuiltInRole\",\"description\":\"Log Analytics - Reader can view and search all monitoring data as well as and view monitoring - settings, including viewing the configuration of Azure diagnostics on all - Azure resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\"Microsoft.OperationalInsights/workspaces/search/action\",\"Microsoft.Support/*\"],\"notActions\":[\"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-02T00:20:28.1449012Z\",\"updatedOn\":\"2021-11-11T20:13:37.7071371Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"73c42c96-874c-492b-b04d-ab87d138a893\"},{\"properties\":{\"roleName\":\"Log - Analytics Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Log Analytics - Contributor can read all monitoring data and edit monitoring settings. Editing - monitoring settings includes adding the VM extension to VMs; reading storage - account keys to be able to configure collection of logs from Azure Storage; - adding solutions; and configuring Azure diagnostics on all Azure resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\"Microsoft.Compute/virtualMachines/extensions/*\",\"Microsoft.HybridCompute/machines/extensions/write\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/diagnosticSettings/*\",\"Microsoft.OperationalInsights/*\",\"Microsoft.OperationsManagement/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\"Microsoft.Storage/storageAccounts/listKeys/action\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-04-25T21:51:45.3174711Z\",\"updatedOn\":\"2021-11-11T20:13:37.8823618Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"},{\"properties\":{\"roleName\":\"Logic - App Operator\",\"type\":\"BuiltInRole\",\"description\":\"Lets you read, enable - and disable logic app.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*/read\",\"Microsoft.Insights/metricAlerts/*/read\",\"Microsoft.Insights/diagnosticSettings/*/read\",\"Microsoft.Insights/metricDefinitions/*/read\",\"Microsoft.Logic/*/read\",\"Microsoft.Logic/workflows/disable/action\",\"Microsoft.Logic/workflows/enable/action\",\"Microsoft.Logic/workflows/validate/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Web/connectionGateways/*/read\",\"Microsoft.Web/connections/*/read\",\"Microsoft.Web/customApis/*/read\",\"Microsoft.Web/serverFarms/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-04-28T21:33:30.4656007Z\",\"updatedOn\":\"2021-11-11T20:13:38.0573444Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"},{\"properties\":{\"roleName\":\"Logic - App Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage - logic app, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\"Microsoft.ClassicStorage/storageAccounts/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metricAlerts/*\",\"Microsoft.Insights/diagnosticSettings/*\",\"Microsoft.Insights/logdefinitions/*\",\"Microsoft.Insights/metricDefinitions/*\",\"Microsoft.Logic/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/listkeys/action\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Support/*\",\"Microsoft.Web/connectionGateways/*\",\"Microsoft.Web/connections/*\",\"Microsoft.Web/customApis/*\",\"Microsoft.Web/serverFarms/join/action\",\"Microsoft.Web/serverFarms/read\",\"Microsoft.Web/sites/functions/listSecrets/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-04-28T21:33:30.4656007Z\",\"updatedOn\":\"2021-11-11T20:13:38.2523833Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"87a39d53-fc1b-424a-814c-f7e04687dc9e\"},{\"properties\":{\"roleName\":\"Managed - Application Operator Role\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you read and perform actions on Managed Application resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.Solutions/applications/read\",\"Microsoft.Solutions/*/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-07-27T00:59:33.7988813Z\",\"updatedOn\":\"2021-11-11T20:13:38.5973763Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c7393b34-138c-406f-901b-d8cf2b17e6ae\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c7393b34-138c-406f-901b-d8cf2b17e6ae\"},{\"properties\":{\"roleName\":\"Managed - Applications Reader\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - read resources in a managed app and request JIT access.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Solutions/jitRequests/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-09-06T00:33:58.3651522Z\",\"updatedOn\":\"2021-11-11T20:13:38.7723523Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b9331d33-8a36-4f8c-b097-4f54124fdb44\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b9331d33-8a36-4f8c-b097-4f54124fdb44\"},{\"properties\":{\"roleName\":\"Managed - Identity Operator\",\"type\":\"BuiltInRole\",\"description\":\"Read and Assign - User Assigned Identity\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ManagedIdentity/userAssignedIdentities/*/read\",\"Microsoft.ManagedIdentity/userAssignedIdentities/*/assign/action\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-12-14T19:52:04.3924594Z\",\"updatedOn\":\"2021-11-11T20:13:38.9523759Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f1a07417-d97a-45cb-824c-7a7467783830\"},{\"properties\":{\"roleName\":\"Managed - Identity Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Create, - Read, Update, and Delete User Assigned Identity\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ManagedIdentity/userAssignedIdentities/read\",\"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\"Microsoft.ManagedIdentity/userAssignedIdentities/delete\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-12-14T19:53:42.8804692Z\",\"updatedOn\":\"2021-11-11T20:13:39.3023761Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e40ec5ca-96e0-45a2-b4ff-59039f2c2b59\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e40ec5ca-96e0-45a2-b4ff-59039f2c2b59\"},{\"properties\":{\"roleName\":\"Management - Group Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Management - Group Contributor Role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Management/managementGroups/delete\",\"Microsoft.Management/managementGroups/read\",\"Microsoft.Management/managementGroups/subscriptions/delete\",\"Microsoft.Management/managementGroups/subscriptions/write\",\"Microsoft.Management/managementGroups/write\",\"Microsoft.Management/managementGroups/subscriptions/read\",\"Microsoft.Authorization/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-06-22T00:28:29.0523964Z\",\"updatedOn\":\"2022-09-19T15:10:03.4377890Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c\"},{\"properties\":{\"roleName\":\"Management - Group Reader\",\"type\":\"BuiltInRole\",\"description\":\"Management Group - Reader Role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Management/managementGroups/read\",\"Microsoft.Management/managementGroups/subscriptions/read\",\"Microsoft.Authorization/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-06-22T00:31:03.4295347Z\",\"updatedOn\":\"2022-09-19T15:10:03.4377890Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ac63b705-f282-497d-ac71-919bf39d939d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ac63b705-f282-497d-ac71-919bf39d939d\"},{\"properties\":{\"roleName\":\"Monitoring - Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can read all monitoring - data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.OperationalInsights/workspaces/search/action\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-09-21T19:19:52.4939376Z\",\"updatedOn\":\"2022-09-06T17:20:40.5763144Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"},{\"properties\":{\"roleName\":\"Network - Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage networks, - but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-06-02T00:18:27.3542698Z\",\"updatedOn\":\"2021-11-11T20:13:44.6328966Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4d97b98b-1d4f-4787-a291-c67834d212e7\"},{\"properties\":{\"roleName\":\"New - Relic APM Account Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you manage New Relic Application Performance Management accounts and applications, - but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"NewRelic.APM/accounts/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:45.7178576Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5d28c62d-5b37-4476-8438-e587778df237\"},{\"properties\":{\"roleName\":\"Owner\",\"type\":\"BuiltInRole\",\"description\":\"Grants - full access to manage all resources, including the ability to assign roles - in Azure RBAC.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:45.8978856Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"},{\"properties\":{\"roleName\":\"Reader\",\"type\":\"BuiltInRole\",\"description\":\"View - all resources, but does not allow you to make any changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:47.8628684Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"acdd72a7-3385-48ef-bd42-f606fba81ae7\"},{\"properties\":{\"roleName\":\"Redis - Cache Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage - Redis caches, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Cache/register/action\",\"Microsoft.Cache/redis/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:48.0528671Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e0f68234-74aa-48ed-b826-c38b57376e17\"},{\"properties\":{\"roleName\":\"Reader - and Data Access\",\"type\":\"BuiltInRole\",\"description\":\"Lets you view - everything but will not let you delete or create a storage account or contained - resource. It will also allow read/write access to all data contained in a - storage account via access to storage account keys.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/listKeys/action\",\"Microsoft.Storage/storageAccounts/ListAccountSas/action\",\"Microsoft.Storage/storageAccounts/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-03-27T23:20:46.1498906Z\",\"updatedOn\":\"2021-11-11T20:13:48.2278951Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c12c1c16-33a1-487b-954d-41c89c60f349\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c12c1c16-33a1-487b-954d-41c89c60f349\"},{\"properties\":{\"roleName\":\"Resource - Policy Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Users with - rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.Authorization/policyassignments/*\",\"Microsoft.Authorization/policydefinitions/*\",\"Microsoft.Authorization/policyexemptions/*\",\"Microsoft.Authorization/policysetdefinitions/*\",\"Microsoft.PolicyInsights/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-08-25T19:08:01.3861639Z\",\"updatedOn\":\"2021-11-11T20:13:49.6679217Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"36243c78-bf99-498c-9df9-86d9f8d28608\"},{\"properties\":{\"roleName\":\"Scheduler - Job Collections Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you manage Scheduler job collections, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Scheduler/jobcollections/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:49.8429293Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"},{\"properties\":{\"roleName\":\"Search - Service Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - manage Search services, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Search/searchServices/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:50.0229309Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"},{\"properties\":{\"roleName\":\"Security - Manager (Legacy)\",\"type\":\"BuiltInRole\",\"description\":\"This is a legacy - role. Please use Security Administrator instead\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.ClassicCompute/*/read\",\"Microsoft.ClassicCompute/virtualMachines/*/write\",\"Microsoft.ClassicNetwork/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Security/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-06-22T17:45:15.8986455Z\",\"updatedOn\":\"2021-11-11T20:13:50.5729549Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"},{\"properties\":{\"roleName\":\"Security - Reader\",\"type\":\"BuiltInRole\",\"description\":\"Security Reader Role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.operationalInsights/workspaces/*/read\",\"Microsoft.Resources/deployments/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Security/*/read\",\"Microsoft.IoTSecurity/*/read\",\"Microsoft.Support/*/read\",\"Microsoft.Security/iotDefenderSettings/packageDownloads/action\",\"Microsoft.Security/iotDefenderSettings/downloadManagerActivation/action\",\"Microsoft.Security/iotSensors/downloadResetPassword/action\",\"Microsoft.IoTSecurity/defenderSettings/packageDownloads/action\",\"Microsoft.IoTSecurity/defenderSettings/downloadManagerActivation/action\",\"Microsoft.Management/managementGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-03T07:48:49.0516559Z\",\"updatedOn\":\"2021-11-11T20:13:50.7479015Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"},{\"properties\":{\"roleName\":\"Spatial - Anchors Account Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you manage spatial anchors in your account, but not delete them\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/SpatialAnchorsAccounts/create/action\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/write\"],\"notDataActions\":[]}],\"createdOn\":\"2018-12-21T17:57:41.1420864Z\",\"updatedOn\":\"2021-11-11T20:13:52.2829400Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8bbe83f1-e2a6-4df7-8cb4-4e04d4e5c827\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8bbe83f1-e2a6-4df7-8cb4-4e04d4e5c827\"},{\"properties\":{\"roleName\":\"Site - Recovery Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - manage Site Recovery service except vault creation and role assignment\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\"Microsoft.RecoveryServices/locations/allocateStamp/action\",\"Microsoft.RecoveryServices/Vaults/certificates/write\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\"Microsoft.RecoveryServices/vaults/replicationVaultSettings/*\",\"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\"Microsoft.RecoveryServices/Vaults/usages/read\",\"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.RecoveryServices/vaults/replicationOperationStatus/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-19T13:46:17.4592776Z\",\"updatedOn\":\"2021-11-11T20:13:52.4579503Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"},{\"properties\":{\"roleName\":\"Site - Recovery Operator\",\"type\":\"BuiltInRole\",\"description\":\"Lets you failover - and failback but not perform other Site Recovery management operations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\"Microsoft.RecoveryServices/locations/allocateStamp/action\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/switchprotection/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\"Microsoft.RecoveryServices/vaults/replicationVaultSettings/read\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\"Microsoft.RecoveryServices/Vaults/usages/read\",\"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-19T13:47:50.1341148Z\",\"updatedOn\":\"2021-11-11T20:13:52.6263418Z\",\"createdBy\":null,\"updatedBy\":\"\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"494ae006-db33-4328-bf46-533a6560a3ca\"},{\"properties\":{\"roleName\":\"Spatial - Anchors Account Reader\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - locate and read properties of spatial anchors in your account\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\"],\"notDataActions\":[]}],\"createdOn\":\"2018-12-21T17:57:42.9271004Z\",\"updatedOn\":\"2021-11-11T20:13:52.8013467Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d51204f-eb77-4b1c-b86a-2ec626c49413\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5d51204f-eb77-4b1c-b86a-2ec626c49413\"},{\"properties\":{\"roleName\":\"Site - Recovery Reader\",\"type\":\"BuiltInRole\",\"description\":\"Lets you view - Site Recovery status but not perform other management operations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\"Microsoft.RecoveryServices/vaults/replicationVaultSettings/read\",\"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\"Microsoft.RecoveryServices/Vaults/usages/read\",\"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-19T13:35:40.0093634Z\",\"updatedOn\":\"2021-11-11T20:13:52.9763366Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"dbaa88c4-0c30-4179-9fb3-46319faa6149\"},{\"properties\":{\"roleName\":\"Spatial - Anchors Account Owner\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - manage spatial anchors in your account, including deleting them\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/SpatialAnchorsAccounts/create/action\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/delete\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/write\"],\"notDataActions\":[]}],\"createdOn\":\"2018-12-21T17:57:43.5489832Z\",\"updatedOn\":\"2021-11-11T20:13:53.1663250Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/70bbe301-9835-447d-afdd-19eb3167307c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"70bbe301-9835-447d-afdd-19eb3167307c\"},{\"properties\":{\"roleName\":\"SQL - Managed Instance Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you manage SQL Managed Instances and required network configuration, but can\u2019t - give access to others.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Network/networkSecurityGroups/*\",\"Microsoft.Network/routeTables/*\",\"Microsoft.Sql/locations/*/read\",\"Microsoft.Sql/locations/instanceFailoverGroups/*\",\"Microsoft.Sql/managedInstances/*\",\"Microsoft.Support/*\",\"Microsoft.Network/virtualNetworks/subnets/*\",\"Microsoft.Network/virtualNetworks/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\"],\"notActions\":[\"Microsoft.Sql/managedInstances/azureADOnlyAuthentications/delete\",\"Microsoft.Sql/managedInstances/azureADOnlyAuthentications/write\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-12-10T22:57:14.2937983Z\",\"updatedOn\":\"2021-11-11T20:13:53.3513507Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4939a1f6-9ae0-4e48-a1e0-f2cbe897382d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4939a1f6-9ae0-4e48-a1e0-f2cbe897382d\"},{\"properties\":{\"roleName\":\"SQL - DB Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage - SQL databases, but not access to them. Also, you can't manage their security-related - policies or their parent SQL servers.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Sql/locations/*/read\",\"Microsoft.Sql/servers/databases/*\",\"Microsoft.Sql/servers/read\",\"Microsoft.Support/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\"],\"notActions\":[\"Microsoft.Sql/servers/databases/ledgerDigestUploads/write\",\"Microsoft.Sql/servers/databases/ledgerDigestUploads/disable/action\",\"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/databases/auditingSettings/*\",\"Microsoft.Sql/servers/databases/auditRecords/read\",\"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\"Microsoft.Sql/servers/databases/extendedAuditingSettings/*\",\"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\"Microsoft.Sql/servers/databases/securityMetrics/*\",\"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\"Microsoft.Sql/servers/vulnerabilityAssessments/*\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:53.5363219Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"},{\"properties\":{\"roleName\":\"SQL - Security Manager\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage - the security-related policies of SQL servers and databases, but not access - to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Sql/locations/administratorAzureAsyncOperation/read\",\"Microsoft.Sql/managedInstances/advancedThreatProtectionSettings/read\",\"Microsoft.Sql/managedInstances/advancedThreatProtectionSettings/write\",\"Microsoft.Sql/managedInstances/databases/advancedThreatProtectionSettings/read\",\"Microsoft.Sql/managedInstances/databases/advancedThreatProtectionSettings/write\",\"Microsoft.Sql/managedInstances/advancedThreatProtectionSettings/read\",\"Microsoft.Sql/managedInstances/advancedThreatProtectionSettings/write\",\"Microsoft.Sql/managedInstances/databases/advancedThreatProtectionSettings/read\",\"Microsoft.Sql/managedInstances/databases/advancedThreatProtectionSettings/write\",\"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/advancedThreatProtectionSettings/read\",\"Microsoft.Sql/servers/advancedThreatProtectionSettings/write\",\"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/databases/transparentDataEncryption/*\",\"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\"Microsoft.Sql/managedInstances/serverConfigurationOptions/read\",\"Microsoft.Sql/managedInstances/serverConfigurationOptions/write\",\"Microsoft.Sql/locations/serverConfigurationOptionAzureAsyncOperation/read\",\"Microsoft.Sql/servers/advancedThreatProtectionSettings/read\",\"Microsoft.Sql/servers/advancedThreatProtectionSettings/write\",\"Microsoft.Sql/servers/auditingSettings/*\",\"Microsoft.Sql/servers/extendedAuditingSettings/read\",\"Microsoft.Sql/servers/databases/advancedThreatProtectionSettings/read\",\"Microsoft.Sql/servers/databases/advancedThreatProtectionSettings/write\",\"Microsoft.Sql/servers/databases/advancedThreatProtectionSettings/read\",\"Microsoft.Sql/servers/databases/advancedThreatProtectionSettings/write\",\"Microsoft.Sql/servers/databases/auditingSettings/*\",\"Microsoft.Sql/servers/databases/auditRecords/read\",\"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\"Microsoft.Sql/servers/databases/extendedAuditingSettings/read\",\"Microsoft.Sql/servers/databases/read\",\"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/schemas/read\",\"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/schemas/tables/read\",\"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\"Microsoft.Sql/servers/databases/securityMetrics/*\",\"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/transparentDataEncryption/*\",\"Microsoft.Sql/servers/databases/sqlvulnerabilityAssessments/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\"Microsoft.Sql/servers/devOpsAuditingSettings/*\",\"Microsoft.Sql/servers/firewallRules/*\",\"Microsoft.Sql/servers/read\",\"Microsoft.Sql/servers/securityAlertPolicies/*\",\"Microsoft.Sql/servers/sqlvulnerabilityAssessments/*\",\"Microsoft.Sql/servers/vulnerabilityAssessments/*\",\"Microsoft.Support/*\",\"Microsoft.Sql/servers/azureADOnlyAuthentications/*\",\"Microsoft.Sql/managedInstances/read\",\"Microsoft.Sql/managedInstances/azureADOnlyAuthentications/*\",\"Microsoft.Security/sqlVulnerabilityAssessments/*\",\"Microsoft.Sql/managedInstances/administrators/read\",\"Microsoft.Sql/servers/administrators/read\",\"Microsoft.Sql/servers/databases/ledgerDigestUploads/*\",\"Microsoft.Sql/locations/ledgerDigestUploadsAzureAsyncOperation/read\",\"Microsoft.Sql/locations/ledgerDigestUploadsOperationResults/read\",\"Microsoft.Sql/servers/externalPolicyBasedAuthorizations/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-06-16T18:44:40.4607572Z\",\"updatedOn\":\"2023-03-02T16:44:21.9655690Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"},{\"properties\":{\"roleName\":\"Storage - Account Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - manage storage accounts, including accessing storage account keys which provide - full access to storage account data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/diagnosticSettings/*\",\"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-06-02T00:18:27.3542698Z\",\"updatedOn\":\"2021-11-11T20:13:54.2363539Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"17d1049b-9a84-46fb-8f53-869881c3d3ab\"},{\"properties\":{\"roleName\":\"SQL - Server Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage - SQL servers and databases, but not access to them, and not their security - -related policies.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Sql/locations/*/read\",\"Microsoft.Sql/servers/*\",\"Microsoft.Support/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\"],\"notActions\":[\"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/auditingSettings/*\",\"Microsoft.Sql/servers/databases/auditingSettings/*\",\"Microsoft.Sql/servers/databases/auditRecords/read\",\"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\"Microsoft.Sql/servers/databases/extendedAuditingSettings/*\",\"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\"Microsoft.Sql/servers/databases/securityMetrics/*\",\"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\"Microsoft.Sql/servers/devOpsAuditingSettings/*\",\"Microsoft.Sql/servers/extendedAuditingSettings/*\",\"Microsoft.Sql/servers/securityAlertPolicies/*\",\"Microsoft.Sql/servers/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/azureADOnlyAuthentications/delete\",\"Microsoft.Sql/servers/azureADOnlyAuthentications/write\",\"Microsoft.Sql/servers/externalPolicyBasedAuthorizations/delete\",\"Microsoft.Sql/servers/externalPolicyBasedAuthorizations/write\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2022-04-28T23:10:45.2206234Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"},{\"properties\":{\"roleName\":\"Storage - Account Key Operator Service Role\",\"type\":\"BuiltInRole\",\"description\":\"Storage - Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/listkeys/action\",\"Microsoft.Storage/storageAccounts/regeneratekey/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-04-13T18:26:11.5770570Z\",\"updatedOn\":\"2021-11-11T20:13:54.7697481Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"81a9662b-bebf-436f-a333-f67b29880f12\"},{\"properties\":{\"roleName\":\"Storage - Blob Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows - for read, write and delete access to Azure Storage blob containers and data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/delete\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/move/action\",\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/add/action\"],\"notDataActions\":[]}],\"createdOn\":\"2017-12-21T00:01:24.7972312Z\",\"updatedOn\":\"2021-11-11T20:13:54.9397456Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ba92f5b4-2d11-453d-a403-e96b0029c9fe\"},{\"properties\":{\"roleName\":\"Storage - Blob Data Owner\",\"type\":\"BuiltInRole\",\"description\":\"Allows for full - access to Azure Storage blob containers and data, including assigning POSIX - access control.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/*\",\"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/*\"],\"notDataActions\":[]}],\"createdOn\":\"2018-12-04T07:02:58.2775257Z\",\"updatedOn\":\"2021-11-11T20:13:55.1225062Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b7e6dc6d-f1e8-4753-8033-0f276bb0955b\"},{\"properties\":{\"roleName\":\"Storage - Blob Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows for read - access to Azure Storage blob containers and data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\"],\"notDataActions\":[]}],\"createdOn\":\"2017-12-21T00:01:24.7972312Z\",\"updatedOn\":\"2021-11-11T20:13:55.2975076Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2a2b9908-6ea1-4ae2-8e65-a410df84e7d1\"},{\"properties\":{\"roleName\":\"Storage - Queue Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows - for read, write, and delete access to Azure Storage queues and queue messages\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/queueServices/queues/delete\",\"Microsoft.Storage/storageAccounts/queueServices/queues/read\",\"Microsoft.Storage/storageAccounts/queueServices/queues/write\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/queueServices/queues/messages/delete\",\"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\",\"Microsoft.Storage/storageAccounts/queueServices/queues/messages/write\",\"Microsoft.Storage/storageAccounts/queueServices/queues/messages/process/action\"],\"notDataActions\":[]}],\"createdOn\":\"2017-12-21T00:01:24.7972312Z\",\"updatedOn\":\"2021-11-11T20:13:55.4725469Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/974c5e8b-45b9-4653-ba55-5f855dd0fb88\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"974c5e8b-45b9-4653-ba55-5f855dd0fb88\"},{\"properties\":{\"roleName\":\"Storage - Queue Data Message Processor\",\"type\":\"BuiltInRole\",\"description\":\"Allows - for peek, receive, and delete access to Azure Storage queue messages\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\",\"Microsoft.Storage/storageAccounts/queueServices/queues/messages/process/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-01-28T22:27:04.8947111Z\",\"updatedOn\":\"2021-11-11T20:13:55.6575408Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8a0f0c08-91a1-4084-bc3d-661d67233fed\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8a0f0c08-91a1-4084-bc3d-661d67233fed\"},{\"properties\":{\"roleName\":\"Storage - Queue Data Message Sender\",\"type\":\"BuiltInRole\",\"description\":\"Allows - for sending of Azure Storage queue messages\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/queueServices/queues/messages/add/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-01-28T22:28:34.7459724Z\",\"updatedOn\":\"2021-11-11T20:13:55.8325508Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c6a89b2d-59bc-44d0-9896-0f6e12d7b80a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c6a89b2d-59bc-44d0-9896-0f6e12d7b80a\"},{\"properties\":{\"roleName\":\"Storage - Queue Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows for - read access to Azure Storage queues and queue messages\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/queueServices/queues/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\"],\"notDataActions\":[]}],\"createdOn\":\"2017-12-21T00:01:24.7972312Z\",\"updatedOn\":\"2021-11-11T20:13:56.0178497Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/19e7f393-937e-4f77-808e-94535e297925\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"19e7f393-937e-4f77-808e-94535e297925\"},{\"properties\":{\"roleName\":\"Support - Request Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - create and manage Support requests\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-06-22T22:25:37.8053068Z\",\"updatedOn\":\"2021-11-11T20:13:56.7444481Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"},{\"properties\":{\"roleName\":\"Traffic - Manager Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - manage Traffic Manager profiles, but does not let you control who has access - to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/trafficManagerProfiles/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-10-15T23:33:25.9730842Z\",\"updatedOn\":\"2021-11-11T20:13:57.2744497Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"},{\"properties\":{\"roleName\":\"User - Access Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - manage user access to Azure resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.Authorization/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:57.7932023Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"},{\"properties\":{\"roleName\":\"Virtual - Machine Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - manage virtual machines, but not access to them, and not the virtual network - or storage account they're connected to.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Compute/availabilitySets/*\",\"Microsoft.Compute/locations/*\",\"Microsoft.Compute/virtualMachines/*\",\"Microsoft.Compute/virtualMachineScaleSets/*\",\"Microsoft.Compute/cloudServices/*\",\"Microsoft.Compute/disks/write\",\"Microsoft.Compute/disks/read\",\"Microsoft.Compute/disks/delete\",\"Microsoft.DevTestLab/schedules/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\"Microsoft.Network/loadBalancers/probes/join/action\",\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/locations/*\",\"Microsoft.Network/networkInterfaces/*\",\"Microsoft.Network/networkSecurityGroups/join/action\",\"Microsoft.Network/networkSecurityGroups/read\",\"Microsoft.Network/publicIPAddresses/join/action\",\"Microsoft.Network/publicIPAddresses/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.RecoveryServices/locations/*\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/usages/read\",\"Microsoft.RecoveryServices/Vaults/write\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.SerialConsole/serialPorts/connect/action\",\"Microsoft.SqlVirtualMachine/*\",\"Microsoft.Storage/storageAccounts/listKeys/action\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-06-02T00:18:27.3542698Z\",\"updatedOn\":\"2021-11-11T20:13:58.3176075Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"},{\"properties\":{\"roleName\":\"Web - Plan Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage - the web plans for websites, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Web/serverFarms/*\",\"Microsoft.Web/hostingEnvironments/Join/Action\",\"Microsoft.Insights/autoscalesettings/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2022-09-05T15:10:54.6819807Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"},{\"properties\":{\"roleName\":\"Website - Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage websites - (not web plans), but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/components/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Web/certificates/*\",\"Microsoft.Web/listSitesAssignedToHostName/read\",\"Microsoft.Web/serverFarms/join/action\",\"Microsoft.Web/serverFarms/read\",\"Microsoft.Web/sites/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-05-12T23:10:23.6193952Z\",\"updatedOn\":\"2021-11-11T20:13:58.6655647Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"de139f84-1756-47ae-9be6-808fbbe84772\"},{\"properties\":{\"roleName\":\"Azure - Service Bus Data Owner\",\"type\":\"BuiltInRole\",\"description\":\"Allows - for full access to Azure Service Bus resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ServiceBus/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ServiceBus/*\"],\"notDataActions\":[]}],\"createdOn\":\"2019-04-16T21:33:36.7445745Z\",\"updatedOn\":\"2021-11-11T20:13:59.2005807Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"090c5cfd-751d-490a-894a-3ce6f1109419\"},{\"properties\":{\"roleName\":\"Azure - Event Hubs Data Owner\",\"type\":\"BuiltInRole\",\"description\":\"Allows - for full access to Azure Event Hubs resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EventHub/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventHub/*\"],\"notDataActions\":[]}],\"createdOn\":\"2019-04-16T21:34:29.8656362Z\",\"updatedOn\":\"2021-11-11T20:13:59.3721538Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f526a384-b230-433a-b45c-95f59c4a2dec\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f526a384-b230-433a-b45c-95f59c4a2dec\"},{\"properties\":{\"roleName\":\"Attestation - Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can read write or - delete the attestation provider instance\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Attestation/attestationProviders/attestation/read\",\"Microsoft.Attestation/attestationProviders/attestation/write\",\"Microsoft.Attestation/attestationProviders/attestation/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-04-19T00:24:09.3354177Z\",\"updatedOn\":\"2021-11-11T20:13:59.7271218Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bbf86eb8-f7b4-4cce-96e4-18cddf81d86e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bbf86eb8-f7b4-4cce-96e4-18cddf81d86e\"},{\"properties\":{\"roleName\":\"HDInsight - Cluster Operator\",\"type\":\"BuiltInRole\",\"description\":\"Lets you read - and modify HDInsight cluster configurations.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HDInsight/*/read\",\"Microsoft.HDInsight/clusters/getGatewaySettings/action\",\"Microsoft.HDInsight/clusters/updateGatewaySettings/action\",\"Microsoft.HDInsight/clusters/configurations/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-04-20T00:03:01.7110732Z\",\"updatedOn\":\"2021-11-11T20:13:59.9052180Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/61ed4efc-fab3-44fd-b111-e24485cc132a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"61ed4efc-fab3-44fd-b111-e24485cc132a\"},{\"properties\":{\"roleName\":\"Cosmos - DB Operator\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage Azure - Cosmos DB accounts, but not access data in them. Prevents access to account - keys and connection strings.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DocumentDb/databaseAccounts/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\"],\"notActions\":[\"Microsoft.DocumentDB/databaseAccounts/readonlyKeys/*\",\"Microsoft.DocumentDB/databaseAccounts/regenerateKey/*\",\"Microsoft.DocumentDB/databaseAccounts/listKeys/*\",\"Microsoft.DocumentDB/databaseAccounts/listConnectionStrings/*\",\"Microsoft.DocumentDB/databaseAccounts/sqlRoleDefinitions/write\",\"Microsoft.DocumentDB/databaseAccounts/sqlRoleDefinitions/delete\",\"Microsoft.DocumentDB/databaseAccounts/sqlRoleAssignments/write\",\"Microsoft.DocumentDB/databaseAccounts/sqlRoleAssignments/delete\",\"Microsoft.DocumentDB/databaseAccounts/mongodbRoleDefinitions/write\",\"Microsoft.DocumentDB/databaseAccounts/mongodbRoleDefinitions/delete\",\"Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions/write\",\"Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions/delete\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-04-26T17:01:17.0169383Z\",\"updatedOn\":\"2023-01-13T19:15:03.5263227Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/230815da-be43-4aae-9cb4-875f7bd000aa\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"230815da-be43-4aae-9cb4-875f7bd000aa\"},{\"properties\":{\"roleName\":\"Hybrid - Server Resource Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Can - read, write, delete, and re-onboard Hybrid servers to the Hybrid Resource - Provider.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/*\",\"Microsoft.HybridCompute/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-04-29T21:39:32.3132923Z\",\"updatedOn\":\"2021-11-11T20:14:00.2548257Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/48b40c6e-82e0-4eb3-90d5-19e40f49b624\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"48b40c6e-82e0-4eb3-90d5-19e40f49b624\"},{\"properties\":{\"roleName\":\"Hybrid - Server Onboarding\",\"type\":\"BuiltInRole\",\"description\":\"Can onboard - new Hybrid servers to the Hybrid Resource Provider.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/read\",\"Microsoft.HybridCompute/machines/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-04-29T22:36:28.1873756Z\",\"updatedOn\":\"2021-11-11T20:14:00.4308999Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d1e5ee4-7c68-4a71-ac8b-0739630a3dfb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5d1e5ee4-7c68-4a71-ac8b-0739630a3dfb\"},{\"properties\":{\"roleName\":\"Azure - Event Hubs Data Receiver\",\"type\":\"BuiltInRole\",\"description\":\"Allows - receive access to Azure Event Hubs resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EventHub/*/eventhubs/consumergroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventHub/*/receive/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-05-10T06:25:21.1056666Z\",\"updatedOn\":\"2021-11-11T20:14:01.3225169Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a638d3c7-ab3a-418d-83e6-5f17a39d4fde\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a638d3c7-ab3a-418d-83e6-5f17a39d4fde\"},{\"properties\":{\"roleName\":\"Azure - Event Hubs Data Sender\",\"type\":\"BuiltInRole\",\"description\":\"Allows - send access to Azure Event Hubs resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EventHub/*/eventhubs/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventHub/*/send/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-05-10T06:26:12.4673714Z\",\"updatedOn\":\"2021-11-11T20:14:01.4925583Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2b629674-e913-4c01-ae53-ef4638d8f975\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2b629674-e913-4c01-ae53-ef4638d8f975\"},{\"properties\":{\"roleName\":\"Azure - Service Bus Data Receiver\",\"type\":\"BuiltInRole\",\"description\":\"Allows - for receive access to Azure Service Bus resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ServiceBus/*/queues/read\",\"Microsoft.ServiceBus/*/topics/read\",\"Microsoft.ServiceBus/*/topics/subscriptions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ServiceBus/*/receive/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-05-10T06:43:01.6343849Z\",\"updatedOn\":\"2021-11-11T20:14:01.6629685Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4f6d3b9b-027b-4f4c-9142-0e5a2a2247e0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4f6d3b9b-027b-4f4c-9142-0e5a2a2247e0\"},{\"properties\":{\"roleName\":\"Azure - Service Bus Data Sender\",\"type\":\"BuiltInRole\",\"description\":\"Allows - for send access to Azure Service Bus resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ServiceBus/*/queues/read\",\"Microsoft.ServiceBus/*/topics/read\",\"Microsoft.ServiceBus/*/topics/subscriptions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ServiceBus/*/send/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-05-10T06:43:46.7046934Z\",\"updatedOn\":\"2021-11-11T20:14:01.8479199Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/69a216fc-b8fb-44d8-bc22-1f3c2cd27a39\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"69a216fc-b8fb-44d8-bc22-1f3c2cd27a39\"},{\"properties\":{\"roleName\":\"Storage - File Data SMB Share Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows - for read access to Azure File Share over SMB\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\"],\"notDataActions\":[]}],\"createdOn\":\"2019-07-01T20:19:31.8620471Z\",\"updatedOn\":\"2021-11-11T20:14:04.3642909Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/aba4ae5f-2193-4029-9191-0cb91df5e314\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"aba4ae5f-2193-4029-9191-0cb91df5e314\"},{\"properties\":{\"roleName\":\"Storage - File Data SMB Share Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows - for read, write, and delete access in Azure Storage file shares over SMB\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/write\",\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/delete\"],\"notDataActions\":[]}],\"createdOn\":\"2019-07-01T20:54:35.4834310Z\",\"updatedOn\":\"2021-11-11T20:14:04.5443323Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0c867c2a-1d8c-454a-a3db-ab2ea1bdc8bb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0c867c2a-1d8c-454a-a3db-ab2ea1bdc8bb\"},{\"properties\":{\"roleName\":\"Private - DNS Zone Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - manage private DNS zone resources, but not the virtual networks they are linked - to.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Network/privateDnsZones/*\",\"Microsoft.Network/privateDnsOperationResults/*\",\"Microsoft.Network/privateDnsOperationStatuses/*\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/join/action\",\"Microsoft.Authorization/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-07-10T19:31:15.5645518Z\",\"updatedOn\":\"2021-11-11T20:14:04.7342851Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b12aa53e-6015-4669-85d0-8515ebb3ae7f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b12aa53e-6015-4669-85d0-8515ebb3ae7f\"},{\"properties\":{\"roleName\":\"Storage - Blob Delegator\",\"type\":\"BuiltInRole\",\"description\":\"Allows for generation - of a user delegation key which can be used to sign SAS tokens\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-07-23T00:51:16.3376761Z\",\"updatedOn\":\"2021-11-11T20:14:05.4321714Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/db58b8e5-c6ad-4a2a-8342-4190687cbf4a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"db58b8e5-c6ad-4a2a-8342-4190687cbf4a\"},{\"properties\":{\"roleName\":\"Desktop - Virtualization User\",\"type\":\"BuiltInRole\",\"description\":\"Allows user - to use the applications in an application group.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.DesktopVirtualization/applicationGroups/useApplications/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-08-07T00:29:03.8727621Z\",\"updatedOn\":\"2021-11-11T20:14:05.9821791Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1d18fff3-a72a-46b5-b4a9-0b38a3cd7e63\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1d18fff3-a72a-46b5-b4a9-0b38a3cd7e63\"},{\"properties\":{\"roleName\":\"Storage - File Data SMB Share Elevated Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows - for read, write, delete and modify NTFS permission access in Azure Storage - file shares over SMB\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/write\",\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/delete\",\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/modifypermissions/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-08-07T01:35:36.9935457Z\",\"updatedOn\":\"2021-11-11T20:14:06.1571744Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a7264617-510b-434b-a828-9731dc254ea7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a7264617-510b-434b-a828-9731dc254ea7\"},{\"properties\":{\"roleName\":\"Blueprint - Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can manage blueprint - definitions, but not assign them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Blueprint/blueprints/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-14T21:55:16.9683949Z\",\"updatedOn\":\"2021-11-11T20:14:06.5171828Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/41077137-e803-4205-871c-5a86e6a753b4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"41077137-e803-4205-871c-5a86e6a753b4\"},{\"properties\":{\"roleName\":\"Blueprint - Operator\",\"type\":\"BuiltInRole\",\"description\":\"Can assign existing - published blueprints, but cannot create new blueprints. NOTE: this only works - if the assignment is done with a user-assigned managed identity.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Blueprint/blueprintAssignments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-14T21:56:48.7897875Z\",\"updatedOn\":\"2021-11-11T20:14:06.6971401Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/437d2ced-4a38-4302-8479-ed2bcb43d090\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"437d2ced-4a38-4302-8479-ed2bcb43d090\"},{\"properties\":{\"roleName\":\"Microsoft - Sentinel Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Microsoft - Sentinel Contributor\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SecurityInsights/*\",\"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\"Microsoft.OperationalInsights/workspaces/*/read\",\"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\"Microsoft.OperationsManagement/solutions/read\",\"Microsoft.OperationalInsights/workspaces/query/read\",\"Microsoft.OperationalInsights/workspaces/query/*/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.OperationalInsights/querypacks/*/read\",\"Microsoft.Insights/workbooks/*\",\"Microsoft.Insights/myworkbooks/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[\"Microsoft.SecurityInsights/ConfidentialWatchlists/*\",\"Microsoft.OperationalInsights/workspaces/query/ConfidentialWatchlist/*\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:39:03.8725173Z\",\"updatedOn\":\"2022-08-01T18:55:21.5434692Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ab8e14d6-4a74-4a29-9ba8-549422addade\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ab8e14d6-4a74-4a29-9ba8-549422addade\"},{\"properties\":{\"roleName\":\"Microsoft - Sentinel Responder\",\"type\":\"BuiltInRole\",\"description\":\"Microsoft - Sentinel Responder\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SecurityInsights/*/read\",\"Microsoft.SecurityInsights/dataConnectorsCheckRequirements/action\",\"Microsoft.SecurityInsights/automationRules/*\",\"Microsoft.SecurityInsights/cases/*\",\"Microsoft.SecurityInsights/incidents/*\",\"Microsoft.SecurityInsights/threatIntelligence/indicators/appendTags/action\",\"Microsoft.SecurityInsights/threatIntelligence/indicators/query/action\",\"Microsoft.SecurityInsights/threatIntelligence/bulkTag/action\",\"Microsoft.SecurityInsights/threatIntelligence/indicators/appendTags/action\",\"Microsoft.SecurityInsights/threatIntelligence/indicators/replaceTags/action\",\"Microsoft.SecurityInsights/threatIntelligence/queryIndicators/action\",\"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\"Microsoft.OperationalInsights/workspaces/*/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\"Microsoft.OperationsManagement/solutions/read\",\"Microsoft.OperationalInsights/workspaces/query/read\",\"Microsoft.OperationalInsights/workspaces/query/*/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.OperationalInsights/querypacks/*/read\",\"Microsoft.Insights/workbooks/read\",\"Microsoft.Insights/myworkbooks/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[\"Microsoft.SecurityInsights/cases/*/Delete\",\"Microsoft.SecurityInsights/incidents/*/Delete\",\"Microsoft.SecurityInsights/ConfidentialWatchlists/*\",\"Microsoft.OperationalInsights/workspaces/query/ConfidentialWatchlist/*\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:54:07.6467264Z\",\"updatedOn\":\"2022-08-01T18:54:27.2710437Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3e150937-b8fe-4cfb-8069-0eaf05ecd056\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3e150937-b8fe-4cfb-8069-0eaf05ecd056\"},{\"properties\":{\"roleName\":\"Microsoft - Sentinel Reader\",\"type\":\"BuiltInRole\",\"description\":\"Microsoft Sentinel - Reader\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SecurityInsights/*/read\",\"Microsoft.SecurityInsights/dataConnectorsCheckRequirements/action\",\"Microsoft.SecurityInsights/threatIntelligence/indicators/query/action\",\"Microsoft.SecurityInsights/threatIntelligence/queryIndicators/action\",\"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\"Microsoft.OperationalInsights/workspaces/*/read\",\"Microsoft.OperationalInsights/workspaces/LinkedServices/read\",\"Microsoft.OperationalInsights/workspaces/savedSearches/read\",\"Microsoft.OperationsManagement/solutions/read\",\"Microsoft.OperationalInsights/workspaces/query/read\",\"Microsoft.OperationalInsights/workspaces/query/*/read\",\"Microsoft.OperationalInsights/querypacks/*/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.Insights/workbooks/read\",\"Microsoft.Insights/myworkbooks/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/templateSpecs/*/read\",\"Microsoft.Support/*\"],\"notActions\":[\"Microsoft.SecurityInsights/ConfidentialWatchlists/*\",\"Microsoft.OperationalInsights/workspaces/query/ConfidentialWatchlist/*\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:58:50.1132117Z\",\"updatedOn\":\"2022-08-01T18:55:21.5434692Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8d289c81-5878-46d4-8554-54e1e3d8b5cb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8d289c81-5878-46d4-8554-54e1e3d8b5cb\"},{\"properties\":{\"roleName\":\"Policy - Insights Data Writer (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Allows - read access to resource policies and write access to resource component policy - events.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/policyassignments/read\",\"Microsoft.Authorization/policydefinitions/read\",\"Microsoft.Authorization/policyexemptions/read\",\"Microsoft.Authorization/policysetdefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.PolicyInsights/checkDataPolicyCompliance/action\",\"Microsoft.PolicyInsights/policyEvents/logDataEvents/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-09-19T19:35:20.9504127Z\",\"updatedOn\":\"2021-11-11T20:14:09.4235132Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/66bb4e9e-b016-4a94-8249-4c0511c2be84\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"66bb4e9e-b016-4a94-8249-4c0511c2be84\"},{\"properties\":{\"roleName\":\"SignalR - AccessKey Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read SignalR - Service Access Keys\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SignalRService/*/read\",\"Microsoft.SignalRService/SignalR/listkeys/action\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-09-20T09:33:19.6236874Z\",\"updatedOn\":\"2021-11-11T20:14:09.6134860Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/04165923-9d83-45d5-8227-78b77b0a687e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"04165923-9d83-45d5-8227-78b77b0a687e\"},{\"properties\":{\"roleName\":\"SignalR/Web - PubSub Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Create, Read, - Update, and Delete SignalR service resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SignalRService/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-09-20T09:58:09.0009662Z\",\"updatedOn\":\"2021-11-11T20:14:09.7884765Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8cf5e20a-e4b2-4e9d-b3a1-5ceb692c2761\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8cf5e20a-e4b2-4e9d-b3a1-5ceb692c2761\"},{\"properties\":{\"roleName\":\"Azure - Connected Machine Onboarding\",\"type\":\"BuiltInRole\",\"description\":\"Can - onboard Azure Connected Machines.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/read\",\"Microsoft.HybridCompute/machines/write\",\"Microsoft.HybridCompute/privateLinkScopes/read\",\"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-10-23T20:15:07.1372870Z\",\"updatedOn\":\"2021-11-11T20:14:10.8735219Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b64e21ea-ac4e-4cdf-9dc9-5b892992bee7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b64e21ea-ac4e-4cdf-9dc9-5b892992bee7\"},{\"properties\":{\"roleName\":\"Managed - Services Registration assignment Delete Role\",\"type\":\"BuiltInRole\",\"description\":\"Managed - Services Registration Assignment Delete Role allows the managing tenant users - to delete the registration assignment assigned to their tenant.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ManagedServices/registrationAssignments/read\",\"Microsoft.ManagedServices/registrationAssignments/delete\",\"Microsoft.ManagedServices/operationStatuses/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-10-23T22:33:33.1183469Z\",\"updatedOn\":\"2021-11-11T20:14:11.2336400Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/91c1777a-f3dc-4fae-b103-61d183457e46\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"91c1777a-f3dc-4fae-b103-61d183457e46\"},{\"properties\":{\"roleName\":\"App - Configuration Data Owner\",\"type\":\"BuiltInRole\",\"description\":\"Allows - full access to App Configuration data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppConfiguration/configurationStores/*/read\",\"Microsoft.AppConfiguration/configurationStores/*/write\",\"Microsoft.AppConfiguration/configurationStores/*/delete\",\"Microsoft.AppConfiguration/configurationStores/*/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-10-25T18:41:40.1185063Z\",\"updatedOn\":\"2023-02-03T23:50:20.5687092Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b\"},{\"properties\":{\"roleName\":\"App - Configuration Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows - read access to App Configuration data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppConfiguration/configurationStores/*/read\"],\"notDataActions\":[]}],\"createdOn\":\"2019-10-25T18:45:33.7975332Z\",\"updatedOn\":\"2021-11-11T20:14:11.5885341Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/516239f1-63e1-4d78-a4de-a74fb236a071\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"516239f1-63e1-4d78-a4de-a74fb236a071\"},{\"properties\":{\"roleName\":\"Kubernetes - Cluster - Azure Arc Onboarding\",\"type\":\"BuiltInRole\",\"description\":\"Role - definition to authorize any user/service to create connectedClusters resource\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Kubernetes/connectedClusters/Write\",\"Microsoft.Kubernetes/connectedClusters/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-11-18T17:00:02.2087147Z\",\"updatedOn\":\"2021-11-11T20:14:12.4685303Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/34e09817-6cbe-4d01-b1a2-e0eac5743d41\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"34e09817-6cbe-4d01-b1a2-e0eac5743d41\"},{\"properties\":{\"roleName\":\"Experimentation - Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Experimentation Contributor\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Experimentation/experimentWorkspaces/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/write\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/delete\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experiment/action\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/emergencystop/action\",\"Microsoft.Experimentation/experimentWorkspaces/read\",\"Microsoft.Experimentation/experimentWorkspaces/write\",\"Microsoft.Experimentation/experimentWorkspaces/delete\"],\"notDataActions\":[]}],\"createdOn\":\"2019-12-13T00:08:08.6679591Z\",\"updatedOn\":\"2021-11-11T20:14:14.6454147Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7f646f1b-fa08-80eb-a22b-edd6ce5c915c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7f646f1b-fa08-80eb-a22b-edd6ce5c915c\"},{\"properties\":{\"roleName\":\"Cognitive - Services QnA Maker Reader\",\"type\":\"BuiltInRole\",\"description\":\"Let\u2019s - you read and test a KB only.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/download/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/generateanswer/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/download/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/generateanswer/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/read\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/read\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/download/read\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/generateanswer/action\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/alterations/read\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointkeys/read\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointsettings/read\"],\"notDataActions\":[]}],\"createdOn\":\"2019-12-17T18:26:12.3329439Z\",\"updatedOn\":\"2021-11-11T20:14:14.8254033Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/466ccd10-b268-4a11-b098-b4849f024126\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"466ccd10-b268-4a11-b098-b4849f024126\"},{\"properties\":{\"roleName\":\"Cognitive - Services QnA Maker Editor\",\"type\":\"BuiltInRole\",\"description\":\"Let\u2019s - you create, edit, import and export a KB. You cannot publish or delete a KB.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/download/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/create/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/generateanswer/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/train/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/refreshkeys/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker/operations/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/download/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/create/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/generateanswer/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/train/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/refreshkeys/action\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/operations/read\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/read\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/download/read\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/create/write\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/write\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/generateanswer/action\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/train/action\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/alterations/read\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/alterations/write\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointkeys/read\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointkeys/refreshkeys/action\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointsettings/read\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointsettings/write\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/operations/read\"],\"notDataActions\":[]}],\"createdOn\":\"2019-12-17T18:27:30.6434556Z\",\"updatedOn\":\"2021-11-11T20:14:14.9961559Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f4cc2bf9-21be-47a1-bdf1-5c5804381025\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f4cc2bf9-21be-47a1-bdf1-5c5804381025\"},{\"properties\":{\"roleName\":\"Experimentation - Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Experimentation - Administrator\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Experimentation/experimentWorkspaces/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/admin/action\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/write\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/delete\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experimentadmin/action\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experiment/action\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/emergencystop/action\",\"Microsoft.Experimentation/experimentWorkspaces/read\",\"Microsoft.Experimentation/experimentWorkspaces/write\",\"Microsoft.Experimentation/experimentWorkspaces/delete\",\"Microsoft.Experimentation/experimentWorkspaces/admin/action\",\"Microsoft.Experimentation/experimentWorkspaces/metricwrite/action\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/metricwrite/action\"],\"notDataActions\":[]}],\"createdOn\":\"2019-12-18T22:46:33.1116612Z\",\"updatedOn\":\"2021-11-11T20:14:15.1811577Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7f646f1b-fa08-80eb-a33b-edd6ce5c915c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7f646f1b-fa08-80eb-a33b-edd6ce5c915c\"},{\"properties\":{\"roleName\":\"Remote - Rendering Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Provides - user with conversion, manage session, rendering and diagnostics capabilities - for Azure Remote Rendering\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/RemoteRenderingAccounts/convert/action\",\"Microsoft.MixedReality/RemoteRenderingAccounts/convert/read\",\"Microsoft.MixedReality/RemoteRenderingAccounts/convert/delete\",\"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/read\",\"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/action\",\"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/delete\",\"Microsoft.MixedReality/RemoteRenderingAccounts/render/read\",\"Microsoft.MixedReality/RemoteRenderingAccounts/diagnostic/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-01-23T18:15:31.3450348Z\",\"updatedOn\":\"2021-11-11T20:14:16.7621737Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3df8b902-2a6f-47c7-8cc5-360e9b272a7e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3df8b902-2a6f-47c7-8cc5-360e9b272a7e\"},{\"properties\":{\"roleName\":\"Remote - Rendering Client\",\"type\":\"BuiltInRole\",\"description\":\"Provides user - with manage session, rendering and diagnostics capabilities for Azure Remote - Rendering.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/read\",\"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/action\",\"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/delete\",\"Microsoft.MixedReality/RemoteRenderingAccounts/render/read\",\"Microsoft.MixedReality/RemoteRenderingAccounts/diagnostic/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-01-23T18:32:52.7069824Z\",\"updatedOn\":\"2021-11-11T20:14:16.9421512Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d39065c4-c120-43c9-ab0a-63eed9795f0a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d39065c4-c120-43c9-ab0a-63eed9795f0a\"},{\"properties\":{\"roleName\":\"Managed - Application Contributor Role\",\"type\":\"BuiltInRole\",\"description\":\"Allows - for creating managed application resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.Solutions/applications/*\",\"Microsoft.Solutions/register/action\",\"Microsoft.Resources/subscriptions/resourceGroups/*\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-08T03:39:11.8933879Z\",\"updatedOn\":\"2021-11-11T20:14:19.1271536Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/641177b8-a67a-45b9-a033-47bc880bb21e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"641177b8-a67a-45b9-a033-47bc880bb21e\"},{\"properties\":{\"roleName\":\"Security - Assessment Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - push assessments to Security Center\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Security/assessments/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-13T08:23:47.7656161Z\",\"updatedOn\":\"2021-11-11T20:14:19.3021974Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/612c2aa1-cb24-443b-ac28-3ab7272de6f5\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"612c2aa1-cb24-443b-ac28-3ab7272de6f5\"},{\"properties\":{\"roleName\":\"Tag - Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage tags - on entities, without providing access to the entities themselves.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\"Microsoft.Resources/subscriptions/resources/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\",\"Microsoft.Resources/tags/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-18T23:19:19.2977644Z\",\"updatedOn\":\"2021-11-11T20:14:20.0172041Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4a9ae827-6dc8-4573-8ac7-8239d42aa03f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4a9ae827-6dc8-4573-8ac7-8239d42aa03f\"},{\"properties\":{\"roleName\":\"Integration - Service Environment Developer\",\"type\":\"BuiltInRole\",\"description\":\"Allows - developers to create and update workflows, integration accounts and API connections - in integration service environments.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Support/*\",\"Microsoft.Logic/integrationServiceEnvironments/read\",\"Microsoft.Logic/integrationServiceEnvironments/*/join/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-20T21:09:00.5627875Z\",\"updatedOn\":\"2021-11-11T20:14:20.1871986Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c7aa55d3-1abb-444a-a5ca-5e51e485d6ec\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c7aa55d3-1abb-444a-a5ca-5e51e485d6ec\"},{\"properties\":{\"roleName\":\"Integration - Service Environment Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you manage integration service environments, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Support/*\",\"Microsoft.Logic/integrationServiceEnvironments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-20T21:10:44.4008319Z\",\"updatedOn\":\"2021-11-11T20:14:20.3622058Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a41e2c5b-bd99-4a07-88f4-9bf657a760b8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a41e2c5b-bd99-4a07-88f4-9bf657a760b8\"},{\"properties\":{\"roleName\":\"Azure - Kubernetes Service Contributor Role\",\"type\":\"BuiltInRole\",\"description\":\"Grants - access to read and write Azure Kubernetes Service clusters\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerService/managedClusters/read\",\"Microsoft.ContainerService/managedClusters/write\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-27T19:27:15.0739970Z\",\"updatedOn\":\"2021-11-11T20:14:21.2621727Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\"},{\"properties\":{\"roleName\":\"Azure - Digital Twins Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read-only - role for Digital Twins data-plane properties\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.DigitalTwins/digitaltwins/read\",\"Microsoft.DigitalTwins/digitaltwins/relationships/read\",\"Microsoft.DigitalTwins/eventroutes/read\",\"Microsoft.DigitalTwins/jobs/import/read\",\"Microsoft.DigitalTwins/models/read\",\"Microsoft.DigitalTwins/query/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-10T23:48:14.7057381Z\",\"updatedOn\":\"2022-09-08T02:43:56.8036813Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d57506d4-4c8d-48b1-8587-93c323f6a5a3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d57506d4-4c8d-48b1-8587-93c323f6a5a3\"},{\"properties\":{\"roleName\":\"Azure - Digital Twins Data Owner\",\"type\":\"BuiltInRole\",\"description\":\"Full - access role for Digital Twins data-plane\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.DigitalTwins/digitaltwins/*\",\"Microsoft.DigitalTwins/digitaltwins/commands/*\",\"Microsoft.DigitalTwins/digitaltwins/relationships/*\",\"Microsoft.DigitalTwins/eventroutes/*\",\"Microsoft.DigitalTwins/jobs/*\",\"Microsoft.DigitalTwins/models/*\",\"Microsoft.DigitalTwins/query/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-10T23:49:33.7821930Z\",\"updatedOn\":\"2022-09-07T23:56:38.8525330Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bcd981a7-7f74-457b-83e1-cceb9e632ffe\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bcd981a7-7f74-457b-83e1-cceb9e632ffe\"},{\"properties\":{\"roleName\":\"Hierarchy - Settings Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Allows - users to edit and delete Hierarchy Settings\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Management/managementGroups/settings/write\",\"Microsoft.Management/managementGroups/settings/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-03-13T23:55:11.0212387Z\",\"updatedOn\":\"2021-11-11T20:14:23.0882347Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/350f8d15-c687-4448-8ae1-157740a3936d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"350f8d15-c687-4448-8ae1-157740a3936d\"},{\"properties\":{\"roleName\":\"FHIR - Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Role allows - user or principal full access to FHIR Data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/*\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-17T18:35:04.4949547Z\",\"updatedOn\":\"2021-11-11T20:14:23.6235473Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5a1fc7df-4bf1-4951-a576-89034ee01acd\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5a1fc7df-4bf1-4951-a576-89034ee01acd\"},{\"properties\":{\"roleName\":\"FHIR - Data Exporter\",\"type\":\"BuiltInRole\",\"description\":\"Role allows user - or principal to read and export FHIR Data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/read\",\"Microsoft.HealthcareApis/services/fhir/resources/export/action\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/export/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-17T18:45:01.9764073Z\",\"updatedOn\":\"2021-11-11T20:14:23.7992557Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3db33094-8700-4567-8da5-1501d4e7e843\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3db33094-8700-4567-8da5-1501d4e7e843\"},{\"properties\":{\"roleName\":\"FHIR - Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Role allows user - or principal to read FHIR Data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/read\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-17T18:49:04.8353499Z\",\"updatedOn\":\"2021-11-11T20:14:23.9692275Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4c8d0bbc-75d3-4935-991f-5f3c56d81508\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4c8d0bbc-75d3-4935-991f-5f3c56d81508\"},{\"properties\":{\"roleName\":\"FHIR - Data Writer\",\"type\":\"BuiltInRole\",\"description\":\"Role allows user - or principal to read and write FHIR Data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/*\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/*\"],\"notDataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/hardDelete/action\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/hardDelete/action\"]}],\"createdOn\":\"2020-03-17T18:55:35.2413335Z\",\"updatedOn\":\"2021-11-11T20:14:24.1442783Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3f88fce4-5892-4214-ae73-ba5294559913\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3f88fce4-5892-4214-ae73-ba5294559913\"},{\"properties\":{\"roleName\":\"Experimentation - Reader\",\"type\":\"BuiltInRole\",\"description\":\"Experimentation Reader\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Experimentation/experimentWorkspaces/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Experimentation/experimentWorkspaces/read\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-03-25T18:05:14.8375678Z\",\"updatedOn\":\"2021-11-11T20:14:24.5042390Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/49632ef5-d9ac-41f4-b8e7-bbe587fa74a1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"49632ef5-d9ac-41f4-b8e7-bbe587fa74a1\"},{\"properties\":{\"roleName\":\"Object - Understanding Account Owner\",\"type\":\"BuiltInRole\",\"description\":\"Provides - user with ingestion capabilities for Azure Object Understanding.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/action\",\"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-04-22T19:15:09.0697923Z\",\"updatedOn\":\"2021-11-11T20:14:26.8743132Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4dd61c23-6743-42fe-a388-d8bdd41cb745\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4dd61c23-6743-42fe-a388-d8bdd41cb745\"},{\"properties\":{\"roleName\":\"Azure - Maps Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Grants - access to read, write, and delete access to map related data from an Azure - maps account.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Maps/accounts/*/read\",\"Microsoft.Maps/accounts/*/write\",\"Microsoft.Maps/accounts/*/delete\",\"Microsoft.Maps/accounts/*/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-07T20:55:05.0645410Z\",\"updatedOn\":\"2021-11-11T20:14:28.3092598Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8f5e0ce6-4f7b-4dcf-bddf-e6f48634a204\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8f5e0ce6-4f7b-4dcf-bddf-e6f48634a204\"},{\"properties\":{\"roleName\":\"Cognitive - Services Custom Vision Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Full - access to the project, including the ability to view, create, edit, or delete - projects.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-08T23:47:07.0779345Z\",\"updatedOn\":\"2021-11-11T20:14:28.8342655Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c1ff6cc2-c111-46fe-8896-e0ef812ad9f3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c1ff6cc2-c111-46fe-8896-e0ef812ad9f3\"},{\"properties\":{\"roleName\":\"Cognitive - Services Custom Vision Deployment\",\"type\":\"BuiltInRole\",\"description\":\"Publish, - unpublish or export models. Deployment can view the project but can\u2019t - update.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/*/read\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/*\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/iterations/publish/*\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/iterations/export/*\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/quicktest/*\",\"Microsoft.CognitiveServices/accounts/CustomVision/classify/*\",\"Microsoft.CognitiveServices/accounts/CustomVision/detect/*\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"]}],\"createdOn\":\"2020-05-09T01:31:05.9528620Z\",\"updatedOn\":\"2021-11-11T20:14:29.0142669Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5c4089e1-6d96-4d2f-b296-c1bc7137275f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5c4089e1-6d96-4d2f-b296-c1bc7137275f\"},{\"properties\":{\"roleName\":\"Cognitive - Services Custom Vision Labeler\",\"type\":\"BuiltInRole\",\"description\":\"View, - edit training images and create, add, remove, or delete the image tags. Labelers - can view the project but can\u2019t update anything other than training images - and tags.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/*/read\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/query/action\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/images/*\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/tags/*\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/images/suggested/*\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/tagsandregions/suggestions/action\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"]}],\"createdOn\":\"2020-05-09T01:33:20.8278896Z\",\"updatedOn\":\"2021-11-11T20:14:29.1892871Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/88424f51-ebe7-446f-bc41-7fa16989e96c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"88424f51-ebe7-446f-bc41-7fa16989e96c\"},{\"properties\":{\"roleName\":\"Cognitive - Services Custom Vision Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read-only - actions in the project. Readers can\u2019t create or update the project.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/*/read\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/query/action\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"]}],\"createdOn\":\"2020-05-09T01:34:18.5328818Z\",\"updatedOn\":\"2021-11-11T20:14:29.3642707Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/93586559-c37d-4a6b-ba08-b9f0940c2d73\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"93586559-c37d-4a6b-ba08-b9f0940c2d73\"},{\"properties\":{\"roleName\":\"Cognitive - Services Custom Vision Trainer\",\"type\":\"BuiltInRole\",\"description\":\"View, - edit projects and train the models, including the ability to publish, unpublish, - export the models. Trainers can\u2019t create or delete the project.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/*\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/projects/action\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/delete\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/import/action\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"]}],\"createdOn\":\"2020-05-09T01:35:13.8147804Z\",\"updatedOn\":\"2021-11-11T20:14:29.5442713Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0a5ae4ab-0d65-4eeb-be61-29fc9b54394b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0a5ae4ab-0d65-4eeb-be61-29fc9b54394b\"},{\"properties\":{\"roleName\":\"Key - Vault Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Perform all - data plane operations on a key vault and all objects in it, including certificates, - keys, and secrets. Cannot manage key vault resources or manage role assignments. - Only works for key vaults that use the 'Azure role-based access control' permission - model.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.KeyVault/checkNameAvailability/read\",\"Microsoft.KeyVault/deletedVaults/read\",\"Microsoft.KeyVault/locations/*/read\",\"Microsoft.KeyVault/vaults/*/read\",\"Microsoft.KeyVault/operations/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-19T17:52:46.2349235Z\",\"updatedOn\":\"2021-11-11T20:14:30.2542755Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"00482a5a-887f-4fb3-b363-3b7fe8e74483\"},{\"properties\":{\"roleName\":\"Key - Vault Crypto User\",\"type\":\"BuiltInRole\",\"description\":\"Perform cryptographic - operations using keys. Only works for key vaults that use the 'Azure role-based - access control' permission model.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/keys/read\",\"Microsoft.KeyVault/vaults/keys/update/action\",\"Microsoft.KeyVault/vaults/keys/backup/action\",\"Microsoft.KeyVault/vaults/keys/encrypt/action\",\"Microsoft.KeyVault/vaults/keys/decrypt/action\",\"Microsoft.KeyVault/vaults/keys/wrap/action\",\"Microsoft.KeyVault/vaults/keys/unwrap/action\",\"Microsoft.KeyVault/vaults/keys/sign/action\",\"Microsoft.KeyVault/vaults/keys/verify/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-19T17:52:47.0699268Z\",\"updatedOn\":\"2021-11-11T20:14:30.6042921Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/12338af0-0e69-4776-bea7-57ae8d297424\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"12338af0-0e69-4776-bea7-57ae8d297424\"},{\"properties\":{\"roleName\":\"Key - Vault Secrets Officer\",\"type\":\"BuiltInRole\",\"description\":\"Perform - any action on the secrets of a key vault, except manage permissions. Only - works for key vaults that use the 'Azure role-based access control' permission - model.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.KeyVault/checkNameAvailability/read\",\"Microsoft.KeyVault/deletedVaults/read\",\"Microsoft.KeyVault/locations/*/read\",\"Microsoft.KeyVault/vaults/*/read\",\"Microsoft.KeyVault/operations/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/secrets/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-19T17:52:47.1449242Z\",\"updatedOn\":\"2021-11-11T20:14:30.7793470Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b86a8fe4-44ce-4948-aee5-eccb2c155cd7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b86a8fe4-44ce-4948-aee5-eccb2c155cd7\"},{\"properties\":{\"roleName\":\"Key - Vault Secrets User\",\"type\":\"BuiltInRole\",\"description\":\"Read secret - contents. Only works for key vaults that use the 'Azure role-based access - control' permission model.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/secrets/getSecret/action\",\"Microsoft.KeyVault/vaults/secrets/readMetadata/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-19T17:52:47.2049241Z\",\"updatedOn\":\"2021-11-11T20:14:30.9542829Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4633458b-17de-408a-b874-0445c86b69e6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4633458b-17de-408a-b874-0445c86b69e6\"},{\"properties\":{\"roleName\":\"Key - Vault Certificates Officer\",\"type\":\"BuiltInRole\",\"description\":\"Perform - any action on the certificates of a key vault, except manage permissions. - Only works for key vaults that use the 'Azure role-based access control' permission - model.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.KeyVault/checkNameAvailability/read\",\"Microsoft.KeyVault/deletedVaults/read\",\"Microsoft.KeyVault/locations/*/read\",\"Microsoft.KeyVault/vaults/*/read\",\"Microsoft.KeyVault/operations/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/certificatecas/*\",\"Microsoft.KeyVault/vaults/certificates/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-19T17:52:47.2499247Z\",\"updatedOn\":\"2021-11-11T20:14:31.1292967Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a4417e6f-fecd-4de8-b567-7b0420556985\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a4417e6f-fecd-4de8-b567-7b0420556985\"},{\"properties\":{\"roleName\":\"Key - Vault Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read metadata of - key vaults and its certificates, keys, and secrets. Cannot read sensitive - values such as secret contents or key material. Only works for key vaults - that use the 'Azure role-based access control' permission model.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.KeyVault/checkNameAvailability/read\",\"Microsoft.KeyVault/deletedVaults/read\",\"Microsoft.KeyVault/locations/*/read\",\"Microsoft.KeyVault/vaults/*/read\",\"Microsoft.KeyVault/operations/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/*/read\",\"Microsoft.KeyVault/vaults/secrets/readMetadata/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-19T17:52:47.2949294Z\",\"updatedOn\":\"2021-11-11T20:14:31.3043292Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/21090545-7ca7-4776-b22c-e363652d74d2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"21090545-7ca7-4776-b22c-e363652d74d2\"},{\"properties\":{\"roleName\":\"Key - Vault Crypto Service Encryption User\",\"type\":\"BuiltInRole\",\"description\":\"Read - metadata of keys and perform wrap/unwrap operations. Only works for key vaults - that use the 'Azure role-based access control' permission model.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EventGrid/eventSubscriptions/write\",\"Microsoft.EventGrid/eventSubscriptions/read\",\"Microsoft.EventGrid/eventSubscriptions/delete\"],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/keys/read\",\"Microsoft.KeyVault/vaults/keys/wrap/action\",\"Microsoft.KeyVault/vaults/keys/unwrap/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-20T20:55:19.2398470Z\",\"updatedOn\":\"2021-11-11T20:14:31.8443056Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e147488a-f6f5-4113-8e2d-b22465e65bf6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e147488a-f6f5-4113-8e2d-b22465e65bf6\"},{\"properties\":{\"roleName\":\"Azure - Arc Kubernetes Viewer\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - view all resources in cluster/namespace, except secrets.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Kubernetes/connectedClusters/apps/controllerrevisions/read\",\"Microsoft.Kubernetes/connectedClusters/apps/daemonsets/read\",\"Microsoft.Kubernetes/connectedClusters/apps/deployments/read\",\"Microsoft.Kubernetes/connectedClusters/apps/replicasets/read\",\"Microsoft.Kubernetes/connectedClusters/apps/statefulsets/read\",\"Microsoft.Kubernetes/connectedClusters/autoscaling/horizontalpodautoscalers/read\",\"Microsoft.Kubernetes/connectedClusters/batch/cronjobs/read\",\"Microsoft.Kubernetes/connectedClusters/batch/jobs/read\",\"Microsoft.Kubernetes/connectedClusters/configmaps/read\",\"Microsoft.Kubernetes/connectedClusters/endpoints/read\",\"Microsoft.Kubernetes/connectedClusters/events.k8s.io/events/read\",\"Microsoft.Kubernetes/connectedClusters/events/read\",\"Microsoft.Kubernetes/connectedClusters/extensions/daemonsets/read\",\"Microsoft.Kubernetes/connectedClusters/extensions/deployments/read\",\"Microsoft.Kubernetes/connectedClusters/extensions/ingresses/read\",\"Microsoft.Kubernetes/connectedClusters/extensions/networkpolicies/read\",\"Microsoft.Kubernetes/connectedClusters/extensions/replicasets/read\",\"Microsoft.Kubernetes/connectedClusters/limitranges/read\",\"Microsoft.Kubernetes/connectedClusters/namespaces/read\",\"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/ingresses/read\",\"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/networkpolicies/read\",\"Microsoft.Kubernetes/connectedClusters/persistentvolumeclaims/read\",\"Microsoft.Kubernetes/connectedClusters/pods/read\",\"Microsoft.Kubernetes/connectedClusters/policy/poddisruptionbudgets/read\",\"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/read\",\"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/read\",\"Microsoft.Kubernetes/connectedClusters/resourcequotas/read\",\"Microsoft.Kubernetes/connectedClusters/serviceaccounts/read\",\"Microsoft.Kubernetes/connectedClusters/services/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-06-12T20:51:12.8801199Z\",\"updatedOn\":\"2021-11-11T20:14:33.8193353Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/63f0a09d-1495-4db4-a681-037d84835eb4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"63f0a09d-1495-4db4-a681-037d84835eb4\"},{\"properties\":{\"roleName\":\"Azure - Arc Kubernetes Writer\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - update everything in cluster/namespace, except (cluster)roles and (cluster)role - bindings.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Kubernetes/connectedClusters/apps/controllerrevisions/read\",\"Microsoft.Kubernetes/connectedClusters/apps/daemonsets/*\",\"Microsoft.Kubernetes/connectedClusters/apps/deployments/*\",\"Microsoft.Kubernetes/connectedClusters/apps/replicasets/*\",\"Microsoft.Kubernetes/connectedClusters/apps/statefulsets/*\",\"Microsoft.Kubernetes/connectedClusters/autoscaling/horizontalpodautoscalers/*\",\"Microsoft.Kubernetes/connectedClusters/batch/cronjobs/*\",\"Microsoft.Kubernetes/connectedClusters/batch/jobs/*\",\"Microsoft.Kubernetes/connectedClusters/configmaps/*\",\"Microsoft.Kubernetes/connectedClusters/endpoints/*\",\"Microsoft.Kubernetes/connectedClusters/events.k8s.io/events/read\",\"Microsoft.Kubernetes/connectedClusters/events/read\",\"Microsoft.Kubernetes/connectedClusters/extensions/daemonsets/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/deployments/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/ingresses/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/networkpolicies/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/replicasets/*\",\"Microsoft.Kubernetes/connectedClusters/limitranges/read\",\"Microsoft.Kubernetes/connectedClusters/namespaces/read\",\"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/ingresses/*\",\"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/networkpolicies/*\",\"Microsoft.Kubernetes/connectedClusters/persistentvolumeclaims/*\",\"Microsoft.Kubernetes/connectedClusters/pods/*\",\"Microsoft.Kubernetes/connectedClusters/policy/poddisruptionbudgets/*\",\"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/*\",\"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/*\",\"Microsoft.Kubernetes/connectedClusters/resourcequotas/read\",\"Microsoft.Kubernetes/connectedClusters/secrets/*\",\"Microsoft.Kubernetes/connectedClusters/serviceaccounts/*\",\"Microsoft.Kubernetes/connectedClusters/services/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-06-12T20:53:50.6749823Z\",\"updatedOn\":\"2021-11-11T20:14:34.0043462Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5b999177-9696-4545-85c7-50de3797e5a1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5b999177-9696-4545-85c7-50de3797e5a1\"},{\"properties\":{\"roleName\":\"Azure - Arc Kubernetes Cluster Admin\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you manage all resources in the cluster.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Kubernetes/connectedClusters/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-06-12T20:55:30.9910462Z\",\"updatedOn\":\"2021-11-11T20:14:34.1743694Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8393591c-06b9-48a2-a542-1bd6b377f6a2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8393591c-06b9-48a2-a542-1bd6b377f6a2\"},{\"properties\":{\"roleName\":\"Azure - Arc Kubernetes Admin\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - manage all resources under cluster/namespace, except update or delete resource - quotas and namespaces.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Kubernetes/connectedClusters/apps/controllerrevisions/read\",\"Microsoft.Kubernetes/connectedClusters/apps/daemonsets/*\",\"Microsoft.Kubernetes/connectedClusters/apps/deployments/*\",\"Microsoft.Kubernetes/connectedClusters/apps/replicasets/*\",\"Microsoft.Kubernetes/connectedClusters/apps/statefulsets/*\",\"Microsoft.Kubernetes/connectedClusters/authorization.k8s.io/localsubjectaccessreviews/write\",\"Microsoft.Kubernetes/connectedClusters/autoscaling/horizontalpodautoscalers/*\",\"Microsoft.Kubernetes/connectedClusters/batch/cronjobs/*\",\"Microsoft.Kubernetes/connectedClusters/batch/jobs/*\",\"Microsoft.Kubernetes/connectedClusters/configmaps/*\",\"Microsoft.Kubernetes/connectedClusters/endpoints/*\",\"Microsoft.Kubernetes/connectedClusters/events.k8s.io/events/read\",\"Microsoft.Kubernetes/connectedClusters/events/read\",\"Microsoft.Kubernetes/connectedClusters/extensions/daemonsets/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/deployments/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/ingresses/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/networkpolicies/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/replicasets/*\",\"Microsoft.Kubernetes/connectedClusters/limitranges/read\",\"Microsoft.Kubernetes/connectedClusters/namespaces/read\",\"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/ingresses/*\",\"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/networkpolicies/*\",\"Microsoft.Kubernetes/connectedClusters/persistentvolumeclaims/*\",\"Microsoft.Kubernetes/connectedClusters/pods/*\",\"Microsoft.Kubernetes/connectedClusters/policy/poddisruptionbudgets/*\",\"Microsoft.Kubernetes/connectedClusters/rbac.authorization.k8s.io/rolebindings/*\",\"Microsoft.Kubernetes/connectedClusters/rbac.authorization.k8s.io/roles/*\",\"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/*\",\"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/*\",\"Microsoft.Kubernetes/connectedClusters/resourcequotas/read\",\"Microsoft.Kubernetes/connectedClusters/secrets/*\",\"Microsoft.Kubernetes/connectedClusters/serviceaccounts/*\",\"Microsoft.Kubernetes/connectedClusters/services/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-06-12T20:57:06.0391177Z\",\"updatedOn\":\"2021-11-11T20:14:34.3593384Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/dffb1e0c-446f-4dde-a09f-99eb5cc68b96\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"dffb1e0c-446f-4dde-a09f-99eb5cc68b96\"},{\"properties\":{\"roleName\":\"Azure - Kubernetes Service RBAC Cluster Admin\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you manage all resources in the cluster.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/managedClusters/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-02T17:47:24.4071415Z\",\"updatedOn\":\"2022-10-13T01:31:35.5535817Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b\"},{\"properties\":{\"roleName\":\"Azure - Kubernetes Service RBAC Admin\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you manage all resources under cluster/namespace, except update or delete - resource quotas and namespaces.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/managedClusters/*\"],\"notDataActions\":[\"Microsoft.ContainerService/managedClusters/resourcequotas/write\",\"Microsoft.ContainerService/managedClusters/resourcequotas/delete\",\"Microsoft.ContainerService/managedClusters/namespaces/write\",\"Microsoft.ContainerService/managedClusters/namespaces/delete\"]}],\"createdOn\":\"2020-07-02T17:50:30.4020311Z\",\"updatedOn\":\"2022-10-13T01:31:35.2135503Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3498e952-d568-435e-9b2c-8d77e338d7f7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3498e952-d568-435e-9b2c-8d77e338d7f7\"},{\"properties\":{\"roleName\":\"Azure - Kubernetes Service RBAC Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows - read-only access to see most objects in a namespace. It does not allow viewing - roles or role bindings. This role does not allow viewing Secrets, since reading - the contents of Secrets enables access to ServiceAccount credentials in the - namespace, which would allow API access as any ServiceAccount in the namespace - (a form of privilege escalation). Applying this role at cluster scope will - give access across all namespaces.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/managedClusters/apps/controllerrevisions/read\",\"Microsoft.ContainerService/managedClusters/apps/daemonsets/read\",\"Microsoft.ContainerService/managedClusters/apps/deployments/read\",\"Microsoft.ContainerService/managedClusters/apps/replicasets/read\",\"Microsoft.ContainerService/managedClusters/apps/statefulsets/read\",\"Microsoft.ContainerService/managedClusters/autoscaling/horizontalpodautoscalers/read\",\"Microsoft.ContainerService/managedClusters/batch/cronjobs/read\",\"Microsoft.ContainerService/managedClusters/batch/jobs/read\",\"Microsoft.ContainerService/managedClusters/configmaps/read\",\"Microsoft.ContainerService/managedClusters/endpoints/read\",\"Microsoft.ContainerService/managedClusters/events.k8s.io/events/read\",\"Microsoft.ContainerService/managedClusters/events/read\",\"Microsoft.ContainerService/managedClusters/extensions/daemonsets/read\",\"Microsoft.ContainerService/managedClusters/extensions/deployments/read\",\"Microsoft.ContainerService/managedClusters/extensions/ingresses/read\",\"Microsoft.ContainerService/managedClusters/extensions/networkpolicies/read\",\"Microsoft.ContainerService/managedClusters/extensions/replicasets/read\",\"Microsoft.ContainerService/managedClusters/limitranges/read\",\"Microsoft.ContainerService/managedClusters/namespaces/read\",\"Microsoft.ContainerService/managedClusters/networking.k8s.io/ingresses/read\",\"Microsoft.ContainerService/managedClusters/networking.k8s.io/networkpolicies/read\",\"Microsoft.ContainerService/managedClusters/persistentvolumeclaims/read\",\"Microsoft.ContainerService/managedClusters/pods/read\",\"Microsoft.ContainerService/managedClusters/policy/poddisruptionbudgets/read\",\"Microsoft.ContainerService/managedClusters/replicationcontrollers/read\",\"Microsoft.ContainerService/managedClusters/replicationcontrollers/read\",\"Microsoft.ContainerService/managedClusters/resourcequotas/read\",\"Microsoft.ContainerService/managedClusters/serviceaccounts/read\",\"Microsoft.ContainerService/managedClusters/services/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-02T17:53:05.5728294Z\",\"updatedOn\":\"2022-10-13T01:31:35.2135503Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7f6c6a51-bcf8-42ba-9220-52d62157d7db\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7f6c6a51-bcf8-42ba-9220-52d62157d7db\"},{\"properties\":{\"roleName\":\"Azure - Kubernetes Service RBAC Writer\",\"type\":\"BuiltInRole\",\"description\":\"Allows - read/write access to most objects in a namespace.This role does not allow - viewing or modifying roles or role bindings. However, this role allows accessing - Secrets and running Pods as any ServiceAccount in the namespace, so it can - be used to gain the API access levels of any ServiceAccount in the namespace. - Applying this role at cluster scope will give access across all namespaces.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/managedClusters/apps/controllerrevisions/read\",\"Microsoft.ContainerService/managedClusters/apps/daemonsets/*\",\"Microsoft.ContainerService/managedClusters/apps/deployments/*\",\"Microsoft.ContainerService/managedClusters/apps/replicasets/*\",\"Microsoft.ContainerService/managedClusters/apps/statefulsets/*\",\"Microsoft.ContainerService/managedClusters/autoscaling/horizontalpodautoscalers/*\",\"Microsoft.ContainerService/managedClusters/batch/cronjobs/*\",\"Microsoft.ContainerService/managedClusters/batch/jobs/*\",\"Microsoft.ContainerService/managedClusters/configmaps/*\",\"Microsoft.ContainerService/managedClusters/endpoints/*\",\"Microsoft.ContainerService/managedClusters/events.k8s.io/events/read\",\"Microsoft.ContainerService/managedClusters/events/read\",\"Microsoft.ContainerService/managedClusters/extensions/daemonsets/*\",\"Microsoft.ContainerService/managedClusters/extensions/deployments/*\",\"Microsoft.ContainerService/managedClusters/extensions/ingresses/*\",\"Microsoft.ContainerService/managedClusters/extensions/networkpolicies/*\",\"Microsoft.ContainerService/managedClusters/extensions/replicasets/*\",\"Microsoft.ContainerService/managedClusters/limitranges/read\",\"Microsoft.ContainerService/managedClusters/namespaces/read\",\"Microsoft.ContainerService/managedClusters/networking.k8s.io/ingresses/*\",\"Microsoft.ContainerService/managedClusters/networking.k8s.io/networkpolicies/*\",\"Microsoft.ContainerService/managedClusters/persistentvolumeclaims/*\",\"Microsoft.ContainerService/managedClusters/pods/*\",\"Microsoft.ContainerService/managedClusters/policy/poddisruptionbudgets/*\",\"Microsoft.ContainerService/managedClusters/replicationcontrollers/*\",\"Microsoft.ContainerService/managedClusters/replicationcontrollers/*\",\"Microsoft.ContainerService/managedClusters/resourcequotas/read\",\"Microsoft.ContainerService/managedClusters/secrets/*\",\"Microsoft.ContainerService/managedClusters/serviceaccounts/*\",\"Microsoft.ContainerService/managedClusters/services/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-02T17:54:51.9644983Z\",\"updatedOn\":\"2022-10-13T01:31:35.2135503Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a7ffa36f-339b-4b5c-8bdf-e2c188b2c0eb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a7ffa36f-339b-4b5c-8bdf-e2c188b2c0eb\"},{\"properties\":{\"roleName\":\"Services - Hub Operator\",\"type\":\"BuiltInRole\",\"description\":\"Services Hub Operator - allows you to perform all read, write, and deletion operations related to - Services Hub Connectors.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.ServicesHub/connectors/write\",\"Microsoft.ServicesHub/connectors/read\",\"Microsoft.ServicesHub/connectors/delete\",\"Microsoft.ServicesHub/connectors/checkAssessmentEntitlement/action\",\"Microsoft.ServicesHub/supportOfferingEntitlement/read\",\"Microsoft.ServicesHub/workspaces/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-07-20T17:57:22.0644902Z\",\"updatedOn\":\"2021-11-11T20:14:37.5544021Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/82200a5b-e217-47a5-b665-6d8765ee745b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"82200a5b-e217-47a5-b665-6d8765ee745b\"},{\"properties\":{\"roleName\":\"Object - Understanding Account Reader\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you read ingestion jobs for an object understanding account.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-23T19:16:31.9929119Z\",\"updatedOn\":\"2021-11-11T20:14:37.9070085Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d18777c0-1514-4662-8490-608db7d334b6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d18777c0-1514-4662-8490-608db7d334b6\"},{\"properties\":{\"roleName\":\"SignalR - REST API Owner\",\"type\":\"BuiltInRole\",\"description\":\"Full access to - Azure SignalR Service REST APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SignalRService/SignalR/auth/clientToken/action\",\"Microsoft.SignalRService/SignalR/hub/send/action\",\"Microsoft.SignalRService/SignalR/group/send/action\",\"Microsoft.SignalRService/SignalR/group/read\",\"Microsoft.SignalRService/SignalR/group/write\",\"Microsoft.SignalRService/SignalR/clientConnection/send/action\",\"Microsoft.SignalRService/SignalR/clientConnection/read\",\"Microsoft.SignalRService/SignalR/clientConnection/write\",\"Microsoft.SignalRService/SignalR/user/send/action\",\"Microsoft.SignalRService/SignalR/user/read\",\"Microsoft.SignalRService/SignalR/user/write\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-29T09:35:32.2764751Z\",\"updatedOn\":\"2021-11-11T20:14:38.8028020Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd53cd77-2268-407a-8f46-7e7863d0f521\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fd53cd77-2268-407a-8f46-7e7863d0f521\"},{\"properties\":{\"roleName\":\"Collaborative - Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can manage data - packages of a collaborative.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.IndustryDataLifecycle/custodianCollaboratives/*/read\",\"Microsoft.IndustryDataLifecycle/memberCollaboratives/*/read\",\"Microsoft.IndustryDataLifecycle/locations/dataPackages/*\",\"Microsoft.IndustryDataLifecycle/custodianCollaboratives/receivedDataPackages/*\",\"Microsoft.IndustryDataLifecycle/custodianCollaboratives/rejectDataPackage/action\",\"Microsoft.IndustryDataLifecycle/memberCollaboratives/sharedDataPackages/*\",\"Microsoft.IndustryDataLifecycle/custodianCollaboratives/dataModels/*\",\"Microsoft.IndustryDataLifecycle/custodianCollaboratives/auditLogs/action\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-08-14T11:58:31.8973556Z\",\"updatedOn\":\"2021-11-11T20:14:40.2428145Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/daa9e50b-21df-454c-94a6-a8050adab352\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"daa9e50b-21df-454c-94a6-a8050adab352\"},{\"properties\":{\"roleName\":\"Device - Update Reader\",\"type\":\"BuiltInRole\",\"description\":\"Gives you read - access to management and content operations, but does not allow making changes\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.DeviceUpdate/accounts/instances/updates/read\",\"Microsoft.DeviceUpdate/accounts/instances/management/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-08-21T23:40:19.2373610Z\",\"updatedOn\":\"2021-11-11T20:14:40.7922672Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e9dba6fb-3d52-4cf0-bce3-f06ce71b9e0f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e9dba6fb-3d52-4cf0-bce3-f06ce71b9e0f\"},{\"properties\":{\"roleName\":\"Device - Update Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Gives you - full access to management and content operations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.DeviceUpdate/accounts/instances/updates/read\",\"Microsoft.DeviceUpdate/accounts/instances/updates/write\",\"Microsoft.DeviceUpdate/accounts/instances/updates/delete\",\"Microsoft.DeviceUpdate/accounts/instances/management/read\",\"Microsoft.DeviceUpdate/accounts/instances/management/write\",\"Microsoft.DeviceUpdate/accounts/instances/management/delete\"],\"notDataActions\":[]}],\"createdOn\":\"2020-08-21T23:56:22.3520510Z\",\"updatedOn\":\"2021-11-11T20:14:40.9672678Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/02ca0879-e8e4-47a5-a61e-5c618b76e64a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"02ca0879-e8e4-47a5-a61e-5c618b76e64a\"},{\"properties\":{\"roleName\":\"Device - Update Content Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Gives - you full access to content operations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.DeviceUpdate/accounts/instances/updates/read\",\"Microsoft.DeviceUpdate/accounts/instances/updates/write\",\"Microsoft.DeviceUpdate/accounts/instances/updates/delete\"],\"notDataActions\":[]}],\"createdOn\":\"2020-08-21T23:58:18.4255500Z\",\"updatedOn\":\"2021-11-11T20:14:41.1433368Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0378884a-3af5-44ab-8323-f5b22f9f3c98\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0378884a-3af5-44ab-8323-f5b22f9f3c98\"},{\"properties\":{\"roleName\":\"Device - Update Content Reader\",\"type\":\"BuiltInRole\",\"description\":\"Gives you - read access to content operations, but does not allow making changes\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.DeviceUpdate/accounts/instances/updates/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-08-22T00:02:43.3299181Z\",\"updatedOn\":\"2021-11-11T20:14:41.6754856Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d1ee9a80-8b14-47f0-bdc2-f4a351625a7b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d1ee9a80-8b14-47f0-bdc2-f4a351625a7b\"},{\"properties\":{\"roleName\":\"Cognitive - Services Metrics Advisor Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Full - access to the project, including the system level configuration.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/MetricsAdvisor/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-09-10T07:46:47.5804491Z\",\"updatedOn\":\"2021-11-11T20:14:43.6930781Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cb43c632-a144-4ec5-977c-e80c4affc34a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"cb43c632-a144-4ec5-977c-e80c4affc34a\"},{\"properties\":{\"roleName\":\"Cognitive - Services Metrics Advisor User\",\"type\":\"BuiltInRole\",\"description\":\"Access - to the project.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/MetricsAdvisor/*\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/MetricsAdvisor/stats/*\"]}],\"createdOn\":\"2020-09-10T07:47:59.6195639Z\",\"updatedOn\":\"2021-11-11T20:14:43.8780761Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3b20f47b-3825-43cb-8114-4bd2201156a8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3b20f47b-3825-43cb-8114-4bd2201156a8\"},{\"properties\":{\"roleName\":\"Schema - Registry Reader (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Read - and list Schema Registry groups and schemas.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EventHub/namespaces/schemagroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventHub/namespaces/schemas/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-09-13T06:31:38.0272740Z\",\"updatedOn\":\"2021-11-11T20:14:44.6350450Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2c56ea50-c6b3-40a6-83c0-9d98858bc7d2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2c56ea50-c6b3-40a6-83c0-9d98858bc7d2\"},{\"properties\":{\"roleName\":\"Schema - Registry Contributor (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Read, - write, and delete Schema Registry groups and schemas.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EventHub/namespaces/schemagroups/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventHub/namespaces/schemas/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-09-13T06:48:26.6032931Z\",\"updatedOn\":\"2021-11-11T20:14:44.8200370Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5dffeca3-4936-4216-b2bc-10343a5abb25\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5dffeca3-4936-4216-b2bc-10343a5abb25\"},{\"properties\":{\"roleName\":\"AgFood - Platform Service Reader\",\"type\":\"BuiltInRole\",\"description\":\"Provides - read access to AgFood Platform Service\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/*/list/action\",\"Microsoft.AgFoodPlatform/*/read\",\"Microsoft.AgFoodPlatform/*/search/action\",\"Microsoft.AgFoodPlatform/*/download/action\",\"Microsoft.AgFoodPlatform/*/overlap/action\",\"Microsoft.AgFoodPlatform/*/checkConsent/action\"],\"notDataActions\":[]}],\"createdOn\":\"2020-09-14T10:21:08.9138820Z\",\"updatedOn\":\"2022-12-13T16:08:52.9655626Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7ec7ccdc-f61e-41fe-9aaf-980df0a44eba\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7ec7ccdc-f61e-41fe-9aaf-980df0a44eba\"},{\"properties\":{\"roleName\":\"AgFood - Platform Service Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Provides - contribute access to AgFood Platform Service\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/*/action\",\"Microsoft.AgFoodPlatform/*/read\",\"Microsoft.AgFoodPlatform/*/write\"],\"notDataActions\":[\"Microsoft.AgFoodPlatform/farmBeats/farmers/write\",\"Microsoft.AgFoodPlatform/farmBeats/deletionJobs/*/write\",\"Microsoft.AgFoodPlatform/farmBeats/parties/write\"]}],\"createdOn\":\"2020-09-14T10:21:09.7239169Z\",\"updatedOn\":\"2023-01-23T16:15:02.3939333Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8508508a-4469-4e45-963b-2518ee0bb728\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8508508a-4469-4e45-963b-2518ee0bb728\"},{\"properties\":{\"roleName\":\"AgFood - Platform Service Admin\",\"type\":\"BuiltInRole\",\"description\":\"Provides - admin access to AgFood Platform Service\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-09-14T10:21:09.8039209Z\",\"updatedOn\":\"2021-11-11T20:14:45.3613128Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f8da80de-1ff9-4747-ad80-a19b7f6079e3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f8da80de-1ff9-4747-ad80-a19b7f6079e3\"},{\"properties\":{\"roleName\":\"Managed - HSM contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage - managed HSM pools, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.KeyVault/managedHSMs/*\",\"Microsoft.KeyVault/deletedManagedHsms/read\",\"Microsoft.KeyVault/locations/deletedManagedHsms/read\",\"Microsoft.KeyVault/locations/deletedManagedHsms/purge/action\",\"Microsoft.KeyVault/locations/managedHsmOperationResults/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-09-16T21:47:01.1291104Z\",\"updatedOn\":\"2022-03-08T00:35:44.4196909Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18500a29-7fe2-46b2-a342-b16a415e101d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"18500a29-7fe2-46b2-a342-b16a415e101d\"},{\"properties\":{\"roleName\":\"Security - Detonation Chamber Submitter\",\"type\":\"BuiltInRole\",\"description\":\"Allowed - to create submissions to Security Detonation Chamber\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SecurityDetonation/chambers/submissions/delete\",\"Microsoft.SecurityDetonation/chambers/submissions/write\",\"Microsoft.SecurityDetonation/chambers/submissions/read\",\"Microsoft.SecurityDetonation/chambers/submissions/files/read\",\"Microsoft.SecurityDetonation/chambers/submissions/accesskeyview/read\",\"Microsoft.SecurityDetonation/chambers/platforms/metadata/read\",\"Microsoft.SecurityDetonation/chambers/workflows/metadata/read\",\"Microsoft.SecurityDetonation/chambers/toolsets/metadata/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-10-01T08:55:21.3980274Z\",\"updatedOn\":\"2021-11-11T20:14:47.5471350Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0b555d9b-b4a7-4f43-b330-627f0e5be8f0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0b555d9b-b4a7-4f43-b330-627f0e5be8f0\"},{\"properties\":{\"roleName\":\"SignalR - REST API Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read-only access - to Azure SignalR Service REST APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SignalRService/SignalR/group/read\",\"Microsoft.SignalRService/SignalR/clientConnection/read\",\"Microsoft.SignalRService/SignalR/user/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-10-13T09:19:05.6463616Z\",\"updatedOn\":\"2021-11-11T20:14:48.7902970Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ddde6b66-c0df-4114-a159-3618637b3035\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ddde6b66-c0df-4114-a159-3618637b3035\"},{\"properties\":{\"roleName\":\"SignalR - Service Owner\",\"type\":\"BuiltInRole\",\"description\":\"Full access to - Azure SignalR Service REST APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SignalRService/SignalR/auth/accessKey/action\",\"Microsoft.SignalRService/SignalR/auth/clientToken/action\",\"Microsoft.SignalRService/SignalR/hub/send/action\",\"Microsoft.SignalRService/SignalR/group/send/action\",\"Microsoft.SignalRService/SignalR/group/read\",\"Microsoft.SignalRService/SignalR/group/write\",\"Microsoft.SignalRService/SignalR/clientConnection/send/action\",\"Microsoft.SignalRService/SignalR/clientConnection/read\",\"Microsoft.SignalRService/SignalR/clientConnection/write\",\"Microsoft.SignalRService/SignalR/serverConnection/write\",\"Microsoft.SignalRService/SignalR/user/send/action\",\"Microsoft.SignalRService/SignalR/user/read\",\"Microsoft.SignalRService/SignalR/user/write\",\"Microsoft.SignalRService/SignalR/livetrace/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-10-13T09:20:32.1501410Z\",\"updatedOn\":\"2022-09-15T06:33:12.0310035Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7e4f1700-ea5a-4f59-8f37-079cfe29dce3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7e4f1700-ea5a-4f59-8f37-079cfe29dce3\"},{\"properties\":{\"roleName\":\"Reservation - Purchaser\",\"type\":\"BuiltInRole\",\"description\":\"Lets you purchase reservations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Capacity/catalogs/read\",\"Microsoft.Capacity/register/action\",\"Microsoft.Compute/register/action\",\"Microsoft.Consumption/register/action\",\"Microsoft.Consumption/reservationRecommendationDetails/read\",\"Microsoft.Consumption/reservationRecommendations/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.SQL/register/action\",\"Microsoft.Support/supporttickets/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-10-23T20:22:48.9217751Z\",\"updatedOn\":\"2022-04-14T02:20:54.5414624Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f7b75c60-3036-4b75-91c3-6b41c27c1689\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f7b75c60-3036-4b75-91c3-6b41c27c1689\"},{\"properties\":{\"roleName\":\"AzureML - Metrics Writer (preview)\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you write metrics to AzureML workspace\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.MachineLearningServices/workspaces/metrics/*/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-10-27T16:55:19.5664950Z\",\"updatedOn\":\"2021-11-11T20:14:49.8655015Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/635dd51f-9968-44d3-b7fb-6d9a6bd613ae\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"635dd51f-9968-44d3-b7fb-6d9a6bd613ae\"},{\"properties\":{\"roleName\":\"Storage - Account Backup Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you perform backup and restore operations using Azure Backup on the storage - account.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Authorization/locks/read\",\"Microsoft.Authorization/locks/write\",\"Microsoft.Authorization/locks/delete\",\"Microsoft.Features/features/read\",\"Microsoft.Features/providers/features/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/operations/read\",\"Microsoft.Storage/storageAccounts/objectReplicationPolicies/delete\",\"Microsoft.Storage/storageAccounts/objectReplicationPolicies/read\",\"Microsoft.Storage/storageAccounts/objectReplicationPolicies/write\",\"Microsoft.Storage/storageAccounts/objectReplicationPolicies/restorePointMarkers/write\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\"Microsoft.Storage/storageAccounts/blobServices/read\",\"Microsoft.Storage/storageAccounts/blobServices/write\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/restoreBlobRanges/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-11-02T23:32:50.4203469Z\",\"updatedOn\":\"2022-04-20T05:50:13.0184092Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e5e2a7ff-d759-4cd2-bb51-3152d37e2eb1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e5e2a7ff-d759-4cd2-bb51-3152d37e2eb1\"},{\"properties\":{\"roleName\":\"Experimentation - Metric Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows for - creation, writes and reads to the metric set via the metrics service APIs.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Experimentation/experimentWorkspaces/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\",\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/metricwrite/action\",\"Microsoft.Experimentation/experimentWorkspaces/metricwrite/action\",\"Microsoft.Experimentation/experimentWorkspaces/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-11-10T20:07:53.7535885Z\",\"updatedOn\":\"2021-11-11T20:14:50.9524177Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6188b7c9-7d01-4f99-a59f-c88b630326c0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6188b7c9-7d01-4f99-a59f-c88b630326c0\"},{\"properties\":{\"roleName\":\"Project - Babylon Data Curator\",\"type\":\"BuiltInRole\",\"description\":\"The Microsoft.ProjectBabylon - data curator can create, read, modify and delete catalog data objects and - establish relationships between objects. This role is in preview and subject - to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ProjectBabylon/accounts/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ProjectBabylon/accounts/data/read\",\"Microsoft.ProjectBabylon/accounts/data/write\"],\"notDataActions\":[]}],\"createdOn\":\"2020-11-14T02:31:33.7988825Z\",\"updatedOn\":\"2021-11-11T20:14:51.4929515Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9ef4ef9c-a049-46b0-82ab-dd8ac094c889\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9ef4ef9c-a049-46b0-82ab-dd8ac094c889\"},{\"properties\":{\"roleName\":\"Project - Babylon Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"The Microsoft.ProjectBabylon - data reader can read catalog data objects. This role is in preview and subject - to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ProjectBabylon/accounts/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ProjectBabylon/accounts/data/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-11-14T02:33:13.5342351Z\",\"updatedOn\":\"2021-11-11T20:14:51.6729667Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c8d896ba-346d-4f50-bc1d-7d1c84130446\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c8d896ba-346d-4f50-bc1d-7d1c84130446\"},{\"properties\":{\"roleName\":\"Project - Babylon Data Source Administrator\",\"type\":\"BuiltInRole\",\"description\":\"The - Microsoft.ProjectBabylon data source administrator can manage data sources - and data scans. This role is in preview and subject to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ProjectBabylon/accounts/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ProjectBabylon/accounts/scan/read\",\"Microsoft.ProjectBabylon/accounts/scan/write\"],\"notDataActions\":[]}],\"createdOn\":\"2020-11-14T02:34:01.8401954Z\",\"updatedOn\":\"2021-11-11T20:14:51.8529643Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/05b7651b-dc44-475e-b74d-df3db49fae0f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"05b7651b-dc44-475e-b74d-df3db49fae0f\"},{\"properties\":{\"roleName\":\"Application - Group Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Contributor - of the Application Group.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/applicationgroups/*\",\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\"Microsoft.DesktopVirtualization/workspaces/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-03T23:26:00.2784962Z\",\"updatedOn\":\"2021-11-11T20:14:52.9432015Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ca6382a4-1721-4bcf-a114-ff0c70227b6b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ca6382a4-1721-4bcf-a114-ff0c70227b6b\"},{\"properties\":{\"roleName\":\"Desktop - Virtualization Reader\",\"type\":\"BuiltInRole\",\"description\":\"Reader - of Desktop Virtualization.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:36:19.0140629Z\",\"updatedOn\":\"2021-11-11T20:14:54.0407838Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/49a72310-ab8d-41df-bbb0-79b649203868\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"49a72310-ab8d-41df-bbb0-79b649203868\"},{\"properties\":{\"roleName\":\"Desktop - Virtualization Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Contributor - of Desktop Virtualization.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:37:16.2910337Z\",\"updatedOn\":\"2021-11-11T20:14:54.2107872Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/082f0a83-3be5-4ba1-904c-961cca79b387\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"082f0a83-3be5-4ba1-904c-961cca79b387\"},{\"properties\":{\"roleName\":\"Desktop - Virtualization Workspace Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Contributor - of the Desktop Virtualization Workspace.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/workspaces/*\",\"Microsoft.DesktopVirtualization/applicationgroups/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:38:29.6089216Z\",\"updatedOn\":\"2021-11-11T20:14:54.3907854Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/21efdde3-836f-432b-bf3d-3e8e734d4b2b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"21efdde3-836f-432b-bf3d-3e8e734d4b2b\"},{\"properties\":{\"roleName\":\"Desktop - Virtualization User Session Operator\",\"type\":\"BuiltInRole\",\"description\":\"Operator - of the Desktop Virtualization Uesr Session.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:39:16.9100273Z\",\"updatedOn\":\"2021-11-11T20:14:54.5657970Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ea4bfff8-7fb4-485a-aadd-d4129a0ffaa6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ea4bfff8-7fb4-485a-aadd-d4129a0ffaa6\"},{\"properties\":{\"roleName\":\"Desktop - Virtualization Session Host Operator\",\"type\":\"BuiltInRole\",\"description\":\"Operator - of the Desktop Virtualization Session Host.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:39:53.2569741Z\",\"updatedOn\":\"2021-11-11T20:14:54.7508042Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2ad6aaab-ead9-4eaa-8ac5-da422f562408\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2ad6aaab-ead9-4eaa-8ac5-da422f562408\"},{\"properties\":{\"roleName\":\"Desktop - Virtualization Host Pool Reader\",\"type\":\"BuiltInRole\",\"description\":\"Reader - of the Desktop Virtualization Host Pool.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/hostpools/*/read\",\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:40:33.1430834Z\",\"updatedOn\":\"2021-11-11T20:14:54.9257967Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ceadfde2-b300-400a-ab7b-6143895aa822\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ceadfde2-b300-400a-ab7b-6143895aa822\"},{\"properties\":{\"roleName\":\"Desktop - Virtualization Host Pool Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Contributor - of the Desktop Virtualization Host Pool.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/hostpools/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:40:57.2976187Z\",\"updatedOn\":\"2021-11-11T20:14:55.1057701Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e307426c-f9b6-4e81-87de-d99efb3c32bc\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e307426c-f9b6-4e81-87de-d99efb3c32bc\"},{\"properties\":{\"roleName\":\"Desktop - Virtualization Application Group Reader\",\"type\":\"BuiltInRole\",\"description\":\"Reader - of the Desktop Virtualization Application Group.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/applicationgroups/*/read\",\"Microsoft.DesktopVirtualization/applicationgroups/read\",\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:41:18.0287398Z\",\"updatedOn\":\"2021-11-11T20:14:55.2858006Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/aebf23d0-b568-4e86-b8f9-fe83a2c6ab55\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"aebf23d0-b568-4e86-b8f9-fe83a2c6ab55\"},{\"properties\":{\"roleName\":\"Desktop - Virtualization Application Group Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Contributor - of the Desktop Virtualization Application Group.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/applicationgroups/*\",\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:41:38.6205531Z\",\"updatedOn\":\"2021-11-11T20:14:55.4677136Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/86240b0e-9422-4c43-887b-b61143f32ba8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"86240b0e-9422-4c43-887b-b61143f32ba8\"},{\"properties\":{\"roleName\":\"Desktop - Virtualization Workspace Reader\",\"type\":\"BuiltInRole\",\"description\":\"Reader - of the Desktop Virtualization Workspace.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/workspaces/read\",\"Microsoft.DesktopVirtualization/applicationgroups/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:41:58.1892707Z\",\"updatedOn\":\"2021-11-11T20:14:55.6577168Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0fa44ee9-7a7d-466b-9bb2-2bf446b1204d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0fa44ee9-7a7d-466b-9bb2-2bf446b1204d\"},{\"properties\":{\"roleName\":\"Disk - Backup Reader\",\"type\":\"BuiltInRole\",\"description\":\"Provides permission - to backup vault to perform disk backup.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Compute/disks/read\",\"Microsoft.Compute/disks/beginGetAccess/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-15T07:39:03.8394514Z\",\"updatedOn\":\"2021-11-11T20:14:56.0178737Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3e5e47e6-65f7-47ef-90b5-e5dd4d455f24\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3e5e47e6-65f7-47ef-90b5-e5dd4d455f24\"},{\"properties\":{\"roleName\":\"Disk - Restore Operator\",\"type\":\"BuiltInRole\",\"description\":\"Provides permission - to backup vault to perform disk restore.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Compute/disks/write\",\"Microsoft.Compute/disks/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-15T12:18:31.8481619Z\",\"updatedOn\":\"2021-11-11T20:14:56.7408912Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b50d9833-a0cb-478e-945f-707fcc997c13\"},{\"properties\":{\"roleName\":\"Disk - Snapshot Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Provides - permission to backup vault to manage disk snapshots.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Compute/snapshots/delete\",\"Microsoft.Compute/snapshots/write\",\"Microsoft.Compute/snapshots/read\",\"Microsoft.Compute/snapshots/beginGetAccess/action\",\"Microsoft.Compute/snapshots/endGetAccess/action\",\"Microsoft.Compute/disks/beginGetAccess/action\",\"Microsoft.Storage/storageAccounts/listkeys/action\",\"Microsoft.Storage/storageAccounts/write\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-15T12:18:51.4471411Z\",\"updatedOn\":\"2021-11-11T20:14:56.9158814Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7efff54f-a5b4-42b5-a1c5-5411624893ce\"},{\"properties\":{\"roleName\":\"Microsoft.Kubernetes - connected cluster role\",\"type\":\"BuiltInRole\",\"description\":\"Microsoft.Kubernetes - connected cluster role.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Kubernetes/connectedClusters/read\",\"Microsoft.Kubernetes/connectedClusters/write\",\"Microsoft.Kubernetes/connectedClusters/delete\",\"Microsoft.Kubernetes/registeredSubscriptions/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-01-07T23:57:10.9923232Z\",\"updatedOn\":\"2021-11-11T20:14:58.2039838Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5548b2cf-c94c-4228-90ba-30851930a12f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5548b2cf-c94c-4228-90ba-30851930a12f\"},{\"properties\":{\"roleName\":\"Security - Detonation Chamber Submission Manager\",\"type\":\"BuiltInRole\",\"description\":\"Allowed - to create and manage submissions to Security Detonation Chamber\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SecurityDetonation/chambers/submissions/delete\",\"Microsoft.SecurityDetonation/chambers/submissions/write\",\"Microsoft.SecurityDetonation/chambers/submissions/read\",\"Microsoft.SecurityDetonation/chambers/submissions/files/read\",\"Microsoft.SecurityDetonation/chambers/submissions/accesskeyview/read\",\"Microsoft.SecurityDetonation/chambers/submissions/adminview/read\",\"Microsoft.SecurityDetonation/chambers/submissions/analystview/read\",\"Microsoft.SecurityDetonation/chambers/submissions/publicview/read\",\"Microsoft.SecurityDetonation/chambers/platforms/metadata/read\",\"Microsoft.SecurityDetonation/chambers/workflows/metadata/read\",\"Microsoft.SecurityDetonation/chambers/toolsets/metadata/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-01-18T09:35:36.5739297Z\",\"updatedOn\":\"2021-11-11T20:14:58.3939604Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a37b566d-3efa-4beb-a2f2-698963fa42ce\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a37b566d-3efa-4beb-a2f2-698963fa42ce\"},{\"properties\":{\"roleName\":\"Security - Detonation Chamber Publisher\",\"type\":\"BuiltInRole\",\"description\":\"Allowed - to publish and modify platforms, workflows and toolsets to Security Detonation - Chamber\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SecurityDetonation/chambers/platforms/read\",\"Microsoft.SecurityDetonation/chambers/platforms/write\",\"Microsoft.SecurityDetonation/chambers/platforms/delete\",\"Microsoft.SecurityDetonation/chambers/platforms/metadata/read\",\"Microsoft.SecurityDetonation/chambers/workflows/read\",\"Microsoft.SecurityDetonation/chambers/workflows/write\",\"Microsoft.SecurityDetonation/chambers/workflows/delete\",\"Microsoft.SecurityDetonation/chambers/workflows/metadata/read\",\"Microsoft.SecurityDetonation/chambers/toolsets/read\",\"Microsoft.SecurityDetonation/chambers/toolsets/write\",\"Microsoft.SecurityDetonation/chambers/toolsets/delete\",\"Microsoft.SecurityDetonation/chambers/toolsets/metadata/read\",\"Microsoft.SecurityDetonation/chambers/publishRequests/read\",\"Microsoft.SecurityDetonation/chambers/publishRequests/cancel/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-01-18T11:43:14.0858184Z\",\"updatedOn\":\"2021-11-11T20:14:58.5639749Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/352470b3-6a9c-4686-b503-35deb827e500\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"352470b3-6a9c-4686-b503-35deb827e500\"},{\"properties\":{\"roleName\":\"Collaborative - Runtime Operator\",\"type\":\"BuiltInRole\",\"description\":\"Can manage resources - created by AICS at runtime\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.IndustryDataLifecycle/derivedModels/*\",\"Microsoft.IndustryDataLifecycle/pipelineSets/*\",\"Microsoft.IndustryDataLifecycle/modelMappings/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-01-19T10:00:27.3464971Z\",\"updatedOn\":\"2021-11-11T20:14:58.7442136Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7a6f0e70-c033-4fb1-828c-08514e5f4102\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7a6f0e70-c033-4fb1-828c-08514e5f4102\"},{\"properties\":{\"roleName\":\"CosmosRestoreOperator\",\"type\":\"BuiltInRole\",\"description\":\"Can - perform restore action for Cosmos DB database account with continuous backup - mode\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restore/action\",\"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/*/read\",\"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-01-21T19:51:35.3884884Z\",\"updatedOn\":\"2021-11-11T20:14:59.4892686Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5432c526-bc82-444a-b7ba-57c5b0b5b34f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5432c526-bc82-444a-b7ba-57c5b0b5b34f\"},{\"properties\":{\"roleName\":\"FHIR - Data Converter\",\"type\":\"BuiltInRole\",\"description\":\"Role allows user - or principal to convert data from legacy format to FHIR\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/convertData/action\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/convertData/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-01-22T19:39:01.1601069Z\",\"updatedOn\":\"2021-11-11T20:14:59.8605937Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a1705bd2-3a8f-45a5-8683-466fcfd5cc24\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a1705bd2-3a8f-45a5-8683-466fcfd5cc24\"},{\"properties\":{\"roleName\":\"Quota - Request Operator\",\"type\":\"BuiltInRole\",\"description\":\"Read and create - quota requests, get quota request status, and create support tickets.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Capacity/resourceProviders/locations/serviceLimits/read\",\"Microsoft.Capacity/resourceProviders/locations/serviceLimits/write\",\"Microsoft.Capacity/resourceProviders/locations/serviceLimitsRequests/read\",\"Microsoft.Capacity/register/action\",\"Microsoft.Quota/usages/read\",\"Microsoft.Quota/quotas/read\",\"Microsoft.Quota/quotas/write\",\"Microsoft.Quota/quotaRequests/read\",\"Microsoft.Quota/register/action\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-02-03T00:06:35.8404575Z\",\"updatedOn\":\"2022-12-07T21:46:59.0116853Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0e5f05e5-9ab9-446b-b98d-1e2157c94125\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0e5f05e5-9ab9-446b-b98d-1e2157c94125\"},{\"properties\":{\"roleName\":\"EventGrid - Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage EventGrid - operations.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.EventGrid/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-02-08T18:46:18.8999557Z\",\"updatedOn\":\"2021-11-11T20:15:01.6867802Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1e241071-0855-49ea-94dc-649edcd759de\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1e241071-0855-49ea-94dc-649edcd759de\"},{\"properties\":{\"roleName\":\"Security - Detonation Chamber Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allowed - to query submission info and files from Security Detonation Chamber\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SecurityDetonation/chambers/submissions/read\",\"Microsoft.SecurityDetonation/chambers/submissions/files/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-03-01T14:06:46.2814905Z\",\"updatedOn\":\"2021-11-11T20:15:03.3274090Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/28241645-39f8-410b-ad48-87863e2951d5\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"28241645-39f8-410b-ad48-87863e2951d5\"},{\"properties\":{\"roleName\":\"Object - Anchors Account Reader\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - read ingestion jobs for an object anchors account.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/ObjectAnchorsAccounts/ingest/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-03-02T01:20:47.0279813Z\",\"updatedOn\":\"2021-11-11T20:15:03.5006082Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4a167cdf-cb95-4554-9203-2347fe489bd9\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4a167cdf-cb95-4554-9203-2347fe489bd9\"},{\"properties\":{\"roleName\":\"Object - Anchors Account Owner\",\"type\":\"BuiltInRole\",\"description\":\"Provides - user with ingestion capabilities for an object anchors account.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/ObjectAnchorsAccounts/ingest/action\",\"Microsoft.MixedReality/ObjectAnchorsAccounts/ingest/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-03-02T01:42:02.0014737Z\",\"updatedOn\":\"2021-11-11T20:15:03.6855873Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ca0835dd-bacc-42dd-8ed2-ed5e7230d15b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ca0835dd-bacc-42dd-8ed2-ed5e7230d15b\"},{\"properties\":{\"roleName\":\"WorkloadBuilder - Migration Agent Role\",\"type\":\"BuiltInRole\",\"description\":\"WorkloadBuilder - Migration Agent Role.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.WorkloadBuilder/migrationAgents/Read\",\"Microsoft.WorkloadBuilder/migrationAgents/Write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-03-11T17:07:20.0828003Z\",\"updatedOn\":\"2021-11-11T20:15:04.2456706Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d17ce0a2-0697-43bc-aac5-9113337ab61c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d17ce0a2-0697-43bc-aac5-9113337ab61c\"},{\"properties\":{\"roleName\":\"Azure - Spring Cloud Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allow - read access to Azure Spring Cloud Data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/*/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-03-25T11:12:12.6786010Z\",\"updatedOn\":\"2021-11-11T20:15:05.3368606Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b5537268-8956-4941-a8f0-646150406f0c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b5537268-8956-4941-a8f0-646150406f0c\"},{\"properties\":{\"roleName\":\"Cognitive - Services Speech Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Full - access to Speech projects, including read, write and delete all entities, - for real-time speech recognition and batch transcription tasks, real-time - speech synthesis and long audio tasks, custom speech and custom voice.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/SpeechServices/*\",\"Microsoft.CognitiveServices/accounts/CustomVoice/*\",\"Microsoft.CognitiveServices/accounts/AudioContentCreation/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-03-30T11:28:49.7826633Z\",\"updatedOn\":\"2022-05-23T17:10:38.8979809Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0e75ca1e-0464-4b4d-8b93-68208a576181\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0e75ca1e-0464-4b4d-8b93-68208a576181\"},{\"properties\":{\"roleName\":\"Cognitive - Services Face Recognizer\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you perform detect, verify, identify, group, and find similar operations on - Face API. This role does not allow create or delete operations, which makes - it well suited for endpoints that only need inferencing capabilities, following - 'least privilege' best practices.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/Face/detect/action\",\"Microsoft.CognitiveServices/accounts/Face/verify/action\",\"Microsoft.CognitiveServices/accounts/Face/identify/action\",\"Microsoft.CognitiveServices/accounts/Face/group/action\",\"Microsoft.CognitiveServices/accounts/Face/findsimilars/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-03-31T01:51:41.3557295Z\",\"updatedOn\":\"2021-11-11T20:15:05.8818362Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9894cab4-e18a-44aa-828b-cb588cd6f2d7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9894cab4-e18a-44aa-828b-cb588cd6f2d7\"},{\"properties\":{\"roleName\":\"Media - Services Account Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Create, - read, modify, and delete Media Services accounts; read-only access to other - Media Services resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Media/mediaservices/*/read\",\"Microsoft.Media/mediaservices/assets/listStreamingLocators/action\",\"Microsoft.Media/mediaservices/streamingLocators/listPaths/action\",\"Microsoft.Media/mediaservices/write\",\"Microsoft.Media/mediaservices/delete\",\"Microsoft.Media/mediaservices/privateEndpointConnectionsApproval/action\",\"Microsoft.Media/mediaservices/privateEndpointConnections/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-04-19T23:20:32.2956636Z\",\"updatedOn\":\"2021-11-11T20:15:07.1518844Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/054126f8-9a2b-4f1c-a9ad-eca461f08466\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"054126f8-9a2b-4f1c-a9ad-eca461f08466\"},{\"properties\":{\"roleName\":\"Media - Services Live Events Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Create, - read, modify, and delete Live Events, Assets, Asset Filters, and Streaming - Locators; read-only access to other Media Services resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Media/mediaservices/*/read\",\"Microsoft.Media/mediaservices/assets/*\",\"Microsoft.Media/mediaservices/assets/assetfilters/*\",\"Microsoft.Media/mediaservices/streamingLocators/*\",\"Microsoft.Media/mediaservices/liveEvents/*\"],\"notActions\":[\"Microsoft.Media/mediaservices/assets/getEncryptionKey/action\",\"Microsoft.Media/mediaservices/streamingLocators/listContentKeys/action\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-04-19T23:21:00.6119555Z\",\"updatedOn\":\"2021-11-11T20:15:07.3318873Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/532bc159-b25e-42c0-969e-a1d439f60d77\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"532bc159-b25e-42c0-969e-a1d439f60d77\"},{\"properties\":{\"roleName\":\"Media - Services Media Operator\",\"type\":\"BuiltInRole\",\"description\":\"Create, - read, modify, and delete Assets, Asset Filters, Streaming Locators, and Jobs; - read-only access to other Media Services resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Media/mediaservices/*/read\",\"Microsoft.Media/mediaservices/assets/*\",\"Microsoft.Media/mediaservices/assets/assetfilters/*\",\"Microsoft.Media/mediaservices/streamingLocators/*\",\"Microsoft.Media/mediaservices/transforms/jobs/*\"],\"notActions\":[\"Microsoft.Media/mediaservices/assets/getEncryptionKey/action\",\"Microsoft.Media/mediaservices/streamingLocators/listContentKeys/action\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-04-19T23:21:23.2236495Z\",\"updatedOn\":\"2021-11-11T20:15:07.5068487Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e4395492-1534-4db2-bedf-88c14621589c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e4395492-1534-4db2-bedf-88c14621589c\"},{\"properties\":{\"roleName\":\"Media - Services Policy Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Create, - read, modify, and delete Account Filters, Streaming Policies, Content Key - Policies, and Transforms; read-only access to other Media Services resources. - Cannot create Jobs, Assets or Streaming resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Media/mediaservices/*/read\",\"Microsoft.Media/mediaservices/assets/listStreamingLocators/action\",\"Microsoft.Media/mediaservices/streamingLocators/listPaths/action\",\"Microsoft.Media/mediaservices/accountFilters/*\",\"Microsoft.Media/mediaservices/streamingPolicies/*\",\"Microsoft.Media/mediaservices/contentKeyPolicies/*\",\"Microsoft.Media/mediaservices/transforms/*\"],\"notActions\":[\"Microsoft.Media/mediaservices/contentKeyPolicies/getPolicyPropertiesWithSecrets/action\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-04-19T23:21:46.9534330Z\",\"updatedOn\":\"2021-11-11T20:15:07.6968496Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c4bba371-dacd-4a26-b320-7250bca963ae\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c4bba371-dacd-4a26-b320-7250bca963ae\"},{\"properties\":{\"roleName\":\"Media - Services Streaming Endpoints Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Create, - read, modify, and delete Streaming Endpoints; read-only access to other Media - Services resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Media/mediaservices/*/read\",\"Microsoft.Media/mediaservices/assets/listStreamingLocators/action\",\"Microsoft.Media/mediaservices/streamingLocators/listPaths/action\",\"Microsoft.Media/mediaservices/streamingEndpoints/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-04-19T23:22:04.4594851Z\",\"updatedOn\":\"2021-11-11T20:15:07.8718907Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/99dba123-b5fe-44d5-874c-ced7199a5804\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"99dba123-b5fe-44d5-874c-ced7199a5804\"},{\"properties\":{\"roleName\":\"Stream - Analytics Query Tester\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - perform query testing without creating a stream analytics job first\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.StreamAnalytics/locations/TestQuery/action\",\"Microsoft.StreamAnalytics/locations/OperationResults/read\",\"Microsoft.StreamAnalytics/locations/SampleInput/action\",\"Microsoft.StreamAnalytics/locations/CompileQuery/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-04-20T17:33:24.5727870Z\",\"updatedOn\":\"2021-11-11T20:15:08.0481551Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1ec5b3c1-b17e-4e25-8312-2acb3c3c5abf\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1ec5b3c1-b17e-4e25-8312-2acb3c3c5abf\"},{\"properties\":{\"roleName\":\"AnyBuild - Builder\",\"type\":\"BuiltInRole\",\"description\":\"Basic user role for AnyBuild. - This role allows listing of agent information and execution of remote build - capabilities.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AnyBuild/clusters/build/write\",\"Microsoft.AnyBuild/clusters/build/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-04-20T22:07:00.4963853Z\",\"updatedOn\":\"2021-11-11T20:15:08.4254134Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a2138dac-4907-4679-a376-736901ed8ad8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a2138dac-4907-4679-a376-736901ed8ad8\"},{\"properties\":{\"roleName\":\"IoT - Hub Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows for full - read access to IoT Hub data-plane properties\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Devices/IotHubs/*/read\",\"Microsoft.Devices/IotHubs/fileUpload/notifications/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-04-22T18:03:29.8843192Z\",\"updatedOn\":\"2021-11-11T20:15:08.6054154Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b447c946-2db7-41ec-983d-d8bf3b1c77e3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b447c946-2db7-41ec-983d-d8bf3b1c77e3\"},{\"properties\":{\"roleName\":\"IoT - Hub Twin Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows for - read and write access to all IoT Hub device and module twins.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Devices/IotHubs/twins/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-04-22T20:36:10.1136903Z\",\"updatedOn\":\"2021-11-11T20:15:08.7855063Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/494bdba2-168f-4f31-a0a1-191d2f7c028c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"494bdba2-168f-4f31-a0a1-191d2f7c028c\"},{\"properties\":{\"roleName\":\"IoT - Hub Registry Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows - for full access to IoT Hub device registry.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Devices/IotHubs/devices/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-04-22T20:36:47.5532704Z\",\"updatedOn\":\"2021-11-11T20:15:08.9804295Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4ea46cd5-c1b2-4a8e-910b-273211f9ce47\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4ea46cd5-c1b2-4a8e-910b-273211f9ce47\"},{\"properties\":{\"roleName\":\"IoT - Hub Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows for - full access to IoT Hub data plane operations.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Devices/IotHubs/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-04-22T20:37:16.9927761Z\",\"updatedOn\":\"2021-11-11T20:15:09.1754206Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4fc6c259-987e-4a07-842e-c321cc9d413f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4fc6c259-987e-4a07-842e-c321cc9d413f\"},{\"properties\":{\"roleName\":\"Test - Base Reader\",\"type\":\"BuiltInRole\",\"description\":\"Let you view and - download packages and test results.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.TestBase/testBaseAccounts/packages/testResults/getDownloadUrl/action\",\"Microsoft.TestBase/testBaseAccounts/packages/testResults/getVideoDownloadUrl/action\",\"Microsoft.TestBase/testBaseAccounts/packages/getDownloadUrl/action\",\"Microsoft.TestBase/*/read\",\"Microsoft.TestBase/testBaseAccounts/customerEvents/write\",\"Microsoft.TestBase/testBaseAccounts/customerEvents/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-05-11T23:41:33.1038367Z\",\"updatedOn\":\"2021-11-11T20:15:10.8004347Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/15e0f5a1-3450-4248-8e25-e2afe88a9e85\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"15e0f5a1-3450-4248-8e25-e2afe88a9e85\"},{\"properties\":{\"roleName\":\"Search - Index Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Grants read - access to Azure Cognitive Search index data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Search/searchServices/indexes/documents/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-06-01T20:26:13.4850461Z\",\"updatedOn\":\"2021-11-11T20:15:11.3604371Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1407120a-92aa-4202-b7e9-c0e197c71c8f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1407120a-92aa-4202-b7e9-c0e197c71c8f\"},{\"properties\":{\"roleName\":\"Search - Index Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Grants - full access to Azure Cognitive Search index data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Search/searchServices/indexes/documents/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-06-01T22:15:16.5388472Z\",\"updatedOn\":\"2021-11-11T20:15:11.5504385Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8ebe5a00-799e-43f5-93ac-243d3dce84a7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8ebe5a00-799e-43f5-93ac-243d3dce84a7\"},{\"properties\":{\"roleName\":\"Storage - Table Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows for - read access to Azure Storage tables and entities\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/tableServices/tables/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/tableServices/tables/entities/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-06-15T06:40:54.9150717Z\",\"updatedOn\":\"2021-11-11T20:15:12.1005298Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/76199698-9eea-4c19-bc75-cec21354c6b6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"76199698-9eea-4c19-bc75-cec21354c6b6\"},{\"properties\":{\"roleName\":\"Storage - Table Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows - for read, write and delete access to Azure Storage tables and entities\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/tableServices/tables/read\",\"Microsoft.Storage/storageAccounts/tableServices/tables/write\",\"Microsoft.Storage/storageAccounts/tableServices/tables/delete\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/tableServices/tables/entities/read\",\"Microsoft.Storage/storageAccounts/tableServices/tables/entities/write\",\"Microsoft.Storage/storageAccounts/tableServices/tables/entities/delete\",\"Microsoft.Storage/storageAccounts/tableServices/tables/entities/add/action\",\"Microsoft.Storage/storageAccounts/tableServices/tables/entities/update/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-06-15T06:51:59.8207610Z\",\"updatedOn\":\"2021-11-11T20:15:12.2854966Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3\"},{\"properties\":{\"roleName\":\"DICOM - Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Read and search DICOM - data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthcareApis/workspaces/dicomservices/resources/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-06-17T20:58:30.1630494Z\",\"updatedOn\":\"2021-11-11T20:15:13.0154948Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e89c7a3c-2f64-4fa1-a847-3e4c9ba4283a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e89c7a3c-2f64-4fa1-a847-3e4c9ba4283a\"},{\"properties\":{\"roleName\":\"DICOM - Data Owner\",\"type\":\"BuiltInRole\",\"description\":\"Full access to DICOM - data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthcareApis/workspaces/dicomservices/resources/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-06-17T20:59:30.8659515Z\",\"updatedOn\":\"2021-11-11T20:15:13.1904985Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/58a3b984-7adf-4c20-983a-32417c86fbc8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"58a3b984-7adf-4c20-983a-32417c86fbc8\"},{\"properties\":{\"roleName\":\"EventGrid - Data Sender\",\"type\":\"BuiltInRole\",\"description\":\"Allows send access - to event grid events.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.EventGrid/topics/read\",\"Microsoft.EventGrid/domains/read\",\"Microsoft.EventGrid/partnerNamespaces/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventGrid/events/send/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-07-02T21:55:40.4847495Z\",\"updatedOn\":\"2021-11-11T20:15:13.5605134Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d5a91429-5739-47e2-a06b-3470a27159e7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d5a91429-5739-47e2-a06b-3470a27159e7\"},{\"properties\":{\"roleName\":\"Disk - Pool Operator\",\"type\":\"BuiltInRole\",\"description\":\"Used by the StoragePool - Resource Provider to manage Disks added to a Disk Pool.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/disks/write\",\"Microsoft.Compute/disks/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-07-08T17:26:05.1079972Z\",\"updatedOn\":\"2021-11-11T20:15:13.9154612Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/60fc6e62-5479-42d4-8bf4-67625fcc2840\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"60fc6e62-5479-42d4-8bf4-67625fcc2840\"},{\"properties\":{\"roleName\":\"AzureML - Data Scientist\",\"type\":\"BuiltInRole\",\"description\":\"Can perform all - actions within an Azure Machine Learning workspace, except for creating or - deleting compute resources and modifying the workspace itself.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.MachineLearningServices/workspaces/*/read\",\"Microsoft.MachineLearningServices/workspaces/*/action\",\"Microsoft.MachineLearningServices/workspaces/*/delete\",\"Microsoft.MachineLearningServices/workspaces/*/write\",\"Microsoft.MachineLearningServices/featurestores/read\",\"Microsoft.MachineLearningServices/featurestores/checkNameAvailability/read\"],\"notActions\":[\"Microsoft.MachineLearningServices/workspaces/delete\",\"Microsoft.MachineLearningServices/workspaces/write\",\"Microsoft.MachineLearningServices/workspaces/computes/*/write\",\"Microsoft.MachineLearningServices/workspaces/computes/*/delete\",\"Microsoft.MachineLearningServices/workspaces/computes/listKeys/action\",\"Microsoft.MachineLearningServices/workspaces/listKeys/action\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-07-14T21:51:06.0361218Z\",\"updatedOn\":\"2023-03-13T15:13:22.9170402Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f6c7c914-8db3-469d-8ca1-694a8f32e121\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f6c7c914-8db3-469d-8ca1-694a8f32e121\"},{\"properties\":{\"roleName\":\"Grafana - Admin\",\"type\":\"BuiltInRole\",\"description\":\"Built-in Grafana admin - role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Dashboard/grafana/ActAsGrafanaAdmin/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-07-15T21:32:35.3802340Z\",\"updatedOn\":\"2021-11-11T20:15:14.8104670Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"22926164-76b3-42b3-bc55-97df8dab3e41\"},{\"properties\":{\"roleName\":\"Azure - Connected SQL Server Onboarding\",\"type\":\"BuiltInRole\",\"description\":\"Microsoft.AzureArcData\_service\_role\_to\_access\_the\_resources\_of\_Microsoft.AzureArcData\_stored\_with\_RPSAAS.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AzureArcData/sqlServerInstances/read\",\"Microsoft.AzureArcData/sqlServerInstances/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-07-19T23:52:15.8885739Z\",\"updatedOn\":\"2021-11-11T20:15:15.1754742Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e8113dce-c529-4d33-91fa-e9b972617508\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e8113dce-c529-4d33-91fa-e9b972617508\"},{\"properties\":{\"roleName\":\"Azure - Relay Sender\",\"type\":\"BuiltInRole\",\"description\":\"Allows for send - access to Azure Relay resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Relay/*/wcfRelays/read\",\"Microsoft.Relay/*/hybridConnections/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Relay/*/send/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-07-20T15:37:20.7558643Z\",\"updatedOn\":\"2021-11-11T20:15:15.5454755Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/26baccc8-eea7-41f1-98f4-1762cc7f685d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"26baccc8-eea7-41f1-98f4-1762cc7f685d\"},{\"properties\":{\"roleName\":\"Azure - Relay Owner\",\"type\":\"BuiltInRole\",\"description\":\"Allows for full access - to Azure Relay resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Relay/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Relay/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-07-20T15:44:26.3023126Z\",\"updatedOn\":\"2021-11-11T20:15:15.7154782Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2787bf04-f1f5-4bfe-8383-c8a24483ee38\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2787bf04-f1f5-4bfe-8383-c8a24483ee38\"},{\"properties\":{\"roleName\":\"Azure - Relay Listener\",\"type\":\"BuiltInRole\",\"description\":\"Allows for listen - access to Azure Relay resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Relay/*/wcfRelays/read\",\"Microsoft.Relay/*/hybridConnections/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Relay/*/listen/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-07-20T18:38:03.1437496Z\",\"updatedOn\":\"2021-11-11T20:15:15.9005232Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/26e0b698-aa6d-4085-9386-aadae190014d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"26e0b698-aa6d-4085-9386-aadae190014d\"},{\"properties\":{\"roleName\":\"Grafana - Viewer\",\"type\":\"BuiltInRole\",\"description\":\"Built-in Grafana Viewer - role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Dashboard/grafana/ActAsGrafanaViewer/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-08-05T16:36:18.7737511Z\",\"updatedOn\":\"2021-11-11T20:15:16.9904932Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/60921a7e-fef1-4a43-9b16-a26c52ad4769\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"60921a7e-fef1-4a43-9b16-a26c52ad4769\"},{\"properties\":{\"roleName\":\"Grafana - Editor\",\"type\":\"BuiltInRole\",\"description\":\"Built-in Grafana Editor - role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Dashboard/grafana/ActAsGrafanaEditor/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-08-05T16:37:32.5299593Z\",\"updatedOn\":\"2021-11-11T20:15:17.1805426Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a79a5197-3a5c-4973-a920-486035ffd60f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a79a5197-3a5c-4973-a920-486035ffd60f\"},{\"properties\":{\"roleName\":\"Automation - Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Manage azure automation - resources and other resources using azure automation.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Automation/automationAccounts/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Insights/ActionGroups/*\",\"Microsoft.Insights/ActivityLogAlerts/*\",\"Microsoft.Insights/MetricAlerts/*\",\"Microsoft.Insights/ScheduledQueryRules/*\",\"Microsoft.Insights/diagnosticSettings/*\",\"Microsoft.OperationalInsights/workspaces/sharedKeys/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-08-09T10:18:19.1054699Z\",\"updatedOn\":\"2021-11-11T20:15:17.7304954Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f353d9bd-d4a6-484e-a77a-8050b599b867\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f353d9bd-d4a6-484e-a77a-8050b599b867\"},{\"properties\":{\"roleName\":\"Kubernetes - Extension Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can create, - update, get, list and delete Kubernetes Extensions, and get extension async - operations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.KubernetesConfiguration/extensions/write\",\"Microsoft.KubernetesConfiguration/extensions/read\",\"Microsoft.KubernetesConfiguration/extensions/delete\",\"Microsoft.KubernetesConfiguration/extensions/operations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-08-09T19:47:50.6828896Z\",\"updatedOn\":\"2021-11-11T20:15:17.9155393Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"85cb6faf-e071-4c9b-8136-154b5a04f717\"},{\"properties\":{\"roleName\":\"Device - Provisioning Service Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows - for full read access to Device Provisioning Service data-plane properties.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Devices/provisioningServices/*/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-08-09T19:53:12.1374732Z\",\"updatedOn\":\"2021-11-11T20:15:18.0905503Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/10745317-c249-44a1-a5ce-3a4353c0bbd8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"10745317-c249-44a1-a5ce-3a4353c0bbd8\"},{\"properties\":{\"roleName\":\"Device - Provisioning Service Data Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows - for full access to Device Provisioning Service data-plane operations.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Devices/provisioningServices/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-08-09T19:54:03.2783227Z\",\"updatedOn\":\"2021-11-11T20:15:18.2605302Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/dfce44e4-17b7-4bd1-a6d1-04996ec95633\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"dfce44e4-17b7-4bd1-a6d1-04996ec95633\"},{\"properties\":{\"roleName\":\"Code - Signing Certificate Profile Signer\",\"type\":\"BuiltInRole\",\"description\":\"Sign - files with a certificate profile. This role is in preview and subject to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CodeSigning/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CodeSigning/certificateProfiles/Sign/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-08-16T23:17:53.0002693Z\",\"updatedOn\":\"2022-12-14T16:17:31.6972531Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2837e146-70d7-4cfd-ad55-7efa6464f958\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2837e146-70d7-4cfd-ad55-7efa6464f958\"},{\"properties\":{\"roleName\":\"Azure - Spring Cloud Service Registry Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allow - read access to Azure Spring Cloud Service Registry\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/eurekaService/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-08-20T04:40:17.9785063Z\",\"updatedOn\":\"2021-11-11T20:15:18.9655101Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cff1b556-2399-4e7e-856d-a8f754be7b65\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"cff1b556-2399-4e7e-856d-a8f754be7b65\"},{\"properties\":{\"roleName\":\"Azure - Spring Cloud Service Registry Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allow - read, write and delete access to Azure Spring Cloud Service Registry\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/eurekaService/read\",\"Microsoft.AppPlatform/Spring/eurekaService/write\",\"Microsoft.AppPlatform/Spring/eurekaService/delete\"],\"notDataActions\":[]}],\"createdOn\":\"2021-08-20T04:42:38.9153779Z\",\"updatedOn\":\"2021-11-11T20:15:19.1405497Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f5880b48-c26d-48be-b172-7927bfa1c8f1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f5880b48-c26d-48be-b172-7927bfa1c8f1\"},{\"properties\":{\"roleName\":\"Azure - Spring Cloud Config Server Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allow - read access to Azure Spring Cloud Config Server\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/configService/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-08-26T01:50:51.5123701Z\",\"updatedOn\":\"2021-11-11T20:15:19.3155517Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d04c6db6-4947-4782-9e91-30a88feb7be7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d04c6db6-4947-4782-9e91-30a88feb7be7\"},{\"properties\":{\"roleName\":\"Azure - Spring Cloud Config Server Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allow - read, write and delete access to Azure Spring Cloud Config Server\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/configService/read\",\"Microsoft.AppPlatform/Spring/configService/write\",\"Microsoft.AppPlatform/Spring/configService/delete\"],\"notDataActions\":[]}],\"createdOn\":\"2021-09-06T02:30:47.8611580Z\",\"updatedOn\":\"2021-11-11T20:15:20.0405208Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a06f5c24-21a7-4e1a-aa2b-f19eb6684f5b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a06f5c24-21a7-4e1a-aa2b-f19eb6684f5b\"},{\"properties\":{\"roleName\":\"Azure - VM Managed identities restore Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Azure - VM Managed identities restore Contributors are allowed to perform Azure VM - Restores with managed identities both user and system\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-09-13T05:27:59.2180214Z\",\"updatedOn\":\"2021-11-11T20:15:20.5805266Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6ae96244-5829-4925-a7d3-5975537d91dd\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6ae96244-5829-4925-a7d3-5975537d91dd\"},{\"properties\":{\"roleName\":\"Azure - Maps Search and Render Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Grants - access to very limited set of data APIs for common visual web SDK scenarios. - Specifically, render and search data APIs.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Maps/accounts/services/render/read\",\"Microsoft.Maps/accounts/services/search/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-10-01T22:17:50.5178931Z\",\"updatedOn\":\"2021-11-11T20:15:22.0455410Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6be48352-4f82-47c9-ad5e-0acacefdb005\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6be48352-4f82-47c9-ad5e-0acacefdb005\"},{\"properties\":{\"roleName\":\"Azure - Maps Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Grants access - all Azure Maps resource management.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Maps/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-10-01T22:19:13.1357904Z\",\"updatedOn\":\"2021-11-11T20:15:22.2455414Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/dba33070-676a-4fb0-87fa-064dc56ff7fb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"dba33070-676a-4fb0-87fa-064dc56ff7fb\"},{\"properties\":{\"roleName\":\"Azure - Arc VMware VM Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Arc - VMware VM Contributor has permissions to perform all VM actions.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ConnectedVMwarevSphere/virtualmachines/*\",\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/operationresults/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-10-18T20:19:53.0087024Z\",\"updatedOn\":\"2021-11-11T20:15:23.8706020Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b748a06d-6150-4f8a-aaa9-ce3940cd96cb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b748a06d-6150-4f8a-aaa9-ce3940cd96cb\"},{\"properties\":{\"roleName\":\"Azure - Arc VMware Private Cloud User\",\"type\":\"BuiltInRole\",\"description\":\"Azure - Arc VMware Private Cloud User has permissions to use the VMware cloud resources - to deploy VMs.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.ConnectedVMwarevSphere/virtualnetworks/join/action\",\"Microsoft.ConnectedVMwarevSphere/virtualnetworks/Read\",\"Microsoft.ConnectedVMwarevSphere/virtualmachinetemplates/clone/action\",\"Microsoft.ConnectedVMwarevSphere/virtualmachinetemplates/Read\",\"Microsoft.ConnectedVMwarevSphere/resourcepools/deploy/action\",\"Microsoft.ConnectedVMwarevSphere/resourcepools/Read\",\"Microsoft.ConnectedVMwarevSphere/hosts/deploy/action\",\"Microsoft.ConnectedVMwarevSphere/hosts/Read\",\"Microsoft.ConnectedVMwarevSphere/clusters/deploy/action\",\"Microsoft.ConnectedVMwarevSphere/clusters/Read\",\"Microsoft.ConnectedVMwarevSphere/datastores/allocateSpace/action\",\"Microsoft.ConnectedVMwarevSphere/datastores/Read\",\"Microsoft.ExtendedLocation/customLocations/Read\",\"Microsoft.ExtendedLocation/customLocations/deploy/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-10-18T20:20:46.5105444Z\",\"updatedOn\":\"2022-11-14T16:02:29.4536312Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ce551c02-7c42-47e0-9deb-e3b6fc3a9a83\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ce551c02-7c42-47e0-9deb-e3b6fc3a9a83\"},{\"properties\":{\"roleName\":\"Azure - Arc VMware Administrator role \",\"type\":\"BuiltInRole\",\"description\":\"Arc - VMware VM Contributor has permissions to perform all connected VMwarevSphere - actions.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ConnectedVMwarevSphere/*\",\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/operationresults/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-11-01T17:12:42.6172725Z\",\"updatedOn\":\"2021-11-11T20:15:25.1275776Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ddc140ed-e463-4246-9145-7c664192013f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ddc140ed-e463-4246-9145-7c664192013f\"},{\"properties\":{\"roleName\":\"Cognitive - Services LUIS Owner\",\"type\":\"BuiltInRole\",\"description\":\" Has access - to all Read, Test, Write, Deploy and Delete functions under LUIS\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.CognitiveServices/accounts/listkeys/action\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/LUIS/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-11-04T03:28:02.9611800Z\",\"updatedOn\":\"2021-11-11T20:15:25.4884913Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f72c8140-2111-481c-87ff-72b910f6e3f8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f72c8140-2111-481c-87ff-72b910f6e3f8\"},{\"properties\":{\"roleName\":\"Cognitive - Services Language Reader\",\"type\":\"BuiltInRole\",\"description\":\"Has - access to Read and Test functions under Language portal\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/LanguageAuthoring/*/read\",\"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/*/read\",\"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/projects/export/action\",\"Microsoft.CognitiveServices/accounts/Language/*/read\",\"Microsoft.CognitiveServices/accounts/Language/*/projects/export/action\",\"Microsoft.CognitiveServices/accounts/Language/query-text/action\",\"Microsoft.CognitiveServices/accounts/Language/query-dataverse/action\",\"Microsoft.CognitiveServices/accounts/Language/analyze-text/jobs/action\",\"Microsoft.CognitiveServices/accounts/Language/analyze-text/action\",\"Microsoft.CognitiveServices/accounts/Language/analyze-text/jobscancel/action\",\"Microsoft.CognitiveServices/accounts/Language/analyze-conversations/action\",\"Microsoft.CognitiveServices/accounts/Language/analyze-conversations/jobscancel/action\",\"Microsoft.CognitiveServices/accounts/Language/analyze-conversations/jobs/action\",\"Microsoft.CognitiveServices/accounts/Language/query-knowledgebases/action\",\"Microsoft.CognitiveServices/accounts/Language/generate/action\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/*\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnaMaker/*\"]}],\"createdOn\":\"2021-11-04T03:29:14.7643336Z\",\"updatedOn\":\"2023-02-28T16:09:04.1394585Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7628b7b8-a8b2-4cdc-b46f-e9b35248918e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7628b7b8-a8b2-4cdc-b46f-e9b35248918e\"},{\"properties\":{\"roleName\":\"Cognitive - Services Language Writer\",\"type\":\"BuiltInRole\",\"description\":\" Has - access to all Read, Test, and Write functions under Language Portal\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/LanguageAuthoring/*\",\"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/*\",\"Microsoft.CognitiveServices/accounts/Language/*\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/*\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/LanguageAuthoring/projects/publish/action\",\"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/projects/deployments/write\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnaMaker/*\",\"Microsoft.CognitiveServices/accounts/Language/*/projects/delete\",\"Microsoft.CognitiveServices/accounts/Language/*/projects/deployments/write\",\"Microsoft.CognitiveServices/accounts/Language/*/projects/deployments/delete\",\"Microsoft.CognitiveServices/accounts/Language/*/projects/deployments/swap/action\"]}],\"createdOn\":\"2021-11-04T03:29:39.5761019Z\",\"updatedOn\":\"2022-03-29T22:15:08.2904465Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f2310ca1-dc64-4889-bb49-c8e0fa3d47a8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f2310ca1-dc64-4889-bb49-c8e0fa3d47a8\"},{\"properties\":{\"roleName\":\"Cognitive - Services Language Owner\",\"type\":\"BuiltInRole\",\"description\":\"Has access - to all Read, Test, Write, Deploy and Delete functions under Language portal\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.CognitiveServices/accounts/listkeys/action\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/LanguageAuthoring/*\",\"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/*\",\"Microsoft.CognitiveServices/accounts/Language/*\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/*\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnaMaker/*\"]}],\"createdOn\":\"2021-11-04T03:30:07.6173528Z\",\"updatedOn\":\"2022-03-29T22:15:08.2749033Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f07febfe-79bc-46b1-8b37-790e26e6e498\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f07febfe-79bc-46b1-8b37-790e26e6e498\"},{\"properties\":{\"roleName\":\"Cognitive - Services LUIS Reader\",\"type\":\"BuiltInRole\",\"description\":\"Has access - to Read and Test functions under LUIS.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/LUIS/*/read\",\"Microsoft.CognitiveServices/accounts/LUIS/apps/testdatasets/write\"],\"notDataActions\":[]}],\"createdOn\":\"2021-11-04T03:30:31.2704834Z\",\"updatedOn\":\"2021-11-11T20:15:26.2134821Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18e81cdc-4e98-4e29-a639-e7d10c5a6226\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"18e81cdc-4e98-4e29-a639-e7d10c5a6226\"},{\"properties\":{\"roleName\":\"Cognitive - Services LUIS Writer\",\"type\":\"BuiltInRole\",\"description\":\"Has access - to all Read, Test, and Write functions under LUIS\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/LUIS/*\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/LUIS/apps/delete\",\"Microsoft.CognitiveServices/accounts/LUIS/apps/move/action\",\"Microsoft.CognitiveServices/accounts/LUIS/apps/publish/action\",\"Microsoft.CognitiveServices/accounts/LUIS/apps/settings/write\",\"Microsoft.CognitiveServices/accounts/LUIS/apps/azureaccounts/action\",\"Microsoft.CognitiveServices/accounts/LUIS/apps/azureaccounts/delete\"]}],\"createdOn\":\"2021-11-04T03:31:12.1580052Z\",\"updatedOn\":\"2021-11-11T20:15:26.3934523Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6322a993-d5c9-4bed-b113-e49bbea25b27\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6322a993-d5c9-4bed-b113-e49bbea25b27\"},{\"properties\":{\"roleName\":\"PlayFab - Reader\",\"type\":\"BuiltInRole\",\"description\":\"Provides read access to - PlayFab resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.PlayFab/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-11-04T23:26:57.2248605Z\",\"updatedOn\":\"2021-11-11T20:15:26.5784834Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a9a19cc5-31f4-447c-901f-56c0bb18fcaf\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a9a19cc5-31f4-447c-901f-56c0bb18fcaf\"},{\"properties\":{\"roleName\":\"Load - Test Contributor\",\"type\":\"BuiltInRole\",\"description\":\"View, create, - update, delete and execute load tests. View and list load test resources but - can not make any changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.LoadTestService/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.LoadTestService/loadtests/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-11-09T08:11:21.0936461Z\",\"updatedOn\":\"2021-11-11T20:15:27.1189225Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/749a398d-560b-491b-bb21-08924219302e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"749a398d-560b-491b-bb21-08924219302e\"},{\"properties\":{\"roleName\":\"Load - Test Owner\",\"type\":\"BuiltInRole\",\"description\":\"Execute all operations - on load test resources and load tests\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.LoadTestService/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.LoadTestService/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-11-09T08:12:24.5500195Z\",\"updatedOn\":\"2021-11-11T20:15:27.2897153Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/45bb0b16-2f0c-4e78-afaa-a07599b003f6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"45bb0b16-2f0c-4e78-afaa-a07599b003f6\"},{\"properties\":{\"roleName\":\"PlayFab - Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Provides contributor - access to PlayFab resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.PlayFab/*/read\",\"Microsoft.PlayFab/*/write\",\"Microsoft.PlayFab/*/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-11-10T00:55:37.3326276Z\",\"updatedOn\":\"2021-11-11T20:15:28.0547167Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0c8b84dc-067c-4039-9615-fa1a4b77c726\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0c8b84dc-067c-4039-9615-fa1a4b77c726\"},{\"properties\":{\"roleName\":\"Load - Test Reader\",\"type\":\"BuiltInRole\",\"description\":\"View and list all - load tests and load test resources but can not make any changes\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.LoadTestService/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.LoadTestService/loadtests/readTest/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-11-10T06:14:08.3903105Z\",\"updatedOn\":\"2021-11-11T20:15:28.2297181Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3ae3fb29-0000-4ccd-bf80-542e7b26e081\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3ae3fb29-0000-4ccd-bf80-542e7b26e081\"},{\"properties\":{\"roleName\":\"Cognitive - Services Immersive Reader User\",\"type\":\"BuiltInRole\",\"description\":\"Provides - access to create Immersive Reader sessions and call APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/ImmersiveReader/getcontentmodelforreader/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-11-10T19:52:14.4487503Z\",\"updatedOn\":\"2021-11-11T20:15:28.4146975Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b2de6794-95db-4659-8781-7e080d3f2b9d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b2de6794-95db-4659-8781-7e080d3f2b9d\"},{\"properties\":{\"roleName\":\"Lab - Services Contributor\",\"type\":\"BuiltInRole\",\"description\":\"The lab - services contributor role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.LabServices/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.LabServices/labPlans/createLab/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-11-11T00:51:03.3308981Z\",\"updatedOn\":\"2021-11-11T20:15:28.7792013Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f69b8690-cc87-41d6-b77a-a4bc3c0a966f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f69b8690-cc87-41d6-b77a-a4bc3c0a966f\"},{\"properties\":{\"roleName\":\"Lab - Services Reader\",\"type\":\"BuiltInRole\",\"description\":\"The lab services - reader role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.LabServices/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-11-11T00:55:30.4208618Z\",\"updatedOn\":\"2021-11-11T20:15:28.9592032Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a5c394f-5eb7-4d4f-9c8e-e8eae39faebc\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2a5c394f-5eb7-4d4f-9c8e-e8eae39faebc\"},{\"properties\":{\"roleName\":\"Lab - Assistant\",\"type\":\"BuiltInRole\",\"description\":\"The lab assistant role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.LabServices/labPlans/images/read\",\"Microsoft.LabServices/labPlans/read\",\"Microsoft.LabServices/labs/read\",\"Microsoft.LabServices/labs/schedules/read\",\"Microsoft.LabServices/labs/users/read\",\"Microsoft.LabServices/labs/users/invite/action\",\"Microsoft.LabServices/labs/virtualMachines/read\",\"Microsoft.LabServices/labs/virtualMachines/start/action\",\"Microsoft.LabServices/labs/virtualMachines/stop/action\",\"Microsoft.LabServices/labs/virtualMachines/reimage/action\",\"Microsoft.LabServices/labs/virtualMachines/redeploy/action\",\"Microsoft.LabServices/locations/usages/read\",\"Microsoft.LabServices/skus/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-11-11T00:56:10.4295443Z\",\"updatedOn\":\"2021-11-11T20:15:29.1442530Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ce40b423-cede-4313-a93f-9b28290b72e1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ce40b423-cede-4313-a93f-9b28290b72e1\"},{\"properties\":{\"roleName\":\"Lab - Operator\",\"type\":\"BuiltInRole\",\"description\":\"The lab operator role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.LabServices/labPlans/images/read\",\"Microsoft.LabServices/labPlans/read\",\"Microsoft.LabServices/labPlans/saveImage/action\",\"Microsoft.LabServices/labs/publish/action\",\"Microsoft.LabServices/labs/read\",\"Microsoft.LabServices/labs/schedules/read\",\"Microsoft.LabServices/labs/schedules/write\",\"Microsoft.LabServices/labs/schedules/delete\",\"Microsoft.LabServices/labs/users/read\",\"Microsoft.LabServices/labs/users/write\",\"Microsoft.LabServices/labs/users/delete\",\"Microsoft.LabServices/labs/users/invite/action\",\"Microsoft.LabServices/labs/virtualMachines/read\",\"Microsoft.LabServices/labs/virtualMachines/start/action\",\"Microsoft.LabServices/labs/virtualMachines/stop/action\",\"Microsoft.LabServices/labs/virtualMachines/reimage/action\",\"Microsoft.LabServices/labs/virtualMachines/redeploy/action\",\"Microsoft.LabServices/labs/virtualMachines/resetPassword/action\",\"Microsoft.LabServices/locations/usages/read\",\"Microsoft.LabServices/skus/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-11-11T00:56:41.9942935Z\",\"updatedOn\":\"2021-11-11T20:15:29.3242664Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a36e6959-b6be-4b12-8e9f-ef4b474d304d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a36e6959-b6be-4b12-8e9f-ef4b474d304d\"},{\"properties\":{\"roleName\":\"Lab - Contributor\",\"type\":\"BuiltInRole\",\"description\":\"The lab contributor - role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.LabServices/labPlans/images/read\",\"Microsoft.LabServices/labPlans/read\",\"Microsoft.LabServices/labPlans/saveImage/action\",\"Microsoft.LabServices/labs/read\",\"Microsoft.LabServices/labs/write\",\"Microsoft.LabServices/labs/delete\",\"Microsoft.LabServices/labs/publish/action\",\"Microsoft.LabServices/labs/syncGroup/action\",\"Microsoft.LabServices/labs/schedules/read\",\"Microsoft.LabServices/labs/schedules/write\",\"Microsoft.LabServices/labs/schedules/delete\",\"Microsoft.LabServices/labs/users/read\",\"Microsoft.LabServices/labs/users/write\",\"Microsoft.LabServices/labs/users/delete\",\"Microsoft.LabServices/labs/users/invite/action\",\"Microsoft.LabServices/labs/virtualMachines/read\",\"Microsoft.LabServices/labs/virtualMachines/start/action\",\"Microsoft.LabServices/labs/virtualMachines/stop/action\",\"Microsoft.LabServices/labs/virtualMachines/reimage/action\",\"Microsoft.LabServices/labs/virtualMachines/redeploy/action\",\"Microsoft.LabServices/labs/virtualMachines/resetPassword/action\",\"Microsoft.LabServices/locations/usages/read\",\"Microsoft.LabServices/skus/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.LabServices/labPlans/createLab/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-11-11T00:57:05.9018065Z\",\"updatedOn\":\"2021-11-11T20:15:29.4992096Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5daaa2af-1fe8-407c-9122-bba179798270\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5daaa2af-1fe8-407c-9122-bba179798270\"},{\"properties\":{\"roleName\":\"Security - Admin\",\"type\":\"BuiltInRole\",\"description\":\"Security Admin Role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Authorization/policyAssignments/*\",\"Microsoft.Authorization/policyDefinitions/*\",\"Microsoft.Authorization/policyExemptions/*\",\"Microsoft.Authorization/policySetDefinitions/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Management/managementGroups/read\",\"Microsoft.operationalInsights/workspaces/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Security/*\",\"Microsoft.IoTSecurity/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-03T07:51:23.0917487Z\",\"updatedOn\":\"2021-11-15T06:42:49.8263550Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fb1c8493-542b-48eb-b624-b4c8fea62acd\"},{\"properties\":{\"roleName\":\"Web - PubSub Service Owner (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Full - access to Azure Web PubSub Service REST APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SignalRService/WebPubSub/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-03-24T09:10:11.8335180Z\",\"updatedOn\":\"2021-11-16T05:16:52.6491279Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/12cf5a90-567b-43ae-8102-96cf46c7d9b4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"12cf5a90-567b-43ae-8102-96cf46c7d9b4\"},{\"properties\":{\"roleName\":\"Web - PubSub Service Reader (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Read-only - access to Azure Web PubSub Service REST APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SignalRService/WebPubSub/*/read\"],\"notDataActions\":[]}],\"createdOn\":\"2021-03-24T09:11:12.6235436Z\",\"updatedOn\":\"2021-11-16T05:17:12.8340953Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bfb1c7d2-fb1a-466b-b2ba-aee63b92deaf\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bfb1c7d2-fb1a-466b-b2ba-aee63b92deaf\"},{\"properties\":{\"roleName\":\"SignalR - App Server\",\"type\":\"BuiltInRole\",\"description\":\"Lets your app server - access SignalR Service with AAD auth options.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SignalRService/SignalR/auth/accessKey/action\",\"Microsoft.SignalRService/SignalR/serverConnection/write\",\"Microsoft.SignalRService/SignalR/clientConnection/write\"],\"notDataActions\":[]}],\"createdOn\":\"2020-07-29T06:54:40.1201435Z\",\"updatedOn\":\"2021-11-16T05:19:04.8579948Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/420fcaa2-552c-430f-98ca-3264be4806c7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"420fcaa2-552c-430f-98ca-3264be4806c7\"},{\"properties\":{\"roleName\":\"Virtual - Machine User Login\",\"type\":\"BuiltInRole\",\"description\":\"View Virtual - Machines in the portal and login as a regular user.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Network/publicIPAddresses/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Compute/virtualMachines/*/read\",\"Microsoft.HybridCompute/machines/*/read\",\"Microsoft.HybridConnectivity/endpoints/listCredentials/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Compute/virtualMachines/login/action\",\"Microsoft.HybridCompute/machines/login/action\"],\"notDataActions\":[]}],\"createdOn\":\"2018-02-09T18:36:13.3315744Z\",\"updatedOn\":\"2021-11-18T00:55:50.6185845Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fb879df8-f326-4884-b1cf-06f3ad86be52\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fb879df8-f326-4884-b1cf-06f3ad86be52\"},{\"properties\":{\"roleName\":\"Virtual - Machine Administrator Login\",\"type\":\"BuiltInRole\",\"description\":\"View - Virtual Machines in the portal and login as administrator\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Network/publicIPAddresses/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Compute/virtualMachines/*/read\",\"Microsoft.HybridCompute/machines/*/read\",\"Microsoft.HybridConnectivity/endpoints/listCredentials/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Compute/virtualMachines/login/action\",\"Microsoft.Compute/virtualMachines/loginAsAdmin/action\",\"Microsoft.HybridCompute/machines/login/action\",\"Microsoft.HybridCompute/machines/loginAsAdmin/action\"],\"notDataActions\":[]}],\"createdOn\":\"2018-02-09T18:36:13.3315744Z\",\"updatedOn\":\"2021-11-18T00:56:53.8134295Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1c0163c0-47e6-4577-8991-ea5c82e286e4\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1c0163c0-47e6-4577-8991-ea5c82e286e4\"},{\"properties\":{\"roleName\":\"Azure - Connected Machine Resource Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Can - read, write, delete and re-onboard Azure Connected Machines.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/read\",\"Microsoft.HybridCompute/machines/write\",\"Microsoft.HybridCompute/machines/delete\",\"Microsoft.HybridCompute/machines/UpgradeExtensions/action\",\"Microsoft.HybridCompute/machines/extensions/read\",\"Microsoft.HybridCompute/machines/extensions/write\",\"Microsoft.HybridCompute/machines/extensions/delete\",\"Microsoft.HybridCompute/privateLinkScopes/*\",\"Microsoft.HybridCompute/*/read\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-10-23T20:24:59.1474607Z\",\"updatedOn\":\"2021-12-15T16:10:25.5898511Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cd570a14-e51a-42ad-bac8-bafd67325302\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"cd570a14-e51a-42ad-bac8-bafd67325302\"},{\"properties\":{\"roleName\":\"Backup - Operator\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage backup - services, except removal of backup, vault creation and giving access to others\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/accessToken/action\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\",\"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\"Microsoft.RecoveryServices/Vaults/certificates/write\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\"Microsoft.RecoveryServices/Vaults/usages/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\",\"Microsoft.RecoveryServices/Vaults/backupTriggerValidateOperation/action\",\"Microsoft.RecoveryServices/Vaults/backupValidateOperationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupValidateOperationsStatuses/read\",\"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/write\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/inquire/action\",\"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\",\"Microsoft.RecoveryServices/locations/backupStatus/action\",\"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\",\"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\"Microsoft.RecoveryServices/locations/backupAadProperties/read\",\"Microsoft.RecoveryServices/locations/backupCrrJobs/action\",\"Microsoft.RecoveryServices/locations/backupCrrJob/action\",\"Microsoft.RecoveryServices/locations/backupCrossRegionRestore/action\",\"Microsoft.RecoveryServices/locations/backupCrrOperationResults/read\",\"Microsoft.RecoveryServices/locations/backupCrrOperationsStatus/read\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\"Microsoft.RecoveryServices/operations/read\",\"Microsoft.RecoveryServices/locations/operationStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\"Microsoft.Support/*\",\"Microsoft.DataProtection/backupVaults/backupInstances/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/read\",\"Microsoft.DataProtection/backupVaults/deletedBackupInstances/read\",\"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/findRestorableTimeRanges/action\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/backupVaults/operationResults/read\",\"Microsoft.DataProtection/backupVaults/operationStatus/read\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/locations/operationStatus/read\",\"Microsoft.DataProtection/locations/operationResults/read\",\"Microsoft.DataProtection/operations/read\",\"Microsoft.DataProtection/backupVaults/validateForBackup/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/backup/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/validateRestore/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/restore/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-01-03T13:21:11.8947640Z\",\"updatedOn\":\"2022-10-14T08:58:53.5811091Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"00c29273-979b-4161-815c-10b084fb9324\"},{\"properties\":{\"roleName\":\"Workbook - Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can save shared workbooks.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Insights/workbooks/write\",\"Microsoft.Insights/workbooks/delete\",\"Microsoft.Insights/workbooks/read\",\"Microsoft.Insights/workbooks/revisions/read\",\"Microsoft.Insights/workbooktemplates/write\",\"Microsoft.Insights/workbooktemplates/delete\",\"Microsoft.Insights/workbooktemplates/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T20:59:42.4820277Z\",\"updatedOn\":\"2022-12-12T16:05:57.3745476Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e8ddcd69-c73f-4f9f-9844-4100522f16ad\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e8ddcd69-c73f-4f9f-9844-4100522f16ad\"},{\"properties\":{\"roleName\":\"Workbook - Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can read workbooks.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"microsoft.insights/workbooks/read\",\"microsoft.insights/workbooks/revisions/read\",\"microsoft.insights/workbooktemplates/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T20:56:17.6808140Z\",\"updatedOn\":\"2022-12-12T16:05:57.3745476Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b279062a-9be3-42a0-92ae-8b3cf002ec4d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b279062a-9be3-42a0-92ae-8b3cf002ec4d\"},{\"properties\":{\"roleName\":\"Monitoring - Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can read all monitoring - data and update monitoring settings.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.AlertsManagement/alerts/*\",\"Microsoft.AlertsManagement/alertsSummary/*\",\"Microsoft.Insights/actiongroups/*\",\"Microsoft.Insights/activityLogAlerts/*\",\"Microsoft.Insights/AlertRules/*\",\"Microsoft.Insights/components/*\",\"Microsoft.Insights/createNotifications/*\",\"Microsoft.Insights/dataCollectionEndpoints/*\",\"Microsoft.Insights/dataCollectionRules/*\",\"Microsoft.Insights/dataCollectionRuleAssociations/*\",\"Microsoft.Insights/DiagnosticSettings/*\",\"Microsoft.Insights/eventtypes/*\",\"Microsoft.Insights/LogDefinitions/*\",\"Microsoft.Insights/metricalerts/*\",\"Microsoft.Insights/MetricDefinitions/*\",\"Microsoft.Insights/Metrics/*\",\"Microsoft.Insights/notificationStatus/*\",\"Microsoft.Insights/Register/Action\",\"Microsoft.Insights/scheduledqueryrules/*\",\"Microsoft.Insights/webtests/*\",\"Microsoft.Insights/workbooks/*\",\"Microsoft.Insights/workbooktemplates/*\",\"Microsoft.Insights/privateLinkScopes/*\",\"Microsoft.Insights/privateLinkScopeOperationStatuses/*\",\"Microsoft.OperationalInsights/workspaces/write\",\"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\"Microsoft.OperationalInsights/workspaces/search/action\",\"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\"Microsoft.Support/*\",\"Microsoft.WorkloadMonitor/monitors/*\",\"Microsoft.AlertsManagement/smartDetectorAlertRules/*\",\"Microsoft.AlertsManagement/actionRules/*\",\"Microsoft.AlertsManagement/smartGroups/*\",\"Microsoft.AlertsManagement/migrateFromSmartDetection/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-09-21T19:21:08.4345976Z\",\"updatedOn\":\"2022-09-06T17:20:40.5763144Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"},{\"properties\":{\"roleName\":\"Monitoring - Metrics Publisher\",\"type\":\"BuiltInRole\",\"description\":\"Enables publishing - metrics against Azure resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Insights/Register/Action\",\"Microsoft.Support/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Insights/Metrics/Write\",\"Microsoft.Insights/Telemetry/Write\"],\"notDataActions\":[]}],\"createdOn\":\"2018-08-14T00:36:16.5610279Z\",\"updatedOn\":\"2022-01-04T00:38:04.0289073Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3913510d-42f4-4e42-8a64-420c390055eb\"},{\"properties\":{\"roleName\":\"Purview - role 1 (Deprecated)\",\"type\":\"BuiltInRole\",\"description\":\"Deprecated - role.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Purview/accounts/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Purview/accounts/data/read\",\"Microsoft.Purview/accounts/data/write\"],\"notDataActions\":[]}],\"createdOn\":\"2020-11-14T02:37:15.0123345Z\",\"updatedOn\":\"2022-01-04T00:43:15.6924286Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8a3c2885-9b38-4fd2-9d99-91af537c1347\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8a3c2885-9b38-4fd2-9d99-91af537c1347\"},{\"properties\":{\"roleName\":\"Purview - role 2 (Deprecated)\",\"type\":\"BuiltInRole\",\"description\":\"Deprecated - role.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Purview/accounts/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Purview/accounts/scan/read\",\"Microsoft.Purview/accounts/scan/write\"],\"notDataActions\":[]}],\"createdOn\":\"2020-11-14T02:40:05.0975648Z\",\"updatedOn\":\"2022-01-04T00:47:22.9678219Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/200bba9e-f0c8-430f-892b-6f0794863803\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"200bba9e-f0c8-430f-892b-6f0794863803\"},{\"properties\":{\"roleName\":\"Purview - role 3 (Deprecated)\",\"type\":\"BuiltInRole\",\"description\":\"Deprecated - role.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Purview/accounts/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Purview/accounts/data/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-11-14T02:39:22.2344740Z\",\"updatedOn\":\"2022-01-04T00:48:08.2844802Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ff100721-1b9d-43d8-af52-42b69c1272db\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ff100721-1b9d-43d8-af52-42b69c1272db\"},{\"properties\":{\"roleName\":\"Autonomous - Development Platform Data Contributor (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Grants - permissions to upload and manage new Autonomous Development Platform measurements.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AutonomousDevelopmentPlatform/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/discoveries/*\",\"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/uploads/*\",\"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/measurements/states/new/*\",\"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/measurementCollections/*\",\"Microsoft.AutonomousDevelopmentPlatform/accounts/measurementCollections/*\",\"Microsoft.AutonomousDevelopmentPlatform/workspaces/read\",\"Microsoft.AutonomousDevelopmentPlatform/workspaces/discoveries/*\",\"Microsoft.AutonomousDevelopmentPlatform/workspaces/uploads/*\",\"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurements/states/new/*\",\"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurements/classifications/*\",\"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurements/dataStreams/classifications/*\",\"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurementCollections/*\"],\"notDataActions\":[\"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/measurements/states/new/changeState/action\",\"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurements/states/new/changeState/action\"]}],\"createdOn\":\"2020-12-15T11:30:01.7459379Z\",\"updatedOn\":\"2022-09-15T17:13:47.5365709Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b8b15564-4fa6-4a59-ab12-03e1d9594795\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b8b15564-4fa6-4a59-ab12-03e1d9594795\"},{\"properties\":{\"roleName\":\"Autonomous - Development Platform Data Owner (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Grants - full access to Autonomous Development Platform data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AutonomousDevelopmentPlatform/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.AutonomousDevelopmentPlatform/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-12-15T12:13:59.9702378Z\",\"updatedOn\":\"2022-01-04T13:20:26.2040404Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/27f8b550-c507-4db9-86f2-f4b8e816d59d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"27f8b550-c507-4db9-86f2-f4b8e816d59d\"},{\"properties\":{\"roleName\":\"Autonomous - Development Platform Data Reader (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Grants - read access to Autonomous Development Platform data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AutonomousDevelopmentPlatform/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.AutonomousDevelopmentPlatform/*/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-12-15T12:11:31.9843256Z\",\"updatedOn\":\"2022-01-04T13:21:04.3207709Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d63b75f7-47ea-4f27-92ac-e0d173aaf093\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d63b75f7-47ea-4f27-92ac-e0d173aaf093\"},{\"properties\":{\"roleName\":\"Key - Vault Crypto Officer\",\"type\":\"BuiltInRole\",\"description\":\"Perform - any action on the keys of a key vault, except manage permissions. Only works - for key vaults that use the 'Azure role-based access control' permission model.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.KeyVault/checkNameAvailability/read\",\"Microsoft.KeyVault/deletedVaults/read\",\"Microsoft.KeyVault/locations/*/read\",\"Microsoft.KeyVault/vaults/*/read\",\"Microsoft.KeyVault/operations/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/keys/*\",\"Microsoft.KeyVault/vaults/keyrotationpolicies/*\"],\"notDataActions\":[]}],\"createdOn\":\"2020-05-19T17:52:47.0099249Z\",\"updatedOn\":\"2022-01-06T23:21:17.9760884Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/14b46e9e-c2b7-41b4-b07b-48a6ebf60603\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"14b46e9e-c2b7-41b4-b07b-48a6ebf60603\"},{\"properties\":{\"roleName\":\"Device - Update Deployments Reader\",\"type\":\"BuiltInRole\",\"description\":\"Gives - you read access to management operations, but does not allow making changes\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.DeviceUpdate/accounts/instances/management/read\",\"Microsoft.DeviceUpdate/accounts/instances/updates/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-08-22T00:01:34.7053630Z\",\"updatedOn\":\"2022-01-13T01:35:51.6463216Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/49e2f5d2-7741-4835-8efa-19e1fe35e47f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"49e2f5d2-7741-4835-8efa-19e1fe35e47f\"},{\"properties\":{\"roleName\":\"Device - Update Deployments Administrator\",\"type\":\"BuiltInRole\",\"description\":\"Gives - you full access to management operations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\",\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.DeviceUpdate/accounts/instances/management/read\",\"Microsoft.DeviceUpdate/accounts/instances/management/write\",\"Microsoft.DeviceUpdate/accounts/instances/management/delete\",\"Microsoft.DeviceUpdate/accounts/instances/updates/read\"],\"notDataActions\":[]}],\"createdOn\":\"2020-08-21T23:59:52.1001666Z\",\"updatedOn\":\"2022-01-13T01:59:19.4616366Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e4237640-0e3d-4a46-8fda-70bc94856432\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e4237640-0e3d-4a46-8fda-70bc94856432\"},{\"properties\":{\"roleName\":\"Azure - Arc VMware Private Clouds Onboarding\",\"type\":\"BuiltInRole\",\"description\":\"Azure - Arc VMware Private Clouds Onboarding role has permissions to provision all - the required resources for onboard and deboard vCenter instances to Azure.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ConnectedVMwarevSphere/vcenters/Write\",\"Microsoft.ConnectedVMwarevSphere/vcenters/Read\",\"Microsoft.ConnectedVMwarevSphere/vcenters/Delete\",\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.KubernetesConfiguration/extensions/Write\",\"Microsoft.KubernetesConfiguration/extensions/Read\",\"Microsoft.KubernetesConfiguration/extensions/Delete\",\"Microsoft.KubernetesConfiguration/operations/read\",\"Microsoft.ExtendedLocation/customLocations/Read\",\"Microsoft.ExtendedLocation/customLocations/Write\",\"Microsoft.ExtendedLocation/customLocations/Delete\",\"Microsoft.ExtendedLocation/customLocations/deploy/action\",\"Microsoft.ResourceConnector/appliances/Read\",\"Microsoft.ResourceConnector/appliances/Write\",\"Microsoft.ResourceConnector/appliances/Delete\",\"Microsoft.BackupSolutions/vmwareapplications/write\",\"Microsoft.BackupSolutions/vmwareapplications/delete\",\"Microsoft.BackupSolutions/vmwareapplications/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-11-01T22:18:08.4480747Z\",\"updatedOn\":\"2022-09-27T17:15:01.5950677Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/67d33e57-3129-45e6-bb0b-7cc522f762fa\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"67d33e57-3129-45e6-bb0b-7cc522f762fa\"},{\"properties\":{\"roleName\":\"Chamber - Admin\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage everything - under your Modeling and Simulation Workbench chamber.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ModSimWorkbench/*/read\",\"Microsoft.ModSimWorkbench/workbenches/chambers/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[\"Microsoft.ModSimWorkbench/workbenches/chambers/fileRequests/manage/action\"],\"dataActions\":[\"Microsoft.ModSimWorkbench/workbenches/chambers/upload/action\",\"Microsoft.ModSimWorkbench/workbenches/chambers/files/*\"],\"notDataActions\":[]}],\"createdOn\":\"2021-12-15T20:53:14.4428297Z\",\"updatedOn\":\"2023-02-10T21:51:57.1130490Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4e9b8407-af2e-495b-ae54-bb60a55b1b5a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4e9b8407-af2e-495b-ae54-bb60a55b1b5a\"},{\"properties\":{\"roleName\":\"Microsoft - Sentinel Automation Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Microsoft - Sentinel Automation Contributor\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Logic/workflows/triggers/read\",\"Microsoft.Logic/workflows/triggers/listCallbackUrl/action\",\"Microsoft.Logic/workflows/runs/read\",\"Microsoft.Web/sites/hostruntime/webhooks/api/workflows/triggers/read\",\"Microsoft.Web/sites/hostruntime/webhooks/api/workflows/triggers/listCallbackUrl/action\",\"Microsoft.Web/sites/hostruntime/webhooks/api/workflows/runs/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-01-24T08:50:52.0382991Z\",\"updatedOn\":\"2022-01-26T09:25:00.4699337Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f4c81013-99ee-4d62-a7ee-b3f1f648599a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f4c81013-99ee-4d62-a7ee-b3f1f648599a\"},{\"properties\":{\"roleName\":\"CDN - Endpoint Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can view CDN - endpoints, but can\u2019t make changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Cdn/edgenodes/read\",\"Microsoft.Cdn/operationresults/*\",\"Microsoft.Cdn/profiles/endpoints/*/read\",\"Microsoft.Cdn/profiles/afdendpoints/validateCustomDomain/action\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-01-23T02:48:46.4996252Z\",\"updatedOn\":\"2022-01-26T19:51:29.2636610Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"},{\"properties\":{\"roleName\":\"Chamber - User\",\"type\":\"BuiltInRole\",\"description\":\"Lets you view everything - under your Modeling and Simulation Workbench chamber, but not make any changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ModSimWorkbench/workbenches/chambers/*/read\",\"Microsoft.ModSimWorkbench/workbenches/chambers/workloads/*\",\"Microsoft.ModSimWorkbench/workbenches/chambers/getUploadUri/action\",\"Microsoft.ModSimWorkbench/workbenches/chambers/fileRequests/getDownloadUri/action\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ModSimWorkbench/workbenches/chambers/upload/action\"],\"notDataActions\":[]}],\"createdOn\":\"2021-12-15T20:51:06.2119764Z\",\"updatedOn\":\"2023-02-10T21:51:57.1130490Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4447db05-44ed-4da3-ae60-6cbece780e32\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4447db05-44ed-4da3-ae60-6cbece780e32\"},{\"properties\":{\"roleName\":\"Cognitive - Services Speech User\",\"type\":\"BuiltInRole\",\"description\":\"Access to - the real-time speech recognition and batch transcription APIs, real-time speech - synthesis and long audio APIs, as well as to read the data/test/model/endpoint - for custom models, but can\u2019t create, delete or modify the data/test/model/endpoint - for custom models.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/SpeechServices/*/read\",\"Microsoft.CognitiveServices/accounts/SpeechServices/*/transcriptions/read\",\"Microsoft.CognitiveServices/accounts/SpeechServices/*/transcriptions/write\",\"Microsoft.CognitiveServices/accounts/SpeechServices/*/transcriptions/delete\",\"Microsoft.CognitiveServices/accounts/SpeechServices/*/frontend/action\",\"Microsoft.CognitiveServices/accounts/SpeechServices/text-dependent/*/action\",\"Microsoft.CognitiveServices/accounts/SpeechServices/text-independent/*/action\",\"Microsoft.CognitiveServices/accounts/CustomVoice/*/read\",\"Microsoft.CognitiveServices/accounts/CustomVoice/evaluations/*\",\"Microsoft.CognitiveServices/accounts/CustomVoice/longaudiosynthesis/*\",\"Microsoft.CognitiveServices/accounts/AudioContentCreation/*\"],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVoice/datasets/files/read\",\"Microsoft.CognitiveServices/accounts/CustomVoice/datasets/utterances/read\"]}],\"createdOn\":\"2021-03-30T11:28:27.4339032Z\",\"updatedOn\":\"2022-05-23T17:10:38.8979809Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f2dc8367-1007-4938-bd23-fe263f013447\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f2dc8367-1007-4938-bd23-fe263f013447\"},{\"properties\":{\"roleName\":\"Windows - Admin Center Administrator Login\",\"type\":\"BuiltInRole\",\"description\":\"Let's - you manage the OS of your resource via Windows Admin Center as an administrator.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/*/read\",\"Microsoft.HybridCompute/machines/extensions/*\",\"Microsoft.HybridCompute/machines/upgradeExtensions/action\",\"Microsoft.HybridCompute/operations/read\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/publicIPAddresses/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/networkSecurityGroups/read\",\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules/read\",\"Microsoft.Network/networkWatchers/securityGroupView/action\",\"Microsoft.Network/networkSecurityGroups/securityRules/read\",\"Microsoft.Network/networkSecurityGroups/securityRules/write\",\"Microsoft.HybridConnectivity/endpoints/write\",\"Microsoft.HybridConnectivity/endpoints/read\",\"Microsoft.HybridConnectivity/endpoints/listManagedProxyDetails/action\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/virtualMachines/patchAssessmentResults/latest/read\",\"Microsoft.Compute/virtualMachines/patchAssessmentResults/latest/softwarePatches/read\",\"Microsoft.Compute/virtualMachines/patchInstallationResults/read\",\"Microsoft.Compute/virtualMachines/patchInstallationResults/softwarePatches/read\",\"Microsoft.Compute/virtualMachines/extensions/read\",\"Microsoft.Compute/virtualMachines/instanceView/read\",\"Microsoft.Compute/virtualMachines/runCommands/read\",\"Microsoft.Compute/virtualMachines/vmSizes/read\",\"Microsoft.Compute/locations/publishers/artifacttypes/types/read\",\"Microsoft.Compute/locations/publishers/artifacttypes/types/versions/read\",\"Microsoft.Compute/diskAccesses/read\",\"Microsoft.Compute/galleries/images/read\",\"Microsoft.Compute/images/read\",\"Microsoft.AzureStackHCI/Clusters/Read\",\"Microsoft.AzureStackHCI/Clusters/ArcSettings/Read\",\"Microsoft.AzureStackHCI/Clusters/ArcSettings/Extensions/Read\",\"Microsoft.AzureStackHCI/Clusters/ArcSettings/Extensions/Write\",\"Microsoft.AzureStackHCI/Clusters/ArcSettings/Extensions/Delete\",\"Microsoft.AzureStackHCI/Operations/Read\",\"Microsoft.ConnectedVMwarevSphere/VirtualMachines/Read\",\"Microsoft.ConnectedVMwarevSphere/VirtualMachines/Extensions/Write\",\"Microsoft.ConnectedVMwarevSphere/VirtualMachines/Extensions/Read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.HybridCompute/machines/WACLoginAsAdmin/action\",\"Microsoft.Compute/virtualMachines/WACloginAsAdmin/action\",\"Microsoft.AzureStackHCI/Clusters/WACloginAsAdmin/Action\",\"Microsoft.ConnectedVMwarevSphere/virtualmachines/WACloginAsAdmin/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-01-12T00:51:19.5581155Z\",\"updatedOn\":\"2022-12-08T09:13:01.4326463Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a6333a3e-0164-44c3-b281-7a577aff287f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a6333a3e-0164-44c3-b281-7a577aff287f\"},{\"properties\":{\"roleName\":\"Azure - Kubernetes Service Policy Add-on Deployment\",\"type\":\"BuiltInRole\",\"description\":\"Deploy - the Azure Policy add-on on Azure Kubernetes Service clusters\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/deployments/*\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/publicIPPrefixes/join/action\",\"Microsoft.Network/publicIPAddresses/join/action\",\"Microsoft.Compute/diskEncryptionSets/read\",\"Microsoft.Compute/proximityPlacementGroups/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-02-07T20:51:48.5662807Z\",\"updatedOn\":\"2022-03-15T23:34:13.5188193Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ed5180-3e48-46fd-8541-4ea054d57064\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"18ed5180-3e48-46fd-8541-4ea054d57064\"},{\"properties\":{\"roleName\":\"Guest - Configuration Resource Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you read, write Guest Configuration Resource.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.GuestConfiguration/guestConfigurationAssignments/write\",\"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\",\"Microsoft.GuestConfiguration/guestConfigurationAssignments/*/read\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-01-13T21:31:41.9626667Z\",\"updatedOn\":\"2022-02-10T19:22:44.9057916Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/088ab73d-1256-47ae-bea9-9de8e7131f31\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"088ab73d-1256-47ae-bea9-9de8e7131f31\"},{\"properties\":{\"roleName\":\"Domain - Services Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can view Azure - AD Domain Services and related network configurations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Insights/Logs/Read\",\"Microsoft.Insights/Metrics/read\",\"Microsoft.Insights/DiagnosticSettings/read\",\"Microsoft.Insights/DiagnosticSettingsCategories/Read\",\"Microsoft.AAD/domainServices/*/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/read\",\"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/diagnosticSettings/read\",\"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Network/azureFirewalls/read\",\"Microsoft.Network/ddosProtectionPlans/read\",\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/loadBalancers/*/read\",\"Microsoft.Network/natGateways/read\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules/read\",\"Microsoft.Network/networkSecurityGroups/read\",\"Microsoft.Network/networkSecurityGroups/securityRules/read\",\"Microsoft.Network/routeTables/read\",\"Microsoft.Network/routeTables/routes/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-02-15T19:38:46.9043170Z\",\"updatedOn\":\"2022-06-27T17:28:30.2892869Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/361898ef-9ed1-48c2-849c-a832951106bb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"361898ef-9ed1-48c2-849c-a832951106bb\"},{\"properties\":{\"roleName\":\"Domain - Services Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can manage - Azure AD Domain Services and related network configurations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Insights/Logs/Read\",\"Microsoft.Insights/Metrics/Read\",\"Microsoft.Insights/DiagnosticSettings/*\",\"Microsoft.Insights/DiagnosticSettingsCategories/Read\",\"Microsoft.AAD/register/action\",\"Microsoft.AAD/unregister/action\",\"Microsoft.AAD/domainServices/*\",\"Microsoft.Network/register/action\",\"Microsoft.Network/unregister/action\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/write\",\"Microsoft.Network/virtualNetworks/delete\",\"Microsoft.Network/virtualNetworks/peer/action\",\"Microsoft.Network/virtualNetworks/join/action\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/write\",\"Microsoft.Network/virtualNetworks/subnets/delete\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/read\",\"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/write\",\"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/delete\",\"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/diagnosticSettings/read\",\"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Network/azureFirewalls/read\",\"Microsoft.Network/ddosProtectionPlans/read\",\"Microsoft.Network/ddosProtectionPlans/join/action\",\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/loadBalancers/delete\",\"Microsoft.Network/loadBalancers/*/read\",\"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\"Microsoft.Network/natGateways/join/action\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/networkInterfaces/delete\",\"Microsoft.Network/networkInterfaces/join/action\",\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules/read\",\"Microsoft.Network/networkSecurityGroups/read\",\"Microsoft.Network/networkSecurityGroups/write\",\"Microsoft.Network/networkSecurityGroups/delete\",\"Microsoft.Network/networkSecurityGroups/join/action\",\"Microsoft.Network/networkSecurityGroups/securityRules/read\",\"Microsoft.Network/networkSecurityGroups/securityRules/write\",\"Microsoft.Network/networkSecurityGroups/securityRules/delete\",\"Microsoft.Network/routeTables/read\",\"Microsoft.Network/routeTables/write\",\"Microsoft.Network/routeTables/delete\",\"Microsoft.Network/routeTables/join/action\",\"Microsoft.Network/routeTables/routes/read\",\"Microsoft.Network/routeTables/routes/write\",\"Microsoft.Network/routeTables/routes/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-02-15T19:40:22.3943189Z\",\"updatedOn\":\"2022-06-27T17:28:31.1017906Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/eeaeda52-9324-47f6-8069-5d5bade478b2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"eeaeda52-9324-47f6-8069-5d5bade478b2\"},{\"properties\":{\"roleName\":\"DNS - Resolver Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Lets you - manage DNS resolver resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Network/dnsResolvers/read\",\"Microsoft.Network/dnsResolvers/write\",\"Microsoft.Network/dnsResolvers/delete\",\"Microsoft.Network/dnsResolvers/join/action\",\"Microsoft.Network/dnsResolvers/inboundEndpoints/read\",\"Microsoft.Network/dnsResolvers/inboundEndpoints/write\",\"Microsoft.Network/dnsResolvers/inboundEndpoints/delete\",\"Microsoft.Network/dnsResolvers/inboundEndpoints/join/action\",\"Microsoft.Network/dnsResolvers/outboundEndpoints/read\",\"Microsoft.Network/dnsResolvers/outboundEndpoints/write\",\"Microsoft.Network/dnsResolvers/outboundEndpoints/delete\",\"Microsoft.Network/dnsResolvers/outboundEndpoints/join/action\",\"Microsoft.Network/dnsForwardingRulesets/read\",\"Microsoft.Network/dnsForwardingRulesets/write\",\"Microsoft.Network/dnsForwardingRulesets/delete\",\"Microsoft.Network/dnsForwardingRulesets/join/action\",\"Microsoft.Network/dnsForwardingRulesets/forwardingRules/read\",\"Microsoft.Network/dnsForwardingRulesets/forwardingRules/write\",\"Microsoft.Network/dnsForwardingRulesets/forwardingRules/delete\",\"Microsoft.Network/dnsForwardingRulesets/virtualNetworkLinks/read\",\"Microsoft.Network/dnsForwardingRulesets/virtualNetworkLinks/write\",\"Microsoft.Network/dnsForwardingRulesets/virtualNetworkLinks/delete\",\"Microsoft.Network/locations/dnsResolverOperationResults/read\",\"Microsoft.Network/locations/dnsResolverOperationStatuses/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/join/action\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/write\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/virtualNetworks/join/action\",\"Microsoft.Network/virtualNetworks/joinLoadBalancer/action\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/virtualNetworks/subnets/joinLoadBalancer/action\",\"Microsoft.Network/natGateways/join/action\",\"Microsoft.Network/networkSecurityGroups/join/action\",\"Microsoft.Network/routeTables/join/action\",\"Microsoft.Network/serviceEndpointPolicies/join/action\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-02-16T23:25:04.4308795Z\",\"updatedOn\":\"2022-03-12T01:08:44.4650132Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0f2ebee7-ffd4-4fc0-b3b7-664099fdad5d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0f2ebee7-ffd4-4fc0-b3b7-664099fdad5d\"},{\"properties\":{\"roleName\":\"Azure - Arc Enabled Kubernetes Cluster User Role\",\"type\":\"BuiltInRole\",\"description\":\"List - cluster user credentials action.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Kubernetes/connectedClusters/listClusterUserCredentials/action\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\",\"Microsoft.Kubernetes/connectedClusters/listClusterUserCredential/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-07-28T17:37:00.7637445Z\",\"updatedOn\":\"2022-02-17T02:29:05.1000798Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00493d72-78f6-4148-b6c5-d3ce8e4799dd\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"00493d72-78f6-4148-b6c5-d3ce8e4799dd\"},{\"properties\":{\"roleName\":\"Data - Operator for Managed Disks\",\"type\":\"BuiltInRole\",\"description\":\"Provides - permissions to upload data to empty managed disks, read, or export data of - managed disks (not attached to running VMs) and snapshots using SAS URIs and - Azure AD authentication.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Compute/disks/download/action\",\"Microsoft.Compute/disks/upload/action\",\"Microsoft.Compute/snapshots/download/action\",\"Microsoft.Compute/snapshots/upload/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-03-01T05:42:02.3801768Z\",\"updatedOn\":\"2022-03-01T05:42:02.3801768Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/959f8984-c045-4866-89c7-12bf9737be2e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"959f8984-c045-4866-89c7-12bf9737be2e\"},{\"properties\":{\"roleName\":\"AgFood - Platform Sensor Partner Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Provides - contribute access to manage sensor related entities in AgFood Platform Service\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/farmBeats/sensorPartnerScope/*\"],\"notDataActions\":[\"Microsoft.AgFoodPlatform/farmBeats/sensorPartnerScope/sensors/delete\"]}],\"createdOn\":\"2022-03-09T09:03:53.4902790Z\",\"updatedOn\":\"2022-10-27T07:34:00.9328070Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6b77f0a0-0d89-41cc-acd1-579c22c17a67\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6b77f0a0-0d89-41cc-acd1-579c22c17a67\"},{\"properties\":{\"roleName\":\"Compute - Gallery Sharing Admin\",\"type\":\"BuiltInRole\",\"description\":\"This role - allows user to share gallery to another subscription/tenant or share it to - the public.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/galleries/share/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-03-10T04:36:08.9040323Z\",\"updatedOn\":\"2022-03-26T00:40:55.2620635Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1ef6a3be-d0ac-425d-8c01-acb62866290b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1ef6a3be-d0ac-425d-8c01-acb62866290b\"},{\"properties\":{\"roleName\":\"Scheduled - Patching Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Provides - access to manage maintenance configurations with maintenance scope InGuestPatch - and corresponding configuration assignments\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Maintenance/maintenanceConfigurations/read\",\"Microsoft.Maintenance/maintenanceConfigurations/write\",\"Microsoft.Maintenance/maintenanceConfigurations/delete\",\"Microsoft.Maintenance/configurationAssignments/read\",\"Microsoft.Maintenance/configurationAssignments/write\",\"Microsoft.Maintenance/configurationAssignments/delete\",\"Microsoft.Maintenance/configurationAssignments/maintenanceScope/InGuestPatch/read\",\"Microsoft.Maintenance/configurationAssignments/maintenanceScope/InGuestPatch/write\",\"Microsoft.Maintenance/configurationAssignments/maintenanceScope/InGuestPatch/delete\",\"Microsoft.Maintenance/maintenanceConfigurations/maintenanceScope/InGuestPatch/read\",\"Microsoft.Maintenance/maintenanceConfigurations/maintenanceScope/InGuestPatch/write\",\"Microsoft.Maintenance/maintenanceConfigurations/maintenanceScope/InGuestPatch/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-03-21T14:34:05.5308153Z\",\"updatedOn\":\"2022-04-13T12:11:31.8539917Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cd08ab90-6b14-449c-ad9a-8f8e549482c6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"cd08ab90-6b14-449c-ad9a-8f8e549482c6\"},{\"properties\":{\"roleName\":\"DevCenter - Dev Box User\",\"type\":\"BuiltInRole\",\"description\":\"Provides access - to create and manage dev boxes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DevCenter/projects/read\",\"Microsoft.DevCenter/projects/*/read\",\"Microsoft.Fidalgo/projects/read\",\"Microsoft.Fidalgo/projects/*/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.DevCenter/projects/users/devboxes/userStop/action\",\"Microsoft.DevCenter/projects/users/devboxes/userStart/action\",\"Microsoft.DevCenter/projects/users/devboxes/userGetRemoteConnection/action\",\"Microsoft.DevCenter/projects/users/devboxes/userRead/action\",\"Microsoft.DevCenter/projects/users/devboxes/userWrite/action\",\"Microsoft.DevCenter/projects/users/devboxes/userDelete/action\",\"Microsoft.DevCenter/projects/users/devboxes/userUpcomingActionRead/action\",\"Microsoft.DevCenter/projects/users/devboxes/userUpcomingActionManage/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userStop/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userStart/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userGetRdpFileContent/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userRead/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userWrite/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userDelete/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-03-31T22:42:03.2894277Z\",\"updatedOn\":\"2023-01-11T22:01:16.0212532Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/45d50f46-0b78-4001-a660-4198cbe8cd05\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"45d50f46-0b78-4001-a660-4198cbe8cd05\"},{\"properties\":{\"roleName\":\"DevCenter - Project Admin\",\"type\":\"BuiltInRole\",\"description\":\"Provides access - to manage project resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DevCenter/projects/*\",\"Microsoft.Fidalgo/projects/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[\"Microsoft.DevCenter/projects/write\",\"Microsoft.DevCenter/projects/delete\",\"Microsoft.Fidalgo/projects/write\",\"Microsoft.Fidalgo/projects/delete\"],\"dataActions\":[\"Microsoft.DevCenter/projects/users/devboxes/adminStart/action\",\"Microsoft.DevCenter/projects/users/devboxes/adminStop/action\",\"Microsoft.DevCenter/projects/users/devboxes/adminRead/action\",\"Microsoft.DevCenter/projects/users/devboxes/adminWrite/action\",\"Microsoft.DevCenter/projects/users/devboxes/adminDelete/action\",\"Microsoft.DevCenter/projects/users/devboxes/userStop/action\",\"Microsoft.DevCenter/projects/users/devboxes/userStart/action\",\"Microsoft.DevCenter/projects/users/devboxes/userGetRemoteConnection/action\",\"Microsoft.DevCenter/projects/users/devboxes/userRead/action\",\"Microsoft.DevCenter/projects/users/devboxes/userWrite/action\",\"Microsoft.DevCenter/projects/users/devboxes/userDelete/action\",\"Microsoft.DevCenter/projects/users/environments/adminRead/action\",\"Microsoft.DevCenter/projects/users/environments/userWrite/action\",\"Microsoft.DevCenter/projects/users/environments/userDelete/action\",\"Microsoft.DevCenter/projects/users/environments/adminDelete/action\",\"Microsoft.DevCenter/projects/users/environments/adminAction/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/adminStart/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/adminStop/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/adminRead/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/adminWrite/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/adminDelete/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userStop/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userStart/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userGetRdpFileContent/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userRead/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userWrite/action\",\"Microsoft.Fidalgo/projects/users/virtualMachines/userDelete/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-03-31T23:57:37.3708041Z\",\"updatedOn\":\"2022-10-12T10:02:51.4519755Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/331c37c6-af14-46d9-b9f4-e1909e1b95a0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"331c37c6-af14-46d9-b9f4-e1909e1b95a0\"},{\"properties\":{\"roleName\":\"Virtual - Machine Local User Login\",\"type\":\"BuiltInRole\",\"description\":\"View - Virtual Machines in the portal and login as a local user configured on the - arc server\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/*/read\",\"Microsoft.HybridConnectivity/endpoints/listCredentials/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-07T04:12:11.0327385Z\",\"updatedOn\":\"2022-04-16T23:03:02.5542069Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/602da2ba-a5c2-41da-b01d-5360126ab525\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"602da2ba-a5c2-41da-b01d-5360126ab525\"},{\"properties\":{\"roleName\":\"Azure - Arc ScVmm VM Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Arc - ScVmm VM Contributor has permissions to perform all VM actions.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"microsoft.scvmm/virtualmachines/*\",\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/operationresults/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-13T21:33:11.1438013Z\",\"updatedOn\":\"2022-05-06T00:40:14.2130665Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e582369a-e17b-42a5-b10c-874c387c530b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e582369a-e17b-42a5-b10c-874c387c530b\"},{\"properties\":{\"roleName\":\"Azure - Arc ScVmm Administrator role\",\"type\":\"BuiltInRole\",\"description\":\"Arc - ScVmm VM Administrator has permissions to perform all ScVmm actions.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ScVmm/*\",\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/operationresults/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-13T21:33:11.1438013Z\",\"updatedOn\":\"2022-05-06T00:40:14.2130665Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a92dfd61-77f9-4aec-a531-19858b406c87\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a92dfd61-77f9-4aec-a531-19858b406c87\"},{\"properties\":{\"roleName\":\"Azure - Arc ScVmm Private Clouds Onboarding\",\"type\":\"BuiltInRole\",\"description\":\"Azure - Arc ScVmm Private Clouds Onboarding role has permissions to provision all - the required resources for onboard and deboard vmm server instances to Azure.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"microsoft.scvmm/vmmservers/Read\",\"microsoft.scvmm/vmmservers/Write\",\"microsoft.scvmm/vmmservers/Delete\",\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/operationresults/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-13T21:33:11.1438013Z\",\"updatedOn\":\"2022-05-06T00:40:14.2130665Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6aac74c4-6311-40d2-bbdd-7d01e7c6e3a9\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6aac74c4-6311-40d2-bbdd-7d01e7c6e3a9\"},{\"properties\":{\"roleName\":\"Azure - Arc ScVmm Private Cloud User\",\"type\":\"BuiltInRole\",\"description\":\"Azure - Arc ScVmm Private Cloud User has permissions to use the ScVmm resources to - deploy VMs.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"microsoft.scvmm/virtualnetworks/join/action\",\"microsoft.scvmm/virtualnetworks/Read\",\"microsoft.scvmm/virtualmachinetemplates/clone/action\",\"microsoft.scvmm/virtualmachinetemplates/Read\",\"microsoft.scvmm/clouds/deploy/action\",\"microsoft.scvmm/clouds/Read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-13T21:33:11.1438013Z\",\"updatedOn\":\"2022-05-06T00:40:14.2130665Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c0781e91-8102-4553-8951-97c6d4243cda\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c0781e91-8102-4553-8951-97c6d4243cda\"},{\"properties\":{\"roleName\":\"FHIR - Data Importer\",\"type\":\"BuiltInRole\",\"description\":\"Role allows user - or principal to read and import FHIR Data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/import/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-04-19T12:03:07.1913541Z\",\"updatedOn\":\"2022-04-21T13:19:49.7566662Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4465e953-8ced-4406-a58e-0f6e3f3b530b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4465e953-8ced-4406-a58e-0f6e3f3b530b\"},{\"properties\":{\"roleName\":\"API - Management Developer Portal Content Editor\",\"type\":\"BuiltInRole\",\"description\":\"Can - customize the developer portal, edit its content, and publish it.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/portalRevisions/read\",\"Microsoft.ApiManagement/service/portalRevisions/write\",\"Microsoft.ApiManagement/service/contentTypes/read\",\"Microsoft.ApiManagement/service/contentTypes/delete\",\"Microsoft.ApiManagement/service/contentTypes/write\",\"Microsoft.ApiManagement/service/contentTypes/contentItems/read\",\"Microsoft.ApiManagement/service/contentTypes/contentItems/write\",\"Microsoft.ApiManagement/service/contentTypes/contentItems/delete\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-05-06T21:46:28.7501982Z\",\"updatedOn\":\"2022-05-11T01:48:03.0899467Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c031e6a8-4391-4de0-8d69-4706a7ed3729\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c031e6a8-4391-4de0-8d69-4706a7ed3729\"},{\"properties\":{\"roleName\":\"VM - Scanner Operator\",\"type\":\"BuiltInRole\",\"description\":\"Role that provides - access to disk snapshot for security analysis.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/disks/read\",\"Microsoft.Compute/disks/beginGetAccess/action\",\"Microsoft.Compute/virtualMachines/instanceView/read\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/virtualMachineScaleSets/instanceView/read\",\"Microsoft.Compute/virtualMachineScaleSets/read\",\"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/read\",\"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-05-15T19:19:38.5462809Z\",\"updatedOn\":\"2022-06-07T19:47:57.0763272Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d24ecba3-c1f4-40fa-a7bb-4588a071e8fd\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d24ecba3-c1f4-40fa-a7bb-4588a071e8fd\"},{\"properties\":{\"roleName\":\"Elastic - SAN Owner\",\"type\":\"BuiltInRole\",\"description\":\"Allows for full access - to all resources under Azure Elastic SAN including changing network security - policies to unblock data path access\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ElasticSan/elasticSans/*\",\"Microsoft.ElasticSan/locations/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-05-26T12:41:01.1833837Z\",\"updatedOn\":\"2022-08-23T17:36:07.1409226Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/80dcbedb-47ef-405d-95bd-188a1b4ac406\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"80dcbedb-47ef-405d-95bd-188a1b4ac406\"},{\"properties\":{\"roleName\":\"Elastic - SAN Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows for control - path read access to Azure Elastic SAN\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ElasticSan/elasticSans/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-06-01T07:05:04.5639037Z\",\"updatedOn\":\"2022-08-23T17:36:07.1409226Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/af6a70f8-3c9f-4105-acf1-d719e9fca4ca\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"af6a70f8-3c9f-4105-acf1-d719e9fca4ca\"},{\"properties\":{\"roleName\":\"Desktop - Virtualization Virtual Machine Contributor\",\"type\":\"BuiltInRole\",\"description\":\"This - role is in preview and subject to change. Provide permission to the Azure - Virtual Desktop Resource Provider to create, delete, update, start, and stop - virtual machines.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.DesktopVirtualization/hostpools/write\",\"Microsoft.DesktopVirtualization/hostpools/retrieveRegistrationToken/action\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/write\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/delete\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/disconnect/action\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/sendMessage/action\",\"Microsoft.DesktopVirtualization/hostpools/sessionHostConfigurations/read\",\"Microsoft.Compute/availabilitySets/read\",\"Microsoft.Compute/availabilitySets/write\",\"Microsoft.Compute/availabilitySets/vmSizes/read\",\"Microsoft.Compute/disks/read\",\"Microsoft.Compute/disks/write\",\"Microsoft.Compute/disks/delete\",\"Microsoft.Compute/galleries/read\",\"Microsoft.Compute/galleries/images/read\",\"Microsoft.Compute/galleries/images/versions/read\",\"Microsoft.Compute/images/read\",\"Microsoft.Compute/locations/usages/read\",\"Microsoft.Compute/locations/vmSizes/read\",\"Microsoft.Compute/operations/read\",\"Microsoft.Compute/skus/read\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/virtualMachines/write\",\"Microsoft.Compute/virtualMachines/delete\",\"Microsoft.Compute/virtualMachines/start/action\",\"Microsoft.Compute/virtualMachines/powerOff/action\",\"Microsoft.Compute/virtualMachines/restart/action\",\"Microsoft.Compute/virtualMachines/deallocate/action\",\"Microsoft.Compute/virtualMachines/runCommand/action\",\"Microsoft.Compute/virtualMachines/extensions/read\",\"Microsoft.Compute/virtualMachines/extensions/write\",\"Microsoft.Compute/virtualMachines/extensions/delete\",\"Microsoft.Compute/virtualMachines/runCommands/read\",\"Microsoft.Compute/virtualMachines/runCommands/write\",\"Microsoft.Compute/virtualMachines/vmSizes/read\",\"Microsoft.Network/networkSecurityGroups/read\",\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/join/action\",\"Microsoft.Network/networkInterfaces/delete\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Marketplace/offerTypes/publishers/offers/plans/agreements/read\",\"Microsoft.KeyVault/vaults/deploy/action\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-06-29T01:44:11.2575005Z\",\"updatedOn\":\"2022-07-18T17:11:57.3282145Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a959dbd1-f747-45e3-8ba6-dd80f235f97c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a959dbd1-f747-45e3-8ba6-dd80f235f97c\"},{\"properties\":{\"roleName\":\"Desktop - Virtualization Power On Off Contributor\",\"type\":\"BuiltInRole\",\"description\":\"This - role is in preview and subject to change. Provide permission to the Azure - Virtual Desktop Resource Provider to start and stop virtual machines.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/virtualMachines/start/action\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/virtualMachines/instanceView/read\",\"Microsoft.Compute/virtualMachines/deallocate/action\",\"Microsoft.Compute/virtualMachines/restart/action\",\"Microsoft.Compute/virtualMachines/powerOff/action\",\"Microsoft.Insights/eventtypes/values/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.DesktopVirtualization/hostpools/write\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/write\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/delete\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/sendMessage/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-06-29T01:44:11.3414837Z\",\"updatedOn\":\"2022-07-18T17:11:57.3282145Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/40c5ff49-9181-41f8-ae61-143b0e78555e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"40c5ff49-9181-41f8-ae61-143b0e78555e\"},{\"properties\":{\"roleName\":\"Desktop - Virtualization Power On Contributor\",\"type\":\"BuiltInRole\",\"description\":\"This - role is in preview and subject to change. Provide permission to the Azure - Virtual Desktop Resource Provider to start virtual machines.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/virtualMachines/start/action\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/virtualMachines/instanceView/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-06-29T01:44:11.3414837Z\",\"updatedOn\":\"2022-07-18T17:11:57.3282145Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/489581de-a3bd-480d-9518-53dea7416b33\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"489581de-a3bd-480d-9518-53dea7416b33\"},{\"properties\":{\"roleName\":\"Elastic - SAN Volume Group Owner\",\"type\":\"BuiltInRole\",\"description\":\"Allows - for full access to a volume group in Azure Elastic SAN including changing - network security policies to unblock data path access\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\",\"Microsoft.ElasticSan/elasticSans/volumeGroups/*\",\"Microsoft.ElasticSan/locations/asyncoperations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-07-04T17:04:25.3846899Z\",\"updatedOn\":\"2022-08-23T17:36:07.1409226Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a8281131-f312-4f34-8d98-ae12be9f0d23\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a8281131-f312-4f34-8d98-ae12be9f0d23\"},{\"properties\":{\"roleName\":\"Access - Review Operator Service Role\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you grant Access Review System app permissions to discover and revoke access - as needed by the access review process.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleAssignments/delete\",\"Microsoft.Management/getEntities/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-07-04T17:04:25.3846899Z\",\"updatedOn\":\"2022-07-04T17:04:25.3846899Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/76cc9ee4-d5d3-4a45-a930-26add3d73475\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"76cc9ee4-d5d3-4a45-a930-26add3d73475\"},{\"properties\":{\"roleName\":\"Code - Signing Identity Verifier\",\"type\":\"BuiltInRole\",\"description\":\"Manage - identity or business verification requests. This role is in preview and subject - to change.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CodeSigning/*/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CodeSigning/IdentityVerification/Read\",\"Microsoft.CodeSigning/IdentityVerification/Write\"],\"notDataActions\":[]}],\"createdOn\":\"2022-07-29T07:36:35.8877235Z\",\"updatedOn\":\"2022-11-02T07:26:58.4672479Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4339b7cf-9826-4e41-b4ed-c7f4505dac08\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4339b7cf-9826-4e41-b4ed-c7f4505dac08\"},{\"properties\":{\"roleName\":\"Video - Indexer Restricted Viewer\",\"type\":\"BuiltInRole\",\"description\":\"Has - access to view and search through all video's insights and transcription in - the Video Indexer portal. No access to model customization, embedding of widget, - downloading videos, or sharing the account.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.VideoIndexer/*/read\",\"Microsoft.VideoIndexer/accounts/*/action\"],\"notActions\":[\"Microsoft.VideoIndexer/*/write\",\"Microsoft.VideoIndexer/*/delete\",\"Microsoft.VideoIndexer/accounts/generateAccessToken/action\"],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-08-09T20:15:25.5603064Z\",\"updatedOn\":\"2022-08-09T20:15:25.5603064Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a2c4a527-7dc0-4ee3-897b-403ade70fafb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a2c4a527-7dc0-4ee3-897b-403ade70fafb\"},{\"properties\":{\"roleName\":\"Monitoring - Data Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can access the data - in an Azure Monitor Workspace.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Monitor/accounts/data/metrics/read\"],\"notDataActions\":[]}],\"createdOn\":\"2022-08-22T15:27:32.9926129Z\",\"updatedOn\":\"2022-10-07T20:52:48.6545841Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b0d8363b-8ddd-447d-831f-62ca05bff136\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b0d8363b-8ddd-447d-831f-62ca05bff136\"},{\"properties\":{\"roleName\":\"Azure - Kubernetes Fleet Manager RBAC Writer\",\"type\":\"BuiltInRole\",\"description\":\"Allows - read/write access to most objects in a namespace.This role does not allow - viewing or modifying roles or role bindings. However, this role allows accessing - Secrets as any ServiceAccount in the namespace, so it can be used to gain - the API access levels of any ServiceAccount in the namespace. Applying this - role at cluster scope will give access across all namespaces.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ContainerService/fleets/read\",\"Microsoft.ContainerService/fleets/listCredentials/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/fleets/apps/controllerrevisions/read\",\"Microsoft.ContainerService/fleets/apps/daemonsets/*\",\"Microsoft.ContainerService/fleets/apps/deployments/*\",\"Microsoft.ContainerService/fleets/apps/statefulsets/*\",\"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/*\",\"Microsoft.ContainerService/fleets/batch/cronjobs/*\",\"Microsoft.ContainerService/fleets/batch/jobs/*\",\"Microsoft.ContainerService/fleets/configmaps/*\",\"Microsoft.ContainerService/fleets/endpoints/*\",\"Microsoft.ContainerService/fleets/events.k8s.io/events/read\",\"Microsoft.ContainerService/fleets/events/read\",\"Microsoft.ContainerService/fleets/extensions/daemonsets/*\",\"Microsoft.ContainerService/fleets/extensions/deployments/*\",\"Microsoft.ContainerService/fleets/extensions/ingresses/*\",\"Microsoft.ContainerService/fleets/extensions/networkpolicies/*\",\"Microsoft.ContainerService/fleets/limitranges/read\",\"Microsoft.ContainerService/fleets/namespaces/read\",\"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/*\",\"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/*\",\"Microsoft.ContainerService/fleets/persistentvolumeclaims/*\",\"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/*\",\"Microsoft.ContainerService/fleets/replicationcontrollers/*\",\"Microsoft.ContainerService/fleets/replicationcontrollers/*\",\"Microsoft.ContainerService/fleets/resourcequotas/read\",\"Microsoft.ContainerService/fleets/secrets/*\",\"Microsoft.ContainerService/fleets/serviceaccounts/*\",\"Microsoft.ContainerService/fleets/services/*\"],\"notDataActions\":[]}],\"createdOn\":\"2022-08-22T17:29:14.4390853Z\",\"updatedOn\":\"2022-08-26T20:16:47.5777443Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5af6afb3-c06c-4fa4-8848-71a8aee05683\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5af6afb3-c06c-4fa4-8848-71a8aee05683\"},{\"properties\":{\"roleName\":\"Azure - Kubernetes Fleet Manager RBAC Admin\",\"type\":\"BuiltInRole\",\"description\":\"This - role grants admin access - provides write permissions on most objects within - a a namespace, with the exception of ResourceQuota object and the namespace - object itself. Applying this role at cluster scope will give access across - all namespaces.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ContainerService/fleets/read\",\"Microsoft.ContainerService/fleets/listCredentials/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/fleets/apps/controllerrevisions/read\",\"Microsoft.ContainerService/fleets/apps/daemonsets/*\",\"Microsoft.ContainerService/fleets/apps/deployments/*\",\"Microsoft.ContainerService/fleets/apps/statefulsets/*\",\"Microsoft.ContainerService/fleets/authorization.k8s.io/localsubjectaccessreviews/write\",\"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/*\",\"Microsoft.ContainerService/fleets/batch/cronjobs/*\",\"Microsoft.ContainerService/fleets/batch/jobs/*\",\"Microsoft.ContainerService/fleets/configmaps/*\",\"Microsoft.ContainerService/fleets/endpoints/*\",\"Microsoft.ContainerService/fleets/events.k8s.io/events/read\",\"Microsoft.ContainerService/fleets/events/read\",\"Microsoft.ContainerService/fleets/extensions/daemonsets/*\",\"Microsoft.ContainerService/fleets/extensions/deployments/*\",\"Microsoft.ContainerService/fleets/extensions/ingresses/*\",\"Microsoft.ContainerService/fleets/extensions/networkpolicies/*\",\"Microsoft.ContainerService/fleets/limitranges/read\",\"Microsoft.ContainerService/fleets/namespaces/read\",\"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/*\",\"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/*\",\"Microsoft.ContainerService/fleets/persistentvolumeclaims/*\",\"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/*\",\"Microsoft.ContainerService/fleets/rbac.authorization.k8s.io/rolebindings/*\",\"Microsoft.ContainerService/fleets/rbac.authorization.k8s.io/roles/*\",\"Microsoft.ContainerService/fleets/replicationcontrollers/*\",\"Microsoft.ContainerService/fleets/replicationcontrollers/*\",\"Microsoft.ContainerService/fleets/resourcequotas/read\",\"Microsoft.ContainerService/fleets/secrets/*\",\"Microsoft.ContainerService/fleets/serviceaccounts/*\",\"Microsoft.ContainerService/fleets/services/*\"],\"notDataActions\":[]}],\"createdOn\":\"2022-08-22T17:29:14.4390853Z\",\"updatedOn\":\"2022-08-26T20:16:47.5777443Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/434fb43a-c01c-447e-9f67-c3ad923cfaba\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"434fb43a-c01c-447e-9f67-c3ad923cfaba\"},{\"properties\":{\"roleName\":\"Azure - Kubernetes Fleet Manager Contributor Role\",\"type\":\"BuiltInRole\",\"description\":\"Grants - access to read and write Azure Kubernetes Fleet Manager clusters\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerService/fleets/*\",\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-08-22T17:29:14.4234593Z\",\"updatedOn\":\"2022-08-22T17:29:14.4234593Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/63bb64ad-9799-4770-b5c3-24ed299a07bf\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"63bb64ad-9799-4770-b5c3-24ed299a07bf\"},{\"properties\":{\"roleName\":\"Azure - Kubernetes Fleet Manager RBAC Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows - read-only access to see most objects in a namespace. It does not allow viewing - roles or role bindings. This role does not allow viewing Secrets, since reading - the contents of Secrets enables access to ServiceAccount credentials in the - namespace, which would allow API access as any ServiceAccount in the namespace - (a form of privilege escalation). Applying this role at cluster scope will - give access across all namespaces.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ContainerService/fleets/read\",\"Microsoft.ContainerService/fleets/listCredentials/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/fleets/apps/controllerrevisions/read\",\"Microsoft.ContainerService/fleets/apps/daemonsets/read\",\"Microsoft.ContainerService/fleets/apps/deployments/read\",\"Microsoft.ContainerService/fleets/apps/statefulsets/read\",\"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/read\",\"Microsoft.ContainerService/fleets/batch/cronjobs/read\",\"Microsoft.ContainerService/fleets/batch/jobs/read\",\"Microsoft.ContainerService/fleets/configmaps/read\",\"Microsoft.ContainerService/fleets/endpoints/read\",\"Microsoft.ContainerService/fleets/events.k8s.io/events/read\",\"Microsoft.ContainerService/fleets/events/read\",\"Microsoft.ContainerService/fleets/extensions/daemonsets/read\",\"Microsoft.ContainerService/fleets/extensions/deployments/read\",\"Microsoft.ContainerService/fleets/extensions/ingresses/read\",\"Microsoft.ContainerService/fleets/extensions/networkpolicies/read\",\"Microsoft.ContainerService/fleets/limitranges/read\",\"Microsoft.ContainerService/fleets/namespaces/read\",\"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/read\",\"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/read\",\"Microsoft.ContainerService/fleets/persistentvolumeclaims/read\",\"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/read\",\"Microsoft.ContainerService/fleets/replicationcontrollers/read\",\"Microsoft.ContainerService/fleets/replicationcontrollers/read\",\"Microsoft.ContainerService/fleets/resourcequotas/read\",\"Microsoft.ContainerService/fleets/serviceaccounts/read\",\"Microsoft.ContainerService/fleets/services/read\"],\"notDataActions\":[]}],\"createdOn\":\"2022-08-22T17:29:14.4390853Z\",\"updatedOn\":\"2022-08-26T20:16:47.5777443Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/30b27cfc-9c84-438e-b0ce-70e35255df80\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"30b27cfc-9c84-438e-b0ce-70e35255df80\"},{\"properties\":{\"roleName\":\"Azure - Kubernetes Fleet Manager RBAC Cluster Admin\",\"type\":\"BuiltInRole\",\"description\":\"Lets - you manage all resources in the fleet manager cluster.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ContainerService/fleets/read\",\"Microsoft.ContainerService/fleets/listCredentials/action\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/fleets/*\"],\"notDataActions\":[]}],\"createdOn\":\"2022-08-22T17:29:14.4234593Z\",\"updatedOn\":\"2022-08-22T17:29:14.4234593Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ab4d3d-a1bf-4477-8ad9-8359bc988f69\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"18ab4d3d-a1bf-4477-8ad9-8359bc988f69\"},{\"properties\":{\"roleName\":\"Kubernetes - Namespace User\",\"type\":\"BuiltInRole\",\"description\":\"Allows a user - to read namespace resources and retrieve kubeconfig for the cluster\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.KubernetesConfiguration/namespaces/read\",\"Microsoft.KubernetesConfiguration/namespaces/listUserCredential/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-08-24T08:05:05.4886641Z\",\"updatedOn\":\"2022-08-24T08:05:05.4886641Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba79058c-0414-4a34-9e42-c3399d80cd5a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ba79058c-0414-4a34-9e42-c3399d80cd5a\"},{\"properties\":{\"roleName\":\"Data - Labeling - Labeler\",\"type\":\"BuiltInRole\",\"description\":\"Can label - data in Labeling.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.MachineLearningServices/workspaces/read\",\"Microsoft.MachineLearningServices/workspaces/experiments/runs/read\",\"Microsoft.MachineLearningServices/workspaces/labeling/projects/read\",\"Microsoft.MachineLearningServices/workspaces/labeling/projects/summary/read\",\"Microsoft.MachineLearningServices/workspaces/labeling/labels/read\",\"Microsoft.MachineLearningServices/workspaces/labeling/labels/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-09-02T20:34:03.6536098Z\",\"updatedOn\":\"2022-09-08T21:01:04.9492408Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c6decf44-fd0a-444c-a844-d653c394e7ab\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c6decf44-fd0a-444c-a844-d653c394e7ab\"},{\"properties\":{\"roleName\":\"Role - Based Access Control Administrator (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Manage - access to Azure resources by assigning roles using Azure RBAC. This role does - not allow you to manage access using other ways, such as Azure Policy.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/roleAssignments/write\",\"Microsoft.Authorization/roleAssignments/delete\",\"*/read\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-09-07T00:28:32.1779656Z\",\"updatedOn\":\"2022-09-07T00:28:32.1779656Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f58310d9-a9f6-439a-9e8d-f62e7b41a168\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f58310d9-a9f6-439a-9e8d-f62e7b41a168\"},{\"properties\":{\"roleName\":\"Template - Spec Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Allows full - access to Template Spec operations at the assigned scope.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/templateSpecs/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-09-07T23:56:38.8525330Z\",\"updatedOn\":\"2022-09-07T23:56:38.8525330Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1c9b6475-caf0-4164-b5a1-2142a7116f4b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1c9b6475-caf0-4164-b5a1-2142a7116f4b\"},{\"properties\":{\"roleName\":\"Template - Spec Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows read access - to Template Specs at the assigned scope.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/templateSpecs/*/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-09-07T23:56:38.8525330Z\",\"updatedOn\":\"2022-09-07T23:56:38.8525330Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/392ae280-861d-42bd-9ea5-08ee6d83b80e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"392ae280-861d-42bd-9ea5-08ee6d83b80e\"},{\"properties\":{\"roleName\":\"Microsoft - Sentinel Playbook Operator\",\"type\":\"BuiltInRole\",\"description\":\"Microsoft - Sentinel Playbook Operator\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Logic/workflows/read\",\"Microsoft.Logic/workflows/triggers/listCallbackUrl/action\",\"Microsoft.Web/sites/hostruntime/webhooks/api/workflows/triggers/listCallbackUrl/action\",\"Microsoft.Web/sites/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-09-20T17:17:53.1732035Z\",\"updatedOn\":\"2022-12-07T18:28:46.3977543Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/51d6186e-6489-4900-b93f-92e23144cca5\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"51d6186e-6489-4900-b93f-92e23144cca5\"},{\"properties\":{\"roleName\":\"Deployment - Environments User\",\"type\":\"BuiltInRole\",\"description\":\"Provides access - to manage environment resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DevCenter/projects/read\",\"Microsoft.DevCenter/projects/*/read\",\"Microsoft.Fidalgo/projects/read\",\"Microsoft.Fidalgo/projects/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Authorization/*/read\"],\"notActions\":[\"Microsoft.DevCenter/projects/pools/read\",\"Microsoft.Fidalgo/projects/pools/read\",\"Microsoft.DevCenter/projects/pools/schedules/read\"],\"dataActions\":[\"Microsoft.DevCenter/projects/users/environments/adminRead/action\",\"Microsoft.DevCenter/projects/users/environments/userWrite/action\",\"Microsoft.DevCenter/projects/users/environments/userDelete/action\",\"Microsoft.DevCenter/projects/users/environments/adminAction/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-09-21T23:02:10.9267534Z\",\"updatedOn\":\"2022-10-12T10:02:51.4519755Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18e40d4e-8d2e-438d-97e1-9528336e149c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"18e40d4e-8d2e-438d-97e1-9528336e149c\"},{\"properties\":{\"roleName\":\"Azure - Spring Apps Connect Role\",\"type\":\"BuiltInRole\",\"description\":\"Azure - Spring Apps Connect Role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/apps/deployments/connect/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-09-23T09:06:33.6408942Z\",\"updatedOn\":\"2022-09-23T09:06:33.6408942Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/80558df3-64f9-4c0f-b32d-e5094b036b0b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"80558df3-64f9-4c0f-b32d-e5094b036b0b\"},{\"properties\":{\"roleName\":\"Azure - Spring Apps Remote Debugging Role\",\"type\":\"BuiltInRole\",\"description\":\"Azure - Spring Apps Remote Debugging Role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/apps/deployments/remotedebugging/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-09-23T09:21:46.6422475Z\",\"updatedOn\":\"2022-09-23T09:21:46.6422475Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a99b0159-1064-4c22-a57b-c9b3caa1c054\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a99b0159-1064-4c22-a57b-c9b3caa1c054\"},{\"properties\":{\"roleName\":\"AzureML - Registry User\",\"type\":\"BuiltInRole\",\"description\":\"Can perform all - actions on Machine Learning Services Registry assets\_as well as get Registry - resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.MachineLearningServices/registries/read\",\"Microsoft.MachineLearningServices/registries/assets/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-09-27T17:15:01.5950677Z\",\"updatedOn\":\"2022-09-27T17:15:01.5950677Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1823dd4f-9b8c-4ab6-ab4e-7397a3684615\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1823dd4f-9b8c-4ab6-ab4e-7397a3684615\"},{\"properties\":{\"roleName\":\"AzureML - Compute Operator\",\"type\":\"BuiltInRole\",\"description\":\"Can access and - perform CRUD operations on Machine Learning Services managed compute resources - (including Notebook VMs).\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.MachineLearningServices/workspaces/computes/*\",\"Microsoft.MachineLearningServices/workspaces/notebooks/vm/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-09-27T17:15:01.5950677Z\",\"updatedOn\":\"2022-09-27T17:15:01.5950677Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e503ece1-11d0-4e8e-8e2c-7a6c3bf38815\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e503ece1-11d0-4e8e-8e2c-7a6c3bf38815\"},{\"properties\":{\"roleName\":\"Azure - Center for SAP solutions service role\",\"type\":\"BuiltInRole\",\"description\":\"Azure - Center for SAP solutions service role - This role is intended to be used for - providing the permissions to user assigned managed identity. Azure Center - for SAP solutions will use this identity to deploy and manage SAP systems.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/write\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/loadBalancers/write\",\"Microsoft.Network/loadBalancers/backendAddressPools/read\",\"Microsoft.Network/loadBalancers/backendAddressPools/write\",\"Microsoft.Network/loadBalancers/frontendIPConfigurations/read\",\"Microsoft.Network/loadBalancers/loadBalancingRules/read\",\"Microsoft.Network/loadBalancers/inboundNatRules/read\",\"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/logDefinitions/read\",\"Microsoft.Network/loadBalancers/networkInterfaces/read\",\"Microsoft.Network/loadBalancers/outboundRules/read\",\"Microsoft.Network/loadBalancers/virtualMachines/read\",\"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/networkInterfaces/ipconfigurations/read\",\"Microsoft.Network/networkInterfaces/loadBalancers/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\"Microsoft.Network/virtualNetworks/virtualMachines/read\",\"Microsoft.Network/networkInterfaces/ipconfigurations/join/action\",\"Microsoft.Network/privateEndpoints/read\",\"Microsoft.Network/privateEndpoints/write\",\"Microsoft.Network/networkInterfaces/join/action\",\"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\"Microsoft.Network/loadBalancers/frontendIPConfigurations/join/action\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/virtualNetworks/subnets/joinLoadBalancer/action\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/write\",\"Microsoft.Storage/storageAccounts/PrivateEndpointConnectionsApproval/action\",\"Microsoft.Storage/storageAccounts/blobServices/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/fileServices/read\",\"Microsoft.Storage/storageAccounts/fileServices/write\",\"Microsoft.Storage/storageAccounts/fileServices/shares/read\",\"Microsoft.Storage/storageAccounts/fileServices/shares/write\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/virtualMachines/write\",\"Microsoft.Compute/virtualMachines/instanceView/read\",\"Microsoft.Compute/availabilitySets/read\",\"Microsoft.Compute/availabilitySets/write\",\"Microsoft.Compute/skus/read\",\"Microsoft.Compute/sshPublicKeys/read\",\"Microsoft.Compute/virtualMachines/extensions/read\",\"Microsoft.Compute/virtualMachines/extensions/write\",\"Microsoft.Compute/virtualMachines/extensions/delete\",\"Microsoft.Compute/disks/read\",\"Microsoft.Compute/disks/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-10-03T17:04:07.6891007Z\",\"updatedOn\":\"2023-02-02T07:25:11.5651483Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/aabbc5dd-1af0-458b-a942-81af88f9c138\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"aabbc5dd-1af0-458b-a942-81af88f9c138\"},{\"properties\":{\"roleName\":\"Azure - Center for SAP solutions reader\",\"type\":\"BuiltInRole\",\"description\":\"This - role provides read access to all capabilities of Azure Center for SAP solutions.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Workloads/sapvirtualInstances/*/read\",\"Microsoft.Workloads/Locations/*/action\",\"Microsoft.Workloads/Operations/read\",\"Microsoft.Workloads/Locations/OperationStatuses/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/ipconfigurations/read\",\"Microsoft.Network/networkInterfaces/loadBalancers/read\",\"Microsoft.Network/networkInterfaces/providers/Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/loadBalancers/backendAddressPools/read\",\"Microsoft.Network/loadBalancers/frontendIPConfigurations/read\",\"Microsoft.Network/loadBalancers/loadBalancingRules/read\",\"Microsoft.Network/loadBalancers/inboundNatRules/read\",\"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/logDefinitions/read\",\"Microsoft.Network/loadBalancers/networkInterfaces/read\",\"Microsoft.Network/loadBalancers/outboundRules/read\",\"Microsoft.Network/loadBalancers/virtualMachines/read\",\"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Network/privateEndpoints/read\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/blobServices/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/fileServices/read\",\"Microsoft.Storage/storageAccounts/fileServices/shares/read\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/availabilitySets/read\",\"Microsoft.Compute/virtualMachines/extensions/read\",\"Microsoft.Compute/disks/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-10-03T17:04:07.6891007Z\",\"updatedOn\":\"2023-02-02T07:09:57.8536861Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/05352d14-a920-4328-a0de-4cbe7430e26b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"05352d14-a920-4328-a0de-4cbe7430e26b\"},{\"properties\":{\"roleName\":\"Azure - Center for SAP solutions administrator\",\"type\":\"BuiltInRole\",\"description\":\"This - role provides read and write access to all capabilities of Azure Center for - SAP solutions.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Workloads/sapvirtualInstances/*/read\",\"Microsoft.Workloads/sapVirtualInstances/*/write\",\"Microsoft.Workloads/sapVirtualInstances/*/delete\",\"Microsoft.Workloads/Locations/*/action\",\"Microsoft.Workloads/Locations/*/read\",\"Microsoft.Workloads/sapVirtualInstances/*/start/action\",\"Microsoft.Workloads/sapVirtualInstances/*/stop/action\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/write\",\"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/ipconfigurations/read\",\"Microsoft.Network/networkInterfaces/loadBalancers/read\",\"Microsoft.Network/networkInterfaces/providers/Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/loadBalancers/backendAddressPools/read\",\"Microsoft.Network/loadBalancers/frontendIPConfigurations/read\",\"Microsoft.Network/loadBalancers/loadBalancingRules/read\",\"Microsoft.Network/loadBalancers/inboundNatRules/read\",\"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/logDefinitions/read\",\"Microsoft.Network/loadBalancers/networkInterfaces/read\",\"Microsoft.Network/loadBalancers/outboundRules/read\",\"Microsoft.Network/loadBalancers/virtualMachines/read\",\"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Network/privateEndpoints/read\",\"Microsoft.Network/networkSecurityGroups/join/action\",\"Microsoft.Network/routeTables/join/action\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/blobServices/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/fileServices/read\",\"Microsoft.Storage/storageAccounts/fileServices/shares/read\",\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/availabilitySets/read\",\"Microsoft.Compute/sshPublicKeys/read\",\"Microsoft.Compute/sshPublicKeys/write\",\"Microsoft.Compute/sshPublicKeys/*/generateKeyPair/action\",\"Microsoft.Compute/virtualMachines/extensions/read\",\"Microsoft.Compute/virtualMachines/extensions/delete\",\"Microsoft.Compute/disks/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\"],\"notDataActions\":[]}],\"createdOn\":\"2022-10-04T17:14:14.5212968Z\",\"updatedOn\":\"2023-02-03T18:16:57.0039493Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7b0c7e81-271f-4c71-90bf-e30bdfdbc2f7\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7b0c7e81-271f-4c71-90bf-e30bdfdbc2f7\"},{\"properties\":{\"roleName\":\"Azure - Traffic Controller Configuration Manager\",\"type\":\"BuiltInRole\",\"description\":\"Allows - access to traffic controller resource. Also allows all confiuration Updates - on traffic controller\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ServiceNetworking/trafficControllers/read\",\"Microsoft.ServiceNetworking/trafficControllers/write\",\"Microsoft.ServiceNetworking/trafficControllers/delete\",\"Microsoft.ServiceNetworking/trafficControllers/frontends/read\",\"Microsoft.ServiceNetworking/trafficControllers/frontends/write\",\"Microsoft.ServiceNetworking/trafficControllers/frontends/delete\",\"Microsoft.ServiceNetworking/trafficControllers/associations/read\",\"Microsoft.ServiceNetworking/trafficControllers/associations/write\",\"Microsoft.ServiceNetworking/trafficControllers/associations/delete\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ServiceNetworking/trafficControllers/serviceRoutingConfigurations/read\",\"Microsoft.ServiceNetworking/trafficControllers/serviceRoutingConfigurations/write\",\"Microsoft.ServiceNetworking/trafficControllers/serviceRoutingConfigurations/delete\"],\"notDataActions\":[]}],\"createdOn\":\"2022-10-06T03:15:51.8980834Z\",\"updatedOn\":\"2022-10-28T02:07:33.9587792Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fbc52c3f-28ad-4303-a892-8a056630b8f1\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fbc52c3f-28ad-4303-a892-8a056630b8f1\"},{\"properties\":{\"roleName\":\"FHIR - SMART User\",\"type\":\"BuiltInRole\",\"description\":\"Role allows user to - access FHIR Service according to SMART on FHIR specification\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/read\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\",\"Microsoft.HealthcareApis/services/fhir/resources/smart/action\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/smart/action\"],\"notDataActions\":[]}],\"createdOn\":\"2022-10-26T17:20:25.4418773Z\",\"updatedOn\":\"2022-12-07T20:30:43.3899302Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4ba50f17-9666-485c-a643-ff00808643f0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4ba50f17-9666-485c-a643-ff00808643f0\"},{\"properties\":{\"roleName\":\"Cognitive - Services OpenAI Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Full - access including the ability to fine-tune, deploy and generate text\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/OpenAI/*\"],\"notDataActions\":[]}],\"createdOn\":\"2022-10-26T22:25:33.3012125Z\",\"updatedOn\":\"2022-10-26T22:25:33.3012125Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a001fd3d-188f-4b5d-821b-7da978bf7442\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a001fd3d-188f-4b5d-821b-7da978bf7442\"},{\"properties\":{\"roleName\":\"Cognitive - Services OpenAI User\",\"type\":\"BuiltInRole\",\"description\":\"Ability - to view files, models, deployments. Readers can't make any changes They can - inference\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/OpenAI/*/read\",\"Microsoft.CognitiveServices/accounts/OpenAI/engines/completions/action\",\"Microsoft.CognitiveServices/accounts/OpenAI/engines/search/action\",\"Microsoft.CognitiveServices/accounts/OpenAI/engines/generate/action\",\"Microsoft.CognitiveServices/accounts/OpenAI/engines/completions/write\",\"Microsoft.CognitiveServices/accounts/OpenAI/deployments/search/action\",\"Microsoft.CognitiveServices/accounts/OpenAI/deployments/completions/action\",\"Microsoft.CognitiveServices/accounts/OpenAI/deployments/embeddings/action\",\"Microsoft.CognitiveServices/accounts/OpenAI/deployments/completions/write\"],\"notDataActions\":[]}],\"createdOn\":\"2022-10-26T22:25:33.3012125Z\",\"updatedOn\":\"2022-10-26T22:25:33.3012125Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5e0bd9bd-7b93-4f28-af87-19fc36ad61bd\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5e0bd9bd-7b93-4f28-af87-19fc36ad61bd\"},{\"properties\":{\"roleName\":\"Impact - Reporter\",\"type\":\"BuiltInRole\",\"description\":\"Allows access to create/report, - read and delete impacts\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Impact/WorkloadImpacts/*\",\"Microsoft.Impact/ImpactCategories/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-10-27T22:34:10.0140145Z\",\"updatedOn\":\"2022-11-14T16:02:29.4536312Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36e80216-a7e8-4f42-a7e1-f12c98cbaf8a\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"36e80216-a7e8-4f42-a7e1-f12c98cbaf8a\"},{\"properties\":{\"roleName\":\"Impact - Reader\",\"type\":\"BuiltInRole\",\"description\":\"Allows read-only access - to reported impacts and impact categories\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Impact/WorkloadImpacts/read\",\"Microsoft.Impact/ImpactCategories/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-10-27T22:49:23.8706555Z\",\"updatedOn\":\"2022-11-14T16:02:29.4536312Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/68ff5d27-c7f5-4fa9-a21c-785d0df7bd9e\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"68ff5d27-c7f5-4fa9-a21c-785d0df7bd9e\"},{\"properties\":{\"roleName\":\"Azure - Kubernetes Service Cluster Monitoring User\",\"type\":\"BuiltInRole\",\"description\":\"List - cluster monitoring user credential action.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerService/managedClusters/listClusterMonitoringUserCredential/action\",\"Microsoft.ContainerService/managedClusters/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-11-14T16:02:29.4380066Z\",\"updatedOn\":\"2023-02-06T16:01:22.3399796Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1afdec4b-e479-420e-99e7-f82237c7c5e6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1afdec4b-e479-420e-99e7-f82237c7c5e6\"},{\"properties\":{\"roleName\":\"ContainerApp - Reader\",\"type\":\"BuiltInRole\",\"description\":\"View all containerapp - resources, but does not allow you to make any changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.App/containerApps/*/read\",\"Microsoft.App/containerApps/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-11-14T16:02:29.4380066Z\",\"updatedOn\":\"2023-01-02T16:08:35.1119461Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ad2dd5fb-cd4b-4fd4-a9b6-4fed3630980b\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ad2dd5fb-cd4b-4fd4-a9b6-4fed3630980b\"},{\"properties\":{\"roleName\":\"Azure - Connected Machine Resource Manager\",\"type\":\"BuiltInRole\",\"description\":\"Custom - Role for AzureStackHCI RP to manage hybrid compute machines and hybrid connectivity - endpoints in a resource group\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridConnectivity/endpoints/read\",\"Microsoft.HybridConnectivity/endpoints/write\",\"Microsoft.HybridCompute/machines/read\",\"Microsoft.HybridCompute/machines/write\",\"Microsoft.HybridCompute/machines/delete\",\"Microsoft.HybridCompute/machines/extensions/read\",\"Microsoft.HybridCompute/machines/extensions/write\",\"Microsoft.HybridCompute/machines/extensions/delete\",\"Microsoft.HybridCompute/*/read\",\"Microsoft.HybridCompute/machines/UpgradeExtensions/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-11-15T16:12:10.4398106Z\",\"updatedOn\":\"2022-11-16T00:36:22.7971938Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f5819b54-e033-4d82-ac66-4fec3cbf3f4c\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f5819b54-e033-4d82-ac66-4fec3cbf3f4c\"},{\"properties\":{\"roleName\":\"SqlDb - Migration Role\",\"type\":\"BuiltInRole\",\"description\":\"Role for SqlDb - migration\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Sql/servers/read\",\"Microsoft.Sql/servers/write\",\"Microsoft.Sql/servers/databases/read\",\"Microsoft.Sql/servers/databases/write\",\"Microsoft.Sql/servers/databases/delete\",\"Microsoft.DataMigration/locations/operationResults/read\",\"Microsoft.DataMigration/locations/operationStatuses/read\",\"Microsoft.DataMigration/locations/sqlMigrationServiceOperationResults/read\",\"Microsoft.DataMigration/databaseMigrations/write\",\"Microsoft.DataMigration/databaseMigrations/read\",\"Microsoft.DataMigration/databaseMigrations/delete\",\"Microsoft.DataMigration/databaseMigrations/cancel/action\",\"Microsoft.DataMigration/databaseMigrations/cutover/action\",\"Microsoft.DataMigration/sqlMigrationServices/write\",\"Microsoft.DataMigration/sqlMigrationServices/delete\",\"Microsoft.DataMigration/sqlMigrationServices/read\",\"Microsoft.DataMigration/sqlMigrationServices/listAuthKeys/action\",\"Microsoft.DataMigration/sqlMigrationServices/regenerateAuthKeys/action\",\"Microsoft.DataMigration/sqlMigrationServices/deleteNode/action\",\"Microsoft.DataMigration/sqlMigrationServices/listMonitoringData/action\",\"Microsoft.DataMigration/sqlMigrationServices/listMigrations/read\",\"Microsoft.DataMigration/sqlMigrationServices/MonitoringData/read\",\"Microsoft.DataMigration/register/action\",\"Microsoft.DataMigration/operations/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-12-07T23:03:17.2201214Z\",\"updatedOn\":\"2023-02-20T16:07:58.6344876Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/189207d4-bb67-4208-a635-b06afe8b2c57\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"189207d4-bb67-4208-a635-b06afe8b2c57\"},{\"properties\":{\"roleName\":\"Bayer - Ag Powered Services GDU Solution\",\"type\":\"BuiltInRole\",\"description\":\"Provide - access to GDU Solution by Bayer Ag Powered Services\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/read\",\"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\"],\"notDataActions\":[]}],\"createdOn\":\"2023-01-12T10:08:47.0099993Z\",\"updatedOn\":\"2023-01-25T16:44:04.4289920Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c4bc862a-3b64-4a35-a021-a380c159b042\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c4bc862a-3b64-4a35-a021-a380c159b042\"},{\"properties\":{\"roleName\":\"Bayer - Ag Powered Services Imagery Solution\",\"type\":\"BuiltInRole\",\"description\":\"Provide - access to Imagery Solution by Bayer Ag Powered Services\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/read\",\"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/write\",\"Microsoft.AgFoodPlatform/farmBeats/ingestionJobs/satelliteDataIngestionJobs/*\",\"Microsoft.AgFoodPlatform/farmBeats/scenes/*\",\"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\"],\"notDataActions\":[]}],\"createdOn\":\"2023-01-12T10:08:47.0099993Z\",\"updatedOn\":\"2023-01-25T16:44:04.4279945Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ef29765d-0d37-4119-a4f8-f9f9902c9588\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ef29765d-0d37-4119-a4f8-f9f9902c9588\"},{\"properties\":{\"roleName\":\"Azure - Center for SAP solutions Service role for management\",\"type\":\"BuiltInRole\",\"description\":\"This - role has permissions that the user assigned managed identity must have to - enable registration for the existing systems.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-01-13T09:08:35.1961741Z\",\"updatedOn\":\"2023-02-02T07:25:11.5651483Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0105a6b0-4bb9-43d2-982a-12806f9faddb\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0105a6b0-4bb9-43d2-982a-12806f9faddb\"},{\"properties\":{\"roleName\":\"Azure - Center for SAP solutions Management role\",\"type\":\"BuiltInRole\",\"description\":\"This - role has permissions which allow users to register existing systems, view - and manage systems.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-01-13T09:08:35.1961741Z\",\"updatedOn\":\"2023-02-02T07:25:11.5651483Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6d949e1d-41e2-46e3-8920-c6e4f31a8310\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6d949e1d-41e2-46e3-8920-c6e4f31a8310\"},{\"properties\":{\"roleName\":\"Kubernetes - Agentless Operator\",\"type\":\"BuiltInRole\",\"description\":\"Grants Microsoft - Defender for Cloud access to Azure Kubernetes Services\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings/write\",\"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings/read\",\"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings/delete\",\"Microsoft.ContainerService/managedClusters/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-01-13T13:11:09.1105477Z\",\"updatedOn\":\"2023-02-23T22:15:43.3067425Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d5a2ae44-610b-4500-93be-660a0c5f5ca6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d5a2ae44-610b-4500-93be-660a0c5f5ca6\"},{\"properties\":{\"roleName\":\"Azure - Usage Billing Data Sender\",\"type\":\"BuiltInRole\",\"description\":\"Azure - Usage Billing shared BuiltIn role to be used for all Customer Account Authentication\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.UsageBilling/accounts/inputs/send/action\"],\"notDataActions\":[]}],\"createdOn\":\"2023-01-13T20:45:56.3071212Z\",\"updatedOn\":\"2023-01-26T19:26:37.6422441Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f0310ce6-e953-4cf8-b892-fb1c87eaf7f6\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f0310ce6-e953-4cf8-b892-fb1c87eaf7f6\"},{\"properties\":{\"roleName\":\"SqlMI - Migration Role\",\"type\":\"BuiltInRole\",\"description\":\"Role for SqlMI - migration\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Sql/managedInstances/read\",\"Microsoft.Sql/managedInstances/write\",\"Microsoft.Sql/managedInstances/databases/read\",\"Microsoft.Sql/managedInstances/databases/write\",\"Microsoft.Sql/managedInstances/databases/delete\",\"Microsoft.Sql/managedInstances/metrics/read\",\"Microsoft.DataMigration/locations/operationResults/read\",\"Microsoft.DataMigration/locations/operationStatuses/read\",\"Microsoft.DataMigration/locations/sqlMigrationServiceOperationResults/read\",\"Microsoft.DataMigration/databaseMigrations/write\",\"Microsoft.DataMigration/databaseMigrations/read\",\"Microsoft.DataMigration/databaseMigrations/delete\",\"Microsoft.DataMigration/databaseMigrations/cancel/action\",\"Microsoft.DataMigration/databaseMigrations/cutover/action\",\"Microsoft.DataMigration/sqlMigrationServices/write\",\"Microsoft.DataMigration/sqlMigrationServices/delete\",\"Microsoft.DataMigration/sqlMigrationServices/read\",\"Microsoft.DataMigration/sqlMigrationServices/listAuthKeys/action\",\"Microsoft.DataMigration/sqlMigrationServices/regenerateAuthKeys/action\",\"Microsoft.DataMigration/sqlMigrationServices/deleteNode/action\",\"Microsoft.DataMigration/sqlMigrationServices/listMonitoringData/action\",\"Microsoft.DataMigration/sqlMigrationServices/listMigrations/read\",\"Microsoft.DataMigration/sqlMigrationServices/MonitoringData/read\",\"Microsoft.DataMigration/register/action\",\"Microsoft.DataMigration/operations/read\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/listkeys/action\",\"Microsoft.Storage/storageAccounts/blobServices/read\",\"Microsoft.Storage/storageAccounts/blobServices/write\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-01-31T16:13:11.2824316Z\",\"updatedOn\":\"2023-02-20T16:07:58.3295951Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1d335eef-eee1-47fe-a9e0-53214eba8872\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1d335eef-eee1-47fe-a9e0-53214eba8872\"},{\"properties\":{\"roleName\":\"Bayer - Ag Powered Services CWUM Solution User Role\",\"type\":\"BuiltInRole\",\"description\":\"Provide - access to CWUM Solution by Bayer Ag Powered Services\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/read\",\"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/write\",\"Microsoft.AgFoodPlatform/farmBeats/ingestionJobs/satelliteDataIngestionJobs/*\",\"Microsoft.AgFoodPlatform/farmBeats/scenes/*\",\"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\"],\"notDataActions\":[]}],\"createdOn\":\"2023-01-31T16:13:11.3570667Z\",\"updatedOn\":\"2023-02-24T15:42:49.5085315Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a9b99099-ead7-47db-8fcf-072597a61dfa\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a9b99099-ead7-47db-8fcf-072597a61dfa\"},{\"properties\":{\"roleName\":\"SqlVM - Migration Role\",\"type\":\"BuiltInRole\",\"description\":\"Role for SqlVM - migration\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DataMigration/locations/operationResults/read\",\"Microsoft.DataMigration/locations/operationStatuses/read\",\"Microsoft.DataMigration/locations/sqlMigrationServiceOperationResults/read\",\"Microsoft.DataMigration/databaseMigrations/write\",\"Microsoft.DataMigration/databaseMigrations/read\",\"Microsoft.DataMigration/databaseMigrations/delete\",\"Microsoft.DataMigration/databaseMigrations/cancel/action\",\"Microsoft.DataMigration/databaseMigrations/cutover/action\",\"Microsoft.DataMigration/sqlMigrationServices/write\",\"Microsoft.DataMigration/sqlMigrationServices/delete\",\"Microsoft.DataMigration/sqlMigrationServices/read\",\"Microsoft.DataMigration/sqlMigrationServices/listAuthKeys/action\",\"Microsoft.DataMigration/sqlMigrationServices/regenerateAuthKeys/action\",\"Microsoft.DataMigration/sqlMigrationServices/deleteNode/action\",\"Microsoft.DataMigration/sqlMigrationServices/listMonitoringData/action\",\"Microsoft.DataMigration/sqlMigrationServices/listMigrations/read\",\"Microsoft.DataMigration/sqlMigrationServices/MonitoringData/read\",\"Microsoft.DataMigration/register/action\",\"Microsoft.DataMigration/operations/read\",\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/listkeys/action\",\"Microsoft.Storage/storageAccounts/blobServices/read\",\"Microsoft.Storage/storageAccounts/blobServices/write\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.SqlVirtualMachine/sqlVirtualMachines/read\",\"Microsoft.SqlVirtualMachine/sqlVirtualMachines/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-01-31T16:13:11.3580681Z\",\"updatedOn\":\"2023-02-20T16:07:58.6444899Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ae8036db-e102-405b-a1b9-bae082ea436d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ae8036db-e102-405b-a1b9-bae082ea436d\"},{\"properties\":{\"roleName\":\"Azure - Front Door Domain Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can - manage Azure Front Door domains, but can't grant access to other users.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Cdn/operationresults/profileresults/customdomainresults/read\",\"Microsoft.Cdn/profiles/customdomains/read\",\"Microsoft.Cdn/profiles/customdomains/write\",\"Microsoft.Cdn/profiles/customdomains/delete\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-02-02T15:30:03.7531182Z\",\"updatedOn\":\"2023-02-02T15:30:03.7531182Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0ab34830-df19-4f8c-b84e-aa85b8afa6e8\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0ab34830-df19-4f8c-b84e-aa85b8afa6e8\"},{\"properties\":{\"roleName\":\"Azure - Front Door Secret Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can - view Azure Front Door secrets, but can't make changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Cdn/operationresults/profileresults/secretresults/read\",\"Microsoft.Cdn/profiles/secrets/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-02-02T15:30:03.7541192Z\",\"updatedOn\":\"2023-02-02T15:30:03.7541192Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0db238c4-885e-4c4f-a933-aa2cef684fca\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0db238c4-885e-4c4f-a933-aa2cef684fca\"},{\"properties\":{\"roleName\":\"Azure - Front Door Secret Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Can - manage Azure Front Door secrets, but can't grant access to other users.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Cdn/operationresults/profileresults/secretresults/read\",\"Microsoft.Cdn/profiles/secrets/read\",\"Microsoft.Cdn/profiles/secrets/write\",\"Microsoft.Cdn/profiles/secrets/delete\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-02-02T15:30:03.7531182Z\",\"updatedOn\":\"2023-02-02T15:30:03.7531182Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3f2eb865-5811-4578-b90a-6fc6fa0df8e5\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3f2eb865-5811-4578-b90a-6fc6fa0df8e5\"},{\"properties\":{\"roleName\":\"Azure - Front Door Domain Reader\",\"type\":\"BuiltInRole\",\"description\":\"Can - view Azure Front Door domains, but can't make changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Cdn/operationresults/profileresults/customdomainresults/read\",\"Microsoft.Cdn/profiles/customdomains/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-02-02T15:30:03.7551197Z\",\"updatedOn\":\"2023-02-02T15:30:03.7551197Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0f99d363-226e-4dca-9920-b807cf8e1a5f\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0f99d363-226e-4dca-9920-b807cf8e1a5f\"},{\"properties\":{\"roleName\":\"Azure - Stack HCI registration role\",\"type\":\"BuiltInRole\",\"description\":\"Custom - Azure role to allow subscription-level access to register Azure Stack HCI\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AzureStackHCI/register/action\",\"Microsoft.AzureStackHCI/Unregister/Action\",\"Microsoft.AzureStackHCI/clusters/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-02-03T05:08:48.3968454Z\",\"updatedOn\":\"2023-02-03T05:08:48.3968454Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bda0d508-adf1-4af0-9c28-88919fc3ae06\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bda0d508-adf1-4af0-9c28-88919fc3ae06\"},{\"properties\":{\"roleName\":\"MySQL - Backup And Export Operator\",\"type\":\"BuiltInRole\",\"description\":\"Grants - full access to manage backup and export resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DBforMySQL/flexibleServers/validateBackup/action\",\"Microsoft.DBforMySQL/flexibleServers/backupAndExport/action\",\"Microsoft.DBforMySQL/locations/operationResults/read\",\"Microsoft.DBforMySQL/locations/azureAsyncOperation/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-02-03T06:09:26.5657063Z\",\"updatedOn\":\"2023-02-14T16:16:58.8958825Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d18ad5f3-1baf-4119-b49b-d944edb1f9d0\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d18ad5f3-1baf-4119-b49b-d944edb1f9d0\"},{\"properties\":{\"roleName\":\"LocalNGFirewallAdministrator - role\",\"type\":\"BuiltInRole\",\"description\":\"Allows user to create, modify, - describe, or delete NGFirewalls.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"PaloAltoNetworks.Cloudngfw/firewalls/*\",\"PaloAltoNetworks.Cloudngfw/localRulestacks/read\",\"PaloAltoNetworks.Cloudngfw/globalRulestacks/read\",\"PaloAltoNetworks.Cloudngfw/Locations/operationStatuses/read\",\"Microsoft.OperationalInsights/workspaces/write\",\"Microsoft.OperationalInsights/workspaces/sharedKeys/read\",\"Microsoft.OperationalInsights/workspaces/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Support/*\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/publicIPAddresses/write\",\"Microsoft.Network/publicIPAddresses/read\",\"Microsoft.Network/publicIPAddresses/join/action\",\"Microsoft.Network/networkVirtualAppliances/read\",\"Microsoft.Network/networkVirtualAppliances/write\",\"Microsoft.Network/networkVirtualAppliances/delete\",\"Microsoft.Network/virtualHubs/read\",\"Microsoft.Network/virtualWans/read\",\"Microsoft.Network/virtualWans/virtualHubs/read\",\"Microsoft.Network/networkSecurityGroups/read\",\"Microsoft.Network/networkSecurityGroups/join/action\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-02-03T11:42:56.4098652Z\",\"updatedOn\":\"2023-03-13T15:13:22.9170402Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a8835c7d-b5cb-47fa-b6f0-65ea10ce07a2\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a8835c7d-b5cb-47fa-b6f0-65ea10ce07a2\"},{\"properties\":{\"roleName\":\"LocalRulestacksAdministrator - role\",\"type\":\"BuiltInRole\",\"description\":\"Allows users to create, - modify, describe, or delete Rulestacks.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"PaloAltoNetworks.Cloudngfw/localRulestacks/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Authorization/*/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-02-03T11:42:56.4108678Z\",\"updatedOn\":\"2023-02-20T16:07:58.3315958Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bfc3b73d-c6ff-45eb-9a5f-40298295bf20\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bfc3b73d-c6ff-45eb-9a5f-40298295bf20\"},{\"properties\":{\"roleName\":\"Azure - Extension for SQL Server Deployment\",\"type\":\"BuiltInRole\",\"description\":\"Microsoft.AzureArcData - service role to enable deployment of Azure Extension for SQL Server\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/deployments/write\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-03-09T19:23:30.8734404Z\",\"updatedOn\":\"2023-03-09T19:23:30.8734404Z\",\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7392c568-9289-4bde-aaaa-b7131215889d\",\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7392c568-9289-4bde-aaaa-b7131215889d\"}]}" + string: "{\"value\":[{\"properties\":{\"roleName\":\"Avere Cluster Create\"\ + ,\"type\":\"CustomRole\",\"description\":\"Avere cluster create role used\ + \ by the Avere controller to create a vFXT cluster.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Authorization/roleAssignments/*\",\"Microsoft.Authorization/roleDefinitions/*\"\ + ,\"Microsoft.Compute/*/read\",\"Microsoft.Compute/availabilitySets/*\",\"\ + Microsoft.Compute/virtualMachines/*\",\"Microsoft.Network/*/read\",\"Microsoft.Network/networkInterfaces/*\"\ + ,\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/virtualNetworks/subnets/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/resourceGroups/resources/read\"\ + ,\"Microsoft.Storage/*/read\",\"Microsoft.Storage/storageAccounts/listKeys/action\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2018-11-29T18:46:55.0492387Z\",\"updatedOn\":\"2018-11-29T18:46:55.0492387Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a7b1b19a-0e83-4fe5-935c-faaefbfd18c3\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a7b1b19a-0e83-4fe5-935c-faaefbfd18c3\"\ + },{\"properties\":{\"roleName\":\"Avere Cluster Runtime Operator\",\"type\"\ + :\"CustomRole\",\"description\":\"Avere cluster runtime role used by Avere\ + \ clusters running in subscriptions, for the purpose of failing over IP addresses,\ + \ accessing BLOB storage, etc\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Network/networkInterfaces/read\"\ + ,\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/virtualNetworks/subnets/read\"\ + ,\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/networkSecurityGroups/join/action\"\ + ,\"Microsoft.Network/routeTables/read\",\"Microsoft.Network/routeTables/routes/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/delete\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/write\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2018-08-26T00:41:26.2170858Z\",\"\ + updatedOn\":\"2018-08-26T00:41:26.2170858Z\",\"createdBy\":\"dda50086-5e3d-4a4b-b8bc-f54771104d89\"\ + ,\"updatedBy\":\"dda50086-5e3d-4a4b-b8bc-f54771104d89\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e078ab98-ef3a-4c9a-aba7-12f5172b45d0\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e078ab98-ef3a-4c9a-aba7-12f5172b45d0\"\ + },{\"properties\":{\"roleName\":\"Azure Service Deploy Release Management\ + \ Contributor\",\"type\":\"CustomRole\",\"description\":\"Contributor role\ + \ for services deploying through Azure Service Deploy.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"*\"],\"notActions\":[\"Microsoft.Authorization/*/Delete\"\ + ,\"Microsoft.Authorization/*/Write\"],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2016-02-04T02:26:31.5413362Z\",\"updatedOn\":\"2018-01-08T20:20:16.3660174Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/21d96096-b162-414a-8302-d8354f9d91b2\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"21d96096-b162-414a-8302-d8354f9d91b2\"\ + },{\"properties\":{\"roleName\":\"CAL-Custom-Role\",\"type\":\"CustomRole\"\ + ,\"description\":\"Lets SAP Cloud Appliance Library application manage Network\ + \ and Compute services, manage Resource Groups and Management locks.\",\"\ + assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/locks/*\"\ + ,\"Microsoft.Authorization/roleDefinitions/*\",\"Microsoft.Authorization/roleAssignments/*\"\ + ,\"Microsoft.Compute/*\",\"Microsoft.Network/*\",\"Microsoft.Resources/*\"\ + ,\"Microsoft.Storage/*\",\"Microsoft.ContainerService/*\",\"Microsoft.ContainerRegistry/*\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2018-05-14T19:30:51.0664585Z\",\"updatedOn\":\"2019-02-19T19:11:57.5963229Z\"\ + ,\"createdBy\":\"dda50086-5e3d-4a4b-b8bc-f54771104d89\",\"updatedBy\":null},\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7b266cd7-0bba-4ae2-8423-90ede5e1e898\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7b266cd7-0bba-4ae2-8423-90ede5e1e898\"\ + },{\"properties\":{\"roleName\":\"Dsms Role (deprecated)\",\"type\":\"CustomRole\"\ + ,\"description\":\"Custom role used by Dsms to perform operations. Can list\ + \ and regnerate storage account keys.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.ClassicStorage/storageAccounts/listKeys/action\"\ + ,\"Microsoft.ClassicStorage/storageAccounts/regenerateKey/action\",\"Microsoft.Storage/storageAccounts/listkeys/action\"\ + ,\"Microsoft.Storage/storageAccounts/regeneratekey/action\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-17T18:02:11.1225951Z\"\ + ,\"updatedOn\":\"2018-01-13T00:21:52.7211696Z\",\"createdBy\":\"ca5f3715-e7dd-427b-b2db-45b6a4a2df87\"\ + ,\"updatedBy\":\"ca5f3715-e7dd-427b-b2db-45b6a4a2df87\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b91f4c0b-46e3-47bb-a242-eecfe23b3b5b\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b91f4c0b-46e3-47bb-a242-eecfe23b3b5b\"\ + },{\"properties\":{\"roleName\":\"Dsms Role (do not use)\",\"type\":\"CustomRole\"\ + ,\"description\":\"Custom role used by Dsms to perform operations. Can list\ + \ and regnerate storage account keys.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.ClassicStorage/storageAccounts/listKeys/action\"\ + ,\"Microsoft.ClassicStorage/storageAccounts/regenerateKey/action\",\"Microsoft.Storage/storageAccounts/listkeys/action\"\ + ,\"Microsoft.Storage/storageAccounts/regeneratekey/action\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-02-01T07:56:12.5880222Z\"\ + ,\"updatedOn\":\"2018-08-09T17:53:48.5432297Z\",\"createdBy\":\"becb4b6b-fe16-413b-a5c3-90355e0b2982\"\ + ,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7aff565e-6c55-448d-83db-ccf482c6da2f\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7aff565e-6c55-448d-83db-ccf482c6da2f\"\ + },{\"properties\":{\"roleName\":\"ExpressRoute Administrator\",\"type\":\"\ + CustomRole\",\"description\":\"Can create, delete and manage ExpressRoutes\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/locks/*\"\ + ,\"Microsoft.Authorization/policyAssignments/*\",\"Microsoft.Authorization/policyDefinitions/*\"\ + ,\"Microsoft.Authorization/roleAssignments/*\",\"Microsoft.ClassicNetwork/*\"\ + ,\"Microsoft.EventGrid/*\",\"Microsoft.Insights/*\",\"Microsoft.Network/*\"\ + ,\"Microsoft.Resources/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2018-08-31T03:51:32.2843055Z\",\"updatedOn\":\"2019-03-20T22:55:18.8222085Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a48d7896-14b4-4889-afef-fbb65a96e5a2\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a48d7896-14b4-4889-afef-fbb65a96e5a2\"\ + },{\"properties\":{\"roleName\":\"GenevaWarmPathResourceContributor\",\"type\"\ + :\"CustomRole\",\"description\":\"Can manage service bus and storage accounts.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EventHub/namespaces/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/*\",\"Microsoft.ServiceBus/namespaces/*\"\ + ,\"Microsoft.Storage/storageAccounts/*\",\"Microsoft.Storage/storageAccounts/managementPolicies/write\"\ + ,\"Microsoft.Storage/storageAccounts/managementPolicies/read\",\"Microsoft.Storage/storageAccounts/managementPolicies/delete\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2017-03-14T22:30:10.1999436Z\",\"updatedOn\":\"2022-02-28T23:26:40.0052537Z\"\ + ,\"createdBy\":null,\"updatedBy\":\"acis\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9f15f5f5-77bd-413a-aa88-4b9c68b1e7bc\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9f15f5f5-77bd-413a-aa88-4b9c68b1e7bc\"\ + },{\"properties\":{\"roleName\":\"masterreader\",\"type\":\"CustomRole\",\"\ + description\":\"Lets you view everything, but not make any changes.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"*/read\"],\"notActions\":[],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2017-11-14T23:38:05.3353858Z\"\ + ,\"updatedOn\":\"2017-11-14T23:38:05.3353858Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a48d7796-14b4-4889-afef-fbb65a93e5a2\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a48d7796-14b4-4889-afef-fbb65a93e5a2\"\ + },{\"properties\":{\"roleName\":\"Microsoft OneAsset Reader\",\"type\":\"\ + CustomRole\",\"description\":\"This role is for Microsoft OneAsset team (CSEO)\ + \ to track internal security compliance and resource utilization.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/virtualMachines/*/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2019-03-27T23:51:08.6333052Z\",\"updatedOn\":\"2019-04-02T20:35:43.3396263Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd1bb084-1503-4bd2-99c0-630220046786\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fd1bb084-1503-4bd2-99c0-630220046786\"\ + },{\"properties\":{\"roleName\":\"Office DevOps\",\"type\":\"CustomRole\"\ + ,\"description\":\"Custom access for developers to operations but not secrets.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/virtualMachineScaleSets/restart/action\"\ + ,\"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/restart/action\"\ + ,\"Microsoft.Sql/servers/databases/replicationLinks/delete\",\"Microsoft.Sql/servers/databases/replicationLinks/failover/action\"\ + ,\"Microsoft.Sql/servers/databases/replicationLinks/forceFailoverAllowDataLoss/action\"\ + ,\"Microsoft.Sql/servers/databases/replicationLinks/operationResults/read\"\ + ,\"Microsoft.Sql/servers/databases/replicationLinks/read\",\"Microsoft.Sql/servers/databases/replicationLinks/unlink/action\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2016-10-07T08:11:46.1639398Z\",\"updatedOn\":\"2017-03-16T18:43:08.3234306Z\"\ + ,\"createdBy\":\"25aea6be-b605-4347-a92d-33e178e412ec\",\"updatedBy\":\"25aea6be-b605-4347-a92d-33e178e412ec\"\ + },\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7fd64851-3279-459b-b614-e2b2ba760f5b\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7fd64851-3279-459b-b614-e2b2ba760f5b\"\ + },{\"properties\":{\"roleName\":\"GenevaWarmPathStorageBlobContributor\",\"\ + type\":\"CustomRole\",\"description\":\"Geneva Warm Path Storage Blob Contributor\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/delete\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/lease/action\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/write\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/lock/action\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/read\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/write\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/extend/action\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies/delete\"\ + ,\"Microsoft.Storage/storageAccounts/managementPolicies/write\",\"Microsoft.Storage/storageAccounts/managementPolicies/read\"\ + ,\"Microsoft.Storage/storageAccounts/managementPolicies/delete\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-12-06T22:46:27.1365630Z\"\ + ,\"updatedOn\":\"2022-02-28T23:26:40.4152515Z\",\"createdBy\":null,\"updatedBy\"\ + :\"acis\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a16c43ca-2d67-4dcd-9ded-6412f5edc51a\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a16c43ca-2d67-4dcd-9ded-6412f5edc51a\"\ + },{\"properties\":{\"roleName\":\"ServiceAssociationLink Role for AKS\",\"\ + type\":\"CustomRole\",\"description\":\"Can read/write SAL for AKS\",\"assignableScopes\"\ + :[\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ,\"/subscriptions/00000000-0000-0000-0000-000000000000\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/delete\"\ + ,\"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/read\"\ + ,\"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/write\"\ + ,\"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/details/read\"\ + ,\"Microsoft.Network/virtualNetworks/subnets/serviceAssociationLinks/validate/action\"\ + ,\"Microsoft.Network/locations/validateResourceOwnership/action\",\"Microsoft.Network/locations/setResourceOwnership/action\"\ + ,\"Microsoft.Network/locations/effectiveResourceOwnership/action\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-07-02T12:55:28.9964072Z\"\ + ,\"updatedOn\":\"2023-03-30T05:31:13.5779696Z\",\"createdBy\":\"09914860-7ec9-4151-8431-31797899a359\"\ + ,\"updatedBy\":\"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e3c35f4c-e0ca-4b9e-a01e-5ebdd17e2ee7\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e3c35f4c-e0ca-4b9e-a01e-5ebdd17e2ee7\"\ + },{\"properties\":{\"roleName\":\"Azure Service Deploy Release Management\ + \ Restricted Owner\",\"type\":\"CustomRole\",\"description\":\"Restricted\ + \ owner role for services deploying through Azure Service Deploy.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"*\"],\"notActions\":[\"Microsoft.Authorization/*/Delete\"\ + ,\"Microsoft.Authorization/*/Write\"],\"dataActions\":[],\"notDataActions\"\ + :[]},{\"actions\":[\"Microsoft.Authorization/roleAssignments/write\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]},{\"actions\":[\"Microsoft.Authorization/locks/write\"\ + ,\"Microsoft.Authorization/policyassignments/write\",\"Microsoft.Authorization/policydefinitions/write\"\ + ,\"Microsoft.Authorization/policysetdefinitions/write\"],\"notActions\":[],\"\ + dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-03-07T22:16:06.8803898Z\"\ + ,\"updatedOn\":\"2022-03-07T22:16:06.8803898Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"94ddc4bc-25f5-4f3e-b527-c587da93cfe4\"\ + },{\"properties\":{\"roleName\":\"Azure Service Deploy Test Release Management\ + \ Key Vault Secrets User\",\"type\":\"CustomRole\",\"description\":\"Read\ + \ secret and certificate contents. Only works for key vaults that use the\ + \ 'Azure role-based access control' permission model.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.KeyVault/vaults/secrets/getSecret/action\",\"Microsoft.KeyVault/vaults/certificates/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2022-07-20T22:52:19.9944274Z\",\"\ + updatedOn\":\"2022-08-31T23:25:32.0649353Z\",\"createdBy\":\"19669f00-ee56-44ec-94c3-83159a41292e\"\ + ,\"updatedBy\":\"19669f00-ee56-44ec-94c3-83159a41292e\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/87d31636-ad85-4caa-802d-1535972b5612\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"87d31636-ad85-4caa-802d-1535972b5612\"\ + },{\"properties\":{\"roleName\":\"Azure Service Deploy Release Management\ + \ Key Vault Secrets User\",\"type\":\"CustomRole\",\"description\":\"Read\ + \ secret and certificate contents. Only works for key vaults that use the\ + \ 'Azure role-based access control' permission model.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.KeyVault/vaults/secrets/getSecret/action\",\"Microsoft.KeyVault/vaults/certificates/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2022-08-02T21:14:21.3331588Z\",\"\ + updatedOn\":\"2022-09-10T00:44:34.5904437Z\",\"createdBy\":\"19669f00-ee56-44ec-94c3-83159a41292e\"\ + ,\"updatedBy\":\"19669f00-ee56-44ec-94c3-83159a41292e\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/260691e6-68c2-47cf-bd4a-97d5fd4dbcd5\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"260691e6-68c2-47cf-bd4a-97d5fd4dbcd5\"\ + },{\"properties\":{\"roleName\":\"Test Azure Kubernetes Fleet Manager RBAC\ + \ Cluster Admin\",\"type\":\"CustomRole\",\"description\":\"Lets you manage\ + \ all resources in the fleet manager cluster\",\"assignableScopes\":[\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\"\ + ,\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\",\"Microsoft.ContainerService/fleets/read\",\"Microsoft.ContainerService/fleets/listCredentials/action\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/fleets/*\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2022-08-17T11:39:03.1408585Z\",\"\ + updatedOn\":\"2022-08-17T11:39:03.1408585Z\",\"createdBy\":\"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84\"\ + ,\"updatedBy\":\"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a2579cdb-7e74-4dff-87e9-f4324875d61e\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a2579cdb-7e74-4dff-87e9-f4324875d61e\"\ + },{\"properties\":{\"roleName\":\"AKS Deployment Reader for jingManagedCluster\"\ + ,\"type\":\"CustomRole\",\"description\":\"Lets you view all deployments in\ + \ cluster/namespace.\",\"assignableScopes\":[\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/managedClusters/apps/deployments/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2022-09-10T04:32:55.3076658Z\",\"\ + updatedOn\":\"2022-09-10T04:32:55.3076658Z\",\"createdBy\":\"b20822ae-dd26-4252-acb6-acf35dacf95a\"\ + ,\"updatedBy\":\"b20822ae-dd26-4252-acb6-acf35dacf95a\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/871a3349-9265-47a6-ac6d-5225b09c5d61\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"871a3349-9265-47a6-ac6d-5225b09c5d61\"\ + },{\"properties\":{\"roleName\":\"e2e-test-role-assignment-writer-2\",\"type\"\ + :\"CustomRole\",\"description\":\"role to allow e2e test client to create\ + \ contributor role assignment to Github repo in newly created resource groups\ + \ to test Github Workflows, accessible by both test subscriptions\",\"assignableScopes\"\ + :[\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"/subscriptions/00000000-0000-0000-0000-000000000000\"\ + ],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/roleAssignments/write\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2022-09-15T18:28:04.6706309Z\",\"updatedOn\":\"2022-09-15T18:28:04.6706309Z\"\ + ,\"createdBy\":\"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32\",\"updatedBy\":\"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32\"\ + },\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"55a29198-56db-4399-94a5-5ed3c83bda46\"\ + },{\"properties\":{\"roleName\":\"AzSecPackUAPolicyResourceContributorCorpProd\"\ + ,\"type\":\"CustomRole\",\"description\":\"Resource contributor role for allowing\ + \ the AzSecPack Policy to create and add user assigned identity to VM and\ + \ VMSS resources.\",\"assignableScopes\":[\"/providers/microsoft.management/managementGroups/CnAIOrchestrationServicePublicCorpprod\"\ + ],\"permissions\":[{\"actions\":[\"Microsoft.ManagedIdentity/userAssignedIdentities/assign/action\"\ + ,\"Microsoft.ManagedIdentity/userAssignedIdentities/write\",\"Microsoft.ManagedIdentity/userAssignedIdentities/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/write\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Compute/virtualMachineScaleSets/write\",\"Microsoft.Compute/virtualMachineScaleSets/read\"\ + ,\"Microsoft.Compute/virtualMachines/write\",\"Microsoft.Compute/virtualMachines/read\"\ + ,\"Microsoft.Authorization/locks/write\",\"Microsoft.Authorization/locks/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.ManagedIdentity/register/action\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2021-01-30T22:27:31.9638459Z\",\"updatedOn\":\"2021-03-05T21:43:25.6522065Z\"\ + ,\"createdBy\":\"820ba717-9ea7-4147-bc13-1e35af4cc27c\",\"updatedBy\":\"2ffe2392-0a52-4093-b041-66b10ebc8317\"\ + },\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fd6e57ea-fe3c-4f21-bd1e-de170a9a4971\"\ + },{\"properties\":{\"roleName\":\"AcrPush\",\"type\":\"BuiltInRole\",\"description\"\ + :\"acr push\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"\ + Microsoft.ContainerRegistry/registries/pull/read\",\"Microsoft.ContainerRegistry/registries/push/write\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2018-10-29T17:52:32.5201177Z\",\"updatedOn\":\"2021-11-11T20:13:07.4993029Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8311e382-0749-4cb8-b61a-304f252e45ec\"\ + },{\"properties\":{\"roleName\":\"API Management Service Contributor\",\"\ + type\":\"BuiltInRole\",\"description\":\"Can manage service and the APIs\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/*\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"\ + Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2015-02-02T21:55:09.8650193Z\",\"updatedOn\":\"2021-11-11T20:13:08.3179618Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"312a565d-c81f-4fd8-895a-4e21e48d571c\"\ + },{\"properties\":{\"roleName\":\"AcrPull\",\"type\":\"BuiltInRole\",\"description\"\ + :\"acr pull\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"\ + Microsoft.ContainerRegistry/registries/pull/read\"],\"notActions\":[],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2018-10-22T19:01:56.8227182Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:08.8779328Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7f951dda-4ed3-4680-a7ca-43fe172d538d\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7f951dda-4ed3-4680-a7ca-43fe172d538d\"\ + },{\"properties\":{\"roleName\":\"AcrImageSigner\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"acr image signer\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.ContainerRegistry/registries/sign/write\"],\"\ + notActions\":[],\"dataActions\":[\"Microsoft.ContainerRegistry/registries/trustedCollections/write\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2018-03-15T23:23:08.4038322Z\",\"\ + updatedOn\":\"2021-11-11T20:13:09.6070759Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6cef56e8-d556-48e5-a04f-b8e64114680f\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6cef56e8-d556-48e5-a04f-b8e64114680f\"\ + },{\"properties\":{\"roleName\":\"AcrDelete\",\"type\":\"BuiltInRole\",\"\ + description\":\"acr delete\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.ContainerRegistry/registries/artifacts/delete\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2019-03-11T20:19:31.6682804Z\",\"updatedOn\":\"2021-11-11T20:13:09.9631744Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c2f4ef07-c644-48eb-af81-4b1b4947fb11\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c2f4ef07-c644-48eb-af81-4b1b4947fb11\"\ + },{\"properties\":{\"roleName\":\"AcrQuarantineReader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"acr quarantine data reader\",\"assignableScopes\":[\"/\"\ + ],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/quarantine/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerRegistry/registries/quarantinedArtifacts/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2018-03-16T00:27:39.9596835Z\",\"\ + updatedOn\":\"2021-11-11T20:13:10.3188052Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cdda3590-29a3-44f6-95f2-9f980659eb04\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"cdda3590-29a3-44f6-95f2-9f980659eb04\"\ + },{\"properties\":{\"roleName\":\"AcrQuarantineWriter\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"acr quarantine data writer\",\"assignableScopes\":[\"/\"\ + ],\"permissions\":[{\"actions\":[\"Microsoft.ContainerRegistry/registries/quarantine/read\"\ + ,\"Microsoft.ContainerRegistry/registries/quarantine/write\"],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.ContainerRegistry/registries/quarantinedArtifacts/read\"\ + ,\"Microsoft.ContainerRegistry/registries/quarantinedArtifacts/write\"],\"\ + notDataActions\":[]}],\"createdOn\":\"2018-03-16T00:26:37.5871820Z\",\"updatedOn\"\ + :\"2021-11-11T20:13:11.3488079Z\",\"createdBy\":null,\"updatedBy\":null},\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c8d4ff99-41c3-41a8-9f60-21dfdad59608\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c8d4ff99-41c3-41a8-9f60-21dfdad59608\"\ + },{\"properties\":{\"roleName\":\"API Management Service Operator Role\",\"\ + type\":\"BuiltInRole\",\"description\":\"Can manage service but not the APIs\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/*/read\"\ + ,\"Microsoft.ApiManagement/service/backup/action\",\"Microsoft.ApiManagement/service/delete\"\ + ,\"Microsoft.ApiManagement/service/managedeployments/action\",\"Microsoft.ApiManagement/service/read\"\ + ,\"Microsoft.ApiManagement/service/restore/action\",\"Microsoft.ApiManagement/service/updatecertificate/action\"\ + ,\"Microsoft.ApiManagement/service/updatehostname/action\",\"Microsoft.ApiManagement/service/write\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"\ + Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ],\"notActions\":[\"Microsoft.ApiManagement/service/users/keys/read\"],\"\ + dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-11-09T00:03:42.1194019Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:11.5244023Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\ + },{\"properties\":{\"roleName\":\"API Management Service Reader Role\",\"\ + type\":\"BuiltInRole\",\"description\":\"Read-only access to service and APIs\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/*/read\"\ + ,\"Microsoft.ApiManagement/service/read\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[\"Microsoft.ApiManagement/service/users/keys/read\"\ + ],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-11-09T00:26:45.1540473Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:11.8704466Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"71522526-b88f-4d52-b57f-d31fc3546d0d\"\ + },{\"properties\":{\"roleName\":\"Application Insights Component Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Can manage Application Insights\ + \ components\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"\ + Microsoft.Insights/generateLiveToken/read\",\"Microsoft.Insights/metricAlerts/*\"\ + ,\"Microsoft.Insights/components/*\",\"Microsoft.Insights/scheduledqueryrules/*\"\ + ,\"Microsoft.Insights/topology/read\",\"Microsoft.Insights/transactions/read\"\ + ,\"Microsoft.Insights/webtests/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:12.6428401Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ae349356-3a1b-4a5e-921d-050484c6347e\"\ + },{\"properties\":{\"roleName\":\"Application Insights Snapshot Debugger\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Gives user permission to use Application\ + \ Insights Snapshot Debugger features\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.Insights/components/*/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2017-04-19T21:25:12.3728747Z\",\"updatedOn\":\"2021-11-11T20:13:13.0034435Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\ + },{\"properties\":{\"roleName\":\"Attestation Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Can read the attestation provider properties\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Attestation/attestationProviders/attestation/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2019-03-25T19:42:59.1576710Z\",\"updatedOn\":\"2021-11-11T20:13:13.3634724Z\"\ + ,\"createdBy\":null,\"updatedBy\":\"SYSTEM\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd1bd22b-8476-40bc-a0bc-69b95687b9f3\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fd1bd22b-8476-40bc-a0bc-69b95687b9f3\"\ + },{\"properties\":{\"roleName\":\"Automation Job Operator\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Create and Manage Jobs using Automation Runbooks.\",\"\ + assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Automation/automationAccounts/hybridRunbookWorkerGroups/read\"\ + ,\"Microsoft.Automation/automationAccounts/jobs/read\",\"Microsoft.Automation/automationAccounts/jobs/resume/action\"\ + ,\"Microsoft.Automation/automationAccounts/jobs/stop/action\",\"Microsoft.Automation/automationAccounts/jobs/streams/read\"\ + ,\"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\"Microsoft.Automation/automationAccounts/jobs/write\"\ + ,\"Microsoft.Automation/automationAccounts/jobs/output/read\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2017-04-19T20:52:41.0020018Z\",\"updatedOn\":\"2021-11-11T20:13:13.7065660Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\ + },{\"properties\":{\"roleName\":\"Automation Runbook Operator\",\"type\":\"\ + BuiltInRole\",\"description\":\"Read Runbook properties - to be able to create\ + \ Jobs of the runbook.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Automation/automationAccounts/runbooks/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2017-04-19T20:47:49.5640674Z\",\"updatedOn\":\"2021-11-11T20:13:13.8815461Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\ + },{\"properties\":{\"roleName\":\"Automation Operator\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Automation Operators are able to start, stop, suspend,\ + \ and resume jobs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Authorization/*/read\",\"Microsoft.Automation/automationAccounts/hybridRunbookWorkerGroups/read\"\ + ,\"Microsoft.Automation/automationAccounts/jobs/read\",\"Microsoft.Automation/automationAccounts/jobs/resume/action\"\ + ,\"Microsoft.Automation/automationAccounts/jobs/stop/action\",\"Microsoft.Automation/automationAccounts/jobs/streams/read\"\ + ,\"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\"Microsoft.Automation/automationAccounts/jobs/write\"\ + ,\"Microsoft.Automation/automationAccounts/jobSchedules/read\",\"Microsoft.Automation/automationAccounts/jobSchedules/write\"\ + ,\"Microsoft.Automation/automationAccounts/linkedWorkspace/read\",\"Microsoft.Automation/automationAccounts/read\"\ + ,\"Microsoft.Automation/automationAccounts/runbooks/read\",\"Microsoft.Automation/automationAccounts/schedules/read\"\ + ,\"Microsoft.Automation/automationAccounts/schedules/write\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Automation/automationAccounts/jobs/output/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2015-08-18T01:05:03.3916130Z\",\"updatedOn\":\"2021-11-11T20:13:14.0515408Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d3881f73-407a-4167-8283-e981cbba0404\"\ + },{\"properties\":{\"roleName\":\"Avere Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Can create and manage an Avere vFXT cluster.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Compute/*/read\",\"Microsoft.Compute/availabilitySets/*\",\"\ + Microsoft.Compute/proximityPlacementGroups/*\",\"Microsoft.Compute/virtualMachines/*\"\ + ,\"Microsoft.Compute/disks/*\",\"Microsoft.Network/*/read\",\"Microsoft.Network/networkInterfaces/*\"\ + ,\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/subnets/read\"\ + ,\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\"\ + ,\"Microsoft.Network/networkSecurityGroups/join/action\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Storage/*/read\",\"Microsoft.Storage/storageAccounts/*\",\"Microsoft.Support/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/resources/read\"],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2019-03-18T20:00:58.9207889Z\",\"\ + updatedOn\":\"2021-11-11T20:13:14.2265665Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4f8fab4f-1852-4a58-a46a-8eaf358af14a\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4f8fab4f-1852-4a58-a46a-8eaf358af14a\"\ + },{\"properties\":{\"roleName\":\"Avere Operator\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Used by the Avere vFXT cluster to manage the cluster\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/virtualMachines/read\"\ + ,\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/write\"\ + ,\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/subnets/read\"\ + ,\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/networkSecurityGroups/join/action\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/delete\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/write\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2019-03-18T20:02:38.3399857Z\",\"\ + updatedOn\":\"2021-11-11T20:13:15.1065886Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c025889f-8102-4ebf-b32c-fc0c6f0c6bd9\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c025889f-8102-4ebf-b32c-fc0c6f0c6bd9\"\ + },{\"properties\":{\"roleName\":\"Azure Kubernetes Service Cluster Admin Role\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"List cluster admin credential\ + \ action.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"\ + Microsoft.ContainerService/managedClusters/listClusterAdminCredential/action\"\ + ,\"Microsoft.ContainerService/managedClusters/accessProfiles/listCredential/action\"\ + ,\"Microsoft.ContainerService/managedClusters/read\",\"Microsoft.ContainerService/managedClusters/runcommand/action\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2018-08-15T21:38:18.5953853Z\",\"updatedOn\":\"2022-05-17T01:51:12.0390652Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0ab0b1a8-8aac-4efd-b8c2-3ee1fb270be8\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0ab0b1a8-8aac-4efd-b8c2-3ee1fb270be8\"\ + },{\"properties\":{\"roleName\":\"Azure Kubernetes Service Cluster User Role\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"List cluster user credential action.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\ + ,\"Microsoft.ContainerService/managedClusters/read\"],\"notActions\":[],\"\ + dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-08-15T22:04:53.4037241Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:20.4351976Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4abbcc35-e782-43d8-92c5-2d3f1bd2253f\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4abbcc35-e782-43d8-92c5-2d3f1bd2253f\"\ + },{\"properties\":{\"roleName\":\"Azure Maps Data Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Grants access to read map related data from an Azure maps\ + \ account.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"\ + notActions\":[],\"dataActions\":[\"Microsoft.Maps/accounts/*/read\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2018-10-05T19:47:03.4723070Z\",\"updatedOn\":\"2021-11-11T20:13:20.9582685Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/423170ca-a8f6-4b0f-8487-9e4eb8f49bfa\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"423170ca-a8f6-4b0f-8487-9e4eb8f49bfa\"\ + },{\"properties\":{\"roleName\":\"Azure Stack Registration Owner\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Lets you manage Azure Stack registrations.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AzureStack/edgeSubscriptions/read\"\ + ,\"Microsoft.AzureStack/registrations/products/*/action\",\"Microsoft.AzureStack/registrations/products/read\"\ + ,\"Microsoft.AzureStack/registrations/read\"],\"notActions\":[],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2017-11-13T23:42:06.2161827Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:23.2957820Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\ + },{\"properties\":{\"roleName\":\"Backup Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you manage backup service,but can't create vaults\ + \ and give access to others\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Network/virtualNetworks/read\"\ + ,\"Microsoft.RecoveryServices/locations/*\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/*\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\"Microsoft.RecoveryServices/Vaults/certificates/*\"\ + ,\"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\"Microsoft.RecoveryServices/Vaults/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\"Microsoft.RecoveryServices/Vaults/usages/*\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupconfig/*\",\"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\"\ + ,\"Microsoft.RecoveryServices/Vaults/write\",\"Microsoft.RecoveryServices/Vaults/backupOperations/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/*\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\"\ + ,\"Microsoft.RecoveryServices/vaults/operationStatus/read\",\"Microsoft.RecoveryServices/vaults/operationResults/read\"\ + ,\"Microsoft.RecoveryServices/locations/backupStatus/action\",\"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\"\ + ,\"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\"\ + Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\"Microsoft.RecoveryServices/operations/read\"\ + ,\"Microsoft.RecoveryServices/locations/operationStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\"\ + ,\"Microsoft.Support/*\",\"Microsoft.DataProtection/locations/getBackupStatus/action\"\ + ,\"Microsoft.DataProtection/backupVaults/backupInstances/write\",\"Microsoft.DataProtection/backupVaults/backupInstances/delete\"\ + ,\"Microsoft.DataProtection/backupVaults/backupInstances/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/read\"\ + ,\"Microsoft.DataProtection/backupVaults/deletedBackupInstances/read\",\"\ + Microsoft.DataProtection/backupVaults/deletedBackupInstances/undelete/action\"\ + ,\"Microsoft.DataProtection/backupVaults/backupInstances/backup/action\",\"\ + Microsoft.DataProtection/backupVaults/backupInstances/validateRestore/action\"\ + ,\"Microsoft.DataProtection/backupVaults/backupInstances/restore/action\"\ + ,\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/crossRegionRestore/action\"\ + ,\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/validateCrossRegionRestore/action\"\ + ,\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchCrossRegionRestoreJobs/action\"\ + ,\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchCrossRegionRestoreJob/action\"\ + ,\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchSecondaryRecoveryPoints/action\"\ + ,\"Microsoft.DataProtection/backupVaults/backupPolicies/write\",\"Microsoft.DataProtection/backupVaults/backupPolicies/delete\"\ + ,\"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\"Microsoft.DataProtection/backupVaults/backupPolicies/read\"\ + ,\"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\"\ + ,\"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\"\ + ,\"Microsoft.DataProtection/backupVaults/backupInstances/findRestorableTimeRanges/action\"\ + ,\"Microsoft.DataProtection/backupVaults/write\",\"Microsoft.DataProtection/backupVaults/read\"\ + ,\"Microsoft.DataProtection/backupVaults/operationResults/read\",\"Microsoft.DataProtection/backupVaults/operationStatus/read\"\ + ,\"Microsoft.DataProtection/locations/checkNameAvailability/action\",\"Microsoft.DataProtection/locations/checkFeatureSupport/action\"\ + ,\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/backupVaults/read\"\ + ,\"Microsoft.DataProtection/locations/operationStatus/read\",\"Microsoft.DataProtection/locations/operationResults/read\"\ + ,\"Microsoft.DataProtection/backupVaults/validateForBackup/action\",\"Microsoft.DataProtection/operations/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2017-01-03T13:12:15.7321344Z\",\"updatedOn\":\"2023-05-18T11:16:03.3653623Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5e467623-bb1f-42f4-a55d-6e525e11384b\"\ + },{\"properties\":{\"roleName\":\"Billing Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Allows read access to billing data\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Billing/*/read\",\"Microsoft.Commerce/*/read\",\"Microsoft.Consumption/*/read\"\ + ,\"Microsoft.Management/managementGroups/read\",\"Microsoft.CostManagement/*/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2017-04-25T02:13:38.9054151Z\",\"updatedOn\":\"2021-11-11T20:13:24.5342563Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\ + },{\"properties\":{\"roleName\":\"Backup Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Can view backup services, but can't make changes\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\"\ + Microsoft.RecoveryServices/Vaults/backupJobs/read\",\"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\"\ + Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\"Microsoft.RecoveryServices/Vaults/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\"Microsoft.RecoveryServices/Vaults/backupstorageconfig/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupconfig/read\",\"Microsoft.RecoveryServices/Vaults/backupOperations/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\",\"Microsoft.RecoveryServices/Vaults/backupEngines/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\"\ + ,\"Microsoft.RecoveryServices/locations/backupStatus/action\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\"\ + ,\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\",\"Microsoft.RecoveryServices/operations/read\"\ + ,\"Microsoft.RecoveryServices/locations/operationStatus/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/usages/read\",\"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\"\ + ,\"Microsoft.RecoveryServices/locations/backupCrrJobs/action\",\"Microsoft.RecoveryServices/locations/backupCrrJob/action\"\ + ,\"Microsoft.RecoveryServices/locations/backupCrrOperationResults/read\",\"\ + Microsoft.RecoveryServices/locations/backupCrrOperationsStatus/read\",\"Microsoft.DataProtection/locations/getBackupStatus/action\"\ + ,\"Microsoft.DataProtection/backupVaults/backupInstances/write\",\"Microsoft.DataProtection/backupVaults/backupInstances/read\"\ + ,\"Microsoft.DataProtection/backupVaults/deletedBackupInstances/read\",\"\ + Microsoft.DataProtection/backupVaults/backupInstances/backup/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/validateRestore/action\"\ + ,\"Microsoft.DataProtection/backupVaults/backupInstances/restore/action\"\ + ,\"Microsoft.DataProtection/backupVaults/backupPolicies/read\",\"Microsoft.DataProtection/backupVaults/backupPolicies/read\"\ + ,\"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\"\ + ,\"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\"\ + ,\"Microsoft.DataProtection/backupVaults/backupInstances/findRestorableTimeRanges/action\"\ + ,\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/backupVaults/operationResults/read\"\ + ,\"Microsoft.DataProtection/backupVaults/operationStatus/read\",\"Microsoft.DataProtection/backupVaults/read\"\ + ,\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/locations/operationStatus/read\"\ + ,\"Microsoft.DataProtection/locations/operationResults/read\",\"Microsoft.DataProtection/backupVaults/validateForBackup/action\"\ + ,\"Microsoft.DataProtection/operations/read\",\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchCrossRegionRestoreJobs/action\"\ + ,\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchCrossRegionRestoreJob/action\"\ + ,\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchSecondaryRecoveryPoints/action\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2017-01-03T13:18:41.3893065Z\",\"updatedOn\":\"2023-05-18T11:16:03.3663645Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\ + },{\"properties\":{\"roleName\":\"Blockchain Member Node Access (Preview)\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Allows for access to Blockchain\ + \ Member nodes\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Blockchain/blockchainMembers/transactionNodes/read\"],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.Blockchain/blockchainMembers/transactionNodes/connect/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2018-12-21T10:33:01.9604839Z\",\"\ + updatedOn\":\"2021-11-11T20:13:25.0558920Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/31a002a1-acaf-453e-8a5b-297c9ca1ea24\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"31a002a1-acaf-453e-8a5b-297c9ca1ea24\"\ + },{\"properties\":{\"roleName\":\"BizTalk Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you manage BizTalk services, but not access to them.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.BizTalkServices/BizTalk/*\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:25.2359269Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\ + },{\"properties\":{\"roleName\":\"CDN Endpoint Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Can manage CDN endpoints, but can\u2019t grant access to\ + \ other users.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Authorization/*/read\",\"Microsoft.Cdn/edgenodes/read\",\"Microsoft.Cdn/operationresults/*\"\ + ,\"Microsoft.Cdn/profiles/endpoints/*\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2016-01-23T02:48:46.4996252Z\",\"updatedOn\":\"2021-11-11T20:13:25.4059314Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\ + },{\"properties\":{\"roleName\":\"CDN Profile Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Can manage CDN profiles and their endpoints, but can\u2019\ + t grant access to other users.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Cdn/edgenodes/read\"\ + ,\"Microsoft.Cdn/operationresults/*\",\"Microsoft.Cdn/profiles/*\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2016-01-23T02:48:46.4996252Z\",\"updatedOn\":\"2021-11-11T20:13:25.9224344Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\ + },{\"properties\":{\"roleName\":\"CDN Profile Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Can view CDN profiles and their endpoints, but can\u2019\ + t make changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Authorization/*/read\",\"Microsoft.Cdn/edgenodes/read\",\"Microsoft.Cdn/operationresults/*\"\ + ,\"Microsoft.Cdn/profiles/*/read\",\"Microsoft.Insights/alertRules/*\",\"\ + Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2016-01-23T02:48:46.4996252Z\",\"updatedOn\":\"2021-11-11T20:13:26.0983652Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8f96442b-4075-438f-813d-ad51ab4019af\"\ + },{\"properties\":{\"roleName\":\"Classic Network Contributor\",\"type\":\"\ + BuiltInRole\",\"description\":\"Lets you manage classic networks, but not\ + \ access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Authorization/*/read\",\"Microsoft.ClassicNetwork/*\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:26.4433301Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\ + },{\"properties\":{\"roleName\":\"Classic Storage Account Contributor\",\"\ + type\":\"BuiltInRole\",\"description\":\"Lets you manage classic storage accounts,\ + \ but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.ClassicStorage/storageAccounts/*\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:26.6183566Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\ + },{\"properties\":{\"roleName\":\"Classic Storage Account Key Operator Service\ + \ Role\",\"type\":\"BuiltInRole\",\"description\":\"Classic Storage Account\ + \ Key Operators are allowed to list and regenerate keys on Classic Storage\ + \ Accounts\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"\ + Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2017-04-13T18:22:52.1461100Z\",\"updatedOn\":\"2021-11-11T20:13:26.9796021Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\ + },{\"properties\":{\"roleName\":\"ClearDB MySQL DB Contributor\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Lets you manage ClearDB MySQL databases,\ + \ but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ,\"successbricks.cleardb/databases/*\"],\"notActions\":[],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:27.1646373Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9106cda0-8a86-4e81-b686-29a22c54effe\"\ + },{\"properties\":{\"roleName\":\"Classic Virtual Machine Contributor\",\"\ + type\":\"BuiltInRole\",\"description\":\"Lets you manage classic virtual machines,\ + \ but not access to them, and not the virtual network or storage account they\u2019\ + re connected to.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Authorization/*/read\",\"Microsoft.ClassicCompute/domainNames/*\"\ + ,\"Microsoft.ClassicCompute/virtualMachines/*\",\"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\"\ + ,\"Microsoft.ClassicNetwork/reservedIps/link/action\",\"Microsoft.ClassicNetwork/reservedIps/read\"\ + ,\"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\"Microsoft.ClassicNetwork/virtualNetworks/read\"\ + ,\"Microsoft.ClassicStorage/storageAccounts/disks/read\",\"Microsoft.ClassicStorage/storageAccounts/images/read\"\ + ,\"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\"Microsoft.ClassicStorage/storageAccounts/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2015-04-25T00:37:56.5416086Z\",\"updatedOn\":\"2021-11-11T20:13:27.3446332Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\ + },{\"properties\":{\"roleName\":\"Cognitive Services User\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you read and list keys of Cognitive Services.\",\"\ + assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"\ + ,\"Microsoft.CognitiveServices/accounts/listkeys/action\",\"Microsoft.Insights/alertRules/read\"\ + ,\"Microsoft.Insights/diagnosticSettings/read\",\"Microsoft.Insights/logDefinitions/read\"\ + ,\"Microsoft.Insights/metricdefinitions/read\",\"Microsoft.Insights/metrics/read\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/operations/read\"\ + ,\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/*\"],\"\ + notDataActions\":[]}],\"createdOn\":\"2018-08-08T23:23:43.7701274Z\",\"updatedOn\"\ + :\"2021-11-11T20:13:27.5316443Z\",\"createdBy\":null,\"updatedBy\":null},\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a97b65f3-24c7-4388-baec-2e87135dc908\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a97b65f3-24c7-4388-baec-2e87135dc908\"\ + },{\"properties\":{\"roleName\":\"Cognitive Services Data Reader (Preview)\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Lets you read Cognitive Services\ + \ data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"\ + notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/*/read\"],\"\ + notDataActions\":[]}],\"createdOn\":\"2019-02-13T20:02:12.6849986Z\",\"updatedOn\"\ + :\"2021-11-11T20:13:27.7138054Z\",\"createdBy\":null,\"updatedBy\":null},\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b59867f0-fa02-499b-be73-45a86b5b3e1c\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b59867f0-fa02-499b-be73-45a86b5b3e1c\"\ + },{\"properties\":{\"roleName\":\"Cognitive Services Contributor\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Lets you create, read, update, delete and\ + \ manage keys of Cognitive Services.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.CognitiveServices/*\"\ + ,\"Microsoft.Features/features/read\",\"Microsoft.Features/providers/features/read\"\ + ,\"Microsoft.Features/providers/features/register/action\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.Insights/diagnosticSettings/*\",\"Microsoft.Insights/logDefinitions/read\"\ + ,\"Microsoft.Insights/metricdefinitions/read\",\"Microsoft.Insights/metrics/read\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/subscriptions/operationresults/read\"\ + ,\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2018-08-08T23:18:39.2257848Z\",\"updatedOn\":\"2021-11-11T20:13:27.9116230Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/25fbc0a9-bd7c-42a3-aa1a-3b75d497ee68\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"25fbc0a9-bd7c-42a3-aa1a-3b75d497ee68\"\ + },{\"properties\":{\"roleName\":\"CosmosBackupOperator\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Can submit restore request for a Cosmos DB database or\ + \ a container for an account\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.DocumentDB/databaseAccounts/backup/action\",\"\ + Microsoft.DocumentDB/databaseAccounts/restore/action\"],\"notActions\":[],\"\ + dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-12-07T19:47:14.9651560Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:28.4333692Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/db7b14f2-5adf-42da-9f96-f2ee17bab5cb\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"db7b14f2-5adf-42da-9f96-f2ee17bab5cb\"\ + },{\"properties\":{\"roleName\":\"Contributor\",\"type\":\"BuiltInRole\",\"\ + description\":\"Grants full access to manage all resources, but does not allow\ + \ you to assign roles in Azure RBAC, manage assignments in Azure Blueprints,\ + \ or share image galleries.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"*\"],\"notActions\":[\"Microsoft.Authorization/*/Delete\"\ + ,\"Microsoft.Authorization/*/Write\",\"Microsoft.Authorization/elevateAccess/Action\"\ + ,\"Microsoft.Blueprint/blueprintAssignments/write\",\"Microsoft.Blueprint/blueprintAssignments/delete\"\ + ,\"Microsoft.Compute/galleries/share/action\"],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:28.6061853Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b24988ac-6180-42a0-ab88-20f7382dd24c\"\ + },{\"properties\":{\"roleName\":\"Cosmos DB Account Reader Role\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Can read Azure Cosmos DB Accounts data\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.DocumentDB/*/read\",\"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\"\ + ,\"Microsoft.Insights/MetricDefinitions/read\",\"Microsoft.Insights/Metrics/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2017-10-30T17:53:54.6005577Z\",\"updatedOn\":\"2021-11-11T20:13:28.7911765Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\ + },{\"properties\":{\"roleName\":\"Cost Management Contributor\",\"type\":\"\ + BuiltInRole\",\"description\":\"Can view costs and manage cost configuration\ + \ (e.g. budgets, exports)\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"Microsoft.Consumption/*\",\"Microsoft.CostManagement/*\",\"Microsoft.Billing/billingPeriods/read\"\ + ,\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\",\"Microsoft.Advisor/configurations/read\",\"Microsoft.Advisor/recommendations/read\"\ + ,\"Microsoft.Management/managementGroups/read\",\"Microsoft.Billing/billingProperty/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2018-03-14T16:09:22.8834827Z\",\"updatedOn\":\"2021-11-11T20:13:29.4851851Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/434105ed-43f6-45c7-a02f-909b2ba83430\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"434105ed-43f6-45c7-a02f-909b2ba83430\"\ + },{\"properties\":{\"roleName\":\"Cost Management Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Can view cost data and configuration (e.g. budgets, exports)\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Consumption/*/read\"\ + ,\"Microsoft.CostManagement/*/read\",\"Microsoft.Billing/billingPeriods/read\"\ + ,\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\",\"Microsoft.Advisor/configurations/read\",\"Microsoft.Advisor/recommendations/read\"\ + ,\"Microsoft.Management/managementGroups/read\",\"Microsoft.Billing/billingProperty/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2018-03-14T16:09:22.8834827Z\",\"updatedOn\":\"2021-11-11T20:13:29.6601800Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/72fafb9e-0641-4937-9268-a91bfd8191a3\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"72fafb9e-0641-4937-9268-a91bfd8191a3\"\ + },{\"properties\":{\"roleName\":\"Data Box Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you manage everything under Data Box Service except\ + \ giving access to others.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\",\"Microsoft.Databox/*\"],\"notActions\":[],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2018-07-27T08:28:42.7140210Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:30.3737856Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/add466c9-e687-43fc-8d98-dfcf8d720be5\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"add466c9-e687-43fc-8d98-dfcf8d720be5\"\ + },{\"properties\":{\"roleName\":\"Data Box Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you manage Data Box Service except creating order\ + \ or editing order details and giving access to others.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Databox/*/read\",\"Microsoft.Databox/jobs/listsecrets/action\"\ + ,\"Microsoft.Databox/jobs/listcredentials/action\",\"Microsoft.Databox/locations/availableSkus/action\"\ + ,\"Microsoft.Databox/locations/validateInputs/action\",\"Microsoft.Databox/locations/regionConfiguration/action\"\ + ,\"Microsoft.Databox/locations/validateAddress/action\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2018-07-27T08:26:21.9284772Z\",\"updatedOn\":\"2021-11-11T20:13:30.5546117Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/028f4ed7-e2a9-465e-a8f4-9c0ffdfdc027\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"028f4ed7-e2a9-465e-a8f4-9c0ffdfdc027\"\ + },{\"properties\":{\"roleName\":\"Data Factory Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Create and manage data factories, as well as child resources\ + \ within them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Authorization/*/read\",\"Microsoft.DataFactory/dataFactories/*\"\ + ,\"Microsoft.DataFactory/factories/*\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ,\"Microsoft.EventGrid/eventSubscriptions/write\"],\"notActions\":[],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:30.7420174Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"673868aa-7521-48a0-acc6-0f60742d39f5\"\ + },{\"properties\":{\"roleName\":\"Data Purger\",\"type\":\"BuiltInRole\",\"\ + description\":\"Can purge analytics data\",\"assignableScopes\":[\"/\"],\"\ + permissions\":[{\"actions\":[\"Microsoft.Insights/components/*/read\",\"Microsoft.Insights/components/purge/action\"\ + ,\"Microsoft.OperationalInsights/workspaces/*/read\",\"Microsoft.OperationalInsights/workspaces/purge/action\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2018-04-30T22:39:49.6167700Z\",\"updatedOn\":\"2021-11-11T20:13:31.2788395Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/150f5e0c-0603-4f03-8c7f-cf70034c4e90\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"150f5e0c-0603-4f03-8c7f-cf70034c4e90\"\ + },{\"properties\":{\"roleName\":\"Data Lake Analytics Developer\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Lets you submit, monitor, and manage your\ + \ own jobs but not create or delete Data Lake Analytics accounts.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.BigAnalytics/accounts/*\",\"Microsoft.DataLakeAnalytics/accounts/*\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[\"Microsoft.BigAnalytics/accounts/Delete\"\ + ,\"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\"Microsoft.BigAnalytics/accounts/Write\"\ + ,\"Microsoft.DataLakeAnalytics/accounts/Delete\",\"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\"\ + ,\"Microsoft.DataLakeAnalytics/accounts/Write\",\"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\"\ + ,\"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\"\ + Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\"\ + ,\"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\"\ + ,\"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\ + ],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-10-20T00:33:29.3115234Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:31.4688491Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"47b7735b-770e-4598-a7da-8b91488b4c88\"\ + },{\"properties\":{\"roleName\":\"DevTest Labs User\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you connect, start, restart, and shutdown your virtual\ + \ machines in your Azure DevTest Labs.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Compute/availabilitySets/read\"\ + ,\"Microsoft.Compute/virtualMachines/*/read\",\"Microsoft.Compute/virtualMachines/deallocate/action\"\ + ,\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/virtualMachines/restart/action\"\ + ,\"Microsoft.Compute/virtualMachines/start/action\",\"Microsoft.DevTestLab/*/read\"\ + ,\"Microsoft.DevTestLab/labs/claimAnyVm/action\",\"Microsoft.DevTestLab/labs/createEnvironment/action\"\ + ,\"Microsoft.DevTestLab/labs/ensureCurrentUserProfile/action\",\"Microsoft.DevTestLab/labs/formulas/delete\"\ + ,\"Microsoft.DevTestLab/labs/formulas/read\",\"Microsoft.DevTestLab/labs/formulas/write\"\ + ,\"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\"Microsoft.DevTestLab/labs/virtualMachines/claim/action\"\ + ,\"Microsoft.DevTestLab/labs/virtualmachines/listApplicableSchedules/action\"\ + ,\"Microsoft.DevTestLab/labs/virtualMachines/getRdpFileContents/action\",\"\ + Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\"Microsoft.Network/loadBalancers/inboundNatRules/join/action\"\ + ,\"Microsoft.Network/networkInterfaces/*/read\",\"Microsoft.Network/networkInterfaces/join/action\"\ + ,\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/write\"\ + ,\"Microsoft.Network/publicIPAddresses/*/read\",\"Microsoft.Network/publicIPAddresses/join/action\"\ + ,\"Microsoft.Network/publicIPAddresses/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + ,\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/listKeys/action\"\ + ],\"notActions\":[\"Microsoft.Compute/virtualMachines/vmSizes/read\"],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2015-06-08T21:52:45.0657582Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:32.1746507Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"76283e04-6283-4c54-8f91-bcf1374a3c64\"\ + },{\"properties\":{\"roleName\":\"DocumentDB Account Contributor\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Lets you manage DocumentDB accounts, but\ + \ not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.DocumentDb/databaseAccounts/*\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\",\"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:32.3496502Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5bd9cd88-fe45-4216-938b-f97437e15450\"\ + },{\"properties\":{\"roleName\":\"DNS Zone Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you manage DNS zones and record sets in Azure DNS,\ + \ but does not let you control who has access to them.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/dnsZones/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2015-10-15T23:33:25.9730842Z\",\"updatedOn\":\"2021-11-11T20:13:32.5233957Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"befefa01-2a29-4197-83a8-272ff33ce314\"\ + },{\"properties\":{\"roleName\":\"EventGrid EventSubscription Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Lets you manage EventGrid event\ + \ subscription operations.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.EventGrid/eventSubscriptions/*\"\ + ,\"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\",\"Microsoft.EventGrid/locations/eventSubscriptions/read\"\ + ,\"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2018-10-08T23:27:28.3130743Z\",\"updatedOn\":\"2021-11-11T20:13:33.4166738Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/428e0ff0-5e57-4d9c-a221-2c70d0e0a443\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"428e0ff0-5e57-4d9c-a221-2c70d0e0a443\"\ + },{\"properties\":{\"roleName\":\"EventGrid EventSubscription Reader\",\"\ + type\":\"BuiltInRole\",\"description\":\"Lets you read EventGrid event subscriptions.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.EventGrid/eventSubscriptions/read\",\"Microsoft.EventGrid/topicTypes/eventSubscriptions/read\"\ + ,\"Microsoft.EventGrid/locations/eventSubscriptions/read\",\"Microsoft.EventGrid/locations/topicTypes/eventSubscriptions/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2018-10-09T17:29:28.1417894Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:33.7846748Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2414bbcf-6497-4faf-8c65-045460748405\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2414bbcf-6497-4faf-8c65-045460748405\"\ + },{\"properties\":{\"roleName\":\"Graph Owner\",\"type\":\"BuiltInRole\",\"\ + description\":\"Create and manage all aspects of the Enterprise Graph - Ontology,\ + \ Schema mapping, Conflation and Conversational AI and Ingestions\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.EnterpriseKnowledgeGraph/services/conflation/read\"\ + ,\"Microsoft.EnterpriseKnowledgeGraph/services/conflation/write\",\"Microsoft.EnterpriseKnowledgeGraph/services/sourceschema/read\"\ + ,\"Microsoft.EnterpriseKnowledgeGraph/services/sourceschema/write\",\"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/read\"\ + ,\"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/write\",\"Microsoft.EnterpriseKnowledgeGraph/services/intentclassification/read\"\ + ,\"Microsoft.EnterpriseKnowledgeGraph/services/intentclassification/write\"\ + ,\"Microsoft.EnterpriseKnowledgeGraph/services/ingestion/read\",\"Microsoft.EnterpriseKnowledgeGraph/services/ingestion/write\"\ + ,\"Microsoft.EnterpriseKnowledgeGraph/services/ontology/read\",\"Microsoft.EnterpriseKnowledgeGraph/services/ontology/write\"\ + ,\"Microsoft.EnterpriseKnowledgeGraph/services/delete\",\"Microsoft.EnterpriseKnowledgeGraph/operations/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2019-02-23T21:07:22.5844236Z\",\"updatedOn\":\"2021-11-11T20:13:34.6707886Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b60367af-1334-4454-b71e-769d9a4f83d9\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b60367af-1334-4454-b71e-769d9a4f83d9\"\ + },{\"properties\":{\"roleName\":\"HDInsight Domain Services Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Can Read, Create, Modify and Delete\ + \ Domain Services related operations needed for HDInsight Enterprise Security\ + \ Package\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"\ + Microsoft.AAD/*/read\",\"Microsoft.AAD/domainServices/*/read\",\"Microsoft.AAD/domainServices/oucontainer/*\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2018-09-12T22:42:51.7451109Z\",\"updatedOn\":\"2021-11-11T20:13:35.3921342Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8d8d5a11-05d3-4bda-a417-a08778121c7c\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8d8d5a11-05d3-4bda-a417-a08778121c7c\"\ + },{\"properties\":{\"roleName\":\"Intelligent Systems Account Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Lets you manage Intelligent Systems\ + \ accounts, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.IntelligentSystems/accounts/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:35.9371582Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"03a6d094-3444-4b3d-88af-7477090a9e5e\"\ + },{\"properties\":{\"roleName\":\"Key Vault Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you manage key vaults, but not access to them.\",\"\ + assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.KeyVault/*\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ],\"notActions\":[\"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\ + ,\"Microsoft.KeyVault/hsmPools/*\",\"Microsoft.KeyVault/managedHsms/*\"],\"\ + dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-02-25T17:08:28.5184971Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:36.1170988Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f25e0fa2-a7c8-4377-a976-54943a77a395\"\ + },{\"properties\":{\"roleName\":\"Knowledge Consumer\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Knowledge Read permission to consume Enterprise Graph Knowledge\ + \ using entity search and graph query\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.EnterpriseKnowledgeGraph/services/knowledge/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2019-02-23T21:23:31.4037552Z\",\"updatedOn\":\"2021-11-11T20:13:37.0021342Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ee361c5d-f7b5-4119-b4b6-892157c8f64c\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ee361c5d-f7b5-4119-b4b6-892157c8f64c\"\ + },{\"properties\":{\"roleName\":\"Lab Creator\",\"type\":\"BuiltInRole\",\"\ + description\":\"Lets you create new labs under your Azure Lab Accounts.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.LabServices/labAccounts/*/read\",\"Microsoft.LabServices/labAccounts/createLab/action\"\ + ,\"Microsoft.LabServices/labAccounts/getPricingAndAvailability/action\",\"\ + Microsoft.LabServices/labAccounts/getRestrictionsAndUsage/action\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.LabServices/labPlans/images/read\",\"Microsoft.LabServices/labPlans/read\"\ + ,\"Microsoft.LabServices/labPlans/saveImage/action\",\"Microsoft.LabServices/labs/read\"\ + ,\"Microsoft.LabServices/labs/schedules/read\",\"Microsoft.LabServices/labs/users/read\"\ + ,\"Microsoft.LabServices/labs/virtualMachines/read\",\"Microsoft.LabServices/locations/usages/read\"\ + ,\"Microsoft.LabServices/skus/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.LabServices/labPlans/createLab/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2018-01-18T23:38:58.1036141Z\",\"\ + updatedOn\":\"2021-11-11T20:13:37.1821588Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b97fb8bc-a8b2-4522-a38b-dd33c7e65ead\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b97fb8bc-a8b2-4522-a38b-dd33c7e65ead\"\ + },{\"properties\":{\"roleName\":\"Log Analytics Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Log Analytics Reader can view and search all monitoring\ + \ data as well as and view monitoring settings, including viewing the configuration\ + \ of Azure diagnostics on all Azure resources.\",\"assignableScopes\":[\"\ + /\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.OperationalInsights/workspaces/analytics/query/action\"\ + ,\"Microsoft.OperationalInsights/workspaces/search/action\",\"Microsoft.Support/*\"\ + ],\"notActions\":[\"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\ + ],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-02T00:20:28.1449012Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:37.7071371Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"73c42c96-874c-492b-b04d-ab87d138a893\"\ + },{\"properties\":{\"roleName\":\"Log Analytics Contributor\",\"type\":\"\ + BuiltInRole\",\"description\":\"Log Analytics Contributor can read all monitoring\ + \ data and edit monitoring settings. Editing monitoring settings includes\ + \ adding the VM extension to VMs; reading storage account keys to be able\ + \ to configure collection of logs from Azure Storage; adding solutions; and\ + \ configuring Azure diagnostics on all Azure resources.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.ClassicCompute/virtualMachines/extensions/*\"\ + ,\"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\"Microsoft.Compute/virtualMachines/extensions/*\"\ + ,\"Microsoft.HybridCompute/machines/extensions/write\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.Insights/diagnosticSettings/*\",\"Microsoft.OperationalInsights/*\"\ + ,\"Microsoft.OperationsManagement/*\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\"Microsoft.Storage/storageAccounts/listKeys/action\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2017-04-25T21:51:45.3174711Z\",\"updatedOn\":\"2021-11-11T20:13:37.8823618Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\ + },{\"properties\":{\"roleName\":\"Logic App Operator\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you read, enable and disable logic app.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*/read\",\"Microsoft.Insights/metricAlerts/*/read\"\ + ,\"Microsoft.Insights/diagnosticSettings/*/read\",\"Microsoft.Insights/metricDefinitions/*/read\"\ + ,\"Microsoft.Logic/*/read\",\"Microsoft.Logic/workflows/disable/action\",\"\ + Microsoft.Logic/workflows/enable/action\",\"Microsoft.Logic/workflows/validate/action\"\ + ,\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/subscriptions/operationresults/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ,\"Microsoft.Web/connectionGateways/*/read\",\"Microsoft.Web/connections/*/read\"\ + ,\"Microsoft.Web/customApis/*/read\",\"Microsoft.Web/serverFarms/read\"],\"\ + notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"\ + 2016-04-28T21:33:30.4656007Z\",\"updatedOn\":\"2021-11-11T20:13:38.0573444Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\ + },{\"properties\":{\"roleName\":\"Logic App Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you manage logic app, but not access to them.\",\"\ + assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\"Microsoft.ClassicStorage/storageAccounts/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metricAlerts/*\"\ + ,\"Microsoft.Insights/diagnosticSettings/*\",\"Microsoft.Insights/logdefinitions/*\"\ + ,\"Microsoft.Insights/metricDefinitions/*\",\"Microsoft.Logic/*\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Storage/storageAccounts/listkeys/action\",\"Microsoft.Storage/storageAccounts/read\"\ + ,\"Microsoft.Support/*\",\"Microsoft.Web/connectionGateways/*\",\"Microsoft.Web/connections/*\"\ + ,\"Microsoft.Web/customApis/*\",\"Microsoft.Web/serverFarms/join/action\"\ + ,\"Microsoft.Web/serverFarms/read\",\"Microsoft.Web/sites/functions/listSecrets/action\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2016-04-28T21:33:30.4656007Z\",\"updatedOn\":\"2021-11-11T20:13:38.2523833Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\ + },{\"properties\":{\"roleName\":\"Managed Application Operator Role\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Lets you read and perform actions on Managed\ + \ Application resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"*/read\",\"Microsoft.Solutions/applications/read\",\"Microsoft.Solutions/*/action\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2018-07-27T00:59:33.7988813Z\",\"updatedOn\":\"2021-11-11T20:13:38.5973763Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c7393b34-138c-406f-901b-d8cf2b17e6ae\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c7393b34-138c-406f-901b-d8cf2b17e6ae\"\ + },{\"properties\":{\"roleName\":\"Managed Applications Reader\",\"type\":\"\ + BuiltInRole\",\"description\":\"Lets you read resources in a managed app and\ + \ request JIT access.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"*/read\",\"Microsoft.Resources/deployments/*\",\"Microsoft.Solutions/jitRequests/*\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2018-09-06T00:33:58.3651522Z\",\"updatedOn\":\"2021-11-11T20:13:38.7723523Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b9331d33-8a36-4f8c-b097-4f54124fdb44\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b9331d33-8a36-4f8c-b097-4f54124fdb44\"\ + },{\"properties\":{\"roleName\":\"Managed Identity Operator\",\"type\":\"\ + BuiltInRole\",\"description\":\"Read and Assign User Assigned Identity\",\"\ + assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ManagedIdentity/userAssignedIdentities/*/read\"\ + ,\"Microsoft.ManagedIdentity/userAssignedIdentities/*/assign/action\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-12-14T19:52:04.3924594Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:38.9523759Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f1a07417-d97a-45cb-824c-7a7467783830\"\ + },{\"properties\":{\"roleName\":\"Managed Identity Contributor\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Create, Read, Update, and Delete User Assigned\ + \ Identity\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"\ + Microsoft.ManagedIdentity/userAssignedIdentities/read\",\"Microsoft.ManagedIdentity/userAssignedIdentities/write\"\ + ,\"Microsoft.ManagedIdentity/userAssignedIdentities/delete\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-12-14T19:53:42.8804692Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:39.3023761Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e40ec5ca-96e0-45a2-b4ff-59039f2c2b59\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e40ec5ca-96e0-45a2-b4ff-59039f2c2b59\"\ + },{\"properties\":{\"roleName\":\"Management Group Contributor\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Management Group Contributor Role\",\"\ + assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Management/managementGroups/delete\"\ + ,\"Microsoft.Management/managementGroups/read\",\"Microsoft.Management/managementGroups/subscriptions/delete\"\ + ,\"Microsoft.Management/managementGroups/subscriptions/write\",\"Microsoft.Management/managementGroups/write\"\ + ,\"Microsoft.Management/managementGroups/subscriptions/read\",\"Microsoft.Authorization/*/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2018-06-22T00:28:29.0523964Z\",\"updatedOn\":\"2022-09-19T15:10:03.4377890Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c\"\ + },{\"properties\":{\"roleName\":\"Management Group Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Management Group Reader Role\",\"assignableScopes\":[\"\ + /\"],\"permissions\":[{\"actions\":[\"Microsoft.Management/managementGroups/read\"\ + ,\"Microsoft.Management/managementGroups/subscriptions/read\",\"Microsoft.Authorization/*/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2018-06-22T00:31:03.4295347Z\",\"updatedOn\":\"2022-09-19T15:10:03.4377890Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ac63b705-f282-497d-ac71-919bf39d939d\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ac63b705-f282-497d-ac71-919bf39d939d\"\ + },{\"properties\":{\"roleName\":\"Monitoring Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Can read all monitoring data.\",\"assignableScopes\":[\"\ + /\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.OperationalInsights/workspaces/search/action\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2016-09-21T19:19:52.4939376Z\",\"updatedOn\":\"2022-09-06T17:20:40.5763144Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\ + },{\"properties\":{\"roleName\":\"Network Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you manage networks, but not access to them.\",\"\ + assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2015-06-02T00:18:27.3542698Z\",\"updatedOn\":\"2021-11-11T20:13:44.6328966Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4d97b98b-1d4f-4787-a291-c67834d212e7\"\ + },{\"properties\":{\"roleName\":\"New Relic APM Account Contributor\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Lets you manage New Relic Application Performance\ + \ Management accounts and applications, but not access to them.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\",\"NewRelic.APM/accounts/*\"],\"notActions\":[],\"\ + dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:45.7178576Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5d28c62d-5b37-4476-8438-e587778df237\"\ + },{\"properties\":{\"roleName\":\"Owner\",\"type\":\"BuiltInRole\",\"description\"\ + :\"Grants full access to manage all resources, including the ability to assign\ + \ roles in Azure RBAC.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:45.8978856Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\ + },{\"properties\":{\"roleName\":\"Reader\",\"type\":\"BuiltInRole\",\"description\"\ + :\"View all resources, but does not allow you to make any changes.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"*/read\"],\"notActions\":[],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:47.8628684Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\ + },{\"properties\":{\"roleName\":\"Redis Cache Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you manage Redis caches, but not access to them.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Cache/register/action\",\"Microsoft.Cache/redis/*\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:48.0528671Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e0f68234-74aa-48ed-b826-c38b57376e17\"\ + },{\"properties\":{\"roleName\":\"Reader and Data Access\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you view everything but will not let you delete or\ + \ create a storage account or contained resource. It will also allow read/write\ + \ access to all data contained in a storage account via access to storage\ + \ account keys.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Storage/storageAccounts/listKeys/action\",\"Microsoft.Storage/storageAccounts/ListAccountSas/action\"\ + ,\"Microsoft.Storage/storageAccounts/read\"],\"notActions\":[],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2018-03-27T23:20:46.1498906Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:48.2278951Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c12c1c16-33a1-487b-954d-41c89c60f349\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c12c1c16-33a1-487b-954d-41c89c60f349\"\ + },{\"properties\":{\"roleName\":\"Resource Policy Contributor\",\"type\":\"\ + BuiltInRole\",\"description\":\"Users with rights to create/modify resource\ + \ policy, create support ticket and read resources/hierarchy.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"Microsoft.Authorization/policyassignments/*\"\ + ,\"Microsoft.Authorization/policydefinitions/*\",\"Microsoft.Authorization/policyexemptions/*\"\ + ,\"Microsoft.Authorization/policysetdefinitions/*\",\"Microsoft.PolicyInsights/*\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-08-25T19:08:01.3861639Z\"\ + ,\"updatedOn\":\"2023-05-16T15:12:18.5713721Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"36243c78-bf99-498c-9df9-86d9f8d28608\"\ + },{\"properties\":{\"roleName\":\"Scheduler Job Collections Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Lets you manage Scheduler job\ + \ collections, but not access to them.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Scheduler/jobcollections/*\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\":\"2021-11-11T20:13:49.8429293Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\ + },{\"properties\":{\"roleName\":\"Search Service Contributor\",\"type\":\"\ + BuiltInRole\",\"description\":\"Lets you manage Search services, but not access\ + \ to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"\ + Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Search/searchServices/*\",\"Microsoft.Support/*\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:50.0229309Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\ + },{\"properties\":{\"roleName\":\"Security Manager (Legacy)\",\"type\":\"\ + BuiltInRole\",\"description\":\"This is a legacy role. Please use Security\ + \ Administrator instead\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.ClassicCompute/*/read\"\ + ,\"Microsoft.ClassicCompute/virtualMachines/*/write\",\"Microsoft.ClassicNetwork/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Security/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2015-06-22T17:45:15.8986455Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:50.5729549Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\ + },{\"properties\":{\"roleName\":\"Security Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Security Reader Role\",\"assignableScopes\":[\"/\"],\"\ + permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\"\ + ,\"Microsoft.operationalInsights/workspaces/*/read\",\"Microsoft.Resources/deployments/*/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Security/*/read\"\ + ,\"Microsoft.IoTSecurity/*/read\",\"Microsoft.Support/*/read\",\"Microsoft.Security/iotDefenderSettings/packageDownloads/action\"\ + ,\"Microsoft.Security/iotDefenderSettings/downloadManagerActivation/action\"\ + ,\"Microsoft.Security/iotSensors/downloadResetPassword/action\",\"Microsoft.IoTSecurity/defenderSettings/packageDownloads/action\"\ + ,\"Microsoft.IoTSecurity/defenderSettings/downloadManagerActivation/action\"\ + ,\"Microsoft.Management/managementGroups/read\"],\"notActions\":[],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2017-05-03T07:48:49.0516559Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:50.7479015Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\ + },{\"properties\":{\"roleName\":\"Spatial Anchors Account Contributor\",\"\ + type\":\"BuiltInRole\",\"description\":\"Lets you manage spatial anchors in\ + \ your account, but not delete them\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/SpatialAnchorsAccounts/create/action\"\ + ,\"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\"\ + ,\"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\"\ + ,\"Microsoft.MixedReality/SpatialAnchorsAccounts/write\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2018-12-21T17:57:41.1420864Z\",\"updatedOn\":\"2021-11-11T20:13:52.2829400Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8bbe83f1-e2a6-4df7-8cb4-4e04d4e5c827\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8bbe83f1-e2a6-4df7-8cb4-4e04d4e5c827\"\ + },{\"properties\":{\"roleName\":\"Site Recovery Contributor\",\"type\":\"\ + BuiltInRole\",\"description\":\"Lets you manage Site Recovery service except\ + \ vault creation and role assignment\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.RecoveryServices/locations/allocatedStamp/read\"\ + ,\"Microsoft.RecoveryServices/locations/allocateStamp/action\",\"Microsoft.RecoveryServices/Vaults/certificates/write\"\ + ,\"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\"Microsoft.RecoveryServices/Vaults/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\"Microsoft.RecoveryServices/vaults/replicationEvents/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\"Microsoft.RecoveryServices/vaults/replicationJobs/*\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationVaultSettings/*\",\"Microsoft.RecoveryServices/Vaults/storageConfig/*\"\ + ,\"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\"Microsoft.RecoveryServices/Vaults/usages/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\"\ + ,\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationOperationStatus/read\",\"\ + Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2017-05-19T13:46:17.4592776Z\",\"updatedOn\":\"2021-11-11T20:13:52.4579503Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\ + },{\"properties\":{\"roleName\":\"Site Recovery Operator\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you failover and failback but not perform other Site\ + \ Recovery management operations\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.RecoveryServices/locations/allocatedStamp/read\"\ + ,\"Microsoft.RecoveryServices/locations/allocateStamp/action\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/refreshContainers/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/switchprotection/action\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\"Microsoft.RecoveryServices/vaults/replicationPolicies/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationVaultSettings/read\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\"\ + ,\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\"Microsoft.RecoveryServices/Vaults/tokenInfo/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/usages/read\",\"Microsoft.RecoveryServices/Vaults/vaultTokens/read\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2017-05-19T13:47:50.1341148Z\",\"updatedOn\":\"2021-11-11T20:13:52.6263418Z\"\ + ,\"createdBy\":null,\"updatedBy\":\"\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"494ae006-db33-4328-bf46-533a6560a3ca\"\ + },{\"properties\":{\"roleName\":\"Spatial Anchors Account Reader\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Lets you locate and read properties of\ + \ spatial anchors in your account\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\"\ + ,\"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\"\ + ,\"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2018-12-21T17:57:42.9271004Z\",\"updatedOn\":\"2021-11-11T20:13:52.8013467Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d51204f-eb77-4b1c-b86a-2ec626c49413\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5d51204f-eb77-4b1c-b86a-2ec626c49413\"\ + },{\"properties\":{\"roleName\":\"Site Recovery Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you view Site Recovery status but not perform other\ + \ management operations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.RecoveryServices/locations/allocatedStamp/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/refreshContainers/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\"Microsoft.RecoveryServices/vaults/replicationFabrics/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\"Microsoft.RecoveryServices/vaults/replicationPolicies/read\"\ + ,\"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\"Microsoft.RecoveryServices/vaults/replicationVaultSettings/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\"Microsoft.RecoveryServices/Vaults/tokenInfo/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/usages/read\",\"Microsoft.RecoveryServices/Vaults/vaultTokens/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2017-05-19T13:35:40.0093634Z\",\"updatedOn\":\"2021-11-11T20:13:52.9763366Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\ + },{\"properties\":{\"roleName\":\"Spatial Anchors Account Owner\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Lets you manage spatial anchors in your\ + \ account, including deleting them\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/SpatialAnchorsAccounts/create/action\"\ + ,\"Microsoft.MixedReality/SpatialAnchorsAccounts/delete\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/discovery/read\"\ + ,\"Microsoft.MixedReality/SpatialAnchorsAccounts/properties/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/query/read\"\ + ,\"Microsoft.MixedReality/SpatialAnchorsAccounts/submitdiag/read\",\"Microsoft.MixedReality/SpatialAnchorsAccounts/write\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2018-12-21T17:57:43.5489832Z\",\"\ + updatedOn\":\"2021-11-11T20:13:53.1663250Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/70bbe301-9835-447d-afdd-19eb3167307c\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"70bbe301-9835-447d-afdd-19eb3167307c\"\ + },{\"properties\":{\"roleName\":\"SQL Managed Instance Contributor\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Lets you manage SQL Managed Instances and\ + \ required network configuration, but can\u2019t give access to others.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Network/networkSecurityGroups/*\",\"Microsoft.Network/routeTables/*\"\ + ,\"Microsoft.Sql/locations/*/read\",\"Microsoft.Sql/locations/instanceFailoverGroups/*\"\ + ,\"Microsoft.Sql/managedInstances/*\",\"Microsoft.Support/*\",\"Microsoft.Network/virtualNetworks/subnets/*\"\ + ,\"Microsoft.Network/virtualNetworks/*\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metrics/read\",\"\ + Microsoft.Insights/metricDefinitions/read\"],\"notActions\":[\"Microsoft.Sql/managedInstances/azureADOnlyAuthentications/delete\"\ + ,\"Microsoft.Sql/managedInstances/azureADOnlyAuthentications/write\"],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2018-12-10T22:57:14.2937983Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:53.3513507Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4939a1f6-9ae0-4e48-a1e0-f2cbe897382d\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4939a1f6-9ae0-4e48-a1e0-f2cbe897382d\"\ + },{\"properties\":{\"roleName\":\"SQL DB Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you manage SQL databases, but not access to them.\ + \ Also, you can't manage their security-related policies or their parent SQL\ + \ servers.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"\ + Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Sql/locations/*/read\",\"Microsoft.Sql/servers/databases/*\"\ + ,\"Microsoft.Sql/servers/read\",\"Microsoft.Support/*\",\"Microsoft.Insights/metrics/read\"\ + ,\"Microsoft.Insights/metricDefinitions/read\"],\"notActions\":[\"Microsoft.Sql/servers/databases/ledgerDigestUploads/write\"\ + ,\"Microsoft.Sql/servers/databases/ledgerDigestUploads/disable/action\",\"\ + Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\"\ + ,\"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\"\ + ,\"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\"\ + ,\"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\"\ + Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\"\ + ,\"Microsoft.Sql/servers/databases/auditingSettings/*\",\"Microsoft.Sql/servers/databases/auditRecords/read\"\ + ,\"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\"\ + ,\"Microsoft.Sql/servers/databases/extendedAuditingSettings/*\",\"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\"\ + ,\"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\"\ + ,\"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\"Microsoft.Sql/servers/databases/securityMetrics/*\"\ + ,\"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\"\ + ,\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\ + ,\"Microsoft.Sql/servers/vulnerabilityAssessments/*\"],\"dataActions\":[],\"\ + notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\",\"updatedOn\"\ + :\"2021-11-11T20:13:53.5363219Z\",\"createdBy\":null,\"updatedBy\":null},\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\ + },{\"properties\":{\"roleName\":\"SQL Security Manager\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you manage the security-related policies of SQL servers\ + \ and databases, but not access to them.\",\"assignableScopes\":[\"/\"],\"\ + permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Sql/locations/administratorAzureAsyncOperation/read\"\ + ,\"Microsoft.Sql/managedInstances/advancedThreatProtectionSettings/read\"\ + ,\"Microsoft.Sql/managedInstances/advancedThreatProtectionSettings/write\"\ + ,\"Microsoft.Sql/managedInstances/databases/advancedThreatProtectionSettings/read\"\ + ,\"Microsoft.Sql/managedInstances/databases/advancedThreatProtectionSettings/write\"\ + ,\"Microsoft.Sql/managedInstances/advancedThreatProtectionSettings/read\"\ + ,\"Microsoft.Sql/managedInstances/advancedThreatProtectionSettings/write\"\ + ,\"Microsoft.Sql/managedInstances/databases/advancedThreatProtectionSettings/read\"\ + ,\"Microsoft.Sql/managedInstances/databases/advancedThreatProtectionSettings/write\"\ + ,\"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\",\"\ + Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\"\ + ,\"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\"\ + ,\"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\"\ + ,\"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\"\ + Microsoft.Sql/servers/advancedThreatProtectionSettings/read\",\"Microsoft.Sql/servers/advancedThreatProtectionSettings/write\"\ + ,\"Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/databases/transparentDataEncryption/*\"\ + ,\"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\",\"Microsoft.Sql/managedInstances/serverConfigurationOptions/read\"\ + ,\"Microsoft.Sql/managedInstances/serverConfigurationOptions/write\",\"Microsoft.Sql/locations/serverConfigurationOptionAzureAsyncOperation/read\"\ + ,\"Microsoft.Sql/servers/advancedThreatProtectionSettings/read\",\"Microsoft.Sql/servers/advancedThreatProtectionSettings/write\"\ + ,\"Microsoft.Sql/servers/auditingSettings/*\",\"Microsoft.Sql/servers/extendedAuditingSettings/read\"\ + ,\"Microsoft.Sql/servers/databases/advancedThreatProtectionSettings/read\"\ + ,\"Microsoft.Sql/servers/databases/advancedThreatProtectionSettings/write\"\ + ,\"Microsoft.Sql/servers/databases/advancedThreatProtectionSettings/read\"\ + ,\"Microsoft.Sql/servers/databases/advancedThreatProtectionSettings/write\"\ + ,\"Microsoft.Sql/servers/databases/auditingSettings/*\",\"Microsoft.Sql/servers/databases/auditRecords/read\"\ + ,\"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\"\ + ,\"Microsoft.Sql/servers/databases/extendedAuditingSettings/read\",\"Microsoft.Sql/servers/databases/read\"\ + ,\"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/schemas/read\"\ + ,\"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\"\ + ,\"Microsoft.Sql/servers/databases/schemas/tables/read\",\"Microsoft.Sql/servers/databases/securityAlertPolicies/*\"\ + ,\"Microsoft.Sql/servers/databases/securityMetrics/*\",\"Microsoft.Sql/servers/databases/sensitivityLabels/*\"\ + ,\"Microsoft.Sql/servers/databases/transparentDataEncryption/*\",\"Microsoft.Sql/servers/databases/sqlvulnerabilityAssessments/*\"\ + ,\"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\"\ + ,\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\"\ + Microsoft.Sql/servers/devOpsAuditingSettings/*\",\"Microsoft.Sql/servers/firewallRules/*\"\ + ,\"Microsoft.Sql/servers/read\",\"Microsoft.Sql/servers/securityAlertPolicies/*\"\ + ,\"Microsoft.Sql/servers/sqlvulnerabilityAssessments/*\",\"Microsoft.Sql/servers/vulnerabilityAssessments/*\"\ + ,\"Microsoft.Support/*\",\"Microsoft.Sql/servers/azureADOnlyAuthentications/*\"\ + ,\"Microsoft.Sql/managedInstances/read\",\"Microsoft.Sql/managedInstances/azureADOnlyAuthentications/*\"\ + ,\"Microsoft.Security/sqlVulnerabilityAssessments/*\",\"Microsoft.Sql/managedInstances/administrators/read\"\ + ,\"Microsoft.Sql/servers/administrators/read\",\"Microsoft.Sql/servers/databases/ledgerDigestUploads/*\"\ + ,\"Microsoft.Sql/locations/ledgerDigestUploadsAzureAsyncOperation/read\",\"\ + Microsoft.Sql/locations/ledgerDigestUploadsOperationResults/read\",\"Microsoft.Sql/servers/externalPolicyBasedAuthorizations/*\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2015-06-16T18:44:40.4607572Z\",\"updatedOn\":\"2023-03-02T16:44:21.9655690Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\ + },{\"properties\":{\"roleName\":\"Storage Account Contributor\",\"type\":\"\ + BuiltInRole\",\"description\":\"Lets you manage storage accounts, including\ + \ accessing storage account keys which provide full access to storage account\ + \ data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/diagnosticSettings/*\"\ + ,\"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/*\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2015-06-02T00:18:27.3542698Z\",\"updatedOn\":\"2021-11-11T20:13:54.2363539Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\ + },{\"properties\":{\"roleName\":\"SQL Server Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you manage SQL servers and databases, but not access\ + \ to them, and not their security -related policies.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Sql/locations/*/read\",\"Microsoft.Sql/servers/*\",\"Microsoft.Support/*\"\ + ,\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\"\ + ],\"notActions\":[\"Microsoft.Sql/managedInstances/databases/currentSensitivityLabels/*\"\ + ,\"Microsoft.Sql/managedInstances/databases/recommendedSensitivityLabels/*\"\ + ,\"Microsoft.Sql/managedInstances/databases/schemas/tables/columns/sensitivityLabels/*\"\ + ,\"Microsoft.Sql/managedInstances/databases/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/databases/sensitivityLabels/*\"\ + ,\"Microsoft.Sql/managedInstances/databases/vulnerabilityAssessments/*\",\"\ + Microsoft.Sql/managedInstances/securityAlertPolicies/*\",\"Microsoft.Sql/managedInstances/vulnerabilityAssessments/*\"\ + ,\"Microsoft.Sql/servers/auditingSettings/*\",\"Microsoft.Sql/servers/databases/auditingSettings/*\"\ + ,\"Microsoft.Sql/servers/databases/auditRecords/read\",\"Microsoft.Sql/servers/databases/currentSensitivityLabels/*\"\ + ,\"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\"Microsoft.Sql/servers/databases/extendedAuditingSettings/*\"\ + ,\"Microsoft.Sql/servers/databases/recommendedSensitivityLabels/*\",\"Microsoft.Sql/servers/databases/schemas/tables/columns/sensitivityLabels/*\"\ + ,\"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\"Microsoft.Sql/servers/databases/securityMetrics/*\"\ + ,\"Microsoft.Sql/servers/databases/sensitivityLabels/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessments/*\"\ + ,\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\ + ,\"Microsoft.Sql/servers/devOpsAuditingSettings/*\",\"Microsoft.Sql/servers/extendedAuditingSettings/*\"\ + ,\"Microsoft.Sql/servers/securityAlertPolicies/*\",\"Microsoft.Sql/servers/vulnerabilityAssessments/*\"\ + ,\"Microsoft.Sql/servers/azureADOnlyAuthentications/delete\",\"Microsoft.Sql/servers/azureADOnlyAuthentications/write\"\ + ,\"Microsoft.Sql/servers/externalPolicyBasedAuthorizations/delete\",\"Microsoft.Sql/servers/externalPolicyBasedAuthorizations/write\"\ + ],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\"\ + ,\"updatedOn\":\"2022-04-28T23:10:45.2206234Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\ + },{\"properties\":{\"roleName\":\"Storage Account Key Operator Service Role\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Storage Account Key Operators\ + \ are allowed to list and regenerate keys on Storage Accounts\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/listkeys/action\"\ + ,\"Microsoft.Storage/storageAccounts/regeneratekey/action\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2017-04-13T18:26:11.5770570Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:54.7697481Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"81a9662b-bebf-436f-a333-f67b29880f12\"\ + },{\"properties\":{\"roleName\":\"Storage Blob Data Contributor\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Allows for read, write and delete access\ + \ to Azure Storage blob containers and data\",\"assignableScopes\":[\"/\"\ + ],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/delete\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/write\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/delete\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/write\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/move/action\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/add/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2017-12-21T00:01:24.7972312Z\",\"\ + updatedOn\":\"2021-11-11T20:13:54.9397456Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ba92f5b4-2d11-453d-a403-e96b0029c9fe\"\ + },{\"properties\":{\"roleName\":\"Storage Blob Data Owner\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Allows for full access to Azure Storage blob containers\ + \ and data, including assigning POSIX access control.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/*\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/*\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2018-12-04T07:02:58.2775257Z\",\"\ + updatedOn\":\"2021-11-11T20:13:55.1225062Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b7e6dc6d-f1e8-4753-8033-0f276bb0955b\"\ + },{\"properties\":{\"roleName\":\"Storage Blob Data Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Allows for read access to Azure Storage blob containers\ + \ and data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"\ + Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2017-12-21T00:01:24.7972312Z\",\"\ + updatedOn\":\"2021-11-11T20:13:55.2975076Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2a2b9908-6ea1-4ae2-8e65-a410df84e7d1\"\ + },{\"properties\":{\"roleName\":\"Storage Queue Data Contributor\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Allows for read, write, and delete access\ + \ to Azure Storage queues and queue messages\",\"assignableScopes\":[\"/\"\ + ],\"permissions\":[{\"actions\":[\"Microsoft.Storage/storageAccounts/queueServices/queues/delete\"\ + ,\"Microsoft.Storage/storageAccounts/queueServices/queues/read\",\"Microsoft.Storage/storageAccounts/queueServices/queues/write\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/queueServices/queues/messages/delete\"\ + ,\"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\"\ + ,\"Microsoft.Storage/storageAccounts/queueServices/queues/messages/write\"\ + ,\"Microsoft.Storage/storageAccounts/queueServices/queues/messages/process/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2017-12-21T00:01:24.7972312Z\",\"\ + updatedOn\":\"2021-11-11T20:13:55.4725469Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/974c5e8b-45b9-4653-ba55-5f855dd0fb88\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"974c5e8b-45b9-4653-ba55-5f855dd0fb88\"\ + },{\"properties\":{\"roleName\":\"Storage Queue Data Message Processor\",\"\ + type\":\"BuiltInRole\",\"description\":\"Allows for peek, receive, and delete\ + \ access to Azure Storage queue messages\",\"assignableScopes\":[\"/\"],\"\ + permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\"\ + ,\"Microsoft.Storage/storageAccounts/queueServices/queues/messages/process/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2019-01-28T22:27:04.8947111Z\",\"\ + updatedOn\":\"2021-11-11T20:13:55.6575408Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8a0f0c08-91a1-4084-bc3d-661d67233fed\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8a0f0c08-91a1-4084-bc3d-661d67233fed\"\ + },{\"properties\":{\"roleName\":\"Storage Queue Data Message Sender\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Allows for sending of Azure Storage queue\ + \ messages\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"\ + notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/queueServices/queues/messages/add/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2019-01-28T22:28:34.7459724Z\",\"\ + updatedOn\":\"2021-11-11T20:13:55.8325508Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c6a89b2d-59bc-44d0-9896-0f6e12d7b80a\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c6a89b2d-59bc-44d0-9896-0f6e12d7b80a\"\ + },{\"properties\":{\"roleName\":\"Storage Queue Data Reader\",\"type\":\"\ + BuiltInRole\",\"description\":\"Allows for read access to Azure Storage queues\ + \ and queue messages\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Storage/storageAccounts/queueServices/queues/read\"],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/queueServices/queues/messages/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2017-12-21T00:01:24.7972312Z\",\"\ + updatedOn\":\"2021-11-11T20:13:56.0178497Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/19e7f393-937e-4f77-808e-94535e297925\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"19e7f393-937e-4f77-808e-94535e297925\"\ + },{\"properties\":{\"roleName\":\"Support Request Contributor\",\"type\":\"\ + BuiltInRole\",\"description\":\"Lets you create and manage Support requests\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2017-06-22T22:25:37.8053068Z\",\"updatedOn\":\"2021-11-11T20:13:56.7444481Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\ + },{\"properties\":{\"roleName\":\"Traffic Manager Contributor\",\"type\":\"\ + BuiltInRole\",\"description\":\"Lets you manage Traffic Manager profiles,\ + \ but does not let you control who has access to them.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/trafficManagerProfiles/*\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2015-10-15T23:33:25.9730842Z\",\"updatedOn\":\"2021-11-11T20:13:57.2744497Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\ + },{\"properties\":{\"roleName\":\"User Access Administrator\",\"type\":\"\ + BuiltInRole\",\"description\":\"Lets you manage user access to Azure resources.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"\ + Microsoft.Authorization/*\",\"Microsoft.Support/*\"],\"notActions\":[],\"\ + dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\"\ + ,\"updatedOn\":\"2021-11-11T20:13:57.7932023Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\ + },{\"properties\":{\"roleName\":\"Virtual Machine Contributor\",\"type\":\"\ + BuiltInRole\",\"description\":\"Lets you manage virtual machines, but not\ + \ access to them, and not the virtual network or storage account they're connected\ + \ to.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Compute/availabilitySets/*\",\"Microsoft.Compute/locations/*\"\ + ,\"Microsoft.Compute/virtualMachines/*\",\"Microsoft.Compute/virtualMachineScaleSets/*\"\ + ,\"Microsoft.Compute/cloudServices/*\",\"Microsoft.Compute/disks/write\",\"\ + Microsoft.Compute/disks/read\",\"Microsoft.Compute/disks/delete\",\"Microsoft.DevTestLab/schedules/*\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Network/applicationGateways/backendAddressPools/join/action\"\ + ,\"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\"Microsoft.Network/loadBalancers/inboundNatPools/join/action\"\ + ,\"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\"Microsoft.Network/loadBalancers/probes/join/action\"\ + ,\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/locations/*\"\ + ,\"Microsoft.Network/networkInterfaces/*\",\"Microsoft.Network/networkSecurityGroups/join/action\"\ + ,\"Microsoft.Network/networkSecurityGroups/read\",\"Microsoft.Network/publicIPAddresses/join/action\"\ + ,\"Microsoft.Network/publicIPAddresses/read\",\"Microsoft.Network/virtualNetworks/read\"\ + ,\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.RecoveryServices/locations/*\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/write\"\ + ,\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/usages/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/write\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.SerialConsole/serialPorts/connect/action\",\"Microsoft.SqlVirtualMachine/*\"\ + ,\"Microsoft.Storage/storageAccounts/listKeys/action\",\"Microsoft.Storage/storageAccounts/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2015-06-02T00:18:27.3542698Z\",\"updatedOn\":\"2021-11-11T20:13:58.3176075Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\ + },{\"properties\":{\"roleName\":\"Web Plan Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you manage the web plans for websites, but not access\ + \ to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"\ + Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\",\"Microsoft.Web/serverFarms/*\",\"Microsoft.Web/hostingEnvironments/Join/Action\"\ + ,\"Microsoft.Insights/autoscalesettings/*\"],\"notActions\":[],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2015-02-02T21:55:09.8806423Z\"\ + ,\"updatedOn\":\"2022-09-05T15:10:54.6819807Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\ + },{\"properties\":{\"roleName\":\"Website Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you manage websites (not web plans), but not access\ + \ to them.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"\ + Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/components/*\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ,\"Microsoft.Web/certificates/*\",\"Microsoft.Web/listSitesAssignedToHostName/read\"\ + ,\"Microsoft.Web/serverFarms/join/action\",\"Microsoft.Web/serverFarms/read\"\ + ,\"Microsoft.Web/sites/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2015-05-12T23:10:23.6193952Z\",\"updatedOn\":\"2021-11-11T20:13:58.6655647Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"de139f84-1756-47ae-9be6-808fbbe84772\"\ + },{\"properties\":{\"roleName\":\"Azure Service Bus Data Owner\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Allows for full access to Azure Service\ + \ Bus resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.ServiceBus/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.ServiceBus/*\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2019-04-16T21:33:36.7445745Z\",\"\ + updatedOn\":\"2021-11-11T20:13:59.2005807Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"090c5cfd-751d-490a-894a-3ce6f1109419\"\ + },{\"properties\":{\"roleName\":\"Azure Event Hubs Data Owner\",\"type\":\"\ + BuiltInRole\",\"description\":\"Allows for full access to Azure Event Hubs\ + \ resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.EventHub/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.EventHub/*\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2019-04-16T21:34:29.8656362Z\",\"\ + updatedOn\":\"2021-11-11T20:13:59.3721538Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f526a384-b230-433a-b45c-95f59c4a2dec\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f526a384-b230-433a-b45c-95f59c4a2dec\"\ + },{\"properties\":{\"roleName\":\"Attestation Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Can read write or delete the attestation provider instance\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Attestation/attestationProviders/attestation/read\"\ + ,\"Microsoft.Attestation/attestationProviders/attestation/write\",\"Microsoft.Attestation/attestationProviders/attestation/delete\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2019-04-19T00:24:09.3354177Z\",\"updatedOn\":\"2021-11-11T20:13:59.7271218Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bbf86eb8-f7b4-4cce-96e4-18cddf81d86e\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bbf86eb8-f7b4-4cce-96e4-18cddf81d86e\"\ + },{\"properties\":{\"roleName\":\"HDInsight Cluster Operator\",\"type\":\"\ + BuiltInRole\",\"description\":\"Lets you read and modify HDInsight cluster\ + \ configurations.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.HDInsight/*/read\",\"Microsoft.HDInsight/clusters/getGatewaySettings/action\"\ + ,\"Microsoft.HDInsight/clusters/updateGatewaySettings/action\",\"Microsoft.HDInsight/clusters/configurations/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/operations/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Authorization/*/read\",\"\ + Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2019-04-20T00:03:01.7110732Z\",\"updatedOn\":\"2021-11-11T20:13:59.9052180Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/61ed4efc-fab3-44fd-b111-e24485cc132a\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"61ed4efc-fab3-44fd-b111-e24485cc132a\"\ + },{\"properties\":{\"roleName\":\"Cosmos DB Operator\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you manage Azure Cosmos DB accounts, but not access\ + \ data in them. Prevents access to account keys and connection strings.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DocumentDb/databaseAccounts/*\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Authorization/*/read\",\"\ + Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ,\"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\"\ + ],\"notActions\":[\"Microsoft.DocumentDB/databaseAccounts/readonlyKeys/*\"\ + ,\"Microsoft.DocumentDB/databaseAccounts/regenerateKey/*\",\"Microsoft.DocumentDB/databaseAccounts/listKeys/*\"\ + ,\"Microsoft.DocumentDB/databaseAccounts/listConnectionStrings/*\",\"Microsoft.DocumentDB/databaseAccounts/sqlRoleDefinitions/write\"\ + ,\"Microsoft.DocumentDB/databaseAccounts/sqlRoleDefinitions/delete\",\"Microsoft.DocumentDB/databaseAccounts/sqlRoleAssignments/write\"\ + ,\"Microsoft.DocumentDB/databaseAccounts/sqlRoleAssignments/delete\",\"Microsoft.DocumentDB/databaseAccounts/mongodbRoleDefinitions/write\"\ + ,\"Microsoft.DocumentDB/databaseAccounts/mongodbRoleDefinitions/delete\",\"\ + Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions/write\",\"Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions/delete\"\ + ],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-04-26T17:01:17.0169383Z\"\ + ,\"updatedOn\":\"2023-01-13T19:15:03.5263227Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/230815da-be43-4aae-9cb4-875f7bd000aa\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"230815da-be43-4aae-9cb4-875f7bd000aa\"\ + },{\"properties\":{\"roleName\":\"Hybrid Server Resource Administrator\",\"\ + type\":\"BuiltInRole\",\"description\":\"Can read, write, delete, and re-onboard\ + \ Hybrid servers to the Hybrid Resource Provider.\",\"assignableScopes\":[\"\ + /\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/*\"\ + ,\"Microsoft.HybridCompute/*/read\"],\"notActions\":[],\"dataActions\":[],\"\ + notDataActions\":[]}],\"createdOn\":\"2019-04-29T21:39:32.3132923Z\",\"updatedOn\"\ + :\"2021-11-11T20:14:00.2548257Z\",\"createdBy\":null,\"updatedBy\":null},\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/48b40c6e-82e0-4eb3-90d5-19e40f49b624\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"48b40c6e-82e0-4eb3-90d5-19e40f49b624\"\ + },{\"properties\":{\"roleName\":\"Hybrid Server Onboarding\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Can onboard new Hybrid servers to the Hybrid Resource Provider.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/read\"\ + ,\"Microsoft.HybridCompute/machines/write\"],\"notActions\":[],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2019-04-29T22:36:28.1873756Z\"\ + ,\"updatedOn\":\"2021-11-11T20:14:00.4308999Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d1e5ee4-7c68-4a71-ac8b-0739630a3dfb\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5d1e5ee4-7c68-4a71-ac8b-0739630a3dfb\"\ + },{\"properties\":{\"roleName\":\"Azure Event Hubs Data Receiver\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Allows receive access to Azure Event Hubs\ + \ resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.EventHub/*/eventhubs/consumergroups/read\"],\"notActions\":[],\"\ + dataActions\":[\"Microsoft.EventHub/*/receive/action\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2019-05-10T06:25:21.1056666Z\",\"updatedOn\":\"2021-11-11T20:14:01.3225169Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a638d3c7-ab3a-418d-83e6-5f17a39d4fde\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a638d3c7-ab3a-418d-83e6-5f17a39d4fde\"\ + },{\"properties\":{\"roleName\":\"Azure Event Hubs Data Sender\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Allows send access to Azure Event Hubs\ + \ resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.EventHub/*/eventhubs/read\"],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.EventHub/*/send/action\"],\"notDataActions\":[]}],\"createdOn\"\ + :\"2019-05-10T06:26:12.4673714Z\",\"updatedOn\":\"2021-11-11T20:14:01.4925583Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2b629674-e913-4c01-ae53-ef4638d8f975\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2b629674-e913-4c01-ae53-ef4638d8f975\"\ + },{\"properties\":{\"roleName\":\"Azure Service Bus Data Receiver\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Allows for receive access to Azure Service\ + \ Bus resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.ServiceBus/*/queues/read\",\"Microsoft.ServiceBus/*/topics/read\"\ + ,\"Microsoft.ServiceBus/*/topics/subscriptions/read\"],\"notActions\":[],\"\ + dataActions\":[\"Microsoft.ServiceBus/*/receive/action\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2019-05-10T06:43:01.6343849Z\",\"updatedOn\":\"2021-11-11T20:14:01.6629685Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4f6d3b9b-027b-4f4c-9142-0e5a2a2247e0\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4f6d3b9b-027b-4f4c-9142-0e5a2a2247e0\"\ + },{\"properties\":{\"roleName\":\"Azure Service Bus Data Sender\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Allows for send access to Azure Service\ + \ Bus resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.ServiceBus/*/queues/read\",\"Microsoft.ServiceBus/*/topics/read\"\ + ,\"Microsoft.ServiceBus/*/topics/subscriptions/read\"],\"notActions\":[],\"\ + dataActions\":[\"Microsoft.ServiceBus/*/send/action\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2019-05-10T06:43:46.7046934Z\",\"updatedOn\":\"2021-11-11T20:14:01.8479199Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/69a216fc-b8fb-44d8-bc22-1f3c2cd27a39\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"69a216fc-b8fb-44d8-bc22-1f3c2cd27a39\"\ + },{\"properties\":{\"roleName\":\"Storage File Data SMB Share Reader\",\"\ + type\":\"BuiltInRole\",\"description\":\"Allows for read access to Azure File\ + \ Share over SMB\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2019-07-01T20:19:31.8620471Z\",\"\ + updatedOn\":\"2021-11-11T20:14:04.3642909Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/aba4ae5f-2193-4029-9191-0cb91df5e314\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"aba4ae5f-2193-4029-9191-0cb91df5e314\"\ + },{\"properties\":{\"roleName\":\"Storage File Data SMB Share Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Allows for read, write, and delete\ + \ access in Azure Storage file shares over SMB\",\"assignableScopes\":[\"\ + /\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"\ + Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\",\"\ + Microsoft.Storage/storageAccounts/fileServices/fileshares/files/write\",\"\ + Microsoft.Storage/storageAccounts/fileServices/fileshares/files/delete\"],\"\ + notDataActions\":[]}],\"createdOn\":\"2019-07-01T20:54:35.4834310Z\",\"updatedOn\"\ + :\"2021-11-11T20:14:04.5443323Z\",\"createdBy\":null,\"updatedBy\":null},\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0c867c2a-1d8c-454a-a3db-ab2ea1bdc8bb\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0c867c2a-1d8c-454a-a3db-ab2ea1bdc8bb\"\ + },{\"properties\":{\"roleName\":\"Private DNS Zone Contributor\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Lets you manage private DNS zone resources,\ + \ but not the virtual networks they are linked to.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\",\"Microsoft.Network/privateDnsZones/*\",\"Microsoft.Network/privateDnsOperationResults/*\"\ + ,\"Microsoft.Network/privateDnsOperationStatuses/*\",\"Microsoft.Network/virtualNetworks/read\"\ + ,\"Microsoft.Network/virtualNetworks/join/action\",\"Microsoft.Authorization/*/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2019-07-10T19:31:15.5645518Z\",\"updatedOn\":\"2021-11-11T20:14:04.7342851Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b12aa53e-6015-4669-85d0-8515ebb3ae7f\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b12aa53e-6015-4669-85d0-8515ebb3ae7f\"\ + },{\"properties\":{\"roleName\":\"Storage Blob Delegator\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Allows for generation of a user delegation key which can\ + \ be used to sign SAS tokens\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2019-07-23T00:51:16.3376761Z\",\"updatedOn\":\"2021-11-11T20:14:05.4321714Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/db58b8e5-c6ad-4a2a-8342-4190687cbf4a\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"db58b8e5-c6ad-4a2a-8342-4190687cbf4a\"\ + },{\"properties\":{\"roleName\":\"Desktop Virtualization User\",\"type\":\"\ + BuiltInRole\",\"description\":\"Allows user to use the applications in an\ + \ application group.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[],\"notActions\":[],\"dataActions\":[\"Microsoft.DesktopVirtualization/applicationGroups/useApplications/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2019-08-07T00:29:03.8727621Z\",\"\ + updatedOn\":\"2021-11-11T20:14:05.9821791Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1d18fff3-a72a-46b5-b4a9-0b38a3cd7e63\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1d18fff3-a72a-46b5-b4a9-0b38a3cd7e63\"\ + },{\"properties\":{\"roleName\":\"Storage File Data SMB Share Elevated Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Allows for read, write, delete\ + \ and modify NTFS permission access in Azure Storage file shares over SMB\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\"\ + ,\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/write\"\ + ,\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/delete\"\ + ,\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/modifypermissions/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2019-08-07T01:35:36.9935457Z\",\"\ + updatedOn\":\"2021-11-11T20:14:06.1571744Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a7264617-510b-434b-a828-9731dc254ea7\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a7264617-510b-434b-a828-9731dc254ea7\"\ + },{\"properties\":{\"roleName\":\"Blueprint Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Can manage blueprint definitions, but not assign them.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Blueprint/blueprints/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Support/*\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-14T21:55:16.9683949Z\"\ + ,\"updatedOn\":\"2021-11-11T20:14:06.5171828Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/41077137-e803-4205-871c-5a86e6a753b4\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"41077137-e803-4205-871c-5a86e6a753b4\"\ + },{\"properties\":{\"roleName\":\"Blueprint Operator\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Can assign existing published blueprints, but cannot create\ + \ new blueprints. NOTE: this only works if the assignment is done with a user-assigned\ + \ managed identity.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Authorization/*/read\",\"Microsoft.Blueprint/blueprintAssignments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2019-08-14T21:56:48.7897875Z\",\"updatedOn\":\"2021-11-11T20:14:06.6971401Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/437d2ced-4a38-4302-8479-ed2bcb43d090\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"437d2ced-4a38-4302-8479-ed2bcb43d090\"\ + },{\"properties\":{\"roleName\":\"Microsoft Sentinel Contributor\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Microsoft Sentinel Contributor\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SecurityInsights/*\",\"\ + Microsoft.OperationalInsights/workspaces/analytics/query/action\",\"Microsoft.OperationalInsights/workspaces/*/read\"\ + ,\"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\"Microsoft.OperationsManagement/solutions/read\"\ + ,\"Microsoft.OperationalInsights/workspaces/query/read\",\"Microsoft.OperationalInsights/workspaces/query/*/read\"\ + ,\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.OperationalInsights/querypacks/*/read\"\ + ,\"Microsoft.Insights/workbooks/*\",\"Microsoft.Insights/myworkbooks/read\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"\ + Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[\"Microsoft.SecurityInsights/ConfidentialWatchlists/*\"\ + ,\"Microsoft.OperationalInsights/workspaces/query/ConfidentialWatchlist/*\"\ + ],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:39:03.8725173Z\"\ + ,\"updatedOn\":\"2022-08-01T18:55:21.5434692Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ab8e14d6-4a74-4a29-9ba8-549422addade\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ab8e14d6-4a74-4a29-9ba8-549422addade\"\ + },{\"properties\":{\"roleName\":\"Microsoft Sentinel Responder\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Microsoft Sentinel Responder\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SecurityInsights/*/read\"\ + ,\"Microsoft.SecurityInsights/dataConnectorsCheckRequirements/action\",\"\ + Microsoft.SecurityInsights/automationRules/*\",\"Microsoft.SecurityInsights/cases/*\"\ + ,\"Microsoft.SecurityInsights/incidents/*\",\"Microsoft.SecurityInsights/threatIntelligence/indicators/appendTags/action\"\ + ,\"Microsoft.SecurityInsights/threatIntelligence/indicators/query/action\"\ + ,\"Microsoft.SecurityInsights/threatIntelligence/bulkTag/action\",\"Microsoft.SecurityInsights/threatIntelligence/indicators/appendTags/action\"\ + ,\"Microsoft.SecurityInsights/threatIntelligence/indicators/replaceTags/action\"\ + ,\"Microsoft.SecurityInsights/threatIntelligence/queryIndicators/action\"\ + ,\"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\"Microsoft.OperationalInsights/workspaces/*/read\"\ + ,\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.OperationalInsights/workspaces/savedSearches/read\"\ + ,\"Microsoft.OperationsManagement/solutions/read\",\"Microsoft.OperationalInsights/workspaces/query/read\"\ + ,\"Microsoft.OperationalInsights/workspaces/query/*/read\",\"Microsoft.OperationalInsights/workspaces/dataSources/read\"\ + ,\"Microsoft.OperationalInsights/querypacks/*/read\",\"Microsoft.Insights/workbooks/read\"\ + ,\"Microsoft.Insights/myworkbooks/read\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ],\"notActions\":[\"Microsoft.SecurityInsights/cases/*/Delete\",\"Microsoft.SecurityInsights/incidents/*/Delete\"\ + ,\"Microsoft.SecurityInsights/ConfidentialWatchlists/*\",\"Microsoft.OperationalInsights/workspaces/query/ConfidentialWatchlist/*\"\ + ],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:54:07.6467264Z\"\ + ,\"updatedOn\":\"2022-08-01T18:54:27.2710437Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3e150937-b8fe-4cfb-8069-0eaf05ecd056\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3e150937-b8fe-4cfb-8069-0eaf05ecd056\"\ + },{\"properties\":{\"roleName\":\"Microsoft Sentinel Reader\",\"type\":\"\ + BuiltInRole\",\"description\":\"Microsoft Sentinel Reader\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SecurityInsights/*/read\"\ + ,\"Microsoft.SecurityInsights/dataConnectorsCheckRequirements/action\",\"\ + Microsoft.SecurityInsights/threatIntelligence/indicators/query/action\",\"\ + Microsoft.SecurityInsights/threatIntelligence/queryIndicators/action\",\"\ + Microsoft.OperationalInsights/workspaces/analytics/query/action\",\"Microsoft.OperationalInsights/workspaces/*/read\"\ + ,\"Microsoft.OperationalInsights/workspaces/LinkedServices/read\",\"Microsoft.OperationalInsights/workspaces/savedSearches/read\"\ + ,\"Microsoft.OperationsManagement/solutions/read\",\"Microsoft.OperationalInsights/workspaces/query/read\"\ + ,\"Microsoft.OperationalInsights/workspaces/query/*/read\",\"Microsoft.OperationalInsights/querypacks/*/read\"\ + ,\"Microsoft.OperationalInsights/workspaces/dataSources/read\",\"Microsoft.Insights/workbooks/read\"\ + ,\"Microsoft.Insights/myworkbooks/read\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/templateSpecs/*/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[\"Microsoft.SecurityInsights/ConfidentialWatchlists/*\"\ + ,\"Microsoft.OperationalInsights/workspaces/query/ConfidentialWatchlist/*\"\ + ],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T16:58:50.1132117Z\"\ + ,\"updatedOn\":\"2022-08-01T18:55:21.5434692Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8d289c81-5878-46d4-8554-54e1e3d8b5cb\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8d289c81-5878-46d4-8554-54e1e3d8b5cb\"\ + },{\"properties\":{\"roleName\":\"Policy Insights Data Writer (Preview)\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Allows read access to resource\ + \ policies and write access to resource component policy events.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/policyassignments/read\"\ + ,\"Microsoft.Authorization/policydefinitions/read\",\"Microsoft.Authorization/policyexemptions/read\"\ + ,\"Microsoft.Authorization/policysetdefinitions/read\"],\"notActions\":[],\"\ + dataActions\":[\"Microsoft.PolicyInsights/checkDataPolicyCompliance/action\"\ + ,\"Microsoft.PolicyInsights/policyEvents/logDataEvents/action\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2019-09-19T19:35:20.9504127Z\",\"updatedOn\":\"2021-11-11T20:14:09.4235132Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/66bb4e9e-b016-4a94-8249-4c0511c2be84\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"66bb4e9e-b016-4a94-8249-4c0511c2be84\"\ + },{\"properties\":{\"roleName\":\"SignalR AccessKey Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Read SignalR Service Access Keys\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.SignalRService/*/read\"\ + ,\"Microsoft.SignalRService/SignalR/listkeys/action\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2019-09-20T09:33:19.6236874Z\",\"updatedOn\":\"2021-11-11T20:14:09.6134860Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/04165923-9d83-45d5-8227-78b77b0a687e\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"04165923-9d83-45d5-8227-78b77b0a687e\"\ + },{\"properties\":{\"roleName\":\"SignalR/Web PubSub Contributor\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Create, Read, Update, and Delete SignalR\ + \ service resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.SignalRService/*\",\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2019-09-20T09:58:09.0009662Z\",\"updatedOn\":\"2021-11-11T20:14:09.7884765Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8cf5e20a-e4b2-4e9d-b3a1-5ceb692c2761\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8cf5e20a-e4b2-4e9d-b3a1-5ceb692c2761\"\ + },{\"properties\":{\"roleName\":\"Azure Connected Machine Onboarding\",\"\ + type\":\"BuiltInRole\",\"description\":\"Can onboard Azure Connected Machines.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/read\"\ + ,\"Microsoft.HybridCompute/machines/write\",\"Microsoft.HybridCompute/privateLinkScopes/read\"\ + ,\"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2019-10-23T20:15:07.1372870Z\"\ + ,\"updatedOn\":\"2021-11-11T20:14:10.8735219Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b64e21ea-ac4e-4cdf-9dc9-5b892992bee7\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b64e21ea-ac4e-4cdf-9dc9-5b892992bee7\"\ + },{\"properties\":{\"roleName\":\"Managed Services Registration assignment\ + \ Delete Role\",\"type\":\"BuiltInRole\",\"description\":\"Managed Services\ + \ Registration Assignment Delete Role allows the managing tenant users to\ + \ delete the registration assignment assigned to their tenant.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ManagedServices/registrationAssignments/read\"\ + ,\"Microsoft.ManagedServices/registrationAssignments/delete\",\"Microsoft.ManagedServices/operationStatuses/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2019-10-23T22:33:33.1183469Z\",\"updatedOn\":\"2021-11-11T20:14:11.2336400Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/91c1777a-f3dc-4fae-b103-61d183457e46\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"91c1777a-f3dc-4fae-b103-61d183457e46\"\ + },{\"properties\":{\"roleName\":\"App Configuration Data Owner\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Allows full access to App Configuration\ + \ data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"\ + notActions\":[],\"dataActions\":[\"Microsoft.AppConfiguration/configurationStores/*/read\"\ + ,\"Microsoft.AppConfiguration/configurationStores/*/write\",\"Microsoft.AppConfiguration/configurationStores/*/delete\"\ + ,\"Microsoft.AppConfiguration/configurationStores/*/action\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2019-10-25T18:41:40.1185063Z\",\"updatedOn\":\"2023-02-03T23:50:20.5687092Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b\"\ + },{\"properties\":{\"roleName\":\"App Configuration Data Reader\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Allows read access to App Configuration\ + \ data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"\ + notActions\":[],\"dataActions\":[\"Microsoft.AppConfiguration/configurationStores/*/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2019-10-25T18:45:33.7975332Z\",\"\ + updatedOn\":\"2021-11-11T20:14:11.5885341Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/516239f1-63e1-4d78-a4de-a74fb236a071\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"516239f1-63e1-4d78-a4de-a74fb236a071\"\ + },{\"properties\":{\"roleName\":\"Kubernetes Cluster - Azure Arc Onboarding\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Role definition to authorize any\ + \ user/service to create connectedClusters resource\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\"\ + ,\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Kubernetes/connectedClusters/Write\"\ + ,\"Microsoft.Kubernetes/connectedClusters/read\",\"Microsoft.Support/*\"],\"\ + notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"\ + 2019-11-18T17:00:02.2087147Z\",\"updatedOn\":\"2021-11-11T20:14:12.4685303Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/34e09817-6cbe-4d01-b1a2-e0eac5743d41\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"34e09817-6cbe-4d01-b1a2-e0eac5743d41\"\ + },{\"properties\":{\"roleName\":\"Experimentation Contributor\",\"type\":\"\ + BuiltInRole\",\"description\":\"Experimentation Contributor\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Experimentation/experimentWorkspaces/read\"],\"notActions\":[],\"\ + dataActions\":[\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\"\ + ,\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/write\"\ + ,\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/delete\"\ + ,\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experiment/action\"\ + ,\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/emergencystop/action\"\ + ,\"Microsoft.Experimentation/experimentWorkspaces/read\",\"Microsoft.Experimentation/experimentWorkspaces/write\"\ + ,\"Microsoft.Experimentation/experimentWorkspaces/delete\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2019-12-13T00:08:08.6679591Z\",\"updatedOn\":\"2021-11-11T20:14:14.6454147Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7f646f1b-fa08-80eb-a22b-edd6ce5c915c\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7f646f1b-fa08-80eb-a22b-edd6ce5c915c\"\ + },{\"properties\":{\"roleName\":\"Cognitive Services QnA Maker Reader\",\"\ + type\":\"BuiltInRole\",\"description\":\"Let\u2019s you read and test a KB\ + \ only.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"\ + ,\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/read\"\ + ,\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/download/read\"\ + ,\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/generateanswer/action\"\ + ,\"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/read\"\ + ,\"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/read\",\"\ + Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/read\",\"\ + Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/download/read\"\ + ,\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/generateanswer/action\"\ + ,\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/read\",\"\ + Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/read\"\ + ,\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/read\"\ + ,\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/download/read\"\ + ,\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/generateanswer/action\"\ + ,\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/alterations/read\"\ + ,\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointkeys/read\"\ + ,\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointsettings/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2019-12-17T18:26:12.3329439Z\",\"\ + updatedOn\":\"2021-11-11T20:14:14.8254033Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/466ccd10-b268-4a11-b098-b4849f024126\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"466ccd10-b268-4a11-b098-b4849f024126\"\ + },{\"properties\":{\"roleName\":\"Cognitive Services QnA Maker Editor\",\"\ + type\":\"BuiltInRole\",\"description\":\"Let\u2019s you create, edit, import\ + \ and export a KB. You cannot publish or delete a KB.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"\ + ,\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/read\"\ + ,\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/download/read\"\ + ,\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/create/write\"\ + ,\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/write\",\"\ + Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/generateanswer/action\"\ + ,\"Microsoft.CognitiveServices/accounts/QnAMaker/knowledgebases/train/action\"\ + ,\"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/alterations/write\"\ + ,\"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker/endpointkeys/refreshkeys/action\"\ + ,\"Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/read\",\"\ + Microsoft.CognitiveServices/accounts/QnAMaker/endpointsettings/write\",\"\ + Microsoft.CognitiveServices/accounts/QnAMaker/operations/read\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/read\"\ + ,\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/download/read\"\ + ,\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/create/write\"\ + ,\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/write\"\ + ,\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/generateanswer/action\"\ + ,\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/knowledgebases/train/action\"\ + ,\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/read\",\"\ + Microsoft.CognitiveServices/accounts/QnAMaker.v2/alterations/write\",\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/read\"\ + ,\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointkeys/refreshkeys/action\"\ + ,\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/read\"\ + ,\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/endpointsettings/write\"\ + ,\"Microsoft.CognitiveServices/accounts/QnAMaker.v2/operations/read\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/read\"\ + ,\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/download/read\"\ + ,\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/create/write\"\ + ,\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/write\"\ + ,\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/generateanswer/action\"\ + ,\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/knowledgebases/train/action\"\ + ,\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/alterations/read\"\ + ,\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/alterations/write\"\ + ,\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointkeys/read\"\ + ,\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointkeys/refreshkeys/action\"\ + ,\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointsettings/read\"\ + ,\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/endpointsettings/write\"\ + ,\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnAMaker/operations/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2019-12-17T18:27:30.6434556Z\",\"\ + updatedOn\":\"2021-11-11T20:14:14.9961559Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f4cc2bf9-21be-47a1-bdf1-5c5804381025\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f4cc2bf9-21be-47a1-bdf1-5c5804381025\"\ + },{\"properties\":{\"roleName\":\"Experimentation Administrator\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Experimentation Administrator\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Experimentation/experimentWorkspaces/read\"],\"notActions\":[],\"\ + dataActions\":[\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/admin/action\"\ + ,\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\"\ + ,\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/write\"\ + ,\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/delete\"\ + ,\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experimentadmin/action\"\ + ,\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/experiment/action\"\ + ,\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/emergencystop/action\"\ + ,\"Microsoft.Experimentation/experimentWorkspaces/read\",\"Microsoft.Experimentation/experimentWorkspaces/write\"\ + ,\"Microsoft.Experimentation/experimentWorkspaces/delete\",\"Microsoft.Experimentation/experimentWorkspaces/admin/action\"\ + ,\"Microsoft.Experimentation/experimentWorkspaces/metricwrite/action\",\"\ + Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/metricwrite/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2019-12-18T22:46:33.1116612Z\",\"\ + updatedOn\":\"2021-11-11T20:14:15.1811577Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7f646f1b-fa08-80eb-a33b-edd6ce5c915c\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7f646f1b-fa08-80eb-a33b-edd6ce5c915c\"\ + },{\"properties\":{\"roleName\":\"Remote Rendering Administrator\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Provides user with conversion, manage session,\ + \ rendering and diagnostics capabilities for Azure Remote Rendering\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.MixedReality/RemoteRenderingAccounts/convert/action\",\"Microsoft.MixedReality/RemoteRenderingAccounts/convert/read\"\ + ,\"Microsoft.MixedReality/RemoteRenderingAccounts/convert/delete\",\"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/read\"\ + ,\"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/action\"\ + ,\"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/delete\"\ + ,\"Microsoft.MixedReality/RemoteRenderingAccounts/render/read\",\"Microsoft.MixedReality/RemoteRenderingAccounts/diagnostic/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-01-23T18:15:31.3450348Z\",\"\ + updatedOn\":\"2021-11-11T20:14:16.7621737Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3df8b902-2a6f-47c7-8cc5-360e9b272a7e\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3df8b902-2a6f-47c7-8cc5-360e9b272a7e\"\ + },{\"properties\":{\"roleName\":\"Remote Rendering Client\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Provides user with manage session, rendering and diagnostics\ + \ capabilities for Azure Remote Rendering.\",\"assignableScopes\":[\"/\"],\"\ + permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/read\"\ + ,\"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/action\"\ + ,\"Microsoft.MixedReality/RemoteRenderingAccounts/managesessions/delete\"\ + ,\"Microsoft.MixedReality/RemoteRenderingAccounts/render/read\",\"Microsoft.MixedReality/RemoteRenderingAccounts/diagnostic/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-01-23T18:32:52.7069824Z\",\"\ + updatedOn\":\"2021-11-11T20:14:16.9421512Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d39065c4-c120-43c9-ab0a-63eed9795f0a\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d39065c4-c120-43c9-ab0a-63eed9795f0a\"\ + },{\"properties\":{\"roleName\":\"Managed Application Contributor Role\",\"\ + type\":\"BuiltInRole\",\"description\":\"Allows for creating managed application\ + \ resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"*/read\",\"Microsoft.Solutions/applications/*\",\"Microsoft.Solutions/register/action\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/*\",\"Microsoft.Resources/deployments/*\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2020-02-08T03:39:11.8933879Z\",\"updatedOn\":\"2021-11-11T20:14:19.1271536Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/641177b8-a67a-45b9-a033-47bc880bb21e\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"641177b8-a67a-45b9-a033-47bc880bb21e\"\ + },{\"properties\":{\"roleName\":\"Security Assessment Contributor\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Lets you push assessments to Security Center\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Security/assessments/write\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2020-02-13T08:23:47.7656161Z\",\"updatedOn\":\"2021-11-11T20:14:19.3021974Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/612c2aa1-cb24-443b-ac28-3ab7272de6f5\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"612c2aa1-cb24-443b-ac28-3ab7272de6f5\"\ + },{\"properties\":{\"roleName\":\"Tag Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you manage tags on entities, without providing access\ + \ to the entities themselves.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/resources/read\",\"Microsoft.Resources/subscriptions/resources/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.Support/*\",\"Microsoft.Resources/tags/*\"],\"notActions\":[],\"\ + dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-18T23:19:19.2977644Z\"\ + ,\"updatedOn\":\"2021-11-11T20:14:20.0172041Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4a9ae827-6dc8-4573-8ac7-8239d42aa03f\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4a9ae827-6dc8-4573-8ac7-8239d42aa03f\"\ + },{\"properties\":{\"roleName\":\"Integration Service Environment Developer\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Allows developers to create and\ + \ update workflows, integration accounts and API connections in integration\ + \ service environments.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Support/*\",\"Microsoft.Logic/integrationServiceEnvironments/read\"\ + ,\"Microsoft.Logic/integrationServiceEnvironments/*/join/action\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-20T21:09:00.5627875Z\"\ + ,\"updatedOn\":\"2021-11-11T20:14:20.1871986Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c7aa55d3-1abb-444a-a5ca-5e51e485d6ec\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c7aa55d3-1abb-444a-a5ca-5e51e485d6ec\"\ + },{\"properties\":{\"roleName\":\"Integration Service Environment Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Lets you manage integration service\ + \ environments, but not access to them.\",\"assignableScopes\":[\"/\"],\"\ + permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Support/*\"\ + ,\"Microsoft.Logic/integrationServiceEnvironments/*\"],\"notActions\":[],\"\ + dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-20T21:10:44.4008319Z\"\ + ,\"updatedOn\":\"2021-11-11T20:14:20.3622058Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a41e2c5b-bd99-4a07-88f4-9bf657a760b8\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a41e2c5b-bd99-4a07-88f4-9bf657a760b8\"\ + },{\"properties\":{\"roleName\":\"Azure Kubernetes Service Contributor Role\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Grants access to read and write\ + \ Azure Kubernetes Service clusters\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.ContainerService/managedClusters/read\",\"Microsoft.ContainerService/managedClusters/write\"\ + ,\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2020-02-27T19:27:15.0739970Z\"\ + ,\"updatedOn\":\"2021-11-11T20:14:21.2621727Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8\"\ + },{\"properties\":{\"roleName\":\"Azure Digital Twins Data Reader\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Read-only role for Digital Twins data-plane\ + \ properties\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[],\"notActions\":[],\"dataActions\":[\"Microsoft.DigitalTwins/digitaltwins/read\"\ + ,\"Microsoft.DigitalTwins/digitaltwins/relationships/read\",\"Microsoft.DigitalTwins/eventroutes/read\"\ + ,\"Microsoft.DigitalTwins/jobs/import/read\",\"Microsoft.DigitalTwins/models/read\"\ + ,\"Microsoft.DigitalTwins/query/action\"],\"notDataActions\":[]}],\"createdOn\"\ + :\"2020-03-10T23:48:14.7057381Z\",\"updatedOn\":\"2022-09-08T02:43:56.8036813Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d57506d4-4c8d-48b1-8587-93c323f6a5a3\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d57506d4-4c8d-48b1-8587-93c323f6a5a3\"\ + },{\"properties\":{\"roleName\":\"Azure Digital Twins Data Owner\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Full access role for Digital Twins data-plane\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.DigitalTwins/digitaltwins/*\",\"Microsoft.DigitalTwins/digitaltwins/commands/*\"\ + ,\"Microsoft.DigitalTwins/digitaltwins/relationships/*\",\"Microsoft.DigitalTwins/eventroutes/*\"\ + ,\"Microsoft.DigitalTwins/jobs/*\",\"Microsoft.DigitalTwins/models/*\",\"\ + Microsoft.DigitalTwins/query/*\"],\"notDataActions\":[]}],\"createdOn\":\"\ + 2020-03-10T23:49:33.7821930Z\",\"updatedOn\":\"2022-09-07T23:56:38.8525330Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bcd981a7-7f74-457b-83e1-cceb9e632ffe\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bcd981a7-7f74-457b-83e1-cceb9e632ffe\"\ + },{\"properties\":{\"roleName\":\"Hierarchy Settings Administrator\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Allows users to edit and delete Hierarchy\ + \ Settings\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"\ + Microsoft.Management/managementGroups/settings/write\",\"Microsoft.Management/managementGroups/settings/delete\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2020-03-13T23:55:11.0212387Z\",\"updatedOn\":\"2021-11-11T20:14:23.0882347Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/350f8d15-c687-4448-8ae1-157740a3936d\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"350f8d15-c687-4448-8ae1-157740a3936d\"\ + },{\"properties\":{\"roleName\":\"FHIR Data Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Role allows user or principal full access to FHIR Data\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/*\"\ + ,\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/*\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2020-03-17T18:35:04.4949547Z\",\"updatedOn\":\"2021-11-11T20:14:23.6235473Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5a1fc7df-4bf1-4951-a576-89034ee01acd\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5a1fc7df-4bf1-4951-a576-89034ee01acd\"\ + },{\"properties\":{\"roleName\":\"FHIR Data Exporter\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Role allows user or principal to read and export FHIR Data\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/read\"\ + ,\"Microsoft.HealthcareApis/services/fhir/resources/export/action\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\"\ + ,\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/export/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-03-17T18:45:01.9764073Z\",\"\ + updatedOn\":\"2021-11-11T20:14:23.7992557Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3db33094-8700-4567-8da5-1501d4e7e843\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3db33094-8700-4567-8da5-1501d4e7e843\"\ + },{\"properties\":{\"roleName\":\"FHIR Data Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Role allows user or principal to read FHIR Data\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.HealthcareApis/services/fhir/resources/read\",\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-03-17T18:49:04.8353499Z\",\"\ + updatedOn\":\"2021-11-11T20:14:23.9692275Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4c8d0bbc-75d3-4935-991f-5f3c56d81508\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4c8d0bbc-75d3-4935-991f-5f3c56d81508\"\ + },{\"properties\":{\"roleName\":\"FHIR Data Writer\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Role allows user or principal to read and write FHIR Data\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/*\"\ + ,\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/*\"],\"notDataActions\"\ + :[\"Microsoft.HealthcareApis/services/fhir/resources/hardDelete/action\",\"\ + Microsoft.HealthcareApis/workspaces/fhirservices/resources/hardDelete/action\"\ + ]}],\"createdOn\":\"2020-03-17T18:55:35.2413335Z\",\"updatedOn\":\"2021-11-11T20:14:24.1442783Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3f88fce4-5892-4214-ae73-ba5294559913\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3f88fce4-5892-4214-ae73-ba5294559913\"\ + },{\"properties\":{\"roleName\":\"Experimentation Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Experimentation Reader\",\"assignableScopes\":[\"/\"],\"\ + permissions\":[{\"actions\":[\"Microsoft.Experimentation/experimentWorkspaces/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.Experimentation/experimentWorkspaces/read\"\ + ,\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-03-25T18:05:14.8375678Z\",\"\ + updatedOn\":\"2021-11-11T20:14:24.5042390Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/49632ef5-d9ac-41f4-b8e7-bbe587fa74a1\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"49632ef5-d9ac-41f4-b8e7-bbe587fa74a1\"\ + },{\"properties\":{\"roleName\":\"Object Understanding Account Owner\",\"\ + type\":\"BuiltInRole\",\"description\":\"Provides user with ingestion capabilities\ + \ for Azure Object Understanding.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/action\"\ + ,\"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/read\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2020-04-22T19:15:09.0697923Z\",\"updatedOn\":\"2021-11-11T20:14:26.8743132Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4dd61c23-6743-42fe-a388-d8bdd41cb745\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4dd61c23-6743-42fe-a388-d8bdd41cb745\"\ + },{\"properties\":{\"roleName\":\"Azure Maps Data Contributor\",\"type\":\"\ + BuiltInRole\",\"description\":\"Grants access to read, write, and delete access\ + \ to map related data from an Azure maps account.\",\"assignableScopes\":[\"\ + /\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"\ + Microsoft.Maps/accounts/*/read\",\"Microsoft.Maps/accounts/*/write\",\"Microsoft.Maps/accounts/*/delete\"\ + ,\"Microsoft.Maps/accounts/*/action\"],\"notDataActions\":[]}],\"createdOn\"\ + :\"2020-05-07T20:55:05.0645410Z\",\"updatedOn\":\"2021-11-11T20:14:28.3092598Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8f5e0ce6-4f7b-4dcf-bddf-e6f48634a204\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8f5e0ce6-4f7b-4dcf-bddf-e6f48634a204\"\ + },{\"properties\":{\"roleName\":\"Cognitive Services Custom Vision Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Full access to the project, including\ + \ the ability to view, create, edit, or delete projects.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/*\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-05-08T23:47:07.0779345Z\",\"\ + updatedOn\":\"2021-11-11T20:14:28.8342655Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c1ff6cc2-c111-46fe-8896-e0ef812ad9f3\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c1ff6cc2-c111-46fe-8896-e0ef812ad9f3\"\ + },{\"properties\":{\"roleName\":\"Cognitive Services Custom Vision Deployment\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Publish, unpublish or export models.\ + \ Deployment can view the project but can\u2019t update.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/*/read\"\ + ,\"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/*\"\ + ,\"Microsoft.CognitiveServices/accounts/CustomVision/projects/iterations/publish/*\"\ + ,\"Microsoft.CognitiveServices/accounts/CustomVision/projects/iterations/export/*\"\ + ,\"Microsoft.CognitiveServices/accounts/CustomVision/projects/quicktest/*\"\ + ,\"Microsoft.CognitiveServices/accounts/CustomVision/classify/*\",\"Microsoft.CognitiveServices/accounts/CustomVision/detect/*\"\ + ],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\ + ]}],\"createdOn\":\"2020-05-09T01:31:05.9528620Z\",\"updatedOn\":\"2021-11-11T20:14:29.0142669Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5c4089e1-6d96-4d2f-b296-c1bc7137275f\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5c4089e1-6d96-4d2f-b296-c1bc7137275f\"\ + },{\"properties\":{\"roleName\":\"Cognitive Services Custom Vision Labeler\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"View, edit training images and\ + \ create, add, remove, or delete the image tags. Labelers can view the project\ + \ but can\u2019t update anything other than training images and tags.\",\"\ + assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/*/read\"\ + ,\"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/query/action\"\ + ,\"Microsoft.CognitiveServices/accounts/CustomVision/projects/images/*\",\"\ + Microsoft.CognitiveServices/accounts/CustomVision/projects/tags/*\",\"Microsoft.CognitiveServices/accounts/CustomVision/projects/images/suggested/*\"\ + ,\"Microsoft.CognitiveServices/accounts/CustomVision/projects/tagsandregions/suggestions/action\"\ + ],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\ + ]}],\"createdOn\":\"2020-05-09T01:33:20.8278896Z\",\"updatedOn\":\"2021-11-11T20:14:29.1892871Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/88424f51-ebe7-446f-bc41-7fa16989e96c\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"88424f51-ebe7-446f-bc41-7fa16989e96c\"\ + },{\"properties\":{\"roleName\":\"Cognitive Services Custom Vision Reader\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Read-only actions in the project.\ + \ Readers can\u2019t create or update the project.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/*/read\"\ + ,\"Microsoft.CognitiveServices/accounts/CustomVision/projects/predictions/query/action\"\ + ],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\ + ]}],\"createdOn\":\"2020-05-09T01:34:18.5328818Z\",\"updatedOn\":\"2021-11-11T20:14:29.3642707Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/93586559-c37d-4a6b-ba08-b9f0940c2d73\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"93586559-c37d-4a6b-ba08-b9f0940c2d73\"\ + },{\"properties\":{\"roleName\":\"Cognitive Services Custom Vision Trainer\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"View, edit projects and train\ + \ the models, including the ability to publish, unpublish, export the models.\ + \ Trainers can\u2019t create or delete the project.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/*\"\ + ],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/CustomVision/projects/action\"\ + ,\"Microsoft.CognitiveServices/accounts/CustomVision/projects/delete\",\"\ + Microsoft.CognitiveServices/accounts/CustomVision/projects/import/action\"\ + ,\"Microsoft.CognitiveServices/accounts/CustomVision/projects/export/read\"\ + ]}],\"createdOn\":\"2020-05-09T01:35:13.8147804Z\",\"updatedOn\":\"2021-11-11T20:14:29.5442713Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0a5ae4ab-0d65-4eeb-be61-29fc9b54394b\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0a5ae4ab-0d65-4eeb-be61-29fc9b54394b\"\ + },{\"properties\":{\"roleName\":\"Key Vault Administrator\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Perform all data plane operations on a key vault and all\ + \ objects in it, including certificates, keys, and secrets. Cannot manage\ + \ key vault resources or manage role assignments. Only works for key vaults\ + \ that use the 'Azure role-based access control' permission model.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ,\"Microsoft.KeyVault/checkNameAvailability/read\",\"Microsoft.KeyVault/deletedVaults/read\"\ + ,\"Microsoft.KeyVault/locations/*/read\",\"Microsoft.KeyVault/vaults/*/read\"\ + ,\"Microsoft.KeyVault/operations/read\"],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.KeyVault/vaults/*\"],\"notDataActions\":[]}],\"createdOn\":\"\ + 2020-05-19T17:52:46.2349235Z\",\"updatedOn\":\"2021-11-11T20:14:30.2542755Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"00482a5a-887f-4fb3-b363-3b7fe8e74483\"\ + },{\"properties\":{\"roleName\":\"Key Vault Crypto User\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Perform cryptographic operations using keys. Only works\ + \ for key vaults that use the 'Azure role-based access control' permission\ + \ model.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"\ + notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/keys/read\",\"\ + Microsoft.KeyVault/vaults/keys/update/action\",\"Microsoft.KeyVault/vaults/keys/backup/action\"\ + ,\"Microsoft.KeyVault/vaults/keys/encrypt/action\",\"Microsoft.KeyVault/vaults/keys/decrypt/action\"\ + ,\"Microsoft.KeyVault/vaults/keys/wrap/action\",\"Microsoft.KeyVault/vaults/keys/unwrap/action\"\ + ,\"Microsoft.KeyVault/vaults/keys/sign/action\",\"Microsoft.KeyVault/vaults/keys/verify/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-05-19T17:52:47.0699268Z\",\"\ + updatedOn\":\"2021-11-11T20:14:30.6042921Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/12338af0-0e69-4776-bea7-57ae8d297424\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"12338af0-0e69-4776-bea7-57ae8d297424\"\ + },{\"properties\":{\"roleName\":\"Key Vault Secrets Officer\",\"type\":\"\ + BuiltInRole\",\"description\":\"Perform any action on the secrets of a key\ + \ vault, except manage permissions. Only works for key vaults that use the\ + \ 'Azure role-based access control' permission model.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ,\"Microsoft.KeyVault/checkNameAvailability/read\",\"Microsoft.KeyVault/deletedVaults/read\"\ + ,\"Microsoft.KeyVault/locations/*/read\",\"Microsoft.KeyVault/vaults/*/read\"\ + ,\"Microsoft.KeyVault/operations/read\"],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.KeyVault/vaults/secrets/*\"],\"notDataActions\":[]}],\"createdOn\"\ + :\"2020-05-19T17:52:47.1449242Z\",\"updatedOn\":\"2021-11-11T20:14:30.7793470Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b86a8fe4-44ce-4948-aee5-eccb2c155cd7\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b86a8fe4-44ce-4948-aee5-eccb2c155cd7\"\ + },{\"properties\":{\"roleName\":\"Key Vault Secrets User\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Read secret contents. Only works for key vaults that use\ + \ the 'Azure role-based access control' permission model.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.KeyVault/vaults/secrets/getSecret/action\",\"Microsoft.KeyVault/vaults/secrets/readMetadata/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-05-19T17:52:47.2049241Z\",\"\ + updatedOn\":\"2021-11-11T20:14:30.9542829Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4633458b-17de-408a-b874-0445c86b69e6\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4633458b-17de-408a-b874-0445c86b69e6\"\ + },{\"properties\":{\"roleName\":\"Key Vault Certificates Officer\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Perform any action on the certificates\ + \ of a key vault, except manage permissions. Only works for key vaults that\ + \ use the 'Azure role-based access control' permission model.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ,\"Microsoft.KeyVault/checkNameAvailability/read\",\"Microsoft.KeyVault/deletedVaults/read\"\ + ,\"Microsoft.KeyVault/locations/*/read\",\"Microsoft.KeyVault/vaults/*/read\"\ + ,\"Microsoft.KeyVault/operations/read\"],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.KeyVault/vaults/certificatecas/*\",\"Microsoft.KeyVault/vaults/certificates/*\"\ + ,\"Microsoft.KeyVault/vaults/certificatecontacts/write\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2020-05-19T17:52:47.2499247Z\",\"updatedOn\":\"2023-06-09T18:51:51.8587772Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a4417e6f-fecd-4de8-b567-7b0420556985\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a4417e6f-fecd-4de8-b567-7b0420556985\"\ + },{\"properties\":{\"roleName\":\"Key Vault Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Read metadata of key vaults and its certificates, keys,\ + \ and secrets. Cannot read sensitive values such as secret contents or key\ + \ material. Only works for key vaults that use the 'Azure role-based access\ + \ control' permission model.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\",\"Microsoft.KeyVault/checkNameAvailability/read\"\ + ,\"Microsoft.KeyVault/deletedVaults/read\",\"Microsoft.KeyVault/locations/*/read\"\ + ,\"Microsoft.KeyVault/vaults/*/read\",\"Microsoft.KeyVault/operations/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/*/read\"\ + ,\"Microsoft.KeyVault/vaults/secrets/readMetadata/action\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2020-05-19T17:52:47.2949294Z\",\"updatedOn\":\"2021-11-11T20:14:31.3043292Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/21090545-7ca7-4776-b22c-e363652d74d2\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"21090545-7ca7-4776-b22c-e363652d74d2\"\ + },{\"properties\":{\"roleName\":\"Key Vault Crypto Service Encryption User\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Read metadata of keys and perform\ + \ wrap/unwrap operations. Only works for key vaults that use the 'Azure role-based\ + \ access control' permission model.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.EventGrid/eventSubscriptions/write\",\"Microsoft.EventGrid/eventSubscriptions/read\"\ + ,\"Microsoft.EventGrid/eventSubscriptions/delete\"],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.KeyVault/vaults/keys/read\",\"Microsoft.KeyVault/vaults/keys/wrap/action\"\ + ,\"Microsoft.KeyVault/vaults/keys/unwrap/action\"],\"notDataActions\":[]}],\"\ + createdOn\":\"2020-05-20T20:55:19.2398470Z\",\"updatedOn\":\"2021-11-11T20:14:31.8443056Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e147488a-f6f5-4113-8e2d-b22465e65bf6\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e147488a-f6f5-4113-8e2d-b22465e65bf6\"\ + },{\"properties\":{\"roleName\":\"Azure Arc Kubernetes Viewer\",\"type\":\"\ + BuiltInRole\",\"description\":\"Lets you view all resources in cluster/namespace,\ + \ except secrets.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"\ + Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\"\ + ,\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Kubernetes/connectedClusters/apps/controllerrevisions/read\"\ + ,\"Microsoft.Kubernetes/connectedClusters/apps/daemonsets/read\",\"Microsoft.Kubernetes/connectedClusters/apps/deployments/read\"\ + ,\"Microsoft.Kubernetes/connectedClusters/apps/replicasets/read\",\"Microsoft.Kubernetes/connectedClusters/apps/statefulsets/read\"\ + ,\"Microsoft.Kubernetes/connectedClusters/autoscaling/horizontalpodautoscalers/read\"\ + ,\"Microsoft.Kubernetes/connectedClusters/batch/cronjobs/read\",\"Microsoft.Kubernetes/connectedClusters/batch/jobs/read\"\ + ,\"Microsoft.Kubernetes/connectedClusters/configmaps/read\",\"Microsoft.Kubernetes/connectedClusters/endpoints/read\"\ + ,\"Microsoft.Kubernetes/connectedClusters/events.k8s.io/events/read\",\"Microsoft.Kubernetes/connectedClusters/events/read\"\ + ,\"Microsoft.Kubernetes/connectedClusters/extensions/daemonsets/read\",\"\ + Microsoft.Kubernetes/connectedClusters/extensions/deployments/read\",\"Microsoft.Kubernetes/connectedClusters/extensions/ingresses/read\"\ + ,\"Microsoft.Kubernetes/connectedClusters/extensions/networkpolicies/read\"\ + ,\"Microsoft.Kubernetes/connectedClusters/extensions/replicasets/read\",\"\ + Microsoft.Kubernetes/connectedClusters/limitranges/read\",\"Microsoft.Kubernetes/connectedClusters/namespaces/read\"\ + ,\"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/ingresses/read\"\ + ,\"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/networkpolicies/read\"\ + ,\"Microsoft.Kubernetes/connectedClusters/persistentvolumeclaims/read\",\"\ + Microsoft.Kubernetes/connectedClusters/pods/read\",\"Microsoft.Kubernetes/connectedClusters/policy/poddisruptionbudgets/read\"\ + ,\"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/read\",\"\ + Microsoft.Kubernetes/connectedClusters/replicationcontrollers/read\",\"Microsoft.Kubernetes/connectedClusters/resourcequotas/read\"\ + ,\"Microsoft.Kubernetes/connectedClusters/serviceaccounts/read\",\"Microsoft.Kubernetes/connectedClusters/services/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-06-12T20:51:12.8801199Z\",\"\ + updatedOn\":\"2021-11-11T20:14:33.8193353Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/63f0a09d-1495-4db4-a681-037d84835eb4\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"63f0a09d-1495-4db4-a681-037d84835eb4\"\ + },{\"properties\":{\"roleName\":\"Azure Arc Kubernetes Writer\",\"type\":\"\ + BuiltInRole\",\"description\":\"Lets you update everything in cluster/namespace,\ + \ except (cluster)roles and (cluster)role bindings.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\"\ + ,\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.Kubernetes/connectedClusters/apps/controllerrevisions/read\"\ + ,\"Microsoft.Kubernetes/connectedClusters/apps/daemonsets/*\",\"Microsoft.Kubernetes/connectedClusters/apps/deployments/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/apps/replicasets/*\",\"Microsoft.Kubernetes/connectedClusters/apps/statefulsets/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/autoscaling/horizontalpodautoscalers/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/batch/cronjobs/*\",\"Microsoft.Kubernetes/connectedClusters/batch/jobs/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/configmaps/*\",\"Microsoft.Kubernetes/connectedClusters/endpoints/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/events.k8s.io/events/read\",\"Microsoft.Kubernetes/connectedClusters/events/read\"\ + ,\"Microsoft.Kubernetes/connectedClusters/extensions/daemonsets/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/deployments/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/extensions/ingresses/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/networkpolicies/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/extensions/replicasets/*\",\"Microsoft.Kubernetes/connectedClusters/limitranges/read\"\ + ,\"Microsoft.Kubernetes/connectedClusters/namespaces/read\",\"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/ingresses/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/networkpolicies/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/persistentvolumeclaims/*\",\"Microsoft.Kubernetes/connectedClusters/pods/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/policy/poddisruptionbudgets/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/*\",\"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/resourcequotas/read\",\"Microsoft.Kubernetes/connectedClusters/secrets/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/serviceaccounts/*\",\"Microsoft.Kubernetes/connectedClusters/services/*\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-06-12T20:53:50.6749823Z\",\"\ + updatedOn\":\"2021-11-11T20:14:34.0043462Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5b999177-9696-4545-85c7-50de3797e5a1\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5b999177-9696-4545-85c7-50de3797e5a1\"\ + },{\"properties\":{\"roleName\":\"Azure Arc Kubernetes Cluster Admin\",\"\ + type\":\"BuiltInRole\",\"description\":\"Lets you manage all resources in\ + \ the cluster.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"\ + Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\"\ + ,\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[\"Microsoft.Kubernetes/connectedClusters/*\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-06-12T20:55:30.9910462Z\",\"\ + updatedOn\":\"2021-11-11T20:14:34.1743694Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8393591c-06b9-48a2-a542-1bd6b377f6a2\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8393591c-06b9-48a2-a542-1bd6b377f6a2\"\ + },{\"properties\":{\"roleName\":\"Azure Arc Kubernetes Admin\",\"type\":\"\ + BuiltInRole\",\"description\":\"Lets you manage all resources under cluster/namespace,\ + \ except update or delete resource quotas and namespaces.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/write\"\ + ,\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.Kubernetes/connectedClusters/apps/controllerrevisions/read\"\ + ,\"Microsoft.Kubernetes/connectedClusters/apps/daemonsets/*\",\"Microsoft.Kubernetes/connectedClusters/apps/deployments/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/apps/replicasets/*\",\"Microsoft.Kubernetes/connectedClusters/apps/statefulsets/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/authorization.k8s.io/localsubjectaccessreviews/write\"\ + ,\"Microsoft.Kubernetes/connectedClusters/autoscaling/horizontalpodautoscalers/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/batch/cronjobs/*\",\"Microsoft.Kubernetes/connectedClusters/batch/jobs/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/configmaps/*\",\"Microsoft.Kubernetes/connectedClusters/endpoints/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/events.k8s.io/events/read\",\"Microsoft.Kubernetes/connectedClusters/events/read\"\ + ,\"Microsoft.Kubernetes/connectedClusters/extensions/daemonsets/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/deployments/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/extensions/ingresses/*\",\"Microsoft.Kubernetes/connectedClusters/extensions/networkpolicies/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/extensions/replicasets/*\",\"Microsoft.Kubernetes/connectedClusters/limitranges/read\"\ + ,\"Microsoft.Kubernetes/connectedClusters/namespaces/read\",\"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/ingresses/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/networking.k8s.io/networkpolicies/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/persistentvolumeclaims/*\",\"Microsoft.Kubernetes/connectedClusters/pods/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/policy/poddisruptionbudgets/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/rbac.authorization.k8s.io/rolebindings/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/rbac.authorization.k8s.io/roles/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/*\",\"Microsoft.Kubernetes/connectedClusters/replicationcontrollers/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/resourcequotas/read\",\"Microsoft.Kubernetes/connectedClusters/secrets/*\"\ + ,\"Microsoft.Kubernetes/connectedClusters/serviceaccounts/*\",\"Microsoft.Kubernetes/connectedClusters/services/*\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-06-12T20:57:06.0391177Z\",\"\ + updatedOn\":\"2021-11-11T20:14:34.3593384Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/dffb1e0c-446f-4dde-a09f-99eb5cc68b96\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"dffb1e0c-446f-4dde-a09f-99eb5cc68b96\"\ + },{\"properties\":{\"roleName\":\"Azure Kubernetes Service RBAC Cluster Admin\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Lets you manage all resources\ + \ in the cluster.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/operationresults/read\"\ + ,\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/managedClusters/*\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-07-02T17:47:24.4071415Z\",\"\ + updatedOn\":\"2022-10-13T01:31:35.5535817Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b\"\ + },{\"properties\":{\"roleName\":\"Azure Kubernetes Service RBAC Admin\",\"\ + type\":\"BuiltInRole\",\"description\":\"Lets you manage all resources under\ + \ cluster/namespace, except update or delete resource quotas and namespaces.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ContainerService/managedClusters/listClusterUserCredential/action\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/managedClusters/*\"\ + ],\"notDataActions\":[\"Microsoft.ContainerService/managedClusters/resourcequotas/write\"\ + ,\"Microsoft.ContainerService/managedClusters/resourcequotas/delete\",\"Microsoft.ContainerService/managedClusters/namespaces/write\"\ + ,\"Microsoft.ContainerService/managedClusters/namespaces/delete\"]}],\"createdOn\"\ + :\"2020-07-02T17:50:30.4020311Z\",\"updatedOn\":\"2023-05-09T19:55:25.9025082Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3498e952-d568-435e-9b2c-8d77e338d7f7\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3498e952-d568-435e-9b2c-8d77e338d7f7\"\ + },{\"properties\":{\"roleName\":\"Azure Kubernetes Service RBAC Reader\",\"\ + type\":\"BuiltInRole\",\"description\":\"Allows read-only access to see most\ + \ objects in a namespace. It does not allow viewing roles or role bindings.\ + \ This role does not allow viewing Secrets, since reading the contents of\ + \ Secrets enables access to ServiceAccount credentials in the namespace, which\ + \ would allow API access as any ServiceAccount in the namespace (a form of\ + \ privilege escalation). Applying this role at cluster scope will give access\ + \ across all namespaces.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/operationresults/read\"\ + ,\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/managedClusters/apps/controllerrevisions/read\"\ + ,\"Microsoft.ContainerService/managedClusters/apps/daemonsets/read\",\"Microsoft.ContainerService/managedClusters/apps/deployments/read\"\ + ,\"Microsoft.ContainerService/managedClusters/apps/replicasets/read\",\"Microsoft.ContainerService/managedClusters/apps/statefulsets/read\"\ + ,\"Microsoft.ContainerService/managedClusters/autoscaling/horizontalpodautoscalers/read\"\ + ,\"Microsoft.ContainerService/managedClusters/batch/cronjobs/read\",\"Microsoft.ContainerService/managedClusters/batch/jobs/read\"\ + ,\"Microsoft.ContainerService/managedClusters/configmaps/read\",\"Microsoft.ContainerService/managedClusters/discovery.k8s.io/endpointslices/read\"\ + ,\"Microsoft.ContainerService/managedClusters/endpoints/read\",\"Microsoft.ContainerService/managedClusters/events.k8s.io/events/read\"\ + ,\"Microsoft.ContainerService/managedClusters/events/read\",\"Microsoft.ContainerService/managedClusters/extensions/daemonsets/read\"\ + ,\"Microsoft.ContainerService/managedClusters/extensions/deployments/read\"\ + ,\"Microsoft.ContainerService/managedClusters/extensions/ingresses/read\"\ + ,\"Microsoft.ContainerService/managedClusters/extensions/networkpolicies/read\"\ + ,\"Microsoft.ContainerService/managedClusters/extensions/replicasets/read\"\ + ,\"Microsoft.ContainerService/managedClusters/limitranges/read\",\"Microsoft.ContainerService/managedClusters/metrics.k8s.io/pods/read\"\ + ,\"Microsoft.ContainerService/managedClusters/metrics.k8s.io/nodes/read\"\ + ,\"Microsoft.ContainerService/managedClusters/namespaces/read\",\"Microsoft.ContainerService/managedClusters/networking.k8s.io/ingresses/read\"\ + ,\"Microsoft.ContainerService/managedClusters/networking.k8s.io/networkpolicies/read\"\ + ,\"Microsoft.ContainerService/managedClusters/persistentvolumeclaims/read\"\ + ,\"Microsoft.ContainerService/managedClusters/pods/read\",\"Microsoft.ContainerService/managedClusters/policy/poddisruptionbudgets/read\"\ + ,\"Microsoft.ContainerService/managedClusters/replicationcontrollers/read\"\ + ,\"Microsoft.ContainerService/managedClusters/resourcequotas/read\",\"Microsoft.ContainerService/managedClusters/serviceaccounts/read\"\ + ,\"Microsoft.ContainerService/managedClusters/services/read\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2020-07-02T17:53:05.5728294Z\",\"updatedOn\":\"2023-04-24T15:06:51.2864560Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7f6c6a51-bcf8-42ba-9220-52d62157d7db\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7f6c6a51-bcf8-42ba-9220-52d62157d7db\"\ + },{\"properties\":{\"roleName\":\"Azure Kubernetes Service RBAC Writer\",\"\ + type\":\"BuiltInRole\",\"description\":\"Allows read/write access to most\ + \ objects in a namespace.This role does not allow viewing or modifying roles\ + \ or role bindings. However, this role allows accessing Secrets and running\ + \ Pods as any ServiceAccount in the namespace, so it can be used to gain the\ + \ API access levels of any ServiceAccount in the namespace. Applying this\ + \ role at cluster scope will give access across all namespaces.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.ContainerService/managedClusters/apps/controllerrevisions/read\"\ + ,\"Microsoft.ContainerService/managedClusters/apps/daemonsets/*\",\"Microsoft.ContainerService/managedClusters/apps/deployments/*\"\ + ,\"Microsoft.ContainerService/managedClusters/apps/replicasets/*\",\"Microsoft.ContainerService/managedClusters/apps/statefulsets/*\"\ + ,\"Microsoft.ContainerService/managedClusters/autoscaling/horizontalpodautoscalers/*\"\ + ,\"Microsoft.ContainerService/managedClusters/batch/cronjobs/*\",\"Microsoft.ContainerService/managedClusters/coordination.k8s.io/leases/read\"\ + ,\"Microsoft.ContainerService/managedClusters/coordination.k8s.io/leases/write\"\ + ,\"Microsoft.ContainerService/managedClusters/coordination.k8s.io/leases/delete\"\ + ,\"Microsoft.ContainerService/managedClusters/discovery.k8s.io/endpointslices/read\"\ + ,\"Microsoft.ContainerService/managedClusters/batch/jobs/*\",\"Microsoft.ContainerService/managedClusters/configmaps/*\"\ + ,\"Microsoft.ContainerService/managedClusters/endpoints/*\",\"Microsoft.ContainerService/managedClusters/events.k8s.io/events/read\"\ + ,\"Microsoft.ContainerService/managedClusters/events/*\",\"Microsoft.ContainerService/managedClusters/extensions/daemonsets/*\"\ + ,\"Microsoft.ContainerService/managedClusters/extensions/deployments/*\",\"\ + Microsoft.ContainerService/managedClusters/extensions/ingresses/*\",\"Microsoft.ContainerService/managedClusters/extensions/networkpolicies/*\"\ + ,\"Microsoft.ContainerService/managedClusters/extensions/replicasets/*\",\"\ + Microsoft.ContainerService/managedClusters/limitranges/read\",\"Microsoft.ContainerService/managedClusters/metrics.k8s.io/pods/read\"\ + ,\"Microsoft.ContainerService/managedClusters/metrics.k8s.io/nodes/read\"\ + ,\"Microsoft.ContainerService/managedClusters/namespaces/read\",\"Microsoft.ContainerService/managedClusters/networking.k8s.io/ingresses/*\"\ + ,\"Microsoft.ContainerService/managedClusters/networking.k8s.io/networkpolicies/*\"\ + ,\"Microsoft.ContainerService/managedClusters/persistentvolumeclaims/*\",\"\ + Microsoft.ContainerService/managedClusters/pods/*\",\"Microsoft.ContainerService/managedClusters/policy/poddisruptionbudgets/*\"\ + ,\"Microsoft.ContainerService/managedClusters/replicationcontrollers/*\",\"\ + Microsoft.ContainerService/managedClusters/resourcequotas/read\",\"Microsoft.ContainerService/managedClusters/secrets/*\"\ + ,\"Microsoft.ContainerService/managedClusters/serviceaccounts/*\",\"Microsoft.ContainerService/managedClusters/services/*\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-07-02T17:54:51.9644983Z\",\"\ + updatedOn\":\"2023-04-24T15:06:51.2854555Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a7ffa36f-339b-4b5c-8bdf-e2c188b2c0eb\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a7ffa36f-339b-4b5c-8bdf-e2c188b2c0eb\"\ + },{\"properties\":{\"roleName\":\"Services Hub Operator\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Services Hub Operator allows you to perform all read, write,\ + \ and deletion operations related to Services Hub Connectors.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.ServicesHub/connectors/write\",\"Microsoft.ServicesHub/connectors/read\"\ + ,\"Microsoft.ServicesHub/connectors/delete\",\"Microsoft.ServicesHub/connectors/checkAssessmentEntitlement/action\"\ + ,\"Microsoft.ServicesHub/supportOfferingEntitlement/read\",\"Microsoft.ServicesHub/workspaces/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2020-07-20T17:57:22.0644902Z\",\"updatedOn\":\"2021-11-11T20:14:37.5544021Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/82200a5b-e217-47a5-b665-6d8765ee745b\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"82200a5b-e217-47a5-b665-6d8765ee745b\"\ + },{\"properties\":{\"roleName\":\"Object Understanding Account Reader\",\"\ + type\":\"BuiltInRole\",\"description\":\"Lets you read ingestion jobs for\ + \ an object understanding account.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/ObjectUnderstandingAccounts/ingest/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-07-23T19:16:31.9929119Z\",\"\ + updatedOn\":\"2021-11-11T20:14:37.9070085Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d18777c0-1514-4662-8490-608db7d334b6\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d18777c0-1514-4662-8490-608db7d334b6\"\ + },{\"properties\":{\"roleName\":\"SignalR REST API Owner\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Full access to Azure SignalR Service REST APIs\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.SignalRService/SignalR/auth/clientToken/action\",\"Microsoft.SignalRService/SignalR/hub/send/action\"\ + ,\"Microsoft.SignalRService/SignalR/group/send/action\",\"Microsoft.SignalRService/SignalR/group/read\"\ + ,\"Microsoft.SignalRService/SignalR/group/write\",\"Microsoft.SignalRService/SignalR/clientConnection/send/action\"\ + ,\"Microsoft.SignalRService/SignalR/clientConnection/read\",\"Microsoft.SignalRService/SignalR/clientConnection/write\"\ + ,\"Microsoft.SignalRService/SignalR/user/send/action\",\"Microsoft.SignalRService/SignalR/user/read\"\ + ,\"Microsoft.SignalRService/SignalR/user/write\"],\"notDataActions\":[]}],\"\ + createdOn\":\"2020-07-29T09:35:32.2764751Z\",\"updatedOn\":\"2021-11-11T20:14:38.8028020Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd53cd77-2268-407a-8f46-7e7863d0f521\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fd53cd77-2268-407a-8f46-7e7863d0f521\"\ + },{\"properties\":{\"roleName\":\"Collaborative Data Contributor\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Can manage data packages of a collaborative.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.IndustryDataLifecycle/custodianCollaboratives/*/read\"\ + ,\"Microsoft.IndustryDataLifecycle/memberCollaboratives/*/read\",\"Microsoft.IndustryDataLifecycle/locations/dataPackages/*\"\ + ,\"Microsoft.IndustryDataLifecycle/custodianCollaboratives/receivedDataPackages/*\"\ + ,\"Microsoft.IndustryDataLifecycle/custodianCollaboratives/rejectDataPackage/action\"\ + ,\"Microsoft.IndustryDataLifecycle/memberCollaboratives/sharedDataPackages/*\"\ + ,\"Microsoft.IndustryDataLifecycle/custodianCollaboratives/dataModels/*\"\ + ,\"Microsoft.IndustryDataLifecycle/custodianCollaboratives/auditLogs/action\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"\ + Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2020-08-14T11:58:31.8973556Z\",\"updatedOn\":\"2021-11-11T20:14:40.2428145Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/daa9e50b-21df-454c-94a6-a8050adab352\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"daa9e50b-21df-454c-94a6-a8050adab352\"\ + },{\"properties\":{\"roleName\":\"Device Update Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Gives you read access to management and content operations,\ + \ but does not allow making changes\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ,\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"\ + Microsoft.DeviceUpdate/accounts/instances/updates/read\",\"Microsoft.DeviceUpdate/accounts/instances/management/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-08-21T23:40:19.2373610Z\",\"\ + updatedOn\":\"2021-11-11T20:14:40.7922672Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e9dba6fb-3d52-4cf0-bce3-f06ce71b9e0f\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e9dba6fb-3d52-4cf0-bce3-f06ce71b9e0f\"\ + },{\"properties\":{\"roleName\":\"Device Update Administrator\",\"type\":\"\ + BuiltInRole\",\"description\":\"Gives you full access to management and content\ + \ operations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ,\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"\ + Microsoft.DeviceUpdate/accounts/instances/updates/read\",\"Microsoft.DeviceUpdate/accounts/instances/updates/write\"\ + ,\"Microsoft.DeviceUpdate/accounts/instances/updates/delete\",\"Microsoft.DeviceUpdate/accounts/instances/management/read\"\ + ,\"Microsoft.DeviceUpdate/accounts/instances/management/write\",\"Microsoft.DeviceUpdate/accounts/instances/management/delete\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-08-21T23:56:22.3520510Z\",\"\ + updatedOn\":\"2021-11-11T20:14:40.9672678Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/02ca0879-e8e4-47a5-a61e-5c618b76e64a\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"02ca0879-e8e4-47a5-a61e-5c618b76e64a\"\ + },{\"properties\":{\"roleName\":\"Device Update Content Administrator\",\"\ + type\":\"BuiltInRole\",\"description\":\"Gives you full access to content\ + \ operations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ,\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"\ + Microsoft.DeviceUpdate/accounts/instances/updates/read\",\"Microsoft.DeviceUpdate/accounts/instances/updates/write\"\ + ,\"Microsoft.DeviceUpdate/accounts/instances/updates/delete\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2020-08-21T23:58:18.4255500Z\",\"updatedOn\":\"2021-11-11T20:14:41.1433368Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0378884a-3af5-44ab-8323-f5b22f9f3c98\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0378884a-3af5-44ab-8323-f5b22f9f3c98\"\ + },{\"properties\":{\"roleName\":\"Device Update Content Reader\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Gives you read access to content operations,\ + \ but does not allow making changes\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ,\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"\ + Microsoft.DeviceUpdate/accounts/instances/updates/read\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2020-08-22T00:02:43.3299181Z\",\"updatedOn\":\"2021-11-11T20:14:41.6754856Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d1ee9a80-8b14-47f0-bdc2-f4a351625a7b\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d1ee9a80-8b14-47f0-bdc2-f4a351625a7b\"\ + },{\"properties\":{\"roleName\":\"Cognitive Services Metrics Advisor Administrator\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Full access to the project, including\ + \ the system level configuration.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"],\"notActions\":[],\"\ + dataActions\":[\"Microsoft.CognitiveServices/accounts/MetricsAdvisor/*\"],\"\ + notDataActions\":[]}],\"createdOn\":\"2020-09-10T07:46:47.5804491Z\",\"updatedOn\"\ + :\"2021-11-11T20:14:43.6930781Z\",\"createdBy\":null,\"updatedBy\":null},\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cb43c632-a144-4ec5-977c-e80c4affc34a\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"cb43c632-a144-4ec5-977c-e80c4affc34a\"\ + },{\"properties\":{\"roleName\":\"Cognitive Services Metrics Advisor User\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Access to the project.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/MetricsAdvisor/*\"\ + ],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/MetricsAdvisor/stats/*\"\ + ]}],\"createdOn\":\"2020-09-10T07:47:59.6195639Z\",\"updatedOn\":\"2021-11-11T20:14:43.8780761Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3b20f47b-3825-43cb-8114-4bd2201156a8\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3b20f47b-3825-43cb-8114-4bd2201156a8\"\ + },{\"properties\":{\"roleName\":\"Schema Registry Reader (Preview)\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Read and list Schema Registry groups and\ + \ schemas.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"\ + Microsoft.EventHub/namespaces/schemagroups/read\"],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.EventHub/namespaces/schemas/read\"],\"notDataActions\":[]}],\"\ + createdOn\":\"2020-09-13T06:31:38.0272740Z\",\"updatedOn\":\"2021-11-11T20:14:44.6350450Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2c56ea50-c6b3-40a6-83c0-9d98858bc7d2\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2c56ea50-c6b3-40a6-83c0-9d98858bc7d2\"\ + },{\"properties\":{\"roleName\":\"Schema Registry Contributor (Preview)\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Read, write, and delete Schema\ + \ Registry groups and schemas.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.EventHub/namespaces/schemagroups/*\"],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.EventHub/namespaces/schemas/*\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2020-09-13T06:48:26.6032931Z\",\"updatedOn\":\"2021-11-11T20:14:44.8200370Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5dffeca3-4936-4216-b2bc-10343a5abb25\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5dffeca3-4936-4216-b2bc-10343a5abb25\"\ + },{\"properties\":{\"roleName\":\"AgFood Platform Service Reader\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Provides read access to AgFood Platform\ + \ Service\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"\ + notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/*/list/action\"\ + ,\"Microsoft.AgFoodPlatform/*/read\",\"Microsoft.AgFoodPlatform/*/search/action\"\ + ,\"Microsoft.AgFoodPlatform/*/download/action\",\"Microsoft.AgFoodPlatform/*/overlap/action\"\ + ,\"Microsoft.AgFoodPlatform/*/checkConsent/action\"],\"notDataActions\":[]}],\"\ + createdOn\":\"2020-09-14T10:21:08.9138820Z\",\"updatedOn\":\"2022-12-13T16:08:52.9655626Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7ec7ccdc-f61e-41fe-9aaf-980df0a44eba\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7ec7ccdc-f61e-41fe-9aaf-980df0a44eba\"\ + },{\"properties\":{\"roleName\":\"AgFood Platform Service Contributor\",\"\ + type\":\"BuiltInRole\",\"description\":\"Provides contribute access to AgFood\ + \ Platform Service\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/*/action\"\ + ,\"Microsoft.AgFoodPlatform/*/read\",\"Microsoft.AgFoodPlatform/*/write\"\ + ],\"notDataActions\":[\"Microsoft.AgFoodPlatform/farmBeats/farmers/write\"\ + ,\"Microsoft.AgFoodPlatform/farmBeats/deletionJobs/*/write\",\"Microsoft.AgFoodPlatform/farmBeats/parties/write\"\ + ]}],\"createdOn\":\"2020-09-14T10:21:09.7239169Z\",\"updatedOn\":\"2023-01-23T16:15:02.3939333Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8508508a-4469-4e45-963b-2518ee0bb728\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8508508a-4469-4e45-963b-2518ee0bb728\"\ + },{\"properties\":{\"roleName\":\"AgFood Platform Service Admin\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Provides admin access to AgFood Platform\ + \ Service\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"\ + notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/*\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2020-09-14T10:21:09.8039209Z\",\"updatedOn\":\"2021-11-11T20:14:45.3613128Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f8da80de-1ff9-4747-ad80-a19b7f6079e3\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f8da80de-1ff9-4747-ad80-a19b7f6079e3\"\ + },{\"properties\":{\"roleName\":\"Managed HSM contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you manage managed HSM pools, but not access to them.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.KeyVault/managedHSMs/*\"\ + ,\"Microsoft.KeyVault/deletedManagedHsms/read\",\"Microsoft.KeyVault/locations/deletedManagedHsms/read\"\ + ,\"Microsoft.KeyVault/locations/deletedManagedHsms/purge/action\",\"Microsoft.KeyVault/locations/managedHsmOperationResults/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2020-09-16T21:47:01.1291104Z\",\"updatedOn\":\"2022-03-08T00:35:44.4196909Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18500a29-7fe2-46b2-a342-b16a415e101d\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"18500a29-7fe2-46b2-a342-b16a415e101d\"\ + },{\"properties\":{\"roleName\":\"Security Detonation Chamber Submitter\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Allowed to create submissions\ + \ to Security Detonation Chamber\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SecurityDetonation/chambers/submissions/delete\"\ + ,\"Microsoft.SecurityDetonation/chambers/submissions/write\",\"Microsoft.SecurityDetonation/chambers/submissions/read\"\ + ,\"Microsoft.SecurityDetonation/chambers/submissions/files/read\",\"Microsoft.SecurityDetonation/chambers/submissions/accesskeyview/read\"\ + ,\"Microsoft.SecurityDetonation/chambers/platforms/metadata/read\",\"Microsoft.SecurityDetonation/chambers/workflows/metadata/read\"\ + ,\"Microsoft.SecurityDetonation/chambers/toolsets/metadata/read\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2020-10-01T08:55:21.3980274Z\",\"updatedOn\":\"2021-11-11T20:14:47.5471350Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0b555d9b-b4a7-4f43-b330-627f0e5be8f0\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0b555d9b-b4a7-4f43-b330-627f0e5be8f0\"\ + },{\"properties\":{\"roleName\":\"SignalR REST API Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Read-only access to Azure SignalR Service REST APIs\",\"\ + assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.SignalRService/SignalR/group/read\",\"Microsoft.SignalRService/SignalR/clientConnection/read\"\ + ,\"Microsoft.SignalRService/SignalR/user/read\"],\"notDataActions\":[]}],\"\ + createdOn\":\"2020-10-13T09:19:05.6463616Z\",\"updatedOn\":\"2021-11-11T20:14:48.7902970Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ddde6b66-c0df-4114-a159-3618637b3035\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ddde6b66-c0df-4114-a159-3618637b3035\"\ + },{\"properties\":{\"roleName\":\"SignalR Service Owner\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Full access to Azure SignalR Service REST APIs\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.SignalRService/SignalR/auth/accessKey/action\",\"Microsoft.SignalRService/SignalR/auth/clientToken/action\"\ + ,\"Microsoft.SignalRService/SignalR/hub/send/action\",\"Microsoft.SignalRService/SignalR/group/send/action\"\ + ,\"Microsoft.SignalRService/SignalR/group/read\",\"Microsoft.SignalRService/SignalR/group/write\"\ + ,\"Microsoft.SignalRService/SignalR/clientConnection/send/action\",\"Microsoft.SignalRService/SignalR/clientConnection/read\"\ + ,\"Microsoft.SignalRService/SignalR/clientConnection/write\",\"Microsoft.SignalRService/SignalR/serverConnection/write\"\ + ,\"Microsoft.SignalRService/SignalR/user/send/action\",\"Microsoft.SignalRService/SignalR/user/read\"\ + ,\"Microsoft.SignalRService/SignalR/user/write\",\"Microsoft.SignalRService/SignalR/livetrace/*\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-10-13T09:20:32.1501410Z\",\"\ + updatedOn\":\"2022-09-15T06:33:12.0310035Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7e4f1700-ea5a-4f59-8f37-079cfe29dce3\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7e4f1700-ea5a-4f59-8f37-079cfe29dce3\"\ + },{\"properties\":{\"roleName\":\"Reservation Purchaser\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you purchase reservations\",\"assignableScopes\":[\"\ + /\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/roleAssignments/read\"\ + ,\"Microsoft.Capacity/catalogs/read\",\"Microsoft.Capacity/register/action\"\ + ,\"Microsoft.Compute/register/action\",\"Microsoft.Consumption/register/action\"\ + ,\"Microsoft.Consumption/reservationRecommendationDetails/read\",\"Microsoft.Consumption/reservationRecommendations/read\"\ + ,\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.SQL/register/action\",\"Microsoft.Support/supporttickets/write\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2020-10-23T20:22:48.9217751Z\",\"updatedOn\":\"2022-04-14T02:20:54.5414624Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f7b75c60-3036-4b75-91c3-6b41c27c1689\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f7b75c60-3036-4b75-91c3-6b41c27c1689\"\ + },{\"properties\":{\"roleName\":\"AzureML Metrics Writer (preview)\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Lets you write metrics to AzureML workspace\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.MachineLearningServices/workspaces/metrics/*/write\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2020-10-27T16:55:19.5664950Z\",\"updatedOn\":\"2021-11-11T20:14:49.8655015Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/635dd51f-9968-44d3-b7fb-6d9a6bd613ae\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"635dd51f-9968-44d3-b7fb-6d9a6bd613ae\"\ + },{\"properties\":{\"roleName\":\"Storage Account Backup Contributor\",\"\ + type\":\"BuiltInRole\",\"description\":\"Lets you perform backup and restore\ + \ operations using Azure Backup on the storage account.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Authorization/locks/read\",\"Microsoft.Authorization/locks/write\"\ + ,\"Microsoft.Authorization/locks/delete\",\"Microsoft.Features/features/read\"\ + ,\"Microsoft.Features/providers/features/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Storage/operations/read\",\"Microsoft.Storage/storageAccounts/objectReplicationPolicies/delete\"\ + ,\"Microsoft.Storage/storageAccounts/objectReplicationPolicies/read\",\"Microsoft.Storage/storageAccounts/objectReplicationPolicies/write\"\ + ,\"Microsoft.Storage/storageAccounts/objectReplicationPolicies/restorePointMarkers/write\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/write\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/read\",\"Microsoft.Storage/storageAccounts/blobServices/write\"\ + ,\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/restoreBlobRanges/action\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2020-11-02T23:32:50.4203469Z\",\"updatedOn\":\"2022-04-20T05:50:13.0184092Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e5e2a7ff-d759-4cd2-bb51-3152d37e2eb1\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e5e2a7ff-d759-4cd2-bb51-3152d37e2eb1\"\ + },{\"properties\":{\"roleName\":\"Experimentation Metric Contributor\",\"\ + type\":\"BuiltInRole\",\"description\":\"Allows for creation, writes and reads\ + \ to the metric set via the metrics service APIs.\",\"assignableScopes\":[\"\ + /\"],\"permissions\":[{\"actions\":[\"Microsoft.Experimentation/experimentWorkspaces/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/read\"\ + ,\"Microsoft.Experimentation/experimentWorkspaces/experimentationGroups/metricwrite/action\"\ + ,\"Microsoft.Experimentation/experimentWorkspaces/metricwrite/action\",\"\ + Microsoft.Experimentation/experimentWorkspaces/read\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2020-11-10T20:07:53.7535885Z\",\"updatedOn\":\"2021-11-11T20:14:50.9524177Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6188b7c9-7d01-4f99-a59f-c88b630326c0\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6188b7c9-7d01-4f99-a59f-c88b630326c0\"\ + },{\"properties\":{\"roleName\":\"Project Babylon Data Curator\",\"type\"\ + :\"BuiltInRole\",\"description\":\"The Microsoft.ProjectBabylon data curator\ + \ can create, read, modify and delete catalog data objects and establish relationships\ + \ between objects. This role is in preview and subject to change.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ProjectBabylon/accounts/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.ProjectBabylon/accounts/data/read\"\ + ,\"Microsoft.ProjectBabylon/accounts/data/write\"],\"notDataActions\":[]}],\"\ + createdOn\":\"2020-11-14T02:31:33.7988825Z\",\"updatedOn\":\"2021-11-11T20:14:51.4929515Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9ef4ef9c-a049-46b0-82ab-dd8ac094c889\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9ef4ef9c-a049-46b0-82ab-dd8ac094c889\"\ + },{\"properties\":{\"roleName\":\"Project Babylon Data Reader\",\"type\":\"\ + BuiltInRole\",\"description\":\"The Microsoft.ProjectBabylon data reader can\ + \ read catalog data objects. This role is in preview and subject to change.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ProjectBabylon/accounts/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.ProjectBabylon/accounts/data/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-11-14T02:33:13.5342351Z\",\"\ + updatedOn\":\"2021-11-11T20:14:51.6729667Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c8d896ba-346d-4f50-bc1d-7d1c84130446\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c8d896ba-346d-4f50-bc1d-7d1c84130446\"\ + },{\"properties\":{\"roleName\":\"Project Babylon Data Source Administrator\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"The Microsoft.ProjectBabylon data\ + \ source administrator can manage data sources and data scans. This role is\ + \ in preview and subject to change.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.ProjectBabylon/accounts/read\"],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.ProjectBabylon/accounts/scan/read\",\"Microsoft.ProjectBabylon/accounts/scan/write\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-11-14T02:34:01.8401954Z\",\"\ + updatedOn\":\"2021-11-11T20:14:51.8529643Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/05b7651b-dc44-475e-b74d-df3db49fae0f\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"05b7651b-dc44-475e-b74d-df3db49fae0f\"\ + },{\"properties\":{\"roleName\":\"Application Group Contributor\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Contributor of the Application Group.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/applicationgroups/*\"\ + ,\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\"\ + ,\"Microsoft.DesktopVirtualization/workspaces/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-03T23:26:00.2784962Z\"\ + ,\"updatedOn\":\"2021-11-11T20:14:52.9432015Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ca6382a4-1721-4bcf-a114-ff0c70227b6b\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ca6382a4-1721-4bcf-a114-ff0c70227b6b\"\ + },{\"properties\":{\"roleName\":\"Desktop Virtualization Reader\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Reader of Desktop Virtualization.\",\"\ + assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/*/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/read\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2020-12-11T21:36:19.0140629Z\",\"updatedOn\":\"2021-11-11T20:14:54.0407838Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/49a72310-ab8d-41df-bbb0-79b649203868\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"49a72310-ab8d-41df-bbb0-79b649203868\"\ + },{\"properties\":{\"roleName\":\"Desktop Virtualization Contributor\",\"\ + type\":\"BuiltInRole\",\"description\":\"Contributor of Desktop Virtualization.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"\ + Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2020-12-11T21:37:16.2910337Z\",\"updatedOn\":\"2021-11-11T20:14:54.2107872Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/082f0a83-3be5-4ba1-904c-961cca79b387\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"082f0a83-3be5-4ba1-904c-961cca79b387\"\ + },{\"properties\":{\"roleName\":\"Desktop Virtualization Workspace Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Contributor of the Desktop Virtualization\ + \ Workspace.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.DesktopVirtualization/workspaces/*\",\"Microsoft.DesktopVirtualization/applicationgroups/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"\ + Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2020-12-11T21:38:29.6089216Z\",\"updatedOn\":\"2021-11-11T20:14:54.3907854Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/21efdde3-836f-432b-bf3d-3e8e734d4b2b\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"21efdde3-836f-432b-bf3d-3e8e734d4b2b\"\ + },{\"properties\":{\"roleName\":\"Desktop Virtualization User Session Operator\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Operator of the Desktop Virtualization\ + \ Uesr Session.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\"\ + ,\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"\ + Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2020-12-11T21:39:16.9100273Z\",\"updatedOn\":\"2021-11-11T20:14:54.5657970Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ea4bfff8-7fb4-485a-aadd-d4129a0ffaa6\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ea4bfff8-7fb4-485a-aadd-d4129a0ffaa6\"\ + },{\"properties\":{\"roleName\":\"Desktop Virtualization Session Host Operator\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Operator of the Desktop Virtualization\ + \ Session Host.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"\ + Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2020-12-11T21:39:53.2569741Z\",\"updatedOn\":\"2021-11-11T20:14:54.7508042Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2ad6aaab-ead9-4eaa-8ac5-da422f562408\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2ad6aaab-ead9-4eaa-8ac5-da422f562408\"\ + },{\"properties\":{\"roleName\":\"Desktop Virtualization Host Pool Reader\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Reader of the Desktop Virtualization\ + \ Host Pool.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.DesktopVirtualization/hostpools/*/read\",\"Microsoft.DesktopVirtualization/hostpools/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/read\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2020-12-11T21:40:33.1430834Z\",\"updatedOn\":\"2021-11-11T20:14:54.9257967Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ceadfde2-b300-400a-ab7b-6143895aa822\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ceadfde2-b300-400a-ab7b-6143895aa822\"\ + },{\"properties\":{\"roleName\":\"Desktop Virtualization Host Pool Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Contributor of the Desktop Virtualization\ + \ Host Pool.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.DesktopVirtualization/hostpools/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Support/*\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:40:57.2976187Z\"\ + ,\"updatedOn\":\"2021-11-11T20:14:55.1057701Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e307426c-f9b6-4e81-87de-d99efb3c32bc\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e307426c-f9b6-4e81-87de-d99efb3c32bc\"\ + },{\"properties\":{\"roleName\":\"Desktop Virtualization Application Group\ + \ Reader\",\"type\":\"BuiltInRole\",\"description\":\"Reader of the Desktop\ + \ Virtualization Application Group.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.DesktopVirtualization/applicationgroups/*/read\"\ + ,\"Microsoft.DesktopVirtualization/applicationgroups/read\",\"Microsoft.DesktopVirtualization/hostpools/read\"\ + ,\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Resources/deployments/read\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/read\",\"Microsoft.Support/*\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2020-12-11T21:41:18.0287398Z\"\ + ,\"updatedOn\":\"2021-11-11T20:14:55.2858006Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/aebf23d0-b568-4e86-b8f9-fe83a2c6ab55\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"aebf23d0-b568-4e86-b8f9-fe83a2c6ab55\"\ + },{\"properties\":{\"roleName\":\"Desktop Virtualization Application Group\ + \ Contributor\",\"type\":\"BuiltInRole\",\"description\":\"Contributor of\ + \ the Desktop Virtualization Application Group.\",\"assignableScopes\":[\"\ + /\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/applicationgroups/*\"\ + ,\"Microsoft.DesktopVirtualization/hostpools/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"\ + Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2020-12-11T21:41:38.6205531Z\",\"updatedOn\":\"2021-11-11T20:14:55.4677136Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/86240b0e-9422-4c43-887b-b61143f32ba8\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"86240b0e-9422-4c43-887b-b61143f32ba8\"\ + },{\"properties\":{\"roleName\":\"Desktop Virtualization Workspace Reader\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Reader of the Desktop Virtualization\ + \ Workspace.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.DesktopVirtualization/workspaces/read\",\"Microsoft.DesktopVirtualization/applicationgroups/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/read\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/read\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2020-12-11T21:41:58.1892707Z\",\"updatedOn\":\"2021-11-11T20:14:55.6577168Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0fa44ee9-7a7d-466b-9bb2-2bf446b1204d\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0fa44ee9-7a7d-466b-9bb2-2bf446b1204d\"\ + },{\"properties\":{\"roleName\":\"Disk Backup Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Provides permission to backup vault to perform disk backup.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Compute/disks/read\",\"Microsoft.Compute/disks/beginGetAccess/action\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2020-12-15T07:39:03.8394514Z\",\"updatedOn\":\"2021-11-11T20:14:56.0178737Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3e5e47e6-65f7-47ef-90b5-e5dd4d455f24\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3e5e47e6-65f7-47ef-90b5-e5dd4d455f24\"\ + },{\"properties\":{\"roleName\":\"Disk Restore Operator\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Provides permission to backup vault to perform disk restore.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Compute/disks/write\"\ + ,\"Microsoft.Compute/disks/read\"],\"notActions\":[],\"dataActions\":[],\"\ + notDataActions\":[]}],\"createdOn\":\"2020-12-15T12:18:31.8481619Z\",\"updatedOn\"\ + :\"2021-11-11T20:14:56.7408912Z\",\"createdBy\":null,\"updatedBy\":null},\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b50d9833-a0cb-478e-945f-707fcc997c13\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b50d9833-a0cb-478e-945f-707fcc997c13\"\ + },{\"properties\":{\"roleName\":\"Disk Snapshot Contributor\",\"type\":\"\ + BuiltInRole\",\"description\":\"Provides permission to backup vault to manage\ + \ disk snapshots.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Compute/snapshots/delete\",\"Microsoft.Compute/snapshots/write\"\ + ,\"Microsoft.Compute/snapshots/read\",\"Microsoft.Compute/snapshots/beginGetAccess/action\"\ + ,\"Microsoft.Compute/snapshots/endGetAccess/action\",\"Microsoft.Compute/disks/beginGetAccess/action\"\ + ,\"Microsoft.Storage/storageAccounts/listkeys/action\",\"Microsoft.Storage/storageAccounts/write\"\ + ,\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/delete\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2020-12-15T12:18:51.4471411Z\",\"updatedOn\":\"2021-11-11T20:14:56.9158814Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7efff54f-a5b4-42b5-a1c5-5411624893ce\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7efff54f-a5b4-42b5-a1c5-5411624893ce\"\ + },{\"properties\":{\"roleName\":\"Microsoft.Kubernetes connected cluster role\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Microsoft.Kubernetes connected\ + \ cluster role.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Kubernetes/connectedClusters/read\",\"Microsoft.Kubernetes/connectedClusters/write\"\ + ,\"Microsoft.Kubernetes/connectedClusters/delete\",\"Microsoft.Kubernetes/registeredSubscriptions/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2021-01-07T23:57:10.9923232Z\",\"updatedOn\":\"2021-11-11T20:14:58.2039838Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5548b2cf-c94c-4228-90ba-30851930a12f\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5548b2cf-c94c-4228-90ba-30851930a12f\"\ + },{\"properties\":{\"roleName\":\"Security Detonation Chamber Submission Manager\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Allowed to create and manage submissions\ + \ to Security Detonation Chamber\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SecurityDetonation/chambers/submissions/delete\"\ + ,\"Microsoft.SecurityDetonation/chambers/submissions/write\",\"Microsoft.SecurityDetonation/chambers/submissions/read\"\ + ,\"Microsoft.SecurityDetonation/chambers/submissions/files/read\",\"Microsoft.SecurityDetonation/chambers/submissions/accesskeyview/read\"\ + ,\"Microsoft.SecurityDetonation/chambers/submissions/adminview/read\",\"Microsoft.SecurityDetonation/chambers/submissions/analystview/read\"\ + ,\"Microsoft.SecurityDetonation/chambers/submissions/publicview/read\",\"\ + Microsoft.SecurityDetonation/chambers/platforms/metadata/read\",\"Microsoft.SecurityDetonation/chambers/workflows/metadata/read\"\ + ,\"Microsoft.SecurityDetonation/chambers/toolsets/metadata/read\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2021-01-18T09:35:36.5739297Z\",\"updatedOn\":\"2021-11-11T20:14:58.3939604Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a37b566d-3efa-4beb-a2f2-698963fa42ce\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a37b566d-3efa-4beb-a2f2-698963fa42ce\"\ + },{\"properties\":{\"roleName\":\"Security Detonation Chamber Publisher\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Allowed to publish and modify\ + \ platforms, workflows and toolsets to Security Detonation Chamber\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.SecurityDetonation/chambers/platforms/read\",\"Microsoft.SecurityDetonation/chambers/platforms/write\"\ + ,\"Microsoft.SecurityDetonation/chambers/platforms/delete\",\"Microsoft.SecurityDetonation/chambers/platforms/metadata/read\"\ + ,\"Microsoft.SecurityDetonation/chambers/workflows/read\",\"Microsoft.SecurityDetonation/chambers/workflows/write\"\ + ,\"Microsoft.SecurityDetonation/chambers/workflows/delete\",\"Microsoft.SecurityDetonation/chambers/workflows/metadata/read\"\ + ,\"Microsoft.SecurityDetonation/chambers/toolsets/read\",\"Microsoft.SecurityDetonation/chambers/toolsets/write\"\ + ,\"Microsoft.SecurityDetonation/chambers/toolsets/delete\",\"Microsoft.SecurityDetonation/chambers/toolsets/metadata/read\"\ + ,\"Microsoft.SecurityDetonation/chambers/publishRequests/read\",\"Microsoft.SecurityDetonation/chambers/publishRequests/cancel/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2021-01-18T11:43:14.0858184Z\",\"\ + updatedOn\":\"2021-11-11T20:14:58.5639749Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/352470b3-6a9c-4686-b503-35deb827e500\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"352470b3-6a9c-4686-b503-35deb827e500\"\ + },{\"properties\":{\"roleName\":\"Collaborative Runtime Operator\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Can manage resources created by AICS at\ + \ runtime\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"\ + Microsoft.IndustryDataLifecycle/derivedModels/*\",\"Microsoft.IndustryDataLifecycle/pipelineSets/*\"\ + ,\"Microsoft.IndustryDataLifecycle/modelMappings/*\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2021-01-19T10:00:27.3464971Z\",\"updatedOn\":\"2021-11-11T20:14:58.7442136Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7a6f0e70-c033-4fb1-828c-08514e5f4102\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7a6f0e70-c033-4fb1-828c-08514e5f4102\"\ + },{\"properties\":{\"roleName\":\"CosmosRestoreOperator\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Can perform restore action for Cosmos DB database account\ + \ with continuous backup mode\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restore/action\"\ + ,\"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/*/read\",\"Microsoft.DocumentDB/locations/restorableDatabaseAccounts/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2021-01-21T19:51:35.3884884Z\",\"updatedOn\":\"2021-11-11T20:14:59.4892686Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5432c526-bc82-444a-b7ba-57c5b0b5b34f\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5432c526-bc82-444a-b7ba-57c5b0b5b34f\"\ + },{\"properties\":{\"roleName\":\"FHIR Data Converter\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Role allows user or principal to convert data from legacy\ + \ format to FHIR\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/convertData/action\"\ + ,\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/convertData/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2021-01-22T19:39:01.1601069Z\",\"\ + updatedOn\":\"2021-11-11T20:14:59.8605937Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a1705bd2-3a8f-45a5-8683-466fcfd5cc24\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a1705bd2-3a8f-45a5-8683-466fcfd5cc24\"\ + },{\"properties\":{\"roleName\":\"Quota Request Operator\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Read and create quota requests, get quota request status,\ + \ and create support tickets.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Capacity/resourceProviders/locations/serviceLimits/read\"\ + ,\"Microsoft.Capacity/resourceProviders/locations/serviceLimits/write\",\"\ + Microsoft.Capacity/resourceProviders/locations/serviceLimitsRequests/read\"\ + ,\"Microsoft.Capacity/register/action\",\"Microsoft.Quota/usages/read\",\"\ + Microsoft.Quota/quotas/read\",\"Microsoft.Quota/quotas/write\",\"Microsoft.Quota/quotaRequests/read\"\ + ,\"Microsoft.Quota/register/action\",\"Microsoft.Authorization/*/read\",\"\ + Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\",\"\ + Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2021-02-03T00:06:35.8404575Z\",\"updatedOn\":\"2022-12-07T21:46:59.0116853Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0e5f05e5-9ab9-446b-b98d-1e2157c94125\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0e5f05e5-9ab9-446b-b98d-1e2157c94125\"\ + },{\"properties\":{\"roleName\":\"EventGrid Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you manage EventGrid operations.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.EventGrid/*\",\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2021-02-08T18:46:18.8999557Z\",\"updatedOn\":\"2021-11-11T20:15:01.6867802Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1e241071-0855-49ea-94dc-649edcd759de\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1e241071-0855-49ea-94dc-649edcd759de\"\ + },{\"properties\":{\"roleName\":\"Security Detonation Chamber Reader\",\"\ + type\":\"BuiltInRole\",\"description\":\"Allowed to query submission info\ + \ and files from Security Detonation Chamber\",\"assignableScopes\":[\"/\"\ + ],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.SecurityDetonation/chambers/submissions/read\"\ + ,\"Microsoft.SecurityDetonation/chambers/submissions/files/read\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2021-03-01T14:06:46.2814905Z\",\"updatedOn\":\"2021-11-11T20:15:03.3274090Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/28241645-39f8-410b-ad48-87863e2951d5\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"28241645-39f8-410b-ad48-87863e2951d5\"\ + },{\"properties\":{\"roleName\":\"Object Anchors Account Reader\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Lets you read ingestion jobs for an object\ + \ anchors account.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/ObjectAnchorsAccounts/ingest/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2021-03-02T01:20:47.0279813Z\",\"\ + updatedOn\":\"2021-11-11T20:15:03.5006082Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4a167cdf-cb95-4554-9203-2347fe489bd9\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4a167cdf-cb95-4554-9203-2347fe489bd9\"\ + },{\"properties\":{\"roleName\":\"Object Anchors Account Owner\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Provides user with ingestion capabilities\ + \ for an object anchors account.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.MixedReality/ObjectAnchorsAccounts/ingest/action\"\ + ,\"Microsoft.MixedReality/ObjectAnchorsAccounts/ingest/read\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2021-03-02T01:42:02.0014737Z\",\"updatedOn\":\"2021-11-11T20:15:03.6855873Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ca0835dd-bacc-42dd-8ed2-ed5e7230d15b\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ca0835dd-bacc-42dd-8ed2-ed5e7230d15b\"\ + },{\"properties\":{\"roleName\":\"WorkloadBuilder Migration Agent Role\",\"\ + type\":\"BuiltInRole\",\"description\":\"WorkloadBuilder Migration Agent Role.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.WorkloadBuilder/migrationAgents/Read\"\ + ,\"Microsoft.WorkloadBuilder/migrationAgents/Write\"],\"notActions\":[],\"\ + dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-03-11T17:07:20.0828003Z\"\ + ,\"updatedOn\":\"2021-11-11T20:15:04.2456706Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d17ce0a2-0697-43bc-aac5-9113337ab61c\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d17ce0a2-0697-43bc-aac5-9113337ab61c\"\ + },{\"properties\":{\"roleName\":\"Azure Spring Cloud Data Reader\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Allow read access to Azure Spring Cloud\ + \ Data\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"\ + notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/*/read\"],\"\ + notDataActions\":[]}],\"createdOn\":\"2021-03-25T11:12:12.6786010Z\",\"updatedOn\"\ + :\"2021-11-11T20:15:05.3368606Z\",\"createdBy\":null,\"updatedBy\":null},\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b5537268-8956-4941-a8f0-646150406f0c\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b5537268-8956-4941-a8f0-646150406f0c\"\ + },{\"properties\":{\"roleName\":\"Cognitive Services Speech Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Full access to Speech projects,\ + \ including read, write and delete all entities, for real-time speech recognition\ + \ and batch transcription tasks, real-time speech synthesis and long audio\ + \ tasks, custom speech and custom voice.\",\"assignableScopes\":[\"/\"],\"\ + permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\"\ + ,\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.CognitiveServices/accounts/SpeechServices/*\",\"Microsoft.CognitiveServices/accounts/CustomVoice/*\"\ + ,\"Microsoft.CognitiveServices/accounts/AudioContentCreation/*\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2021-03-30T11:28:49.7826633Z\",\"updatedOn\":\"2022-05-23T17:10:38.8979809Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0e75ca1e-0464-4b4d-8b93-68208a576181\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0e75ca1e-0464-4b4d-8b93-68208a576181\"\ + },{\"properties\":{\"roleName\":\"Cognitive Services Face Recognizer\",\"\ + type\":\"BuiltInRole\",\"description\":\"Lets you perform detect, verify,\ + \ identify, group, and find similar operations on Face API. This role does\ + \ not allow create or delete operations, which makes it well suited for endpoints\ + \ that only need inferencing capabilities, following 'least privilege' best\ + \ practices.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/Face/detect/action\"\ + ,\"Microsoft.CognitiveServices/accounts/Face/verify/action\",\"Microsoft.CognitiveServices/accounts/Face/identify/action\"\ + ,\"Microsoft.CognitiveServices/accounts/Face/group/action\",\"Microsoft.CognitiveServices/accounts/Face/findsimilars/action\"\ + ,\"Microsoft.CognitiveServices/accounts/Face/detectliveness/multimodal/action\"\ + ,\"Microsoft.CognitiveServices/accounts/Face/detectliveness/singlemodal/action\"\ + ,\"Microsoft.CognitiveServices/accounts/Face/detectlivenesswithverify/singlemodal/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2021-03-31T01:51:41.3557295Z\",\"\ + updatedOn\":\"2023-03-22T22:19:19.0787003Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9894cab4-e18a-44aa-828b-cb588cd6f2d7\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9894cab4-e18a-44aa-828b-cb588cd6f2d7\"\ + },{\"properties\":{\"roleName\":\"Media Services Account Administrator\",\"\ + type\":\"BuiltInRole\",\"description\":\"Create, read, modify, and delete\ + \ Media Services accounts; read-only access to other Media Services resources.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metrics/read\",\"\ + Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Media/mediaservices/*/read\",\"Microsoft.Media/mediaservices/assets/listStreamingLocators/action\"\ + ,\"Microsoft.Media/mediaservices/streamingLocators/listPaths/action\",\"Microsoft.Media/mediaservices/write\"\ + ,\"Microsoft.Media/mediaservices/delete\",\"Microsoft.Media/mediaservices/privateEndpointConnectionsApproval/action\"\ + ,\"Microsoft.Media/mediaservices/privateEndpointConnections/*\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-04-19T23:20:32.2956636Z\"\ + ,\"updatedOn\":\"2021-11-11T20:15:07.1518844Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/054126f8-9a2b-4f1c-a9ad-eca461f08466\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"054126f8-9a2b-4f1c-a9ad-eca461f08466\"\ + },{\"properties\":{\"roleName\":\"Media Services Live Events Administrator\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Create, read, modify, and delete\ + \ Live Events, Assets, Asset Filters, and Streaming Locators; read-only access\ + \ to other Media Services resources.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Media/mediaservices/*/read\"\ + ,\"Microsoft.Media/mediaservices/assets/*\",\"Microsoft.Media/mediaservices/assets/assetfilters/*\"\ + ,\"Microsoft.Media/mediaservices/streamingLocators/*\",\"Microsoft.Media/mediaservices/liveEvents/*\"\ + ],\"notActions\":[\"Microsoft.Media/mediaservices/assets/getEncryptionKey/action\"\ + ,\"Microsoft.Media/mediaservices/streamingLocators/listContentKeys/action\"\ + ],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-04-19T23:21:00.6119555Z\"\ + ,\"updatedOn\":\"2021-11-11T20:15:07.3318873Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/532bc159-b25e-42c0-969e-a1d439f60d77\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"532bc159-b25e-42c0-969e-a1d439f60d77\"\ + },{\"properties\":{\"roleName\":\"Media Services Media Operator\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Create, read, modify, and delete Assets,\ + \ Asset Filters, Streaming Locators, and Jobs; read-only access to other Media\ + \ Services resources.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Media/mediaservices/*/read\"\ + ,\"Microsoft.Media/mediaservices/assets/*\",\"Microsoft.Media/mediaservices/assets/assetfilters/*\"\ + ,\"Microsoft.Media/mediaservices/streamingLocators/*\",\"Microsoft.Media/mediaservices/transforms/jobs/*\"\ + ],\"notActions\":[\"Microsoft.Media/mediaservices/assets/getEncryptionKey/action\"\ + ,\"Microsoft.Media/mediaservices/streamingLocators/listContentKeys/action\"\ + ],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-04-19T23:21:23.2236495Z\"\ + ,\"updatedOn\":\"2021-11-11T20:15:07.5068487Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e4395492-1534-4db2-bedf-88c14621589c\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e4395492-1534-4db2-bedf-88c14621589c\"\ + },{\"properties\":{\"roleName\":\"Media Services Policy Administrator\",\"\ + type\":\"BuiltInRole\",\"description\":\"Create, read, modify, and delete\ + \ Account Filters, Streaming Policies, Content Key Policies, and Transforms;\ + \ read-only access to other Media Services resources. Cannot create Jobs,\ + \ Assets or Streaming resources.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Media/mediaservices/*/read\"\ + ,\"Microsoft.Media/mediaservices/assets/listStreamingLocators/action\",\"\ + Microsoft.Media/mediaservices/streamingLocators/listPaths/action\",\"Microsoft.Media/mediaservices/accountFilters/*\"\ + ,\"Microsoft.Media/mediaservices/streamingPolicies/*\",\"Microsoft.Media/mediaservices/contentKeyPolicies/*\"\ + ,\"Microsoft.Media/mediaservices/transforms/*\"],\"notActions\":[\"Microsoft.Media/mediaservices/contentKeyPolicies/getPolicyPropertiesWithSecrets/action\"\ + ],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-04-19T23:21:46.9534330Z\"\ + ,\"updatedOn\":\"2021-11-11T20:15:07.6968496Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c4bba371-dacd-4a26-b320-7250bca963ae\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c4bba371-dacd-4a26-b320-7250bca963ae\"\ + },{\"properties\":{\"roleName\":\"Media Services Streaming Endpoints Administrator\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Create, read, modify, and delete\ + \ Streaming Endpoints; read-only access to other Media Services resources.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metrics/read\",\"\ + Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Media/mediaservices/*/read\",\"Microsoft.Media/mediaservices/assets/listStreamingLocators/action\"\ + ,\"Microsoft.Media/mediaservices/streamingLocators/listPaths/action\",\"Microsoft.Media/mediaservices/streamingEndpoints/*\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2021-04-19T23:22:04.4594851Z\",\"updatedOn\":\"2021-11-11T20:15:07.8718907Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/99dba123-b5fe-44d5-874c-ced7199a5804\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"99dba123-b5fe-44d5-874c-ced7199a5804\"\ + },{\"properties\":{\"roleName\":\"Stream Analytics Query Tester\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Lets you perform query testing without\ + \ creating a stream analytics job first\",\"assignableScopes\":[\"/\"],\"\ + permissions\":[{\"actions\":[\"Microsoft.StreamAnalytics/locations/TestQuery/action\"\ + ,\"Microsoft.StreamAnalytics/locations/OperationResults/read\",\"Microsoft.StreamAnalytics/locations/SampleInput/action\"\ + ,\"Microsoft.StreamAnalytics/locations/CompileQuery/action\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-04-20T17:33:24.5727870Z\"\ + ,\"updatedOn\":\"2021-11-11T20:15:08.0481551Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1ec5b3c1-b17e-4e25-8312-2acb3c3c5abf\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1ec5b3c1-b17e-4e25-8312-2acb3c3c5abf\"\ + },{\"properties\":{\"roleName\":\"AnyBuild Builder\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Basic user role for AnyBuild. This role allows listing\ + \ of agent information and execution of remote build capabilities.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.AnyBuild/clusters/build/write\",\"Microsoft.AnyBuild/clusters/build/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2021-04-20T22:07:00.4963853Z\",\"\ + updatedOn\":\"2021-11-11T20:15:08.4254134Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a2138dac-4907-4679-a376-736901ed8ad8\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a2138dac-4907-4679-a376-736901ed8ad8\"\ + },{\"properties\":{\"roleName\":\"IoT Hub Data Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Allows for full read access to IoT Hub data-plane properties\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.Devices/IotHubs/*/read\",\"Microsoft.Devices/IotHubs/fileUpload/notifications/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2021-04-22T18:03:29.8843192Z\",\"\ + updatedOn\":\"2021-11-11T20:15:08.6054154Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b447c946-2db7-41ec-983d-d8bf3b1c77e3\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b447c946-2db7-41ec-983d-d8bf3b1c77e3\"\ + },{\"properties\":{\"roleName\":\"IoT Hub Twin Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Allows for read and write access to all IoT Hub device\ + \ and module twins.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[],\"notActions\":[],\"dataActions\":[\"Microsoft.Devices/IotHubs/twins/*\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2021-04-22T20:36:10.1136903Z\",\"\ + updatedOn\":\"2021-11-11T20:15:08.7855063Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/494bdba2-168f-4f31-a0a1-191d2f7c028c\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"494bdba2-168f-4f31-a0a1-191d2f7c028c\"\ + },{\"properties\":{\"roleName\":\"IoT Hub Registry Contributor\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Allows for full access to IoT Hub device\ + \ registry.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"\ + notActions\":[],\"dataActions\":[\"Microsoft.Devices/IotHubs/devices/*\"],\"\ + notDataActions\":[]}],\"createdOn\":\"2021-04-22T20:36:47.5532704Z\",\"updatedOn\"\ + :\"2021-11-11T20:15:08.9804295Z\",\"createdBy\":null,\"updatedBy\":null},\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4ea46cd5-c1b2-4a8e-910b-273211f9ce47\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4ea46cd5-c1b2-4a8e-910b-273211f9ce47\"\ + },{\"properties\":{\"roleName\":\"IoT Hub Data Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Allows for full access to IoT Hub data plane operations.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.Devices/IotHubs/*\"],\"notDataActions\":[]}],\"\ + createdOn\":\"2021-04-22T20:37:16.9927761Z\",\"updatedOn\":\"2021-11-11T20:15:09.1754206Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4fc6c259-987e-4a07-842e-c321cc9d413f\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4fc6c259-987e-4a07-842e-c321cc9d413f\"\ + },{\"properties\":{\"roleName\":\"Test Base Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Let you view and download packages and test results.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.TestBase/testBaseAccounts/packages/testResults/getDownloadUrl/action\"\ + ,\"Microsoft.TestBase/testBaseAccounts/packages/testResults/getVideoDownloadUrl/action\"\ + ,\"Microsoft.TestBase/testBaseAccounts/packages/getDownloadUrl/action\",\"\ + Microsoft.TestBase/*/read\",\"Microsoft.TestBase/testBaseAccounts/customerEvents/write\"\ + ,\"Microsoft.TestBase/testBaseAccounts/customerEvents/delete\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-05-11T23:41:33.1038367Z\"\ + ,\"updatedOn\":\"2021-11-11T20:15:10.8004347Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/15e0f5a1-3450-4248-8e25-e2afe88a9e85\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"15e0f5a1-3450-4248-8e25-e2afe88a9e85\"\ + },{\"properties\":{\"roleName\":\"Search Index Data Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Grants read access to Azure Cognitive Search index data.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.Search/searchServices/indexes/documents/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2021-06-01T20:26:13.4850461Z\",\"\ + updatedOn\":\"2021-11-11T20:15:11.3604371Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1407120a-92aa-4202-b7e9-c0e197c71c8f\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1407120a-92aa-4202-b7e9-c0e197c71c8f\"\ + },{\"properties\":{\"roleName\":\"Search Index Data Contributor\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Grants full access to Azure Cognitive Search\ + \ index data.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[],\"notActions\":[],\"dataActions\":[\"Microsoft.Search/searchServices/indexes/documents/*\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2021-06-01T22:15:16.5388472Z\",\"\ + updatedOn\":\"2021-11-11T20:15:11.5504385Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8ebe5a00-799e-43f5-93ac-243d3dce84a7\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8ebe5a00-799e-43f5-93ac-243d3dce84a7\"\ + },{\"properties\":{\"roleName\":\"Storage Table Data Reader\",\"type\":\"\ + BuiltInRole\",\"description\":\"Allows for read access to Azure Storage tables\ + \ and entities\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Storage/storageAccounts/tableServices/tables/read\"],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/tableServices/tables/entities/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2021-06-15T06:40:54.9150717Z\",\"\ + updatedOn\":\"2021-11-11T20:15:12.1005298Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/76199698-9eea-4c19-bc75-cec21354c6b6\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"76199698-9eea-4c19-bc75-cec21354c6b6\"\ + },{\"properties\":{\"roleName\":\"Storage Table Data Contributor\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Allows for read, write and delete access\ + \ to Azure Storage tables and entities\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Storage/storageAccounts/tableServices/tables/read\"\ + ,\"Microsoft.Storage/storageAccounts/tableServices/tables/write\",\"Microsoft.Storage/storageAccounts/tableServices/tables/delete\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/tableServices/tables/entities/read\"\ + ,\"Microsoft.Storage/storageAccounts/tableServices/tables/entities/write\"\ + ,\"Microsoft.Storage/storageAccounts/tableServices/tables/entities/delete\"\ + ,\"Microsoft.Storage/storageAccounts/tableServices/tables/entities/add/action\"\ + ,\"Microsoft.Storage/storageAccounts/tableServices/tables/entities/update/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2021-06-15T06:51:59.8207610Z\",\"\ + updatedOn\":\"2021-11-11T20:15:12.2854966Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3\"\ + },{\"properties\":{\"roleName\":\"DICOM Data Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Read and search DICOM data.\",\"assignableScopes\":[\"\ + /\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"\ + Microsoft.HealthcareApis/workspaces/dicomservices/resources/read\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2021-06-17T20:58:30.1630494Z\",\"updatedOn\":\"2021-11-11T20:15:13.0154948Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e89c7a3c-2f64-4fa1-a847-3e4c9ba4283a\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e89c7a3c-2f64-4fa1-a847-3e4c9ba4283a\"\ + },{\"properties\":{\"roleName\":\"DICOM Data Owner\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Full access to DICOM data.\",\"assignableScopes\":[\"/\"\ + ],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthcareApis/workspaces/dicomservices/resources/*\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2021-06-17T20:59:30.8659515Z\",\"\ + updatedOn\":\"2021-11-11T20:15:13.1904985Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/58a3b984-7adf-4c20-983a-32417c86fbc8\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"58a3b984-7adf-4c20-983a-32417c86fbc8\"\ + },{\"properties\":{\"roleName\":\"EventGrid Data Sender\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Allows send access to event grid events.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.EventGrid/topics/read\",\"Microsoft.EventGrid/domains/read\"\ + ,\"Microsoft.EventGrid/partnerNamespaces/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.EventGrid/events/send/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2021-07-02T21:55:40.4847495Z\",\"\ + updatedOn\":\"2021-11-11T20:15:13.5605134Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d5a91429-5739-47e2-a06b-3470a27159e7\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d5a91429-5739-47e2-a06b-3470a27159e7\"\ + },{\"properties\":{\"roleName\":\"Disk Pool Operator\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Used by the StoragePool Resource Provider to manage Disks\ + \ added to a Disk Pool.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"Microsoft.Compute/disks/write\",\"Microsoft.Compute/disks/read\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"\ + Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2021-07-08T17:26:05.1079972Z\",\"updatedOn\":\"2021-11-11T20:15:13.9154612Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/60fc6e62-5479-42d4-8bf4-67625fcc2840\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"60fc6e62-5479-42d4-8bf4-67625fcc2840\"\ + },{\"properties\":{\"roleName\":\"AzureML Data Scientist\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Can perform all actions within an Azure Machine Learning\ + \ workspace, except for creating or deleting compute resources and modifying\ + \ the workspace itself.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"Microsoft.MachineLearningServices/workspaces/*/read\",\"Microsoft.MachineLearningServices/workspaces/*/action\"\ + ,\"Microsoft.MachineLearningServices/workspaces/*/delete\",\"Microsoft.MachineLearningServices/workspaces/*/write\"\ + ],\"notActions\":[\"Microsoft.MachineLearningServices/workspaces/delete\"\ + ,\"Microsoft.MachineLearningServices/workspaces/write\",\"Microsoft.MachineLearningServices/workspaces/computes/*/write\"\ + ,\"Microsoft.MachineLearningServices/workspaces/computes/*/delete\",\"Microsoft.MachineLearningServices/workspaces/computes/listKeys/action\"\ + ,\"Microsoft.MachineLearningServices/workspaces/listKeys/action\",\"Microsoft.MachineLearningServices/workspaces/hubs/write\"\ + ,\"Microsoft.MachineLearningServices/workspaces/hubs/delete\",\"Microsoft.MachineLearningServices/workspaces/featurestores/write\"\ + ,\"Microsoft.MachineLearningServices/workspaces/featurestores/delete\"],\"\ + dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-07-14T21:51:06.0361218Z\"\ + ,\"updatedOn\":\"2023-05-30T15:09:08.4457249Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f6c7c914-8db3-469d-8ca1-694a8f32e121\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f6c7c914-8db3-469d-8ca1-694a8f32e121\"\ + },{\"properties\":{\"roleName\":\"Grafana Admin\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Built-in Grafana admin role\",\"assignableScopes\":[\"\ + /\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"\ + Microsoft.Dashboard/grafana/ActAsGrafanaAdmin/action\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2021-07-15T21:32:35.3802340Z\",\"updatedOn\":\"2021-11-11T20:15:14.8104670Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/22926164-76b3-42b3-bc55-97df8dab3e41\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"22926164-76b3-42b3-bc55-97df8dab3e41\"\ + },{\"properties\":{\"roleName\":\"Azure Connected SQL Server Onboarding\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Microsoft.AzureArcData\_service\_\ + role\_to\_access\_the\_resources\_of\_Microsoft.AzureArcData\_stored\_with\_\ + RPSAAS.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AzureArcData/sqlServerInstances/read\"\ + ,\"Microsoft.AzureArcData/sqlServerInstances/write\"],\"notActions\":[],\"\ + dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-07-19T23:52:15.8885739Z\"\ + ,\"updatedOn\":\"2021-11-11T20:15:15.1754742Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e8113dce-c529-4d33-91fa-e9b972617508\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e8113dce-c529-4d33-91fa-e9b972617508\"\ + },{\"properties\":{\"roleName\":\"Azure Relay Sender\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Allows for send access to Azure Relay resources.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Relay/*/wcfRelays/read\"\ + ,\"Microsoft.Relay/*/hybridConnections/read\"],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.Relay/*/send/action\"],\"notDataActions\":[]}],\"createdOn\"\ + :\"2021-07-20T15:37:20.7558643Z\",\"updatedOn\":\"2021-11-11T20:15:15.5454755Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/26baccc8-eea7-41f1-98f4-1762cc7f685d\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"26baccc8-eea7-41f1-98f4-1762cc7f685d\"\ + },{\"properties\":{\"roleName\":\"Azure Relay Owner\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Allows for full access to Azure Relay resources.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Relay/*\"],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.Relay/*\"],\"notDataActions\":[]}],\"createdOn\"\ + :\"2021-07-20T15:44:26.3023126Z\",\"updatedOn\":\"2021-11-11T20:15:15.7154782Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2787bf04-f1f5-4bfe-8383-c8a24483ee38\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2787bf04-f1f5-4bfe-8383-c8a24483ee38\"\ + },{\"properties\":{\"roleName\":\"Azure Relay Listener\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Allows for listen access to Azure Relay resources.\",\"\ + assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Relay/*/wcfRelays/read\"\ + ,\"Microsoft.Relay/*/hybridConnections/read\"],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.Relay/*/listen/action\"],\"notDataActions\":[]}],\"createdOn\"\ + :\"2021-07-20T18:38:03.1437496Z\",\"updatedOn\":\"2021-11-11T20:15:15.9005232Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/26e0b698-aa6d-4085-9386-aadae190014d\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"26e0b698-aa6d-4085-9386-aadae190014d\"\ + },{\"properties\":{\"roleName\":\"Grafana Viewer\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Built-in Grafana Viewer role\",\"assignableScopes\":[\"\ + /\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"\ + Microsoft.Dashboard/grafana/ActAsGrafanaViewer/action\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2021-08-05T16:36:18.7737511Z\",\"updatedOn\":\"2021-11-11T20:15:16.9904932Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/60921a7e-fef1-4a43-9b16-a26c52ad4769\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"60921a7e-fef1-4a43-9b16-a26c52ad4769\"\ + },{\"properties\":{\"roleName\":\"Grafana Editor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Built-in Grafana Editor role\",\"assignableScopes\":[\"\ + /\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"\ + Microsoft.Dashboard/grafana/ActAsGrafanaEditor/action\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2021-08-05T16:37:32.5299593Z\",\"updatedOn\":\"2021-11-11T20:15:17.1805426Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a79a5197-3a5c-4973-a920-486035ffd60f\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a79a5197-3a5c-4973-a920-486035ffd60f\"\ + },{\"properties\":{\"roleName\":\"Automation Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Manage azure automation resources and other resources using\ + \ azure automation.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Automation/automationAccounts/*\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\",\"Microsoft.Insights/ActionGroups/*\",\"Microsoft.Insights/ActivityLogAlerts/*\"\ + ,\"Microsoft.Insights/MetricAlerts/*\",\"Microsoft.Insights/ScheduledQueryRules/*\"\ + ,\"Microsoft.Insights/diagnosticSettings/*\",\"Microsoft.OperationalInsights/workspaces/sharedKeys/action\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2021-08-09T10:18:19.1054699Z\",\"updatedOn\":\"2021-11-11T20:15:17.7304954Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f353d9bd-d4a6-484e-a77a-8050b599b867\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f353d9bd-d4a6-484e-a77a-8050b599b867\"\ + },{\"properties\":{\"roleName\":\"Kubernetes Extension Contributor\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Can create, update, get, list and delete\ + \ Kubernetes Extensions, and get extension async operations\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.KubernetesConfiguration/extensions/write\"\ + ,\"Microsoft.KubernetesConfiguration/extensions/read\",\"Microsoft.KubernetesConfiguration/extensions/delete\"\ + ,\"Microsoft.KubernetesConfiguration/extensions/operations/read\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-08-09T19:47:50.6828896Z\"\ + ,\"updatedOn\":\"2021-11-11T20:15:17.9155393Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"85cb6faf-e071-4c9b-8136-154b5a04f717\"\ + },{\"properties\":{\"roleName\":\"Device Provisioning Service Data Reader\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Allows for full read access to\ + \ Device Provisioning Service data-plane properties.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.Devices/provisioningServices/*/read\"],\"notDataActions\":[]}],\"\ + createdOn\":\"2021-08-09T19:53:12.1374732Z\",\"updatedOn\":\"2021-11-11T20:15:18.0905503Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/10745317-c249-44a1-a5ce-3a4353c0bbd8\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"10745317-c249-44a1-a5ce-3a4353c0bbd8\"\ + },{\"properties\":{\"roleName\":\"Device Provisioning Service Data Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Allows for full access to Device\ + \ Provisioning Service data-plane operations.\",\"assignableScopes\":[\"/\"\ + ],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Devices/provisioningServices/*\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2021-08-09T19:54:03.2783227Z\",\"\ + updatedOn\":\"2021-11-11T20:15:18.2605302Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/dfce44e4-17b7-4bd1-a6d1-04996ec95633\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"dfce44e4-17b7-4bd1-a6d1-04996ec95633\"\ + },{\"properties\":{\"roleName\":\"Code Signing Certificate Profile Signer\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Sign files with a certificate\ + \ profile. This role is in preview and subject to change.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CodeSigning/*/read\",\"\ + Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\",\"\ + Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\":[],\"\ + dataActions\":[\"Microsoft.CodeSigning/certificateProfiles/Sign/action\"],\"\ + notDataActions\":[]}],\"createdOn\":\"2021-08-16T23:17:53.0002693Z\",\"updatedOn\"\ + :\"2022-12-14T16:17:31.6972531Z\",\"createdBy\":null,\"updatedBy\":null},\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2837e146-70d7-4cfd-ad55-7efa6464f958\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2837e146-70d7-4cfd-ad55-7efa6464f958\"\ + },{\"properties\":{\"roleName\":\"Azure Spring Cloud Service Registry Reader\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Allow read access to Azure Spring\ + \ Cloud Service Registry\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/eurekaService/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2021-08-20T04:40:17.9785063Z\",\"\ + updatedOn\":\"2021-11-11T20:15:18.9655101Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cff1b556-2399-4e7e-856d-a8f754be7b65\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"cff1b556-2399-4e7e-856d-a8f754be7b65\"\ + },{\"properties\":{\"roleName\":\"Azure Spring Cloud Service Registry Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Allow read, write and delete access\ + \ to Azure Spring Cloud Service Registry\",\"assignableScopes\":[\"/\"],\"\ + permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/eurekaService/read\"\ + ,\"Microsoft.AppPlatform/Spring/eurekaService/write\",\"Microsoft.AppPlatform/Spring/eurekaService/delete\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2021-08-20T04:42:38.9153779Z\",\"\ + updatedOn\":\"2021-11-11T20:15:19.1405497Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f5880b48-c26d-48be-b172-7927bfa1c8f1\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f5880b48-c26d-48be-b172-7927bfa1c8f1\"\ + },{\"properties\":{\"roleName\":\"Azure Spring Cloud Config Server Reader\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Allow read access to Azure Spring\ + \ Cloud Config Server\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/configService/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2021-08-26T01:50:51.5123701Z\",\"\ + updatedOn\":\"2021-11-11T20:15:19.3155517Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d04c6db6-4947-4782-9e91-30a88feb7be7\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d04c6db6-4947-4782-9e91-30a88feb7be7\"\ + },{\"properties\":{\"roleName\":\"Azure Spring Cloud Config Server Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Allow read, write and delete access\ + \ to Azure Spring Cloud Config Server\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/configService/read\"\ + ,\"Microsoft.AppPlatform/Spring/configService/write\",\"Microsoft.AppPlatform/Spring/configService/delete\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2021-09-06T02:30:47.8611580Z\",\"\ + updatedOn\":\"2021-11-11T20:15:20.0405208Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a06f5c24-21a7-4e1a-aa2b-f19eb6684f5b\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a06f5c24-21a7-4e1a-aa2b-f19eb6684f5b\"\ + },{\"properties\":{\"roleName\":\"Azure VM Managed identities restore Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Azure VM Managed identities restore\ + \ Contributors are allowed to perform Azure VM Restores with managed identities\ + \ both user and system\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"Microsoft.Authorization/*/read\"],\"notActions\":[],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2021-09-13T05:27:59.2180214Z\"\ + ,\"updatedOn\":\"2021-11-11T20:15:20.5805266Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6ae96244-5829-4925-a7d3-5975537d91dd\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6ae96244-5829-4925-a7d3-5975537d91dd\"\ + },{\"properties\":{\"roleName\":\"Azure Maps Search and Render Data Reader\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Grants access to very limited\ + \ set of data APIs for common visual web SDK scenarios. Specifically, render\ + \ and search data APIs.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Maps/accounts/services/render/read\"\ + ,\"Microsoft.Maps/accounts/services/search/read\"],\"notDataActions\":[]}],\"\ + createdOn\":\"2021-10-01T22:17:50.5178931Z\",\"updatedOn\":\"2021-11-11T20:15:22.0455410Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6be48352-4f82-47c9-ad5e-0acacefdb005\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6be48352-4f82-47c9-ad5e-0acacefdb005\"\ + },{\"properties\":{\"roleName\":\"Azure Maps Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Grants access all Azure Maps resource management.\",\"\ + assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Maps/*\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-10-01T22:19:13.1357904Z\"\ + ,\"updatedOn\":\"2021-11-11T20:15:22.2455414Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/dba33070-676a-4fb0-87fa-064dc56ff7fb\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"dba33070-676a-4fb0-87fa-064dc56ff7fb\"\ + },{\"properties\":{\"roleName\":\"Azure Arc VMware VM Contributor\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Arc VMware VM Contributor has permissions\ + \ to perform all VM actions.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.ConnectedVMwarevSphere/virtualmachines/*\",\"\ + Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\"\ + ,\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\"\ + ,\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\"\ + ,\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Resources/deployments/read\"\ + ,\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\"\ + ,\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\"\ + ,\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\"\ + ,\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\"\ + ,\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"\ + Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\"\ + ,\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Resources/subscriptions/operationresults/read\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-10-18T20:19:53.0087024Z\"\ + ,\"updatedOn\":\"2021-11-11T20:15:23.8706020Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b748a06d-6150-4f8a-aaa9-ce3940cd96cb\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b748a06d-6150-4f8a-aaa9-ce3940cd96cb\"\ + },{\"properties\":{\"roleName\":\"Azure Arc VMware Private Cloud User\",\"\ + type\":\"BuiltInRole\",\"description\":\"Azure Arc VMware Private Cloud User\ + \ has permissions to use the VMware cloud resources to deploy VMs.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Insights/AlertRules/Write\"\ + ,\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\"\ + ,\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\"\ + ,\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\"\ + ,\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\"\ + ,\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/cancel/action\"\ + ,\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\"\ + ,\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\"\ + ,\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\"\ + ,\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"\ + Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\"\ + ,\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.ConnectedVMwarevSphere/virtualnetworks/join/action\"\ + ,\"Microsoft.ConnectedVMwarevSphere/virtualnetworks/Read\",\"Microsoft.ConnectedVMwarevSphere/virtualmachinetemplates/clone/action\"\ + ,\"Microsoft.ConnectedVMwarevSphere/virtualmachinetemplates/Read\",\"Microsoft.ConnectedVMwarevSphere/resourcepools/deploy/action\"\ + ,\"Microsoft.ConnectedVMwarevSphere/resourcepools/Read\",\"Microsoft.ConnectedVMwarevSphere/hosts/deploy/action\"\ + ,\"Microsoft.ConnectedVMwarevSphere/hosts/Read\",\"Microsoft.ConnectedVMwarevSphere/clusters/deploy/action\"\ + ,\"Microsoft.ConnectedVMwarevSphere/clusters/Read\",\"Microsoft.ConnectedVMwarevSphere/datastores/allocateSpace/action\"\ + ,\"Microsoft.ConnectedVMwarevSphere/datastores/Read\",\"Microsoft.ExtendedLocation/customLocations/Read\"\ + ,\"Microsoft.ExtendedLocation/customLocations/deploy/action\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-10-18T20:20:46.5105444Z\"\ + ,\"updatedOn\":\"2022-11-14T16:02:29.4536312Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ce551c02-7c42-47e0-9deb-e3b6fc3a9a83\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ce551c02-7c42-47e0-9deb-e3b6fc3a9a83\"\ + },{\"properties\":{\"roleName\":\"Azure Arc VMware Administrator role \",\"\ + type\":\"BuiltInRole\",\"description\":\"Arc VMware VM Contributor has permissions\ + \ to perform all connected VMwarevSphere actions.\",\"assignableScopes\":[\"\ + /\"],\"permissions\":[{\"actions\":[\"Microsoft.ConnectedVMwarevSphere/*\"\ + ,\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\"\ + ,\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\"\ + ,\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\"\ + ,\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Resources/deployments/read\"\ + ,\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\"\ + ,\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\"\ + ,\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\"\ + ,\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\"\ + ,\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"\ + Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\"\ + ,\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Resources/subscriptions/operationresults/read\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-11-01T17:12:42.6172725Z\"\ + ,\"updatedOn\":\"2021-11-11T20:15:25.1275776Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ddc140ed-e463-4246-9145-7c664192013f\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ddc140ed-e463-4246-9145-7c664192013f\"\ + },{\"properties\":{\"roleName\":\"Cognitive Services LUIS Owner\",\"type\"\ + :\"BuiltInRole\",\"description\":\" Has access to all Read, Test, Write, Deploy\ + \ and Delete functions under LUIS\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.CognitiveServices/accounts/listkeys/action\"\ + ,\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/LUIS/*\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2021-11-04T03:28:02.9611800Z\",\"\ + updatedOn\":\"2021-11-11T20:15:25.4884913Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f72c8140-2111-481c-87ff-72b910f6e3f8\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f72c8140-2111-481c-87ff-72b910f6e3f8\"\ + },{\"properties\":{\"roleName\":\"Cognitive Services Language Reader\",\"\ + type\":\"BuiltInRole\",\"description\":\"Has access to Read and Test functions\ + \ under Language portal\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\"\ + ,\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.CognitiveServices/accounts/LanguageAuthoring/*/read\",\"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/*/read\"\ + ,\"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/projects/export/action\"\ + ,\"Microsoft.CognitiveServices/accounts/Language/*/read\",\"Microsoft.CognitiveServices/accounts/Language/*/projects/export/action\"\ + ,\"Microsoft.CognitiveServices/accounts/Language/query-text/action\",\"Microsoft.CognitiveServices/accounts/Language/query-dataverse/action\"\ + ,\"Microsoft.CognitiveServices/accounts/Language/analyze-text/jobs/action\"\ + ,\"Microsoft.CognitiveServices/accounts/Language/analyze-text/action\",\"\ + Microsoft.CognitiveServices/accounts/Language/analyze-text/jobscancel/action\"\ + ,\"Microsoft.CognitiveServices/accounts/Language/analyze-conversations/action\"\ + ,\"Microsoft.CognitiveServices/accounts/Language/analyze-conversations/jobscancel/action\"\ + ,\"Microsoft.CognitiveServices/accounts/Language/analyze-conversations/jobs/action\"\ + ,\"Microsoft.CognitiveServices/accounts/Language/query-knowledgebases/action\"\ + ,\"Microsoft.CognitiveServices/accounts/Language/generate/action\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/*\"\ + ],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnaMaker/*\"\ + ]}],\"createdOn\":\"2021-11-04T03:29:14.7643336Z\",\"updatedOn\":\"2023-02-28T16:09:04.1394585Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7628b7b8-a8b2-4cdc-b46f-e9b35248918e\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7628b7b8-a8b2-4cdc-b46f-e9b35248918e\"\ + },{\"properties\":{\"roleName\":\"Cognitive Services Language Writer\",\"\ + type\":\"BuiltInRole\",\"description\":\" Has access to all Read, Test, and\ + \ Write functions under Language Portal\",\"assignableScopes\":[\"/\"],\"\ + permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\"\ + ,\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.CognitiveServices/accounts/LanguageAuthoring/*\",\"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/*\"\ + ,\"Microsoft.CognitiveServices/accounts/Language/*\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/*\"\ + ],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/LanguageAuthoring/projects/publish/action\"\ + ,\"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/projects/deployments/write\"\ + ,\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnaMaker/*\",\"Microsoft.CognitiveServices/accounts/Language/*/projects/delete\"\ + ,\"Microsoft.CognitiveServices/accounts/Language/*/projects/deployments/write\"\ + ,\"Microsoft.CognitiveServices/accounts/Language/*/projects/deployments/delete\"\ + ,\"Microsoft.CognitiveServices/accounts/Language/*/projects/deployments/swap/action\"\ + ]}],\"createdOn\":\"2021-11-04T03:29:39.5761019Z\",\"updatedOn\":\"2022-03-29T22:15:08.2904465Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f2310ca1-dc64-4889-bb49-c8e0fa3d47a8\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f2310ca1-dc64-4889-bb49-c8e0fa3d47a8\"\ + },{\"properties\":{\"roleName\":\"Cognitive Services Language Owner\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Has access to all Read, Test, Write, Deploy\ + \ and Delete functions under Language portal\",\"assignableScopes\":[\"/\"\ + ],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"\ + Microsoft.CognitiveServices/accounts/listkeys/action\",\"Microsoft.Authorization/roleAssignments/read\"\ + ,\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.CognitiveServices/accounts/LanguageAuthoring/*\",\"Microsoft.CognitiveServices/accounts/ConversationalLanguageUnderstanding/*\"\ + ,\"Microsoft.CognitiveServices/accounts/Language/*\",\"Microsoft.CognitiveServices/accounts/TextAnalytics/*\"\ + ],\"notDataActions\":[\"Microsoft.CognitiveServices/accounts/TextAnalytics/QnaMaker/*\"\ + ]}],\"createdOn\":\"2021-11-04T03:30:07.6173528Z\",\"updatedOn\":\"2022-03-29T22:15:08.2749033Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f07febfe-79bc-46b1-8b37-790e26e6e498\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f07febfe-79bc-46b1-8b37-790e26e6e498\"\ + },{\"properties\":{\"roleName\":\"Cognitive Services LUIS Reader\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Has access to Read and Test functions under\ + \ LUIS.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"\ + ,\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/LUIS/*/read\"\ + ,\"Microsoft.CognitiveServices/accounts/LUIS/apps/testdatasets/write\"],\"\ + notDataActions\":[]}],\"createdOn\":\"2021-11-04T03:30:31.2704834Z\",\"updatedOn\"\ + :\"2021-11-11T20:15:26.2134821Z\",\"createdBy\":null,\"updatedBy\":null},\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18e81cdc-4e98-4e29-a639-e7d10c5a6226\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"18e81cdc-4e98-4e29-a639-e7d10c5a6226\"\ + },{\"properties\":{\"roleName\":\"Cognitive Services LUIS Writer\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Has access to all Read, Test, and Write\ + \ functions under LUIS\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\"\ + ,\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.CognitiveServices/accounts/LUIS/*\"],\"notDataActions\":[\"\ + Microsoft.CognitiveServices/accounts/LUIS/apps/delete\",\"Microsoft.CognitiveServices/accounts/LUIS/apps/move/action\"\ + ,\"Microsoft.CognitiveServices/accounts/LUIS/apps/publish/action\",\"Microsoft.CognitiveServices/accounts/LUIS/apps/settings/write\"\ + ,\"Microsoft.CognitiveServices/accounts/LUIS/apps/azureaccounts/action\",\"\ + Microsoft.CognitiveServices/accounts/LUIS/apps/azureaccounts/delete\"]}],\"\ + createdOn\":\"2021-11-04T03:31:12.1580052Z\",\"updatedOn\":\"2021-11-11T20:15:26.3934523Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6322a993-d5c9-4bed-b113-e49bbea25b27\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6322a993-d5c9-4bed-b113-e49bbea25b27\"\ + },{\"properties\":{\"roleName\":\"PlayFab Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Provides read access to PlayFab resources\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.PlayFab/*/read\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-11-04T23:26:57.2248605Z\"\ + ,\"updatedOn\":\"2021-11-11T20:15:26.5784834Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a9a19cc5-31f4-447c-901f-56c0bb18fcaf\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a9a19cc5-31f4-447c-901f-56c0bb18fcaf\"\ + },{\"properties\":{\"roleName\":\"Load Test Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"View, create, update, delete and execute load tests. View\ + \ and list load test resources but can not make any changes.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.LoadTestService/*/read\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/alertRules/*\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.LoadTestService/loadtests/*\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2021-11-09T08:11:21.0936461Z\",\"\ + updatedOn\":\"2021-11-11T20:15:27.1189225Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/749a398d-560b-491b-bb21-08924219302e\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"749a398d-560b-491b-bb21-08924219302e\"\ + },{\"properties\":{\"roleName\":\"Load Test Owner\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Execute all operations on load test resources and load\ + \ tests\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.LoadTestService/*\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/alertRules/*\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.LoadTestService/*\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2021-11-09T08:12:24.5500195Z\",\"updatedOn\":\"2021-11-11T20:15:27.2897153Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/45bb0b16-2f0c-4e78-afaa-a07599b003f6\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"45bb0b16-2f0c-4e78-afaa-a07599b003f6\"\ + },{\"properties\":{\"roleName\":\"PlayFab Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Provides contributor access to PlayFab resources\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.PlayFab/*/read\",\"Microsoft.PlayFab/*/write\",\"Microsoft.PlayFab/*/delete\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2021-11-10T00:55:37.3326276Z\",\"updatedOn\":\"2021-11-11T20:15:28.0547167Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0c8b84dc-067c-4039-9615-fa1a4b77c726\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0c8b84dc-067c-4039-9615-fa1a4b77c726\"\ + },{\"properties\":{\"roleName\":\"Load Test Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"View and list all load tests and load test resources but\ + \ can not make any changes\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.LoadTestService/*/read\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"\ + Microsoft.LoadTestService/loadtests/readTest/action\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2021-11-10T06:14:08.3903105Z\",\"updatedOn\":\"2021-11-11T20:15:28.2297181Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3ae3fb29-0000-4ccd-bf80-542e7b26e081\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3ae3fb29-0000-4ccd-bf80-542e7b26e081\"\ + },{\"properties\":{\"roleName\":\"Cognitive Services Immersive Reader User\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Provides access to create Immersive\ + \ Reader sessions and call APIs\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/ImmersiveReader/getcontentmodelforreader/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2021-11-10T19:52:14.4487503Z\",\"\ + updatedOn\":\"2021-11-11T20:15:28.4146975Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b2de6794-95db-4659-8781-7e080d3f2b9d\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b2de6794-95db-4659-8781-7e080d3f2b9d\"\ + },{\"properties\":{\"roleName\":\"Lab Services Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"The lab services contributor role\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.LabServices/*\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.LabServices/labPlans/createLab/action\"],\"\ + notDataActions\":[]}],\"createdOn\":\"2021-11-11T00:51:03.3308981Z\",\"updatedOn\"\ + :\"2021-11-11T20:15:28.7792013Z\",\"createdBy\":null,\"updatedBy\":null},\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f69b8690-cc87-41d6-b77a-a4bc3c0a966f\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f69b8690-cc87-41d6-b77a-a4bc3c0a966f\"\ + },{\"properties\":{\"roleName\":\"Lab Services Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"The lab services reader role\",\"assignableScopes\":[\"\ + /\"],\"permissions\":[{\"actions\":[\"Microsoft.LabServices/*/read\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2021-11-11T00:55:30.4208618Z\",\"updatedOn\":\"2021-11-11T20:15:28.9592032Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a5c394f-5eb7-4d4f-9c8e-e8eae39faebc\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"2a5c394f-5eb7-4d4f-9c8e-e8eae39faebc\"\ + },{\"properties\":{\"roleName\":\"Lab Assistant\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"The lab assistant role\",\"assignableScopes\":[\"/\"],\"\ + permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.LabServices/labPlans/images/read\",\"Microsoft.LabServices/labPlans/read\"\ + ,\"Microsoft.LabServices/labs/read\",\"Microsoft.LabServices/labs/schedules/read\"\ + ,\"Microsoft.LabServices/labs/users/read\",\"Microsoft.LabServices/labs/users/invite/action\"\ + ,\"Microsoft.LabServices/labs/virtualMachines/read\",\"Microsoft.LabServices/labs/virtualMachines/start/action\"\ + ,\"Microsoft.LabServices/labs/virtualMachines/stop/action\",\"Microsoft.LabServices/labs/virtualMachines/reimage/action\"\ + ,\"Microsoft.LabServices/labs/virtualMachines/redeploy/action\",\"Microsoft.LabServices/locations/usages/read\"\ + ,\"Microsoft.LabServices/skus/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-11-11T00:56:10.4295443Z\"\ + ,\"updatedOn\":\"2021-11-11T20:15:29.1442530Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ce40b423-cede-4313-a93f-9b28290b72e1\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ce40b423-cede-4313-a93f-9b28290b72e1\"\ + },{\"properties\":{\"roleName\":\"Lab Operator\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"The lab operator role\",\"assignableScopes\":[\"/\"],\"\ + permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.LabServices/labPlans/images/read\",\"Microsoft.LabServices/labPlans/read\"\ + ,\"Microsoft.LabServices/labPlans/saveImage/action\",\"Microsoft.LabServices/labs/publish/action\"\ + ,\"Microsoft.LabServices/labs/read\",\"Microsoft.LabServices/labs/schedules/read\"\ + ,\"Microsoft.LabServices/labs/schedules/write\",\"Microsoft.LabServices/labs/schedules/delete\"\ + ,\"Microsoft.LabServices/labs/users/read\",\"Microsoft.LabServices/labs/users/write\"\ + ,\"Microsoft.LabServices/labs/users/delete\",\"Microsoft.LabServices/labs/users/invite/action\"\ + ,\"Microsoft.LabServices/labs/virtualMachines/read\",\"Microsoft.LabServices/labs/virtualMachines/start/action\"\ + ,\"Microsoft.LabServices/labs/virtualMachines/stop/action\",\"Microsoft.LabServices/labs/virtualMachines/reimage/action\"\ + ,\"Microsoft.LabServices/labs/virtualMachines/redeploy/action\",\"Microsoft.LabServices/labs/virtualMachines/resetPassword/action\"\ + ,\"Microsoft.LabServices/locations/usages/read\",\"Microsoft.LabServices/skus/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2021-11-11T00:56:41.9942935Z\",\"updatedOn\":\"2021-11-11T20:15:29.3242664Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a36e6959-b6be-4b12-8e9f-ef4b474d304d\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a36e6959-b6be-4b12-8e9f-ef4b474d304d\"\ + },{\"properties\":{\"roleName\":\"Lab Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"The lab contributor role\",\"assignableScopes\":[\"/\"\ + ],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.LabServices/labPlans/images/read\",\"Microsoft.LabServices/labPlans/read\"\ + ,\"Microsoft.LabServices/labPlans/saveImage/action\",\"Microsoft.LabServices/labs/read\"\ + ,\"Microsoft.LabServices/labs/write\",\"Microsoft.LabServices/labs/delete\"\ + ,\"Microsoft.LabServices/labs/publish/action\",\"Microsoft.LabServices/labs/syncGroup/action\"\ + ,\"Microsoft.LabServices/labs/schedules/read\",\"Microsoft.LabServices/labs/schedules/write\"\ + ,\"Microsoft.LabServices/labs/schedules/delete\",\"Microsoft.LabServices/labs/users/read\"\ + ,\"Microsoft.LabServices/labs/users/write\",\"Microsoft.LabServices/labs/users/delete\"\ + ,\"Microsoft.LabServices/labs/users/invite/action\",\"Microsoft.LabServices/labs/virtualMachines/read\"\ + ,\"Microsoft.LabServices/labs/virtualMachines/start/action\",\"Microsoft.LabServices/labs/virtualMachines/stop/action\"\ + ,\"Microsoft.LabServices/labs/virtualMachines/reimage/action\",\"Microsoft.LabServices/labs/virtualMachines/redeploy/action\"\ + ,\"Microsoft.LabServices/labs/virtualMachines/resetPassword/action\",\"Microsoft.LabServices/locations/usages/read\"\ + ,\"Microsoft.LabServices/skus/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.LabServices/labPlans/createLab/action\"],\"\ + notDataActions\":[]}],\"createdOn\":\"2021-11-11T00:57:05.9018065Z\",\"updatedOn\"\ + :\"2021-11-11T20:15:29.4992096Z\",\"createdBy\":null,\"updatedBy\":null},\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5daaa2af-1fe8-407c-9122-bba179798270\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5daaa2af-1fe8-407c-9122-bba179798270\"\ + },{\"properties\":{\"roleName\":\"Security Admin\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Security Admin Role\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Authorization/policyAssignments/*\"\ + ,\"Microsoft.Authorization/policyDefinitions/*\",\"Microsoft.Authorization/policyExemptions/*\"\ + ,\"Microsoft.Authorization/policySetDefinitions/*\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.Management/managementGroups/read\",\"Microsoft.operationalInsights/workspaces/*/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Security/*\",\"Microsoft.IoTSecurity/*\",\"Microsoft.Support/*\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2017-05-03T07:51:23.0917487Z\",\"updatedOn\":\"2021-11-15T06:42:49.8263550Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\ + },{\"properties\":{\"roleName\":\"Web PubSub Service Owner\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Full access to Azure Web PubSub Service REST APIs\",\"\ + assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.SignalRService/WebPubSub/*\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2021-03-24T09:10:11.8335180Z\",\"updatedOn\":\"2023-04-05T15:09:07.4837099Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/12cf5a90-567b-43ae-8102-96cf46c7d9b4\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"12cf5a90-567b-43ae-8102-96cf46c7d9b4\"\ + },{\"properties\":{\"roleName\":\"Web PubSub Service Reader\",\"type\":\"\ + BuiltInRole\",\"description\":\"Read-only access to Azure Web PubSub Service\ + \ REST APIs\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"\ + notActions\":[],\"dataActions\":[\"Microsoft.SignalRService/WebPubSub/*/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2021-03-24T09:11:12.6235436Z\",\"\ + updatedOn\":\"2023-04-05T15:09:07.4837099Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bfb1c7d2-fb1a-466b-b2ba-aee63b92deaf\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bfb1c7d2-fb1a-466b-b2ba-aee63b92deaf\"\ + },{\"properties\":{\"roleName\":\"SignalR App Server\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets your app server access SignalR Service with AAD auth\ + \ options.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"\ + notActions\":[],\"dataActions\":[\"Microsoft.SignalRService/SignalR/auth/accessKey/action\"\ + ,\"Microsoft.SignalRService/SignalR/serverConnection/write\",\"Microsoft.SignalRService/SignalR/clientConnection/write\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-07-29T06:54:40.1201435Z\",\"\ + updatedOn\":\"2021-11-16T05:19:04.8579948Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/420fcaa2-552c-430f-98ca-3264be4806c7\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"420fcaa2-552c-430f-98ca-3264be4806c7\"\ + },{\"properties\":{\"roleName\":\"Virtual Machine User Login\",\"type\":\"\ + BuiltInRole\",\"description\":\"View Virtual Machines in the portal and login\ + \ as a regular user.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Network/publicIPAddresses/read\",\"Microsoft.Network/virtualNetworks/read\"\ + ,\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/networkInterfaces/read\"\ + ,\"Microsoft.Compute/virtualMachines/*/read\",\"Microsoft.HybridCompute/machines/*/read\"\ + ,\"Microsoft.HybridConnectivity/endpoints/listCredentials/action\"],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.Compute/virtualMachines/login/action\",\"\ + Microsoft.HybridCompute/machines/login/action\"],\"notDataActions\":[]}],\"\ + createdOn\":\"2018-02-09T18:36:13.3315744Z\",\"updatedOn\":\"2021-11-18T00:55:50.6185845Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fb879df8-f326-4884-b1cf-06f3ad86be52\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fb879df8-f326-4884-b1cf-06f3ad86be52\"\ + },{\"properties\":{\"roleName\":\"Virtual Machine Administrator Login\",\"\ + type\":\"BuiltInRole\",\"description\":\"View Virtual Machines in the portal\ + \ and login as administrator\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Network/publicIPAddresses/read\",\"Microsoft.Network/virtualNetworks/read\"\ + ,\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/networkInterfaces/read\"\ + ,\"Microsoft.Compute/virtualMachines/*/read\",\"Microsoft.HybridCompute/machines/*/read\"\ + ,\"Microsoft.HybridConnectivity/endpoints/listCredentials/action\"],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.Compute/virtualMachines/login/action\",\"\ + Microsoft.Compute/virtualMachines/loginAsAdmin/action\",\"Microsoft.HybridCompute/machines/login/action\"\ + ,\"Microsoft.HybridCompute/machines/loginAsAdmin/action\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2018-02-09T18:36:13.3315744Z\",\"updatedOn\":\"2021-11-18T00:56:53.8134295Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1c0163c0-47e6-4577-8991-ea5c82e286e4\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1c0163c0-47e6-4577-8991-ea5c82e286e4\"\ + },{\"properties\":{\"roleName\":\"Azure Connected Machine Resource Administrator\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Can read, write, delete and re-onboard\ + \ Azure Connected Machines.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.HybridCompute/machines/read\",\"Microsoft.HybridCompute/machines/write\"\ + ,\"Microsoft.HybridCompute/machines/delete\",\"Microsoft.HybridCompute/machines/UpgradeExtensions/action\"\ + ,\"Microsoft.HybridCompute/machines/extensions/read\",\"Microsoft.HybridCompute/machines/extensions/write\"\ + ,\"Microsoft.HybridCompute/machines/extensions/delete\",\"Microsoft.HybridCompute/privateLinkScopes/*\"\ + ,\"Microsoft.HybridCompute/*/read\",\"Microsoft.Resources/deployments/*\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2019-10-23T20:24:59.1474607Z\",\"updatedOn\":\"2021-12-15T16:10:25.5898511Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cd570a14-e51a-42ad-bac8-bafd67325302\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"cd570a14-e51a-42ad-bac8-bafd67325302\"\ + },{\"properties\":{\"roleName\":\"Backup Operator\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you manage backup services, except removal of backup,\ + \ vault creation and giving access to others\",\"assignableScopes\":[\"/\"\ + ],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Network/virtualNetworks/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\"\ + ,\"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/accessToken/action\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/refreshContainers/action\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\"Microsoft.RecoveryServices/Vaults/certificates/write\"\ + ,\"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\"Microsoft.RecoveryServices/Vaults/extendedInformation/write\"\ + ,\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\"\ + ,\"Microsoft.RecoveryServices/Vaults/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\"\ + ,\"Microsoft.RecoveryServices/Vaults/usages/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Storage/storageAccounts/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupstorageconfig/*\",\"Microsoft.RecoveryServices/Vaults/backupValidateOperation/action\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupTriggerValidateOperation/action\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupValidateOperationResults/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupValidateOperationsStatuses/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupOperations/read\",\"Microsoft.RecoveryServices/Vaults/backupPolicies/operations/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/write\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/inquire/action\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupEngines/read\",\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectableContainers/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/items/read\"\ + ,\"Microsoft.RecoveryServices/locations/backupStatus/action\",\"Microsoft.RecoveryServices/locations/backupPreValidateProtection/action\"\ + ,\"Microsoft.RecoveryServices/locations/backupValidateFeatures/action\",\"\ + Microsoft.RecoveryServices/locations/backupAadProperties/read\",\"Microsoft.RecoveryServices/locations/backupCrrJobs/action\"\ + ,\"Microsoft.RecoveryServices/locations/backupCrrJob/action\",\"Microsoft.RecoveryServices/locations/backupCrossRegionRestore/action\"\ + ,\"Microsoft.RecoveryServices/locations/backupCrrOperationResults/read\",\"\ + Microsoft.RecoveryServices/locations/backupCrrOperationsStatus/read\",\"Microsoft.RecoveryServices/Vaults/monitoringAlerts/write\"\ + ,\"Microsoft.RecoveryServices/operations/read\",\"Microsoft.RecoveryServices/locations/operationStatus/read\"\ + ,\"Microsoft.RecoveryServices/Vaults/backupProtectionIntents/read\",\"Microsoft.Support/*\"\ + ,\"Microsoft.DataProtection/backupVaults/backupInstances/read\",\"Microsoft.DataProtection/backupVaults/backupInstances/read\"\ + ,\"Microsoft.DataProtection/backupVaults/deletedBackupInstances/read\",\"\ + Microsoft.DataProtection/backupVaults/backupPolicies/read\",\"Microsoft.DataProtection/backupVaults/backupPolicies/read\"\ + ,\"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\"\ + ,\"Microsoft.DataProtection/backupVaults/backupInstances/recoveryPoints/read\"\ + ,\"Microsoft.DataProtection/backupVaults/backupInstances/findRestorableTimeRanges/action\"\ + ,\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/backupVaults/operationResults/read\"\ + ,\"Microsoft.DataProtection/backupVaults/operationStatus/read\",\"Microsoft.DataProtection/backupVaults/read\"\ + ,\"Microsoft.DataProtection/backupVaults/read\",\"Microsoft.DataProtection/locations/operationStatus/read\"\ + ,\"Microsoft.DataProtection/locations/operationResults/read\",\"Microsoft.DataProtection/operations/read\"\ + ,\"Microsoft.DataProtection/backupVaults/validateForBackup/action\",\"Microsoft.DataProtection/backupVaults/backupInstances/backup/action\"\ + ,\"Microsoft.DataProtection/backupVaults/backupInstances/validateRestore/action\"\ + ,\"Microsoft.DataProtection/backupVaults/backupInstances/restore/action\"\ + ,\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/crossRegionRestore/action\"\ + ,\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/validateCrossRegionRestore/action\"\ + ,\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchCrossRegionRestoreJobs/action\"\ + ,\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchCrossRegionRestoreJob/action\"\ + ,\"Microsoft.DataProtection/subscriptions/resourceGroups/providers/locations/fetchSecondaryRecoveryPoints/action\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2017-01-03T13:21:11.8947640Z\",\"updatedOn\":\"2023-05-19T09:57:05.9227708Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"00c29273-979b-4161-815c-10b084fb9324\"\ + },{\"properties\":{\"roleName\":\"Workbook Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Can save shared workbooks.\",\"assignableScopes\":[\"/\"\ + ],\"permissions\":[{\"actions\":[\"Microsoft.Insights/workbooks/write\",\"\ + Microsoft.Insights/workbooks/delete\",\"Microsoft.Insights/workbooks/read\"\ + ,\"Microsoft.Insights/workbooks/revisions/read\",\"Microsoft.Insights/workbooktemplates/write\"\ + ,\"Microsoft.Insights/workbooktemplates/delete\",\"Microsoft.Insights/workbooktemplates/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2019-08-28T20:59:42.4820277Z\",\"updatedOn\":\"2022-12-12T16:05:57.3745476Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e8ddcd69-c73f-4f9f-9844-4100522f16ad\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e8ddcd69-c73f-4f9f-9844-4100522f16ad\"\ + },{\"properties\":{\"roleName\":\"Workbook Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Can read workbooks.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"microsoft.insights/workbooks/read\",\"microsoft.insights/workbooks/revisions/read\"\ + ,\"microsoft.insights/workbooktemplates/read\"],\"notActions\":[],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2019-08-28T20:56:17.6808140Z\"\ + ,\"updatedOn\":\"2022-12-12T16:05:57.3745476Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b279062a-9be3-42a0-92ae-8b3cf002ec4d\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b279062a-9be3-42a0-92ae-8b3cf002ec4d\"\ + },{\"properties\":{\"roleName\":\"Monitoring Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Can read all monitoring data and update monitoring settings.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"*/read\",\"\ + Microsoft.AlertsManagement/alerts/*\",\"Microsoft.AlertsManagement/alertsSummary/*\"\ + ,\"Microsoft.Insights/actiongroups/*\",\"Microsoft.Insights/activityLogAlerts/*\"\ + ,\"Microsoft.Insights/AlertRules/*\",\"Microsoft.Insights/components/*\",\"\ + Microsoft.Insights/createNotifications/*\",\"Microsoft.Insights/dataCollectionEndpoints/*\"\ + ,\"Microsoft.Insights/dataCollectionRules/*\",\"Microsoft.Insights/dataCollectionRuleAssociations/*\"\ + ,\"Microsoft.Insights/DiagnosticSettings/*\",\"Microsoft.Insights/eventtypes/*\"\ + ,\"Microsoft.Insights/LogDefinitions/*\",\"Microsoft.Insights/metricalerts/*\"\ + ,\"Microsoft.Insights/MetricDefinitions/*\",\"Microsoft.Insights/Metrics/*\"\ + ,\"Microsoft.Insights/notificationStatus/*\",\"Microsoft.Insights/Register/Action\"\ + ,\"Microsoft.Insights/scheduledqueryrules/*\",\"Microsoft.Insights/webtests/*\"\ + ,\"Microsoft.Insights/workbooks/*\",\"Microsoft.Insights/workbooktemplates/*\"\ + ,\"Microsoft.Insights/privateLinkScopes/*\",\"Microsoft.Insights/privateLinkScopeOperationStatuses/*\"\ + ,\"Microsoft.OperationalInsights/workspaces/write\",\"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\"\ + ,\"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\"Microsoft.OperationalInsights/workspaces/search/action\"\ + ,\"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\"\ + ,\"Microsoft.Support/*\",\"Microsoft.WorkloadMonitor/monitors/*\",\"Microsoft.AlertsManagement/smartDetectorAlertRules/*\"\ + ,\"Microsoft.AlertsManagement/actionRules/*\",\"Microsoft.AlertsManagement/smartGroups/*\"\ + ,\"Microsoft.AlertsManagement/migrateFromSmartDetection/*\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2016-09-21T19:21:08.4345976Z\"\ + ,\"updatedOn\":\"2022-09-06T17:20:40.5763144Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\ + },{\"properties\":{\"roleName\":\"Monitoring Metrics Publisher\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Enables publishing metrics against Azure\ + \ resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"\ + Microsoft.Insights/Register/Action\",\"Microsoft.Support/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.Insights/Metrics/Write\"\ + ,\"Microsoft.Insights/Telemetry/Write\"],\"notDataActions\":[]}],\"createdOn\"\ + :\"2018-08-14T00:36:16.5610279Z\",\"updatedOn\":\"2022-01-04T00:38:04.0289073Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3913510d-42f4-4e42-8a64-420c390055eb\"\ + },{\"properties\":{\"roleName\":\"Purview role 1 (Deprecated)\",\"type\":\"\ + BuiltInRole\",\"description\":\"Deprecated role.\",\"assignableScopes\":[\"\ + /\"],\"permissions\":[{\"actions\":[\"Microsoft.Purview/accounts/read\"],\"\ + notActions\":[],\"dataActions\":[\"Microsoft.Purview/accounts/data/read\"\ + ,\"Microsoft.Purview/accounts/data/write\"],\"notDataActions\":[]}],\"createdOn\"\ + :\"2020-11-14T02:37:15.0123345Z\",\"updatedOn\":\"2022-01-04T00:43:15.6924286Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8a3c2885-9b38-4fd2-9d99-91af537c1347\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8a3c2885-9b38-4fd2-9d99-91af537c1347\"\ + },{\"properties\":{\"roleName\":\"Purview role 2 (Deprecated)\",\"type\":\"\ + BuiltInRole\",\"description\":\"Deprecated role.\",\"assignableScopes\":[\"\ + /\"],\"permissions\":[{\"actions\":[\"Microsoft.Purview/accounts/read\"],\"\ + notActions\":[],\"dataActions\":[\"Microsoft.Purview/accounts/scan/read\"\ + ,\"Microsoft.Purview/accounts/scan/write\"],\"notDataActions\":[]}],\"createdOn\"\ + :\"2020-11-14T02:40:05.0975648Z\",\"updatedOn\":\"2022-01-04T00:47:22.9678219Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/200bba9e-f0c8-430f-892b-6f0794863803\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"200bba9e-f0c8-430f-892b-6f0794863803\"\ + },{\"properties\":{\"roleName\":\"Purview role 3 (Deprecated)\",\"type\":\"\ + BuiltInRole\",\"description\":\"Deprecated role.\",\"assignableScopes\":[\"\ + /\"],\"permissions\":[{\"actions\":[\"Microsoft.Purview/accounts/read\"],\"\ + notActions\":[],\"dataActions\":[\"Microsoft.Purview/accounts/data/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-11-14T02:39:22.2344740Z\",\"\ + updatedOn\":\"2022-01-04T00:48:08.2844802Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ff100721-1b9d-43d8-af52-42b69c1272db\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ff100721-1b9d-43d8-af52-42b69c1272db\"\ + },{\"properties\":{\"roleName\":\"Autonomous Development Platform Data Contributor\ + \ (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Grants permissions\ + \ to upload and manage new Autonomous Development Platform measurements.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AutonomousDevelopmentPlatform/*/read\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/discoveries/*\"\ + ,\"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/uploads/*\"\ + ,\"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/measurements/states/new/*\"\ + ,\"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/measurementCollections/*\"\ + ,\"Microsoft.AutonomousDevelopmentPlatform/accounts/measurementCollections/*\"\ + ,\"Microsoft.AutonomousDevelopmentPlatform/workspaces/read\",\"Microsoft.AutonomousDevelopmentPlatform/workspaces/discoveries/*\"\ + ,\"Microsoft.AutonomousDevelopmentPlatform/workspaces/uploads/*\",\"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurements/states/new/*\"\ + ,\"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurements/classifications/*\"\ + ,\"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurements/dataStreams/classifications/*\"\ + ,\"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurementCollections/*\"\ + ],\"notDataActions\":[\"Microsoft.AutonomousDevelopmentPlatform/accounts/dataPools/measurements/states/new/changeState/action\"\ + ,\"Microsoft.AutonomousDevelopmentPlatform/workspaces/measurements/states/new/changeState/action\"\ + ]}],\"createdOn\":\"2020-12-15T11:30:01.7459379Z\",\"updatedOn\":\"2022-09-15T17:13:47.5365709Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b8b15564-4fa6-4a59-ab12-03e1d9594795\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b8b15564-4fa6-4a59-ab12-03e1d9594795\"\ + },{\"properties\":{\"roleName\":\"Autonomous Development Platform Data Owner\ + \ (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Grants full access\ + \ to Autonomous Development Platform data.\",\"assignableScopes\":[\"/\"],\"\ + permissions\":[{\"actions\":[\"Microsoft.AutonomousDevelopmentPlatform/*/read\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.AutonomousDevelopmentPlatform/*\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-12-15T12:13:59.9702378Z\",\"\ + updatedOn\":\"2022-01-04T13:20:26.2040404Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/27f8b550-c507-4db9-86f2-f4b8e816d59d\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"27f8b550-c507-4db9-86f2-f4b8e816d59d\"\ + },{\"properties\":{\"roleName\":\"Autonomous Development Platform Data Reader\ + \ (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Grants read access\ + \ to Autonomous Development Platform data.\",\"assignableScopes\":[\"/\"],\"\ + permissions\":[{\"actions\":[\"Microsoft.AutonomousDevelopmentPlatform/*/read\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.AutonomousDevelopmentPlatform/*/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-12-15T12:11:31.9843256Z\",\"\ + updatedOn\":\"2022-01-04T13:21:04.3207709Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d63b75f7-47ea-4f27-92ac-e0d173aaf093\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d63b75f7-47ea-4f27-92ac-e0d173aaf093\"\ + },{\"properties\":{\"roleName\":\"Key Vault Crypto Officer\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Perform any action on the keys of a key vault, except manage\ + \ permissions. Only works for key vaults that use the 'Azure role-based access\ + \ control' permission model.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Support/*\",\"Microsoft.KeyVault/checkNameAvailability/read\"\ + ,\"Microsoft.KeyVault/deletedVaults/read\",\"Microsoft.KeyVault/locations/*/read\"\ + ,\"Microsoft.KeyVault/vaults/*/read\",\"Microsoft.KeyVault/operations/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.KeyVault/vaults/keys/*\"\ + ,\"Microsoft.KeyVault/vaults/keyrotationpolicies/*\"],\"notDataActions\":[]}],\"\ + createdOn\":\"2020-05-19T17:52:47.0099249Z\",\"updatedOn\":\"2022-01-06T23:21:17.9760884Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/14b46e9e-c2b7-41b4-b07b-48a6ebf60603\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"14b46e9e-c2b7-41b4-b07b-48a6ebf60603\"\ + },{\"properties\":{\"roleName\":\"Device Update Deployments Reader\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Gives you read access to management operations,\ + \ but does not allow making changes\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ,\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"\ + Microsoft.DeviceUpdate/accounts/instances/management/read\",\"Microsoft.DeviceUpdate/accounts/instances/updates/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-08-22T00:01:34.7053630Z\",\"\ + updatedOn\":\"2022-01-13T01:35:51.6463216Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/49e2f5d2-7741-4835-8efa-19e1fe35e47f\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"49e2f5d2-7741-4835-8efa-19e1fe35e47f\"\ + },{\"properties\":{\"roleName\":\"Device Update Deployments Administrator\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Gives you full access to management\ + \ operations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ,\"Microsoft.Insights/alertRules/*\"],\"notActions\":[],\"dataActions\":[\"\ + Microsoft.DeviceUpdate/accounts/instances/management/read\",\"Microsoft.DeviceUpdate/accounts/instances/management/write\"\ + ,\"Microsoft.DeviceUpdate/accounts/instances/management/delete\",\"Microsoft.DeviceUpdate/accounts/instances/updates/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2020-08-21T23:59:52.1001666Z\",\"\ + updatedOn\":\"2022-01-13T01:59:19.4616366Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e4237640-0e3d-4a46-8fda-70bc94856432\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e4237640-0e3d-4a46-8fda-70bc94856432\"\ + },{\"properties\":{\"roleName\":\"Azure Arc VMware Private Clouds Onboarding\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Azure Arc VMware Private Clouds\ + \ Onboarding role has permissions to provision all the required resources\ + \ for onboard and deboard vCenter instances to Azure.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ConnectedVMwarevSphere/vcenters/Write\"\ + ,\"Microsoft.ConnectedVMwarevSphere/vcenters/Read\",\"Microsoft.ConnectedVMwarevSphere/vcenters/Delete\"\ + ,\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\"\ + ,\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\"\ + ,\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\"\ + ,\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Resources/deployments/read\"\ + ,\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\"\ + ,\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\"\ + ,\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\"\ + ,\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\"\ + ,\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"\ + Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\"\ + ,\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.KubernetesConfiguration/extensions/Write\"\ + ,\"Microsoft.KubernetesConfiguration/extensions/Read\",\"Microsoft.KubernetesConfiguration/extensions/Delete\"\ + ,\"Microsoft.KubernetesConfiguration/operations/read\",\"Microsoft.ExtendedLocation/customLocations/Read\"\ + ,\"Microsoft.ExtendedLocation/customLocations/Write\",\"Microsoft.ExtendedLocation/customLocations/Delete\"\ + ,\"Microsoft.ExtendedLocation/customLocations/deploy/action\",\"Microsoft.ResourceConnector/appliances/Read\"\ + ,\"Microsoft.ResourceConnector/appliances/Write\",\"Microsoft.ResourceConnector/appliances/Delete\"\ + ,\"Microsoft.BackupSolutions/vmwareapplications/write\",\"Microsoft.BackupSolutions/vmwareapplications/delete\"\ + ,\"Microsoft.BackupSolutions/vmwareapplications/read\"],\"notActions\":[],\"\ + dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2021-11-01T22:18:08.4480747Z\"\ + ,\"updatedOn\":\"2022-09-27T17:15:01.5950677Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/67d33e57-3129-45e6-bb0b-7cc522f762fa\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"67d33e57-3129-45e6-bb0b-7cc522f762fa\"\ + },{\"properties\":{\"roleName\":\"Chamber Admin\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you manage everything under your Modeling and Simulation\ + \ Workbench chamber.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.ModSimWorkbench/*/read\",\"Microsoft.ModSimWorkbench/workbenches/chambers/*\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\"\ + :[\"Microsoft.ModSimWorkbench/workbenches/chambers/fileRequests/manage/action\"\ + ],\"dataActions\":[\"Microsoft.ModSimWorkbench/workbenches/chambers/upload/action\"\ + ,\"Microsoft.ModSimWorkbench/workbenches/chambers/files/*\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2021-12-15T20:53:14.4428297Z\",\"updatedOn\":\"2023-02-10T21:51:57.1130490Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4e9b8407-af2e-495b-ae54-bb60a55b1b5a\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4e9b8407-af2e-495b-ae54-bb60a55b1b5a\"\ + },{\"properties\":{\"roleName\":\"Microsoft Sentinel Automation Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Microsoft Sentinel Automation\ + \ Contributor\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Authorization/*/read\",\"Microsoft.Logic/workflows/triggers/read\"\ + ,\"Microsoft.Logic/workflows/triggers/listCallbackUrl/action\",\"Microsoft.Logic/workflows/runs/read\"\ + ,\"Microsoft.Web/sites/hostruntime/webhooks/api/workflows/triggers/read\"\ + ,\"Microsoft.Web/sites/hostruntime/webhooks/api/workflows/triggers/listCallbackUrl/action\"\ + ,\"Microsoft.Web/sites/hostruntime/webhooks/api/workflows/runs/read\"],\"\ + notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"\ + 2021-01-24T08:50:52.0382991Z\",\"updatedOn\":\"2022-01-26T09:25:00.4699337Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f4c81013-99ee-4d62-a7ee-b3f1f648599a\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f4c81013-99ee-4d62-a7ee-b3f1f648599a\"\ + },{\"properties\":{\"roleName\":\"CDN Endpoint Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Can view CDN endpoints, but can\u2019t make changes.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Cdn/edgenodes/read\",\"Microsoft.Cdn/operationresults/*\",\"\ + Microsoft.Cdn/profiles/endpoints/*/read\",\"Microsoft.Cdn/profiles/afdendpoints/validateCustomDomain/action\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Support/*\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2016-01-23T02:48:46.4996252Z\",\"updatedOn\":\"2022-01-26T19:51:29.2636610Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\ + },{\"properties\":{\"roleName\":\"Chamber User\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you view everything under your Modeling and Simulation\ + \ Workbench chamber, but not make any changes.\",\"assignableScopes\":[\"\ + /\"],\"permissions\":[{\"actions\":[\"Microsoft.ModSimWorkbench/workbenches/chambers/*/read\"\ + ,\"Microsoft.ModSimWorkbench/workbenches/chambers/workloads/*\",\"Microsoft.ModSimWorkbench/workbenches/chambers/getUploadUri/action\"\ + ,\"Microsoft.ModSimWorkbench/workbenches/chambers/fileRequests/getDownloadUri/action\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.ModSimWorkbench/workbenches/chambers/upload/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2021-12-15T20:51:06.2119764Z\",\"\ + updatedOn\":\"2023-02-10T21:51:57.1130490Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4447db05-44ed-4da3-ae60-6cbece780e32\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4447db05-44ed-4da3-ae60-6cbece780e32\"\ + },{\"properties\":{\"roleName\":\"Cognitive Services Speech User\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Access to the real-time speech recognition\ + \ and batch transcription APIs, real-time speech synthesis and long audio\ + \ APIs, as well as to read the data/test/model/endpoint for custom models,\ + \ but can\u2019t create, delete or modify the data/test/model/endpoint for\ + \ custom models.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\"\ + ,\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.CognitiveServices/accounts/SpeechServices/*/read\",\"Microsoft.CognitiveServices/accounts/SpeechServices/*/transcriptions/read\"\ + ,\"Microsoft.CognitiveServices/accounts/SpeechServices/*/transcriptions/write\"\ + ,\"Microsoft.CognitiveServices/accounts/SpeechServices/*/transcriptions/delete\"\ + ,\"Microsoft.CognitiveServices/accounts/SpeechServices/*/frontend/action\"\ + ,\"Microsoft.CognitiveServices/accounts/SpeechServices/text-dependent/*/action\"\ + ,\"Microsoft.CognitiveServices/accounts/SpeechServices/text-independent/*/action\"\ + ,\"Microsoft.CognitiveServices/accounts/CustomVoice/*/read\",\"Microsoft.CognitiveServices/accounts/CustomVoice/evaluations/*\"\ + ,\"Microsoft.CognitiveServices/accounts/CustomVoice/longaudiosynthesis/*\"\ + ,\"Microsoft.CognitiveServices/accounts/AudioContentCreation/*\"],\"notDataActions\"\ + :[\"Microsoft.CognitiveServices/accounts/CustomVoice/datasets/files/read\"\ + ,\"Microsoft.CognitiveServices/accounts/CustomVoice/datasets/utterances/read\"\ + ]}],\"createdOn\":\"2021-03-30T11:28:27.4339032Z\",\"updatedOn\":\"2022-05-23T17:10:38.8979809Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f2dc8367-1007-4938-bd23-fe263f013447\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f2dc8367-1007-4938-bd23-fe263f013447\"\ + },{\"properties\":{\"roleName\":\"Windows Admin Center Administrator Login\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Let's you manage the OS of your\ + \ resource via Windows Admin Center as an administrator.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/*/read\"\ + ,\"Microsoft.HybridCompute/machines/extensions/*\",\"Microsoft.HybridCompute/machines/upgradeExtensions/action\"\ + ,\"Microsoft.HybridCompute/operations/read\",\"Microsoft.Network/networkInterfaces/read\"\ + ,\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/publicIPAddresses/read\"\ + ,\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/networkSecurityGroups/read\"\ + ,\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules/read\",\"\ + Microsoft.Network/networkWatchers/securityGroupView/action\",\"Microsoft.Network/networkSecurityGroups/securityRules/read\"\ + ,\"Microsoft.Network/networkSecurityGroups/securityRules/write\",\"Microsoft.HybridConnectivity/endpoints/write\"\ + ,\"Microsoft.HybridConnectivity/endpoints/read\",\"Microsoft.HybridConnectivity/endpoints/listManagedProxyDetails/action\"\ + ,\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/virtualMachines/patchAssessmentResults/latest/read\"\ + ,\"Microsoft.Compute/virtualMachines/patchAssessmentResults/latest/softwarePatches/read\"\ + ,\"Microsoft.Compute/virtualMachines/patchInstallationResults/read\",\"Microsoft.Compute/virtualMachines/patchInstallationResults/softwarePatches/read\"\ + ,\"Microsoft.Compute/virtualMachines/extensions/read\",\"Microsoft.Compute/virtualMachines/instanceView/read\"\ + ,\"Microsoft.Compute/virtualMachines/runCommands/read\",\"Microsoft.Compute/virtualMachines/vmSizes/read\"\ + ,\"Microsoft.Compute/locations/publishers/artifacttypes/types/read\",\"Microsoft.Compute/locations/publishers/artifacttypes/types/versions/read\"\ + ,\"Microsoft.Compute/diskAccesses/read\",\"Microsoft.Compute/galleries/images/read\"\ + ,\"Microsoft.Compute/images/read\",\"Microsoft.AzureStackHCI/Clusters/Read\"\ + ,\"Microsoft.AzureStackHCI/Clusters/ArcSettings/Read\",\"Microsoft.AzureStackHCI/Clusters/ArcSettings/Extensions/Read\"\ + ,\"Microsoft.AzureStackHCI/Clusters/ArcSettings/Extensions/Write\",\"Microsoft.AzureStackHCI/Clusters/ArcSettings/Extensions/Delete\"\ + ,\"Microsoft.AzureStackHCI/Operations/Read\",\"Microsoft.ConnectedVMwarevSphere/VirtualMachines/Read\"\ + ,\"Microsoft.ConnectedVMwarevSphere/VirtualMachines/Extensions/Write\",\"\ + Microsoft.ConnectedVMwarevSphere/VirtualMachines/Extensions/Read\"],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.HybridCompute/machines/WACLoginAsAdmin/action\"\ + ,\"Microsoft.Compute/virtualMachines/WACloginAsAdmin/action\",\"Microsoft.AzureStackHCI/Clusters/WACloginAsAdmin/Action\"\ + ,\"Microsoft.ConnectedVMwarevSphere/virtualmachines/WACloginAsAdmin/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2022-01-12T00:51:19.5581155Z\",\"\ + updatedOn\":\"2022-12-08T09:13:01.4326463Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a6333a3e-0164-44c3-b281-7a577aff287f\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a6333a3e-0164-44c3-b281-7a577aff287f\"\ + },{\"properties\":{\"roleName\":\"Azure Kubernetes Service Policy Add-on Deployment\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Deploy the Azure Policy add-on\ + \ on Azure Kubernetes Service clusters\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Resources/deployments/*\",\"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + ,\"Microsoft.Network/publicIPPrefixes/join/action\",\"Microsoft.Network/publicIPAddresses/join/action\"\ + ,\"Microsoft.Compute/diskEncryptionSets/read\",\"Microsoft.Compute/proximityPlacementGroups/write\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2022-02-07T20:51:48.5662807Z\",\"updatedOn\":\"2022-03-15T23:34:13.5188193Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ed5180-3e48-46fd-8541-4ea054d57064\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"18ed5180-3e48-46fd-8541-4ea054d57064\"\ + },{\"properties\":{\"roleName\":\"Guest Configuration Resource Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Lets you read, write Guest Configuration\ + \ Resource.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"\ + Microsoft.GuestConfiguration/guestConfigurationAssignments/write\",\"Microsoft.GuestConfiguration/guestConfigurationAssignments/read\"\ + ,\"Microsoft.GuestConfiguration/guestConfigurationAssignments/*/read\",\"\ + Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\":[],\"\ + notDataActions\":[]}],\"createdOn\":\"2022-01-13T21:31:41.9626667Z\",\"updatedOn\"\ + :\"2022-02-10T19:22:44.9057916Z\",\"createdBy\":null,\"updatedBy\":null},\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/088ab73d-1256-47ae-bea9-9de8e7131f31\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"088ab73d-1256-47ae-bea9-9de8e7131f31\"\ + },{\"properties\":{\"roleName\":\"Domain Services Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Can view Azure AD Domain Services and related network configurations\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/operations/read\"\ + ,\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Incidents/Read\"\ + ,\"Microsoft.Insights/Logs/Read\",\"Microsoft.Insights/Metrics/read\",\"Microsoft.Insights/DiagnosticSettings/read\"\ + ,\"Microsoft.Insights/DiagnosticSettingsCategories/Read\",\"Microsoft.AAD/domainServices/*/read\"\ + ,\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/subnets/read\"\ + ,\"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/read\",\"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/diagnosticSettings/read\"\ + ,\"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/metricDefinitions/read\"\ + ,\"Microsoft.Network/azureFirewalls/read\",\"Microsoft.Network/ddosProtectionPlans/read\"\ + ,\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/loadBalancers/*/read\"\ + ,\"Microsoft.Network/natGateways/read\",\"Microsoft.Network/networkInterfaces/read\"\ + ,\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules/read\",\"\ + Microsoft.Network/networkSecurityGroups/read\",\"Microsoft.Network/networkSecurityGroups/securityRules/read\"\ + ,\"Microsoft.Network/routeTables/read\",\"Microsoft.Network/routeTables/routes/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2022-02-15T19:38:46.9043170Z\",\"updatedOn\":\"2022-06-27T17:28:30.2892869Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/361898ef-9ed1-48c2-849c-a832951106bb\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"361898ef-9ed1-48c2-849c-a832951106bb\"\ + },{\"properties\":{\"roleName\":\"Domain Services Contributor\",\"type\":\"\ + BuiltInRole\",\"description\":\"Can manage Azure AD Domain Services and related\ + \ network configurations\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/read\"\ + ,\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\"\ + ,\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\"\ + ,\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\"\ + ,\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/AlertRules/Write\"\ + ,\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\"\ + ,\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\"\ + ,\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\"\ + ,\"Microsoft.Insights/Logs/Read\",\"Microsoft.Insights/Metrics/Read\",\"Microsoft.Insights/DiagnosticSettings/*\"\ + ,\"Microsoft.Insights/DiagnosticSettingsCategories/Read\",\"Microsoft.AAD/register/action\"\ + ,\"Microsoft.AAD/unregister/action\",\"Microsoft.AAD/domainServices/*\",\"\ + Microsoft.Network/register/action\",\"Microsoft.Network/unregister/action\"\ + ,\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/write\"\ + ,\"Microsoft.Network/virtualNetworks/delete\",\"Microsoft.Network/virtualNetworks/peer/action\"\ + ,\"Microsoft.Network/virtualNetworks/join/action\",\"Microsoft.Network/virtualNetworks/subnets/read\"\ + ,\"Microsoft.Network/virtualNetworks/subnets/write\",\"Microsoft.Network/virtualNetworks/subnets/delete\"\ + ,\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/read\"\ + ,\"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/write\",\"Microsoft.Network/virtualNetworks/virtualNetworkPeerings/delete\"\ + ,\"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/diagnosticSettings/read\"\ + ,\"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/metricDefinitions/read\"\ + ,\"Microsoft.Network/azureFirewalls/read\",\"Microsoft.Network/ddosProtectionPlans/read\"\ + ,\"Microsoft.Network/ddosProtectionPlans/join/action\",\"Microsoft.Network/loadBalancers/read\"\ + ,\"Microsoft.Network/loadBalancers/delete\",\"Microsoft.Network/loadBalancers/*/read\"\ + ,\"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\"Microsoft.Network/loadBalancers/inboundNatRules/join/action\"\ + ,\"Microsoft.Network/natGateways/join/action\",\"Microsoft.Network/networkInterfaces/read\"\ + ,\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/networkInterfaces/delete\"\ + ,\"Microsoft.Network/networkInterfaces/join/action\",\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules/read\"\ + ,\"Microsoft.Network/networkSecurityGroups/read\",\"Microsoft.Network/networkSecurityGroups/write\"\ + ,\"Microsoft.Network/networkSecurityGroups/delete\",\"Microsoft.Network/networkSecurityGroups/join/action\"\ + ,\"Microsoft.Network/networkSecurityGroups/securityRules/read\",\"Microsoft.Network/networkSecurityGroups/securityRules/write\"\ + ,\"Microsoft.Network/networkSecurityGroups/securityRules/delete\",\"Microsoft.Network/routeTables/read\"\ + ,\"Microsoft.Network/routeTables/write\",\"Microsoft.Network/routeTables/delete\"\ + ,\"Microsoft.Network/routeTables/join/action\",\"Microsoft.Network/routeTables/routes/read\"\ + ,\"Microsoft.Network/routeTables/routes/write\",\"Microsoft.Network/routeTables/routes/delete\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2022-02-15T19:40:22.3943189Z\",\"updatedOn\":\"2022-06-27T17:28:31.1017906Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/eeaeda52-9324-47f6-8069-5d5bade478b2\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"eeaeda52-9324-47f6-8069-5d5bade478b2\"\ + },{\"properties\":{\"roleName\":\"DNS Resolver Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Lets you manage DNS resolver resources.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Network/dnsResolvers/read\"\ + ,\"Microsoft.Network/dnsResolvers/write\",\"Microsoft.Network/dnsResolvers/delete\"\ + ,\"Microsoft.Network/dnsResolvers/join/action\",\"Microsoft.Network/dnsResolvers/inboundEndpoints/read\"\ + ,\"Microsoft.Network/dnsResolvers/inboundEndpoints/write\",\"Microsoft.Network/dnsResolvers/inboundEndpoints/delete\"\ + ,\"Microsoft.Network/dnsResolvers/inboundEndpoints/join/action\",\"Microsoft.Network/dnsResolvers/outboundEndpoints/read\"\ + ,\"Microsoft.Network/dnsResolvers/outboundEndpoints/write\",\"Microsoft.Network/dnsResolvers/outboundEndpoints/delete\"\ + ,\"Microsoft.Network/dnsResolvers/outboundEndpoints/join/action\",\"Microsoft.Network/dnsForwardingRulesets/read\"\ + ,\"Microsoft.Network/dnsForwardingRulesets/write\",\"Microsoft.Network/dnsForwardingRulesets/delete\"\ + ,\"Microsoft.Network/dnsForwardingRulesets/join/action\",\"Microsoft.Network/dnsForwardingRulesets/forwardingRules/read\"\ + ,\"Microsoft.Network/dnsForwardingRulesets/forwardingRules/write\",\"Microsoft.Network/dnsForwardingRulesets/forwardingRules/delete\"\ + ,\"Microsoft.Network/dnsForwardingRulesets/virtualNetworkLinks/read\",\"Microsoft.Network/dnsForwardingRulesets/virtualNetworkLinks/write\"\ + ,\"Microsoft.Network/dnsForwardingRulesets/virtualNetworkLinks/delete\",\"\ + Microsoft.Network/locations/dnsResolverOperationResults/read\",\"Microsoft.Network/locations/dnsResolverOperationStatuses/read\"\ + ,\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/join/action\"\ + ,\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/write\"\ + ,\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/virtualNetworks/join/action\"\ + ,\"Microsoft.Network/virtualNetworks/joinLoadBalancer/action\",\"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + ,\"Microsoft.Network/virtualNetworks/subnets/joinLoadBalancer/action\",\"\ + Microsoft.Network/natGateways/join/action\",\"Microsoft.Network/networkSecurityGroups/join/action\"\ + ,\"Microsoft.Network/routeTables/join/action\",\"Microsoft.Network/serviceEndpointPolicies/join/action\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2022-02-16T23:25:04.4308795Z\",\"updatedOn\":\"2022-03-12T01:08:44.4650132Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0f2ebee7-ffd4-4fc0-b3b7-664099fdad5d\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0f2ebee7-ffd4-4fc0-b3b7-664099fdad5d\"\ + },{\"properties\":{\"roleName\":\"Azure Arc Enabled Kubernetes Cluster User\ + \ Role\",\"type\":\"BuiltInRole\",\"description\":\"List cluster user credentials\ + \ action.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"\ + Microsoft.Resources/deployments/write\",\"Microsoft.Resources/subscriptions/operationresults/read\"\ + ,\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Kubernetes/connectedClusters/listClusterUserCredentials/action\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"\ + Microsoft.Support/*\",\"Microsoft.Kubernetes/connectedClusters/listClusterUserCredential/action\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2020-07-28T17:37:00.7637445Z\",\"updatedOn\":\"2022-02-17T02:29:05.1000798Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00493d72-78f6-4148-b6c5-d3ce8e4799dd\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"00493d72-78f6-4148-b6c5-d3ce8e4799dd\"\ + },{\"properties\":{\"roleName\":\"Data Operator for Managed Disks\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Provides permissions to upload data to\ + \ empty managed disks, read, or export data of managed disks (not attached\ + \ to running VMs) and snapshots using SAS URIs and Azure AD authentication.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.Compute/disks/download/action\",\"Microsoft.Compute/disks/upload/action\"\ + ,\"Microsoft.Compute/snapshots/download/action\",\"Microsoft.Compute/snapshots/upload/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2022-03-01T05:42:02.3801768Z\",\"\ + updatedOn\":\"2022-03-01T05:42:02.3801768Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/959f8984-c045-4866-89c7-12bf9737be2e\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"959f8984-c045-4866-89c7-12bf9737be2e\"\ + },{\"properties\":{\"roleName\":\"AgFood Platform Sensor Partner Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Provides contribute access to\ + \ manage sensor related entities in AgFood Platform Service\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.AgFoodPlatform/farmBeats/sensorPartnerScope/*\"],\"notDataActions\"\ + :[\"Microsoft.AgFoodPlatform/farmBeats/sensorPartnerScope/sensors/delete\"\ + ]}],\"createdOn\":\"2022-03-09T09:03:53.4902790Z\",\"updatedOn\":\"2022-10-27T07:34:00.9328070Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6b77f0a0-0d89-41cc-acd1-579c22c17a67\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6b77f0a0-0d89-41cc-acd1-579c22c17a67\"\ + },{\"properties\":{\"roleName\":\"Compute Gallery Sharing Admin\",\"type\"\ + :\"BuiltInRole\",\"description\":\"This role allows user to share gallery\ + \ to another subscription/tenant or share it to the public.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Compute/galleries/share/action\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2022-03-10T04:36:08.9040323Z\",\"updatedOn\":\"2022-03-26T00:40:55.2620635Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1ef6a3be-d0ac-425d-8c01-acb62866290b\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1ef6a3be-d0ac-425d-8c01-acb62866290b\"\ + },{\"properties\":{\"roleName\":\"Scheduled Patching Contributor\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Provides access to manage maintenance configurations\ + \ with maintenance scope InGuestPatch and corresponding configuration assignments\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Maintenance/maintenanceConfigurations/read\"\ + ,\"Microsoft.Maintenance/maintenanceConfigurations/write\",\"Microsoft.Maintenance/maintenanceConfigurations/delete\"\ + ,\"Microsoft.Maintenance/configurationAssignments/read\",\"Microsoft.Maintenance/configurationAssignments/write\"\ + ,\"Microsoft.Maintenance/configurationAssignments/delete\",\"Microsoft.Maintenance/configurationAssignments/maintenanceScope/InGuestPatch/read\"\ + ,\"Microsoft.Maintenance/configurationAssignments/maintenanceScope/InGuestPatch/write\"\ + ,\"Microsoft.Maintenance/configurationAssignments/maintenanceScope/InGuestPatch/delete\"\ + ,\"Microsoft.Maintenance/maintenanceConfigurations/maintenanceScope/InGuestPatch/read\"\ + ,\"Microsoft.Maintenance/maintenanceConfigurations/maintenanceScope/InGuestPatch/write\"\ + ,\"Microsoft.Maintenance/maintenanceConfigurations/maintenanceScope/InGuestPatch/delete\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2022-03-21T14:34:05.5308153Z\",\"updatedOn\":\"2022-04-13T12:11:31.8539917Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/cd08ab90-6b14-449c-ad9a-8f8e549482c6\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"cd08ab90-6b14-449c-ad9a-8f8e549482c6\"\ + },{\"properties\":{\"roleName\":\"DevCenter Dev Box User\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Provides access to create and manage dev boxes.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DevCenter/projects/read\"\ + ,\"Microsoft.DevCenter/projects/*/read\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.DevCenter/projects/users/devboxes/userStop/action\"\ + ,\"Microsoft.DevCenter/projects/users/devboxes/userStart/action\",\"Microsoft.DevCenter/projects/users/devboxes/userGetRemoteConnection/action\"\ + ,\"Microsoft.DevCenter/projects/users/devboxes/userRead/action\",\"Microsoft.DevCenter/projects/users/devboxes/userWrite/action\"\ + ,\"Microsoft.DevCenter/projects/users/devboxes/userDelete/action\",\"Microsoft.DevCenter/projects/users/devboxes/userUpcomingActionRead/action\"\ + ,\"Microsoft.DevCenter/projects/users/devboxes/userUpcomingActionManage/action\"\ + ,\"Microsoft.DevCenter/projects/users/devboxes/userActionRead/action\",\"\ + Microsoft.DevCenter/projects/users/devboxes/userActionManage/action\"],\"\ + notDataActions\":[]}],\"createdOn\":\"2022-03-31T22:42:03.2894277Z\",\"updatedOn\"\ + :\"2023-03-24T19:35:36.6701461Z\",\"createdBy\":null,\"updatedBy\":null},\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/45d50f46-0b78-4001-a660-4198cbe8cd05\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"45d50f46-0b78-4001-a660-4198cbe8cd05\"\ + },{\"properties\":{\"roleName\":\"DevCenter Project Admin\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Provides access to manage project resources.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DevCenter/projects/*\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\"\ + :[\"Microsoft.DevCenter/projects/write\",\"Microsoft.DevCenter/projects/delete\"\ + ],\"dataActions\":[\"Microsoft.DevCenter/projects/users/devboxes/adminStart/action\"\ + ,\"Microsoft.DevCenter/projects/users/devboxes/adminStop/action\",\"Microsoft.DevCenter/projects/users/devboxes/adminRead/action\"\ + ,\"Microsoft.DevCenter/projects/users/devboxes/adminWrite/action\",\"Microsoft.DevCenter/projects/users/devboxes/adminDelete/action\"\ + ,\"Microsoft.DevCenter/projects/users/devboxes/userStop/action\",\"Microsoft.DevCenter/projects/users/devboxes/userStart/action\"\ + ,\"Microsoft.DevCenter/projects/users/devboxes/userGetRemoteConnection/action\"\ + ,\"Microsoft.DevCenter/projects/users/devboxes/userRead/action\",\"Microsoft.DevCenter/projects/users/devboxes/userWrite/action\"\ + ,\"Microsoft.DevCenter/projects/users/devboxes/userDelete/action\",\"Microsoft.DevCenter/projects/users/environments/adminRead/action\"\ + ,\"Microsoft.DevCenter/projects/users/environments/userWrite/action\",\"Microsoft.DevCenter/projects/users/environments/userDelete/action\"\ + ,\"Microsoft.DevCenter/projects/users/environments/adminDelete/action\",\"\ + Microsoft.DevCenter/projects/users/environments/adminAction/action\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2022-03-31T23:57:37.3708041Z\",\"updatedOn\":\"2023-06-07T21:48:44.2685755Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/331c37c6-af14-46d9-b9f4-e1909e1b95a0\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"331c37c6-af14-46d9-b9f4-e1909e1b95a0\"\ + },{\"properties\":{\"roleName\":\"Virtual Machine Local User Login\",\"type\"\ + :\"BuiltInRole\",\"description\":\"View Virtual Machines in the portal and\ + \ login as a local user configured on the arc server\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.HybridCompute/machines/*/read\"\ + ,\"Microsoft.HybridConnectivity/endpoints/listCredentials/action\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-07T04:12:11.0327385Z\"\ + ,\"updatedOn\":\"2022-04-16T23:03:02.5542069Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/602da2ba-a5c2-41da-b01d-5360126ab525\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"602da2ba-a5c2-41da-b01d-5360126ab525\"\ + },{\"properties\":{\"roleName\":\"Azure Arc ScVmm VM Contributor\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Arc ScVmm VM Contributor has permissions\ + \ to perform all VM actions.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"microsoft.scvmm/virtualmachines/*\",\"Microsoft.Insights/AlertRules/Write\"\ + ,\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\"\ + ,\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\"\ + ,\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\"\ + ,\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\"\ + ,\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/cancel/action\"\ + ,\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\"\ + ,\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\"\ + ,\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\"\ + ,\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"\ + Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\"\ + ,\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.ExtendedLocation/customLocations/Read\"\ + ,\"Microsoft.ExtendedLocation/customLocations/deploy/action\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-13T21:33:11.1438013Z\"\ + ,\"updatedOn\":\"2023-05-19T07:39:30.6905234Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e582369a-e17b-42a5-b10c-874c387c530b\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e582369a-e17b-42a5-b10c-874c387c530b\"\ + },{\"properties\":{\"roleName\":\"Azure Arc ScVmm Administrator role\",\"\ + type\":\"BuiltInRole\",\"description\":\"Arc ScVmm VM Administrator has permissions\ + \ to perform all ScVmm actions.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.ScVmm/*\",\"Microsoft.Insights/AlertRules/Write\"\ + ,\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\"\ + ,\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\"\ + ,\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\"\ + ,\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\"\ + ,\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/cancel/action\"\ + ,\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\"\ + ,\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\"\ + ,\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\"\ + ,\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"\ + Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\"\ + ,\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.ExtendedLocation/customLocations/Read\"\ + ,\"Microsoft.ExtendedLocation/customLocations/deploy/action\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-13T21:33:11.1438013Z\"\ + ,\"updatedOn\":\"2023-05-19T07:24:13.7463455Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a92dfd61-77f9-4aec-a531-19858b406c87\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a92dfd61-77f9-4aec-a531-19858b406c87\"\ + },{\"properties\":{\"roleName\":\"Azure Arc ScVmm Private Clouds Onboarding\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Azure Arc ScVmm Private Clouds\ + \ Onboarding role has permissions to provision all the required resources\ + \ for onboard and deboard vmm server instances to Azure.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"microsoft.scvmm/vmmservers/Read\"\ + ,\"microsoft.scvmm/vmmservers/Write\",\"microsoft.scvmm/vmmservers/Delete\"\ + ,\"Microsoft.Insights/AlertRules/Write\",\"Microsoft.Insights/AlertRules/Delete\"\ + ,\"Microsoft.Insights/AlertRules/Read\",\"Microsoft.Insights/AlertRules/Activated/Action\"\ + ,\"Microsoft.Insights/AlertRules/Resolved/Action\",\"Microsoft.Insights/AlertRules/Throttled/Action\"\ + ,\"Microsoft.Insights/AlertRules/Incidents/Read\",\"Microsoft.Resources/deployments/read\"\ + ,\"Microsoft.Resources/deployments/write\",\"Microsoft.Resources/deployments/delete\"\ + ,\"Microsoft.Resources/deployments/cancel/action\",\"Microsoft.Resources/deployments/validate/action\"\ + ,\"Microsoft.Resources/deployments/whatIf/action\",\"Microsoft.Resources/deployments/exportTemplate/action\"\ + ,\"Microsoft.Resources/deployments/operations/read\",\"Microsoft.Resources/deployments/operationstatuses/read\"\ + ,\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\",\"\ + Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\"\ + ,\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.ExtendedLocation/customLocations/Read\"\ + ,\"Microsoft.ExtendedLocation/customLocations/deploy/action\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-13T21:33:11.1438013Z\"\ + ,\"updatedOn\":\"2023-05-19T07:39:31.0563245Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6aac74c4-6311-40d2-bbdd-7d01e7c6e3a9\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6aac74c4-6311-40d2-bbdd-7d01e7c6e3a9\"\ + },{\"properties\":{\"roleName\":\"Azure Arc ScVmm Private Cloud User\",\"\ + type\":\"BuiltInRole\",\"description\":\"Azure Arc ScVmm Private Cloud User\ + \ has permissions to use the ScVmm resources to deploy VMs.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Insights/AlertRules/Write\"\ + ,\"Microsoft.Insights/AlertRules/Delete\",\"Microsoft.Insights/AlertRules/Read\"\ + ,\"Microsoft.Insights/AlertRules/Activated/Action\",\"Microsoft.Insights/AlertRules/Resolved/Action\"\ + ,\"Microsoft.Insights/AlertRules/Throttled/Action\",\"Microsoft.Insights/AlertRules/Incidents/Read\"\ + ,\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\"\ + ,\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/cancel/action\"\ + ,\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Resources/deployments/whatIf/action\"\ + ,\"Microsoft.Resources/deployments/exportTemplate/action\",\"Microsoft.Resources/deployments/operations/read\"\ + ,\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\"\ + ,\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"\ + Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\"\ + ,\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Resources/subscriptions/operationresults/read\",\"microsoft.scvmm/virtualnetworks/join/action\"\ + ,\"microsoft.scvmm/virtualnetworks/Read\",\"microsoft.scvmm/virtualmachinetemplates/clone/action\"\ + ,\"microsoft.scvmm/virtualmachinetemplates/Read\",\"microsoft.scvmm/clouds/deploy/action\"\ + ,\"microsoft.scvmm/clouds/Read\",\"Microsoft.ExtendedLocation/customLocations/Read\"\ + ,\"Microsoft.ExtendedLocation/customLocations/deploy/action\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-04-13T21:33:11.1438013Z\"\ + ,\"updatedOn\":\"2023-05-19T07:39:31.0573244Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c0781e91-8102-4553-8951-97c6d4243cda\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c0781e91-8102-4553-8951-97c6d4243cda\"\ + },{\"properties\":{\"roleName\":\"FHIR Data Importer\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Role allows user or principal to read and import FHIR Data\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\"\ + ,\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/import/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2022-04-19T12:03:07.1913541Z\",\"\ + updatedOn\":\"2022-04-21T13:19:49.7566662Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4465e953-8ced-4406-a58e-0f6e3f3b530b\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4465e953-8ced-4406-a58e-0f6e3f3b530b\"\ + },{\"properties\":{\"roleName\":\"API Management Developer Portal Content\ + \ Editor\",\"type\":\"BuiltInRole\",\"description\":\"Can customize the developer\ + \ portal, edit its content, and publish it.\",\"assignableScopes\":[\"/\"\ + ],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/portalRevisions/read\"\ + ,\"Microsoft.ApiManagement/service/portalRevisions/write\",\"Microsoft.ApiManagement/service/contentTypes/read\"\ + ,\"Microsoft.ApiManagement/service/contentTypes/delete\",\"Microsoft.ApiManagement/service/contentTypes/write\"\ + ,\"Microsoft.ApiManagement/service/contentTypes/contentItems/read\",\"Microsoft.ApiManagement/service/contentTypes/contentItems/write\"\ + ,\"Microsoft.ApiManagement/service/contentTypes/contentItems/delete\"],\"\ + notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"\ + 2022-05-06T21:46:28.7501982Z\",\"updatedOn\":\"2022-05-11T01:48:03.0899467Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c031e6a8-4391-4de0-8d69-4706a7ed3729\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c031e6a8-4391-4de0-8d69-4706a7ed3729\"\ + },{\"properties\":{\"roleName\":\"VM Scanner Operator\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Role that provides access to disk snapshot for security\ + \ analysis.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"\ + Microsoft.Compute/disks/read\",\"Microsoft.Compute/disks/beginGetAccess/action\"\ + ,\"Microsoft.Compute/virtualMachines/instanceView/read\",\"Microsoft.Compute/virtualMachines/read\"\ + ,\"Microsoft.Compute/virtualMachineScaleSets/instanceView/read\",\"Microsoft.Compute/virtualMachineScaleSets/read\"\ + ,\"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/read\",\"Microsoft.Compute/virtualMachineScaleSets/virtualMachines/instanceView/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2022-05-15T19:19:38.5462809Z\",\"updatedOn\":\"2022-06-07T19:47:57.0763272Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d24ecba3-c1f4-40fa-a7bb-4588a071e8fd\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d24ecba3-c1f4-40fa-a7bb-4588a071e8fd\"\ + },{\"properties\":{\"roleName\":\"Elastic SAN Owner\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Allows for full access to all resources under Azure Elastic\ + \ SAN including changing network security policies to unblock data path access\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.ResourceHealth/availabilityStatuses/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ElasticSan/elasticSans/*\"\ + ,\"Microsoft.ElasticSan/locations/*\"],\"notActions\":[],\"dataActions\":[],\"\ + notDataActions\":[]}],\"createdOn\":\"2022-05-26T12:41:01.1833837Z\",\"updatedOn\"\ + :\"2022-08-23T17:36:07.1409226Z\",\"createdBy\":null,\"updatedBy\":null},\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/80dcbedb-47ef-405d-95bd-188a1b4ac406\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"80dcbedb-47ef-405d-95bd-188a1b4ac406\"\ + },{\"properties\":{\"roleName\":\"Elastic SAN Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Allows for control path read access to Azure Elastic SAN\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/roleAssignments/read\"\ + ,\"Microsoft.Authorization/roleDefinitions/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ElasticSan/elasticSans/*/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2022-06-01T07:05:04.5639037Z\",\"updatedOn\":\"2022-08-23T17:36:07.1409226Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/af6a70f8-3c9f-4105-acf1-d719e9fca4ca\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"af6a70f8-3c9f-4105-acf1-d719e9fca4ca\"\ + },{\"properties\":{\"roleName\":\"Desktop Virtualization Virtual Machine Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"This role is in preview and subject\ + \ to change. Provide permission to the Azure Virtual Desktop Resource Provider\ + \ to create, delete, update, start, and stop virtual machines.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DesktopVirtualization/hostpools/read\"\ + ,\"Microsoft.DesktopVirtualization/hostpools/write\",\"Microsoft.DesktopVirtualization/hostpools/retrieveRegistrationToken/action\"\ + ,\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/write\"\ + ,\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/delete\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/read\"\ + ,\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/disconnect/action\"\ + ,\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/sendMessage/action\"\ + ,\"Microsoft.DesktopVirtualization/hostpools/sessionHostConfigurations/read\"\ + ,\"Microsoft.Compute/availabilitySets/read\",\"Microsoft.Compute/availabilitySets/write\"\ + ,\"Microsoft.Compute/availabilitySets/vmSizes/read\",\"Microsoft.Compute/disks/read\"\ + ,\"Microsoft.Compute/disks/write\",\"Microsoft.Compute/disks/delete\",\"Microsoft.Compute/galleries/read\"\ + ,\"Microsoft.Compute/galleries/images/read\",\"Microsoft.Compute/galleries/images/versions/read\"\ + ,\"Microsoft.Compute/images/read\",\"Microsoft.Compute/locations/usages/read\"\ + ,\"Microsoft.Compute/locations/vmSizes/read\",\"Microsoft.Compute/operations/read\"\ + ,\"Microsoft.Compute/skus/read\",\"Microsoft.Compute/virtualMachines/read\"\ + ,\"Microsoft.Compute/virtualMachines/write\",\"Microsoft.Compute/virtualMachines/delete\"\ + ,\"Microsoft.Compute/virtualMachines/start/action\",\"Microsoft.Compute/virtualMachines/powerOff/action\"\ + ,\"Microsoft.Compute/virtualMachines/restart/action\",\"Microsoft.Compute/virtualMachines/deallocate/action\"\ + ,\"Microsoft.Compute/virtualMachines/runCommand/action\",\"Microsoft.Compute/virtualMachines/extensions/read\"\ + ,\"Microsoft.Compute/virtualMachines/extensions/write\",\"Microsoft.Compute/virtualMachines/extensions/delete\"\ + ,\"Microsoft.Compute/virtualMachines/runCommands/read\",\"Microsoft.Compute/virtualMachines/runCommands/write\"\ + ,\"Microsoft.Compute/virtualMachines/vmSizes/read\",\"Microsoft.Network/networkSecurityGroups/read\"\ + ,\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/networkInterfaces/read\"\ + ,\"Microsoft.Network/networkInterfaces/join/action\",\"Microsoft.Network/networkInterfaces/delete\"\ + ,\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + ,\"Microsoft.Marketplace/offerTypes/publishers/offers/plans/agreements/read\"\ + ,\"Microsoft.KeyVault/vaults/deploy/action\",\"Microsoft.Storage/storageAccounts/read\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"\ + Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2022-06-29T01:44:11.2575005Z\",\"updatedOn\":\"2022-07-18T17:11:57.3282145Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a959dbd1-f747-45e3-8ba6-dd80f235f97c\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a959dbd1-f747-45e3-8ba6-dd80f235f97c\"\ + },{\"properties\":{\"roleName\":\"Desktop Virtualization Power On Off Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"This role is in preview and subject\ + \ to change. Provide permission to the Azure Virtual Desktop Resource Provider\ + \ to start and stop virtual machines.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Compute/virtualMachines/start/action\",\"Microsoft.Compute/virtualMachines/read\"\ + ,\"Microsoft.Compute/virtualMachines/instanceView/read\",\"Microsoft.Compute/virtualMachines/deallocate/action\"\ + ,\"Microsoft.Compute/virtualMachines/restart/action\",\"Microsoft.Compute/virtualMachines/powerOff/action\"\ + ,\"Microsoft.Insights/eventtypes/values/read\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.DesktopVirtualization/hostpools/read\"\ + ,\"Microsoft.DesktopVirtualization/hostpools/write\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/read\"\ + ,\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/write\",\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/delete\"\ + ,\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/read\"\ + ,\"Microsoft.DesktopVirtualization/hostpools/sessionhosts/usersessions/sendMessage/action\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2022-06-29T01:44:11.3414837Z\",\"updatedOn\":\"2022-07-18T17:11:57.3282145Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/40c5ff49-9181-41f8-ae61-143b0e78555e\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"40c5ff49-9181-41f8-ae61-143b0e78555e\"\ + },{\"properties\":{\"roleName\":\"Desktop Virtualization Power On Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"This role is in preview and subject\ + \ to change. Provide permission to the Azure Virtual Desktop Resource Provider\ + \ to start virtual machines.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Compute/virtualMachines/start/action\",\"Microsoft.Compute/virtualMachines/read\"\ + ,\"Microsoft.Compute/virtualMachines/instanceView/read\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-06-29T01:44:11.3414837Z\"\ + ,\"updatedOn\":\"2022-07-18T17:11:57.3282145Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/489581de-a3bd-480d-9518-53dea7416b33\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"489581de-a3bd-480d-9518-53dea7416b33\"\ + },{\"properties\":{\"roleName\":\"Elastic SAN Volume Group Owner\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Allows for full access to a volume group\ + \ in Azure Elastic SAN including changing network security policies to unblock\ + \ data path access\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"\ + ,\"Microsoft.ElasticSan/elasticSans/volumeGroups/*\",\"Microsoft.ElasticSan/locations/asyncoperations/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2022-07-04T17:04:25.3846899Z\",\"updatedOn\":\"2022-08-23T17:36:07.1409226Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a8281131-f312-4f34-8d98-ae12be9f0d23\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a8281131-f312-4f34-8d98-ae12be9f0d23\"\ + },{\"properties\":{\"roleName\":\"Access Review Operator Service Role\",\"\ + type\":\"BuiltInRole\",\"description\":\"Lets you grant Access Review System\ + \ app permissions to discover and revoke access as needed by the access review\ + \ process.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"\ + Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleAssignments/delete\"\ + ,\"Microsoft.Management/getEntities/action\"],\"notActions\":[],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2022-07-04T17:04:25.3846899Z\"\ + ,\"updatedOn\":\"2022-07-04T17:04:25.3846899Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/76cc9ee4-d5d3-4a45-a930-26add3d73475\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"76cc9ee4-d5d3-4a45-a930-26add3d73475\"\ + },{\"properties\":{\"roleName\":\"Code Signing Identity Verifier\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Manage identity or business verification\ + \ requests. This role is in preview and subject to change.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CodeSigning/*/read\"],\"\ + notActions\":[],\"dataActions\":[\"Microsoft.CodeSigning/IdentityVerification/Read\"\ + ,\"Microsoft.CodeSigning/IdentityVerification/Write\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2022-07-29T07:36:35.8877235Z\",\"updatedOn\":\"2022-11-02T07:26:58.4672479Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4339b7cf-9826-4e41-b4ed-c7f4505dac08\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4339b7cf-9826-4e41-b4ed-c7f4505dac08\"\ + },{\"properties\":{\"roleName\":\"Video Indexer Restricted Viewer\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Has access to view and search through all\ + \ video's insights and transcription in the Video Indexer portal. No access\ + \ to model customization, embedding of widget, downloading videos, or sharing\ + \ the account.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.VideoIndexer/*/read\",\"Microsoft.VideoIndexer/accounts/*/action\"\ + ],\"notActions\":[\"Microsoft.VideoIndexer/*/write\",\"Microsoft.VideoIndexer/*/delete\"\ + ,\"Microsoft.VideoIndexer/accounts/generateAccessToken/action\"],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2022-08-09T20:15:25.5603064Z\"\ + ,\"updatedOn\":\"2022-08-09T20:15:25.5603064Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a2c4a527-7dc0-4ee3-897b-403ade70fafb\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a2c4a527-7dc0-4ee3-897b-403ade70fafb\"\ + },{\"properties\":{\"roleName\":\"Monitoring Data Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Can access the data in an Azure Monitor Workspace.\",\"\ + assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.Monitor/accounts/data/metrics/read\"],\"\ + notDataActions\":[]}],\"createdOn\":\"2022-08-22T15:27:32.9926129Z\",\"updatedOn\"\ + :\"2022-10-07T20:52:48.6545841Z\",\"createdBy\":null,\"updatedBy\":null},\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b0d8363b-8ddd-447d-831f-62ca05bff136\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b0d8363b-8ddd-447d-831f-62ca05bff136\"\ + },{\"properties\":{\"roleName\":\"Azure Kubernetes Fleet Manager RBAC Writer\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Allows read/write access to most\ + \ objects in a namespace.This role does not allow viewing or modifying roles\ + \ or role bindings. However, this role allows accessing Secrets as any ServiceAccount\ + \ in the namespace, so it can be used to gain the API access levels of any\ + \ ServiceAccount in the namespace. Applying this role at cluster scope will\ + \ give access across all namespaces.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/operationresults/read\"\ + ,\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.ContainerService/fleets/read\",\"Microsoft.ContainerService/fleets/listCredentials/action\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/fleets/apps/controllerrevisions/read\"\ + ,\"Microsoft.ContainerService/fleets/apps/daemonsets/*\",\"Microsoft.ContainerService/fleets/apps/deployments/*\"\ + ,\"Microsoft.ContainerService/fleets/apps/statefulsets/*\",\"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/*\"\ + ,\"Microsoft.ContainerService/fleets/batch/cronjobs/*\",\"Microsoft.ContainerService/fleets/batch/jobs/*\"\ + ,\"Microsoft.ContainerService/fleets/configmaps/*\",\"Microsoft.ContainerService/fleets/endpoints/*\"\ + ,\"Microsoft.ContainerService/fleets/events.k8s.io/events/read\",\"Microsoft.ContainerService/fleets/events/read\"\ + ,\"Microsoft.ContainerService/fleets/extensions/daemonsets/*\",\"Microsoft.ContainerService/fleets/extensions/deployments/*\"\ + ,\"Microsoft.ContainerService/fleets/extensions/ingresses/*\",\"Microsoft.ContainerService/fleets/extensions/networkpolicies/*\"\ + ,\"Microsoft.ContainerService/fleets/limitranges/read\",\"Microsoft.ContainerService/fleets/namespaces/read\"\ + ,\"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/*\",\"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/*\"\ + ,\"Microsoft.ContainerService/fleets/persistentvolumeclaims/*\",\"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/*\"\ + ,\"Microsoft.ContainerService/fleets/replicationcontrollers/*\",\"Microsoft.ContainerService/fleets/replicationcontrollers/*\"\ + ,\"Microsoft.ContainerService/fleets/resourcequotas/read\",\"Microsoft.ContainerService/fleets/secrets/*\"\ + ,\"Microsoft.ContainerService/fleets/serviceaccounts/*\",\"Microsoft.ContainerService/fleets/services/*\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2022-08-22T17:29:14.4390853Z\",\"\ + updatedOn\":\"2022-08-26T20:16:47.5777443Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5af6afb3-c06c-4fa4-8848-71a8aee05683\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5af6afb3-c06c-4fa4-8848-71a8aee05683\"\ + },{\"properties\":{\"roleName\":\"Azure Kubernetes Fleet Manager RBAC Admin\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"This role grants admin access\ + \ - provides write permissions on most objects within a a namespace, with\ + \ the exception of ResourceQuota object and the namespace object itself. Applying\ + \ this role at cluster scope will give access across all namespaces.\",\"\ + assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Resources/subscriptions/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ContainerService/fleets/read\"\ + ,\"Microsoft.ContainerService/fleets/listCredentials/action\"],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.ContainerService/fleets/apps/controllerrevisions/read\"\ + ,\"Microsoft.ContainerService/fleets/apps/daemonsets/*\",\"Microsoft.ContainerService/fleets/apps/deployments/*\"\ + ,\"Microsoft.ContainerService/fleets/apps/statefulsets/*\",\"Microsoft.ContainerService/fleets/authorization.k8s.io/localsubjectaccessreviews/write\"\ + ,\"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/*\"\ + ,\"Microsoft.ContainerService/fleets/batch/cronjobs/*\",\"Microsoft.ContainerService/fleets/batch/jobs/*\"\ + ,\"Microsoft.ContainerService/fleets/configmaps/*\",\"Microsoft.ContainerService/fleets/endpoints/*\"\ + ,\"Microsoft.ContainerService/fleets/events.k8s.io/events/read\",\"Microsoft.ContainerService/fleets/events/read\"\ + ,\"Microsoft.ContainerService/fleets/extensions/daemonsets/*\",\"Microsoft.ContainerService/fleets/extensions/deployments/*\"\ + ,\"Microsoft.ContainerService/fleets/extensions/ingresses/*\",\"Microsoft.ContainerService/fleets/extensions/networkpolicies/*\"\ + ,\"Microsoft.ContainerService/fleets/limitranges/read\",\"Microsoft.ContainerService/fleets/namespaces/read\"\ + ,\"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/*\",\"Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/*\"\ + ,\"Microsoft.ContainerService/fleets/persistentvolumeclaims/*\",\"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/*\"\ + ,\"Microsoft.ContainerService/fleets/rbac.authorization.k8s.io/rolebindings/*\"\ + ,\"Microsoft.ContainerService/fleets/rbac.authorization.k8s.io/roles/*\",\"\ + Microsoft.ContainerService/fleets/replicationcontrollers/*\",\"Microsoft.ContainerService/fleets/replicationcontrollers/*\"\ + ,\"Microsoft.ContainerService/fleets/resourcequotas/read\",\"Microsoft.ContainerService/fleets/secrets/*\"\ + ,\"Microsoft.ContainerService/fleets/serviceaccounts/*\",\"Microsoft.ContainerService/fleets/services/*\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2022-08-22T17:29:14.4390853Z\",\"\ + updatedOn\":\"2022-08-26T20:16:47.5777443Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/434fb43a-c01c-447e-9f67-c3ad923cfaba\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"434fb43a-c01c-447e-9f67-c3ad923cfaba\"\ + },{\"properties\":{\"roleName\":\"Azure Kubernetes Fleet Manager Contributor\ + \ Role\",\"type\":\"BuiltInRole\",\"description\":\"Grants access to read\ + \ and write Azure Kubernetes Fleet Manager clusters\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ContainerService/fleets/*\"\ + ,\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2022-08-22T17:29:14.4234593Z\"\ + ,\"updatedOn\":\"2022-08-22T17:29:14.4234593Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/63bb64ad-9799-4770-b5c3-24ed299a07bf\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"63bb64ad-9799-4770-b5c3-24ed299a07bf\"\ + },{\"properties\":{\"roleName\":\"Azure Kubernetes Fleet Manager RBAC Reader\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Allows read-only access to see\ + \ most objects in a namespace. It does not allow viewing roles or role bindings.\ + \ This role does not allow viewing Secrets, since reading the contents of\ + \ Secrets enables access to ServiceAccount credentials in the namespace, which\ + \ would allow API access as any ServiceAccount in the namespace (a form of\ + \ privilege escalation). Applying this role at cluster scope will give access\ + \ across all namespaces.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/operationresults/read\"\ + ,\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.ContainerService/fleets/read\",\"Microsoft.ContainerService/fleets/listCredentials/action\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/fleets/apps/controllerrevisions/read\"\ + ,\"Microsoft.ContainerService/fleets/apps/daemonsets/read\",\"Microsoft.ContainerService/fleets/apps/deployments/read\"\ + ,\"Microsoft.ContainerService/fleets/apps/statefulsets/read\",\"Microsoft.ContainerService/fleets/autoscaling/horizontalpodautoscalers/read\"\ + ,\"Microsoft.ContainerService/fleets/batch/cronjobs/read\",\"Microsoft.ContainerService/fleets/batch/jobs/read\"\ + ,\"Microsoft.ContainerService/fleets/configmaps/read\",\"Microsoft.ContainerService/fleets/endpoints/read\"\ + ,\"Microsoft.ContainerService/fleets/events.k8s.io/events/read\",\"Microsoft.ContainerService/fleets/events/read\"\ + ,\"Microsoft.ContainerService/fleets/extensions/daemonsets/read\",\"Microsoft.ContainerService/fleets/extensions/deployments/read\"\ + ,\"Microsoft.ContainerService/fleets/extensions/ingresses/read\",\"Microsoft.ContainerService/fleets/extensions/networkpolicies/read\"\ + ,\"Microsoft.ContainerService/fleets/limitranges/read\",\"Microsoft.ContainerService/fleets/namespaces/read\"\ + ,\"Microsoft.ContainerService/fleets/networking.k8s.io/ingresses/read\",\"\ + Microsoft.ContainerService/fleets/networking.k8s.io/networkpolicies/read\"\ + ,\"Microsoft.ContainerService/fleets/persistentvolumeclaims/read\",\"Microsoft.ContainerService/fleets/policy/poddisruptionbudgets/read\"\ + ,\"Microsoft.ContainerService/fleets/replicationcontrollers/read\",\"Microsoft.ContainerService/fleets/replicationcontrollers/read\"\ + ,\"Microsoft.ContainerService/fleets/resourcequotas/read\",\"Microsoft.ContainerService/fleets/serviceaccounts/read\"\ + ,\"Microsoft.ContainerService/fleets/services/read\"],\"notDataActions\":[]}],\"\ + createdOn\":\"2022-08-22T17:29:14.4390853Z\",\"updatedOn\":\"2022-08-26T20:16:47.5777443Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/30b27cfc-9c84-438e-b0ce-70e35255df80\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"30b27cfc-9c84-438e-b0ce-70e35255df80\"\ + },{\"properties\":{\"roleName\":\"Azure Kubernetes Fleet Manager RBAC Cluster\ + \ Admin\",\"type\":\"BuiltInRole\",\"description\":\"Lets you manage all resources\ + \ in the fleet manager cluster.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/operationresults/read\"\ + ,\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.ContainerService/fleets/read\",\"Microsoft.ContainerService/fleets/listCredentials/action\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.ContainerService/fleets/*\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2022-08-22T17:29:14.4234593Z\",\"\ + updatedOn\":\"2022-08-22T17:29:14.4234593Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ab4d3d-a1bf-4477-8ad9-8359bc988f69\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"18ab4d3d-a1bf-4477-8ad9-8359bc988f69\"\ + },{\"properties\":{\"roleName\":\"Kubernetes Namespace User\",\"type\":\"\ + BuiltInRole\",\"description\":\"Allows a user to read namespace resources\ + \ and retrieve kubeconfig for the cluster\",\"assignableScopes\":[\"/\"],\"\ + permissions\":[{\"actions\":[\"Microsoft.KubernetesConfiguration/namespaces/read\"\ + ,\"Microsoft.KubernetesConfiguration/namespaces/listUserCredential/action\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2022-08-24T08:05:05.4886641Z\",\"updatedOn\":\"2022-08-24T08:05:05.4886641Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba79058c-0414-4a34-9e42-c3399d80cd5a\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ba79058c-0414-4a34-9e42-c3399d80cd5a\"\ + },{\"properties\":{\"roleName\":\"Data Labeling - Labeler\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Can label data in Labeling.\",\"assignableScopes\":[\"\ + /\"],\"permissions\":[{\"actions\":[\"Microsoft.MachineLearningServices/workspaces/read\"\ + ,\"Microsoft.MachineLearningServices/workspaces/experiments/runs/read\",\"\ + Microsoft.MachineLearningServices/workspaces/labeling/projects/read\",\"Microsoft.MachineLearningServices/workspaces/labeling/projects/summary/read\"\ + ,\"Microsoft.MachineLearningServices/workspaces/labeling/labels/read\",\"\ + Microsoft.MachineLearningServices/workspaces/labeling/labels/write\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-09-02T20:34:03.6536098Z\"\ + ,\"updatedOn\":\"2022-09-08T21:01:04.9492408Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c6decf44-fd0a-444c-a844-d653c394e7ab\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c6decf44-fd0a-444c-a844-d653c394e7ab\"\ + },{\"properties\":{\"roleName\":\"Role Based Access Control Administrator\ + \ (Preview)\",\"type\":\"BuiltInRole\",\"description\":\"Manage access to\ + \ Azure resources by assigning roles using Azure RBAC. This role does not\ + \ allow you to manage access using other ways, such as Azure Policy.\",\"\ + assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Authorization/roleAssignments/write\"\ + ,\"Microsoft.Authorization/roleAssignments/delete\",\"*/read\",\"Microsoft.Support/*\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2022-09-07T00:28:32.1779656Z\",\"updatedOn\":\"2022-09-07T00:28:32.1779656Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f58310d9-a9f6-439a-9e8d-f62e7b41a168\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f58310d9-a9f6-439a-9e8d-f62e7b41a168\"\ + },{\"properties\":{\"roleName\":\"Template Spec Contributor\",\"type\":\"\ + BuiltInRole\",\"description\":\"Allows full access to Template Spec operations\ + \ at the assigned scope.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"Microsoft.Resources/templateSpecs/*\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2022-09-07T23:56:38.8525330Z\",\"updatedOn\":\"2022-09-07T23:56:38.8525330Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1c9b6475-caf0-4164-b5a1-2142a7116f4b\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1c9b6475-caf0-4164-b5a1-2142a7116f4b\"\ + },{\"properties\":{\"roleName\":\"Template Spec Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Allows read access to Template Specs at the assigned scope.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/templateSpecs/*/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2022-09-07T23:56:38.8525330Z\",\"updatedOn\":\"2022-09-07T23:56:38.8525330Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/392ae280-861d-42bd-9ea5-08ee6d83b80e\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"392ae280-861d-42bd-9ea5-08ee6d83b80e\"\ + },{\"properties\":{\"roleName\":\"Microsoft Sentinel Playbook Operator\",\"\ + type\":\"BuiltInRole\",\"description\":\"Microsoft Sentinel Playbook Operator\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Logic/workflows/read\"\ + ,\"Microsoft.Logic/workflows/triggers/listCallbackUrl/action\",\"Microsoft.Web/sites/hostruntime/webhooks/api/workflows/triggers/listCallbackUrl/action\"\ + ,\"Microsoft.Web/sites/read\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2022-09-20T17:17:53.1732035Z\",\"updatedOn\":\"2022-12-07T18:28:46.3977543Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/51d6186e-6489-4900-b93f-92e23144cca5\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"51d6186e-6489-4900-b93f-92e23144cca5\"\ + },{\"properties\":{\"roleName\":\"Deployment Environments User\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Provides access to manage environment resources.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.DevCenter/projects/read\"\ + ,\"Microsoft.DevCenter/projects/*/read\",\"Microsoft.Fidalgo/projects/read\"\ + ,\"Microsoft.Fidalgo/projects/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Authorization/*/read\"],\"notActions\":[\"Microsoft.DevCenter/projects/pools/read\"\ + ,\"Microsoft.Fidalgo/projects/pools/read\",\"Microsoft.DevCenter/projects/pools/schedules/read\"\ + ],\"dataActions\":[\"Microsoft.DevCenter/projects/users/environments/adminRead/action\"\ + ,\"Microsoft.DevCenter/projects/users/environments/userWrite/action\",\"Microsoft.DevCenter/projects/users/environments/userDelete/action\"\ + ,\"Microsoft.DevCenter/projects/users/environments/adminAction/action\"],\"\ + notDataActions\":[]}],\"createdOn\":\"2022-09-21T23:02:10.9267534Z\",\"updatedOn\"\ + :\"2022-10-12T10:02:51.4519755Z\",\"createdBy\":null,\"updatedBy\":null},\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18e40d4e-8d2e-438d-97e1-9528336e149c\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"18e40d4e-8d2e-438d-97e1-9528336e149c\"\ + },{\"properties\":{\"roleName\":\"Azure Spring Apps Connect Role\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Azure Spring Apps Connect Role\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.AppPlatform/Spring/apps/deployments/connect/action\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2022-09-23T09:06:33.6408942Z\",\"updatedOn\":\"2022-09-23T09:06:33.6408942Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/80558df3-64f9-4c0f-b32d-e5094b036b0b\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"80558df3-64f9-4c0f-b32d-e5094b036b0b\"\ + },{\"properties\":{\"roleName\":\"Azure Spring Apps Remote Debugging Role\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Azure Spring Apps Remote Debugging\ + \ Role\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"\ + notActions\":[],\"dataActions\":[\"Microsoft.AppPlatform/Spring/apps/deployments/remotedebugging/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2022-09-23T09:21:46.6422475Z\",\"\ + updatedOn\":\"2022-09-23T09:21:46.6422475Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a99b0159-1064-4c22-a57b-c9b3caa1c054\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a99b0159-1064-4c22-a57b-c9b3caa1c054\"\ + },{\"properties\":{\"roleName\":\"AzureML Registry User\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Can perform all actions on Machine Learning Services Registry\ + \ assets\_as well as get Registry resources.\",\"assignableScopes\":[\"/\"\ + ],\"permissions\":[{\"actions\":[\"Microsoft.MachineLearningServices/registries/read\"\ + ,\"Microsoft.MachineLearningServices/registries/assets/*\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-09-27T17:15:01.5950677Z\"\ + ,\"updatedOn\":\"2022-09-27T17:15:01.5950677Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1823dd4f-9b8c-4ab6-ab4e-7397a3684615\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1823dd4f-9b8c-4ab6-ab4e-7397a3684615\"\ + },{\"properties\":{\"roleName\":\"AzureML Compute Operator\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Can access and perform CRUD operations on Machine Learning\ + \ Services managed compute resources (including Notebook VMs).\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.MachineLearningServices/workspaces/computes/*\"\ + ,\"Microsoft.MachineLearningServices/workspaces/notebooks/vm/*\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-09-27T17:15:01.5950677Z\"\ + ,\"updatedOn\":\"2022-09-27T17:15:01.5950677Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e503ece1-11d0-4e8e-8e2c-7a6c3bf38815\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e503ece1-11d0-4e8e-8e2c-7a6c3bf38815\"\ + },{\"properties\":{\"roleName\":\"Azure Center for SAP solutions service role\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Azure Center for SAP solutions\ + \ service role - This role is intended to be used for providing the permissions\ + \ to user assigned managed identity. Azure Center for SAP solutions will use\ + \ this identity to deploy and manage SAP systems.\",\"assignableScopes\":[\"\ + /\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/write\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\"\ + ,\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/loadBalancers/write\"\ + ,\"Microsoft.Network/loadBalancers/backendAddressPools/read\",\"Microsoft.Network/loadBalancers/backendAddressPools/write\"\ + ,\"Microsoft.Network/loadBalancers/frontendIPConfigurations/read\",\"Microsoft.Network/loadBalancers/loadBalancingRules/read\"\ + ,\"Microsoft.Network/loadBalancers/inboundNatRules/read\",\"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/logDefinitions/read\"\ + ,\"Microsoft.Network/loadBalancers/networkInterfaces/read\",\"Microsoft.Network/loadBalancers/outboundRules/read\"\ + ,\"Microsoft.Network/loadBalancers/virtualMachines/read\",\"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/metricDefinitions/read\"\ + ,\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/write\"\ + ,\"Microsoft.Network/networkInterfaces/ipconfigurations/read\",\"Microsoft.Network/networkInterfaces/loadBalancers/read\"\ + ,\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\"\ + ,\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\"\ + ,\"Microsoft.Network/virtualNetworks/virtualMachines/read\",\"Microsoft.Network/networkInterfaces/ipconfigurations/join/action\"\ + ,\"Microsoft.Network/privateEndpoints/read\",\"Microsoft.Network/privateEndpoints/write\"\ + ,\"Microsoft.Network/networkInterfaces/join/action\",\"Microsoft.Network/loadBalancers/backendAddressPools/join/action\"\ + ,\"Microsoft.Network/loadBalancers/frontendIPConfigurations/join/action\"\ + ,\"Microsoft.Network/virtualNetworks/subnets/join/action\",\"Microsoft.Network/virtualNetworks/subnets/joinLoadBalancer/action\"\ + ,\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/write\"\ + ,\"Microsoft.Storage/storageAccounts/PrivateEndpointConnectionsApproval/action\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\"\ + ,\"Microsoft.Storage/storageAccounts/fileServices/read\",\"Microsoft.Storage/storageAccounts/fileServices/write\"\ + ,\"Microsoft.Storage/storageAccounts/fileServices/shares/read\",\"Microsoft.Storage/storageAccounts/fileServices/shares/write\"\ + ,\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/virtualMachines/write\"\ + ,\"Microsoft.Compute/virtualMachines/instanceView/read\",\"Microsoft.Compute/availabilitySets/read\"\ + ,\"Microsoft.Compute/availabilitySets/write\",\"Microsoft.Compute/skus/read\"\ + ,\"Microsoft.Compute/sshPublicKeys/read\",\"Microsoft.Compute/virtualMachines/extensions/read\"\ + ,\"Microsoft.Compute/virtualMachines/extensions/write\",\"Microsoft.Compute/virtualMachines/extensions/delete\"\ + ,\"Microsoft.Compute/disks/read\",\"Microsoft.Compute/disks/write\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-10-03T17:04:07.6891007Z\"\ + ,\"updatedOn\":\"2023-02-02T07:25:11.5651483Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/aabbc5dd-1af0-458b-a942-81af88f9c138\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"aabbc5dd-1af0-458b-a942-81af88f9c138\"\ + },{\"properties\":{\"roleName\":\"Azure Center for SAP solutions reader\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"This role provides read access\ + \ to all capabilities of Azure Center for SAP solutions.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Advisor/configurations/read\"\ + ,\"Microsoft.Advisor/recommendations/read\",\"Microsoft.Workloads/sapvirtualInstances/*/read\"\ + ,\"Microsoft.Workloads/Locations/*/action\",\"Microsoft.Workloads/Operations/read\"\ + ,\"Microsoft.Workloads/Locations/OperationStatuses/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metrics/read\",\"\ + Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/read\"\ + ,\"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/metricDefinitions/read\"\ + ,\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\"\ + ,\"Microsoft.Network/networkInterfaces/read\",\"Microsoft.Network/networkInterfaces/ipconfigurations/read\"\ + ,\"Microsoft.Network/networkInterfaces/loadBalancers/read\",\"Microsoft.Network/networkInterfaces/providers/Microsoft.Insights/metricDefinitions/read\"\ + ,\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/loadBalancers/backendAddressPools/read\"\ + ,\"Microsoft.Network/loadBalancers/frontendIPConfigurations/read\",\"Microsoft.Network/loadBalancers/loadBalancingRules/read\"\ + ,\"Microsoft.Network/loadBalancers/inboundNatRules/read\",\"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/logDefinitions/read\"\ + ,\"Microsoft.Network/loadBalancers/networkInterfaces/read\",\"Microsoft.Network/loadBalancers/outboundRules/read\"\ + ,\"Microsoft.Network/loadBalancers/virtualMachines/read\",\"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/metricDefinitions/read\"\ + ,\"Microsoft.Network/privateEndpoints/read\",\"Microsoft.Storage/storageAccounts/read\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\"\ + ,\"Microsoft.Storage/storageAccounts/fileServices/read\",\"Microsoft.Storage/storageAccounts/fileServices/shares/read\"\ + ,\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/availabilitySets/read\"\ + ,\"Microsoft.Compute/virtualMachines/extensions/read\",\"Microsoft.Compute/disks/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2022-10-03T17:04:07.6891007Z\",\"updatedOn\":\"2023-06-05T15:10:13.6646668Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/05352d14-a920-4328-a0de-4cbe7430e26b\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"05352d14-a920-4328-a0de-4cbe7430e26b\"\ + },{\"properties\":{\"roleName\":\"Azure Center for SAP solutions administrator\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"This role provides read and write\ + \ access to all capabilities of Azure Center for SAP solutions.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Advisor/configurations/read\"\ + ,\"Microsoft.Advisor/recommendations/read\",\"Microsoft.Workloads/sapvirtualInstances/*/read\"\ + ,\"Microsoft.Workloads/sapVirtualInstances/*/write\",\"Microsoft.Workloads/sapVirtualInstances/*/delete\"\ + ,\"Microsoft.Workloads/Locations/*/action\",\"Microsoft.Workloads/Locations/*/read\"\ + ,\"Microsoft.Workloads/sapVirtualInstances/*/start/action\",\"Microsoft.Workloads/sapVirtualInstances/*/stop/action\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.Insights/metrics/read\",\"Microsoft.Insights/metricDefinitions/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/write\"\ + ,\"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/providers/Microsoft.Insights/metricDefinitions/read\"\ + ,\"Microsoft.Network/virtualNetworks/subnets/read\",\"Microsoft.Network/virtualNetworks/subnets/write\"\ + ,\"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\"Microsoft.Network/networkInterfaces/read\"\ + ,\"Microsoft.Network/networkInterfaces/ipconfigurations/read\",\"Microsoft.Network/networkInterfaces/loadBalancers/read\"\ + ,\"Microsoft.Network/networkInterfaces/providers/Microsoft.Insights/metricDefinitions/read\"\ + ,\"Microsoft.Network/loadBalancers/read\",\"Microsoft.Network/loadBalancers/backendAddressPools/read\"\ + ,\"Microsoft.Network/loadBalancers/frontendIPConfigurations/read\",\"Microsoft.Network/loadBalancers/loadBalancingRules/read\"\ + ,\"Microsoft.Network/loadBalancers/inboundNatRules/read\",\"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/logDefinitions/read\"\ + ,\"Microsoft.Network/loadBalancers/networkInterfaces/read\",\"Microsoft.Network/loadBalancers/outboundRules/read\"\ + ,\"Microsoft.Network/loadBalancers/virtualMachines/read\",\"Microsoft.Network/loadBalancers/providers/Microsoft.Insights/metricDefinitions/read\"\ + ,\"Microsoft.Network/privateEndpoints/read\",\"Microsoft.Network/networkSecurityGroups/join/action\"\ + ,\"Microsoft.Network/routeTables/join/action\",\"Microsoft.Storage/storageAccounts/read\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\"\ + ,\"Microsoft.Storage/storageAccounts/fileServices/read\",\"Microsoft.Storage/storageAccounts/fileServices/shares/read\"\ + ,\"Microsoft.Compute/virtualMachines/read\",\"Microsoft.Compute/availabilitySets/read\"\ + ,\"Microsoft.Compute/sshPublicKeys/read\",\"Microsoft.Compute/sshPublicKeys/write\"\ + ,\"Microsoft.Compute/sshPublicKeys/*/generateKeyPair/action\",\"Microsoft.Compute/virtualMachines/extensions/read\"\ + ,\"Microsoft.Compute/virtualMachines/extensions/delete\",\"Microsoft.Compute/disks/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/blobServices/containers/blobs/read\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2022-10-04T17:14:14.5212968Z\",\"\ + updatedOn\":\"2023-06-05T15:10:13.6646668Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7b0c7e81-271f-4c71-90bf-e30bdfdbc2f7\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7b0c7e81-271f-4c71-90bf-e30bdfdbc2f7\"\ + },{\"properties\":{\"roleName\":\"Azure Traffic Controller Configuration Manager\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Allows access to traffic controller\ + \ resource. Also allows all confiuration Updates on traffic controller\",\"\ + assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ServiceNetworking/trafficControllers/read\"\ + ,\"Microsoft.ServiceNetworking/trafficControllers/write\",\"Microsoft.ServiceNetworking/trafficControllers/delete\"\ + ,\"Microsoft.ServiceNetworking/trafficControllers/frontends/read\",\"Microsoft.ServiceNetworking/trafficControllers/frontends/write\"\ + ,\"Microsoft.ServiceNetworking/trafficControllers/frontends/delete\",\"Microsoft.ServiceNetworking/trafficControllers/associations/read\"\ + ,\"Microsoft.ServiceNetworking/trafficControllers/associations/write\",\"\ + Microsoft.ServiceNetworking/trafficControllers/associations/delete\",\"Microsoft.Resources/subscriptions/resourcegroups/deployments/read\"\ + ,\"Microsoft.Resources/subscriptions/resourcegroups/deployments/write\",\"\ + Microsoft.Resources/subscriptions/resourcegroups/deployments/operations/read\"\ + ,\"Microsoft.Resources/subscriptions/resourcegroups/deployments/operationstatuses/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.ServiceNetworking/trafficControllers/serviceRoutingConfigurations/read\"\ + ,\"Microsoft.ServiceNetworking/trafficControllers/serviceRoutingConfigurations/write\"\ + ,\"Microsoft.ServiceNetworking/trafficControllers/serviceRoutingConfigurations/delete\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2022-10-06T03:15:51.8980834Z\",\"\ + updatedOn\":\"2022-10-28T02:07:33.9587792Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fbc52c3f-28ad-4303-a892-8a056630b8f1\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"fbc52c3f-28ad-4303-a892-8a056630b8f1\"\ + },{\"properties\":{\"roleName\":\"FHIR SMART User\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Role allows user to access FHIR Service according to SMART\ + \ on FHIR specification\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.HealthcareApis/services/fhir/resources/read\"\ + ,\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/read\",\"Microsoft.HealthcareApis/services/fhir/resources/smart/action\"\ + ,\"Microsoft.HealthcareApis/workspaces/fhirservices/resources/smart/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2022-10-26T17:20:25.4418773Z\",\"\ + updatedOn\":\"2022-12-07T20:30:43.3899302Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4ba50f17-9666-485c-a643-ff00808643f0\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"4ba50f17-9666-485c-a643-ff00808643f0\"\ + },{\"properties\":{\"roleName\":\"Cognitive Services OpenAI Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Full access including the ability\ + \ to fine-tune, deploy and generate text\",\"assignableScopes\":[\"/\"],\"\ + permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\",\"Microsoft.Authorization/roleAssignments/read\"\ + ,\"Microsoft.Authorization/roleDefinitions/read\"],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.CognitiveServices/accounts/OpenAI/*\"],\"notDataActions\":[]}],\"\ + createdOn\":\"2022-10-26T22:25:33.3012125Z\",\"updatedOn\":\"2022-10-26T22:25:33.3012125Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a001fd3d-188f-4b5d-821b-7da978bf7442\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a001fd3d-188f-4b5d-821b-7da978bf7442\"\ + },{\"properties\":{\"roleName\":\"Cognitive Services OpenAI User\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Ability to view files, models, deployments.\ + \ Readers can't make any changes They can inference\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.CognitiveServices/*/read\"\ + ,\"Microsoft.Authorization/roleAssignments/read\",\"Microsoft.Authorization/roleDefinitions/read\"\ + ],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveServices/accounts/OpenAI/*/read\"\ + ,\"Microsoft.CognitiveServices/accounts/OpenAI/engines/completions/action\"\ + ,\"Microsoft.CognitiveServices/accounts/OpenAI/engines/search/action\",\"\ + Microsoft.CognitiveServices/accounts/OpenAI/engines/generate/action\",\"Microsoft.CognitiveServices/accounts/OpenAI/engines/completions/write\"\ + ,\"Microsoft.CognitiveServices/accounts/OpenAI/deployments/search/action\"\ + ,\"Microsoft.CognitiveServices/accounts/OpenAI/deployments/completions/action\"\ + ,\"Microsoft.CognitiveServices/accounts/OpenAI/deployments/chat/completions/action\"\ + ,\"Microsoft.CognitiveServices/accounts/OpenAI/deployments/extensions/chat/completions/action\"\ + ,\"Microsoft.CognitiveServices/accounts/OpenAI/deployments/embeddings/action\"\ + ,\"Microsoft.CognitiveServices/accounts/OpenAI/deployments/completions/write\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2022-10-26T22:25:33.3012125Z\",\"\ + updatedOn\":\"2023-05-30T15:09:07.5819384Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5e0bd9bd-7b93-4f28-af87-19fc36ad61bd\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5e0bd9bd-7b93-4f28-af87-19fc36ad61bd\"\ + },{\"properties\":{\"roleName\":\"Impact Reporter\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Allows access to create/report, read and delete impacts\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Impact/WorkloadImpacts/*\"\ + ,\"Microsoft.Impact/ImpactCategories/read\"],\"notActions\":[],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2022-10-27T22:34:10.0140145Z\"\ + ,\"updatedOn\":\"2022-11-14T16:02:29.4536312Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36e80216-a7e8-4f42-a7e1-f12c98cbaf8a\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"36e80216-a7e8-4f42-a7e1-f12c98cbaf8a\"\ + },{\"properties\":{\"roleName\":\"Impact Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Allows read-only access to reported impacts and impact\ + \ categories\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Impact/WorkloadImpacts/read\",\"Microsoft.Impact/ImpactCategories/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2022-10-27T22:49:23.8706555Z\",\"updatedOn\":\"2022-11-14T16:02:29.4536312Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/68ff5d27-c7f5-4fa9-a21c-785d0df7bd9e\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"68ff5d27-c7f5-4fa9-a21c-785d0df7bd9e\"\ + },{\"properties\":{\"roleName\":\"Azure Kubernetes Service Cluster Monitoring\ + \ User\",\"type\":\"BuiltInRole\",\"description\":\"List cluster monitoring\ + \ user credential action.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"Microsoft.ContainerService/managedClusters/listClusterMonitoringUserCredential/action\"\ + ,\"Microsoft.ContainerService/managedClusters/read\"],\"notActions\":[],\"\ + dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-11-14T16:02:29.4380066Z\"\ + ,\"updatedOn\":\"2023-02-06T16:01:22.3399796Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1afdec4b-e479-420e-99e7-f82237c7c5e6\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1afdec4b-e479-420e-99e7-f82237c7c5e6\"\ + },{\"properties\":{\"roleName\":\"ContainerApp Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"View all containerapp resources, but does not allow you\ + \ to make any changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"Microsoft.App/containerApps/*/read\",\"Microsoft.App/containerApps/read\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Insights/alertRules/*\",\"\ + Microsoft.Resources/deployments/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2022-11-14T16:02:29.4380066Z\",\"updatedOn\":\"2023-01-02T16:08:35.1119461Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ad2dd5fb-cd4b-4fd4-a9b6-4fed3630980b\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ad2dd5fb-cd4b-4fd4-a9b6-4fed3630980b\"\ + },{\"properties\":{\"roleName\":\"Azure Connected Machine Resource Manager\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Custom Role for AzureStackHCI\ + \ RP to manage hybrid compute machines and hybrid connectivity endpoints in\ + \ a resource group\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.HybridConnectivity/endpoints/read\",\"Microsoft.HybridConnectivity/endpoints/write\"\ + ,\"Microsoft.HybridConnectivity/endpoints/serviceConfigurations/read\",\"\ + Microsoft.HybridConnectivity/endpoints/serviceConfigurations/write\",\"Microsoft.HybridCompute/machines/read\"\ + ,\"Microsoft.HybridCompute/machines/write\",\"Microsoft.HybridCompute/machines/delete\"\ + ,\"Microsoft.HybridCompute/machines/extensions/read\",\"Microsoft.HybridCompute/machines/extensions/write\"\ + ,\"Microsoft.HybridCompute/machines/extensions/delete\",\"Microsoft.HybridCompute/*/read\"\ + ,\"Microsoft.HybridCompute/machines/UpgradeExtensions/action\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2022-11-15T16:12:10.4398106Z\"\ + ,\"updatedOn\":\"2023-05-11T10:59:29.3241225Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f5819b54-e033-4d82-ac66-4fec3cbf3f4c\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f5819b54-e033-4d82-ac66-4fec3cbf3f4c\"\ + },{\"properties\":{\"roleName\":\"SqlDb Migration Role\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Role for SqlDb migration\",\"assignableScopes\":[\"/\"\ + ],\"permissions\":[{\"actions\":[\"Microsoft.Sql/servers/read\",\"Microsoft.Sql/servers/write\"\ + ,\"Microsoft.Sql/servers/databases/read\",\"Microsoft.Sql/servers/databases/write\"\ + ,\"Microsoft.Sql/servers/databases/delete\",\"Microsoft.DataMigration/locations/operationResults/read\"\ + ,\"Microsoft.DataMigration/locations/operationStatuses/read\",\"Microsoft.DataMigration/locations/sqlMigrationServiceOperationResults/read\"\ + ,\"Microsoft.DataMigration/databaseMigrations/write\",\"Microsoft.DataMigration/databaseMigrations/read\"\ + ,\"Microsoft.DataMigration/databaseMigrations/delete\",\"Microsoft.DataMigration/databaseMigrations/cancel/action\"\ + ,\"Microsoft.DataMigration/databaseMigrations/cutover/action\",\"Microsoft.DataMigration/sqlMigrationServices/write\"\ + ,\"Microsoft.DataMigration/sqlMigrationServices/delete\",\"Microsoft.DataMigration/sqlMigrationServices/read\"\ + ,\"Microsoft.DataMigration/sqlMigrationServices/listAuthKeys/action\",\"Microsoft.DataMigration/sqlMigrationServices/regenerateAuthKeys/action\"\ + ,\"Microsoft.DataMigration/sqlMigrationServices/deleteNode/action\",\"Microsoft.DataMigration/sqlMigrationServices/listMonitoringData/action\"\ + ,\"Microsoft.DataMigration/sqlMigrationServices/listMigrations/read\",\"Microsoft.DataMigration/sqlMigrationServices/MonitoringData/read\"\ + ,\"Microsoft.DataMigration/register/action\",\"Microsoft.DataMigration/operations/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2022-12-07T23:03:17.2201214Z\",\"updatedOn\":\"2023-02-20T16:07:58.6344876Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/189207d4-bb67-4208-a635-b06afe8b2c57\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"189207d4-bb67-4208-a635-b06afe8b2c57\"\ + },{\"properties\":{\"roleName\":\"Bayer Ag Powered Services GDU Solution\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Provide access to GDU Solution\ + \ by Bayer Ag Powered Services\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/read\"\ + ,\"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\"\ + ,\"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insightAttachments/*\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2023-01-12T10:08:47.0099993Z\",\"\ + updatedOn\":\"2023-03-17T11:29:51.5964926Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c4bc862a-3b64-4a35-a021-a380c159b042\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c4bc862a-3b64-4a35-a021-a380c159b042\"\ + },{\"properties\":{\"roleName\":\"Bayer Ag Powered Services Imagery Solution\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Provide access to Imagery Solution\ + \ by Bayer Ag Powered Services\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/read\"\ + ,\"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/write\",\"Microsoft.AgFoodPlatform/farmBeats/ingestionJobs/satelliteDataIngestionJobs/*\"\ + ,\"Microsoft.AgFoodPlatform/farmBeats/scenes/*\",\"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\"\ + ,\"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insightAttachments/*\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2023-01-12T10:08:47.0099993Z\",\"\ + updatedOn\":\"2023-03-17T11:29:51.7428446Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ef29765d-0d37-4119-a4f8-f9f9902c9588\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ef29765d-0d37-4119-a4f8-f9f9902c9588\"\ + },{\"properties\":{\"roleName\":\"Azure Center for SAP solutions Service role\ + \ for management\",\"type\":\"BuiltInRole\",\"description\":\"This role has\ + \ permissions that the user assigned managed identity must have to enable\ + \ registration for the existing systems.\",\"assignableScopes\":[\"/\"],\"\ + permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2023-01-13T09:08:35.1961741Z\",\"updatedOn\":\"2023-02-02T07:25:11.5651483Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0105a6b0-4bb9-43d2-982a-12806f9faddb\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0105a6b0-4bb9-43d2-982a-12806f9faddb\"\ + },{\"properties\":{\"roleName\":\"Azure Center for SAP solutions Management\ + \ role\",\"type\":\"BuiltInRole\",\"description\":\"This role has permissions\ + \ which allow users to register existing systems, view and manage systems.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-01-13T09:08:35.1961741Z\"\ + ,\"updatedOn\":\"2023-02-02T07:25:11.5651483Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6d949e1d-41e2-46e3-8920-c6e4f31a8310\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6d949e1d-41e2-46e3-8920-c6e4f31a8310\"\ + },{\"properties\":{\"roleName\":\"Kubernetes Agentless Operator\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Grants Microsoft Defender for Cloud access\ + \ to Azure Kubernetes Services\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings/write\"\ + ,\"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings/read\"\ + ,\"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings/delete\"\ + ,\"Microsoft.ContainerService/managedClusters/read\",\"Microsoft.Features/features/read\"\ + ,\"Microsoft.Features/providers/features/read\",\"Microsoft.Features/providers/features/register/action\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2023-01-13T13:11:09.1105477Z\",\"updatedOn\":\"2023-04-17T10:59:40.1362622Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d5a2ae44-610b-4500-93be-660a0c5f5ca6\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d5a2ae44-610b-4500-93be-660a0c5f5ca6\"\ + },{\"properties\":{\"roleName\":\"Azure Usage Billing Data Sender\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Azure Usage Billing shared BuiltIn role\ + \ to be used for all Customer Account Authentication\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.UsageBilling/accounts/inputs/send/action\"],\"notDataActions\"\ + :[]}],\"createdOn\":\"2023-01-13T20:45:56.3071212Z\",\"updatedOn\":\"2023-01-26T19:26:37.6422441Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f0310ce6-e953-4cf8-b892-fb1c87eaf7f6\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"f0310ce6-e953-4cf8-b892-fb1c87eaf7f6\"\ + },{\"properties\":{\"roleName\":\"SqlMI Migration Role\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Role for SqlMI migration\",\"assignableScopes\":[\"/\"\ + ],\"permissions\":[{\"actions\":[\"Microsoft.Sql/managedInstances/read\",\"\ + Microsoft.Sql/managedInstances/write\",\"Microsoft.Sql/managedInstances/databases/read\"\ + ,\"Microsoft.Sql/managedInstances/databases/write\",\"Microsoft.Sql/managedInstances/databases/delete\"\ + ,\"Microsoft.Sql/managedInstances/metrics/read\",\"Microsoft.DataMigration/locations/operationResults/read\"\ + ,\"Microsoft.DataMigration/locations/operationStatuses/read\",\"Microsoft.DataMigration/locations/sqlMigrationServiceOperationResults/read\"\ + ,\"Microsoft.DataMigration/databaseMigrations/write\",\"Microsoft.DataMigration/databaseMigrations/read\"\ + ,\"Microsoft.DataMigration/databaseMigrations/delete\",\"Microsoft.DataMigration/databaseMigrations/cancel/action\"\ + ,\"Microsoft.DataMigration/databaseMigrations/cutover/action\",\"Microsoft.DataMigration/sqlMigrationServices/write\"\ + ,\"Microsoft.DataMigration/sqlMigrationServices/delete\",\"Microsoft.DataMigration/sqlMigrationServices/read\"\ + ,\"Microsoft.DataMigration/sqlMigrationServices/listAuthKeys/action\",\"Microsoft.DataMigration/sqlMigrationServices/regenerateAuthKeys/action\"\ + ,\"Microsoft.DataMigration/sqlMigrationServices/deleteNode/action\",\"Microsoft.DataMigration/sqlMigrationServices/listMonitoringData/action\"\ + ,\"Microsoft.DataMigration/sqlMigrationServices/listMigrations/read\",\"Microsoft.DataMigration/sqlMigrationServices/MonitoringData/read\"\ + ,\"Microsoft.DataMigration/register/action\",\"Microsoft.DataMigration/operations/read\"\ + ,\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/listkeys/action\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/read\",\"Microsoft.Storage/storageAccounts/blobServices/write\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/read\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-01-31T16:13:11.2824316Z\"\ + ,\"updatedOn\":\"2023-02-20T16:07:58.3295951Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1d335eef-eee1-47fe-a9e0-53214eba8872\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1d335eef-eee1-47fe-a9e0-53214eba8872\"\ + },{\"properties\":{\"roleName\":\"Bayer Ag Powered Services CWUM Solution\ + \ User Role\",\"type\":\"BuiltInRole\",\"description\":\"Provide access to\ + \ CWUM Solution by Bayer Ag Powered Services\",\"assignableScopes\":[\"/\"\ + ],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/read\"\ + ,\"Microsoft.AgFoodPlatform/farmBeats/parties/boundaries/write\",\"Microsoft.AgFoodPlatform/farmBeats/ingestionJobs/satelliteDataIngestionJobs/*\"\ + ,\"Microsoft.AgFoodPlatform/farmBeats/scenes/*\",\"Microsoft.AgFoodPlatform/farmBeats/parties/models/resourceTypes/resources/insights/*\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2023-01-31T16:13:11.3570667Z\",\"\ + updatedOn\":\"2023-02-24T15:42:49.5085315Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a9b99099-ead7-47db-8fcf-072597a61dfa\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a9b99099-ead7-47db-8fcf-072597a61dfa\"\ + },{\"properties\":{\"roleName\":\"SqlVM Migration Role\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Role for SqlVM migration\",\"assignableScopes\":[\"/\"\ + ],\"permissions\":[{\"actions\":[\"Microsoft.DataMigration/locations/operationResults/read\"\ + ,\"Microsoft.DataMigration/locations/operationStatuses/read\",\"Microsoft.DataMigration/locations/sqlMigrationServiceOperationResults/read\"\ + ,\"Microsoft.DataMigration/databaseMigrations/write\",\"Microsoft.DataMigration/databaseMigrations/read\"\ + ,\"Microsoft.DataMigration/databaseMigrations/delete\",\"Microsoft.DataMigration/databaseMigrations/cancel/action\"\ + ,\"Microsoft.DataMigration/databaseMigrations/cutover/action\",\"Microsoft.DataMigration/sqlMigrationServices/write\"\ + ,\"Microsoft.DataMigration/sqlMigrationServices/delete\",\"Microsoft.DataMigration/sqlMigrationServices/read\"\ + ,\"Microsoft.DataMigration/sqlMigrationServices/listAuthKeys/action\",\"Microsoft.DataMigration/sqlMigrationServices/regenerateAuthKeys/action\"\ + ,\"Microsoft.DataMigration/sqlMigrationServices/deleteNode/action\",\"Microsoft.DataMigration/sqlMigrationServices/listMonitoringData/action\"\ + ,\"Microsoft.DataMigration/sqlMigrationServices/listMigrations/read\",\"Microsoft.DataMigration/sqlMigrationServices/MonitoringData/read\"\ + ,\"Microsoft.DataMigration/register/action\",\"Microsoft.DataMigration/operations/read\"\ + ,\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/listkeys/action\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/read\",\"Microsoft.Storage/storageAccounts/blobServices/write\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.SqlVirtualMachine/sqlVirtualMachines/read\"\ + ,\"Microsoft.SqlVirtualMachine/sqlVirtualMachines/write\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-01-31T16:13:11.3580681Z\"\ + ,\"updatedOn\":\"2023-02-20T16:07:58.6444899Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ae8036db-e102-405b-a1b9-bae082ea436d\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ae8036db-e102-405b-a1b9-bae082ea436d\"\ + },{\"properties\":{\"roleName\":\"Azure Front Door Domain Contributor\",\"\ + type\":\"BuiltInRole\",\"description\":\"Can manage Azure Front Door domains,\ + \ but can't grant access to other users.\",\"assignableScopes\":[\"/\"],\"\ + permissions\":[{\"actions\":[\"Microsoft.Cdn/operationresults/profileresults/customdomainresults/read\"\ + ,\"Microsoft.Cdn/profiles/customdomains/read\",\"Microsoft.Cdn/profiles/customdomains/write\"\ + ,\"Microsoft.Cdn/profiles/customdomains/delete\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2023-02-02T15:30:03.7531182Z\",\"updatedOn\":\"2023-02-02T15:30:03.7531182Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0ab34830-df19-4f8c-b84e-aa85b8afa6e8\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0ab34830-df19-4f8c-b84e-aa85b8afa6e8\"\ + },{\"properties\":{\"roleName\":\"Azure Front Door Secret Reader\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Can view Azure Front Door secrets, but\ + \ can't make changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"Microsoft.Cdn/operationresults/profileresults/secretresults/read\"\ + ,\"Microsoft.Cdn/profiles/secrets/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2023-02-02T15:30:03.7541192Z\",\"updatedOn\":\"2023-02-02T15:30:03.7541192Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0db238c4-885e-4c4f-a933-aa2cef684fca\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0db238c4-885e-4c4f-a933-aa2cef684fca\"\ + },{\"properties\":{\"roleName\":\"Azure Front Door Secret Contributor\",\"\ + type\":\"BuiltInRole\",\"description\":\"Can manage Azure Front Door secrets,\ + \ but can't grant access to other users.\",\"assignableScopes\":[\"/\"],\"\ + permissions\":[{\"actions\":[\"Microsoft.Cdn/operationresults/profileresults/secretresults/read\"\ + ,\"Microsoft.Cdn/profiles/secrets/read\",\"Microsoft.Cdn/profiles/secrets/write\"\ + ,\"Microsoft.Cdn/profiles/secrets/delete\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2023-02-02T15:30:03.7531182Z\",\"updatedOn\":\"2023-02-02T15:30:03.7531182Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3f2eb865-5811-4578-b90a-6fc6fa0df8e5\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3f2eb865-5811-4578-b90a-6fc6fa0df8e5\"\ + },{\"properties\":{\"roleName\":\"Azure Front Door Domain Reader\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Can view Azure Front Door domains, but\ + \ can't make changes.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"Microsoft.Cdn/operationresults/profileresults/customdomainresults/read\"\ + ,\"Microsoft.Cdn/profiles/customdomains/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2023-02-02T15:30:03.7551197Z\",\"updatedOn\":\"2023-02-02T15:30:03.7551197Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0f99d363-226e-4dca-9920-b807cf8e1a5f\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0f99d363-226e-4dca-9920-b807cf8e1a5f\"\ + },{\"properties\":{\"roleName\":\"Azure Stack HCI registration role\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Custom Azure role to allow subscription-level\ + \ access to register Azure Stack HCI\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.AzureStackHCI/register/action\",\"Microsoft.AzureStackHCI/Unregister/Action\"\ + ,\"Microsoft.AzureStackHCI/clusters/*\",\"Microsoft.HybridCompute/register/action\"\ + ,\"Microsoft.GuestConfiguration/register/action\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/write\",\"Microsoft.Resources/subscriptions/resourceGroups/delete\"\ + ,\"Microsoft.HybridConnectivity/register/action\"],\"notActions\":[],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2023-02-03T05:08:48.3968454Z\"\ + ,\"updatedOn\":\"2023-03-28T15:12:28.2573211Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bda0d508-adf1-4af0-9c28-88919fc3ae06\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bda0d508-adf1-4af0-9c28-88919fc3ae06\"\ + },{\"properties\":{\"roleName\":\"MySQL Backup And Export Operator\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Grants full access to manage backup and\ + \ export resources\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.DBforMySQL/flexibleServers/validateBackup/action\",\"Microsoft.DBforMySQL/flexibleServers/backupAndExport/action\"\ + ,\"Microsoft.DBforMySQL/locations/operationResults/read\",\"Microsoft.DBforMySQL/locations/azureAsyncOperation/read\"\ + ,\"Microsoft.Resources/subscriptions/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2023-02-03T06:09:26.5657063Z\",\"updatedOn\":\"2023-05-12T10:55:29.6654289Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d18ad5f3-1baf-4119-b49b-d944edb1f9d0\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d18ad5f3-1baf-4119-b49b-d944edb1f9d0\"\ + },{\"properties\":{\"roleName\":\"LocalNGFirewallAdministrator role\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Allows user to create, modify, describe,\ + \ or delete NGFirewalls.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"PaloAltoNetworks.Cloudngfw/firewalls/*\",\"PaloAltoNetworks.Cloudngfw/localRulestacks/read\"\ + ,\"PaloAltoNetworks.Cloudngfw/globalRulestacks/read\",\"PaloAltoNetworks.Cloudngfw/Locations/operationStatuses/read\"\ + ,\"Microsoft.OperationalInsights/workspaces/write\",\"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\ + ,\"Microsoft.OperationalInsights/workspaces/read\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Insights/alertRules/*\",\"Microsoft.Insights/metrics/read\",\"\ + Microsoft.Insights/metricDefinitions/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Support/*\",\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + ,\"Microsoft.Network/publicIPAddresses/write\",\"Microsoft.Network/publicIPAddresses/read\"\ + ,\"Microsoft.Network/publicIPAddresses/join/action\",\"Microsoft.Network/networkVirtualAppliances/read\"\ + ,\"Microsoft.Network/networkVirtualAppliances/write\",\"Microsoft.Network/networkVirtualAppliances/delete\"\ + ,\"Microsoft.Network/virtualHubs/read\",\"Microsoft.Network/virtualWans/read\"\ + ,\"Microsoft.Network/virtualWans/virtualHubs/read\",\"Microsoft.Network/networkSecurityGroups/read\"\ + ,\"Microsoft.Network/networkSecurityGroups/join/action\"],\"notActions\":[],\"\ + dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-02-03T11:42:56.4098652Z\"\ + ,\"updatedOn\":\"2023-03-13T15:13:22.9170402Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/a8835c7d-b5cb-47fa-b6f0-65ea10ce07a2\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"a8835c7d-b5cb-47fa-b6f0-65ea10ce07a2\"\ + },{\"properties\":{\"roleName\":\"LocalRulestacksAdministrator role\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Allows users to create, modify, describe,\ + \ or delete Rulestacks.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"PaloAltoNetworks.Cloudngfw/localRulestacks/*\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.ResourceHealth/availabilityStatuses/read\"\ + ,\"Microsoft.Resources/deployments/*\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.Support/*\"],\"notActions\":[],\"dataActions\":[],\"notDataActions\"\ + :[]}],\"createdOn\":\"2023-02-03T11:42:56.4108678Z\",\"updatedOn\":\"2023-02-20T16:07:58.3315958Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/bfc3b73d-c6ff-45eb-9a5f-40298295bf20\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"bfc3b73d-c6ff-45eb-9a5f-40298295bf20\"\ + },{\"properties\":{\"roleName\":\"Azure Extension for SQL Server Deployment\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Microsoft.AzureArcData service\ + \ role to enable deployment of Azure Extension for SQL Server\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/deployments/write\"\ + ,\"Microsoft.HybridCompute/machines/extensions/write\"],\"notActions\":[],\"\ + dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-03-09T19:23:30.8734404Z\"\ + ,\"updatedOn\":\"2023-03-15T22:04:09.9905367Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7392c568-9289-4bde-aaaa-b7131215889d\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7392c568-9289-4bde-aaaa-b7131215889d\"\ + },{\"properties\":{\"roleName\":\"Azure Maps Data Read and Batch Role\",\"\ + type\":\"BuiltInRole\",\"description\":\"This role can be used to assign read\ + \ and batch actions on Azure Maps.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Maps/accounts/services/*/read\"\ + ,\"Microsoft.Maps/accounts/services/batch/action\"],\"notDataActions\":[]}],\"\ + createdOn\":\"2023-03-15T22:04:09.9905367Z\",\"updatedOn\":\"2023-05-16T15:12:18.5723729Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d6470a16-71bd-43ab-86b3-6f3a73f4e787\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d6470a16-71bd-43ab-86b3-6f3a73f4e787\"\ + },{\"properties\":{\"roleName\":\"API Management Service Workspace API Product\ + \ Manager\",\"type\":\"BuiltInRole\",\"description\":\"Has the same access\ + \ as API Management Service Workspace API Developer as well as read access\ + \ to users and write access to allow assigning users to groups. This role\ + \ should be assigned on the service scope.\",\"assignableScopes\":[\"/\"],\"\ + permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/users/read\"\ + ,\"Microsoft.ApiManagement/service/tags/read\",\"Microsoft.ApiManagement/service/tags/apiLinks/*\"\ + ,\"Microsoft.ApiManagement/service/tags/operationLinks/*\",\"Microsoft.ApiManagement/service/tags/productLinks/*\"\ + ,\"Microsoft.ApiManagement/service/products/read\",\"Microsoft.ApiManagement/service/products/apiLinks/*\"\ + ,\"Microsoft.ApiManagement/service/groups/users/*\",\"Microsoft.ApiManagement/service/read\"\ + ,\"Microsoft.Authorization/*/read\"],\"notActions\":[],\"dataActions\":[],\"\ + notDataActions\":[]}],\"createdOn\":\"2023-03-21T15:13:44.4020114Z\",\"updatedOn\"\ + :\"2023-03-21T15:13:44.4020114Z\",\"createdBy\":null,\"updatedBy\":null},\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d59a3e9c-6d52-4a5a-aeed-6bf3cf0e31da\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"d59a3e9c-6d52-4a5a-aeed-6bf3cf0e31da\"\ + },{\"properties\":{\"roleName\":\"API Management Workspace API Developer\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Has read access to entities in\ + \ the workspace and read and write access to entities for editing APIs. This\ + \ role should be assigned on the workspace scope.\",\"assignableScopes\":[\"\ + /\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/workspaces/*/read\"\ + ,\"Microsoft.ApiManagement/service/workspaces/apis/*\",\"Microsoft.ApiManagement/service/workspaces/apiVersionSets/*\"\ + ,\"Microsoft.ApiManagement/service/workspaces/policies/*\",\"Microsoft.ApiManagement/service/workspaces/schemas/*\"\ + ,\"Microsoft.ApiManagement/service/workspaces/products/*\",\"Microsoft.ApiManagement/service/workspaces/policyFragments/*\"\ + ,\"Microsoft.ApiManagement/service/workspaces/namedValues/*\",\"Microsoft.ApiManagement/service/workspaces/tags/*\"\ + ,\"Microsoft.Authorization/*/read\"],\"notActions\":[],\"dataActions\":[],\"\ + notDataActions\":[]}],\"createdOn\":\"2023-03-21T15:13:44.4020114Z\",\"updatedOn\"\ + :\"2023-03-21T15:13:44.4020114Z\",\"createdBy\":null,\"updatedBy\":null},\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/56328988-075d-4c6a-8766-d93edd6725b6\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"56328988-075d-4c6a-8766-d93edd6725b6\"\ + },{\"properties\":{\"roleName\":\"API Management Workspace Reader\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Has read-only access to entities in the\ + \ workspace. This role should be assigned on the workspace scope.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/workspaces/*/read\"\ + ,\"Microsoft.Authorization/*/read\"],\"notActions\":[],\"dataActions\":[],\"\ + notDataActions\":[]}],\"createdOn\":\"2023-03-21T15:13:44.4040114Z\",\"updatedOn\"\ + :\"2023-03-21T15:13:44.4040114Z\",\"createdBy\":null,\"updatedBy\":null},\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ef1c2c96-4a77-49e8-b9a4-6179fe1d2fd2\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ef1c2c96-4a77-49e8-b9a4-6179fe1d2fd2\"\ + },{\"properties\":{\"roleName\":\"API Management Workspace API Product Manager\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Has read access to entities in\ + \ the workspace and read and write access to entities for publishing APIs.\ + \ This role should be assigned on the workspace scope.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/workspaces/*/read\"\ + ,\"Microsoft.ApiManagement/service/workspaces/products/*\",\"Microsoft.ApiManagement/service/workspaces/subscriptions/*\"\ + ,\"Microsoft.ApiManagement/service/workspaces/groups/*\",\"Microsoft.ApiManagement/service/workspaces/tags/*\"\ + ,\"Microsoft.ApiManagement/service/workspaces/notifications/*\",\"Microsoft.Authorization/*/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2023-03-21T15:13:44.4020114Z\",\"updatedOn\":\"2023-03-21T15:13:44.4020114Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/73c2c328-d004-4c5e-938c-35c6f5679a1f\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"73c2c328-d004-4c5e-938c-35c6f5679a1f\"\ + },{\"properties\":{\"roleName\":\"API Management Service Workspace API Developer\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Has read access to tags and products\ + \ and write access to allow: assigning APIs to products, assigning tags to\ + \ products and APIs. This role should be assigned on the service scope.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.ApiManagement/service/tags/read\"\ + ,\"Microsoft.ApiManagement/service/tags/apiLinks/*\",\"Microsoft.ApiManagement/service/tags/operationLinks/*\"\ + ,\"Microsoft.ApiManagement/service/tags/productLinks/*\",\"Microsoft.ApiManagement/service/products/read\"\ + ,\"Microsoft.ApiManagement/service/products/apiLinks/*\",\"Microsoft.ApiManagement/service/read\"\ + ,\"Microsoft.Authorization/*/read\"],\"notActions\":[],\"dataActions\":[],\"\ + notDataActions\":[]}],\"createdOn\":\"2023-03-21T15:13:44.4040114Z\",\"updatedOn\"\ + :\"2023-03-21T15:13:44.4040114Z\",\"createdBy\":null,\"updatedBy\":null},\"\ + id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9565a273-41b9-4368-97d2-aeb0c976a9b3\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9565a273-41b9-4368-97d2-aeb0c976a9b3\"\ + },{\"properties\":{\"roleName\":\"API Management Workspace Contributor\",\"\ + type\":\"BuiltInRole\",\"description\":\"Can manage the workspace and view,\ + \ but not modify its members. This role should be assigned on the workspace\ + \ scope.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"\ + Microsoft.ApiManagement/service/workspaces/*\",\"Microsoft.Authorization/*/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2023-03-21T15:13:44.4020114Z\",\"updatedOn\":\"2023-03-21T15:13:44.4020114Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0c34c906-8d99-4cb7-8bb7-33f5b0a1a799\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0c34c906-8d99-4cb7-8bb7-33f5b0a1a799\"\ + },{\"properties\":{\"roleName\":\"Storage File Data Privileged Reader\",\"\ + type\":\"BuiltInRole\",\"description\":\"Customer has read access on Azure\ + \ Storage file shares.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\"\ + ,\"Microsoft.Storage/storageAccounts/fileServices/readFileBackupSemantics/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2023-03-23T20:33:57.1067324Z\",\"\ + updatedOn\":\"2023-04-06T19:23:16.2936719Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b8eda974-7b85-4f76-af95-65846b26df6d\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"b8eda974-7b85-4f76-af95-65846b26df6d\"\ + },{\"properties\":{\"roleName\":\"Storage File Data Privileged Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Customer has read, write, delete\ + \ and modify NTFS permission access on Azure Storage file shares.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\":[],\"dataActions\"\ + :[\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/read\"\ + ,\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/write\"\ + ,\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/delete\"\ + ,\"Microsoft.Storage/storageAccounts/fileServices/fileshares/files/modifypermissions/action\"\ + ,\"Microsoft.Storage/storageAccounts/fileServices/readFileBackupSemantics/action\"\ + ,\"Microsoft.Storage/storageAccounts/fileServices/writeFileBackupSemantics/action\"\ + ],\"notDataActions\":[]}],\"createdOn\":\"2023-03-23T20:49:03.5905581Z\",\"\ + updatedOn\":\"2023-04-06T19:23:16.2936719Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/69566ab7-960f-475b-8e7c-b3118f30c6bd\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"69566ab7-960f-475b-8e7c-b3118f30c6bd\"\ + },{\"properties\":{\"roleName\":\"Windows365NetworkUser\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Read the virtual network informations, and join the virtual\ + \ network to virtual machine in another tenant. This role is used in Windows365\ + \ scenarios.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.Network/virtualNetworks/read\",\"Microsoft.Network/virtualNetworks/subnets/read\"\ + ,\"Microsoft.Network/virtualNetworks/usages/read\",\"Microsoft.Network/virtualNetworks/subnets/join/action\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2023-03-24T05:24:25.4408966Z\",\"updatedOn\":\"2023-04-17T15:14:52.1898675Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7eabc9a4-85f7-4f71-b8ab-75daaccc1033\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7eabc9a4-85f7-4f71-b8ab-75daaccc1033\"\ + },{\"properties\":{\"roleName\":\"Windows365SubscriptionReader\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Read subscriptions, images, azure firewalls.\ + \ This role is used in Windows365 scenarios.\",\"assignableScopes\":[\"/\"\ + ],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/read\"\ + ,\"Microsoft.Resources/subscriptions/operationresults/read\",\"Microsoft.Authorization/*/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2023-03-24T05:24:25.4408966Z\",\"updatedOn\":\"2023-03-24T05:24:25.4408966Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3d55a8f6-4133-418d-8051-facdb1735758\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"3d55a8f6-4133-418d-8051-facdb1735758\"\ + },{\"properties\":{\"roleName\":\"Windows365NetworkInterfaceContributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Create NICs and join it to virtual\ + \ machine in another tenant. This role is used in Windows365 scenarios.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourcegroups/read\"\ + ,\"Microsoft.Resources/deployments/read\",\"Microsoft.Resources/deployments/write\"\ + ,\"Microsoft.Resources/deployments/delete\",\"Microsoft.Resources/deployments/operations/read\"\ + ,\"Microsoft.Resources/deployments/operationstatuses/read\",\"Microsoft.Network/locations/operations/read\"\ + ,\"Microsoft.Network/locations/operationResults/read\",\"Microsoft.Network/locations/usages/read\"\ + ,\"Microsoft.Network/networkInterfaces/write\",\"Microsoft.Network/networkInterfaces/read\"\ + ,\"Microsoft.Network/networkInterfaces/delete\",\"Microsoft.Network/networkInterfaces/join/action\"\ + ,\"Microsoft.Network/networkInterfaces/effectiveNetworkSecurityGroups/action\"\ + ,\"Microsoft.Network/networkInterfaces/effectiveRouteTable/action\"],\"notActions\"\ + :[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-03-24T05:24:25.4408966Z\"\ + ,\"updatedOn\":\"2023-06-05T15:10:13.6656678Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/1f135831-5bbe-4924-9016-264044c00788\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"1f135831-5bbe-4924-9016-264044c00788\"\ + },{\"properties\":{\"roleName\":\"App Compliance Automation Reader\",\"type\"\ + :\"BuiltInRole\",\"description\":\"Read, download the reports objects and\ + \ related other resource objects.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[\"Microsoft.AppComplianceAutomation/*/read\",\"Microsoft.Storage/storageAccounts/read\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/read\",\"Microsoft.Storage/storageAccounts/blobServices/read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2023-04-13T05:31:14.1250456Z\",\"updatedOn\":\"2023-05-29T15:00:16.8171773Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ffc6bbe0-e443-4c3b-bf54-26581bb2f78e\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"ffc6bbe0-e443-4c3b-bf54-26581bb2f78e\"\ + },{\"properties\":{\"roleName\":\"App Compliance Automation Administrator\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Create, read, download, modify\ + \ and delete reports objects and related other resource objects.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AppComplianceAutomation/*\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/write\",\"Microsoft.Storage/storageAccounts/fileservices/write\"\ + ,\"Microsoft.Storage/storageAccounts/listKeys/action\",\"Microsoft.Storage/storageAccounts/write\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/generateUserDelegationKey/action\"\ + ,\"Microsoft.Storage/storageAccounts/read\",\"Microsoft.Storage/storageAccounts/blobServices/containers/read\"\ + ,\"Microsoft.Storage/storageAccounts/blobServices/containers/write\",\"Microsoft.Storage/storageAccounts/blobServices/read\"\ + ,\"Microsoft.PolicyInsights/policyStates/queryResults/action\",\"Microsoft.PolicyInsights/policyStates/triggerEvaluation/action\"\ + ,\"Microsoft.Resources/resources/read\",\"Microsoft.Resources/subscriptions/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Resources/subscriptions/resourceGroups/resources/read\"\ + ,\"Microsoft.Resources/subscriptions/resources/read\",\"Microsoft.Resources/subscriptions/resourceGroups/delete\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/write\",\"Microsoft.Resources/tags/read\"\ + ,\"Microsoft.Resources/deployments/validate/action\",\"Microsoft.Security/automations/read\"\ + ,\"Microsoft.Resources/deployments/write\",\"Microsoft.Security/automations/delete\"\ + ,\"Microsoft.Security/automations/write\",\"Microsoft.Security/register/action\"\ + ,\"Microsoft.Security/unregister/action\",\"*/read\"],\"notActions\":[],\"\ + dataActions\":[],\"notDataActions\":[]}],\"createdOn\":\"2023-04-13T05:31:14.1240456Z\"\ + ,\"updatedOn\":\"2023-05-25T04:53:49.9237054Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0f37683f-2463-46b6-9ce7-9b788b988ba2\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"0f37683f-2463-46b6-9ce7-9b788b988ba2\"\ + },{\"properties\":{\"roleName\":\"Azure Sphere Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Allows user read and write access to Azure Sphere resources.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AzureSphere/*\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/deployments/*\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/alertRules/*\"\ + ,\"Microsoft.Insights/DiagnosticSettings/*\",\"Microsoft.Insights/DiagnosticSettingsCategories/Read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2023-05-01T15:11:52.6370946Z\",\"updatedOn\":\"2023-05-05T22:39:42.6328063Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8b9dfcab-4b77-4632-a6df-94bd07820648\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"8b9dfcab-4b77-4632-a6df-94bd07820648\"\ + },{\"properties\":{\"roleName\":\"SaaS Hub Contributor\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"SaaS Hub contributor can manage SaaS Hub resource\",\"\ + assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.SaaSHub/cloudservices/read\",\"Microsoft.SaaSHub/cloudservices/write\"\ + ,\"Microsoft.SaaSHub/cloudservices/delete\"],\"notActions\":[],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2023-05-02T15:22:12.2506952Z\"\ + ,\"updatedOn\":\"2023-05-11T22:10:29.4809300Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e9b8712a-cbcf-4ea7-b0f7-e71b803401e6\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"e9b8712a-cbcf-4ea7-b0f7-e71b803401e6\"\ + },{\"properties\":{\"roleName\":\"Azure Sphere Reader\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Allows user to read Azure Sphere resources.\",\"assignableScopes\"\ + :[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.AzureSphere/*/read\",\"\ + Microsoft.AzureSphere/catalogs/countDevices/action\",\"Microsoft.AzureSphere/catalogs/listDeviceGroups/action\"\ + ,\"Microsoft.AzureSphere/catalogs/listDeviceInsights/action\",\"Microsoft.AzureSphere/catalogs/listDevices/action\"\ + ,\"Microsoft.AzureSphere/catalogs/listDeployments/action\",\"Microsoft.AzureSphere/catalogs/products/countDevices/action\"\ + ,\"Microsoft.AzureSphere/catalogs/products/deviceGroups/countDevices/action\"\ + ,\"Microsoft.AzureSphere/catalogs/certificates/retrieveCertChain/action\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Insights/DiagnosticSettings/Read\"],\"notActions\":[],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2023-05-05T22:39:42.1951056Z\"\ + ,\"updatedOn\":\"2023-05-11T22:10:28.3488114Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c8ae6279-5a0b-4cb2-b3f0-d4d62845742c\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"c8ae6279-5a0b-4cb2-b3f0-d4d62845742c\"\ + },{\"properties\":{\"roleName\":\"Azure Sphere Publisher\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Allows user to read and download Azure Sphere resources\ + \ and upload images.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\"\ + :[\"Microsoft.AzureSphere/*/read\",\"Microsoft.AzureSphere/catalogs/countDevices/action\"\ + ,\"Microsoft.AzureSphere/catalogs/listDeviceGroups/action\",\"Microsoft.AzureSphere/catalogs/listDeviceInsights/action\"\ + ,\"Microsoft.AzureSphere/catalogs/listDevices/action\",\"Microsoft.AzureSphere/catalogs/products/countDevices/action\"\ + ,\"Microsoft.AzureSphere/catalogs/products/deviceGroups/countDevices/action\"\ + ,\"Microsoft.AzureSphere/catalogs/certificates/retrieveProofOfPossessionNonce/action\"\ + ,\"Microsoft.AzureSphere/catalogs/certificates/retrieveCertChain/action\"\ + ,\"Microsoft.AzureSphere/catalogs/images/write\",\"Microsoft.Authorization/*/read\"\ + ,\"Microsoft.Resources/subscriptions/resourceGroups/read\",\"Microsoft.Insights/DiagnosticSettings/Read\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2023-05-05T22:39:42.8007514Z\",\"updatedOn\":\"2023-05-11T22:10:29.4809300Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/6d994134-994b-4a59-9974-f479f0b227fb\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"6d994134-994b-4a59-9974-f479f0b227fb\"\ + },{\"properties\":{\"roleName\":\"Cognitive Search Serverless Data Contributor\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Create, read, modify and delete\ + \ Cognitive Search serverless index schema and documents. This role is in\ + \ preview and subject to change.\",\"assignableScopes\":[\"/\"],\"permissions\"\ + :[{\"actions\":[],\"notActions\":[],\"dataActions\":[\"Microsoft.CognitiveSearch/indexes/schema/*\"\ + ,\"Microsoft.CognitiveSearch/indexes/documents/*\"],\"notDataActions\":[]}],\"\ + createdOn\":\"2023-05-15T15:01:02.7792616Z\",\"updatedOn\":\"2023-05-15T15:01:02.7792616Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/7ac06ca7-21ca-47e3-a67b-cbd6e6223baf\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"7ac06ca7-21ca-47e3-a67b-cbd6e6223baf\"\ + },{\"properties\":{\"roleName\":\"Cognitive Search Serverless Data Reader\"\ + ,\"type\":\"BuiltInRole\",\"description\":\"Read Cognitive Search serverless\ + \ index schema and documents. This role is in preview and subject to change.\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[],\"notActions\"\ + :[],\"dataActions\":[\"Microsoft.CognitiveSearch/indexes/schema/read\",\"\ + Microsoft.CognitiveSearch/indexes/documents/read\"],\"notDataActions\":[]}],\"\ + createdOn\":\"2023-05-15T15:01:02.7792616Z\",\"updatedOn\":\"2023-05-15T15:01:02.7792616Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/79b01272-bf9f-4f4c-9517-5506269cf524\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"79b01272-bf9f-4f4c-9517-5506269cf524\"\ + },{\"properties\":{\"roleName\":\"Community Owner Role\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Community Owner Role to access the resources of Microsoft.Mission\ + \ stored with RPSAAS.\",\"assignableScopes\":[\"/\"],\"permissions\":[{\"\ + actions\":[\"Microsoft.Mission/register/action\",\"Microsoft.Mission/unregister/action\"\ + ,\"Microsoft.Mission/Locations/OperationStatuses/read\",\"Microsoft.Mission/Locations/OperationStatuses/write\"\ + ,\"Microsoft.Mission/Operations/read\",\"Microsoft.Mission/catalogs/read\"\ + ,\"Microsoft.Mission/catalogs/write\",\"Microsoft.Mission/catalogs/delete\"\ + ,\"Microsoft.Mission/communities/read\",\"Microsoft.Mission/communities/write\"\ + ,\"Microsoft.Mission/communities/delete\",\"Microsoft.Mission/internalConnections/read\"\ + ,\"Microsoft.Mission/internalConnections/write\",\"Microsoft.Mission/internalConnections/delete\"\ + ,\"Microsoft.Mission/virtualEnclaves/read\",\"Microsoft.Mission/virtualEnclaves/write\"\ + ,\"Microsoft.Mission/virtualEnclaves/delete\",\"Microsoft.Mission/virtualEnclaves/workloads/read\"\ + ,\"Microsoft.Mission/virtualEnclaves/workloads/write\",\"Microsoft.Mission/virtualEnclaves/workloads/delete\"\ + ],\"notActions\":[],\"dataActions\":[],\"notDataActions\":[]}],\"createdOn\"\ + :\"2023-05-25T20:51:16.2041501Z\",\"updatedOn\":\"2023-05-25T20:51:16.2041501Z\"\ + ,\"createdBy\":null,\"updatedBy\":null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5e28a61e-8040-49db-b175-bb5b88af6239\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"5e28a61e-8040-49db-b175-bb5b88af6239\"\ + },{\"properties\":{\"roleName\":\"Firmware Analysis Admin\",\"type\":\"BuiltInRole\"\ + ,\"description\":\"Upload and analyze firmware images in Defender for IoT\"\ + ,\"assignableScopes\":[\"/\"],\"permissions\":[{\"actions\":[\"Microsoft.IoTFirmwareDefense/*\"\ + ,\"Microsoft.Authorization/*/read\",\"Microsoft.Resources/subscriptions/resourceGroups/read\"\ + ,\"Microsoft.Resources/deployments/*\"],\"notActions\":[],\"dataActions\"\ + :[],\"notDataActions\":[]}],\"createdOn\":\"2023-06-12T15:03:22.1277659Z\"\ + ,\"updatedOn\":\"2023-06-12T15:03:22.1277659Z\",\"createdBy\":null,\"updatedBy\"\ + :null},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9c1607d1-791d-4c68-885d-c7b7aaff7c8a\"\ + ,\"type\":\"Microsoft.Authorization/roleDefinitions\",\"name\":\"9c1607d1-791d-4c68-885d-c7b7aaff7c8a\"\ + }]}" headers: cache-control: - no-cache content-length: - - '480906' + - '516008' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:08:44 GMT + - Wed, 14 Jun 2023 21:19:56 GMT expires: - '-1' pragma: @@ -2025,7 +6874,7 @@ interactions: code: 200 message: OK - request: - body: '{"ids": ["119e1aeb-4592-42d6-9507-c66df857924f"], "types": ["user", "group", + body: '{"ids": ["f874a9b2-feb3-475f-a306-27720ae6be3d"], "types": ["user", "group", "servicePrincipal", "directoryObjectPartnerReference"]}' headers: Accept: @@ -2043,27 +6892,27 @@ interactions: ParameterSetName: - --scope User-Agent: - - python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) AZURECLI/2.46.0 + - python/3.8.16 (macOS-13.4-arm64-arm-64bit) AZURECLI/2.49.0 method: POST uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"119e1aeb-4592-42d6-9507-c66df857924f","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"azcli-aks-live-test","appDescription":null,"appId":"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d","applicationTemplateId":null,"appOwnerOrganizationId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"createdDateTime":"2021-04-20T10:17:48Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"azcli-aks-live-test","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["3fac8b4e-cd90-4baa-a5d2-66d52bc8349d"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":["HideApp","WindowsAzureActiveDirectoryIntegratedApp"],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"f874a9b2-feb3-475f-a306-27720ae6be3d","deletedDateTime":null,"accountEnabled":true,"alternativeNames":[],"appDisplayName":"clitest000002","appDescription":null,"appId":"eb533a58-db68-4a4e-b8b4-1abd93a5c11e","applicationTemplateId":null,"appOwnerOrganizationId":"72f988bf-86f1-41af-91ab-2d7cd011db47","appRoleAssignmentRequired":false,"createdDateTime":"2023-06-14T21:15:53Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"clitest000002","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["eb533a58-db68-4a4e-b8b4-1abd93a5c11e"],"servicePrincipalType":"Application","signInAudience":"AzureADandPersonalMicrosoftAccount","tags":[],"tokenEncryptionKeyId":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"info":{"logoUrl":null,"marketingUrl":null,"privacyStatementUrl":null,"supportUrl":null,"termsOfServiceUrl":null},"keyCredentials":[],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' headers: cache-control: - no-cache content-length: - - '1403' + - '1361' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 15 Mar 2023 10:08:44 GMT + - Wed, 14 Jun 2023 21:19:57 GMT location: - https://graph.microsoft.com odata-version: - '4.0' request-id: - - 8df3f475-089d-4172-be15-157276e43488 + - 265e2210-cd46-4bcc-959b-8915136db1e3 strict-transport-security: - max-age=31536000 transfer-encoding: @@ -2071,7 +6920,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"002","RoleInstance":"MWH0EPF00032D4F"}}' + - '{"ServerInfo":{"DataCenter":"North Central US","Slice":"E","Ring":"3","ScaleUnit":"000","RoleInstance":"CH01EPF0001E8E1"}}' x-ms-resource-unit: - '3' status: @@ -2092,8 +6941,8 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000006?api-version=2023-04-01 response: @@ -2109,7 +6958,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:08:44 GMT + - Wed, 14 Jun 2023 21:19:57 GMT expires: - '-1' pragma: @@ -2138,22 +6987,38 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005/providers/Microsoft.Authorization/roleAssignments?$filter=atScope()&api-version=2022-04-01 response: body: - string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-26T05:33:00.7067936Z","updatedOn":"2021-04-26T05:33:00.7067936Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2adf4737-6342-4f63-aeb2-5fcd3426a387","type":"Microsoft.Authorization/roleAssignments","name":"2adf4737-6342-4f63-aeb2-5fcd3426a387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-26T06:09:24.5972802Z","updatedOn":"2021-04-26T06:09:24.5972802Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4572c05-f69f-4e5c-aac6-79afefcf0e2e","type":"Microsoft.Authorization/roleAssignments","name":"c4572c05-f69f-4e5c-aac6-79afefcf0e2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-18T05:18:40.4643436Z","updatedOn":"2021-06-18T05:18:40.4643436Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f926301-cc14-4a88-a3b7-c159d73d01f6","type":"Microsoft.Authorization/roleAssignments","name":"3f926301-cc14-4a88-a3b7-c159d73d01f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:40.4541416Z","updatedOn":"2022-01-25T05:49:40.4541416Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/95e51146-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"95e51146-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:41.6466655Z","updatedOn":"2022-01-25T05:49:41.6466655Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96d4d041-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"96d4d041-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:42.8008295Z","updatedOn":"2022-01-25T05:49:42.8008295Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/978dbc52-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"978dbc52-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:43.7159467Z","updatedOn":"2022-01-25T05:49:43.7159467Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9808753a-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"9808753a-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T05:49:44.8535285Z","updatedOn":"2022-01-25T05:49:44.8535285Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9895826c-7da2-11ec-9795-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"9895826c-7da2-11ec-9795-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:21.9669611Z","updatedOn":"2022-01-25T06:00:21.9669611Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/143cab45-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"143cab45-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:21.7844500Z","updatedOn":"2022-01-25T06:00:21.7844500Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/143a47b2-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"143a47b2-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:22.8152511Z","updatedOn":"2022-01-25T06:00:22.8152511Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1503a122-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"1503a122-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:22.7549989Z","updatedOn":"2022-01-25T06:00:22.7549989Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14fdfc11-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"14fdfc11-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:47.5002672Z","updatedOn":"2022-01-25T06:00:47.5002672Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23901ba1-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"23901ba1-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:47.9954045Z","updatedOn":"2022-01-25T06:00:47.9954045Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23d4b2c8-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"23d4b2c8-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:48.0124462Z","updatedOn":"2022-01-25T06:00:48.0124462Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23eb1c2a-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"23eb1c2a-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:49.0142818Z","updatedOn":"2022-01-25T06:00:49.0142818Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/248c7804-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"248c7804-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:00:49.8561822Z","updatedOn":"2022-01-25T06:00:49.8561822Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/25212cc5-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"25212cc5-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:03:00.8232622Z","updatedOn":"2022-01-25T06:03:00.8232622Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/730ae441-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"730ae441-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:03:01.6908492Z","updatedOn":"2022-01-25T06:03:01.6908492Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/73b81c51-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"73b81c51-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:27.0646115Z","updatedOn":"2022-01-25T06:05:27.0646115Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca436279-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"ca436279-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:27.8245772Z","updatedOn":"2022-01-25T06:05:27.8245772Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cad7146c-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cad7146c-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:28.8193427Z","updatedOn":"2022-01-25T06:05:28.8193427Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cb6be874-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cb6be874-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:30.0125029Z","updatedOn":"2022-01-25T06:05:30.0125029Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc20f7f4-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cc20f7f4-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:31.2002633Z","updatedOn":"2022-01-25T06:05:31.2002633Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ccd748dd-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"ccd748dd-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:32.4937030Z","updatedOn":"2022-01-25T06:05:32.4937030Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd4bbd1a-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cd4bbd1a-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:33.6999970Z","updatedOn":"2022-01-25T06:05:33.6999970Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce56964e-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"ce56964e-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:35.3719606Z","updatedOn":"2022-01-25T06:05:35.3719606Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf53c36b-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"cf53c36b-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:37.0989473Z","updatedOn":"2022-01-25T06:05:37.0989473Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0537e9f-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d0537e9f-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:37.9186616Z","updatedOn":"2022-01-25T06:05:37.9186616Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0d7c10e-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d0d7c10e-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:39.2245796Z","updatedOn":"2022-01-25T06:05:39.2245796Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d187dc7e-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d187dc7e-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:41.3147495Z","updatedOn":"2022-01-25T06:05:41.3147495Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2d190da-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d2d190da-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T06:05:42.0909979Z","updatedOn":"2022-01-25T06:05:42.0909979Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3553305-7da4-11ec-beaa-0022487a95e4","type":"Microsoft.Authorization/roleAssignments","name":"d3553305-7da4-11ec-beaa-0022487a95e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T04:11:40.8923959Z","updatedOn":"2023-02-10T04:11:40.8923959Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b9cb4b1-7e07-4127-b87e-47e7ab8ae685","type":"Microsoft.Authorization/roleAssignments","name":"7b9cb4b1-7e07-4127-b87e-47e7ab8ae685"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005","condition":null,"conditionVersion":null,"createdOn":"2023-03-15T10:05:06.5242530Z","updatedOn":"2023-03-15T10:05:06.5242530Z","createdBy":"119e1aeb-4592-42d6-9507-c66df857924f","updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005/providers/Microsoft.Authorization/roleAssignments/1130d241-8d54-42e4-a95c-7d149e0a9b19","type":"Microsoft.Authorization/roleAssignments","name":"1130d241-8d54-42e4-a95c-7d149e0a9b19"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-18T03:09:33.8702688Z","updatedOn":"2021-09-18T03:09:33.8702688Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99d6fd13-909e-4c52-807e-77f7a5af83c8","type":"Microsoft.Authorization/roleAssignments","name":"99d6fd13-909e-4c52-807e-77f7a5af83c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T17:23:35.8382756Z","updatedOn":"2021-10-08T17:23:35.8382756Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/465fbb01-3623-f393-e42f-e19c0d2982de/providers/Microsoft.Authorization/roleAssignments/ade4333c-4321-4b68-b498-d081d55e2b0c","type":"Microsoft.Authorization/roleAssignments","name":"ade4333c-4321-4b68-b498-d081d55e2b0c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9136073Z","updatedOn":"2019-03-26T22:01:02.9136073Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6f4de15e-9316-4714-a7c4-40c46cf8e067","type":"Microsoft.Authorization/roleAssignments","name":"6f4de15e-9316-4714-a7c4-40c46cf8e067"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:13.2137492Z","updatedOn":"2020-02-25T18:36:13.2137492Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/18fdd87e-1c01-424e-b380-32310f4940c2","type":"Microsoft.Authorization/roleAssignments","name":"18fdd87e-1c01-424e-b380-32310f4940c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:00.4746112Z","updatedOn":"2020-02-25T18:36:00.4746112Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d9bcf58a-6f24-446d-bf60-20ffe5142396","type":"Microsoft.Authorization/roleAssignments","name":"d9bcf58a-6f24-446d-bf60-20ffe5142396"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:55.7490022Z","updatedOn":"2020-02-25T18:35:55.7490022Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6e2b954b-42b2-48e0-997a-622601f0a4b4","type":"Microsoft.Authorization/roleAssignments","name":"6e2b954b-42b2-48e0-997a-622601f0a4b4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:57.9173081Z","updatedOn":"2020-02-25T18:35:57.9173081Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9","type":"Microsoft.Authorization/roleAssignments","name":"8d76aaa3-fcfd-4ea5-8c7c-363d250e7ae9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:23.0673659Z","updatedOn":"2020-02-25T18:36:23.0673659Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d0817c57-3e5b-4363-88b7-52baadd5c362","type":"Microsoft.Authorization/roleAssignments","name":"d0817c57-3e5b-4363-88b7-52baadd5c362"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:31.2596366Z","updatedOn":"2020-02-25T18:36:31.2596366Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0dabf212-a1c7-4af6-ba8b-be045493b368","type":"Microsoft.Authorization/roleAssignments","name":"0dabf212-a1c7-4af6-ba8b-be045493b368"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:35:52.9188704Z","updatedOn":"2020-02-25T18:35:52.9188704Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d674b853-332e-4437-9ddb-bba8fde7ccce","type":"Microsoft.Authorization/roleAssignments","name":"d674b853-332e-4437-9ddb-bba8fde7ccce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:38.8393742Z","updatedOn":"2020-02-25T18:36:38.8393742Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/00625383-053d-4227-a4db-b098e9bd2289","type":"Microsoft.Authorization/roleAssignments","name":"00625383-053d-4227-a4db-b098e9bd2289"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-02-25T18:36:05.0954462Z","updatedOn":"2020-02-25T18:36:05.0954462Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/3151fe9c-fcd2-45d3-a256-72fb13b86df5","type":"Microsoft.Authorization/roleAssignments","name":"3151fe9c-fcd2-45d3-a256-72fb13b86df5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2020-07-06T18:51:23.0753297Z","updatedOn":"2020-07-06T18:51:23.0753297Z","createdBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","updatedBy":"d59f4a71-eff1-4bfa-a572-fe518f49f6c7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b3a9e1db-fde1-4ddd-ac1c-91913be67359","type":"Microsoft.Authorization/roleAssignments","name":"b3a9e1db-fde1-4ddd-ac1c-91913be67359"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T21:14:55.1655079Z","updatedOn":"2023-02-28T22:54:18.0450083Z","createdBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","updatedBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/6565c104-61e2-5756-96d7-663b216c8b11","type":"Microsoft.Authorization/roleAssignments","name":"6565c104-61e2-5756-96d7-663b216c8b11"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-02-17T00:30:39.4967398Z","updatedOn":"2022-02-17T00:30:39.4967398Z","createdBy":"a4319ad3-20be-4542-8952-685b66e56377","updatedBy":"a4319ad3-20be-4542-8952-685b66e56377","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/d8aedac6-3663-42b3-add4-c013b7935fb4","type":"Microsoft.Authorization/roleAssignments","name":"d8aedac6-3663-42b3-add4-c013b7935fb4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-03-02T23:53:39.1630622Z","updatedOn":"2022-03-02T23:53:39.1630622Z","createdBy":"a4319ad3-20be-4542-8952-685b66e56377","updatedBy":"a4319ad3-20be-4542-8952-685b66e56377","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b5f0a13f-ac13-4e45-8588-15f5d9a02b20","type":"Microsoft.Authorization/roleAssignments","name":"b5f0a13f-ac13-4e45-8588-15f5d9a02b20"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:58:05.8353141Z","updatedOn":"2022-03-08T00:58:05.8353141Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/403b97d1-ee0a-4b10-afe1-f36f368d2ced","type":"Microsoft.Authorization/roleAssignments","name":"403b97d1-ee0a-4b10-afe1-f36f368d2ced"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-05-16T23:08:20.8536608Z","updatedOn":"2022-05-16T23:08:20.8536608Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8b338a13-cfa6-42e6-b424-fb375ce9d07c","type":"Microsoft.Authorization/roleAssignments","name":"8b338a13-cfa6-42e6-b424-fb375ce9d07c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-05-17T18:23:54.2264851Z","updatedOn":"2022-05-31T17:20:00.8273681Z","createdBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","updatedBy":"393a8425-6c8d-4d4a-a700-811f0423e5aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f0576973-5014-5fe2-b3f2-cf3aace860d6","type":"Microsoft.Authorization/roleAssignments","name":"f0576973-5014-5fe2-b3f2-cf3aace860d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:21.3325762Z","updatedOn":"2022-07-19T00:07:21.3325762Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2697280b-812c-472d-841b-a10a9fe540a5","type":"Microsoft.Authorization/roleAssignments","name":"2697280b-812c-472d-841b-a10a9fe540a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/fd6e57ea-fe3c-4f21-bd1e-de170a9a4971","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:23.7020980Z","updatedOn":"2022-07-19T00:07:23.7020980Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/f4254463-7a28-4d26-b331-5a18c354cbe6","type":"Microsoft.Authorization/roleAssignments","name":"f4254463-7a28-4d26-b331-5a18c354cbe6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T00:07:26.4080657Z","updatedOn":"2022-07-19T00:07:26.4080657Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/065a63ba-71cc-4c69-b92b-bc67421e7e64","type":"Microsoft.Authorization/roleAssignments","name":"065a63ba-71cc-4c69-b92b-bc67421e7e64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:33.0012805Z","updatedOn":"2021-08-09T18:17:33.0012805Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/01de8fe7-aae0-4d5c-844a-f0bdb8335252","type":"Microsoft.Authorization/roleAssignments","name":"01de8fe7-aae0-4d5c-844a-f0bdb8335252"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-09T18:17:39.9188336Z","updatedOn":"2021-08-09T18:17:39.9188336Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/ab2be506-5489-4c1f-add0-f5ed87a10439","type":"Microsoft.Authorization/roleAssignments","name":"ab2be506-5489-4c1f-add0-f5ed87a10439"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:18.2000692Z","updatedOn":"2021-08-24T19:32:18.2000692Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/0ce2f3fb-17ea-4193-9081-09aa4b39fec4","type":"Microsoft.Authorization/roleAssignments","name":"0ce2f3fb-17ea-4193-9081-09aa4b39fec4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T19:32:36.6775144Z","updatedOn":"2021-08-24T19:32:36.6775144Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/2e95b289-99bd-4e68-83de-5433f2a0428c","type":"Microsoft.Authorization/roleAssignments","name":"2e95b289-99bd-4e68-83de-5433f2a0428c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:09.1056400Z","updatedOn":"2021-11-01T22:46:09.1056400Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/82fe7886-5c1b-42c2-9319-7b4d436d8aba","type":"Microsoft.Authorization/roleAssignments","name":"82fe7886-5c1b-42c2-9319-7b4d436d8aba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:14.7527743Z","updatedOn":"2021-11-01T22:46:14.7527743Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/12162b26-25fb-4ef5-a6e8-651446483cb6","type":"Microsoft.Authorization/roleAssignments","name":"12162b26-25fb-4ef5-a6e8-651446483cb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-11-01T22:46:20.6399869Z","updatedOn":"2021-11-01T22:46:20.6399869Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870","type":"Microsoft.Authorization/roleAssignments","name":"105bcc1f-3ddf-4cc0-bffc-03b3d9aaf870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-01-26T20:10:13.8998989Z","updatedOn":"2021-01-26T20:10:13.8998989Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/b36517ec-61d3-468d-afdc-eceda8adb4ee","type":"Microsoft.Authorization/roleAssignments","name":"b36517ec-61d3-468d-afdc-eceda8adb4ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-02-06T00:13:19.1780775Z","updatedOn":"2021-02-06T00:13:19.1780775Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/5216c1ee-4f58-4d36-b379-6c04b1fbd157","type":"Microsoft.Authorization/roleAssignments","name":"5216c1ee-4f58-4d36-b379-6c04b1fbd157"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:26:34.3109215Z","updatedOn":"2021-04-16T18:26:34.3109215Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/7464f8a3-9f55-443b-a3a5-44a31b100cad","type":"Microsoft.Authorization/roleAssignments","name":"7464f8a3-9f55-443b-a3a5-44a31b100cad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-04-16T18:27:56.4446265Z","updatedOn":"2021-04-16T18:27:56.4446265Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/8f430c4c-4317-4495-9f01-4f3d4e1ca111","type":"Microsoft.Authorization/roleAssignments","name":"8f430c4c-4317-4495-9f01-4f3d4e1ca111"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792","condition":null,"conditionVersion":null,"createdOn":"2021-05-04T19:20:06.7695456Z","updatedOn":"2021-05-04T19:20:06.7695456Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/roleAssignments/fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa","type":"Microsoft.Authorization/roleAssignments","name":"fb8bab14-7f67-4e57-8aa5-0c4b7ab5a0fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9176787Z","updatedOn":"2019-03-26T22:01:02.9176787Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320","type":"Microsoft.Authorization/roleAssignments","name":"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:49:37.3000523Z","updatedOn":"2019-03-27T00:49:37.3000523Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29","type":"Microsoft.Authorization/roleAssignments","name":"e6e1fffd-83f7-40c7-9f33-e56e2cf75b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:50:08.3039053Z","updatedOn":"2019-03-27T00:50:08.3039053Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12","type":"Microsoft.Authorization/roleAssignments","name":"3d01f56e-ee3a-41ed-a775-0e067546cb12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T23:11:28.9217618Z","updatedOn":"2022-06-28T23:11:28.9217618Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/869183bd-893a-46f9-bb02-45e48b13f1be","type":"Microsoft.Authorization/roleAssignments","name":"869183bd-893a-46f9-bb02-45e48b13f1be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T22:32:46.2324804Z","updatedOn":"2023-02-21T22:32:46.2324804Z","createdBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","updatedBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/df7c1e07-5c2d-4b22-b7b9-fd11a8569db3","type":"Microsoft.Authorization/roleAssignments","name":"df7c1e07-5c2d-4b22-b7b9-fd11a8569db3"}]}' + string: '{"value":[{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/","condition":null,"conditionVersion":null,"createdOn":"2018-02-27T19:19:50.2663941Z","updatedOn":"2018-02-27T19:19:50.2663941Z","createdBy":null,"updatedBy":null,"delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Authorization/roleAssignments/3e883d24-b106-42ff-ad13-d7bf271b964d","type":"Microsoft.Authorization/roleAssignments","name":"3e883d24-b106-42ff-ad13-d7bf271b964d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:58.6582166Z","updatedOn":"2020-08-21T16:23:58.6582166Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ab72fbd-e5fe-4a7d-ae20-baad615d688d","type":"Microsoft.Authorization/roleAssignments","name":"8ab72fbd-e5fe-4a7d-ae20-baad615d688d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-08-21T16:23:59.5326945Z","updatedOn":"2020-08-21T16:23:59.5326945Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4ed77f1d-82a2-4a02-b48e-fa5776870280","type":"Microsoft.Authorization/roleAssignments","name":"4ed77f1d-82a2-4a02-b48e-fa5776870280"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-02T01:52:45.8299382Z","updatedOn":"2020-09-02T01:52:45.8299382Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3e21284b-6bd7-431a-81ae-ccaf56267ab5","type":"Microsoft.Authorization/roleAssignments","name":"3e21284b-6bd7-431a-81ae-ccaf56267ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-07T09:44:47.3865537Z","updatedOn":"2020-09-07T09:44:47.3865537Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79357f85-973d-4621-b1bd-d1ecb645e146","type":"Microsoft.Authorization/roleAssignments","name":"79357f85-973d-4621-b1bd-d1ecb645e146"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-24T00:04:10.5243862Z","updatedOn":"2020-09-24T00:04:10.5243862Z","createdBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","updatedBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78586b2c-fdf9-11ea-9e5e-8851fb3f4911","type":"Microsoft.Authorization/roleAssignments","name":"78586b2c-fdf9-11ea-9e5e-8851fb3f4911"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-09-29T10:55:39.3762731Z","updatedOn":"2020-09-29T10:55:39.3762731Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41e159ac-411a-4eed-b319-5b92571d2950","type":"Microsoft.Authorization/roleAssignments","name":"41e159ac-411a-4eed-b319-5b92571d2950"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-06T00:33:22.8792900Z","updatedOn":"2020-10-06T00:33:22.8792900Z","createdBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","updatedBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24d0c5e6-0763-11eb-82a0-d636039e345c","type":"Microsoft.Authorization/roleAssignments","name":"24d0c5e6-0763-11eb-82a0-d636039e345c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-14T00:29:42.9981174Z","updatedOn":"2020-10-14T00:29:42.9981174Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6af4ef5-80f6-4303-a641-45689a1646dc","type":"Microsoft.Authorization/roleAssignments","name":"c6af4ef5-80f6-4303-a641-45689a1646dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-10-16T16:42:17.7175670Z","updatedOn":"2020-10-16T16:42:17.7175670Z","createdBy":"d69d1d49-5dc8-4c8e-afb6-325d83ddcee8","updatedBy":"d69d1d49-5dc8-4c8e-afb6-325d83ddcee8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5854c7a2-cf00-46f9-9cc1-d977f34324df","type":"Microsoft.Authorization/roleAssignments","name":"5854c7a2-cf00-46f9-9cc1-d977f34324df"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-02T09:02:29.2637630Z","updatedOn":"2020-11-02T09:02:29.2637630Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ad1faa8-8680-4dec-a768-050e8349af33","type":"Microsoft.Authorization/roleAssignments","name":"0ad1faa8-8680-4dec-a768-050e8349af33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-03T22:00:44.4523883Z","updatedOn":"2020-11-03T22:00:44.4523883Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/908aa5ac-22a2-413a-9333-fcb0a1ba2c59","type":"Microsoft.Authorization/roleAssignments","name":"908aa5ac-22a2-413a-9333-fcb0a1ba2c59"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-11-09T14:00:59.0347294Z","updatedOn":"2020-11-09T14:00:59.0347294Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9541f93-ea4a-4b1b-98bf-839fecfcaa22","type":"Microsoft.Authorization/roleAssignments","name":"e9541f93-ea4a-4b1b-98bf-839fecfcaa22"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-12-18T08:00:24.9874024Z","updatedOn":"2020-12-18T08:00:24.9874024Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7f60817e-27b5-486b-bbdb-b748bcb752d4","type":"Microsoft.Authorization/roleAssignments","name":"7f60817e-27b5-486b-bbdb-b748bcb752d4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-12-30T11:06:51.2887287Z","updatedOn":"2020-12-30T11:06:51.2887287Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1cbe1756-4a8f-11eb-b753-720008210d90","type":"Microsoft.Authorization/roleAssignments","name":"1cbe1756-4a8f-11eb-b753-720008210d90"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-01-13T06:12:19.1847916Z","updatedOn":"2021-01-13T06:12:19.1847916Z","createdBy":"241cd743-2c33-4860-bd3a-1df659c06eef","updatedBy":"241cd743-2c33-4860-bd3a-1df659c06eef","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/498bf4f6-5566-11eb-a35b-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"498bf4f6-5566-11eb-a35b-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-04T06:52:05.2038586Z","updatedOn":"2021-02-04T06:52:05.2038586Z","createdBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","updatedBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdf6a314-3605-4944-96c1-08b7364dba54","type":"Microsoft.Authorization/roleAssignments","name":"fdf6a314-3605-4944-96c1-08b7364dba54"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T00:37:53.4699042Z","updatedOn":"2021-02-17T00:37:53.4699042Z","createdBy":"e5ad6d43-d6ac-4061-84cc-f7cb826200a0","updatedBy":"e5ad6d43-d6ac-4061-84cc-f7cb826200a0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c06abb18-9697-41f9-9410-ff0ee9b13ab9","type":"Microsoft.Authorization/roleAssignments","name":"c06abb18-9697-41f9-9410-ff0ee9b13ab9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T01:26:55.0758483Z","updatedOn":"2021-02-17T01:26:55.0758483Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9812b416-33c9-4b88-bcdb-6b8406dd319f","type":"Microsoft.Authorization/roleAssignments","name":"9812b416-33c9-4b88-bcdb-6b8406dd319f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-17T01:38:17.8125104Z","updatedOn":"2021-02-17T01:38:17.8125104Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82e0c83f-b7dd-49f6-b501-ff05951db69d","type":"Microsoft.Authorization/roleAssignments","name":"82e0c83f-b7dd-49f6-b501-ff05951db69d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-02-19T01:25:51.9967288Z","updatedOn":"2021-02-19T01:25:51.9967288Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2e4ab306-7ae7-4867-8e22-90215bdbeb9a","type":"Microsoft.Authorization/roleAssignments","name":"2e4ab306-7ae7-4867-8e22-90215bdbeb9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-01T21:51:55.4255791Z","updatedOn":"2021-03-01T21:51:55.4255791Z","createdBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","updatedBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36175f2d-f556-464e-a509-19cbb3f45909","type":"Microsoft.Authorization/roleAssignments","name":"36175f2d-f556-464e-a509-19cbb3f45909"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-21T03:42:13.8891609Z","updatedOn":"2020-02-21T03:42:13.8891609Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c41b0416-12e4-49bb-9e35-411e4f409102","type":"Microsoft.Authorization/roleAssignments","name":"c41b0416-12e4-49bb-9e35-411e4f409102"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-22T07:53:45.7192431Z","updatedOn":"2020-04-22T07:53:45.7192431Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d01cbd3-f3e3-4712-95c6-cf07a0224887","type":"Microsoft.Authorization/roleAssignments","name":"0d01cbd3-f3e3-4712-95c6-cf07a0224887"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-30T06:27:35.9310363Z","updatedOn":"2020-04-30T06:27:35.9310363Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a1327e4-100e-43ee-b04e-1403969b805b","type":"Microsoft.Authorization/roleAssignments","name":"6a1327e4-100e-43ee-b04e-1403969b805b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-06-13T06:44:49.9960198Z","updatedOn":"2019-06-13T06:44:49.9960198Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/33958269-41a0-400a-91a1-6303d954c8f0","type":"Microsoft.Authorization/roleAssignments","name":"33958269-41a0-400a-91a1-6303d954c8f0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-04-16T02:04:22.4782415Z","updatedOn":"2019-04-16T02:04:22.4782415Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bacdb283-653c-47eb-a578-11743d7898f8","type":"Microsoft.Authorization/roleAssignments","name":"bacdb283-653c-47eb-a578-11743d7898f8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-27T09:09:33.7347978Z","updatedOn":"2020-03-27T09:09:33.7347978Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d355b17-e9d6-47b7-9181-b54ad0083793","type":"Microsoft.Authorization/roleAssignments","name":"6d355b17-e9d6-47b7-9181-b54ad0083793"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-19T02:50:30.0038186Z","updatedOn":"2019-03-19T02:50:30.0038186Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26adec15-a0e4-4b2e-a437-9b545b9723fc","type":"Microsoft.Authorization/roleAssignments","name":"26adec15-a0e4-4b2e-a437-9b545b9723fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-04-17T00:50:00.2288905Z","updatedOn":"2019-04-17T00:50:00.2288905Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e873fd7-4bdb-4df5-a510-c15f3ce99cd6","type":"Microsoft.Authorization/roleAssignments","name":"0e873fd7-4bdb-4df5-a510-c15f3ce99cd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-08T07:40:31.7235048Z","updatedOn":"2020-05-08T07:40:31.7235048Z","createdBy":"09914860-7ec9-4151-8431-31797899a359","updatedBy":"09914860-7ec9-4151-8431-31797899a359","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbfa0c0c-2653-4fb8-b9e5-d41bd96053a7","type":"Microsoft.Authorization/roleAssignments","name":"cbfa0c0c-2653-4fb8-b9e5-d41bd96053a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-11-15T22:27:15.6601349Z","updatedOn":"2018-11-15T22:27:15.6601349Z","createdBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","updatedBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/418847ec-df97-4b29-9711-fc833817e5d6","type":"Microsoft.Authorization/roleAssignments","name":"418847ec-df97-4b29-9711-fc833817e5d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-28T14:20:52.7506898Z","updatedOn":"2019-08-28T14:20:52.7506898Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/715fd118-93b8-4b09-822d-48de5afb21e3","type":"Microsoft.Authorization/roleAssignments","name":"715fd118-93b8-4b09-822d-48de5afb21e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-01-06T05:22:04.7673784Z","updatedOn":"2019-01-06T05:22:04.7673784Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba5c8600-8cc9-4778-9735-c3d57d26e50d","type":"Microsoft.Authorization/roleAssignments","name":"ba5c8600-8cc9-4778-9735-c3d57d26e50d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-02T16:21:28.6789246Z","updatedOn":"2020-06-02T16:21:28.6789246Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd6bf5d5-fc1c-4fcd-81f3-0d11d3ff9f42","type":"Microsoft.Authorization/roleAssignments","name":"bd6bf5d5-fc1c-4fcd-81f3-0d11d3ff9f42"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-20T08:42:00.9560545Z","updatedOn":"2020-04-20T08:42:00.9560545Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7a41b62f-97d4-4f4c-8bfc-4a8dd708e00f","type":"Microsoft.Authorization/roleAssignments","name":"7a41b62f-97d4-4f4c-8bfc-4a8dd708e00f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-23T03:10:28.2381030Z","updatedOn":"2020-04-23T03:10:28.2381030Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f98d1512-e634-4663-a219-24be2e6bfe1c","type":"Microsoft.Authorization/roleAssignments","name":"f98d1512-e634-4663-a219-24be2e6bfe1c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-15T02:06:03.3308352Z","updatedOn":"2020-04-15T02:06:03.3308352Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6142150e-c404-48e6-a731-fffb36357051","type":"Microsoft.Authorization/roleAssignments","name":"6142150e-c404-48e6-a731-fffb36357051"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-11-16T23:46:13.9660279Z","updatedOn":"2018-11-16T23:46:13.9660279Z","createdBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","updatedBy":"38d88515-7eb8-4c96-804f-4edcc95b9dff","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b66b1ea-89dd-4bc6-8d89-96298648eb40","type":"Microsoft.Authorization/roleAssignments","name":"2b66b1ea-89dd-4bc6-8d89-96298648eb40"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2018-10-27T00:03:26.2878499Z","updatedOn":"2018-10-27T00:03:26.2878499Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea920230-1aba-4f80-9eef-3fed8216f594","type":"Microsoft.Authorization/roleAssignments","name":"ea920230-1aba-4f80-9eef-3fed8216f594"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-03T09:55:40.2829720Z","updatedOn":"2020-04-03T09:55:40.2829720Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9c2a551-11aa-4b0a-8816-f8511cd46a32","type":"Microsoft.Authorization/roleAssignments","name":"c9c2a551-11aa-4b0a-8816-f8511cd46a32"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-26T21:10:42.2124416Z","updatedOn":"2020-03-26T21:10:42.2124416Z","createdBy":"50ee185f-0eb1-4577-ae14-4ecf59cfa8f7","updatedBy":"50ee185f-0eb1-4577-ae14-4ecf59cfa8f7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d394da6c-4def-47de-8689-791727331c5b","type":"Microsoft.Authorization/roleAssignments","name":"d394da6c-4def-47de-8689-791727331c5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-21T07:34:50.7125622Z","updatedOn":"2020-04-21T07:34:50.7125622Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ddeb2255-2bb6-458a-a891-532e96ae5483","type":"Microsoft.Authorization/roleAssignments","name":"ddeb2255-2bb6-458a-a891-532e96ae5483"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-23T04:07:45.3308845Z","updatedOn":"2020-06-23T04:07:45.3308845Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15d1dab1-b507-11ea-819c-a28e10bedef6","type":"Microsoft.Authorization/roleAssignments","name":"15d1dab1-b507-11ea-819c-a28e10bedef6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-13T00:09:08.8179220Z","updatedOn":"2020-05-13T00:09:08.8179220Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/08a578f0-4875-47d0-8775-946b3a0f2b06","type":"Microsoft.Authorization/roleAssignments","name":"08a578f0-4875-47d0-8775-946b3a0f2b06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-10T23:15:46.8549700Z","updatedOn":"2020-05-10T23:15:46.8549700Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/22d3da65-7681-445e-9080-e748e494676f","type":"Microsoft.Authorization/roleAssignments","name":"22d3da65-7681-445e-9080-e748e494676f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-08-29T13:30:14.1177711Z","updatedOn":"2019-08-29T13:30:14.1177711Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a2c1014-c1ba-4ae9-a632-90967c28429d","type":"Microsoft.Authorization/roleAssignments","name":"4a2c1014-c1ba-4ae9-a632-90967c28429d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-27T01:26:21.7189691Z","updatedOn":"2020-02-27T01:26:21.7189691Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28808064-5900-11ea-81c8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"28808064-5900-11ea-81c8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-07-03T01:05:25.8863198Z","updatedOn":"2020-07-03T01:05:25.8863198Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46877403-bcc9-11ea-924f-00155d871f03","type":"Microsoft.Authorization/roleAssignments","name":"46877403-bcc9-11ea-924f-00155d871f03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-28T19:57:23.3708745Z","updatedOn":"2019-03-28T19:57:23.3708745Z","createdBy":"66cb050e-bae1-4005-8c4c-0f6dd9b34978","updatedBy":"66cb050e-bae1-4005-8c4c-0f6dd9b34978","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc796cab-2f6b-4099-b9a3-7500f5516153","type":"Microsoft.Authorization/roleAssignments","name":"cc796cab-2f6b-4099-b9a3-7500f5516153"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-30T22:56:44.9793119Z","updatedOn":"2020-03-30T22:56:44.9793119Z","createdBy":"53bb8815-874d-4b05-9953-1158e05aa080","updatedBy":"53bb8815-874d-4b05-9953-1158e05aa080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/000ea275-41c4-40ce-943f-98a8849a56bc","type":"Microsoft.Authorization/roleAssignments","name":"000ea275-41c4-40ce-943f-98a8849a56bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-10T01:13:53.0806696Z","updatedOn":"2020-06-10T01:13:53.0806696Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a584fad9-aab7-11ea-b7e7-00155d4b0124","type":"Microsoft.Authorization/roleAssignments","name":"a584fad9-aab7-11ea-b7e7-00155d4b0124"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-12T00:23:23.9037436Z","updatedOn":"2020-05-12T00:23:23.9037436Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ff95229-981f-40d7-889f-97bc90b8f387","type":"Microsoft.Authorization/roleAssignments","name":"6ff95229-981f-40d7-889f-97bc90b8f387"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-06-09T00:52:52.1315983Z","updatedOn":"2020-06-09T00:52:52.1315983Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7512dec1-86e5-400d-8bc9-f24f181127f3","type":"Microsoft.Authorization/roleAssignments","name":"7512dec1-86e5-400d-8bc9-f24f181127f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-14T04:03:23.9185561Z","updatedOn":"2020-04-14T04:03:23.9185561Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f0f495d-0356-4239-b966-3f47f5f1054a","type":"Microsoft.Authorization/roleAssignments","name":"0f0f495d-0356-4239-b966-3f47f5f1054a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-05-14T00:42:59.8868253Z","updatedOn":"2020-05-14T00:42:59.8868253Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b3c8d44-237c-410c-a095-52ded7f5cd26","type":"Microsoft.Authorization/roleAssignments","name":"6b3c8d44-237c-410c-a095-52ded7f5cd26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-11T13:26:01.9493491Z","updatedOn":"2020-02-11T13:26:01.9493491Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8fab1ba3-53c2-4b21-9d32-dc89fd061811","type":"Microsoft.Authorization/roleAssignments","name":"8fab1ba3-53c2-4b21-9d32-dc89fd061811"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-03T05:34:39.2163770Z","updatedOn":"2020-04-03T05:34:39.2163770Z","createdBy":"ed4707f4-8b58-42fe-9afd-0045d7a9b262","updatedBy":"ed4707f4-8b58-42fe-9afd-0045d7a9b262","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e4edc2a-dd1f-469b-9a44-f0693866b843","type":"Microsoft.Authorization/roleAssignments","name":"8e4edc2a-dd1f-469b-9a44-f0693866b843"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-02-20T19:40:09.1141460Z","updatedOn":"2020-02-20T19:40:09.1141460Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4673bf4-97da-4102-9284-2a7315b88a34","type":"Microsoft.Authorization/roleAssignments","name":"d4673bf4-97da-4102-9284-2a7315b88a34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-04-21T07:19:44.2488168Z","updatedOn":"2020-04-21T07:19:44.2488168Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fadbe071-d757-48fc-b82a-4784249ded10","type":"Microsoft.Authorization/roleAssignments","name":"fadbe071-d757-48fc-b82a-4784249ded10"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2019-03-12T17:29:23.0437979Z","updatedOn":"2019-03-12T17:29:23.0437979Z","createdBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","updatedBy":"01e2b341-56ec-43fb-9f53-f6332d30df93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7e76154-c2a7-4419-b73f-e8c6010318c9","type":"Microsoft.Authorization/roleAssignments","name":"a7e76154-c2a7-4419-b73f-e8c6010318c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2020-03-16T23:29:48.3209681Z","updatedOn":"2020-03-16T23:29:48.3209681Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3eb4155b-2965-456b-8f00-bca8a13b1684","type":"Microsoft.Authorization/roleAssignments","name":"3eb4155b-2965-456b-8f00-bca8a13b1684"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:49:54.3783181Z","updatedOn":"2022-01-05T01:49:54.3783181Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/25b4b181-6b51-4bce-beb0-1310829e6de3","type":"Microsoft.Authorization/roleAssignments","name":"25b4b181-6b51-4bce-beb0-1310829e6de3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:50:16.7495633Z","updatedOn":"2022-01-05T01:50:16.7495633Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/093e4a08-9393-4b9d-b3a0-011d77557170","type":"Microsoft.Authorization/roleAssignments","name":"093e4a08-9393-4b9d-b3a0-011d77557170"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:50:40.1521378Z","updatedOn":"2022-01-05T01:50:40.1521378Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e5090ae4-6b40-4bab-9d46-482593ec6229","type":"Microsoft.Authorization/roleAssignments","name":"e5090ae4-6b40-4bab-9d46-482593ec6229"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T01:52:32.8811339Z","updatedOn":"2022-01-05T01:52:32.8811339Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/923a1dab-e203-422e-bb91-c492a895438e","type":"Microsoft.Authorization/roleAssignments","name":"923a1dab-e203-422e-bb91-c492a895438e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T03:31:42.0793122Z","updatedOn":"2022-01-05T03:31:42.0793122Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6cb2e77-1041-4f33-b449-27f9e8738933","type":"Microsoft.Authorization/roleAssignments","name":"d6cb2e77-1041-4f33-b449-27f9e8738933"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-05T20:29:36.5271689Z","updatedOn":"2022-01-05T20:29:36.5271689Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3267f83c-6e66-11ec-ae40-aa665a565aa7","type":"Microsoft.Authorization/roleAssignments","name":"3267f83c-6e66-11ec-ae40-aa665a565aa7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-08T01:44:09.0575891Z","updatedOn":"2022-01-08T01:44:09.0575891Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/772c985f-7024-11ec-ab61-00224859aac4","type":"Microsoft.Authorization/roleAssignments","name":"772c985f-7024-11ec-ab61-00224859aac4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-10T07:51:08.0345330Z","updatedOn":"2022-01-10T07:51:08.0345330Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/11391e93-71ea-11ec-97af-0022485937da","type":"Microsoft.Authorization/roleAssignments","name":"11391e93-71ea-11ec-97af-0022485937da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-10T19:52:35.8785494Z","updatedOn":"2022-01-10T19:52:35.8785494Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e403838c-88cd-4fc0-b3e8-45c39ad905c1","type":"Microsoft.Authorization/roleAssignments","name":"e403838c-88cd-4fc0-b3e8-45c39ad905c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-17T09:00:11.8306086Z","updatedOn":"2022-01-17T09:00:11.8306086Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2159ffa-089e-4729-a990-364e13db2a65","type":"Microsoft.Authorization/roleAssignments","name":"b2159ffa-089e-4729-a990-364e13db2a65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-18T13:28:29.0699621Z","updatedOn":"2022-01-18T13:28:29.0699621Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81905706-3ec4-4c25-9c82-d4640a0479c3","type":"Microsoft.Authorization/roleAssignments","name":"81905706-3ec4-4c25-9c82-d4640a0479c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-18T20:11:29.5693659Z","updatedOn":"2022-01-18T20:11:29.5693659Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00f40078-a8bd-4bae-9278-ef9de2d5f632","type":"Microsoft.Authorization/roleAssignments","name":"00f40078-a8bd-4bae-9278-ef9de2d5f632"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-19T08:18:43.7411382Z","updatedOn":"2022-01-19T08:18:43.7411382Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82d96cd7-1671-46d7-afc8-9e3d4c56170d","type":"Microsoft.Authorization/roleAssignments","name":"82d96cd7-1671-46d7-afc8-9e3d4c56170d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-19T18:26:48.3434705Z","updatedOn":"2022-01-19T18:26:48.3434705Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0614428a-cde1-4e89-8202-6cb5cd85e6d8","type":"Microsoft.Authorization/roleAssignments","name":"0614428a-cde1-4e89-8202-6cb5cd85e6d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-20T07:46:22.7990066Z","updatedOn":"2022-01-20T07:46:22.7990066Z","createdBy":"0d969ded-9dc4-4176-8b0f-5194740910bf","updatedBy":"0d969ded-9dc4-4176-8b0f-5194740910bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1134cc98-79c5-11ec-9058-ced79d6624f9","type":"Microsoft.Authorization/roleAssignments","name":"1134cc98-79c5-11ec-9058-ced79d6624f9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-21T02:59:53.1540625Z","updatedOn":"2022-01-21T02:59:53.1540625Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2b558e6-2979-4a34-ba92-81e51afae60d","type":"Microsoft.Authorization/roleAssignments","name":"e2b558e6-2979-4a34-ba92-81e51afae60d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-21T03:51:31.7700381Z","updatedOn":"2022-01-21T03:51:31.7700381Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/774b38ec-8425-4659-9c1c-3662aa0d128a","type":"Microsoft.Authorization/roleAssignments","name":"774b38ec-8425-4659-9c1c-3662aa0d128a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-24T08:18:11.4759466Z","updatedOn":"2022-01-24T08:18:11.4759466Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9a6b5b99-dbf6-4270-8c73-cc3e5808e147","type":"Microsoft.Authorization/roleAssignments","name":"9a6b5b99-dbf6-4270-8c73-cc3e5808e147"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-24T08:32:50.8732169Z","updatedOn":"2022-01-24T08:32:50.8732169Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/11d67934-0c51-4dad-8284-f6aced7c815c","type":"Microsoft.Authorization/roleAssignments","name":"11d67934-0c51-4dad-8284-f6aced7c815c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T07:03:14.4901261Z","updatedOn":"2022-01-25T07:03:14.4901261Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dcacb94f-7dac-11ec-be41-c6ce4e0f899a","type":"Microsoft.Authorization/roleAssignments","name":"dcacb94f-7dac-11ec-be41-c6ce4e0f899a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-25T20:35:15.6769413Z","updatedOn":"2022-01-25T20:35:15.6769413Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9e8bf969-d76d-4923-84d9-d9f98b267d71","type":"Microsoft.Authorization/roleAssignments","name":"9e8bf969-d76d-4923-84d9-d9f98b267d71"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-26T15:50:53.7946290Z","updatedOn":"2022-01-26T15:50:53.7946290Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bdcc5219-7ebf-11ec-bada-00224878d5c3","type":"Microsoft.Authorization/roleAssignments","name":"bdcc5219-7ebf-11ec-bada-00224878d5c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T02:28:59.3221529Z","updatedOn":"2022-01-27T02:28:59.3221529Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28cd45d5-8a0f-4b35-8ee3-f82463ccdf3a","type":"Microsoft.Authorization/roleAssignments","name":"28cd45d5-8a0f-4b35-8ee3-f82463ccdf3a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T02:38:11.8679643Z","updatedOn":"2022-01-27T02:38:11.8679643Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3364749d-7f1a-11ec-9b35-e6e10709004e","type":"Microsoft.Authorization/roleAssignments","name":"3364749d-7f1a-11ec-9b35-e6e10709004e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T03:21:28.9388159Z","updatedOn":"2022-01-27T03:21:28.9388159Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5706d36-4da0-4a7e-abdb-20e8ce5c709d","type":"Microsoft.Authorization/roleAssignments","name":"f5706d36-4da0-4a7e-abdb-20e8ce5c709d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T22:45:56.1614375Z","updatedOn":"2022-01-27T22:45:56.1614375Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8757d35e-c05f-4b14-9b69-94880cf3c630","type":"Microsoft.Authorization/roleAssignments","name":"8757d35e-c05f-4b14-9b69-94880cf3c630"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-31T20:16:07.1248292Z","updatedOn":"2022-01-31T20:16:07.1248292Z","createdBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","updatedBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f16a76e-82d2-11ec-b26c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"9f16a76e-82d2-11ec-b26c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-01-31T23:19:58.8275488Z","updatedOn":"2022-01-31T23:19:58.8275488Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2192301f-06dd-491e-8e34-93a3cf5c0197","type":"Microsoft.Authorization/roleAssignments","name":"2192301f-06dd-491e-8e34-93a3cf5c0197"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-01T22:56:44.2373253Z","updatedOn":"2022-02-01T22:56:44.2373253Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/395d775a-83b2-11ec-8917-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"395d775a-83b2-11ec-8917-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-01T23:17:51.6753012Z","updatedOn":"2022-02-01T23:17:51.6753012Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb3685a8-f064-431a-8ab6-21f276ae0e4d","type":"Microsoft.Authorization/roleAssignments","name":"fb3685a8-f064-431a-8ab6-21f276ae0e4d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-03T23:18:19.3769285Z","updatedOn":"2022-02-03T23:18:19.3769285Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ff008d0-8547-11ec-87de-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"8ff008d0-8547-11ec-87de-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-05T12:04:01.3658712Z","updatedOn":"2022-02-05T12:04:01.3658712Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3fb26d3-867b-11ec-8bb2-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"b3fb26d3-867b-11ec-8bb2-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-07T19:33:07.4702067Z","updatedOn":"2022-02-07T19:33:07.4702067Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c80d3f4a-065e-4e11-b0a1-9a04f4384563","type":"Microsoft.Authorization/roleAssignments","name":"c80d3f4a-065e-4e11-b0a1-9a04f4384563"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-07T20:03:20.2169334Z","updatedOn":"2022-02-07T20:03:20.2169334Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd6cdc49-8850-11ec-b237-027f0b78f6ab","type":"Microsoft.Authorization/roleAssignments","name":"fd6cdc49-8850-11ec-b237-027f0b78f6ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-08T08:00:07.9076727Z","updatedOn":"2022-02-08T08:00:07.9076727Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cdb4bce2-b187-4057-9fa4-ead6eeb4b442","type":"Microsoft.Authorization/roleAssignments","name":"cdb4bce2-b187-4057-9fa4-ead6eeb4b442"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-08T13:12:19.0792698Z","updatedOn":"2022-02-08T13:12:19.0792698Z","createdBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","updatedBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bccb433c-88e0-11ec-9c26-2e7a733c8e34","type":"Microsoft.Authorization/roleAssignments","name":"bccb433c-88e0-11ec-9c26-2e7a733c8e34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-08T16:00:23.2107710Z","updatedOn":"2022-02-08T16:00:23.2107710Z","createdBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","updatedBy":"1b1669a8-9258-4ab6-b8bf-43fa03031a41","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/376f32c6-88f8-11ec-b700-2e7a733c8e34","type":"Microsoft.Authorization/roleAssignments","name":"376f32c6-88f8-11ec-b700-2e7a733c8e34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T08:35:07.6001520Z","updatedOn":"2022-02-11T08:35:07.6001520Z","createdBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","updatedBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8422aed5-8b15-11ec-8a3f-6045bd7c1155","type":"Microsoft.Authorization/roleAssignments","name":"8422aed5-8b15-11ec-8a3f-6045bd7c1155"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T20:16:24.1407485Z","updatedOn":"2022-02-11T20:16:24.1407485Z","createdBy":"c518df35-7e98-4c84-9222-b902d191061e","updatedBy":"c518df35-7e98-4c84-9222-b902d191061e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88cc3504-a850-43bb-a42e-326e300ac247","type":"Microsoft.Authorization/roleAssignments","name":"88cc3504-a850-43bb-a42e-326e300ac247"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T20:17:44.8524024Z","updatedOn":"2022-02-11T20:17:44.8524024Z","createdBy":"c518df35-7e98-4c84-9222-b902d191061e","updatedBy":"c518df35-7e98-4c84-9222-b902d191061e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/270f86d3-cdff-4d1c-8dee-20cbe11a28e0","type":"Microsoft.Authorization/roleAssignments","name":"270f86d3-cdff-4d1c-8dee-20cbe11a28e0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-11T20:17:45.1659184Z","updatedOn":"2022-02-11T20:17:45.1659184Z","createdBy":"c518df35-7e98-4c84-9222-b902d191061e","updatedBy":"c518df35-7e98-4c84-9222-b902d191061e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a536c303-c7bb-4556-b252-b8faa982403e","type":"Microsoft.Authorization/roleAssignments","name":"a536c303-c7bb-4556-b252-b8faa982403e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-13T11:41:48.7463966Z","updatedOn":"2022-02-13T11:41:48.7463966Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed14b636-8cc1-11ec-b294-002248785c41","type":"Microsoft.Authorization/roleAssignments","name":"ed14b636-8cc1-11ec-b294-002248785c41"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.6113342Z","updatedOn":"2022-02-14T09:22:36.6113342Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca42541d-172f-4c3a-8286-8e260e99050e","type":"Microsoft.Authorization/roleAssignments","name":"ca42541d-172f-4c3a-8286-8e260e99050e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.6424591Z","updatedOn":"2022-02-14T09:22:36.6424591Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8bcdc0e8-d9c2-478a-3363-0965130c9559","type":"Microsoft.Authorization/roleAssignments","name":"8bcdc0e8-d9c2-478a-3363-0965130c9559"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.6556489Z","updatedOn":"2022-02-14T09:22:36.6556489Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdb4d934-dee6-4e1d-d817-9670b25e7200","type":"Microsoft.Authorization/roleAssignments","name":"fdb4d934-dee6-4e1d-d817-9670b25e7200"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T09:22:36.7217526Z","updatedOn":"2022-02-14T09:22:36.7217526Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e9e51fa-3ef2-46c7-ae2b-8a418b68637a","type":"Microsoft.Authorization/roleAssignments","name":"4e9e51fa-3ef2-46c7-ae2b-8a418b68637a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T15:34:50.0327527Z","updatedOn":"2022-02-14T15:34:50.0327527Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a5579469-8dab-11ec-aa17-000d3a044b73","type":"Microsoft.Authorization/roleAssignments","name":"a5579469-8dab-11ec-aa17-000d3a044b73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T19:37:05.5912525Z","updatedOn":"2022-02-14T19:37:05.5912525Z","createdBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","updatedBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7aa99c5e-8dcd-11ec-931e-3ee49ac9ec9b","type":"Microsoft.Authorization/roleAssignments","name":"7aa99c5e-8dcd-11ec-931e-3ee49ac9ec9b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-14T23:14:13.9732126Z","updatedOn":"2022-02-14T23:14:13.9732126Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c604be80-2bb9-48b0-a450-3565ed763f26","type":"Microsoft.Authorization/roleAssignments","name":"c604be80-2bb9-48b0-a450-3565ed763f26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-15T08:25:10.2747643Z","updatedOn":"2022-02-15T08:25:10.2747643Z","createdBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","updatedBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9baa19c-8e38-11ec-8406-000d3a0dff4f","type":"Microsoft.Authorization/roleAssignments","name":"c9baa19c-8e38-11ec-8406-000d3a0dff4f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-15T16:27:03.8176136Z","updatedOn":"2022-02-15T16:27:03.8176136Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1efc7bb8-8e7c-11ec-aba3-5e309da6350b","type":"Microsoft.Authorization/roleAssignments","name":"1efc7bb8-8e7c-11ec-aba3-5e309da6350b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-16T01:17:47.1475801Z","updatedOn":"2022-02-16T01:17:47.1475801Z","createdBy":"20d1aaf0-7699-4c7f-8b08-6e5306613d73","updatedBy":"20d1aaf0-7699-4c7f-8b08-6e5306613d73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3fb9602f-8ec6-11ec-9d90-000d3a6d0522","type":"Microsoft.Authorization/roleAssignments","name":"3fb9602f-8ec6-11ec-9d90-000d3a6d0522"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-16T04:06:52.4519397Z","updatedOn":"2022-02-16T04:06:52.4519397Z","createdBy":"f986308d-63d6-4619-a4f5-851a3bf675cb","updatedBy":"f986308d-63d6-4619-a4f5-851a3bf675cb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/de0a2a00-8edd-11ec-89d6-62e3b50ea3e8","type":"Microsoft.Authorization/roleAssignments","name":"de0a2a00-8edd-11ec-89d6-62e3b50ea3e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-17T07:47:28.0184571Z","updatedOn":"2022-02-17T07:47:28.0184571Z","createdBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","updatedBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/034bc00f-181a-4058-a66b-793a86a3f1d9","type":"Microsoft.Authorization/roleAssignments","name":"034bc00f-181a-4058-a66b-793a86a3f1d9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-18T02:41:56.8572427Z","updatedOn":"2022-02-18T02:41:56.8572427Z","createdBy":"8611abc5-1512-49e0-a6d2-0624ffaf5ef3","updatedBy":"8611abc5-1512-49e0-a6d2-0624ffaf5ef3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/563ddb12-9064-11ec-b259-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"563ddb12-9064-11ec-b259-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-18T02:44:45.0089883Z","updatedOn":"2022-02-18T02:44:45.0089883Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba625e10-9064-11ec-a4c4-000d3a6fbef8","type":"Microsoft.Authorization/roleAssignments","name":"ba625e10-9064-11ec-a4c4-000d3a6fbef8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-21T12:55:18.9707919Z","updatedOn":"2022-02-21T12:55:18.9707919Z","createdBy":"74dcd4fc-6c01-4de6-85b9-6cd3d0b977a0","updatedBy":"74dcd4fc-6c01-4de6-85b9-6cd3d0b977a0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84d1b0a8-9315-11ec-a625-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"84d1b0a8-9315-11ec-a625-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-22T12:02:41.9576481Z","updatedOn":"2022-02-22T12:02:41.9576481Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7ff802f-d555-4740-9446-decc876041c2","type":"Microsoft.Authorization/roleAssignments","name":"f7ff802f-d555-4740-9446-decc876041c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-22T17:40:50.0656641Z","updatedOn":"2022-02-22T17:40:50.0656641Z","createdBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","updatedBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9330f714-9406-11ec-839f-e6018ea1a0b8","type":"Microsoft.Authorization/roleAssignments","name":"9330f714-9406-11ec-839f-e6018ea1a0b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-23T14:56:26.1925430Z","updatedOn":"2022-02-23T14:56:26.1925430Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5f94f93-94b8-11ec-a7aa-ce34ee50a641","type":"Microsoft.Authorization/roleAssignments","name":"c5f94f93-94b8-11ec-a7aa-ce34ee50a641"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-23T19:18:46.5080793Z","updatedOn":"2022-02-23T19:18:46.5080793Z","createdBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","updatedBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6bd539ac-94dd-11ec-af01-8c8590c99d20","type":"Microsoft.Authorization/roleAssignments","name":"6bd539ac-94dd-11ec-af01-8c8590c99d20"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-24T18:48:42.1150127Z","updatedOn":"2022-02-24T18:48:42.1150127Z","createdBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","updatedBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/75d2b821-a297-4959-9c53-d5375978304a","type":"Microsoft.Authorization/roleAssignments","name":"75d2b821-a297-4959-9c53-d5375978304a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-25T19:43:06.0365566Z","updatedOn":"2022-02-25T19:43:06.0365566Z","createdBy":"c2191082-b1ca-4fcd-9645-551452f60be4","updatedBy":"c2191082-b1ca-4fcd-9645-551452f60be4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f5fb238-9673-11ec-87ea-2ef8edc450dc","type":"Microsoft.Authorization/roleAssignments","name":"2f5fb238-9673-11ec-87ea-2ef8edc450dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-28T03:13:54.6616360Z","updatedOn":"2022-02-28T03:13:54.6616360Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/073872ac-f374-444a-ae66-fb821b8532a4","type":"Microsoft.Authorization/roleAssignments","name":"073872ac-f374-444a-ae66-fb821b8532a4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-02-28T16:39:27.8396295Z","updatedOn":"2022-02-28T16:39:27.8396295Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/60241af8-7226-485e-a261-c69b2cf152c4","type":"Microsoft.Authorization/roleAssignments","name":"60241af8-7226-485e-a261-c69b2cf152c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-01T13:58:58.0676838Z","updatedOn":"2022-03-01T13:58:58.0676838Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1e29644f-ada5-4d30-9c40-a406758409f1","type":"Microsoft.Authorization/roleAssignments","name":"1e29644f-ada5-4d30-9c40-a406758409f1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-03T10:22:00.9954003Z","updatedOn":"2022-03-03T10:22:00.9954003Z","createdBy":"08de6591-dec9-4255-ab17-d6919151fadd","updatedBy":"08de6591-dec9-4255-ab17-d6919151fadd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c30b494c-9adb-11ec-ae58-4a123144b5f6","type":"Microsoft.Authorization/roleAssignments","name":"c30b494c-9adb-11ec-ae58-4a123144b5f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-03T15:10:52.8750196Z","updatedOn":"2022-03-03T15:10:52.8750196Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1d1f5e12-9b04-11ec-bf9f-000d3ac561f6","type":"Microsoft.Authorization/roleAssignments","name":"1d1f5e12-9b04-11ec-bf9f-000d3ac561f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T03:22:58.4512023Z","updatedOn":"2022-03-07T03:22:58.4512023Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e234c5f8-9dc5-11ec-993d-0022485937da","type":"Microsoft.Authorization/roleAssignments","name":"e234c5f8-9dc5-11ec-993d-0022485937da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T11:02:56.8448863Z","updatedOn":"2022-03-07T11:02:56.8448863Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/258a4631-9e06-11ec-9362-98e7f4beee90","type":"Microsoft.Authorization/roleAssignments","name":"258a4631-9e06-11ec-9362-98e7f4beee90"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T22:29:31.2927512Z","updatedOn":"2022-03-07T22:29:31.2927512Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef654596-33a1-443e-8a7d-48c0aa96bfcb","type":"Microsoft.Authorization/roleAssignments","name":"ef654596-33a1-443e-8a7d-48c0aa96bfcb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-07T23:16:52.1440710Z","updatedOn":"2022-03-07T23:16:52.1440710Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3aea3844-0bdd-4673-9a4e-444433ce4230","type":"Microsoft.Authorization/roleAssignments","name":"3aea3844-0bdd-4673-9a4e-444433ce4230"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:15:35.5981652Z","updatedOn":"2022-03-08T00:15:35.5981652Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":"wenxuan-azure-cli"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be01fdd4-3bdf-4a61-8884-59ffb6e82843","type":"Microsoft.Authorization/roleAssignments","name":"be01fdd4-3bdf-4a61-8884-59ffb6e82843"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T00:22:25.1920031Z","updatedOn":"2022-03-08T00:22:25.1920031Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1433f18e-b3fc-4984-bd98-c93d9244fb18","type":"Microsoft.Authorization/roleAssignments","name":"1433f18e-b3fc-4984-bd98-c93d9244fb18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-08T18:56:05.1276019Z","updatedOn":"2022-03-08T18:56:05.1276019Z","createdBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","updatedBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67554406-9f11-11ec-b5da-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"67554406-9f11-11ec-b5da-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-09T00:02:42.6050341Z","updatedOn":"2022-03-09T00:02:42.6050341Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/398c74fc-afb6-47dd-bf7a-efcff5dc1b86","type":"Microsoft.Authorization/roleAssignments","name":"398c74fc-afb6-47dd-bf7a-efcff5dc1b86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-05T14:05:58.2716050Z","updatedOn":"2021-04-05T14:05:58.2716050Z","createdBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","updatedBy":"7a69ab46-a41e-4e40-873c-bd130b5badd8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a9b0e6a-9618-11eb-879a-88e9fe77e044","type":"Microsoft.Authorization/roleAssignments","name":"0a9b0e6a-9618-11eb-879a-88e9fe77e044"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-05T17:37:43.7040494Z","updatedOn":"2021-04-05T17:37:43.7040494Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a04b0948-9635-11eb-b395-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"a04b0948-9635-11eb-b395-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T02:24:39.3826587Z","updatedOn":"2021-04-06T02:24:39.3826587Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c21611b-a840-4166-b9f4-8cec90c17841","type":"Microsoft.Authorization/roleAssignments","name":"6c21611b-a840-4166-b9f4-8cec90c17841"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T02:24:39.4154930Z","updatedOn":"2021-04-06T02:24:39.4154930Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/925d4876-8fde-4334-8f84-4ce52ca7108e","type":"Microsoft.Authorization/roleAssignments","name":"925d4876-8fde-4334-8f84-4ce52ca7108e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T04:46:32.1029699Z","updatedOn":"2021-04-06T04:46:32.1029699Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0dfdb837-9693-11eb-b629-b6178ece78ec","type":"Microsoft.Authorization/roleAssignments","name":"0dfdb837-9693-11eb-b629-b6178ece78ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T11:25:43.5702772Z","updatedOn":"2021-04-06T11:25:43.5702772Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/958a1320-4346-46fb-9722-828af239eb03","type":"Microsoft.Authorization/roleAssignments","name":"958a1320-4346-46fb-9722-828af239eb03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T20:54:21.5921112Z","updatedOn":"2021-04-06T20:54:21.5921112Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42ad5638-971a-11eb-abf6-00155d3a4c00","type":"Microsoft.Authorization/roleAssignments","name":"42ad5638-971a-11eb-abf6-00155d3a4c00"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-06T23:22:50.4425724Z","updatedOn":"2021-04-06T23:22:50.4425724Z","createdBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","updatedBy":"ad232e99-5e1b-414e-aa53-96ae40d39f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00a90f2a-972f-11eb-9121-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"00a90f2a-972f-11eb-9121-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T00:26:49.7250016Z","updatedOn":"2021-04-07T00:26:49.7250016Z","createdBy":"88f18750-8181-4579-8eff-eb44f510655c","updatedBy":"88f18750-8181-4579-8eff-eb44f510655c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dca2df37-fdd1-49dc-a1de-31a70d62e098","type":"Microsoft.Authorization/roleAssignments","name":"dca2df37-fdd1-49dc-a1de-31a70d62e098"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T09:10:47.4905668Z","updatedOn":"2021-04-07T09:10:47.4905668Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a5dbdef-0896-48cd-a325-318e807ea133","type":"Microsoft.Authorization/roleAssignments","name":"8a5dbdef-0896-48cd-a325-318e807ea133"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T19:55:01.1984055Z","updatedOn":"2021-04-07T19:55:01.1984055Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2301d942-97db-11eb-8bf8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2301d942-97db-11eb-8bf8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-07T22:36:06.7954601Z","updatedOn":"2021-04-07T22:36:06.7954601Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6070c7de-7571-4d55-8b2f-85285b7d9675","type":"Microsoft.Authorization/roleAssignments","name":"6070c7de-7571-4d55-8b2f-85285b7d9675"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-13T03:07:16.5183912Z","updatedOn":"2021-04-13T03:07:16.5183912Z","createdBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","updatedBy":"e29d79eb-7dfc-4583-b360-d45d39625c97","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59402850-9c05-11eb-8744-20c9d0477c8f","type":"Microsoft.Authorization/roleAssignments","name":"59402850-9c05-11eb-8744-20c9d0477c8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-14T19:16:13.6465266Z","updatedOn":"2021-04-14T19:16:13.6465266Z","createdBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","updatedBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e04efa46-9d55-11eb-9723-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e04efa46-9d55-11eb-9723-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-15T02:29:06.6768532Z","updatedOn":"2021-04-15T02:29:06.6768532Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/19165f29-858f-47fa-befe-cd1babe9df75","type":"Microsoft.Authorization/roleAssignments","name":"19165f29-858f-47fa-befe-cd1babe9df75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-19T08:59:20.4071341Z","updatedOn":"2021-04-19T08:59:20.4071341Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88489205-a0ed-11eb-996c-1a21256cebfc","type":"Microsoft.Authorization/roleAssignments","name":"88489205-a0ed-11eb-996c-1a21256cebfc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-19T22:35:57.5324093Z","updatedOn":"2021-04-19T22:35:57.5324093Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b85c442-a15f-11eb-8a7c-00155d871f03","type":"Microsoft.Authorization/roleAssignments","name":"9b85c442-a15f-11eb-8a7c-00155d871f03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-04-21T12:31:21.7286225Z","updatedOn":"2021-04-21T12:31:21.7286225Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7770db7c-a29d-11eb-b48f-42472d33150a","type":"Microsoft.Authorization/roleAssignments","name":"7770db7c-a29d-11eb-b48f-42472d33150a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-11T02:49:35.7701861Z","updatedOn":"2021-05-11T02:49:35.7701861Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83c25ed3-b203-11eb-8150-56db513b8477","type":"Microsoft.Authorization/roleAssignments","name":"83c25ed3-b203-11eb-8150-56db513b8477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-12T06:15:49.6202169Z","updatedOn":"2021-05-12T06:15:49.6202169Z","createdBy":"069015af-8ac7-4304-a60f-69a8a50309be","updatedBy":"069015af-8ac7-4304-a60f-69a8a50309be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ecced22-b2e9-11eb-bdc4-da23ac480b85","type":"Microsoft.Authorization/roleAssignments","name":"7ecced22-b2e9-11eb-bdc4-da23ac480b85"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-18T02:08:43.3533001Z","updatedOn":"2021-05-18T02:08:43.3533001Z","createdBy":"069015af-8ac7-4304-a60f-69a8a50309be","updatedBy":"069015af-8ac7-4304-a60f-69a8a50309be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8582f67-b77d-11eb-bffb-52ac6a27ca65","type":"Microsoft.Authorization/roleAssignments","name":"f8582f67-b77d-11eb-bffb-52ac6a27ca65"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-05-24T05:29:46.7966317Z","updatedOn":"2021-05-24T05:29:46.7966317Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d7389dd2-ee8e-4d34-8703-b304716b1761","type":"Microsoft.Authorization/roleAssignments","name":"d7389dd2-ee8e-4d34-8703-b304716b1761"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-01T09:38:20.8655603Z","updatedOn":"2021-06-01T09:38:20.8655603Z","createdBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","updatedBy":"78dfe0f4-529a-4e90-b73a-d719757f014f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18455841-c2bd-11eb-80b3-9a0a2a9b0ea3","type":"Microsoft.Authorization/roleAssignments","name":"18455841-c2bd-11eb-80b3-9a0a2a9b0ea3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-03T16:55:35.8333154Z","updatedOn":"2021-06-03T16:55:35.8333154Z","createdBy":"ae4622a7-bde9-4bca-9599-2d18571bfeba","updatedBy":"ae4622a7-bde9-4bca-9599-2d18571bfeba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83e4c5e8-c48c-11eb-b991-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"83e4c5e8-c48c-11eb-b991-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-07T22:29:50.4448757Z","updatedOn":"2021-06-07T22:29:50.4448757Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/decef2d4-c7df-11eb-a83e-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"decef2d4-c7df-11eb-a83e-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-08T21:20:41.4426747Z","updatedOn":"2021-06-08T21:20:41.4426747Z","createdBy":"39fc5957-4b28-4245-a1ca-0c05574dd32b","updatedBy":"39fc5957-4b28-4245-a1ca-0c05574dd32b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/607bf63e-c89f-11eb-8348-eecc6a504bf0","type":"Microsoft.Authorization/roleAssignments","name":"607bf63e-c89f-11eb-8348-eecc6a504bf0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T14:35:18.7357331Z","updatedOn":"2021-06-15T14:35:18.7357331Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1151242-c950-413d-a273-4109579eac8a","type":"Microsoft.Authorization/roleAssignments","name":"b1151242-c950-413d-a273-4109579eac8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T14:35:18.7937546Z","updatedOn":"2021-06-15T14:35:18.7937546Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dc21aa69-a99c-435e-a256-64885b24ec34","type":"Microsoft.Authorization/roleAssignments","name":"dc21aa69-a99c-435e-a256-64885b24ec34"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-15T15:23:52.9337722Z","updatedOn":"2021-06-15T15:23:52.9337722Z","createdBy":"1faabf99-27a1-4d2e-9e28-295923ee7a14","updatedBy":"1faabf99-27a1-4d2e-9e28-295923ee7a14","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1f9ad80-cded-11eb-81da-86d728f15930","type":"Microsoft.Authorization/roleAssignments","name":"b1f9ad80-cded-11eb-81da-86d728f15930"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-24T01:15:20.6480687Z","updatedOn":"2021-06-24T01:15:20.6480687Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3fe463a-d489-11eb-bcf6-88e9fe77d9d9","type":"Microsoft.Authorization/roleAssignments","name":"a3fe463a-d489-11eb-bcf6-88e9fe77d9d9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T00:02:18.3011415Z","updatedOn":"2021-06-29T00:02:18.3011415Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ba1c6ba-8f43-4749-9af5-b852adc24ec4","type":"Microsoft.Authorization/roleAssignments","name":"6ba1c6ba-8f43-4749-9af5-b852adc24ec4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T00:02:18.3104039Z","updatedOn":"2021-06-29T00:02:18.3104039Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1b67008-79aa-4059-a618-9f31a59e17ad","type":"Microsoft.Authorization/roleAssignments","name":"f1b67008-79aa-4059-a618-9f31a59e17ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-06-29T03:26:28.3273724Z","updatedOn":"2021-06-29T03:26:28.3273724Z","createdBy":"5dc8b685-8bb3-4140-b266-34da5be22de8","updatedBy":"5dc8b685-8bb3-4140-b266-34da5be22de8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cacd20e2-d889-11eb-8faf-365b90995dcc","type":"Microsoft.Authorization/roleAssignments","name":"cacd20e2-d889-11eb-8faf-365b90995dcc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T16:47:51.6512150Z","updatedOn":"2021-07-02T16:47:51.6512150Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ce776fa-db55-11eb-9c3e-0ee0ced9a7ad","type":"Microsoft.Authorization/roleAssignments","name":"3ce776fa-db55-11eb-9c3e-0ee0ced9a7ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T18:02:58.7913777Z","updatedOn":"2021-07-02T18:02:58.7913777Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb92467e-db5f-11eb-93bb-52bfc6c4d939","type":"Microsoft.Authorization/roleAssignments","name":"bb92467e-db5f-11eb-93bb-52bfc6c4d939"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-02T18:34:50.6034803Z","updatedOn":"2021-07-02T18:34:50.6034803Z","createdBy":"88f18750-8181-4579-8eff-eb44f510655c","updatedBy":"88f18750-8181-4579-8eff-eb44f510655c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4e537d7a-5a2e-419c-8c51-0f55adab0793","type":"Microsoft.Authorization/roleAssignments","name":"4e537d7a-5a2e-419c-8c51-0f55adab0793"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-12T18:22:41.0622548Z","updatedOn":"2021-07-12T18:22:41.0622548Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a840989-f344-4bca-97c4-0f91fa1537c6","type":"Microsoft.Authorization/roleAssignments","name":"0a840989-f344-4bca-97c4-0f91fa1537c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-14T19:03:30.7799600Z","updatedOn":"2021-07-14T19:03:30.7799600Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d4385bd-e4d6-11eb-9e75-0a4737195831","type":"Microsoft.Authorization/roleAssignments","name":"2d4385bd-e4d6-11eb-9e75-0a4737195831"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-26T03:44:43.4505353Z","updatedOn":"2021-07-26T03:44:43.4505353Z","createdBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","updatedBy":"9404195a-2cde-4a10-b88c-e7b41572bf31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79b52c96-edc4-11eb-8bd7-1e3bd0e19ace","type":"Microsoft.Authorization/roleAssignments","name":"79b52c96-edc4-11eb-8bd7-1e3bd0e19ace"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-07-28T21:04:39.7105526Z","updatedOn":"2021-07-28T21:04:39.7105526Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b9c8936-efe7-11eb-9484-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6b9c8936-efe7-11eb-9484-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-04T02:14:38.2049441Z","updatedOn":"2021-08-04T02:14:38.2049441Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b8013ec0-f4c9-11eb-999a-000d3a4fc0a9","type":"Microsoft.Authorization/roleAssignments","name":"b8013ec0-f4c9-11eb-999a-000d3a4fc0a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e3c35f4c-e0ca-4b9e-a01e-5ebdd17e2ee7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-04T18:45:22.7030533Z","updatedOn":"2021-08-04T18:45:22.7030533Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b007f9b6-e259-4c24-b8f1-4b74e434b776","type":"Microsoft.Authorization/roleAssignments","name":"b007f9b6-e259-4c24-b8f1-4b74e434b776"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-10T18:57:36.3877809Z","updatedOn":"2021-08-10T18:57:36.3877809Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d31d5edd-fa0c-11eb-a4e8-00155d4b0124","type":"Microsoft.Authorization/roleAssignments","name":"d31d5edd-fa0c-11eb-a4e8-00155d4b0124"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-11T13:17:28.5790828Z","updatedOn":"2021-08-11T13:17:28.5790828Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79c9ac4e-faa6-11eb-9265-9e748a6ca3f5","type":"Microsoft.Authorization/roleAssignments","name":"79c9ac4e-faa6-11eb-9265-9e748a6ca3f5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-24T20:40:36.9427810Z","updatedOn":"2021-08-24T20:40:36.9427810Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89077b4a-051b-11ec-b690-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"89077b4a-051b-11ec-b690-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-25T04:55:32.8103400Z","updatedOn":"2021-08-25T04:55:32.8103400Z","createdBy":"d8f2c3f8-41bf-41ae-aedb-23c9387322a8","updatedBy":"d8f2c3f8-41bf-41ae-aedb-23c9387322a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad278da4-0560-11ec-bfcc-00249b623abd","type":"Microsoft.Authorization/roleAssignments","name":"ad278da4-0560-11ec-bfcc-00249b623abd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-08-31T23:45:51.8536519Z","updatedOn":"2021-08-31T23:45:51.8536519Z","createdBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","updatedBy":"df7de5cc-1fc8-462d-be1d-bcbc2576454a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92d8ca73-0ab5-11ec-9a80-00224809727f","type":"Microsoft.Authorization/roleAssignments","name":"92d8ca73-0ab5-11ec-9a80-00224809727f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-13T19:32:31.3713301Z","updatedOn":"2021-09-13T19:32:31.3713301Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/55fb0a56-14c9-11ec-ba1a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"55fb0a56-14c9-11ec-ba1a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-17T20:45:08.1118919Z","updatedOn":"2021-09-17T20:45:08.1118919Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/246a4240-17f8-11ec-a87c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"246a4240-17f8-11ec-a87c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T13:55:46.1211332Z","updatedOn":"2021-09-20T13:55:46.1211332Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/738cb0ee-1a1a-11ec-bce5-7a98cea1d963","type":"Microsoft.Authorization/roleAssignments","name":"738cb0ee-1a1a-11ec-bce5-7a98cea1d963"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T16:02:49.0433199Z","updatedOn":"2021-09-20T16:02:49.0433199Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/332824b6-1a2c-11ec-94e6-dadb5e134e96","type":"Microsoft.Authorization/roleAssignments","name":"332824b6-1a2c-11ec-94e6-dadb5e134e96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-20T18:45:44.1610490Z","updatedOn":"2021-09-20T18:45:44.1610490Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5aacbbc-1a42-11ec-82e7-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f5aacbbc-1a42-11ec-82e7-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-23T14:26:16.9983531Z","updatedOn":"2021-09-23T14:26:16.9983531Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35e02c16-1c7a-11ec-aba5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"35e02c16-1c7a-11ec-aba5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-09-29T01:26:50.3419658Z","updatedOn":"2021-09-29T01:26:50.3419658Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47eee8e3-89cd-4112-86a8-19f848334dd1","type":"Microsoft.Authorization/roleAssignments","name":"47eee8e3-89cd-4112-86a8-19f848334dd1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-04T20:39:52.4258668Z","updatedOn":"2021-10-04T20:39:52.4258668Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/395b589c-2553-11ec-8d77-000d3af95835","type":"Microsoft.Authorization/roleAssignments","name":"395b589c-2553-11ec-8d77-000d3af95835"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-07T22:03:00.0914961Z","updatedOn":"2021-10-07T22:03:00.0914961Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/554cbdbb-27ba-11ec-9441-ba8d312253c4","type":"Microsoft.Authorization/roleAssignments","name":"554cbdbb-27ba-11ec-9441-ba8d312253c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-07T22:03:56.3285135Z","updatedOn":"2021-10-07T22:03:56.3285135Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/76aa862c-27ba-11ec-a4ef-ba8d312253c4","type":"Microsoft.Authorization/roleAssignments","name":"76aa862c-27ba-11ec-a4ef-ba8d312253c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T18:53:10.3503826Z","updatedOn":"2021-10-08T18:53:10.3503826Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d9510e6f-d37b-4ce8-8a3b-78e5447b11c4","type":"Microsoft.Authorization/roleAssignments","name":"d9510e6f-d37b-4ce8-8a3b-78e5447b11c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-08T18:59:59.4287762Z","updatedOn":"2021-10-08T18:59:59.4287762Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d1a6d17-6c0a-4105-b86a-dcc55fe735e7","type":"Microsoft.Authorization/roleAssignments","name":"3d1a6d17-6c0a-4105-b86a-dcc55fe735e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-11T22:29:20.4165411Z","updatedOn":"2021-10-11T22:29:20.4165411Z","createdBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","updatedBy":"bcb58688-52a2-4233-8ce7-b4c7b8e108c8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5b65050-4b50-4b02-bea3-5986eccdd944","type":"Microsoft.Authorization/roleAssignments","name":"b5b65050-4b50-4b02-bea3-5986eccdd944"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-12T21:09:25.3258237Z","updatedOn":"2021-10-12T21:09:25.3258237Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/869d24c2-b6b1-4a26-9b9c-c50ecb64bc31","type":"Microsoft.Authorization/roleAssignments","name":"869d24c2-b6b1-4a26-9b9c-c50ecb64bc31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-13T08:19:03.1448099Z","updatedOn":"2021-10-13T08:19:03.1448099Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8869be9-f94e-47ae-90cb-c4d9bcb5b629","type":"Microsoft.Authorization/roleAssignments","name":"f8869be9-f94e-47ae-90cb-c4d9bcb5b629"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T04:53:25.9502873Z","updatedOn":"2021-10-14T04:53:36.3280652Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f622c27f-a03d-4fb8-b17d-7281dc0a984f","type":"Microsoft.Authorization/roleAssignments","name":"f622c27f-a03d-4fb8-b17d-7281dc0a984f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:26:21.6452814Z","updatedOn":"2021-10-14T05:26:21.6452814Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/439e7a28-2caf-11ec-ae23-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"439e7a28-2caf-11ec-ae23-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:54.7980840Z","updatedOn":"2021-10-14T05:37:54.7980840Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e049894b-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e049894b-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:56.1220463Z","updatedOn":"2021-10-14T05:37:56.1220463Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e1920687-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e1920687-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:37:58.2164501Z","updatedOn":"2021-10-14T05:37:58.2164501Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2809f7d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e2809f7d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:00.1774570Z","updatedOn":"2021-10-14T05:38:00.1774570Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3b78568-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e3b78568-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:01.6914375Z","updatedOn":"2021-10-14T05:38:01.6914375Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4e3f0fc-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e4e3f0fc-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:03.1856045Z","updatedOn":"2021-10-14T05:38:03.1856045Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e5c7c168-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e5c7c168-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:04.4121266Z","updatedOn":"2021-10-14T05:38:04.4121266Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e6847f02-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e6847f02-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:05.9623251Z","updatedOn":"2021-10-14T05:38:05.9623251Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7681b77-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e7681b77-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:07.5974823Z","updatedOn":"2021-10-14T05:38:07.5974823Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e82df158-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e82df158-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:09.3591403Z","updatedOn":"2021-10-14T05:38:09.3591403Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e94e3dd9-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"e94e3dd9-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:11.1652349Z","updatedOn":"2021-10-14T05:38:11.1652349Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea5dbe0d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"ea5dbe0d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:12.6474393Z","updatedOn":"2021-10-14T05:38:12.6474393Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb6e896d-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"eb6e896d-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T05:38:15.1702403Z","updatedOn":"2021-10-14T05:38:15.1702403Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eceee9a0-2cb0-11ec-b830-0022487a7979","type":"Microsoft.Authorization/roleAssignments","name":"eceee9a0-2cb0-11ec-b830-0022487a7979"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T06:22:44.8991960Z","updatedOn":"2021-10-14T06:22:44.8991960Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2447d2a2-2cb7-11ec-91be-00224878e942","type":"Microsoft.Authorization/roleAssignments","name":"2447d2a2-2cb7-11ec-91be-00224878e942"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T06:22:46.4374928Z","updatedOn":"2021-10-14T06:22:46.4374928Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/251fc151-2cb7-11ec-91be-00224878e942","type":"Microsoft.Authorization/roleAssignments","name":"251fc151-2cb7-11ec-91be-00224878e942"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:33:15.8218562Z","updatedOn":"2021-10-14T07:33:15.8218562Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe04afe4-2cc0-11ec-81ff-0022487b1e92","type":"Microsoft.Authorization/roleAssignments","name":"fe04afe4-2cc0-11ec-81ff-0022487b1e92"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:18.3020716Z","updatedOn":"2021-10-14T07:59:18.3020716Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a1518374-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a1518374-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:20.8876342Z","updatedOn":"2021-10-14T07:59:20.8876342Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a311df17-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a311df17-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T07:59:22.4477860Z","updatedOn":"2021-10-14T07:59:22.4477860Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3c5b71e-2cc4-11ec-8880-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"a3c5b71e-2cc4-11ec-8880-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:23.1051657Z","updatedOn":"2021-10-14T08:07:23.1051657Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c227b3cc-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c227b3cc-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:23.5151178Z","updatedOn":"2021-10-14T08:07:23.5151178Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c29ac901-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c29ac901-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:25.7287942Z","updatedOn":"2021-10-14T08:07:25.7287942Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c40b5411-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c40b5411-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:07:27.2660976Z","updatedOn":"2021-10-14T08:07:27.2660976Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c4cb6a30-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"c4cb6a30-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:08:16.5190337Z","updatedOn":"2021-10-14T08:08:16.5190337Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e226a828-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"e226a828-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T08:08:17.7439429Z","updatedOn":"2021-10-14T08:08:17.7439429Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2e43f64-2cc5-11ec-b225-0022487a0c80","type":"Microsoft.Authorization/roleAssignments","name":"e2e43f64-2cc5-11ec-b225-0022487a0c80"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T09:12:04.1832243Z","updatedOn":"2021-10-14T09:12:04.1832243Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5c9e442c-9d64-4022-9246-0c1c21af04be","type":"Microsoft.Authorization/roleAssignments","name":"5c9e442c-9d64-4022-9246-0c1c21af04be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T17:07:28.8635845Z","updatedOn":"2021-10-14T17:07:28.8635845Z","createdBy":"1b081df7-da49-42b3-a427-9cb93114bf07","updatedBy":"1b081df7-da49-42b3-a427-9cb93114bf07","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ed48d615-e7d8-4aef-90c7-332d7329e41c","type":"Microsoft.Authorization/roleAssignments","name":"ed48d615-e7d8-4aef-90c7-332d7329e41c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T18:16:37.9837987Z","updatedOn":"2021-10-14T18:16:37.9837987Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/debb0903-2d1a-11ec-a603-000d3a06aaec","type":"Microsoft.Authorization/roleAssignments","name":"debb0903-2d1a-11ec-a603-000d3a06aaec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-14T18:39:15.5366398Z","updatedOn":"2021-10-14T18:39:15.5366398Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07caa301-2d1e-11ec-a2ea-0022487748c3","type":"Microsoft.Authorization/roleAssignments","name":"07caa301-2d1e-11ec-a2ea-0022487748c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-15T17:37:53.7293023Z","updatedOn":"2021-10-15T17:37:53.7293023Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fbd09f2-2dde-11ec-b3e4-000d3a064a8a","type":"Microsoft.Authorization/roleAssignments","name":"9fbd09f2-2dde-11ec-b3e4-000d3a064a8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-18T06:22:38.4617338Z","updatedOn":"2021-10-18T06:22:38.4617338Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70844448-8be3-4c6f-9edf-443944f85a5a","type":"Microsoft.Authorization/roleAssignments","name":"70844448-8be3-4c6f-9edf-443944f85a5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-19T11:29:40.0474212Z","updatedOn":"2021-10-19T11:29:40.0474212Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d86e727f-30cf-11ec-bc8b-000d3ac2ec2b","type":"Microsoft.Authorization/roleAssignments","name":"d86e727f-30cf-11ec-bc8b-000d3ac2ec2b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-20T20:57:56.8996523Z","updatedOn":"2021-10-20T20:57:56.8996523Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66303328-31e8-11ec-99f4-000d3ac5c858","type":"Microsoft.Authorization/roleAssignments","name":"66303328-31e8-11ec-99f4-000d3ac5c858"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-21T15:12:00.0677049Z","updatedOn":"2021-10-21T15:12:00.0677049Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b630a77a-9e75-417f-b251-1584163d8926","type":"Microsoft.Authorization/roleAssignments","name":"b630a77a-9e75-417f-b251-1584163d8926"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-25T21:32:26.0121360Z","updatedOn":"2021-10-25T21:32:26.0121360Z","createdBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","updatedBy":"5b61bc1a-82ca-405c-9768-3ddada621e1b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b15fba8-35db-11ec-b404-8c8590c603ee","type":"Microsoft.Authorization/roleAssignments","name":"0b15fba8-35db-11ec-b404-8c8590c603ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T07:30:52.4116907Z","updatedOn":"2021-10-26T07:30:52.4116907Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e78ac58b-8cfe-4ff6-9ac6-41453615c7e8","type":"Microsoft.Authorization/roleAssignments","name":"e78ac58b-8cfe-4ff6-9ac6-41453615c7e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T13:47:01.3444676Z","updatedOn":"2021-10-26T13:47:01.3444676Z","createdBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","updatedBy":"8b55a80b-e913-48bc-bb0b-fc9ed5ee11d9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4933f1cd-0863-4429-a5be-3a81b2f80105","type":"Microsoft.Authorization/roleAssignments","name":"4933f1cd-0863-4429-a5be-3a81b2f80105"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-26T20:43:39.1375235Z","updatedOn":"2021-10-26T20:43:39.1375235Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad8f56c5-19b6-4e9f-b20f-8e3789a93873","type":"Microsoft.Authorization/roleAssignments","name":"ad8f56c5-19b6-4e9f-b20f-8e3789a93873"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-27T01:02:05.1338691Z","updatedOn":"2021-10-27T01:02:05.1338691Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a83de9c2-2bd5-4ba1-bc50-08d475a290a0","type":"Microsoft.Authorization/roleAssignments","name":"a83de9c2-2bd5-4ba1-bc50-08d475a290a0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-10-28T00:14:34.9745357Z","updatedOn":"2021-10-28T00:14:34.9745357Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3366cd2-4d12-4dbb-b05d-5e914628e986","type":"Microsoft.Authorization/roleAssignments","name":"e3366cd2-4d12-4dbb-b05d-5e914628e986"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-02T23:39:52.9481031Z","updatedOn":"2021-11-02T23:39:52.9481031Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0e37c03-a8a7-4765-af41-9a8584ad6413","type":"Microsoft.Authorization/roleAssignments","name":"b0e37c03-a8a7-4765-af41-9a8584ad6413"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/c7393b34-138c-406f-901b-d8cf2b17e6ae","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T15:46:17.8935538Z","updatedOn":"2021-11-03T15:46:17.8935538Z","createdBy":"","updatedBy":"","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5b0e8d6-e30f-42a5-918c-01299416da2c","type":"Microsoft.Authorization/roleAssignments","name":"b5b0e8d6-e30f-42a5-918c-01299416da2c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T21:43:39.4750265Z","updatedOn":"2021-11-03T21:43:39.4750265Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/683b4375-f318-428e-a885-232a29ec8559","type":"Microsoft.Authorization/roleAssignments","name":"683b4375-f318-428e-a885-232a29ec8559"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-03T21:56:29.9810805Z","updatedOn":"2021-11-03T21:56:29.9810805Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e560c31c-8c6e-4bf0-9828-b2db658455b7","type":"Microsoft.Authorization/roleAssignments","name":"e560c31c-8c6e-4bf0-9828-b2db658455b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T06:06:21.8922666Z","updatedOn":"2021-11-04T06:06:21.8922666Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e1dcc78b-03c3-4db3-95a8-643dbcbbf2a3","type":"Microsoft.Authorization/roleAssignments","name":"e1dcc78b-03c3-4db3-95a8-643dbcbbf2a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T17:22:28.0293110Z","updatedOn":"2021-11-04T17:22:28.0293110Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84a6167f-c7d5-4404-b786-85fe4327c0ba","type":"Microsoft.Authorization/roleAssignments","name":"84a6167f-c7d5-4404-b786-85fe4327c0ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-04T17:24:51.0627597Z","updatedOn":"2021-11-04T17:24:51.0627597Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ff23217-f8a8-4e77-baee-41850cfb5554","type":"Microsoft.Authorization/roleAssignments","name":"8ff23217-f8a8-4e77-baee-41850cfb5554"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T05:21:11.0446928Z","updatedOn":"2021-11-16T05:21:11.0446928Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d01bef88-e1fa-4fc2-bd98-6845063b53b9","type":"Microsoft.Authorization/roleAssignments","name":"d01bef88-e1fa-4fc2-bd98-6845063b53b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T05:22:06.5362889Z","updatedOn":"2021-11-16T05:22:06.5362889Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/784d9b03-5635-4c89-ae5b-5c11ceff8a4c","type":"Microsoft.Authorization/roleAssignments","name":"784d9b03-5635-4c89-ae5b-5c11ceff8a4c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-16T21:47:20.3762106Z","updatedOn":"2021-11-16T21:47:20.3762106Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/19b8a839-de9e-4712-a227-686679e98414","type":"Microsoft.Authorization/roleAssignments","name":"19b8a839-de9e-4712-a227-686679e98414"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T05:28:26.3873952Z","updatedOn":"2021-11-17T05:28:26.3873952Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a6cb292-435b-45d4-9f44-2dedb6f80804","type":"Microsoft.Authorization/roleAssignments","name":"4a6cb292-435b-45d4-9f44-2dedb6f80804"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T08:37:53.6375476Z","updatedOn":"2021-11-17T08:37:53.6375476Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7314a76-4781-11ec-9554-2eaf851e2751","type":"Microsoft.Authorization/roleAssignments","name":"a7314a76-4781-11ec-9554-2eaf851e2751"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-17T20:29:38.7986222Z","updatedOn":"2021-11-17T20:29:38.7986222Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41224d04-5912-49e9-98f2-df2d0c5768ed","type":"Microsoft.Authorization/roleAssignments","name":"41224d04-5912-49e9-98f2-df2d0c5768ed"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-23T02:37:39.0525328Z","updatedOn":"2021-11-23T02:37:39.0525328Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2917b10b-1776-4726-9e2a-1406d35584aa","type":"Microsoft.Authorization/roleAssignments","name":"2917b10b-1776-4726-9e2a-1406d35584aa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-24T04:19:48.8430130Z","updatedOn":"2021-11-24T04:19:48.8430130Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4738453f-e889-4428-817e-a18655a6df71","type":"Microsoft.Authorization/roleAssignments","name":"4738453f-e889-4428-817e-a18655a6df71"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-29T22:16:27.4091202Z","updatedOn":"2021-11-29T22:16:27.4091202Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dfaf3275-7f8c-449f-875f-d74ca2998764","type":"Microsoft.Authorization/roleAssignments","name":"dfaf3275-7f8c-449f-875f-d74ca2998764"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T06:59:34.7676928Z","updatedOn":"2021-11-30T06:59:34.7676928Z","createdBy":"471feb6d-5a83-439e-af7b-311f4eee2d0c","updatedBy":"471feb6d-5a83-439e-af7b-311f4eee2d0c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5848b58-7658-45ae-b979-fb230968ddf7","type":"Microsoft.Authorization/roleAssignments","name":"d5848b58-7658-45ae-b979-fb230968ddf7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T20:03:43.2359682Z","updatedOn":"2021-11-30T20:03:43.2359682Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3be3018e-84c0-48a4-bb36-fa997df4a911","type":"Microsoft.Authorization/roleAssignments","name":"3be3018e-84c0-48a4-bb36-fa997df4a911"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-11-30T22:23:07.4635927Z","updatedOn":"2021-11-30T22:23:07.4635927Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc52b5ce-1a69-4afd-aaab-745522d55219","type":"Microsoft.Authorization/roleAssignments","name":"fc52b5ce-1a69-4afd-aaab-745522d55219"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T02:05:06.3947111Z","updatedOn":"2021-12-01T02:05:06.3947111Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bfd977a2-74fb-4e8f-88a6-72b675ad0813","type":"Microsoft.Authorization/roleAssignments","name":"bfd977a2-74fb-4e8f-88a6-72b675ad0813"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T23:14:48.6056041Z","updatedOn":"2021-12-01T23:14:48.6056041Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2c2675a2-a48c-492f-a4d5-835ffdf8e57e","type":"Microsoft.Authorization/roleAssignments","name":"2c2675a2-a48c-492f-a4d5-835ffdf8e57e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-01T23:44:16.3921051Z","updatedOn":"2021-12-01T23:44:16.3921051Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc791163-7d7a-4988-96f8-969053cb4d75","type":"Microsoft.Authorization/roleAssignments","name":"bc791163-7d7a-4988-96f8-969053cb4d75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T07:40:53.7263371Z","updatedOn":"2021-12-02T07:40:53.7263371Z","createdBy":"027bf6cf-7fd4-4a57-80d7-4e52bd1fea5b","updatedBy":"027bf6cf-7fd4-4a57-80d7-4e52bd1fea5b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c592d108-71a6-4fbd-89f7-06c1656d0c93","type":"Microsoft.Authorization/roleAssignments","name":"c592d108-71a6-4fbd-89f7-06c1656d0c93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:36.8568746Z","updatedOn":"2021-12-02T08:41:36.8568746Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a8b008b0-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a8b008b0-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:38.4974834Z","updatedOn":"2021-12-02T08:41:38.4974834Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9ad9deb-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a9ad9deb-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:38.6316008Z","updatedOn":"2021-12-02T08:41:38.6316008Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9aa81cd-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a9aa81cd-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T08:41:38.6311993Z","updatedOn":"2021-12-02T08:41:38.6311993Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9c0a1a6-534b-11ec-b6a7-000d3ac3c4a3","type":"Microsoft.Authorization/roleAssignments","name":"a9c0a1a6-534b-11ec-b6a7-000d3ac3c4a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T21:35:31.3727027Z","updatedOn":"2021-12-02T21:35:31.3727027Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/663204fa-95cb-45a0-938f-d817824509dd","type":"Microsoft.Authorization/roleAssignments","name":"663204fa-95cb-45a0-938f-d817824509dd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T22:09:46.1565055Z","updatedOn":"2021-12-02T22:09:46.1565055Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e97a88c4-e035-453b-b767-a3dbfadfd28d","type":"Microsoft.Authorization/roleAssignments","name":"e97a88c4-e035-453b-b767-a3dbfadfd28d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-02T23:10:20.2170014Z","updatedOn":"2021-12-02T23:10:20.2170014Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/afd2116e-f2ce-4bc2-8924-fb6f0c620d64","type":"Microsoft.Authorization/roleAssignments","name":"afd2116e-f2ce-4bc2-8924-fb6f0c620d64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-03T00:07:35.7286641Z","updatedOn":"2021-12-03T00:07:35.7286641Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/56d1c441-73b9-4b86-acc9-260016c81330","type":"Microsoft.Authorization/roleAssignments","name":"56d1c441-73b9-4b86-acc9-260016c81330"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-03T18:42:59.5078987Z","updatedOn":"2021-12-03T18:42:59.5078987Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b083534f-ae88-4db8-b65f-150284339772","type":"Microsoft.Authorization/roleAssignments","name":"b083534f-ae88-4db8-b65f-150284339772"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-03T21:00:00.5789423Z","updatedOn":"2021-12-03T21:00:00.5789423Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8684384c-7276-4e65-b708-6766a7c3a876","type":"Microsoft.Authorization/roleAssignments","name":"8684384c-7276-4e65-b708-6766a7c3a876"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-04T00:50:10.8909441Z","updatedOn":"2021-12-04T00:50:10.8909441Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cb7855e-82da-4910-b4ce-5f38896c067a","type":"Microsoft.Authorization/roleAssignments","name":"3cb7855e-82da-4910-b4ce-5f38896c067a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-07T12:35:57.6917673Z","updatedOn":"2021-12-07T12:35:57.6917673Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39e64286-575a-11ec-95aa-002248232e56","type":"Microsoft.Authorization/roleAssignments","name":"39e64286-575a-11ec-95aa-002248232e56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-07T23:18:12.3548251Z","updatedOn":"2021-12-07T23:18:12.3548251Z","createdBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","updatedBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f2265a95-57b3-11ec-a8e6-de1bbdf97372","type":"Microsoft.Authorization/roleAssignments","name":"f2265a95-57b3-11ec-a8e6-de1bbdf97372"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-08T03:01:28.5641674Z","updatedOn":"2021-12-08T03:01:28.5641674Z","createdBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","updatedBy":"543ae166-9502-4bef-8d02-7b2276cb54ee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2232ec95-57d3-11ec-bbe2-de1bbdf97372","type":"Microsoft.Authorization/roleAssignments","name":"2232ec95-57d3-11ec-bbe2-de1bbdf97372"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-08T03:07:36.8342803Z","updatedOn":"2021-12-08T03:07:36.8342803Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f1920cc-5cca-44c7-8175-d46948a9283f","type":"Microsoft.Authorization/roleAssignments","name":"9f1920cc-5cca-44c7-8175-d46948a9283f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-08T13:07:30.9635867Z","updatedOn":"2021-12-08T13:07:30.9635867Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc6359bd-5827-11ec-a516-000d3afc9734","type":"Microsoft.Authorization/roleAssignments","name":"cc6359bd-5827-11ec-a516-000d3afc9734"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-09T17:37:01.4296706Z","updatedOn":"2021-12-09T17:37:01.4296706Z","createdBy":"ae195f21-9b44-473d-9920-601e7899b56d","updatedBy":"ae195f21-9b44-473d-9920-601e7899b56d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9be22fd0-5916-11ec-b5a3-469e91f29611","type":"Microsoft.Authorization/roleAssignments","name":"9be22fd0-5916-11ec-b5a3-469e91f29611"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-10T14:31:24.3746709Z","updatedOn":"2021-12-10T14:31:24.3746709Z","createdBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","updatedBy":"948486bd-c8c5-4c55-9529-ba2b9ae7fa22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d9b6ef44-59c5-11ec-800e-0022487c3cbe","type":"Microsoft.Authorization/roleAssignments","name":"d9b6ef44-59c5-11ec-800e-0022487c3cbe"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-13T07:46:54.6104588Z","updatedOn":"2021-12-13T07:46:54.6104588Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c65fe6b5-5be8-11ec-b892-000d3a518d38","type":"Microsoft.Authorization/roleAssignments","name":"c65fe6b5-5be8-11ec-b892-000d3a518d38"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-17T03:03:12.7081063Z","updatedOn":"2021-12-17T03:03:12.7081063Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/deb2cb98-5ee5-11ec-bd7f-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"deb2cb98-5ee5-11ec-bd7f-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-18T06:04:20.9532091Z","updatedOn":"2021-12-18T06:04:20.9532091Z","createdBy":"19263705-0667-497e-85e7-a930fa3441ec","updatedBy":"19263705-0667-497e-85e7-a930fa3441ec","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6eb35762-bc37-4c24-aec0-389e7cb97f95","type":"Microsoft.Authorization/roleAssignments","name":"6eb35762-bc37-4c24-aec0-389e7cb97f95"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-22T09:15:23.9226458Z","updatedOn":"2021-12-22T09:15:23.9226458Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7a9e1ec4-8728-4723-9fca-709f8549e3ac","type":"Microsoft.Authorization/roleAssignments","name":"7a9e1ec4-8728-4723-9fca-709f8549e3ac"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-12-22T19:37:32.9555793Z","updatedOn":"2021-12-22T19:37:32.9555793Z","createdBy":"121978e2-c5f7-437f-b950-07f832f9f06c","updatedBy":"121978e2-c5f7-437f-b950-07f832f9f06c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a77cfdf9-fd0d-43f5-ba0d-0d36c8c1818e","type":"Microsoft.Authorization/roleAssignments","name":"a77cfdf9-fd0d-43f5-ba0d-0d36c8c1818e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-28T17:11:37.6373944Z","updatedOn":"2022-09-28T17:11:37.6373944Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b564621-3f50-11ed-918f-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"9b564621-3f50-11ed-918f-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-28T17:11:52.2247561Z","updatedOn":"2022-09-28T17:11:52.2247561Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a3d8aeee-3f50-11ed-918f-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"a3d8aeee-3f50-11ed-918f-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-28T18:45:35.3728959Z","updatedOn":"2022-09-28T18:45:35.3728959Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5bb18d5f-3c20-4899-a01f-58313b28c345","type":"Microsoft.Authorization/roleAssignments","name":"5bb18d5f-3c20-4899-a01f-58313b28c345"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-30T18:34:26.1480517Z","updatedOn":"2022-09-30T18:34:26.1480517Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/828f43f9-40ee-11ed-9683-0022482b84fb","type":"Microsoft.Authorization/roleAssignments","name":"828f43f9-40ee-11ed-9683-0022482b84fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-30T18:34:28.0235766Z","updatedOn":"2022-09-30T18:34:28.0235766Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/83a3304a-40ee-11ed-9683-0022482b84fb","type":"Microsoft.Authorization/roleAssignments","name":"83a3304a-40ee-11ed-9683-0022482b84fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T14:35:19.0321994Z","updatedOn":"2022-10-03T14:35:19.0321994Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99965ae6-4328-11ed-939f-aae2aa7b83bb","type":"Microsoft.Authorization/roleAssignments","name":"99965ae6-4328-11ed-939f-aae2aa7b83bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T14:35:23.0970392Z","updatedOn":"2022-10-03T14:35:23.0970392Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9c1721f9-4328-11ed-939f-aae2aa7b83bb","type":"Microsoft.Authorization/roleAssignments","name":"9c1721f9-4328-11ed-939f-aae2aa7b83bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T18:39:25.8455066Z","updatedOn":"2022-10-03T18:39:25.8455066Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":"adding + my aksdev SPs per https://dev.azure.com/msazure/CloudNativeCompute/_wiki/wikis/CloudNativeCompute.wiki/54089/Standalone-Environment-Usage?anchor=authentication-failed-issues"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b4fc89b2-a0bc-4661-a4f4-96170e3da3c3","type":"Microsoft.Authorization/roleAssignments","name":"b4fc89b2-a0bc-4661-a4f4-96170e3da3c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T21:14:21.6709207Z","updatedOn":"2022-10-03T21:14:21.6709207Z","createdBy":"2182129f-e575-4986-a7fb-2be7772ba46f","updatedBy":"2182129f-e575-4986-a7fb-2be7772ba46f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/58ef0b60-4360-11ed-84ae-4ef510510e8a","type":"Microsoft.Authorization/roleAssignments","name":"58ef0b60-4360-11ed-84ae-4ef510510e8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-03T21:14:25.9942421Z","updatedOn":"2022-10-03T21:14:25.9942421Z","createdBy":"2182129f-e575-4986-a7fb-2be7772ba46f","updatedBy":"2182129f-e575-4986-a7fb-2be7772ba46f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5b271148-4360-11ed-84ae-4ef510510e8a","type":"Microsoft.Authorization/roleAssignments","name":"5b271148-4360-11ed-84ae-4ef510510e8a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T08:46:58.1120536Z","updatedOn":"2022-10-04T08:46:58.1120536Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46d7c91e-4182-4715-9d5c-c143514d0e96","type":"Microsoft.Authorization/roleAssignments","name":"46d7c91e-4182-4715-9d5c-c143514d0e96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T08:46:58.7908585Z","updatedOn":"2022-10-04T08:46:58.7908585Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0215f1ea-81dc-42cd-b2b0-62ed51ec1e8f","type":"Microsoft.Authorization/roleAssignments","name":"0215f1ea-81dc-42cd-b2b0-62ed51ec1e8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T15:17:47.0575990Z","updatedOn":"2022-10-04T15:17:47.0575990Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09dff59a-a350-4eb7-b515-b439773bf953","type":"Microsoft.Authorization/roleAssignments","name":"09dff59a-a350-4eb7-b515-b439773bf953"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T20:25:24.7922965Z","updatedOn":"2022-10-04T20:25:24.7922965Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac245566-4422-11ed-b4e4-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"ac245566-4422-11ed-b4e4-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-04T20:25:29.7192947Z","updatedOn":"2022-10-04T20:25:29.7192947Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/af78cdbe-4422-11ed-b4e4-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"af78cdbe-4422-11ed-b4e4-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-05T17:17:50.2296097Z","updatedOn":"2022-10-05T17:17:50.2296097Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/18d61426-19b2-45ab-a04c-35bf0954b5f2","type":"Microsoft.Authorization/roleAssignments","name":"18d61426-19b2-45ab-a04c-35bf0954b5f2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T21:18:34.5111716Z","updatedOn":"2022-10-06T21:18:34.5111716Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/90e84a6f-382e-4cd0-8b7c-249f30414d26","type":"Microsoft.Authorization/roleAssignments","name":"90e84a6f-382e-4cd0-8b7c-249f30414d26"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T21:19:26.0775289Z","updatedOn":"2022-10-06T21:19:26.0775289Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/245ffe6b-708b-41b4-b4a5-0328063f9511","type":"Microsoft.Authorization/roleAssignments","name":"245ffe6b-708b-41b4-b4a5-0328063f9511"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T22:01:04.9042316Z","updatedOn":"2022-10-06T22:01:04.9042316Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/809518d2-215b-449f-9909-1cf5275f82ff","type":"Microsoft.Authorization/roleAssignments","name":"809518d2-215b-449f-9909-1cf5275f82ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-06T22:01:18.8874783Z","updatedOn":"2022-10-06T22:01:18.8874783Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/50ca23bf-0051-4116-a073-86a9415cc7e4","type":"Microsoft.Authorization/roleAssignments","name":"50ca23bf-0051-4116-a073-86a9415cc7e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T00:36:14.3318961Z","updatedOn":"2022-10-07T00:36:14.3318961Z","createdBy":"b3ae1fad-98a9-46c4-bd0b-193e8efd9450","updatedBy":"b3ae1fad-98a9-46c4-bd0b-193e8efd9450","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ba8ceaf-45d8-11ed-bb9e-0eabbd04010c","type":"Microsoft.Authorization/roleAssignments","name":"0ba8ceaf-45d8-11ed-bb9e-0eabbd04010c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:18.2176259Z","updatedOn":"2022-10-07T16:36:18.2176259Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0eafb5be-ea9a-495c-82c9-8337449b1150","type":"Microsoft.Authorization/roleAssignments","name":"0eafb5be-ea9a-495c-82c9-8337449b1150"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:22.7662640Z","updatedOn":"2022-10-07T16:36:22.7662640Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7cb15a6c-7b73-430f-91aa-02113db930cb","type":"Microsoft.Authorization/roleAssignments","name":"7cb15a6c-7b73-430f-91aa-02113db930cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:29.4358024Z","updatedOn":"2022-10-07T16:36:29.4358024Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1b259a44-7824-434b-8f81-8df465b85fd5","type":"Microsoft.Authorization/roleAssignments","name":"1b259a44-7824-434b-8f81-8df465b85fd5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:33.7158336Z","updatedOn":"2022-10-07T16:36:33.7158336Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3156b3a1-bc03-4d84-b2df-09d0d0eab4b1","type":"Microsoft.Authorization/roleAssignments","name":"3156b3a1-bc03-4d84-b2df-09d0d0eab4b1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-07T16:36:35.7999116Z","updatedOn":"2022-10-07T16:36:35.7999116Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1d30073-ff57-48fa-96e7-dfc85b8c7975","type":"Microsoft.Authorization/roleAssignments","name":"b1d30073-ff57-48fa-96e7-dfc85b8c7975"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-09T05:08:21.9096837Z","updatedOn":"2022-10-09T05:08:21.9096837Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d747b25-fa91-4429-a72b-0a4e2079ed03","type":"Microsoft.Authorization/roleAssignments","name":"8d747b25-fa91-4429-a72b-0a4e2079ed03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-10T05:53:40.9849719Z","updatedOn":"2022-10-10T05:53:40.9849719Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3cfb29d-485f-11ed-b38e-562c47d8c70b","type":"Microsoft.Authorization/roleAssignments","name":"e3cfb29d-485f-11ed-b38e-562c47d8c70b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-10T05:53:46.7676576Z","updatedOn":"2022-10-10T05:53:46.7676576Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e6c4b18f-485f-11ed-b38e-562c47d8c70b","type":"Microsoft.Authorization/roleAssignments","name":"e6c4b18f-485f-11ed-b38e-562c47d8c70b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-10T19:26:54.0213364Z","updatedOn":"2022-10-10T19:26:54.0213364Z","createdBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","updatedBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ed9bd3d-48d1-11ed-8d0c-000d3af6a88e","type":"Microsoft.Authorization/roleAssignments","name":"7ed9bd3d-48d1-11ed-8d0c-000d3af6a88e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T05:01:21.4237199Z","updatedOn":"2022-10-11T05:01:21.4237199Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbc092b8-61c0-429f-bc40-457c06ef2ae3","type":"Microsoft.Authorization/roleAssignments","name":"bbc092b8-61c0-429f-bc40-457c06ef2ae3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T06:32:06.2810453Z","updatedOn":"2022-10-11T06:32:06.2810453Z","createdBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","updatedBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c482116-492e-11ed-b1e5-50814031cc1b","type":"Microsoft.Authorization/roleAssignments","name":"6c482116-492e-11ed-b1e5-50814031cc1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T06:32:11.8691902Z","updatedOn":"2022-10-11T06:32:11.8691902Z","createdBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","updatedBy":"34a47c0d-3d0c-4845-8523-ec55f15edab6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6f333b0b-492e-11ed-b1e5-50814031cc1b","type":"Microsoft.Authorization/roleAssignments","name":"6f333b0b-492e-11ed-b1e5-50814031cc1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-11T10:41:27.4966216Z","updatedOn":"2022-10-11T10:41:27.4966216Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4aaba87d-be3b-49d5-90e6-02100140c50d","type":"Microsoft.Authorization/roleAssignments","name":"4aaba87d-be3b-49d5-90e6-02100140c50d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-12T06:14:22.3962768Z","updatedOn":"2022-10-12T06:14:22.3962768Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c7ad8940-3c2c-4a0a-b59a-5c6408cce033","type":"Microsoft.Authorization/roleAssignments","name":"c7ad8940-3c2c-4a0a-b59a-5c6408cce033"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-12T23:06:16.2844894Z","updatedOn":"2022-10-12T23:06:16.2844894Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8434c983-cdd3-40c4-9531-78b5f16fea23","type":"Microsoft.Authorization/roleAssignments","name":"8434c983-cdd3-40c4-9531-78b5f16fea23"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-12T23:06:16.4551494Z","updatedOn":"2022-10-12T23:06:16.4551494Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4281f456-78ed-4ef7-b058-d980c90bf6f9","type":"Microsoft.Authorization/roleAssignments","name":"4281f456-78ed-4ef7-b058-d980c90bf6f9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-18T14:04:58.5223716Z","updatedOn":"2022-10-18T14:04:58.5223716Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9158a450-cec7-48ba-8469-fc085e252e56","type":"Microsoft.Authorization/roleAssignments","name":"9158a450-cec7-48ba-8469-fc085e252e56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-19T17:08:57.8704270Z","updatedOn":"2022-10-19T17:08:57.8704270Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf874421-44f9-4a19-8abd-da0f4f04a24f","type":"Microsoft.Authorization/roleAssignments","name":"bf874421-44f9-4a19-8abd-da0f4f04a24f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-19T23:09:40.3682015Z","updatedOn":"2022-10-19T23:09:40.3682015Z","createdBy":"57440c04-5eed-4c74-92b6-44b016b882f2","updatedBy":"57440c04-5eed-4c74-92b6-44b016b882f2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2bafd93-beec-4d8b-b5f0-9893ef27a090","type":"Microsoft.Authorization/roleAssignments","name":"b2bafd93-beec-4d8b-b5f0-9893ef27a090"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-25T20:45:40.4378406Z","updatedOn":"2022-10-25T20:45:40.4378406Z","createdBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","updatedBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbadcf84-54a5-11ed-b2c3-0e0011011627","type":"Microsoft.Authorization/roleAssignments","name":"fbadcf84-54a5-11ed-b2c3-0e0011011627"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-25T20:45:44.2349413Z","updatedOn":"2022-10-25T20:45:44.2349413Z","createdBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","updatedBy":"36a61a69-f7b4-41b2-bbb7-c60f007424c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fde7916d-54a5-11ed-b2c3-0e0011011627","type":"Microsoft.Authorization/roleAssignments","name":"fde7916d-54a5-11ed-b2c3-0e0011011627"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T16:44:45.2471286Z","updatedOn":"2022-10-26T16:44:45.2471286Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6649fcf-1731-4db5-8e3b-31af16600402","type":"Microsoft.Authorization/roleAssignments","name":"c6649fcf-1731-4db5-8e3b-31af16600402"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T21:24:42.6980121Z","updatedOn":"2022-10-26T21:24:42.6980121Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9b1323cf-e4ec-4454-ac08-5f88d588f133","type":"Microsoft.Authorization/roleAssignments","name":"9b1323cf-e4ec-4454-ac08-5f88d588f133"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-26T23:12:13.5663015Z","updatedOn":"2022-10-26T23:12:13.5663015Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9db19562-5583-11ed-a49b-aa665a565a49","type":"Microsoft.Authorization/roleAssignments","name":"9db19562-5583-11ed-a49b-aa665a565a49"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-27T20:49:50.5273108Z","updatedOn":"2022-10-27T20:49:50.5273108Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1a0bbbc6-febb-4d40-9e39-5274a2edd538","type":"Microsoft.Authorization/roleAssignments","name":"1a0bbbc6-febb-4d40-9e39-5274a2edd538"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-10-31T21:38:36.6886945Z","updatedOn":"2022-10-31T21:38:36.6886945Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6a85bdf2-6490-4989-9276-f2071fcf02c7","type":"Microsoft.Authorization/roleAssignments","name":"6a85bdf2-6490-4989-9276-f2071fcf02c7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-01T17:32:59.4211774Z","updatedOn":"2022-11-01T17:32:59.4211774Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a3d71f8-5a0b-11ed-ae92-000d3a6dafe7","type":"Microsoft.Authorization/roleAssignments","name":"3a3d71f8-5a0b-11ed-ae92-000d3a6dafe7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-03T20:33:30.2762577Z","updatedOn":"2022-11-03T20:33:30.2762577Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6983693-5bb6-11ed-ae23-72674b3691e8","type":"Microsoft.Authorization/roleAssignments","name":"c6983693-5bb6-11ed-ae23-72674b3691e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-03T20:33:33.9941086Z","updatedOn":"2022-11-03T20:33:33.9941086Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c90a1190-5bb6-11ed-ae23-72674b3691e8","type":"Microsoft.Authorization/roleAssignments","name":"c90a1190-5bb6-11ed-ae23-72674b3691e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-03T22:01:34.3526622Z","updatedOn":"2022-11-03T22:01:34.3526622Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/572d1281-1073-4df2-a41a-6ec6ab01ccf4","type":"Microsoft.Authorization/roleAssignments","name":"572d1281-1073-4df2-a41a-6ec6ab01ccf4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-04T17:44:58.1069368Z","updatedOn":"2022-11-04T17:44:58.1069368Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65ead23f-5c68-11ed-81d0-000d3ac6042c","type":"Microsoft.Authorization/roleAssignments","name":"65ead23f-5c68-11ed-81d0-000d3ac6042c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-04T17:44:58.3889675Z","updatedOn":"2022-11-04T17:44:58.3889675Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65f36b55-5c68-11ed-81d0-000d3ac6042c","type":"Microsoft.Authorization/roleAssignments","name":"65f36b55-5c68-11ed-81d0-000d3ac6042c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-07T21:00:30.9927458Z","updatedOn":"2022-11-07T21:00:30.9927458Z","createdBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","updatedBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3631fc51-5edf-11ed-b8d9-bee096dd1f56","type":"Microsoft.Authorization/roleAssignments","name":"3631fc51-5edf-11ed-b8d9-bee096dd1f56"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-07T23:06:40.7350135Z","updatedOn":"2022-11-07T23:06:40.7350135Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82f4d8cb-f92b-4183-8a57-9a266f8ed475","type":"Microsoft.Authorization/roleAssignments","name":"82f4d8cb-f92b-4183-8a57-9a266f8ed475"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T00:45:45.2308519Z","updatedOn":"2022-11-08T00:45:45.2308519Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad83b644-5efe-11ed-9afa-76a84c3a8985","type":"Microsoft.Authorization/roleAssignments","name":"ad83b644-5efe-11ed-9afa-76a84c3a8985"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T00:45:54.5576407Z","updatedOn":"2022-11-08T00:45:54.5576407Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2f5ecd2-5efe-11ed-9afa-76a84c3a8985","type":"Microsoft.Authorization/roleAssignments","name":"b2f5ecd2-5efe-11ed-9afa-76a84c3a8985"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T17:38:14.0062888Z","updatedOn":"2022-11-08T17:38:14.0062888Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5a5cfdf-e8ad-4d53-a1a9-3a7191efa68a","type":"Microsoft.Authorization/roleAssignments","name":"b5a5cfdf-e8ad-4d53-a1a9-3a7191efa68a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T20:41:35.2460898Z","updatedOn":"2022-11-08T20:41:35.2460898Z","createdBy":"77ac7883-1816-45e5-8784-444d95195dfe","updatedBy":"77ac7883-1816-45e5-8784-444d95195dfe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbdb8a06-5fa5-11ed-87b5-52a0a45b7fbb","type":"Microsoft.Authorization/roleAssignments","name":"bbdb8a06-5fa5-11ed-87b5-52a0a45b7fbb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-08T20:41:39.0095016Z","updatedOn":"2022-11-08T20:41:39.0095016Z","createdBy":"77ac7883-1816-45e5-8784-444d95195dfe","updatedBy":"77ac7883-1816-45e5-8784-444d95195dfe","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be17ddaf-5fa5-11ed-87b5-52a0a45b7fbb","type":"Microsoft.Authorization/roleAssignments","name":"be17ddaf-5fa5-11ed-87b5-52a0a45b7fbb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T04:24:29.2903032Z","updatedOn":"2022-11-09T04:24:29.2903032Z","createdBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","updatedBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6672401b-5fe6-11ed-8d26-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"6672401b-5fe6-11ed-8d26-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T04:24:32.7816834Z","updatedOn":"2022-11-09T04:24:32.7816834Z","createdBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","updatedBy":"1eb83d9a-2a44-4cab-abf6-c3c7e7435518","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/687908be-5fe6-11ed-8d26-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"687908be-5fe6-11ed-8d26-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T06:49:46.3320446Z","updatedOn":"2022-11-09T06:49:46.3320446Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40e96901-a9d4-4fc3-8d80-c55979cad3f4","type":"Microsoft.Authorization/roleAssignments","name":"40e96901-a9d4-4fc3-8d80-c55979cad3f4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-09T06:57:50.8140024Z","updatedOn":"2022-11-09T06:57:50.8140024Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54117e37-77ed-4fc2-a64e-7f5cfee1e3cb","type":"Microsoft.Authorization/roleAssignments","name":"54117e37-77ed-4fc2-a64e-7f5cfee1e3cb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-15T17:00:53.9224351Z","updatedOn":"2022-11-15T17:00:53.9224351Z","createdBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","updatedBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb3fa35d-14c6-476e-965d-3287df835fb6","type":"Microsoft.Authorization/roleAssignments","name":"eb3fa35d-14c6-476e-965d-3287df835fb6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-16T17:45:41.6438991Z","updatedOn":"2022-11-16T18:12:21.7351318Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/89d1db20-3058-52b8-8e72-ffbee92652bc","type":"Microsoft.Authorization/roleAssignments","name":"89d1db20-3058-52b8-8e72-ffbee92652bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-17T20:00:21.8300657Z","updatedOn":"2022-11-17T20:00:21.8300657Z","createdBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","updatedBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/770d246f-66b2-11ed-9a7a-5eff6da83896","type":"Microsoft.Authorization/roleAssignments","name":"770d246f-66b2-11ed-9a7a-5eff6da83896"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:13:16.4073065Z","updatedOn":"2023-05-12T17:27:11.5958673Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d9c1e76-d133-5014-a053-fa81b5a5ddcc","type":"Microsoft.Authorization/roleAssignments","name":"8d9c1e76-d133-5014-a053-fa81b5a5ddcc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:13:16.3810810Z","updatedOn":"2023-05-12T17:27:11.6002511Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9589fe9-37b5-52e8-b6a1-05baa0e40ea2","type":"Microsoft.Authorization/roleAssignments","name":"b9589fe9-37b5-52e8-b6a1-05baa0e40ea2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:13:16.4335352Z","updatedOn":"2023-05-12T17:27:11.6253602Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df3deb96-df88-5ecf-9db1-b40cda69a5b1","type":"Microsoft.Authorization/roleAssignments","name":"df3deb96-df88-5ecf-9db1-b40cda69a5b1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-29T22:31:21.5082047Z","updatedOn":"2023-05-12T17:27:12.7611677Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fe4c31ea-8d12-5bbd-80e8-749dd04c242c","type":"Microsoft.Authorization/roleAssignments","name":"fe4c31ea-8d12-5bbd-80e8-749dd04c242c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-18T19:59:52.7113168Z","updatedOn":"2022-11-18T19:59:52.7113168Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/909e97c0-677b-11ed-b3d1-4e4b7fc6d2d7","type":"Microsoft.Authorization/roleAssignments","name":"909e97c0-677b-11ed-b3d1-4e4b7fc6d2d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-18T19:59:56.7899280Z","updatedOn":"2022-11-18T19:59:56.7899280Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9302a900-677b-11ed-b3d1-4e4b7fc6d2d7","type":"Microsoft.Authorization/roleAssignments","name":"9302a900-677b-11ed-b3d1-4e4b7fc6d2d7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-18T22:57:24.7333928Z","updatedOn":"2022-11-18T22:57:24.7333928Z","createdBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","updatedBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/616b0a5c-ef17-4f5c-8f54-932fb42ed1b6","type":"Microsoft.Authorization/roleAssignments","name":"616b0a5c-ef17-4f5c-8f54-932fb42ed1b6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-20T08:02:14.3563436Z","updatedOn":"2022-11-20T08:02:14.3563436Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59455a7f-8688-4fa9-bca1-b14ff86b45d8","type":"Microsoft.Authorization/roleAssignments","name":"59455a7f-8688-4fa9-bca1-b14ff86b45d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-22T12:28:29.6735062Z","updatedOn":"2022-11-22T12:28:29.6735062Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a01068c-6a61-11ed-b280-38f9d359b369","type":"Microsoft.Authorization/roleAssignments","name":"2a01068c-6a61-11ed-b280-38f9d359b369"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-22T12:28:35.6487701Z","updatedOn":"2022-11-22T12:28:35.6487701Z","createdBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","updatedBy":"f058371f-0c0e-46bb-a5d4-f8aec637a467","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2dec6a7a-6a61-11ed-b280-38f9d359b369","type":"Microsoft.Authorization/roleAssignments","name":"2dec6a7a-6a61-11ed-b280-38f9d359b369"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-23T19:27:15.6029824Z","updatedOn":"2022-11-23T19:27:15.6029824Z","createdBy":"573ee898-c9b5-4556-b5b7-ba398712832e","updatedBy":"573ee898-c9b5-4556-b5b7-ba398712832e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5624ab6-6b64-11ed-99e5-a29c0e078d5a","type":"Microsoft.Authorization/roleAssignments","name":"d5624ab6-6b64-11ed-99e5-a29c0e078d5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-23T19:27:29.8496193Z","updatedOn":"2022-11-23T19:27:29.8496193Z","createdBy":"573ee898-c9b5-4556-b5b7-ba398712832e","updatedBy":"573ee898-c9b5-4556-b5b7-ba398712832e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ddce2c51-6b64-11ed-99e5-a29c0e078d5a","type":"Microsoft.Authorization/roleAssignments","name":"ddce2c51-6b64-11ed-99e5-a29c0e078d5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-24T08:00:52.4569469Z","updatedOn":"2022-11-24T08:00:52.4569469Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ea38765-a469-4975-a3b3-69c47e46e70b","type":"Microsoft.Authorization/roleAssignments","name":"9ea38765-a469-4975-a3b3-69c47e46e70b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-24T08:01:11.1412012Z","updatedOn":"2022-11-24T08:01:11.1412012Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f7e731a-0d5b-4591-a97d-0ee2053825bb","type":"Microsoft.Authorization/roleAssignments","name":"9f7e731a-0d5b-4591-a97d-0ee2053825bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T08:56:33.0370700Z","updatedOn":"2022-11-28T08:56:33.0370700Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4d08049c-272d-4905-a2b6-cd89456c5382","type":"Microsoft.Authorization/roleAssignments","name":"4d08049c-272d-4905-a2b6-cd89456c5382"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T18:00:17.3116606Z","updatedOn":"2022-11-28T18:00:17.3116606Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/839a632b-6f46-11ed-9f3a-002248be91cc","type":"Microsoft.Authorization/roleAssignments","name":"839a632b-6f46-11ed-9f3a-002248be91cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T21:24:30.3728549Z","updatedOn":"2022-11-28T21:24:30.3728549Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ad622e0-6f63-11ed-a15a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"0ad622e0-6f63-11ed-a15a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-28T21:24:34.5112467Z","updatedOn":"2022-11-28T21:24:34.5112467Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d6f187c-6f63-11ed-a15a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"0d6f187c-6f63-11ed-a15a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-29T19:42:39.8350492Z","updatedOn":"2022-11-29T19:42:39.8350492Z","createdBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","updatedBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb69dd10-701d-11ed-8940-6ca1001ae258","type":"Microsoft.Authorization/roleAssignments","name":"fb69dd10-701d-11ed-8940-6ca1001ae258"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-29T19:42:43.2096038Z","updatedOn":"2022-11-29T19:42:43.2096038Z","createdBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","updatedBy":"f6cddbb1-351b-4ff8-b158-e8e5a5e6984d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fd6fed09-701d-11ed-8940-6ca1001ae258","type":"Microsoft.Authorization/roleAssignments","name":"fd6fed09-701d-11ed-8940-6ca1001ae258"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-11-30T07:32:24.0648059Z","updatedOn":"2022-11-30T07:32:24.0648059Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d745d98-b683-45b9-92a8-918aacf64633","type":"Microsoft.Authorization/roleAssignments","name":"2d745d98-b683-45b9-92a8-918aacf64633"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-01T22:00:12.5092022Z","updatedOn":"2022-12-01T22:00:12.5092022Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/29f80035-534e-479f-bf9d-3243cd2eba93","type":"Microsoft.Authorization/roleAssignments","name":"29f80035-534e-479f-bf9d-3243cd2eba93"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-02T07:52:06.0754526Z","updatedOn":"2022-12-02T07:52:06.0754526Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/17ce4c2c-8051-4420-a6ac-6aeb91441711","type":"Microsoft.Authorization/roleAssignments","name":"17ce4c2c-8051-4420-a6ac-6aeb91441711"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-02T23:54:37.7637423Z","updatedOn":"2022-12-02T23:54:37.7637423Z","createdBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","updatedBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e8902907-9bef-55f7-9a6d-64e3cf3b1a77","type":"Microsoft.Authorization/roleAssignments","name":"e8902907-9bef-55f7-9a6d-64e3cf3b1a77"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-05T17:29:10.2915092Z","updatedOn":"2022-12-05T17:29:10.2915092Z","createdBy":"500b0839-c682-4003-9106-8f37a381595d","updatedBy":"500b0839-c682-4003-9106-8f37a381595d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/53a3b656-74c2-11ed-b2ea-f21d81f4d94b","type":"Microsoft.Authorization/roleAssignments","name":"53a3b656-74c2-11ed-b2ea-f21d81f4d94b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-05T17:29:19.7335221Z","updatedOn":"2022-12-05T17:29:19.7335221Z","createdBy":"500b0839-c682-4003-9106-8f37a381595d","updatedBy":"500b0839-c682-4003-9106-8f37a381595d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/59486582-74c2-11ed-b2ea-f21d81f4d94b","type":"Microsoft.Authorization/roleAssignments","name":"59486582-74c2-11ed-b2ea-f21d81f4d94b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T00:27:21.1321238Z","updatedOn":"2022-12-06T00:27:21.1321238Z","createdBy":"010e39fa-3d22-4576-ad28-9709490d3973","updatedBy":"010e39fa-3d22-4576-ad28-9709490d3973","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bdc7c72a-74fc-11ed-b1d9-fe40d632c9c8","type":"Microsoft.Authorization/roleAssignments","name":"bdc7c72a-74fc-11ed-b1d9-fe40d632c9c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T00:27:26.7978650Z","updatedOn":"2022-12-06T00:27:26.7978650Z","createdBy":"010e39fa-3d22-4576-ad28-9709490d3973","updatedBy":"010e39fa-3d22-4576-ad28-9709490d3973","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c1df0b20-74fc-11ed-b1d9-fe40d632c9c8","type":"Microsoft.Authorization/roleAssignments","name":"c1df0b20-74fc-11ed-b1d9-fe40d632c9c8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T08:09:07.9286883Z","updatedOn":"2022-12-06T08:09:07.9286883Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a54f40a-fc73-4967-93de-1fda5f77fa18","type":"Microsoft.Authorization/roleAssignments","name":"8a54f40a-fc73-4967-93de-1fda5f77fa18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-06T08:09:07.0223985Z","updatedOn":"2022-12-06T08:09:07.0223985Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/37a700cb-bd3a-4961-a7b7-cf21f1049fd6","type":"Microsoft.Authorization/roleAssignments","name":"37a700cb-bd3a-4961-a7b7-cf21f1049fd6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-09T14:12:43.2358573Z","updatedOn":"2022-12-09T14:12:43.2358573Z","createdBy":"500b0839-c682-4003-9106-8f37a381595d","updatedBy":"500b0839-c682-4003-9106-8f37a381595d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88d9f0e9-77cb-11ed-a931-4ecc509b30ab","type":"Microsoft.Authorization/roleAssignments","name":"88d9f0e9-77cb-11ed-a931-4ecc509b30ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T12:05:48.4827550Z","updatedOn":"2022-12-12T12:05:48.4827550Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d238237a-b393-4ab0-9f00-cdf16c5d6b05","type":"Microsoft.Authorization/roleAssignments","name":"d238237a-b393-4ab0-9f00-cdf16c5d6b05"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T16:10:53.3465450Z","updatedOn":"2022-12-12T16:10:53.3465450Z","createdBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","updatedBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8bcca047-7a37-11ed-9b42-5a0f21a4ffba","type":"Microsoft.Authorization/roleAssignments","name":"8bcca047-7a37-11ed-9b42-5a0f21a4ffba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-12T16:10:57.7295344Z","updatedOn":"2022-12-12T16:10:57.7295344Z","createdBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","updatedBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8e42900b-7a37-11ed-9b42-5a0f21a4ffba","type":"Microsoft.Authorization/roleAssignments","name":"8e42900b-7a37-11ed-9b42-5a0f21a4ffba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-14T08:51:42.0015523Z","updatedOn":"2022-12-14T08:51:42.0015523Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8d01084d-4e3a-414c-ac62-c3ef82dc3302","type":"Microsoft.Authorization/roleAssignments","name":"8d01084d-4e3a-414c-ac62-c3ef82dc3302"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-16T07:20:02.6088062Z","updatedOn":"2022-12-16T07:20:02.6088062Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0cb541fc-7d12-11ed-8232-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"0cb541fc-7d12-11ed-8232-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-20T19:00:39.7938573Z","updatedOn":"2022-12-20T19:00:39.7938573Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/991d89fd-8098-11ed-a1dc-1e0cf6619ffa","type":"Microsoft.Authorization/roleAssignments","name":"991d89fd-8098-11ed-a1dc-1e0cf6619ffa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-21T19:53:55.0673117Z","updatedOn":"2022-12-21T19:53:55.0673117Z","createdBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","updatedBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/31f1b70c-8169-11ed-871d-bc091b9528f6","type":"Microsoft.Authorization/roleAssignments","name":"31f1b70c-8169-11ed-871d-bc091b9528f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-21T19:54:01.7874075Z","updatedOn":"2022-12-21T19:54:01.7874075Z","createdBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","updatedBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/35eb2367-8169-11ed-871d-bc091b9528f6","type":"Microsoft.Authorization/roleAssignments","name":"35eb2367-8169-11ed-871d-bc091b9528f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-23T14:42:33.0388657Z","updatedOn":"2022-12-23T14:42:33.0388657Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7077d7fa-4615-4792-b394-80918dd155ce","type":"Microsoft.Authorization/roleAssignments","name":"7077d7fa-4615-4792-b394-80918dd155ce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-12-28T13:20:44.8421429Z","updatedOn":"2022-12-28T13:20:44.8421429Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b48d252-d31a-57c7-8cf6-cb5fed6d1a67","type":"Microsoft.Authorization/roleAssignments","name":"4b48d252-d31a-57c7-8cf6-cb5fed6d1a67"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-03T12:31:11.2683110Z","updatedOn":"2023-01-03T12:31:11.2683110Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d408ddb7-31cd-4d46-ab59-fe1be61b2bdc","type":"Microsoft.Authorization/roleAssignments","name":"d408ddb7-31cd-4d46-ab59-fe1be61b2bdc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-06T08:15:45.7088191Z","updatedOn":"2023-01-06T08:15:45.7088191Z","createdBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","updatedBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/510806b0-8d9a-11ed-9e4f-000d3ac772b5","type":"Microsoft.Authorization/roleAssignments","name":"510806b0-8d9a-11ed-9e4f-000d3ac772b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-06T08:15:51.6046641Z","updatedOn":"2023-01-06T08:15:51.6046641Z","createdBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","updatedBy":"f7ffc87d-e306-4b9c-9986-57ce8cd68085","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54802b41-8d9a-11ed-9e4f-000d3ac772b5","type":"Microsoft.Authorization/roleAssignments","name":"54802b41-8d9a-11ed-9e4f-000d3ac772b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-06T22:24:58.0712756Z","updatedOn":"2023-01-06T22:24:58.0712756Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbcde9e0-3481-49ad-b1f1-e7226db43e33","type":"Microsoft.Authorization/roleAssignments","name":"cbcde9e0-3481-49ad-b1f1-e7226db43e33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-07T00:15:43.3039407Z","updatedOn":"2023-01-07T00:15:43.3039407Z","createdBy":"80a6e936-2bdc-4927-b49e-2a7a19943b90","updatedBy":"80a6e936-2bdc-4927-b49e-2a7a19943b90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7e73e7e9-99f9-5fa0-a5c8-33268a3e7acc","type":"Microsoft.Authorization/roleAssignments","name":"7e73e7e9-99f9-5fa0-a5c8-33268a3e7acc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-08T14:40:12.1322327Z","updatedOn":"2023-01-08T14:40:12.1322327Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9146e5ba-1dce-41c3-bee6-6e854049e485","type":"Microsoft.Authorization/roleAssignments","name":"9146e5ba-1dce-41c3-bee6-6e854049e485"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-08T14:46:46.8171282Z","updatedOn":"2023-01-08T14:46:46.8171282Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3073c0fc-4181-4de7-bb2d-ceb46bd805c2","type":"Microsoft.Authorization/roleAssignments","name":"3073c0fc-4181-4de7-bb2d-ceb46bd805c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-10T05:58:31.6725565Z","updatedOn":"2023-01-10T05:58:31.6725565Z","createdBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","updatedBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce4f420e-90ab-11ed-81da-002248575167","type":"Microsoft.Authorization/roleAssignments","name":"ce4f420e-90ab-11ed-81da-002248575167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-10T05:58:38.3068493Z","updatedOn":"2023-01-10T05:58:38.3068493Z","createdBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","updatedBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d2369b82-90ab-11ed-81da-002248575167","type":"Microsoft.Authorization/roleAssignments","name":"d2369b82-90ab-11ed-81da-002248575167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-10T06:45:54.6704864Z","updatedOn":"2023-01-10T06:45:54.6704864Z","createdBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","updatedBy":"c212dea8-d0da-4832-bdb1-d9e2b7672c76","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6de0e553-90b2-11ed-9d42-6045bd78eeea","type":"Microsoft.Authorization/roleAssignments","name":"6de0e553-90b2-11ed-9d42-6045bd78eeea"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-11T22:44:31.5456256Z","updatedOn":"2023-01-11T22:44:31.5456256Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/55a9c9ca-e483-44ad-ab32-17ac0f1905e2","type":"Microsoft.Authorization/roleAssignments","name":"55a9c9ca-e483-44ad-ab32-17ac0f1905e2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-12T07:27:30.7499209Z","updatedOn":"2023-01-12T07:27:30.7499209Z","createdBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","updatedBy":"92690a52-6f66-44b9-974d-5de5ad0f169d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c2fcdf3-9376-46c4-862c-c5478fad402d","type":"Microsoft.Authorization/roleAssignments","name":"6c2fcdf3-9376-46c4-862c-c5478fad402d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-12T20:29:47.8942736Z","updatedOn":"2023-01-12T20:29:47.8942736Z","createdBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","updatedBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dad76eb4-92b7-11ed-9e92-3e22fbc2ce2f","type":"Microsoft.Authorization/roleAssignments","name":"dad76eb4-92b7-11ed-9e92-3e22fbc2ce2f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-12T20:29:51.8091784Z","updatedOn":"2023-01-12T20:29:51.8091784Z","createdBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","updatedBy":"7f252cd6-9f6d-4581-ad97-d0612c67a287","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd198dce-92b7-11ed-9e92-3e22fbc2ce2f","type":"Microsoft.Authorization/roleAssignments","name":"dd198dce-92b7-11ed-9e92-3e22fbc2ce2f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-13T05:50:47.3154688Z","updatedOn":"2023-01-13T05:50:47.3154688Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/38d171ad-9306-11ed-a704-ee47e05c3b1e","type":"Microsoft.Authorization/roleAssignments","name":"38d171ad-9306-11ed-a704-ee47e05c3b1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-13T05:50:53.1628390Z","updatedOn":"2023-01-13T05:50:53.1628390Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3bf43d16-9306-11ed-a704-ee47e05c3b1e","type":"Microsoft.Authorization/roleAssignments","name":"3bf43d16-9306-11ed-a704-ee47e05c3b1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-14T06:07:18.3233862Z","updatedOn":"2023-01-14T06:07:18.3233862Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2587a66-93d1-11ed-a6e9-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"b2587a66-93d1-11ed-a6e9-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-14T06:07:23.4646871Z","updatedOn":"2023-01-14T06:07:23.4646871Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b56e4d80-93d1-11ed-a6e9-00224859a7ee","type":"Microsoft.Authorization/roleAssignments","name":"b56e4d80-93d1-11ed-a6e9-00224859a7ee"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-16T23:52:20.1337328Z","updatedOn":"2023-01-16T23:52:20.1337328Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/911d588d-e4a0-5501-bd42-db0fe4ac81ea","type":"Microsoft.Authorization/roleAssignments","name":"911d588d-e4a0-5501-bd42-db0fe4ac81ea"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-17T21:03:20.3495010Z","updatedOn":"2023-01-17T21:03:20.3495010Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":"partner + team engineer "},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b200ea13-6210-46cf-b622-5e1fa94d7196","type":"Microsoft.Authorization/roleAssignments","name":"b200ea13-6210-46cf-b622-5e1fa94d7196"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-17T21:55:10.9367237Z","updatedOn":"2023-01-17T21:55:10.9367237Z","createdBy":"252476b5-423c-4de6-8f23-f3b57897abfc","updatedBy":"252476b5-423c-4de6-8f23-f3b57897abfc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9c4d35c3-96b1-11ed-bcb1-aa442d61f9f5","type":"Microsoft.Authorization/roleAssignments","name":"9c4d35c3-96b1-11ed-bcb1-aa442d61f9f5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-18T16:39:36.8544109Z","updatedOn":"2023-01-18T16:39:36.8544109Z","createdBy":"57440c04-5eed-4c74-92b6-44b016b882f2","updatedBy":"57440c04-5eed-4c74-92b6-44b016b882f2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e47587fc-952b-11ed-9582-22998bd40e8c","type":"Microsoft.Authorization/roleAssignments","name":"e47587fc-952b-11ed-9582-22998bd40e8c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-19T06:11:42.7348591Z","updatedOn":"2023-01-19T06:11:42.7348591Z","createdBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","updatedBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dcee111d-97c0-11ed-8b08-5e144daaf885","type":"Microsoft.Authorization/roleAssignments","name":"dcee111d-97c0-11ed-8b08-5e144daaf885"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-19T06:11:46.7450508Z","updatedOn":"2023-01-19T06:11:46.7450508Z","createdBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","updatedBy":"e63057a7-e8ed-47d4-b8a0-669b9496a2cd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df259f28-97c0-11ed-8b08-5e144daaf885","type":"Microsoft.Authorization/roleAssignments","name":"df259f28-97c0-11ed-8b08-5e144daaf885"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-20T21:01:23.9458046Z","updatedOn":"2023-05-12T17:27:12.7106298Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f654663-8564-546e-a6fc-452f7b76de5a","type":"Microsoft.Authorization/roleAssignments","name":"5f654663-8564-546e-a6fc-452f7b76de5a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T17:09:42.5564083Z","updatedOn":"2023-01-23T17:09:42.5564083Z","createdBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","updatedBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9e2414b-9b40-11ed-96c6-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"b9e2414b-9b40-11ed-96c6-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T17:09:45.5610260Z","updatedOn":"2023-01-23T17:09:45.5610260Z","createdBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","updatedBy":"d2aef78f-d699-4e46-a25b-c5b563ea5505","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bbc6263b-9b40-11ed-96c6-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"bbc6263b-9b40-11ed-96c6-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T18:43:59.1011432Z","updatedOn":"2023-01-23T18:43:59.1011432Z","createdBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","updatedBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e58487c6-9b4d-11ed-8c22-8c1645a48227","type":"Microsoft.Authorization/roleAssignments","name":"e58487c6-9b4d-11ed-8c22-8c1645a48227"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-23T18:44:02.5989503Z","updatedOn":"2023-01-23T18:44:02.5989503Z","createdBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","updatedBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7a002ef-9b4d-11ed-8c22-8c1645a48227","type":"Microsoft.Authorization/roleAssignments","name":"e7a002ef-9b4d-11ed-8c22-8c1645a48227"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-10T06:45:47.1925698Z","updatedOn":"2022-03-10T06:45:47.1925698Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4aaa7af-d414-42e9-bd99-b14d707753a7","type":"Microsoft.Authorization/roleAssignments","name":"e4aaa7af-d414-42e9-bd99-b14d707753a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-11T03:42:35.9073660Z","updatedOn":"2022-03-11T03:42:35.9073660Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a0f9eea-a0ed-11ec-9b90-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"4a0f9eea-a0ed-11ec-9b90-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-11T19:59:10.3149108Z","updatedOn":"2022-03-11T19:59:10.3149108Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b6e06a80-a175-11ec-8f66-002248778035","type":"Microsoft.Authorization/roleAssignments","name":"b6e06a80-a175-11ec-8f66-002248778035"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-14T05:57:31.9169431Z","updatedOn":"2022-03-14T05:57:31.9169431Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/04323e79-5b88-4b91-86e7-b8bfa1c2d8b9","type":"Microsoft.Authorization/roleAssignments","name":"04323e79-5b88-4b91-86e7-b8bfa1c2d8b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-14T23:57:21.8404827Z","updatedOn":"2022-03-14T23:57:21.8404827Z","createdBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","updatedBy":"f7f1e3a2-a6d6-4f0c-8189-067e2f48366d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/824ca9a3-a3f2-11ec-b5c2-626147b15e2d","type":"Microsoft.Authorization/roleAssignments","name":"824ca9a3-a3f2-11ec-b5c2-626147b15e2d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-15T05:47:06.0764200Z","updatedOn":"2022-03-15T05:47:06.0764200Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d8c0655-15f2-4864-9ebf-6c5d95ea5797","type":"Microsoft.Authorization/roleAssignments","name":"3d8c0655-15f2-4864-9ebf-6c5d95ea5797"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-15T05:48:19.3617384Z","updatedOn":"2022-03-15T05:48:19.3617384Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b5a1298d-008a-4dad-95db-70d41dc0ff2e","type":"Microsoft.Authorization/roleAssignments","name":"b5a1298d-008a-4dad-95db-70d41dc0ff2e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-15T19:57:01.4651070Z","updatedOn":"2022-03-15T19:57:01.4651070Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f90898e-0a20-4778-b842-abc610614801","type":"Microsoft.Authorization/roleAssignments","name":"2f90898e-0a20-4778-b842-abc610614801"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-16T02:56:12.3673604Z","updatedOn":"2022-03-16T02:56:12.3673604Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/be953738-c4c0-4da0-9b0f-42c89eb31451","type":"Microsoft.Authorization/roleAssignments","name":"be953738-c4c0-4da0-9b0f-42c89eb31451"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T10:12:31.1977135Z","updatedOn":"2022-03-21T10:12:31.1977135Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/92ad8cda-f519-4160-b28d-6e0e8d19fb8e","type":"Microsoft.Authorization/roleAssignments","name":"92ad8cda-f519-4160-b28d-6e0e8d19fb8e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T17:57:33.7215077Z","updatedOn":"2022-03-21T17:57:33.7215077Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6210523c-a940-11ec-88f4-00224850c1b5","type":"Microsoft.Authorization/roleAssignments","name":"6210523c-a940-11ec-88f4-00224850c1b5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T22:00:37.3135630Z","updatedOn":"2022-03-21T22:00:37.3135630Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5678b88f-a962-11ec-b646-0022487a9d6b","type":"Microsoft.Authorization/roleAssignments","name":"5678b88f-a962-11ec-b646-0022487a9d6b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-21T23:00:49.2441783Z","updatedOn":"2022-03-21T23:00:49.2441783Z","createdBy":"3a522b7c-61fd-4fcf-aa7f-3e8a6e7cc3af","updatedBy":"3a522b7c-61fd-4fcf-aa7f-3e8a6e7cc3af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bef73288-a96a-11ec-bd2b-6acf089951ab","type":"Microsoft.Authorization/roleAssignments","name":"bef73288-a96a-11ec-bd2b-6acf089951ab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-22T04:03:04.2502656Z","updatedOn":"2022-03-22T04:03:04.2502656Z","createdBy":"9d0cc8e5-b005-4b2b-9a31-3b6c624d5330","updatedBy":"9d0cc8e5-b005-4b2b-9a31-3b6c624d5330","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f8a4f8a7-a994-11ec-b30e-4a9f38c1a382","type":"Microsoft.Authorization/roleAssignments","name":"f8a4f8a7-a994-11ec-b30e-4a9f38c1a382"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-22T13:40:03.8073664Z","updatedOn":"2022-03-22T13:40:03.8073664Z","createdBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","updatedBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/93f47801-a9e5-11ec-86a5-3a3e6c7e1ac8","type":"Microsoft.Authorization/roleAssignments","name":"93f47801-a9e5-11ec-86a5-3a3e6c7e1ac8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-23T10:14:54.3796697Z","updatedOn":"2022-03-23T10:14:54.3796697Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0e3f182b-aa92-11ec-9c92-18c04da96df8","type":"Microsoft.Authorization/roleAssignments","name":"0e3f182b-aa92-11ec-9c92-18c04da96df8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-23T23:47:01.7045602Z","updatedOn":"2022-03-23T23:47:01.7045602Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5312596-61f6-486a-ad10-fdb35f1c1665","type":"Microsoft.Authorization/roleAssignments","name":"d5312596-61f6-486a-ad10-fdb35f1c1665"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-25T05:07:14.4623821Z","updatedOn":"2022-03-25T05:07:14.4623821Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df7fe6e9-3cf1-4547-ba81-c1ad0d7d565d","type":"Microsoft.Authorization/roleAssignments","name":"df7fe6e9-3cf1-4547-ba81-c1ad0d7d565d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-29T14:13:44.9635087Z","updatedOn":"2022-03-29T14:13:44.9635087Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/530db943-4ece-46bc-b456-79374d5ec2ba","type":"Microsoft.Authorization/roleAssignments","name":"530db943-4ece-46bc-b456-79374d5ec2ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-03-30T16:18:52.9056346Z","updatedOn":"2022-03-30T16:18:52.9056346Z","createdBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","updatedBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3e0d853-568c-4e64-851d-2292fe92a007","type":"Microsoft.Authorization/roleAssignments","name":"d3e0d853-568c-4e64-851d-2292fe92a007"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-05T04:54:30.2719737Z","updatedOn":"2022-04-05T04:54:30.2719737Z","createdBy":"f0b00319-13f5-4c2b-928a-73ccb5edd222","updatedBy":"f0b00319-13f5-4c2b-928a-73ccb5edd222","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78ffc9e7-b49c-11ec-964c-b219be9347e3","type":"Microsoft.Authorization/roleAssignments","name":"78ffc9e7-b49c-11ec-964c-b219be9347e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-05T22:40:43.0016940Z","updatedOn":"2022-04-05T22:40:43.0016940Z","createdBy":"639a731d-01eb-47bc-88aa-c1e2ba14db02","updatedBy":"639a731d-01eb-47bc-88aa-c1e2ba14db02","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c9e0e6c-b531-11ec-aea8-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6c9e0e6c-b531-11ec-aea8-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-06T12:49:05.2173956Z","updatedOn":"2022-04-06T12:49:05.2173956Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f0a7f4e5-b5a7-11ec-bae5-000d3a6f3c6e","type":"Microsoft.Authorization/roleAssignments","name":"f0a7f4e5-b5a7-11ec-bae5-000d3a6f3c6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-07T01:16:34.9503446Z","updatedOn":"2022-04-07T01:16:34.9503446Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5bdb51f8-5551-44f9-9819-a52fa97c2fef","type":"Microsoft.Authorization/roleAssignments","name":"5bdb51f8-5551-44f9-9819-a52fa97c2fef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-11T05:16:56.1225175Z","updatedOn":"2022-04-11T05:16:56.1225175Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/99904768-b956-11ec-a61a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"99904768-b956-11ec-a61a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-12T23:22:51.6419715Z","updatedOn":"2022-04-12T23:22:51.6419715Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/788b9be6-bab7-11ec-b096-0022487898d6","type":"Microsoft.Authorization/roleAssignments","name":"788b9be6-bab7-11ec-b096-0022487898d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T07:42:38.9160126Z","updatedOn":"2022-04-13T07:42:38.9160126Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a58e304-bafd-11ec-8461-a2dde8388af9","type":"Microsoft.Authorization/roleAssignments","name":"4a58e304-bafd-11ec-8461-a2dde8388af9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-13T16:12:39.4214747Z","updatedOn":"2022-04-13T16:12:39.4214747Z","createdBy":"c302f71c-7b89-4d55-8c87-135833038531","updatedBy":"c302f71c-7b89-4d55-8c87-135833038531","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3bd4838c-4c24-4bb6-b31f-d055dc68694f","type":"Microsoft.Authorization/roleAssignments","name":"3bd4838c-4c24-4bb6-b31f-d055dc68694f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T09:53:20.2997466Z","updatedOn":"2022-04-14T09:53:20.2997466Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b44f0aaa-bbd8-11ec-8da6-0a4cab55437d","type":"Microsoft.Authorization/roleAssignments","name":"b44f0aaa-bbd8-11ec-8da6-0a4cab55437d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-14T16:49:01.5455829Z","updatedOn":"2022-04-14T16:49:01.5455829Z","createdBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","updatedBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","delegatedManagedIdentityResourceId":null,"description":"Allows + github actions to run e2e tests. Only the main branch is permitted access, + and credentials are not shared with forks."},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4e9d34c-9113-45d4-a0f0-175593c38c33","type":"Microsoft.Authorization/roleAssignments","name":"f4e9d34c-9113-45d4-a0f0-175593c38c33"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-20T06:23:32.6340955Z","updatedOn":"2022-04-20T06:23:32.6340955Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6675beb7-c072-11ec-b9ab-000d3ac3f60e","type":"Microsoft.Authorization/roleAssignments","name":"6675beb7-c072-11ec-b9ab-000d3ac3f60e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-20T18:02:47.6341581Z","updatedOn":"2022-04-20T18:02:47.6341581Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/56617dbb-76a1-401d-96fe-8a22f58284d8","type":"Microsoft.Authorization/roleAssignments","name":"56617dbb-76a1-401d-96fe-8a22f58284d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T08:17:07.1604388Z","updatedOn":"2022-04-21T08:17:07.1604388Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6e60c2be-c14b-11ec-82b0-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6e60c2be-c14b-11ec-82b0-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-21T21:36:13.8709604Z","updatedOn":"2022-04-21T21:36:13.8709604Z","createdBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","updatedBy":"3bb3107f-bc3a-4a1a-9750-14fb8cc47422","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/10b94b6e-c1bb-11ec-9ff7-523c2f7f99a3","type":"Microsoft.Authorization/roleAssignments","name":"10b94b6e-c1bb-11ec-9ff7-523c2f7f99a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-22T18:55:55.5256074Z","updatedOn":"2022-04-22T18:55:55.5256074Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d6917978-c26d-11ec-a699-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"d6917978-c26d-11ec-a699-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-24T10:36:03.4988906Z","updatedOn":"2022-04-24T10:36:03.4988906Z","createdBy":"d3cd2b55-3b25-4b68-b6fd-a08967de9266","updatedBy":"d3cd2b55-3b25-4b68-b6fd-a08967de9266","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/558d3e63-c3ba-11ec-b4f9-000d3ac7d8f0","type":"Microsoft.Authorization/roleAssignments","name":"558d3e63-c3ba-11ec-b4f9-000d3ac7d8f0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-25T06:33:58.7782201Z","updatedOn":"2022-04-25T06:33:58.7782201Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ae507161-c461-11ec-b99d-4a4f5b60a172","type":"Microsoft.Authorization/roleAssignments","name":"ae507161-c461-11ec-b99d-4a4f5b60a172"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-26T16:28:17.7010346Z","updatedOn":"2022-04-26T16:28:17.7010346Z","createdBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","updatedBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e04b1510-c57d-11ec-a3c9-0641de48d9d3","type":"Microsoft.Authorization/roleAssignments","name":"e04b1510-c57d-11ec-a3c9-0641de48d9d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-26T21:31:37.1620998Z","updatedOn":"2022-04-26T21:31:37.1620998Z","createdBy":"9bf576b7-c3cf-492b-9bcf-8c8832e2e0a5","updatedBy":"9bf576b7-c3cf-492b-9bcf-8c8832e2e0a5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/409a9eb9-c5a8-11ec-b358-d20abc546c29","type":"Microsoft.Authorization/roleAssignments","name":"409a9eb9-c5a8-11ec-b358-d20abc546c29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-04-28T07:13:54.9152651Z","updatedOn":"2022-04-28T07:13:54.9152651Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f5f3166a-ed3f-43a7-9b34-bb910beaee12","type":"Microsoft.Authorization/roleAssignments","name":"f5f3166a-ed3f-43a7-9b34-bb910beaee12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T12:14:12.5786055Z","updatedOn":"2022-05-02T12:14:12.5786055Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5f06c939-ca11-11ec-9966-da65ad1ab332","type":"Microsoft.Authorization/roleAssignments","name":"5f06c939-ca11-11ec-9966-da65ad1ab332"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:17.4008338Z","updatedOn":"2022-05-02T13:40:17.4008338Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/846f4e2d-0ec9-48ef-fd6e-6ac1cb7586e6","type":"Microsoft.Authorization/roleAssignments","name":"846f4e2d-0ec9-48ef-fd6e-6ac1cb7586e6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.8453423Z","updatedOn":"2022-05-02T13:40:18.8453423Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e72a2b8a-2c36-4ac1-aec3-4fa68f3cae16","type":"Microsoft.Authorization/roleAssignments","name":"e72a2b8a-2c36-4ac1-aec3-4fa68f3cae16"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.0609853Z","updatedOn":"2022-05-02T13:40:18.0609853Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/72e6bf18-35fb-436e-3e05-9ba0a0747299","type":"Microsoft.Authorization/roleAssignments","name":"72e6bf18-35fb-436e-3e05-9ba0a0747299"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T13:40:18.1173679Z","updatedOn":"2022-05-02T13:40:18.1173679Z","createdBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","updatedBy":"ea4767e6-cb32-4400-9fae-382b013e08e7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/724e274f-6e37-445c-608e-199fb9eaa982","type":"Microsoft.Authorization/roleAssignments","name":"724e274f-6e37-445c-608e-199fb9eaa982"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-02T16:59:33.5195217Z","updatedOn":"2022-05-02T16:59:33.5195217Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/98620dcd-bcc5-4828-b846-369c64574ee1","type":"Microsoft.Authorization/roleAssignments","name":"98620dcd-bcc5-4828-b846-369c64574ee1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T06:36:46.9583100Z","updatedOn":"2022-05-09T06:36:46.9583100Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d5a313ab-6903-471c-a6bf-8d84989e8cb4","type":"Microsoft.Authorization/roleAssignments","name":"d5a313ab-6903-471c-a6bf-8d84989e8cb4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-09T22:20:41.5499828Z","updatedOn":"2022-05-09T22:20:41.5499828Z","createdBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","updatedBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/425f8b8d-cfe6-11ec-bbe5-00155ddd560d","type":"Microsoft.Authorization/roleAssignments","name":"425f8b8d-cfe6-11ec-bbe5-00155ddd560d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-10T06:15:39.4482664Z","updatedOn":"2022-05-10T06:15:39.4482664Z","createdBy":"3452d015-48ec-48db-8c4c-80d9205ef053","updatedBy":"3452d015-48ec-48db-8c4c-80d9205ef053","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8a2ff126-fb32-4ca9-8c4d-c8b22209cbc1","type":"Microsoft.Authorization/roleAssignments","name":"8a2ff126-fb32-4ca9-8c4d-c8b22209cbc1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-11T23:10:09.0651064Z","updatedOn":"2022-05-11T23:10:09.0651064Z","createdBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","updatedBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/804a630f-d17f-11ec-bb71-6045bdab52dc","type":"Microsoft.Authorization/roleAssignments","name":"804a630f-d17f-11ec-bb71-6045bdab52dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-12T13:47:03.3832395Z","updatedOn":"2022-05-12T13:47:03.3832395Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/00bc6898-d1fa-11ec-974a-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"00bc6898-d1fa-11ec-974a-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-13T20:36:59.6109396Z","updatedOn":"2022-05-13T20:36:59.6109396Z","createdBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","updatedBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ea3a01d-d2fc-11ec-9997-be6e344e58c1","type":"Microsoft.Authorization/roleAssignments","name":"6ea3a01d-d2fc-11ec-9997-be6e344e58c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-17T06:49:11.7087809Z","updatedOn":"2022-05-17T06:49:11.7087809Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/07f76b15-d899-4d21-8542-29c2479e05e1","type":"Microsoft.Authorization/roleAssignments","name":"07f76b15-d899-4d21-8542-29c2479e05e1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-18T13:22:09.5941967Z","updatedOn":"2022-05-18T13:22:09.5941967Z","createdBy":"52d64fbe-1728-4b2b-a0c4-849705cb9c96","updatedBy":"52d64fbe-1728-4b2b-a0c4-849705cb9c96","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/847201fc-d6ad-11ec-a176-000d3a083c47","type":"Microsoft.Authorization/roleAssignments","name":"847201fc-d6ad-11ec-a176-000d3a083c47"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-20T22:35:09.9396236Z","updatedOn":"2022-05-20T22:35:09.9396236Z","createdBy":"1ec25b73-94d5-4bf9-a56f-ca7d9bd4164c","updatedBy":"1ec25b73-94d5-4bf9-a56f-ca7d9bd4164c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5d512f6-fb53-4fad-b3be-ec154c7a6085","type":"Microsoft.Authorization/roleAssignments","name":"c5d512f6-fb53-4fad-b3be-ec154c7a6085"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-22T23:45:36.9119159Z","updatedOn":"2022-05-22T23:45:36.9119159Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/46fd33ed-da29-11ec-919f-6045bd7a16bc","type":"Microsoft.Authorization/roleAssignments","name":"46fd33ed-da29-11ec-919f-6045bd7a16bc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-23T03:50:38.5802008Z","updatedOn":"2022-05-23T03:50:38.5802008Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ab46785f-2521-4172-871f-91e7dc500a5b","type":"Microsoft.Authorization/roleAssignments","name":"ab46785f-2521-4172-871f-91e7dc500a5b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-23T18:09:05.5672217Z","updatedOn":"2022-05-23T18:09:05.5672217Z","createdBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","updatedBy":"88d55a68-f674-4ec5-afcd-fe150e59c549","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e3f47f83-e599-4106-974f-5ff73955ffa6","type":"Microsoft.Authorization/roleAssignments","name":"e3f47f83-e599-4106-974f-5ff73955ffa6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-24T20:49:20.4480948Z","updatedOn":"2022-05-24T20:49:20.4480948Z","createdBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","updatedBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbf490ce-dba2-11ec-b0af-6045bdab52dc","type":"Microsoft.Authorization/roleAssignments","name":"fbf490ce-dba2-11ec-b0af-6045bdab52dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-25T18:39:32.8389167Z","updatedOn":"2022-05-25T18:39:32.8389167Z","createdBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","updatedBy":"be37d3e1-c896-4f87-b61e-2cafcfd2a4c9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/048a3cf1-dc5a-11ec-8804-6045bdab52dc","type":"Microsoft.Authorization/roleAssignments","name":"048a3cf1-dc5a-11ec-8804-6045bdab52dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T01:53:46.3648590Z","updatedOn":"2022-05-26T01:53:46.3648590Z","createdBy":"834b5e76-453d-44f5-80ff-3481c8415d66","updatedBy":"834b5e76-453d-44f5-80ff-3481c8415d66","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac5ab95a-dc96-11ec-92bb-065f8efd402d","type":"Microsoft.Authorization/roleAssignments","name":"ac5ab95a-dc96-11ec-92bb-065f8efd402d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T06:40:41.8769416Z","updatedOn":"2022-05-26T06:40:41.8769416Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2812727c-1e58-49f0-84a6-13e2b8b7cce7","type":"Microsoft.Authorization/roleAssignments","name":"2812727c-1e58-49f0-84a6-13e2b8b7cce7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-26T16:39:02.6438636Z","updatedOn":"2022-05-26T16:39:02.6438636Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5bb051d1-dd12-11ec-8dd4-9e3ebf2d444f","type":"Microsoft.Authorization/roleAssignments","name":"5bb051d1-dd12-11ec-8dd4-9e3ebf2d444f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-28T07:02:36.1409282Z","updatedOn":"2022-05-28T07:02:36.1409282Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dbf46cb0-1221-443e-bab0-9cd11b7afece","type":"Microsoft.Authorization/roleAssignments","name":"dbf46cb0-1221-443e-bab0-9cd11b7afece"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-31T03:23:22.9404784Z","updatedOn":"2022-05-31T03:23:22.9404784Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/047700b3-e091-11ec-b7b9-f6caf9b02627","type":"Microsoft.Authorization/roleAssignments","name":"047700b3-e091-11ec-b7b9-f6caf9b02627"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f1a07417-d97a-45cb-824c-7a7467783830","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-05-31T03:25:49.5470268Z","updatedOn":"2022-05-31T03:25:49.5470268Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b03550bc-b4aa-4aab-8bd7-0d27b86c9380","type":"Microsoft.Authorization/roleAssignments","name":"b03550bc-b4aa-4aab-8bd7-0d27b86c9380"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-01T14:15:14.5143992Z","updatedOn":"2022-06-01T14:15:14.5143992Z","createdBy":"572b7854-a995-402b-8482-46e12d3c9665","updatedBy":"572b7854-a995-402b-8482-46e12d3c9665","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41183c3a-e1b5-11ec-bad7-3c7c3f1d0035","type":"Microsoft.Authorization/roleAssignments","name":"41183c3a-e1b5-11ec-bad7-3c7c3f1d0035"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-01T15:59:31.6776783Z","updatedOn":"2022-06-01T15:59:31.6776783Z","createdBy":"203de16f-a918-45b1-bde4-6cc574d16944","updatedBy":"203de16f-a918-45b1-bde4-6cc574d16944","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e0dd4b8a-e1c3-11ec-949c-7a1cf6c5b419","type":"Microsoft.Authorization/roleAssignments","name":"e0dd4b8a-e1c3-11ec-949c-7a1cf6c5b419"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-01T18:14:50.2776576Z","updatedOn":"2022-06-01T18:14:50.2776576Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61f89f02-3565-409f-8e72-fc4e58b40178","type":"Microsoft.Authorization/roleAssignments","name":"61f89f02-3565-409f-8e72-fc4e58b40178"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-02T10:22:35.3875246Z","updatedOn":"2022-06-02T10:22:35.3875246Z","createdBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","updatedBy":"6a0c601f-38a9-49f1-ad79-7ede58edd6ac","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eabe3f5d-e25d-11ec-9d25-002248575167","type":"Microsoft.Authorization/roleAssignments","name":"eabe3f5d-e25d-11ec-9d25-002248575167"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-02T19:10:50.1608669Z","updatedOn":"2022-06-02T19:10:50.1608669Z","createdBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","updatedBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d33bf47-7a98-4cca-84be-a622a8a520ae","type":"Microsoft.Authorization/roleAssignments","name":"2d33bf47-7a98-4cca-84be-a622a8a520ae"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-03T17:52:39.6424601Z","updatedOn":"2022-06-03T17:52:39.6424601Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/808a6fa6-1aa8-401a-b12d-3dbf49678aa5","type":"Microsoft.Authorization/roleAssignments","name":"808a6fa6-1aa8-401a-b12d-3dbf49678aa5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-03T18:32:43.3145647Z","updatedOn":"2022-06-03T18:32:43.3145647Z","createdBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","updatedBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ce8e3fe-e36b-11ec-93c2-0ebbe08470ef","type":"Microsoft.Authorization/roleAssignments","name":"8ce8e3fe-e36b-11ec-93c2-0ebbe08470ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-03T20:51:18.9925616Z","updatedOn":"2022-06-03T20:51:18.9925616Z","createdBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","updatedBy":"710d3970-3cc8-4d2c-8d25-ccd2764b5e8c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea9b98ba-e37e-11ec-b495-0ebbe08470ef","type":"Microsoft.Authorization/roleAssignments","name":"ea9b98ba-e37e-11ec-b495-0ebbe08470ef"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-06T19:39:15.5380737Z","updatedOn":"2022-06-06T19:39:15.5380737Z","createdBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","updatedBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57d73d6c-e5d0-11ec-a3ee-c220c0843243","type":"Microsoft.Authorization/roleAssignments","name":"57d73d6c-e5d0-11ec-a3ee-c220c0843243"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-07T02:58:19.0816460Z","updatedOn":"2022-06-07T02:58:19.0816460Z","createdBy":"0bf53c4f-0173-466d-967d-debbe9e551d6","updatedBy":"0bf53c4f-0173-466d-967d-debbe9e551d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/adea0756-e60d-11ec-bd0e-66dbb5eba95d","type":"Microsoft.Authorization/roleAssignments","name":"adea0756-e60d-11ec-bd0e-66dbb5eba95d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-07T18:27:18.2907455Z","updatedOn":"2022-06-07T18:27:18.2907455Z","createdBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","updatedBy":"6ef24c56-2fc4-4bb5-aaf1-cf7fa19212c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/75dc9d88-e68f-11ec-bbbc-aa665a03731d","type":"Microsoft.Authorization/roleAssignments","name":"75dc9d88-e68f-11ec-bbbc-aa665a03731d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-08T18:25:22.6640205Z","updatedOn":"2022-06-08T18:25:22.6640205Z","createdBy":"c1acf319-6d96-4dfe-b194-c27640869947","updatedBy":"c1acf319-6d96-4dfe-b194-c27640869947","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/17b651ab-ff7f-4cf2-833a-27f695725732","type":"Microsoft.Authorization/roleAssignments","name":"17b651ab-ff7f-4cf2-833a-27f695725732"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-08T19:34:11.0218858Z","updatedOn":"2022-06-08T19:34:11.0218858Z","createdBy":"1b51b78e-fd1f-484f-98b6-3423d189977b","updatedBy":"1b51b78e-fd1f-484f-98b6-3423d189977b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5e9c3a1d-3f79-4e4b-9b9d-fbe1f3d09ec5","type":"Microsoft.Authorization/roleAssignments","name":"5e9c3a1d-3f79-4e4b-9b9d-fbe1f3d09ec5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-08T19:46:00.8296947Z","updatedOn":"2022-06-08T19:46:00.8296947Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9f2fd786-e763-11ec-b282-000d3af64fa4","type":"Microsoft.Authorization/roleAssignments","name":"9f2fd786-e763-11ec-b282-000d3af64fa4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-09T01:49:44.1244830Z","updatedOn":"2022-06-09T01:49:44.1244830Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14a2ebaa-ca44-4eb7-851c-01d577cb625e","type":"Microsoft.Authorization/roleAssignments","name":"14a2ebaa-ca44-4eb7-851c-01d577cb625e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-09T23:29:31.3797237Z","updatedOn":"2022-06-09T23:29:31.3797237Z","createdBy":"b34e062a-5a73-4cec-af00-1ecb446deb92","updatedBy":"b34e062a-5a73-4cec-af00-1ecb446deb92","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/02f3fb8e-e84c-11ec-bd1c-6045bd7e546a","type":"Microsoft.Authorization/roleAssignments","name":"02f3fb8e-e84c-11ec-bd1c-6045bd7e546a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T15:06:09.3851225Z","updatedOn":"2022-06-10T15:06:09.3851225Z","createdBy":"fb4b724d-4b7e-4756-aa0b-d91dc0c5acc9","updatedBy":"fb4b724d-4b7e-4756-aa0b-d91dc0c5acc9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/db7a073e-e8ce-11ec-8b1d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"db7a073e-e8ce-11ec-8b1d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T18:05:28.7449646Z","updatedOn":"2022-06-10T18:05:28.7449646Z","createdBy":"0e06046f-cf0d-4924-86b0-bbcf36a1936f","updatedBy":"0e06046f-cf0d-4924-86b0-bbcf36a1936f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7824ddb-e8e7-11ec-b465-421b394b7a96","type":"Microsoft.Authorization/roleAssignments","name":"e7824ddb-e8e7-11ec-b465-421b394b7a96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T18:05:29.8303312Z","updatedOn":"2022-06-10T18:05:29.8303312Z","createdBy":"1295ee3f-edbd-4185-9628-13318404c52a","updatedBy":"1295ee3f-edbd-4185-9628-13318404c52a","delegatedManagedIdentityResourceId":null,"description":"New + AKS member"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/609b8d2a-2b4f-4767-aa5e-c5c7f11b687b","type":"Microsoft.Authorization/roleAssignments","name":"609b8d2a-2b4f-4767-aa5e-c5c7f11b687b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-10T21:18:18.0994828Z","updatedOn":"2022-06-10T21:18:18.0994828Z","createdBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","updatedBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d80f2247-e902-11ec-96de-2edd4b852bcf","type":"Microsoft.Authorization/roleAssignments","name":"d80f2247-e902-11ec-96de-2edd4b852bcf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:19.7988558Z","updatedOn":"2022-06-13T09:20:19.7988558Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/053ff776-f32a-4298-cbeb-0da661875d88","type":"Microsoft.Authorization/roleAssignments","name":"053ff776-f32a-4298-cbeb-0da661875d88"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:19.8466660Z","updatedOn":"2022-06-13T09:20:19.8466660Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4b4bd6e6-869b-4da3-a50f-b7eb8b183de5","type":"Microsoft.Authorization/roleAssignments","name":"4b4bd6e6-869b-4da3-a50f-b7eb8b183de5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:20.2195738Z","updatedOn":"2022-06-13T09:20:20.2195738Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/21db9db3-7adc-40f3-5885-af265b9ddad2","type":"Microsoft.Authorization/roleAssignments","name":"21db9db3-7adc-40f3-5885-af265b9ddad2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T09:20:19.9439478Z","updatedOn":"2022-06-13T09:20:19.9439478Z","createdBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","updatedBy":"2771779d-a5c3-4331-aa80-dd6bb01949e4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2418e820-601e-49da-a20d-4fa1ee6cc4cf","type":"Microsoft.Authorization/roleAssignments","name":"2418e820-601e-49da-a20d-4fa1ee6cc4cf"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-13T17:55:18.4118508Z","updatedOn":"2022-06-13T17:55:18.4118508Z","createdBy":"1295ee3f-edbd-4185-9628-13318404c52a","updatedBy":"1295ee3f-edbd-4185-9628-13318404c52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fbcfa2a4-eb41-11ec-b38e-467d14df3056","type":"Microsoft.Authorization/roleAssignments","name":"fbcfa2a4-eb41-11ec-b38e-467d14df3056"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-14T09:33:38.7306445Z","updatedOn":"2022-06-14T09:33:38.7306445Z","createdBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","updatedBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/10ffce40-ebc5-11ec-aebe-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"10ffce40-ebc5-11ec-aebe-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-14T23:20:32.7229029Z","updatedOn":"2022-06-14T23:20:32.7229029Z","createdBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","updatedBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/954903db-ec38-11ec-acd7-72f791cfbed2","type":"Microsoft.Authorization/roleAssignments","name":"954903db-ec38-11ec-acd7-72f791cfbed2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T06:30:47.7914595Z","updatedOn":"2022-06-16T06:30:47.7914595Z","createdBy":"504c34f4-8389-4920-aec9-0c595b508740","updatedBy":"504c34f4-8389-4920-aec9-0c595b508740","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb760c25-af25-412f-a643-93e98c629270","type":"Microsoft.Authorization/roleAssignments","name":"bb760c25-af25-412f-a643-93e98c629270"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T20:16:07.8463557Z","updatedOn":"2022-06-16T20:16:07.8463557Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4555d91-07f5-46d6-b29f-50b0d211c4ae","type":"Microsoft.Authorization/roleAssignments","name":"f4555d91-07f5-46d6-b29f-50b0d211c4ae"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T21:30:16.4420742Z","updatedOn":"2022-06-16T21:30:16.4420742Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":"to + programatically create new resource group, aks cluster, and container registry"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2c2fc915-d722-4dde-b730-7c73c8a87fdc","type":"Microsoft.Authorization/roleAssignments","name":"2c2fc915-d722-4dde-b730-7c73c8a87fdc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-16T22:19:51.5734675Z","updatedOn":"2022-06-16T22:19:51.5734675Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cca9c113-570a-4969-aa72-45c31091684a","type":"Microsoft.Authorization/roleAssignments","name":"cca9c113-570a-4969-aa72-45c31091684a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-17T02:19:37.1755269Z","updatedOn":"2022-06-17T02:19:37.1755269Z","createdBy":"30db9446-b4f8-4485-8c98-10e17387409d","updatedBy":"30db9446-b4f8-4485-8c98-10e17387409d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eee6dfc9-ede3-11ec-9f6d-902e1612d5d0","type":"Microsoft.Authorization/roleAssignments","name":"eee6dfc9-ede3-11ec-9f6d-902e1612d5d0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/090c5cfd-751d-490a-894a-3ce6f1109419","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-20T22:03:11.1423439Z","updatedOn":"2022-06-20T22:03:11.1423439Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5c2bd4a-f0e4-11ec-bbc1-000d3ac67a2f","type":"Microsoft.Authorization/roleAssignments","name":"c5c2bd4a-f0e4-11ec-bbc1-000d3ac67a2f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-21T16:26:57.9805326Z","updatedOn":"2022-06-21T16:26:57.9805326Z","createdBy":"4d730cf1-e190-49af-af02-ea52983c017e","updatedBy":"4d730cf1-e190-49af-af02-ea52983c017e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f814031e-f17e-11ec-bdc4-72d39f810808","type":"Microsoft.Authorization/roleAssignments","name":"f814031e-f17e-11ec-bdc4-72d39f810808"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-22T23:05:28.0851041Z","updatedOn":"2022-06-22T23:05:28.0851041Z","createdBy":"395c8203-ec60-4c13-9730-5f960088f92b","updatedBy":"395c8203-ec60-4c13-9730-5f960088f92b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e672e20f-477a-4475-a5cf-2f7d8401bbc3","type":"Microsoft.Authorization/roleAssignments","name":"e672e20f-477a-4475-a5cf-2f7d8401bbc3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-23T19:51:00.2507743Z","updatedOn":"2022-06-23T19:51:00.2507743Z","createdBy":"8b564e25-6f45-4437-bf8b-9ac6596a5f15","updatedBy":"8b564e25-6f45-4437-bf8b-9ac6596a5f15","delegatedManagedIdentityResourceId":null,"description":"Adding + permissions to SP for running E2E tests. Currently getting error \"The client + ''0cea35e6-9763-4ef3-b2d2-8c241ab58828'' with object id ''0cea35e6-9763-4ef3-b2d2-8c241ab58828'' + does not have authorization to perform action ''Microsoft.Resources/subscriptions/resourcegroups/write'' + over scope ''/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/e2erg-indusridebld56865086-VzY'' + or the scope is invalid. If access was recently granted, please refresh your + credentials.\""},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5cfb2437-e152-48d8-bb2a-54c89f27707a","type":"Microsoft.Authorization/roleAssignments","name":"5cfb2437-e152-48d8-bb2a-54c89f27707a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-23T21:01:02.9667346Z","updatedOn":"2022-06-23T21:01:02.9667346Z","createdBy":"34d4f830-f9ea-4525-9ca2-b784e3874713","updatedBy":"34d4f830-f9ea-4525-9ca2-b784e3874713","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9527af65-f337-11ec-a743-daea1d98cac0","type":"Microsoft.Authorization/roleAssignments","name":"9527af65-f337-11ec-a743-daea1d98cac0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-24T17:09:56.9678432Z","updatedOn":"2022-06-24T17:09:56.9678432Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ba5c2d82-3e34-4b2b-9c5f-27d9d33955ff","type":"Microsoft.Authorization/roleAssignments","name":"ba5c2d82-3e34-4b2b-9c5f-27d9d33955ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-24T17:36:02.0450264Z","updatedOn":"2022-06-24T17:36:02.0450264Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/16b4850b-3e9c-435e-b3f6-b83e02b9146e","type":"Microsoft.Authorization/roleAssignments","name":"16b4850b-3e9c-435e-b3f6-b83e02b9146e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8311e382-0749-4cb8-b61a-304f252e45ec","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-27T17:58:47.2112371Z","updatedOn":"2022-06-27T17:58:47.2112371Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca6de50e-f642-11ec-83b8-002248773529","type":"Microsoft.Authorization/roleAssignments","name":"ca6de50e-f642-11ec-83b8-002248773529"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-27T21:10:04.9812035Z","updatedOn":"2022-06-27T21:10:04.9812035Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ad97eed-2e77-485f-a2ec-132f3647aef7","type":"Microsoft.Authorization/roleAssignments","name":"8ad97eed-2e77-485f-a2ec-132f3647aef7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T15:43:32.3787489Z","updatedOn":"2022-06-28T15:43:32.3787489Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a1acaea-f6f9-11ec-9ddd-6e578000e34a","type":"Microsoft.Authorization/roleAssignments","name":"0a1acaea-f6f9-11ec-9ddd-6e578000e34a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-29T05:30:23.4400722Z","updatedOn":"2022-06-29T05:30:23.4400722Z","createdBy":"65cfb39a-5f29-4247-8230-9ec6695c5878","updatedBy":"65cfb39a-5f29-4247-8230-9ec6695c5878","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/546c078e-3855-479c-b7aa-b38d4e68bb9f","type":"Microsoft.Authorization/roleAssignments","name":"546c078e-3855-479c-b7aa-b38d4e68bb9f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-29T17:04:07.7235161Z","updatedOn":"2022-06-29T17:04:07.7235161Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/48cbe38c-7d32-4174-8026-7a16994dcdc8","type":"Microsoft.Authorization/roleAssignments","name":"48cbe38c-7d32-4174-8026-7a16994dcdc8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-30T09:06:03.1760556Z","updatedOn":"2022-06-30T09:06:03.1760556Z","createdBy":"42a33e33-55bb-4995-80a2-d1b745371591","updatedBy":"42a33e33-55bb-4995-80a2-d1b745371591","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd7da313-f853-11ec-9993-000d3ac42d43","type":"Microsoft.Authorization/roleAssignments","name":"dd7da313-f853-11ec-9993-000d3ac42d43"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-06-30T09:06:06.3942443Z","updatedOn":"2022-06-30T09:06:06.3942443Z","createdBy":"42a33e33-55bb-4995-80a2-d1b745371591","updatedBy":"42a33e33-55bb-4995-80a2-d1b745371591","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/df6c9d2d-f853-11ec-9993-000d3ac42d43","type":"Microsoft.Authorization/roleAssignments","name":"df6c9d2d-f853-11ec-9993-000d3ac42d43"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-04T08:11:46.0687018Z","updatedOn":"2022-07-04T08:11:46.0687018Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40b64297-b408-4d22-bf82-9b6897914b91","type":"Microsoft.Authorization/roleAssignments","name":"40b64297-b408-4d22-bf82-9b6897914b91"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T17:33:53.2930064Z","updatedOn":"2022-07-05T17:33:53.2930064Z","createdBy":"8e17b6a3-5430-4318-a670-b9df4d106675","updatedBy":"8e17b6a3-5430-4318-a670-b9df4d106675","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a23e2991-fc88-11ec-b99d-fe2d37eeee3f","type":"Microsoft.Authorization/roleAssignments","name":"a23e2991-fc88-11ec-b99d-fe2d37eeee3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T17:33:56.8130933Z","updatedOn":"2022-07-05T17:33:56.8130933Z","createdBy":"8e17b6a3-5430-4318-a670-b9df4d106675","updatedBy":"8e17b6a3-5430-4318-a670-b9df4d106675","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a45a4b60-fc88-11ec-b99d-fe2d37eeee3f","type":"Microsoft.Authorization/roleAssignments","name":"a45a4b60-fc88-11ec-b99d-fe2d37eeee3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T20:50:59.7297844Z","updatedOn":"2022-07-05T20:50:59.7297844Z","createdBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","updatedBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2bf6d528-fca4-11ec-ae95-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2bf6d528-fca4-11ec-ae95-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-05T20:51:03.8324709Z","updatedOn":"2022-07-05T20:51:03.8324709Z","createdBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","updatedBy":"6283fbd5-3662-415f-8042-7f5b8a90fdcb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2eb27754-fca4-11ec-ae95-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2eb27754-fca4-11ec-ae95-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-06T18:17:04.1589374Z","updatedOn":"2022-07-06T18:17:04.1589374Z","createdBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","updatedBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d66150ce-778b-48b7-9eec-4af15a62d5fb","type":"Microsoft.Authorization/roleAssignments","name":"d66150ce-778b-48b7-9eec-4af15a62d5fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T04:14:56.8781019Z","updatedOn":"2022-07-07T04:14:56.8781019Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d244381e-1809-4aab-b4bf-f6c45efad8a0","type":"Microsoft.Authorization/roleAssignments","name":"d244381e-1809-4aab-b4bf-f6c45efad8a0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T08:02:02.2250086Z","updatedOn":"2022-07-07T08:02:02.2250086Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/209367bb-572e-4543-8ffa-261ab9e3e98e","type":"Microsoft.Authorization/roleAssignments","name":"209367bb-572e-4543-8ffa-261ab9e3e98e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T09:51:45.7545095Z","updatedOn":"2022-07-07T09:51:45.7545095Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9b5f542-ed8b-4591-902d-70f85896c4a9","type":"Microsoft.Authorization/roleAssignments","name":"a9b5f542-ed8b-4591-902d-70f85896c4a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T10:20:52.8789655Z","updatedOn":"2022-07-07T10:20:52.8789655Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/67fb0754-2c67-405f-b195-0fc9fb022fc7","type":"Microsoft.Authorization/roleAssignments","name":"67fb0754-2c67-405f-b195-0fc9fb022fc7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-07T23:54:13.9262172Z","updatedOn":"2022-07-07T23:54:13.9262172Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a13e2124-87c9-402c-9611-fbb6a1b4e4b8","type":"Microsoft.Authorization/roleAssignments","name":"a13e2124-87c9-402c-9611-fbb6a1b4e4b8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T02:43:53.0148931Z","updatedOn":"2022-07-08T02:43:53.0148931Z","createdBy":"34e81c0e-d5e6-478f-8544-2686be295567","updatedBy":"34e81c0e-d5e6-478f-8544-2686be295567","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc3fbff8-fe67-11ec-ac64-f69a873c5ca0","type":"Microsoft.Authorization/roleAssignments","name":"cc3fbff8-fe67-11ec-ac64-f69a873c5ca0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T02:43:59.1573960Z","updatedOn":"2022-07-08T02:43:59.1573960Z","createdBy":"34e81c0e-d5e6-478f-8544-2686be295567","updatedBy":"34e81c0e-d5e6-478f-8544-2686be295567","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cfe77b1e-fe67-11ec-ac64-f69a873c5ca0","type":"Microsoft.Authorization/roleAssignments","name":"cfe77b1e-fe67-11ec-ac64-f69a873c5ca0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T16:06:18.0035556Z","updatedOn":"2022-07-08T16:06:18.0035556Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/72a67832-6c5d-4b3e-9067-ceef4bc5dcba","type":"Microsoft.Authorization/roleAssignments","name":"72a67832-6c5d-4b3e-9067-ceef4bc5dcba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T16:17:28.2042061Z","updatedOn":"2022-07-08T16:17:28.2042061Z","createdBy":"cef6ee5d-6edd-413d-9eb7-c205c9802a3f","updatedBy":"cef6ee5d-6edd-413d-9eb7-c205c9802a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/82dd5217-b1f7-4be5-8f03-5899493aa314","type":"Microsoft.Authorization/roleAssignments","name":"82dd5217-b1f7-4be5-8f03-5899493aa314"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-08T17:53:10.4671781Z","updatedOn":"2022-07-08T17:53:10.4671781Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4227602-fee6-11ec-ab63-000d3af64fa4","type":"Microsoft.Authorization/roleAssignments","name":"d4227602-fee6-11ec-ab63-000d3af64fa4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-11T21:30:54.4523951Z","updatedOn":"2022-07-11T21:30:54.4523951Z","createdBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","updatedBy":"23bbf2c0-85a0-4619-bf29-3132e99fae31","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0a77632d-0fee-46d8-9f0d-d2ed44a26602","type":"Microsoft.Authorization/roleAssignments","name":"0a77632d-0fee-46d8-9f0d-d2ed44a26602"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-11T22:18:13.7630778Z","updatedOn":"2022-07-11T22:18:13.7630778Z","createdBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","updatedBy":"f31399da-e7ed-4fe4-a825-a9dff4f53481","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3abee7ef-2e53-478a-b9cd-911e8768e9d6","type":"Microsoft.Authorization/roleAssignments","name":"3abee7ef-2e53-478a-b9cd-911e8768e9d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T04:19:56.7878684Z","updatedOn":"2022-07-12T04:19:56.7878684Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e2335b0a-0199-11ed-9afe-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e2335b0a-0199-11ed-9afe-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T04:20:00.9520791Z","updatedOn":"2022-07-12T04:20:00.9520791Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e4b0f194-0199-11ed-9afe-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"e4b0f194-0199-11ed-9afe-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T11:12:50.2042423Z","updatedOn":"2022-07-12T11:12:50.2042423Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ad70c028-d6b8-4efb-96d4-0bf9aa09566c","type":"Microsoft.Authorization/roleAssignments","name":"ad70c028-d6b8-4efb-96d4-0bf9aa09566c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T17:55:10.7687684Z","updatedOn":"2022-07-12T17:55:10.7687684Z","createdBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","updatedBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c642f341-020b-11ed-bc6a-02136178e3ad","type":"Microsoft.Authorization/roleAssignments","name":"c642f341-020b-11ed-bc6a-02136178e3ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T17:55:14.4120596Z","updatedOn":"2022-07-12T17:55:14.4120596Z","createdBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","updatedBy":"a0ebab54-afc9-48b7-8196-c0f6ac677631","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c87a1349-020b-11ed-bc6a-02136178e3ad","type":"Microsoft.Authorization/roleAssignments","name":"c87a1349-020b-11ed-bc6a-02136178e3ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-12T18:08:22.2861717Z","updatedOn":"2022-07-12T18:08:22.2861717Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/421ff42e-57e3-4b62-b4e6-e8e561eb7212","type":"Microsoft.Authorization/roleAssignments","name":"421ff42e-57e3-4b62-b4e6-e8e561eb7212"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T00:41:08.5337376Z","updatedOn":"2022-07-13T00:41:08.5337376Z","createdBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","updatedBy":"b353492c-a528-4fee-ba04-e27794d8a2dd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/78c85e30-0244-11ed-914f-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"78c85e30-0244-11ed-914f-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T08:27:18.8954270Z","updatedOn":"2022-07-13T08:27:18.8954270Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eda0948f-04c7-43eb-a560-0fe9db9681c5","type":"Microsoft.Authorization/roleAssignments","name":"eda0948f-04c7-43eb-a560-0fe9db9681c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T20:09:22.9119861Z","updatedOn":"2022-07-13T20:09:22.9119861Z","createdBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","updatedBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/af556422-02e7-11ed-b490-3e22fbbb55c2","type":"Microsoft.Authorization/roleAssignments","name":"af556422-02e7-11ed-b490-3e22fbbb55c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-13T20:09:36.4140354Z","updatedOn":"2022-07-13T20:09:36.4140354Z","createdBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","updatedBy":"dc8f4a4e-ee98-4a8a-ac68-0557993fd1b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b77f8f56-02e7-11ed-b490-3e22fbbb55c2","type":"Microsoft.Authorization/roleAssignments","name":"b77f8f56-02e7-11ed-b490-3e22fbbb55c2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-15T03:29:06.6862069Z","updatedOn":"2022-07-15T03:29:06.6862069Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/77952ad7-ace5-45a1-9395-7025cd43927b","type":"Microsoft.Authorization/roleAssignments","name":"77952ad7-ace5-45a1-9395-7025cd43927b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-15T21:17:33.7746216Z","updatedOn":"2022-07-15T21:17:33.7746216Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8aa04a4a-0483-11ed-bcf7-00155dfde705","type":"Microsoft.Authorization/roleAssignments","name":"8aa04a4a-0483-11ed-bcf7-00155dfde705"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-15T21:17:36.9140017Z","updatedOn":"2022-07-15T21:17:36.9140017Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c49fe02-0483-11ed-bcf7-00155dfde705","type":"Microsoft.Authorization/roleAssignments","name":"8c49fe02-0483-11ed-bcf7-00155dfde705"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-18T18:31:44.6615613Z","updatedOn":"2022-07-18T18:31:44.6615613Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9913aa55-1df8-4b7f-b351-bfb577c653b7","type":"Microsoft.Authorization/roleAssignments","name":"9913aa55-1df8-4b7f-b351-bfb577c653b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T03:14:49.6541206Z","updatedOn":"2022-07-19T03:14:49.6541206Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f2a2c960-0710-11ed-af5f-000d3a183800","type":"Microsoft.Authorization/roleAssignments","name":"f2a2c960-0710-11ed-af5f-000d3a183800"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T03:14:52.8659954Z","updatedOn":"2022-07-19T03:14:52.8659954Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f491d46c-0710-11ed-af5f-000d3a183800","type":"Microsoft.Authorization/roleAssignments","name":"f491d46c-0710-11ed-af5f-000d3a183800"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T17:08:01.7695005Z","updatedOn":"2022-07-19T17:08:01.7695005Z","createdBy":"08a0af07-b641-44c2-a174-9b85f2db0af1","updatedBy":"08a0af07-b641-44c2-a174-9b85f2db0af1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57cd16da-0785-11ed-91ee-06d9bf349677","type":"Microsoft.Authorization/roleAssignments","name":"57cd16da-0785-11ed-91ee-06d9bf349677"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T17:28:52.5405320Z","updatedOn":"2022-07-19T17:28:52.5405320Z","createdBy":"395c8203-ec60-4c13-9730-5f960088f92b","updatedBy":"395c8203-ec60-4c13-9730-5f960088f92b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6ab94087-7d29-4798-88b0-5ba408389266","type":"Microsoft.Authorization/roleAssignments","name":"6ab94087-7d29-4798-88b0-5ba408389266"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-19T20:15:51.4129938Z","updatedOn":"2022-07-19T20:15:51.4129938Z","createdBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","updatedBy":"d64ac94f-9070-4ae5-b951-cb176e91c671","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/04aeccd9-485e-4667-83ec-0940615dc03f","type":"Microsoft.Authorization/roleAssignments","name":"04aeccd9-485e-4667-83ec-0940615dc03f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-20T00:07:29.4350314Z","updatedOn":"2022-07-20T00:07:29.4350314Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1165576-07bf-11ed-a49d-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"f1165576-07bf-11ed-a49d-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-20T00:07:32.8732624Z","updatedOn":"2022-07-20T00:07:32.8732624Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f358bfdc-07bf-11ed-a49d-000d3ac3ea6d","type":"Microsoft.Authorization/roleAssignments","name":"f358bfdc-07bf-11ed-a49d-000d3ac3ea6d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-21T12:09:08.1001074Z","updatedOn":"2022-07-21T12:09:08.1001074Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ebb1f193-08ed-11ed-a201-00224878d5c3","type":"Microsoft.Authorization/roleAssignments","name":"ebb1f193-08ed-11ed-a201-00224878d5c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-21T12:09:11.3486909Z","updatedOn":"2022-07-21T12:09:11.3486909Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/edaa26e6-08ed-11ed-a201-00224878d5c3","type":"Microsoft.Authorization/roleAssignments","name":"edaa26e6-08ed-11ed-a201-00224878d5c3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-22T09:35:51.5690357Z","updatedOn":"2022-07-22T09:35:51.5690357Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd07b0f6-982a-4d85-9fdd-d44049270cbd","type":"Microsoft.Authorization/roleAssignments","name":"dd07b0f6-982a-4d85-9fdd-d44049270cbd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-24T17:57:05.6570323Z","updatedOn":"2022-07-24T17:57:05.6570323Z","createdBy":"567715d4-847a-4def-acb2-d157ebfa8439","updatedBy":"567715d4-847a-4def-acb2-d157ebfa8439","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/069fdbd1-0b7a-11ed-aa35-a2d44093b98e","type":"Microsoft.Authorization/roleAssignments","name":"069fdbd1-0b7a-11ed-aa35-a2d44093b98e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-24T17:57:10.6197123Z","updatedOn":"2022-07-24T17:57:10.6197123Z","createdBy":"567715d4-847a-4def-acb2-d157ebfa8439","updatedBy":"567715d4-847a-4def-acb2-d157ebfa8439","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09844b71-0b7a-11ed-aa35-a2d44093b98e","type":"Microsoft.Authorization/roleAssignments","name":"09844b71-0b7a-11ed-aa35-a2d44093b98e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-25T23:51:56.7193261Z","updatedOn":"2022-07-25T23:51:56.7193261Z","createdBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","updatedBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3d43338-0c74-11ed-a558-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"c3d43338-0c74-11ed-a558-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-25T23:51:59.2783640Z","updatedOn":"2022-07-25T23:51:59.2783640Z","createdBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","updatedBy":"051c54f4-b2ea-4c57-abb2-68cb995b8160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c5533d8a-0c74-11ed-a558-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"c5533d8a-0c74-11ed-a558-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-28T04:50:50.7078047Z","updatedOn":"2022-07-28T04:50:50.7078047Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da343068-0e30-11ed-91a5-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"da343068-0e30-11ed-91a5-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-28T04:50:53.7664793Z","updatedOn":"2022-07-28T04:50:53.7664793Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dbfbe50a-0e30-11ed-91a5-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"dbfbe50a-0e30-11ed-91a5-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-29T16:16:58.9941922Z","updatedOn":"2022-07-29T16:16:58.9941922Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/880fa390-3bd7-4075-8071-e33e45423e36","type":"Microsoft.Authorization/roleAssignments","name":"880fa390-3bd7-4075-8071-e33e45423e36"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-07-31T19:34:43.4356237Z","updatedOn":"2022-07-31T19:34:43.4356237Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d352709e-1107-11ed-be9f-beee8f4e086d","type":"Microsoft.Authorization/roleAssignments","name":"d352709e-1107-11ed-be9f-beee8f4e086d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-04T04:49:44.0295503Z","updatedOn":"2022-08-04T04:49:44.0295503Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/da803814-13b0-11ed-b124-e2848198df96","type":"Microsoft.Authorization/roleAssignments","name":"da803814-13b0-11ed-b124-e2848198df96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-04T04:49:49.5833937Z","updatedOn":"2022-08-04T04:49:49.5833937Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd76350a-13b0-11ed-b124-e2848198df96","type":"Microsoft.Authorization/roleAssignments","name":"dd76350a-13b0-11ed-b124-e2848198df96"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-05T14:15:13.1099119Z","updatedOn":"2022-08-05T14:15:13.1099119Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e7a4c8f3-b60c-4341-acdb-3b8d60976116","type":"Microsoft.Authorization/roleAssignments","name":"e7a4c8f3-b60c-4341-acdb-3b8d60976116"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-08T08:55:19.4739379Z","updatedOn":"2022-08-08T08:55:19.4739379Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d3f792cd-16f7-11ed-afb5-000d3a0611f6","type":"Microsoft.Authorization/roleAssignments","name":"d3f792cd-16f7-11ed-afb5-000d3a0611f6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-08T14:33:12.5245418Z","updatedOn":"2022-08-08T14:33:12.5245418Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0184de3c-04d4-433f-9221-2df571d921a5","type":"Microsoft.Authorization/roleAssignments","name":"0184de3c-04d4-433f-9221-2df571d921a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-08T17:41:09.4113992Z","updatedOn":"2022-08-08T17:41:09.4113992Z","createdBy":"19263705-0667-497e-85e7-a930fa3441ec","updatedBy":"19263705-0667-497e-85e7-a930fa3441ec","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4919e77a-1741-11ed-b6db-0022487d76b7","type":"Microsoft.Authorization/roleAssignments","name":"4919e77a-1741-11ed-b6db-0022487d76b7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:45:21.8695164Z","updatedOn":"2022-08-12T05:45:21.8695164Z","createdBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","updatedBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f23b86bb-1a01-11ed-b496-66a3f79a5cd7","type":"Microsoft.Authorization/roleAssignments","name":"f23b86bb-1a01-11ed-b496-66a3f79a5cd7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:45:28.6932347Z","updatedOn":"2022-08-12T05:45:28.6932347Z","createdBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","updatedBy":"e9555e0b-6422-4ebc-bd80-78f01f2ed680","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6a0cefb-1a01-11ed-b496-66a3f79a5cd7","type":"Microsoft.Authorization/roleAssignments","name":"f6a0cefb-1a01-11ed-b496-66a3f79a5cd7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:57:08.1910800Z","updatedOn":"2022-08-12T05:57:08.1910800Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/97fa583a-1a03-11ed-8141-0022484c72fc","type":"Microsoft.Authorization/roleAssignments","name":"97fa583a-1a03-11ed-8141-0022484c72fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T05:57:16.8561530Z","updatedOn":"2022-08-12T05:57:16.8561530Z","createdBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","updatedBy":"253bc16d-21fa-4e06-bd6a-723eb2f006a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9bed6f7d-1a03-11ed-8141-0022484c72fc","type":"Microsoft.Authorization/roleAssignments","name":"9bed6f7d-1a03-11ed-8141-0022484c72fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T10:56:06.3724576Z","updatedOn":"2022-08-12T10:56:06.3724576Z","createdBy":"312333b2-b433-4e3c-bb6f-f60419faa168","updatedBy":"312333b2-b433-4e3c-bb6f-f60419faa168","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5da07cdc-1a2d-11ed-97c4-36311d0c4477","type":"Microsoft.Authorization/roleAssignments","name":"5da07cdc-1a2d-11ed-97c4-36311d0c4477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T10:56:12.1781791Z","updatedOn":"2022-08-12T10:56:12.1781791Z","createdBy":"312333b2-b433-4e3c-bb6f-f60419faa168","updatedBy":"312333b2-b433-4e3c-bb6f-f60419faa168","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/60dfcd5b-1a2d-11ed-97c4-36311d0c4477","type":"Microsoft.Authorization/roleAssignments","name":"60dfcd5b-1a2d-11ed-97c4-36311d0c4477"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T23:47:07.1823504Z","updatedOn":"2022-08-12T23:47:07.1823504Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12955060-1a99-11ed-80ae-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"12955060-1a99-11ed-80ae-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-12T23:47:10.3981690Z","updatedOn":"2022-08-12T23:47:10.3981690Z","createdBy":"38c161af-2e06-4c57-9ed6-8727052181d3","updatedBy":"38c161af-2e06-4c57-9ed6-8727052181d3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1452bfa0-1a99-11ed-80ae-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"1452bfa0-1a99-11ed-80ae-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-14T04:59:52.9674492Z","updatedOn":"2022-08-14T04:59:52.9674492Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee779146-1b8d-11ed-ad0f-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"ee779146-1b8d-11ed-ad0f-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-14T04:59:57.7071631Z","updatedOn":"2022-08-14T04:59:57.7071631Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f13fa4b3-1b8d-11ed-ad0f-000d3a578184","type":"Microsoft.Authorization/roleAssignments","name":"f13fa4b3-1b8d-11ed-ad0f-000d3a578184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-16T23:10:44.7176056Z","updatedOn":"2022-08-16T23:10:44.7176056Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f1d255e1-0f5e-41c4-93eb-e683b5cf2ca4","type":"Microsoft.Authorization/roleAssignments","name":"f1d255e1-0f5e-41c4-93eb-e683b5cf2ca4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-16T23:31:16.6919768Z","updatedOn":"2022-08-16T23:31:16.6919768Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2a45cbdf-008d-4716-96eb-38389a417827","type":"Microsoft.Authorization/roleAssignments","name":"2a45cbdf-008d-4716-96eb-38389a417827"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-18T00:30:35.0176680Z","updatedOn":"2022-08-18T00:30:35.0176680Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f91d7aa2-1e8c-11ed-b1a6-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f91d7aa2-1e8c-11ed-b1a6-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-18T00:30:38.2729005Z","updatedOn":"2022-08-18T00:30:38.2729005Z","createdBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","updatedBy":"0cbc42f2-b993-45b9-8e40-dbe54e0be2de","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb0d664c-1e8c-11ed-b1a6-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"fb0d664c-1e8c-11ed-b1a6-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-18T15:52:38.7113712Z","updatedOn":"2022-08-18T15:52:38.7113712Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8772ddf6-c657-4010-ab7b-5d8627ba3601","type":"Microsoft.Authorization/roleAssignments","name":"8772ddf6-c657-4010-ab7b-5d8627ba3601"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-22T02:37:48.0231077Z","updatedOn":"2022-08-22T02:37:48.0231077Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7c56d8ab-b9ef-4d93-ae58-838c1209c621","type":"Microsoft.Authorization/roleAssignments","name":"7c56d8ab-b9ef-4d93-ae58-838c1209c621"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-22T02:41:47.6649206Z","updatedOn":"2022-08-22T02:41:47.6649206Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b66d25d3-0cb1-4413-9445-caf5db5b40c9","type":"Microsoft.Authorization/roleAssignments","name":"b66d25d3-0cb1-4413-9445-caf5db5b40c9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-22T06:25:39.4709093Z","updatedOn":"2022-08-22T06:25:39.4709093Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eb7ca852-9adb-4205-a828-a17ca774a8a4","type":"Microsoft.Authorization/roleAssignments","name":"eb7ca852-9adb-4205-a828-a17ca774a8a4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T02:16:22.3620594Z","updatedOn":"2022-08-23T02:16:22.3620594Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94556c2e-2289-11ed-9371-000d3ac51247","type":"Microsoft.Authorization/roleAssignments","name":"94556c2e-2289-11ed-9371-000d3ac51247"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T08:56:15.8011348Z","updatedOn":"2022-08-23T08:56:15.8011348Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7117911f-22c1-11ed-be42-000d3a084591","type":"Microsoft.Authorization/roleAssignments","name":"7117911f-22c1-11ed-be42-000d3a084591"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T08:56:21.1375800Z","updatedOn":"2022-08-23T08:56:21.1375800Z","createdBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","updatedBy":"3b63819f-0a18-45f7-abd2-da3d37c5a0f6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/73becf7d-22c1-11ed-be42-000d3a084591","type":"Microsoft.Authorization/roleAssignments","name":"73becf7d-22c1-11ed-be42-000d3a084591"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T14:02:07.2343806Z","updatedOn":"2022-08-23T14:02:07.2343806Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b9bf190-22ec-11ed-8f86-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"2b9bf190-22ec-11ed-8f86-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T14:02:10.9785694Z","updatedOn":"2022-08-23T14:02:10.9785694Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2dd0099d-22ec-11ed-8f86-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"2dd0099d-22ec-11ed-8f86-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T23:22:24.8240339Z","updatedOn":"2022-08-23T23:22:24.8240339Z","createdBy":"395c8203-ec60-4c13-9730-5f960088f92b","updatedBy":"395c8203-ec60-4c13-9730-5f960088f92b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/abda2c2b-daa3-42bb-abbd-e13cec5fb6b3","type":"Microsoft.Authorization/roleAssignments","name":"abda2c2b-daa3-42bb-abbd-e13cec5fb6b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T23:23:32.8133517Z","updatedOn":"2022-08-23T23:23:32.8133517Z","createdBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","updatedBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/994cd0f0-233a-11ed-90e8-66137476d927","type":"Microsoft.Authorization/roleAssignments","name":"994cd0f0-233a-11ed-90e8-66137476d927"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-23T23:23:35.3751695Z","updatedOn":"2022-08-23T23:23:35.3751695Z","createdBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","updatedBy":"ffc3f520-974b-42da-b204-abfe04c9f1a8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9add5dfe-233a-11ed-90e8-66137476d927","type":"Microsoft.Authorization/roleAssignments","name":"9add5dfe-233a-11ed-90e8-66137476d927"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-26T02:48:17.4348909Z","updatedOn":"2022-08-26T02:48:17.4348909Z","createdBy":"d297f8cf-3724-4da6-ae0c-6ea639225042","updatedBy":"d297f8cf-3724-4da6-ae0c-6ea639225042","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e9125ee0-b9af-4d25-a2e5-886ad210b3e8","type":"Microsoft.Authorization/roleAssignments","name":"e9125ee0-b9af-4d25-a2e5-886ad210b3e8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-29T22:08:43.6923850Z","updatedOn":"2022-08-29T22:08:43.6923850Z","createdBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","updatedBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24b2acd4-27e7-11ed-aa57-9eb40d98da7e","type":"Microsoft.Authorization/roleAssignments","name":"24b2acd4-27e7-11ed-aa57-9eb40d98da7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-29T22:08:46.8049719Z","updatedOn":"2022-08-29T22:08:46.8049719Z","createdBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","updatedBy":"6ea40f30-7db6-4244-82ce-f0ded773a080","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/26a4fa7f-27e7-11ed-aa57-9eb40d98da7e","type":"Microsoft.Authorization/roleAssignments","name":"26a4fa7f-27e7-11ed-aa57-9eb40d98da7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-29T22:11:06.3024798Z","updatedOn":"2022-08-29T22:11:06.3024798Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63e0b566-276e-405d-8d4e-1c82b1f937c6","type":"Microsoft.Authorization/roleAssignments","name":"63e0b566-276e-405d-8d4e-1c82b1f937c6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:50:53.4210961Z","updatedOn":"2022-08-30T23:50:53.4210961Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/94aa5054-28be-11ed-a6d3-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"94aa5054-28be-11ed-a6d3-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:50:57.2039466Z","updatedOn":"2022-08-30T23:50:57.2039466Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/96f9353c-28be-11ed-a6d3-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"96f9353c-28be-11ed-a6d3-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:55:18.1665901Z","updatedOn":"2022-08-30T23:55:18.1665901Z","createdBy":"08de6591-dec9-4255-ab17-d6919151fadd","updatedBy":"08de6591-dec9-4255-ab17-d6919151fadd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/32738d64-28bf-11ed-8c18-d28ee6de8df0","type":"Microsoft.Authorization/roleAssignments","name":"32738d64-28bf-11ed-8c18-d28ee6de8df0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-30T23:55:21.0832794Z","updatedOn":"2022-08-30T23:55:21.0832794Z","createdBy":"08de6591-dec9-4255-ab17-d6919151fadd","updatedBy":"08de6591-dec9-4255-ab17-d6919151fadd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/347773d2-28bf-11ed-8c18-d28ee6de8df0","type":"Microsoft.Authorization/roleAssignments","name":"347773d2-28bf-11ed-8c18-d28ee6de8df0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-31T23:23:54.3892344Z","updatedOn":"2022-08-31T23:23:54.3892344Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa44d69e-2983-11ed-aa08-92f3f7a6dd9b","type":"Microsoft.Authorization/roleAssignments","name":"fa44d69e-2983-11ed-aa08-92f3f7a6dd9b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-08-31T23:23:57.6913146Z","updatedOn":"2022-08-31T23:23:57.6913146Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fc468884-2983-11ed-aa08-92f3f7a6dd9b","type":"Microsoft.Authorization/roleAssignments","name":"fc468884-2983-11ed-aa08-92f3f7a6dd9b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-01T06:08:41.4708815Z","updatedOn":"2022-09-01T06:08:41.4708815Z","createdBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","updatedBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/86088e13-29bc-11ed-9e75-ee990064eed4","type":"Microsoft.Authorization/roleAssignments","name":"86088e13-29bc-11ed-9e75-ee990064eed4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-01T14:36:10.3068118Z","updatedOn":"2022-09-01T14:36:10.3068118Z","createdBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","updatedBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b6d0b78-2a03-11ed-8b33-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"6b6d0b78-2a03-11ed-8b33-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-01T14:36:19.4793808Z","updatedOn":"2022-09-01T14:36:19.4793808Z","createdBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","updatedBy":"a91b7745-4da1-4abe-9ea9-7c58cdfe579d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/70bc79b0-2a03-11ed-8b33-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"70bc79b0-2a03-11ed-8b33-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-05T20:13:38.7677056Z","updatedOn":"2022-09-05T20:13:38.7677056Z","createdBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","updatedBy":"c65384a4-84b3-4a11-9d69-30b71ee71fc6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/396cb586-2d57-11ed-8f60-784f439093bb","type":"Microsoft.Authorization/roleAssignments","name":"396cb586-2d57-11ed-8f60-784f439093bb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-06T19:58:31.4389144Z","updatedOn":"2022-09-06T19:58:31.4389144Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47bb56b5-2e1e-11ed-9020-000d3a6d9a18","type":"Microsoft.Authorization/roleAssignments","name":"47bb56b5-2e1e-11ed-9020-000d3a6d9a18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-06T19:58:35.6283701Z","updatedOn":"2022-09-06T19:58:35.6283701Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a30eda3-2e1e-11ed-9020-000d3a6d9a18","type":"Microsoft.Authorization/roleAssignments","name":"4a30eda3-2e1e-11ed-9020-000d3a6d9a18"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-08T14:38:34.2901394Z","updatedOn":"2022-09-08T14:38:34.2901394Z","createdBy":"61a5600d-3609-43e4-9dd8-bcf58e3ce51f","updatedBy":"61a5600d-3609-43e4-9dd8-bcf58e3ce51f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ea4dcb49-2f83-11ed-9efa-000d3a181b06","type":"Microsoft.Authorization/roleAssignments","name":"ea4dcb49-2f83-11ed-9efa-000d3a181b06"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-08T17:46:08.1384737Z","updatedOn":"2022-09-08T17:46:08.1384737Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1dc95ee4-2f9e-11ed-89d2-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"1dc95ee4-2f9e-11ed-89d2-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-08T17:46:11.6717566Z","updatedOn":"2022-09-08T17:46:11.6717566Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2008f142-2f9e-11ed-89d2-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2008f142-2f9e-11ed-89d2-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-12T23:42:55.7564365Z","updatedOn":"2022-09-12T23:42:55.7564365Z","createdBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","updatedBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9fa0c69c-32f4-11ed-aee5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"9fa0c69c-32f4-11ed-aee5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-12T23:43:04.5756788Z","updatedOn":"2022-09-12T23:43:04.5756788Z","createdBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","updatedBy":"e3eb2880-d338-4573-bdde-d1e980becc3a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a4e1656c-32f4-11ed-aee5-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"a4e1656c-32f4-11ed-aee5-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T00:18:28.3312561Z","updatedOn":"2022-09-13T00:18:28.3312561Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/965f9705-32f9-11ed-a03a-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"965f9705-32f9-11ed-a03a-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T00:18:32.9627131Z","updatedOn":"2022-09-13T00:18:32.9627131Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9918693b-32f9-11ed-a03a-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"9918693b-32f9-11ed-a03a-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T05:20:21.8356068Z","updatedOn":"2022-09-13T05:20:21.8356068Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/14ac626a-3acb-4867-a3ce-32d85da9a0e7","type":"Microsoft.Authorization/roleAssignments","name":"14ac626a-3acb-4867-a3ce-32d85da9a0e7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T20:31:46.8554799Z","updatedOn":"2022-09-13T20:31:46.8554799Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d71c7b8-3398-11ed-ad11-e6ebdcb69945","type":"Microsoft.Authorization/roleAssignments","name":"6d71c7b8-3398-11ed-ad11-e6ebdcb69945"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T20:31:50.1456004Z","updatedOn":"2022-09-13T20:31:50.1456004Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ca65e0f-3398-11ed-ad11-e6ebdcb69945","type":"Microsoft.Authorization/roleAssignments","name":"7ca65e0f-3398-11ed-ad11-e6ebdcb69945"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-13T23:17:04.2606442Z","updatedOn":"2022-09-13T23:17:04.2606442Z","createdBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","updatedBy":"fda369a6-6e51-4fdc-89f6-e1088ca8c92a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8ecfc544-bb26-4b57-9c52-7a3751bf5b9a","type":"Microsoft.Authorization/roleAssignments","name":"8ecfc544-bb26-4b57-9c52-7a3751bf5b9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-14T20:11:09.0922785Z","updatedOn":"2022-09-14T20:11:09.0922785Z","createdBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","updatedBy":"a4e829b8-54ee-46b2-bb87-e6b90e834c04","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/43c2f0e6-bf81-4e83-bf98-eb7d592639a5","type":"Microsoft.Authorization/roleAssignments","name":"43c2f0e6-bf81-4e83-bf98-eb7d592639a5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-15T17:44:22.3186068Z","updatedOn":"2022-09-15T17:44:22.3186068Z","createdBy":"2182129f-e575-4986-a7fb-2be7772ba46f","updatedBy":"2182129f-e575-4986-a7fb-2be7772ba46f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/05e871b7-351e-11ed-8cc7-32a64839c39d","type":"Microsoft.Authorization/roleAssignments","name":"05e871b7-351e-11ed-8cc7-32a64839c39d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ab4d3d-a1bf-4477-8ad9-8359bc988f69","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-15T22:34:54.1872835Z","updatedOn":"2022-09-15T22:34:54.1872835Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a9ac6f9f-a6dc-43e5-bc80-6e362547ff03","type":"Microsoft.Authorization/roleAssignments","name":"a9ac6f9f-a6dc-43e5-bc80-6e362547ff03"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-15T22:36:25.6520797Z","updatedOn":"2022-09-15T22:36:25.6520797Z","createdBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","updatedBy":"064344e9-52a3-42bc-95f4-3cefe9984e2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a48452ae-2a7a-4a35-bc22-de46608a8c12","type":"Microsoft.Authorization/roleAssignments","name":"a48452ae-2a7a-4a35-bc22-de46608a8c12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18ab4d3d-a1bf-4477-8ad9-8359bc988f69","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-16T03:26:44.5972975Z","updatedOn":"2022-09-16T03:26:44.5972975Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7ddb897-f37b-4617-8b62-26a42b72d0fd","type":"Microsoft.Authorization/roleAssignments","name":"b7ddb897-f37b-4617-8b62-26a42b72d0fd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-16T03:27:20.0290180Z","updatedOn":"2022-09-16T03:27:20.0290180Z","createdBy":"b126d97b-e761-4f64-8633-b268c913ece1","updatedBy":"b126d97b-e761-4f64-8633-b268c913ece1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/36cbdcc8-a70b-42a9-836a-9bb89dbd301a","type":"Microsoft.Authorization/roleAssignments","name":"36cbdcc8-a70b-42a9-836a-9bb89dbd301a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-16T14:21:41.5963217Z","updatedOn":"2022-09-16T14:21:41.5963217Z","createdBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","updatedBy":"e6a7bb6f-6e1f-46ac-9996-7408b3a03d5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bc428d08-6f99-4619-9554-500bfc75b861","type":"Microsoft.Authorization/roleAssignments","name":"bc428d08-6f99-4619-9554-500bfc75b861"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T01:59:15.5981081Z","updatedOn":"2022-09-19T01:59:15.5981081Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a92c46b1-37be-11ed-8745-00224857f2c5","type":"Microsoft.Authorization/roleAssignments","name":"a92c46b1-37be-11ed-8745-00224857f2c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T01:59:20.5513267Z","updatedOn":"2022-09-19T01:59:20.5513267Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ac11dbd2-37be-11ed-8745-00224857f2c5","type":"Microsoft.Authorization/roleAssignments","name":"ac11dbd2-37be-11ed-8745-00224857f2c5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T09:51:42.7586328Z","updatedOn":"2022-09-19T09:51:42.7586328Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1cb1222d-5cb9-4d4a-a901-850f4a0d08da","type":"Microsoft.Authorization/roleAssignments","name":"1cb1222d-5cb9-4d4a-a901-850f4a0d08da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T18:49:44.8806347Z","updatedOn":"2022-09-19T18:49:44.8806347Z","createdBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","updatedBy":"756a1e87-e758-4b77-836c-b19b83ca0c72","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b9c6a4b4-714e-45fc-8bc4-11c41f8c306a","type":"Microsoft.Authorization/roleAssignments","name":"b9c6a4b4-714e-45fc-8bc4-11c41f8c306a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-19T22:48:28.6777206Z","updatedOn":"2022-09-19T22:48:28.6777206Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3ea76d8b-9daa-4d62-bfc8-bb9013ecec53","type":"Microsoft.Authorization/roleAssignments","name":"3ea76d8b-9daa-4d62-bfc8-bb9013ecec53"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-20T22:34:06.1765862Z","updatedOn":"2022-09-20T22:34:06.1765862Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/475a9fc4-c1a8-42c7-9e4e-d897c83f2a86","type":"Microsoft.Authorization/roleAssignments","name":"475a9fc4-c1a8-42c7-9e4e-d897c83f2a86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/434105ed-43f6-45c7-a02f-909b2ba83430","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-21T00:11:12.3038110Z","updatedOn":"2022-09-21T00:11:12.3038110Z","createdBy":"b47f071a-d6c9-4297-954e-83151fff489b","updatedBy":"b47f071a-d6c9-4297-954e-83151fff489b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce3975e8-d43d-4f8c-a315-e20609d7472a","type":"Microsoft.Authorization/roleAssignments","name":"ce3975e8-d43d-4f8c-a315-e20609d7472a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T07:30:57.3801733Z","updatedOn":"2022-09-23T07:30:57.3801733Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7a5ed22-3b11-11ed-876d-1a48d609785e","type":"Microsoft.Authorization/roleAssignments","name":"a7a5ed22-3b11-11ed-876d-1a48d609785e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T14:34:07.2104918Z","updatedOn":"2022-09-23T14:34:07.2104918Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c756e2ff-3b4c-11ed-be28-000d3a9e5815","type":"Microsoft.Authorization/roleAssignments","name":"c756e2ff-3b4c-11ed-be28-000d3a9e5815"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T14:34:10.7191458Z","updatedOn":"2022-09-23T14:34:10.7191458Z","createdBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","updatedBy":"b4852ab3-e7d3-439a-a2b8-21c8ff55f816","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c96352a0-3b4c-11ed-be28-000d3a9e5815","type":"Microsoft.Authorization/roleAssignments","name":"c96352a0-3b4c-11ed-be28-000d3a9e5815"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T19:05:01.8468743Z","updatedOn":"2022-09-23T19:05:01.8468743Z","createdBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","updatedBy":"970ea404-ba16-49b2-ac79-7a4abc5204fc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ecc7527-3b72-11ed-92ab-a642c656be12","type":"Microsoft.Authorization/roleAssignments","name":"9ecc7527-3b72-11ed-92ab-a642c656be12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-23T21:31:12.8549148Z","updatedOn":"2022-09-23T21:31:12.8549148Z","createdBy":"0fa3313e-2eee-4835-aeff-681e46364ab6","updatedBy":"0fa3313e-2eee-4835-aeff-681e46364ab6","delegatedManagedIdentityResourceId":null,"description":"New + AKS SRE team member"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2b79302d-37ad-406c-b32d-cddbd2387781","type":"Microsoft.Authorization/roleAssignments","name":"2b79302d-37ad-406c-b32d-cddbd2387781"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2022-09-25T18:15:06.7527496Z","updatedOn":"2022-09-25T18:15:06.7527496Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f83fc539-aab6-4862-8635-cbe5472eadad","type":"Microsoft.Authorization/roleAssignments","name":"f83fc539-aab6-4862-8635-cbe5472eadad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-25T17:34:50.8733023Z","updatedOn":"2023-01-25T17:34:50.8733023Z","createdBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","updatedBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/91a85771-9cd6-11ed-a528-6045bd8532c1","type":"Microsoft.Authorization/roleAssignments","name":"91a85771-9cd6-11ed-a528-6045bd8532c1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T19:40:10.2077596Z","updatedOn":"2023-01-26T19:40:10.2077596Z","createdBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","updatedBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3deeb34a-9db1-11ed-9882-bad388e32b6e","type":"Microsoft.Authorization/roleAssignments","name":"3deeb34a-9db1-11ed-9882-bad388e32b6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T19:40:13.9767599Z","updatedOn":"2023-01-26T19:40:13.9767599Z","createdBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","updatedBy":"c429d866-1b75-4e7d-bf9e-4fec397014c3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/405d87d0-9db1-11ed-9882-bad388e32b6e","type":"Microsoft.Authorization/roleAssignments","name":"405d87d0-9db1-11ed-9882-bad388e32b6e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T21:29:38.0736564Z","updatedOn":"2023-01-26T21:29:38.0736564Z","createdBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","updatedBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88db6aa7-9dc0-11ed-873b-02af4457d3da","type":"Microsoft.Authorization/roleAssignments","name":"88db6aa7-9dc0-11ed-873b-02af4457d3da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-26T21:29:41.9721959Z","updatedOn":"2023-01-26T21:29:41.9721959Z","createdBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","updatedBy":"e73158f3-fb66-40f4-83f4-c450204d0bf5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8b20c92b-9dc0-11ed-873b-02af4457d3da","type":"Microsoft.Authorization/roleAssignments","name":"8b20c92b-9dc0-11ed-873b-02af4457d3da"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-28T06:05:38.5919016Z","updatedOn":"2023-01-28T06:05:38.5919016Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7ee0fdb3-65a0-4344-a73d-15f6b92ea58b","type":"Microsoft.Authorization/roleAssignments","name":"7ee0fdb3-65a0-4344-a73d-15f6b92ea58b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-29T03:40:38.5139182Z","updatedOn":"2023-01-29T03:40:38.5139182Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b1dec2dc-9f86-11ed-a95c-0022487e65a6","type":"Microsoft.Authorization/roleAssignments","name":"b1dec2dc-9f86-11ed-a95c-0022487e65a6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-30T05:50:30.0380171Z","updatedOn":"2023-01-30T05:50:30.0380171Z","createdBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","updatedBy":"286eaf4d-0a39-4cf6-9f6c-20944f654b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/792989a2-3985-4915-bf5a-4eb5451f731b","type":"Microsoft.Authorization/roleAssignments","name":"792989a2-3985-4915-bf5a-4eb5451f731b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-30T15:03:46.9770738Z","updatedOn":"2023-01-30T15:03:46.9770738Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a97ceb8-a0af-11ed-bf9c-a8a1598cc0f3","type":"Microsoft.Authorization/roleAssignments","name":"4a97ceb8-a0af-11ed-bf9c-a8a1598cc0f3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-31T08:45:32.8563782Z","updatedOn":"2023-01-31T08:45:32.8563782Z","createdBy":"ef53da73-1d28-4014-8dd7-e311fe712137","updatedBy":"ef53da73-1d28-4014-8dd7-e311fe712137","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9ea26baa-a143-11ed-85d1-1eb0db5454d6","type":"Microsoft.Authorization/roleAssignments","name":"9ea26baa-a143-11ed-85d1-1eb0db5454d6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-01-31T09:18:23.0405616Z","updatedOn":"2023-01-31T09:18:23.0405616Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9063ace1-9e8e-4195-82f8-39fe17fca5ce","type":"Microsoft.Authorization/roleAssignments","name":"9063ace1-9e8e-4195-82f8-39fe17fca5ce"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-01T08:12:47.9822357Z","updatedOn":"2023-02-01T08:12:47.9822357Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/31c05c6a-a87b-4ad2-a07e-7acaadecb649","type":"Microsoft.Authorization/roleAssignments","name":"31c05c6a-a87b-4ad2-a07e-7acaadecb649"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-01T19:03:12.2207490Z","updatedOn":"2023-02-01T19:03:12.2207490Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/153174d5-a263-11ed-bad7-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"153174d5-a263-11ed-bad7-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-01T19:03:15.7264802Z","updatedOn":"2023-02-01T19:03:15.7264802Z","createdBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","updatedBy":"e43e1ced-8231-4014-9d98-dab7031b16bd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/172f1d82-a263-11ed-bad7-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"172f1d82-a263-11ed-bad7-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-02T03:13:38.6056072Z","updatedOn":"2023-02-02T03:13:38.6056072Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/88d8d974-d77d-450f-89ee-d4a98efea6d8","type":"Microsoft.Authorization/roleAssignments","name":"88d8d974-d77d-450f-89ee-d4a98efea6d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-02T03:19:55.3070568Z","updatedOn":"2023-02-02T03:19:55.3070568Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f273f651-5bde-4219-ab11-33842c5d3224","type":"Microsoft.Authorization/roleAssignments","name":"f273f651-5bde-4219-ab11-33842c5d3224"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-02T09:43:41.0210838Z","updatedOn":"2023-02-02T09:43:41.0210838Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b2e9d149-730b-447b-b3e8-3a1fff80f1e1","type":"Microsoft.Authorization/roleAssignments","name":"b2e9d149-730b-447b-b3e8-3a1fff80f1e1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-03T18:49:50.9127720Z","updatedOn":"2023-02-03T18:49:50.9127720Z","createdBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","updatedBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8984621e-a3f3-11ed-b23c-a08cfdd89f0d","type":"Microsoft.Authorization/roleAssignments","name":"8984621e-a3f3-11ed-b23c-a08cfdd89f0d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-03T18:49:55.4277284Z","updatedOn":"2023-02-03T18:49:55.4277284Z","createdBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","updatedBy":"9493df00-bb4d-4280-969a-0a3af25c0bbd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8c3308b8-a3f3-11ed-b23c-a08cfdd89f0d","type":"Microsoft.Authorization/roleAssignments","name":"8c3308b8-a3f3-11ed-b23c-a08cfdd89f0d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-03T21:54:32.5272557Z","updatedOn":"2023-02-03T21:54:32.5272557Z","createdBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","updatedBy":"de044ada-ff3e-448d-9bbd-050ef3f53df2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5650998f-a40d-11ed-8cfd-763d1fcabad1","type":"Microsoft.Authorization/roleAssignments","name":"5650998f-a40d-11ed-8cfd-763d1fcabad1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-06T16:05:18.7158859Z","updatedOn":"2023-02-06T16:05:18.7158859Z","createdBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","updatedBy":"44dbda14-a8c7-4526-a0c2-3d86e7b23160","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0b2a1bdc-a638-11ed-b0e4-de5d54961c0d","type":"Microsoft.Authorization/roleAssignments","name":"0b2a1bdc-a638-11ed-b0e4-de5d54961c0d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-06T21:22:16.0685608Z","updatedOn":"2023-02-06T21:22:16.0685608Z","createdBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","updatedBy":"f5d11ebc-8494-4b5f-a0fc-5fbbfd56f7bb","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5372f2e2-a664-11ed-99dd-00155d7b2003","type":"Microsoft.Authorization/roleAssignments","name":"5372f2e2-a664-11ed-99dd-00155d7b2003"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T02:31:53.1943940Z","updatedOn":"2023-02-07T02:31:53.1943940Z","createdBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","updatedBy":"0276227b-f99f-4db3-b016-9eebbdfe5dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/93d9ca8e-a68f-11ed-99fe-82539686faad","type":"Microsoft.Authorization/roleAssignments","name":"93d9ca8e-a68f-11ed-99fe-82539686faad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T17:35:09.5804790Z","updatedOn":"2023-02-07T17:35:09.5804790Z","createdBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","updatedBy":"766b85aa-d8b7-4b5e-911d-c111e86dc72b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c423996c-a70d-11ed-805e-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"c423996c-a70d-11ed-805e-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T21:59:01.9278864Z","updatedOn":"2023-02-07T21:59:01.9278864Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/415eb8ac-2243-415a-8a6a-692cfd82054b","type":"Microsoft.Authorization/roleAssignments","name":"415eb8ac-2243-415a-8a6a-692cfd82054b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T23:07:32.1844748Z","updatedOn":"2023-02-07T23:07:32.1844748Z","createdBy":"bd73a081-fc57-4d58-adb0-f7b098797225","updatedBy":"bd73a081-fc57-4d58-adb0-f7b098797225","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/32edd9f4-a73c-11ed-a351-64d69a01bd73","type":"Microsoft.Authorization/roleAssignments","name":"32edd9f4-a73c-11ed-a351-64d69a01bd73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-07T23:07:37.2690514Z","updatedOn":"2023-02-07T23:07:37.2690514Z","createdBy":"bd73a081-fc57-4d58-adb0-f7b098797225","updatedBy":"bd73a081-fc57-4d58-adb0-f7b098797225","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3567b721-a73c-11ed-a351-64d69a01bd73","type":"Microsoft.Authorization/roleAssignments","name":"3567b721-a73c-11ed-a351-64d69a01bd73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T16:04:37.2489661Z","updatedOn":"2023-02-08T16:04:37.2489661Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4891c61c-a7ca-11ed-926c-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"4891c61c-a7ca-11ed-926c-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T19:28:37.4403950Z","updatedOn":"2023-02-08T19:28:37.4403950Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a7017b0f-925c-43b0-9416-6eb60d8374e3","type":"Microsoft.Authorization/roleAssignments","name":"a7017b0f-925c-43b0-9416-6eb60d8374e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T19:42:35.5124742Z","updatedOn":"2023-02-08T19:42:35.5124742Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd059c37-a7e8-11ed-8d91-7e3b8160807d","type":"Microsoft.Authorization/roleAssignments","name":"bd059c37-a7e8-11ed-8d91-7e3b8160807d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T19:42:39.7153998Z","updatedOn":"2023-02-08T19:42:39.7153998Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bf728611-a7e8-11ed-8d91-7e3b8160807d","type":"Microsoft.Authorization/roleAssignments","name":"bf728611-a7e8-11ed-8d91-7e3b8160807d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T22:45:32.7092683Z","updatedOn":"2023-02-08T22:45:32.7092683Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c82f6230-4661-4b60-9ae4-cbd24bc5971d","type":"Microsoft.Authorization/roleAssignments","name":"c82f6230-4661-4b60-9ae4-cbd24bc5971d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-08T23:38:55.4476717Z","updatedOn":"2023-02-08T23:38:55.4476717Z","createdBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","updatedBy":"eb639e35-b235-46f8-8733-1bec1fd4bb7d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b563f5e3-a809-11ed-92da-061e1dff6519","type":"Microsoft.Authorization/roleAssignments","name":"b563f5e3-a809-11ed-92da-061e1dff6519"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T17:18:01.5061195Z","updatedOn":"2023-02-09T17:18:01.5061195Z","createdBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","updatedBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b477f0fa-a89d-11ed-9d1f-4e375b705c86","type":"Microsoft.Authorization/roleAssignments","name":"b477f0fa-a89d-11ed-9d1f-4e375b705c86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T17:18:03.2471424Z","updatedOn":"2023-02-09T17:18:03.2471424Z","createdBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","updatedBy":"fc886167-320b-47c6-ad87-f0bab3f4f670","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b58085bc-a89d-11ed-9d1f-4e375b705c86","type":"Microsoft.Authorization/roleAssignments","name":"b58085bc-a89d-11ed-9d1f-4e375b705c86"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T18:21:34.0931358Z","updatedOn":"2023-02-09T18:21:34.0931358Z","createdBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","updatedBy":"e3e7ef9f-eacd-4446-8eb4-f6d27f7f4f32","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5fe27fe4-6007-4829-afa0-0a3e3780b6d3","type":"Microsoft.Authorization/roleAssignments","name":"5fe27fe4-6007-4829-afa0-0a3e3780b6d3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T21:44:30.2729026Z","updatedOn":"2023-02-09T21:44:30.2729026Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eecd187f-a8c2-11ed-9284-1e4dbb47ca8f","type":"Microsoft.Authorization/roleAssignments","name":"eecd187f-a8c2-11ed-9284-1e4dbb47ca8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-09T21:44:36.9652403Z","updatedOn":"2023-02-09T21:44:36.9652403Z","createdBy":"4500bf9f-e868-473c-8477-feda97573045","updatedBy":"4500bf9f-e868-473c-8477-feda97573045","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f27e86e2-a8c2-11ed-9284-1e4dbb47ca8f","type":"Microsoft.Authorization/roleAssignments","name":"f27e86e2-a8c2-11ed-9284-1e4dbb47ca8f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T01:19:04.3719723Z","updatedOn":"2023-02-10T01:19:04.3719723Z","createdBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","updatedBy":"c281de91-d2d9-4490-950b-4e89d62c44e5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d5cdb0f-1b3b-46f9-8e1b-84661382dfe9","type":"Microsoft.Authorization/roleAssignments","name":"0d5cdb0f-1b3b-46f9-8e1b-84661382dfe9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T22:39:09.0776574Z","updatedOn":"2023-02-10T22:39:09.0776574Z","createdBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","updatedBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb3a8a84-a993-11ed-a433-00155df41803","type":"Microsoft.Authorization/roleAssignments","name":"bb3a8a84-a993-11ed-a433-00155df41803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-10T22:39:12.9098417Z","updatedOn":"2023-02-10T22:39:12.9098417Z","createdBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","updatedBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bd7f173a-a993-11ed-a433-00155df41803","type":"Microsoft.Authorization/roleAssignments","name":"bd7f173a-a993-11ed-a433-00155df41803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/e3c35f4c-e0ca-4b9e-a01e-5ebdd17e2ee7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-13T07:08:28.2729144Z","updatedOn":"2023-02-13T07:08:28.2729144Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bba123f0-e027-47b5-9f46-15320b0d6ea2","type":"Microsoft.Authorization/roleAssignments","name":"bba123f0-e027-47b5-9f46-15320b0d6ea2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-13T20:30:01.2193678Z","updatedOn":"2023-02-13T20:30:01.2193678Z","createdBy":"40db9032-6efa-443b-a2df-6b0c1d107875","updatedBy":"40db9032-6efa-443b-a2df-6b0c1d107875","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f3b7710-abdd-11ed-8e93-42746b8cdccc","type":"Microsoft.Authorization/roleAssignments","name":"2f3b7710-abdd-11ed-8e93-42746b8cdccc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-13T20:30:05.9299217Z","updatedOn":"2023-02-13T20:30:05.9299217Z","createdBy":"40db9032-6efa-443b-a2df-6b0c1d107875","updatedBy":"40db9032-6efa-443b-a2df-6b0c1d107875","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/321b80cb-abdd-11ed-8e93-42746b8cdccc","type":"Microsoft.Authorization/roleAssignments","name":"321b80cb-abdd-11ed-8e93-42746b8cdccc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-14T20:20:30.1688349Z","updatedOn":"2023-02-14T20:20:30.1688349Z","createdBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","updatedBy":"88dfd750-bd59-4ed3-8c74-2c6d08378f73","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/06359457-aca5-11ed-82a6-00155df41803","type":"Microsoft.Authorization/roleAssignments","name":"06359457-aca5-11ed-82a6-00155df41803"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T01:37:21.5709630Z","updatedOn":"2023-02-15T01:37:21.5709630Z","createdBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","updatedBy":"4aed2078-2d27-4c18-95f7-fef3c0fe91ca","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a7e1874-acd1-11ed-8639-d691c85c3a02","type":"Microsoft.Authorization/roleAssignments","name":"4a7e1874-acd1-11ed-8639-d691c85c3a02"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T09:59:56.7546952Z","updatedOn":"2023-02-15T09:59:56.7546952Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7fa783e6-ad17-11ed-97ee-000d3a9be92a","type":"Microsoft.Authorization/roleAssignments","name":"7fa783e6-ad17-11ed-97ee-000d3a9be92a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T10:00:02.7311424Z","updatedOn":"2023-02-15T10:00:02.7311424Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/836897a6-ad17-11ed-97ee-000d3a9be92a","type":"Microsoft.Authorization/roleAssignments","name":"836897a6-ad17-11ed-97ee-000d3a9be92a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T16:38:42.0341267Z","updatedOn":"2023-02-15T16:38:42.0341267Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3476476d-ad4f-11ed-8fa2-000d3a984fd4","type":"Microsoft.Authorization/roleAssignments","name":"3476476d-ad4f-11ed-8fa2-000d3a984fd4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-15T16:38:46.6959293Z","updatedOn":"2023-02-15T16:38:46.6959293Z","createdBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","updatedBy":"a5c919a9-89c9-45fb-880a-5e3e0b4fcb84","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/375326e5-ad4f-11ed-8fa2-000d3a984fd4","type":"Microsoft.Authorization/roleAssignments","name":"375326e5-ad4f-11ed-8fa2-000d3a984fd4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-17T06:21:34.8976862Z","updatedOn":"2023-02-17T06:21:34.8976862Z","createdBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","updatedBy":"6904f123-3ede-43d2-bd0e-2b2f1bbe4a4b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/52c15699-ae8b-11ed-b14e-023ef88171a7","type":"Microsoft.Authorization/roleAssignments","name":"52c15699-ae8b-11ed-b14e-023ef88171a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-19T02:02:00.9378377Z","updatedOn":"2023-02-19T02:02:00.9378377Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63ae64e6-aff9-11ed-967a-968963402bc6","type":"Microsoft.Authorization/roleAssignments","name":"63ae64e6-aff9-11ed-967a-968963402bc6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-19T02:02:05.4821651Z","updatedOn":"2023-02-19T02:02:05.4821651Z","createdBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","updatedBy":"9ba1903a-3927-4c38-a6d4-3c5a565fe070","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66639a26-aff9-11ed-967a-968963402bc6","type":"Microsoft.Authorization/roleAssignments","name":"66639a26-aff9-11ed-967a-968963402bc6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T09:22:38.4725256Z","updatedOn":"2023-02-21T09:22:38.4725256Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/48461efc-b1c9-11ed-bd41-3ed144e41689","type":"Microsoft.Authorization/roleAssignments","name":"48461efc-b1c9-11ed-bd41-3ed144e41689"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T09:22:42.2363452Z","updatedOn":"2023-02-21T09:22:42.2363452Z","createdBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","updatedBy":"ca888f2e-98bf-46e2-be51-15053dcfff90","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a784b6e-b1c9-11ed-bd41-3ed144e41689","type":"Microsoft.Authorization/roleAssignments","name":"4a784b6e-b1c9-11ed-bd41-3ed144e41689"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-23T03:00:31.5651965Z","updatedOn":"2023-02-23T03:00:31.5651965Z","createdBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","updatedBy":"e3440dd1-b7f3-4275-82bd-65482ba5b26a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cef217b-a8cc-4115-a4bd-042af84325dc","type":"Microsoft.Authorization/roleAssignments","name":"3cef217b-a8cc-4115-a4bd-042af84325dc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-23T06:48:16.8637402Z","updatedOn":"2023-02-23T06:48:16.8637402Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0c91daf6-b346-11ed-a964-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"0c91daf6-b346-11ed-a964-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-23T06:48:21.4826289Z","updatedOn":"2023-02-23T06:48:21.4826289Z","createdBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","updatedBy":"c2cddd04-ecc5-4f94-9221-c4e2e83864d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f55d0c9-b346-11ed-a964-000d3ac28cc9","type":"Microsoft.Authorization/roleAssignments","name":"0f55d0c9-b346-11ed-a964-000d3ac28cc9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T00:54:23.0966101Z","updatedOn":"2023-02-24T00:54:23.0966101Z","createdBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","updatedBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6e6a721-b3dd-11ed-b60f-0022481da32e","type":"Microsoft.Authorization/roleAssignments","name":"c6e6a721-b3dd-11ed-b60f-0022481da32e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T00:54:31.9826815Z","updatedOn":"2023-02-24T00:54:31.9826815Z","createdBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","updatedBy":"838babe7-4025-418e-ba73-1dab6f3bb0c4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cc3f3b4e-b3dd-11ed-b60f-0022481da32e","type":"Microsoft.Authorization/roleAssignments","name":"cc3f3b4e-b3dd-11ed-b60f-0022481da32e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T02:50:23.5663680Z","updatedOn":"2023-02-24T02:50:23.5663680Z","createdBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","updatedBy":"30bd328a-0c68-4e52-bbfe-da2a58496c1f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fb698872-b3ed-11ed-8f76-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"fb698872-b3ed-11ed-8f76-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T04:50:44.0913238Z","updatedOn":"2023-02-24T04:50:44.0913238Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cb72426d-4967-427c-8cf6-c167bc26814f","type":"Microsoft.Authorization/roleAssignments","name":"cb72426d-4967-427c-8cf6-c167bc26814f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T23:34:22.8669116Z","updatedOn":"2023-02-24T23:34:22.8669116Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3e6258b-b49b-11ed-90ef-000d3a0168de","type":"Microsoft.Authorization/roleAssignments","name":"c3e6258b-b49b-11ed-90ef-000d3a0168de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-24T23:34:26.7176031Z","updatedOn":"2023-02-24T23:34:26.7176031Z","createdBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","updatedBy":"2c69b63d-f193-4f5d-ac91-75273bd626b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c6438a56-b49b-11ed-90ef-000d3a0168de","type":"Microsoft.Authorization/roleAssignments","name":"c6438a56-b49b-11ed-90ef-000d3a0168de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-27T04:38:09.3994350Z","updatedOn":"2023-02-27T04:38:09.3994350Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b58ab305-83cc-4c4e-924b-3c1ba8ffcb83","type":"Microsoft.Authorization/roleAssignments","name":"b58ab305-83cc-4c4e-924b-3c1ba8ffcb83"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-27T04:38:09.8212573Z","updatedOn":"2023-02-27T04:38:09.8212573Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45883a93-4807-4bb9-a2b3-a7163d6c2031","type":"Microsoft.Authorization/roleAssignments","name":"45883a93-4807-4bb9-a2b3-a7163d6c2031"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T04:01:45.4038947Z","updatedOn":"2023-02-28T04:01:45.4038947Z","createdBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","updatedBy":"a15e3025-85f8-49b8-b18e-e83fe54b8695","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/9d7a9b0f-b71c-11ed-b33b-6045bd7c1155","type":"Microsoft.Authorization/roleAssignments","name":"9d7a9b0f-b71c-11ed-b33b-6045bd7c1155"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T06:57:12.2026246Z","updatedOn":"2023-02-28T06:57:12.2026246Z","createdBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","updatedBy":"82e11ed5-c720-4c8d-b396-a2fcd9e4291f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1f6f0732-b735-11ed-be49-962abdd2f2a3","type":"Microsoft.Authorization/roleAssignments","name":"1f6f0732-b735-11ed-be49-962abdd2f2a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T15:32:52.3533623Z","updatedOn":"2023-02-28T15:32:52.3533623Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28e54510-b77d-11ed-bcc0-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"28e54510-b77d-11ed-bcc0-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T17:34:23.5106370Z","updatedOn":"2023-02-28T17:34:23.5106370Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/22f4b3a0-b78e-11ed-8898-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"22f4b3a0-b78e-11ed-8898-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-02-28T18:16:58.6154652Z","updatedOn":"2023-02-28T18:16:58.6154652Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15c84290-b794-11ed-ba68-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"15c84290-b794-11ed-ba68-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T19:50:58.1867864Z","updatedOn":"2023-03-01T19:50:58.1867864Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/61f54236-b86a-11ed-96f5-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"61f54236-b86a-11ed-96f5-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T22:21:34.1000877Z","updatedOn":"2023-03-01T22:21:34.1000877Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6b7ce6fa-b87f-11ed-858b-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"6b7ce6fa-b87f-11ed-858b-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T22:45:09.8437635Z","updatedOn":"2023-03-01T22:45:09.8437635Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b7b17d80-b882-11ed-a5f7-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"b7b17d80-b882-11ed-a5f7-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-01T23:11:15.0259743Z","updatedOn":"2023-03-01T23:11:15.0259743Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5c9278f6-b886-11ed-83fe-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"5c9278f6-b886-11ed-83fe-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T06:31:28.5537789Z","updatedOn":"2023-03-02T06:31:28.5537789Z","createdBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","updatedBy":"16caa09c-d752-4800-8dcd-f43824d3b52a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d301d940-45f5-4242-8a04-8ce059ee9054","type":"Microsoft.Authorization/roleAssignments","name":"d301d940-45f5-4242-8a04-8ce059ee9054"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T16:54:46.5495446Z","updatedOn":"2023-03-02T16:54:46.5495446Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef382e78-b91a-11ed-8fc9-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"ef382e78-b91a-11ed-8fc9-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T18:09:39.0923025Z","updatedOn":"2023-03-02T18:09:39.0923025Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/65561192-b925-11ed-8582-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"65561192-b925-11ed-8582-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T18:09:44.0481916Z","updatedOn":"2023-03-02T18:09:44.0481916Z","createdBy":"5abe6647-6d0a-42a5-9378-28457904e05f","updatedBy":"5abe6647-6d0a-42a5-9378-28457904e05f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/68443e92-b925-11ed-8582-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"68443e92-b925-11ed-8582-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T20:44:44.0250379Z","updatedOn":"2023-03-02T20:44:44.0250379Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0f118b20-b93b-11ed-9771-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"0f118b20-b93b-11ed-9771-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T21:25:21.6836921Z","updatedOn":"2023-03-02T21:25:21.6836921Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/bb99eb4e-b940-11ed-b11e-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"bb99eb4e-b940-11ed-b11e-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T22:13:06.5481097Z","updatedOn":"2023-03-02T22:13:06.5481097Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/671c9222-b947-11ed-bf55-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"671c9222-b947-11ed-bf55-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T23:21:53.5068345Z","updatedOn":"2023-03-02T23:21:53.5068345Z","createdBy":"6a70a9ce-9405-4447-867c-92746716ef5a","updatedBy":"6a70a9ce-9405-4447-867c-92746716ef5a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/03b3dac0-b951-11ed-a3db-5e7d78be13fb","type":"Microsoft.Authorization/roleAssignments","name":"03b3dac0-b951-11ed-a3db-5e7d78be13fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-02T23:21:58.2602277Z","updatedOn":"2023-03-02T23:21:58.2602277Z","createdBy":"6a70a9ce-9405-4447-867c-92746716ef5a","updatedBy":"6a70a9ce-9405-4447-867c-92746716ef5a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/06a1f991-b951-11ed-a3db-5e7d78be13fb","type":"Microsoft.Authorization/roleAssignments","name":"06a1f991-b951-11ed-a3db-5e7d78be13fb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-03T08:24:31.2215832Z","updatedOn":"2023-03-03T08:24:31.2215832Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c439d06c-2e66-4cbc-9c42-f2e962b394a9","type":"Microsoft.Authorization/roleAssignments","name":"c439d06c-2e66-4cbc-9c42-f2e962b394a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-03T08:25:05.4966158Z","updatedOn":"2023-03-03T08:25:05.4966158Z","createdBy":"a5cae52f-366a-417b-b718-e73d17746c35","updatedBy":"a5cae52f-366a-417b-b718-e73d17746c35","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12c86535-6761-4402-a871-c5ed84a4b236","type":"Microsoft.Authorization/roleAssignments","name":"12c86535-6761-4402-a871-c5ed84a4b236"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-06T23:11:36.9481730Z","updatedOn":"2023-03-06T23:11:36.9481730Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3d91d90a-bc74-11ed-a26b-66106f6e7480","type":"Microsoft.Authorization/roleAssignments","name":"3d91d90a-bc74-11ed-a26b-66106f6e7480"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-07T11:10:24.3937430Z","updatedOn":"2023-03-07T11:10:24.3937430Z","createdBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","updatedBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a74aed5f-bcd8-11ed-9f36-2636f0255870","type":"Microsoft.Authorization/roleAssignments","name":"a74aed5f-bcd8-11ed-9f36-2636f0255870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-07T11:10:29.5524963Z","updatedOn":"2023-03-07T11:10:29.5524963Z","createdBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","updatedBy":"d0720b08-5796-49c8-bf8e-540f7070e84b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aa4ebe62-bcd8-11ed-9f36-2636f0255870","type":"Microsoft.Authorization/roleAssignments","name":"aa4ebe62-bcd8-11ed-9f36-2636f0255870"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-08T19:24:26.7238172Z","updatedOn":"2023-03-08T19:24:26.7238172Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d65c4fee-bde6-11ed-8e54-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"d65c4fee-bde6-11ed-8e54-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-08T19:24:31.6398973Z","updatedOn":"2023-03-08T19:24:31.6398973Z","createdBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","updatedBy":"7c582854-cf1c-4eef-ab9d-484a1e95bfe4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d90a67f8-bde6-11ed-8e54-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"d90a67f8-bde6-11ed-8e54-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-08T20:06:19.9493503Z","updatedOn":"2023-03-08T20:06:19.9493503Z","createdBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","updatedBy":"e4141a51-1351-4914-ad01-3ef9f84c3ea0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0af95de-bdec-11ed-9669-3e22fb431907","type":"Microsoft.Authorization/roleAssignments","name":"b0af95de-bdec-11ed-9669-3e22fb431907"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-09T01:58:48.5122241Z","updatedOn":"2023-03-09T01:58:48.5122241Z","createdBy":"022f1961-324a-4afc-855d-2ce905e2dddd","updatedBy":"022f1961-324a-4afc-855d-2ce905e2dddd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ee1bd122-be1d-11ed-a53c-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"ee1bd122-be1d-11ed-a53c-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-09T17:44:00.7209931Z","updatedOn":"2023-03-09T17:44:00.7209931Z","createdBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","updatedBy":"2ea88131-04fe-48a6-8623-1776a351dc2a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f932fb60-bea1-11ed-afcf-6e3850888c7e","type":"Microsoft.Authorization/roleAssignments","name":"f932fb60-bea1-11ed-afcf-6e3850888c7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-10T08:26:27.9057589Z","updatedOn":"2023-03-10T08:26:27.9057589Z","createdBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","updatedBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f911d1d-bf1d-11ed-a236-002248824659","type":"Microsoft.Authorization/roleAssignments","name":"3f911d1d-bf1d-11ed-a236-002248824659"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-10T08:26:33.2539857Z","updatedOn":"2023-03-10T08:26:33.2539857Z","createdBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","updatedBy":"eeac4e68-6708-4009-b3f8-d4563bd896e2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42d7f7e6-bf1d-11ed-a236-002248824659","type":"Microsoft.Authorization/roleAssignments","name":"42d7f7e6-bf1d-11ed-a236-002248824659"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-11T05:53:49.4765844Z","updatedOn":"2023-03-11T05:53:49.4765844Z","createdBy":"d378d978-a2b7-46cf-b57b-1e586d281118","updatedBy":"d378d978-a2b7-46cf-b57b-1e586d281118","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/179b8d2a-bfd1-11ed-bd9a-3c52827953b3","type":"Microsoft.Authorization/roleAssignments","name":"179b8d2a-bfd1-11ed-bd9a-3c52827953b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-11T05:53:53.6955891Z","updatedOn":"2023-03-11T05:53:53.6955891Z","createdBy":"d378d978-a2b7-46cf-b57b-1e586d281118","updatedBy":"d378d978-a2b7-46cf-b57b-1e586d281118","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1a1e6965-bfd1-11ed-bd9a-3c52827953b3","type":"Microsoft.Authorization/roleAssignments","name":"1a1e6965-bfd1-11ed-bd9a-3c52827953b3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T06:33:26.4594910Z","updatedOn":"2023-03-13T06:33:26.4594910Z","createdBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","updatedBy":"3a369ea2-6ede-474b-9269-c8a194f903b9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b03e0140-e53e-491a-9a7b-e179fa1b8a7b","type":"Microsoft.Authorization/roleAssignments","name":"b03e0140-e53e-491a-9a7b-e179fa1b8a7b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T12:12:33.0193279Z","updatedOn":"2023-03-13T12:12:33.0193279Z","createdBy":"559c030a-5305-402e-ab3c-018e8b685492","updatedBy":"559c030a-5305-402e-ab3c-018e8b685492","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54e258e9-c198-11ed-8db5-be30b45d791c","type":"Microsoft.Authorization/roleAssignments","name":"54e258e9-c198-11ed-8db5-be30b45d791c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-13T12:12:36.9894487Z","updatedOn":"2023-03-13T12:12:36.9894487Z","createdBy":"559c030a-5305-402e-ab3c-018e8b685492","updatedBy":"559c030a-5305-402e-ab3c-018e8b685492","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/575c39c1-c198-11ed-8db5-be30b45d791c","type":"Microsoft.Authorization/roleAssignments","name":"575c39c1-c198-11ed-8db5-be30b45d791c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-14T18:19:52.2457482Z","updatedOn":"2023-03-14T18:19:52.2457482Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cf500684-c294-11ed-aaa3-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"cf500684-c294-11ed-aaa3-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-15T17:17:49.1398598Z","updatedOn":"2023-03-15T17:17:49.1398598Z","createdBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","updatedBy":"ca82a0c1-0791-4257-911d-37c9a20f117a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4edbdd66-c355-11ed-8966-d85ed302bf1b","type":"Microsoft.Authorization/roleAssignments","name":"4edbdd66-c355-11ed-8966-d85ed302bf1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-16T00:14:24.3742157Z","updatedOn":"2023-03-16T00:14:24.3742157Z","createdBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","updatedBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7f7be49f-c38f-11ed-ba47-9e7a3e847acb","type":"Microsoft.Authorization/roleAssignments","name":"7f7be49f-c38f-11ed-ba47-9e7a3e847acb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-16T00:14:28.4721252Z","updatedOn":"2023-03-16T00:14:28.4721252Z","createdBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","updatedBy":"95a7122c-fbe6-4ac6-aeaa-03be6716643a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/81c01cec-c38f-11ed-ba47-9e7a3e847acb","type":"Microsoft.Authorization/roleAssignments","name":"81c01cec-c38f-11ed-ba47-9e7a3e847acb"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-20T06:05:05.2225187Z","updatedOn":"2023-03-20T06:05:05.2225187Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/27de0b5c-c6e5-11ed-8082-0ab78cd2e1ba","type":"Microsoft.Authorization/roleAssignments","name":"27de0b5c-c6e5-11ed-8082-0ab78cd2e1ba"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-20T19:31:51.9736494Z","updatedOn":"2023-03-20T19:31:51.9736494Z","createdBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","updatedBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dbc8c438-c755-11ed-8659-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"dbc8c438-c755-11ed-8659-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-20T19:31:55.5444616Z","updatedOn":"2023-03-20T19:31:55.5444616Z","createdBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","updatedBy":"95dba5e1-1468-40b7-9c7b-59be07954f3e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/e111eebf-c755-11ed-8659-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"e111eebf-c755-11ed-8659-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T07:50:31.4771973Z","updatedOn":"2023-03-21T07:50:31.4771973Z","createdBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","updatedBy":"0db93f5d-6541-4094-8fa2-2866e2df6a3f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c95fead-0a2b-4d52-a17d-1d3d17997871","type":"Microsoft.Authorization/roleAssignments","name":"6c95fead-0a2b-4d52-a17d-1d3d17997871"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T08:30:33.5552284Z","updatedOn":"2023-03-21T08:30:33.5552284Z","createdBy":"3042f5b3-7606-4878-821b-833178243939","updatedBy":"3042f5b3-7606-4878-821b-833178243939","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/a54293b5-c7c2-11ed-a7e6-000d3a044b73","type":"Microsoft.Authorization/roleAssignments","name":"a54293b5-c7c2-11ed-a7e6-000d3a044b73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T19:10:41.8785727Z","updatedOn":"2023-03-21T19:10:41.8785727Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/12487a5a-c81c-11ed-ba46-827f6562cca2","type":"Microsoft.Authorization/roleAssignments","name":"12487a5a-c81c-11ed-ba46-827f6562cca2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-21T19:10:47.3524534Z","updatedOn":"2023-03-21T19:10:47.3524534Z","createdBy":"ad13a731-ecdb-4869-b716-7741f494468b","updatedBy":"ad13a731-ecdb-4869-b716-7741f494468b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/15881bc6-c81c-11ed-ba46-827f6562cca2","type":"Microsoft.Authorization/roleAssignments","name":"15881bc6-c81c-11ed-ba46-827f6562cca2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-23T04:37:57.4678727Z","updatedOn":"2023-03-23T04:37:57.4678727Z","createdBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","updatedBy":"3abb18d7-09fd-4b7d-876c-d7803618b990","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/7b934178-c934-11ed-b9f7-6045bd80c6e6","type":"Microsoft.Authorization/roleAssignments","name":"7b934178-c934-11ed-b9f7-6045bd80c6e6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-27T05:50:19.8871681Z","updatedOn":"2023-03-27T05:50:19.8871681Z","createdBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","updatedBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/410882d1-cc63-11ed-ae41-0022480f1f08","type":"Microsoft.Authorization/roleAssignments","name":"410882d1-cc63-11ed-ae41-0022480f1f08"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-27T05:50:25.6681144Z","updatedOn":"2023-03-27T05:50:25.6681144Z","createdBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","updatedBy":"16bf88f8-6680-45bf-b39a-1d2380644c22","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/441bda3a-cc63-11ed-ae41-0022480f1f08","type":"Microsoft.Authorization/roleAssignments","name":"441bda3a-cc63-11ed-ae41-0022480f1f08"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/d24ecba3-c1f4-40fa-a7bb-4588a071e8fd","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:06.6052430Z","updatedOn":"2023-03-28T04:20:06.6052430Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/407210a5-bc55-40fb-91a9-92aa082cb413","type":"Microsoft.Authorization/roleAssignments","name":"407210a5-bc55-40fb-91a9-92aa082cb413"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:10.8566627Z","updatedOn":"2023-03-28T04:20:10.8566627Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/24f5047d-db77-4702-ffab-aa7c979ea3ff","type":"Microsoft.Authorization/roleAssignments","name":"24f5047d-db77-4702-ffab-aa7c979ea3ff"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:10.9115871Z","updatedOn":"2023-03-28T04:20:10.9115871Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/58df4b89-0de1-4d34-1767-ac1e33e9acd8","type":"Microsoft.Authorization/roleAssignments","name":"58df4b89-0de1-4d34-1767-ac1e33e9acd8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ed7f3fbd-7b88-4dd4-9017-9adb7ce333f8","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.4495061Z","updatedOn":"2023-03-28T04:20:11.4495061Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4a454de4-a1dc-4273-f384-029257fe5c7f","type":"Microsoft.Authorization/roleAssignments","name":"4a454de4-a1dc-4273-f384-029257fe5c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.2724262Z","updatedOn":"2023-03-28T04:20:11.2724262Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cd662e52-e7fa-4eeb-5755-696d2e8169b9","type":"Microsoft.Authorization/roleAssignments","name":"cd662e52-e7fa-4eeb-5755-696d2e8169b9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.4717540Z","updatedOn":"2023-03-28T04:20:11.4717540Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4680d2be-be84-417b-d222-07880110ada0","type":"Microsoft.Authorization/roleAssignments","name":"4680d2be-be84-417b-d222-07880110ada0"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/85cb6faf-e071-4c9b-8136-154b5a04f717","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.5533314Z","updatedOn":"2023-03-28T04:20:11.5533314Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/28dadd85-c2a5-420f-1563-a6ec9d26fd9a","type":"Microsoft.Authorization/roleAssignments","name":"28dadd85-c2a5-420f-1563-a6ec9d26fd9a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.5554589Z","updatedOn":"2023-03-28T04:20:11.5554589Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d1872322-4fde-43f5-e2b4-325dda9f40ad","type":"Microsoft.Authorization/roleAssignments","name":"d1872322-4fde-43f5-e2b4-325dda9f40ad"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-28T04:20:11.8299726Z","updatedOn":"2023-03-28T04:20:11.8299726Z","createdBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","updatedBy":"5e75ffcd-2553-47d2-876f-da527eb5e1d6","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ede81bb8-d3cd-4dc8-0fd3-b0a2a5a42b23","type":"Microsoft.Authorization/roleAssignments","name":"ede81bb8-d3cd-4dc8-0fd3-b0a2a5a42b23"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T14:40:42.0514829Z","updatedOn":"2023-03-29T14:40:42.0514829Z","createdBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","updatedBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ae019e96-ce3f-11ed-aa9b-000d3a142c7f","type":"Microsoft.Authorization/roleAssignments","name":"ae019e96-ce3f-11ed-aa9b-000d3a142c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T14:40:45.8687684Z","updatedOn":"2023-03-29T14:40:45.8687684Z","createdBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","updatedBy":"c2cb3045-e346-42fb-b9eb-659a9a8bdcd7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b0540ef4-ce3f-11ed-aa9b-000d3a142c7f","type":"Microsoft.Authorization/roleAssignments","name":"b0540ef4-ce3f-11ed-aa9b-000d3a142c7f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T17:23:15.2268767Z","updatedOn":"2023-03-29T17:23:15.2268767Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/636243ad-ce56-11ed-9744-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"636243ad-ce56-11ed-9744-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T17:23:18.8739735Z","updatedOn":"2023-03-29T17:23:18.8739735Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6586219c-ce56-11ed-9744-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"6586219c-ce56-11ed-9744-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T19:32:39.0885013Z","updatedOn":"2023-03-29T19:32:39.0885013Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/76c41cef-ce68-11ed-b18b-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"76c41cef-ce68-11ed-b18b-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-29T19:32:43.3448308Z","updatedOn":"2023-03-29T19:32:43.3448308Z","createdBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","updatedBy":"afcf65d3-c88b-4bae-90e4-227629cfc87b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/793f1b95-ce68-11ed-b18b-a6bf8821676b","type":"Microsoft.Authorization/roleAssignments","name":"793f1b95-ce68-11ed-b18b-a6bf8821676b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T02:24:05.4290067Z","updatedOn":"2023-03-31T02:24:05.4290067Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1ad6198a-cf6b-11ed-8440-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"1ad6198a-cf6b-11ed-8440-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T02:24:09.9883076Z","updatedOn":"2023-03-31T02:24:09.9883076Z","createdBy":"f81e7b82-7536-487e-9572-a2c52cca3581","updatedBy":"f81e7b82-7536-487e-9572-a2c52cca3581","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1dd45f87-cf6b-11ed-8440-0022480585fc","type":"Microsoft.Authorization/roleAssignments","name":"1dd45f87-cf6b-11ed-8440-0022480585fc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T07:26:15.0154750Z","updatedOn":"2023-03-31T07:26:15.0154750Z","createdBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","updatedBy":"547f6960-a967-417a-a9a4-0f35fbdca11c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/babc263e-1cc9-429d-babf-2b33c8e79093","type":"Microsoft.Authorization/roleAssignments","name":"babc263e-1cc9-429d-babf-2b33c8e79093"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T07:44:54.6073153Z","updatedOn":"2023-03-31T07:44:54.6073153Z","createdBy":"2996d4bf-d495-49f2-a2cd-8d684c724185","updatedBy":"2996d4bf-d495-49f2-a2cd-8d684c724185","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/828df835-2536-4c50-9397-90aabf94db75","type":"Microsoft.Authorization/roleAssignments","name":"828df835-2536-4c50-9397-90aabf94db75"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T19:06:47.3414876Z","updatedOn":"2023-03-31T19:06:47.3414876Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2ea3ab94-cff7-11ed-b393-a29a6fd44e7a","type":"Microsoft.Authorization/roleAssignments","name":"2ea3ab94-cff7-11ed-b393-a29a6fd44e7a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T19:08:21.6870221Z","updatedOn":"2023-03-31T19:08:21.6870221Z","createdBy":"367712bd-8587-45ef-9e63-1d269a194d53","updatedBy":"367712bd-8587-45ef-9e63-1d269a194d53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/66e7009d-cff7-11ed-a7d9-002248a7a68e","type":"Microsoft.Authorization/roleAssignments","name":"66e7009d-cff7-11ed-a7d9-002248a7a68e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-03-31T19:08:26.3035343Z","updatedOn":"2023-03-31T19:08:26.3035343Z","createdBy":"367712bd-8587-45ef-9e63-1d269a194d53","updatedBy":"367712bd-8587-45ef-9e63-1d269a194d53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/69a1dd2e-cff7-11ed-a7d9-002248a7a68e","type":"Microsoft.Authorization/roleAssignments","name":"69a1dd2e-cff7-11ed-a7d9-002248a7a68e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-02T04:28:12.7151802Z","updatedOn":"2023-04-02T04:28:12.7151802Z","createdBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","updatedBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c7830a5d-d10e-11ed-a622-f24a877c1ab5","type":"Microsoft.Authorization/roleAssignments","name":"c7830a5d-d10e-11ed-a622-f24a877c1ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-02T04:28:15.3112141Z","updatedOn":"2023-04-02T04:28:15.3112141Z","createdBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","updatedBy":"ddc5acc8-e101-4528-8aa5-fce0210cd2d1","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9256530-d10e-11ed-a622-f24a877c1ab5","type":"Microsoft.Authorization/roleAssignments","name":"c9256530-d10e-11ed-a622-f24a877c1ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-05T00:24:25.1673334Z","updatedOn":"2023-04-05T00:24:25.1673334Z","createdBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","updatedBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/376ceec9-d348-11ed-9d01-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"376ceec9-d348-11ed-9d01-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-05T00:24:28.5013634Z","updatedOn":"2023-04-05T00:24:28.5013634Z","createdBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","updatedBy":"55f1abda-87ca-4804-a48b-4467615eb5e0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39762108-d348-11ed-9d01-0242ac110002","type":"Microsoft.Authorization/roleAssignments","name":"39762108-d348-11ed-9d01-0242ac110002"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-10T17:47:25.2219893Z","updatedOn":"2023-04-10T17:47:25.2219893Z","createdBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","updatedBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0866ce8-d7c7-11ed-a6a7-9660021dc7a9","type":"Microsoft.Authorization/roleAssignments","name":"c0866ce8-d7c7-11ed-a6a7-9660021dc7a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-10T17:47:29.2984077Z","updatedOn":"2023-04-10T17:47:29.2984077Z","createdBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","updatedBy":"07d7ba78-f3d2-4300-b345-f6aed77317bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c3089c1c-d7c7-11ed-a6a7-9660021dc7a9","type":"Microsoft.Authorization/roleAssignments","name":"c3089c1c-d7c7-11ed-a6a7-9660021dc7a9"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-13T19:14:02.9424463Z","updatedOn":"2023-04-13T19:14:02.9424463Z","createdBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","updatedBy":"e1841230-9dea-4bcc-be02-b3bcfc8cfeee","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0d256d6e-ea9e-4124-8252-9da35a5e074b","type":"Microsoft.Authorization/roleAssignments","name":"0d256d6e-ea9e-4124-8252-9da35a5e074b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-17T15:47:32.8370892Z","updatedOn":"2023-04-17T15:47:32.8370892Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3d0f65d-4923-4776-8fb5-288240615c89","type":"Microsoft.Authorization/roleAssignments","name":"b3d0f65d-4923-4776-8fb5-288240615c89"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-17T16:09:03.8628586Z","updatedOn":"2023-04-17T16:09:03.8628586Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2eb3e3cb-598f-4048-aab3-0bd5a8b262ec","type":"Microsoft.Authorization/roleAssignments","name":"2eb3e3cb-598f-4048-aab3-0bd5a8b262ec"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-19T18:42:49.4053198Z","updatedOn":"2023-04-19T18:42:49.4053198Z","createdBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","updatedBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fba6c131-dee1-11ed-af88-000d3a23f184","type":"Microsoft.Authorization/roleAssignments","name":"fba6c131-dee1-11ed-af88-000d3a23f184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-19T18:42:53.2275925Z","updatedOn":"2023-04-19T18:42:53.2275925Z","createdBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","updatedBy":"b10f6cb5-af87-4171-b4e7-32a0c5c4fb80","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fdf8a1c6-dee1-11ed-af88-000d3a23f184","type":"Microsoft.Authorization/roleAssignments","name":"fdf8a1c6-dee1-11ed-af88-000d3a23f184"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-19T20:38:29.3110777Z","updatedOn":"2023-04-19T20:38:29.3110777Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23e3d8f0-def2-11ed-8cbe-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"23e3d8f0-def2-11ed-8cbe-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-20T23:41:52.6427527Z","updatedOn":"2023-04-20T23:41:52.6427527Z","createdBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","updatedBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4daefdda-d51e-55b7-9175-548688500778","type":"Microsoft.Authorization/roleAssignments","name":"4daefdda-d51e-55b7-9175-548688500778"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-21T17:49:07.3103199Z","updatedOn":"2023-04-21T17:49:07.3103199Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cfcbdd18-e06c-11ed-8b1a-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"cfcbdd18-e06c-11ed-8b1a-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-21T19:58:00.4291773Z","updatedOn":"2023-04-21T19:58:00.4291773Z","createdBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","updatedBy":"39d8b670-2225-46ae-8f99-a984ff47bd6e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d1321fac-e07e-11ed-9f07-a29a6fd44e79","type":"Microsoft.Authorization/roleAssignments","name":"d1321fac-e07e-11ed-9f07-a29a6fd44e79"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-25T18:19:28.7344580Z","updatedOn":"2023-04-25T18:19:28.7344580Z","createdBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","updatedBy":"542c144b-d75a-4e78-b43f-a57bb7d8c236","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6d940b7e-a372-438c-89b3-fe59be8a3d63","type":"Microsoft.Authorization/roleAssignments","name":"6d940b7e-a372-438c-89b3-fe59be8a3d63"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-26T15:27:00.5297027Z","updatedOn":"2023-04-26T15:27:00.5297027Z","createdBy":"b2192440-253a-42f2-8429-40f3820b89be","updatedBy":"b2192440-253a-42f2-8429-40f3820b89be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c9b0c1c0-e446-11ed-a01b-00155d1f6f24","type":"Microsoft.Authorization/roleAssignments","name":"c9b0c1c0-e446-11ed-a01b-00155d1f6f24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-26T15:27:03.8070654Z","updatedOn":"2023-04-26T15:27:03.8070654Z","createdBy":"b2192440-253a-42f2-8429-40f3820b89be","updatedBy":"b2192440-253a-42f2-8429-40f3820b89be","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/cbabbec4-e446-11ed-a01b-00155d1f6f24","type":"Microsoft.Authorization/roleAssignments","name":"cbabbec4-e446-11ed-a01b-00155d1f6f24"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-28T14:39:15.9639397Z","updatedOn":"2023-04-28T14:39:15.9639397Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/731ed5b6-e5d2-11ed-b4a6-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"731ed5b6-e5d2-11ed-b4a6-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-04-28T14:39:19.9194172Z","updatedOn":"2023-04-28T14:39:19.9194172Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/757edff4-e5d2-11ed-b4a6-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"757edff4-e5d2-11ed-b4a6-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/974c5e8b-45b9-4653-ba55-5f855dd0fb88","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-01T21:15:30.3600778Z","updatedOn":"2023-05-01T21:15:30.3600778Z","createdBy":"5bef4afd-1360-40a2-ac51-9339229af623","updatedBy":"5bef4afd-1360-40a2-ac51-9339229af623","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4cff74bd-e865-11ed-bd8b-5e022905d313","type":"Microsoft.Authorization/roleAssignments","name":"4cff74bd-e865-11ed-bd8b-5e022905d313"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-01T21:15:34.1175433Z","updatedOn":"2023-05-01T21:15:34.1175433Z","createdBy":"5bef4afd-1360-40a2-ac51-9339229af623","updatedBy":"5bef4afd-1360-40a2-ac51-9339229af623","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4f3e2c7f-e865-11ed-bd8b-5e022905d313","type":"Microsoft.Authorization/roleAssignments","name":"4f3e2c7f-e865-11ed-bd8b-5e022905d313"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-01T22:25:20.9242136Z","updatedOn":"2023-05-01T22:25:20.9242136Z","createdBy":"1ae4ccb9-fb9e-49c0-b500-10d71ff2e737","updatedBy":"1ae4ccb9-fb9e-49c0-b500-10d71ff2e737","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/112fdd75-6ef8-4016-b550-eec1b3c20720","type":"Microsoft.Authorization/roleAssignments","name":"112fdd75-6ef8-4016-b550-eec1b3c20720"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T12:17:42.9403161Z","updatedOn":"2023-05-04T12:17:42.9403161Z","createdBy":"7206144a-a8f7-442f-994e-850c46730a52","updatedBy":"7206144a-a8f7-442f-994e-850c46730a52","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ab58b8d1-ea75-11ed-8e28-8c164501ca31","type":"Microsoft.Authorization/roleAssignments","name":"ab58b8d1-ea75-11ed-8e28-8c164501ca31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T12:17:48.5968787Z","updatedOn":"2023-05-04T12:17:48.5968787Z","createdBy":"7206144a-a8f7-442f-994e-850c46730a52","updatedBy":"7206144a-a8f7-442f-994e-850c46730a52","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/aeac0cc1-ea75-11ed-8e28-8c164501ca31","type":"Microsoft.Authorization/roleAssignments","name":"aeac0cc1-ea75-11ed-8e28-8c164501ca31"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T14:59:12.9566578Z","updatedOn":"2023-05-04T14:59:12.9566578Z","createdBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","updatedBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3a379e3f-ea8c-11ed-b7f9-5254000f02cc","type":"Microsoft.Authorization/roleAssignments","name":"3a379e3f-ea8c-11ed-b7f9-5254000f02cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T14:59:17.0941141Z","updatedOn":"2023-05-04T14:59:17.0941141Z","createdBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","updatedBy":"e5907161-0b8e-4cf4-9de4-a966c4299b53","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3cc57207-ea8c-11ed-b7f9-5254000f02cc","type":"Microsoft.Authorization/roleAssignments","name":"3cc57207-ea8c-11ed-b7f9-5254000f02cc"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-08T17:20:32.4213470Z","updatedOn":"2023-05-08T17:20:32.4213470Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fcb9cd22-d202-49b5-ac49-63b77db3c355","type":"Microsoft.Authorization/roleAssignments","name":"fcb9cd22-d202-49b5-ac49-63b77db3c355"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-08T18:57:28.0040779Z","updatedOn":"2023-05-08T18:57:28.0040779Z","createdBy":"a4ff7404-5868-4532-ab16-142dad6a55af","updatedBy":"a4ff7404-5868-4532-ab16-142dad6a55af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d38f814-edd2-11ed-b548-000d3af78112","type":"Microsoft.Authorization/roleAssignments","name":"2d38f814-edd2-11ed-b548-000d3af78112"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-08T18:57:31.3014429Z","updatedOn":"2023-05-08T18:57:31.3014429Z","createdBy":"a4ff7404-5868-4532-ab16-142dad6a55af","updatedBy":"a4ff7404-5868-4532-ab16-142dad6a55af","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2f311f92-edd2-11ed-b548-000d3af78112","type":"Microsoft.Authorization/roleAssignments","name":"2f311f92-edd2-11ed-b548-000d3af78112"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T19:02:07.8525568Z","updatedOn":"2023-05-10T19:02:07.8525568Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dedfb4b8-f315-5b5a-b52f-afbb2a175cd5","type":"Microsoft.Authorization/roleAssignments","name":"dedfb4b8-f315-5b5a-b52f-afbb2a175cd5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T19:02:07.5081592Z","updatedOn":"2023-05-10T19:02:07.5081592Z","createdBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","updatedBy":"0b1456b2-f2b8-415d-aee7-07afae0ec013","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dcfe553d-97cc-5084-b369-d557cd90b386","type":"Microsoft.Authorization/roleAssignments","name":"dcfe553d-97cc-5084-b369-d557cd90b386"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T08:58:12.7125916Z","updatedOn":"2023-05-10T08:58:12.7125916Z","createdBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","updatedBy":"a70eb664-13f1-42a8-8cfc-86a61770d75f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d8f9d929-9d3d-42df-a8fe-5f0ceb0bba3e","type":"Microsoft.Authorization/roleAssignments","name":"d8f9d929-9d3d-42df-a8fe-5f0ceb0bba3e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b7e6dc6d-f1e8-4753-8033-0f276bb0955b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T09:31:17.2430697Z","updatedOn":"2023-05-10T09:31:17.2430697Z","createdBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","updatedBy":"7e9cc714-bfe4-4eea-acb2-d53ced88ab8b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3fd12d91-3e5a-4061-bcb2-05a9732b9159","type":"Microsoft.Authorization/roleAssignments","name":"3fd12d91-3e5a-4061-bcb2-05a9732b9159"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:43:09.6330210Z","updatedOn":"2023-05-10T16:43:09.6330210Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/becaa992-ef51-11ed-bf36-f6f4c2331193","type":"Microsoft.Authorization/roleAssignments","name":"becaa992-ef51-11ed-bf36-f6f4c2331193"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T16:43:13.3065725Z","updatedOn":"2023-05-10T16:43:13.3065725Z","createdBy":"e2287db3-e08a-4990-a73d-18591c0688a3","updatedBy":"e2287db3-e08a-4990-a73d-18591c0688a3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/c0ffd61a-ef51-11ed-bf36-f6f4c2331193","type":"Microsoft.Authorization/roleAssignments","name":"c0ffd61a-ef51-11ed-bf36-f6f4c2331193"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T21:23:06.4822851Z","updatedOn":"2023-05-10T21:23:06.4822851Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/db3e8912-ef78-11ed-9094-0ed70c823176","type":"Microsoft.Authorization/roleAssignments","name":"db3e8912-ef78-11ed-9094-0ed70c823176"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-10T21:23:10.1751715Z","updatedOn":"2023-05-10T21:23:10.1751715Z","createdBy":"06848029-928c-4baf-8afe-521c68652868","updatedBy":"06848029-928c-4baf-8afe-521c68652868","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd8c02e4-ef78-11ed-9094-0ed70c823176","type":"Microsoft.Authorization/roleAssignments","name":"dd8c02e4-ef78-11ed-9094-0ed70c823176"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-12T17:27:33.1207504Z","updatedOn":"2023-05-12T17:27:33.1207504Z","createdBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","updatedBy":"7ac4ca6d-46a3-4e71-a705-858af50eea7b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b59475c1-c560-4221-a59e-8c9f845d824c","type":"Microsoft.Authorization/roleAssignments","name":"b59475c1-c560-4221-a59e-8c9f845d824c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T18:50:21.8951381Z","updatedOn":"2023-05-15T18:50:21.8951381Z","createdBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","updatedBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57f8b39a-f351-11ed-a7a2-d28ee6de8df2","type":"Microsoft.Authorization/roleAssignments","name":"57f8b39a-f351-11ed-a7a2-d28ee6de8df2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T18:50:26.0744382Z","updatedOn":"2023-05-15T18:50:26.0744382Z","createdBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","updatedBy":"8eaa72a5-5270-4e5c-bc62-6714f1c0bffc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5a738a82-f351-11ed-a7a2-d28ee6de8df2","type":"Microsoft.Authorization/roleAssignments","name":"5a738a82-f351-11ed-a7a2-d28ee6de8df2"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T20:09:25.9908381Z","updatedOn":"2023-05-15T20:09:25.9908381Z","createdBy":"1f978537-bb5b-4c76-9021-fb832071f334","updatedBy":"1f978537-bb5b-4c76-9021-fb832071f334","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63c222a4-f35c-11ed-a054-6e098a288f3f","type":"Microsoft.Authorization/roleAssignments","name":"63c222a4-f35c-11ed-a054-6e098a288f3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-15T20:09:35.2733605Z","updatedOn":"2023-05-15T20:09:35.2733605Z","createdBy":"1f978537-bb5b-4c76-9021-fb832071f334","updatedBy":"1f978537-bb5b-4c76-9021-fb832071f334","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6941144c-f35c-11ed-a054-6e098a288f3f","type":"Microsoft.Authorization/roleAssignments","name":"6941144c-f35c-11ed-a054-6e098a288f3f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-17T20:10:57.7226371Z","updatedOn":"2023-05-17T20:10:57.7226371Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/eda389e3-f4ee-11ed-b5ec-00155d3916e4","type":"Microsoft.Authorization/roleAssignments","name":"eda389e3-f4ee-11ed-b5ec-00155d3916e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-17T20:11:02.1123126Z","updatedOn":"2023-05-17T20:11:02.1123126Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f013376b-f4ee-11ed-b5ec-00155d3916e4","type":"Microsoft.Authorization/roleAssignments","name":"f013376b-f4ee-11ed-b5ec-00155d3916e4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-19T16:27:28.8077810Z","updatedOn":"2023-05-19T16:27:28.8077810Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0bb8ff8d-f662-11ed-8f49-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"0bb8ff8d-f662-11ed-8f49-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-19T16:27:33.8052285Z","updatedOn":"2023-05-19T16:27:33.8052285Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0ec6735e-f662-11ed-8f49-000d3a19fa0e","type":"Microsoft.Authorization/roleAssignments","name":"0ec6735e-f662-11ed-8f49-000d3a19fa0e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-22T21:25:31.6093600Z","updatedOn":"2023-05-22T21:25:31.6093600Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2d4e15d6-f8e7-11ed-8d3d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"2d4e15d6-f8e7-11ed-8d3d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-22T21:25:39.5158809Z","updatedOn":"2023-05-22T21:25:39.5158809Z","createdBy":"ba670408-9de9-4309-b92c-4273f384a0e8","updatedBy":"ba670408-9de9-4309-b92c-4273f384a0e8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3232bc64-f8e7-11ed-8d3d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"3232bc64-f8e7-11ed-8d3d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T14:26:30.7681910Z","updatedOn":"2023-05-23T14:26:30.7681910Z","createdBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","updatedBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","delegatedManagedIdentityResourceId":null,"description":"Test + service principal"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/60f05fed-3b0c-4a91-86aa-44a327ded351","type":"Microsoft.Authorization/roleAssignments","name":"60f05fed-3b0c-4a91-86aa-44a327ded351"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T18:52:45.1223272Z","updatedOn":"2023-05-23T18:52:45.1223272Z","createdBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","updatedBy":"8da28121-2f56-47b2-9a0a-11b9f437f3a9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/47caa5b3-b27e-4f95-82b1-b5f87095df3a","type":"Microsoft.Authorization/roleAssignments","name":"47caa5b3-b27e-4f95-82b1-b5f87095df3a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b1ff04bb-8a4e-4dc4-8eb5-8693973ce19b","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T21:08:13.2773990Z","updatedOn":"2023-05-23T21:08:13.2773990Z","createdBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","updatedBy":"3fd9ecb9-d6d2-492a-b9e2-0a517ae0a12c","delegatedManagedIdentityResourceId":null,"description":"Test + service principal"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/79efe060-bf11-43db-ae9d-b281c8d0a9d8","type":"Microsoft.Authorization/roleAssignments","name":"79efe060-bf11-43db-ae9d-b281c8d0a9d8"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T23:58:25.0358872Z","updatedOn":"2023-05-23T23:58:25.0358872Z","createdBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","updatedBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b3ca2af8-f9c5-11ed-9d5d-e64a5a4d2331","type":"Microsoft.Authorization/roleAssignments","name":"b3ca2af8-f9c5-11ed-9d5d-e64a5a4d2331"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-23T23:58:29.5965022Z","updatedOn":"2023-05-23T23:58:29.5965022Z","createdBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","updatedBy":"3376d0d9-e3fa-48ca-8890-90f238aa1c3d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b699d06c-f9c5-11ed-9d5d-e64a5a4d2331","type":"Microsoft.Authorization/roleAssignments","name":"b699d06c-f9c5-11ed-9d5d-e64a5a4d2331"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-25T17:39:08.1426685Z","updatedOn":"2023-05-25T17:39:08.1426685Z","createdBy":"d87783d5-8706-48d6-ba20-d688d69119b2","updatedBy":"d87783d5-8706-48d6-ba20-d688d69119b2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/23e6f3b5-225b-4e09-b962-619645aa3b66","type":"Microsoft.Authorization/roleAssignments","name":"23e6f3b5-225b-4e09-b962-619645aa3b66"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-25T20:11:52.1711289Z","updatedOn":"2023-05-25T20:11:52.1711289Z","createdBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","updatedBy":"bf718370-139f-4b6e-82a6-c50f6e666c2d","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/54d2e488-f4a3-4484-802e-ccd2bf4e0973","type":"Microsoft.Authorization/roleAssignments","name":"54d2e488-f4a3-4484-802e-ccd2bf4e0973"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-26T19:08:12.5337243Z","updatedOn":"2023-05-26T19:08:12.5337243Z","createdBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","updatedBy":"aca1e21f-93f8-4004-9a88-233a788d45dc","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce436091-fe0c-51ad-a3a4-65285790684d","type":"Microsoft.Authorization/roleAssignments","name":"ce436091-fe0c-51ad-a3a4-65285790684d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-26T23:15:50.9221989Z","updatedOn":"2023-05-26T23:15:50.9221989Z","createdBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","updatedBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/42aa6334-fc1b-11ed-8275-faccf5616d1b","type":"Microsoft.Authorization/roleAssignments","name":"42aa6334-fc1b-11ed-8275-faccf5616d1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-26T23:15:55.3490253Z","updatedOn":"2023-05-26T23:15:55.3490253Z","createdBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","updatedBy":"8195cfd2-dee1-490e-bc83-c8cd9ccaf34a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/45629004-fc1b-11ed-8275-faccf5616d1b","type":"Microsoft.Authorization/roleAssignments","name":"45629004-fc1b-11ed-8275-faccf5616d1b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-31T01:54:29.1188102Z","updatedOn":"2023-05-31T01:54:29.1188102Z","createdBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","updatedBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/13eebbd0-ff56-11ed-9bfa-02e332bf0a73","type":"Microsoft.Authorization/roleAssignments","name":"13eebbd0-ff56-11ed-9bfa-02e332bf0a73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-05-31T01:54:33.3318294Z","updatedOn":"2023-05-31T01:54:33.3318294Z","createdBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","updatedBy":"e56304ba-3765-4f66-aa8c-3fee9f87c394","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/166f22cd-ff56-11ed-9bfa-02e332bf0a73","type":"Microsoft.Authorization/roleAssignments","name":"166f22cd-ff56-11ed-9bfa-02e332bf0a73"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-01T17:50:33.3890390Z","updatedOn":"2023-06-01T17:50:33.3890390Z","createdBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","updatedBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ce40a1ba-00a4-11ee-9cf5-00155d28851f","type":"Microsoft.Authorization/roleAssignments","name":"ce40a1ba-00a4-11ee-9cf5-00155d28851f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-01T17:50:37.1678380Z","updatedOn":"2023-06-01T17:50:37.1678380Z","createdBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","updatedBy":"de8af94e-c5c4-49f3-8fe2-9a0e43f4beb5","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d0850dfa-00a4-11ee-9cf5-00155d28851f","type":"Microsoft.Authorization/roleAssignments","name":"d0850dfa-00a4-11ee-9cf5-00155d28851f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-02T17:57:26.0215079Z","updatedOn":"2023-06-02T17:57:26.0215079Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/dd9cd89b-ff35-4fa2-9e07-0680ad3fa370","type":"Microsoft.Authorization/roleAssignments","name":"dd9cd89b-ff35-4fa2-9e07-0680ad3fa370"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-02T18:03:23.7925935Z","updatedOn":"2023-06-02T18:03:23.7925935Z","createdBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","updatedBy":"478fdd79-cb11-45ed-8725-382321c0f7fd","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d95aec2a-6adc-44a7-bd96-33d53af658bd","type":"Microsoft.Authorization/roleAssignments","name":"d95aec2a-6adc-44a7-bd96-33d53af658bd"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-03T02:03:08.3558097Z","updatedOn":"2023-06-03T02:03:08.3558097Z","createdBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","updatedBy":"e2ebccf1-e05c-4510-94ab-6614a07df769","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/6c0f55e9-ff8c-410b-84c8-c613d1c425d1","type":"Microsoft.Authorization/roleAssignments","name":"6c0f55e9-ff8c-410b-84c8-c613d1c425d1"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:28:30.6187015Z","updatedOn":"2023-06-05T17:28:30.6187015Z","createdBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","updatedBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/63598898-03c6-11ee-a3b2-00155d87caab","type":"Microsoft.Authorization/roleAssignments","name":"63598898-03c6-11ee-a3b2-00155d87caab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:28:40.0597663Z","updatedOn":"2023-06-05T17:28:40.0597663Z","createdBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","updatedBy":"6f98bb98-db8b-4f71-a0d1-ce36c8ce1073","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/68f66863-03c6-11ee-a3b2-00155d87caab","type":"Microsoft.Authorization/roleAssignments","name":"68f66863-03c6-11ee-a3b2-00155d87caab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:56:05.4845273Z","updatedOn":"2023-06-05T17:56:05.4845273Z","createdBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","updatedBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3dc7635d-03ca-11ee-aaaf-00155da910be","type":"Microsoft.Authorization/roleAssignments","name":"3dc7635d-03ca-11ee-aaaf-00155da910be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-05T17:56:09.7600652Z","updatedOn":"2023-06-05T17:56:09.7600652Z","createdBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","updatedBy":"7c3e6837-dd11-464c-b195-7b19ca2434ba","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/40502bdc-03ca-11ee-aaaf-00155da910be","type":"Microsoft.Authorization/roleAssignments","name":"40502bdc-03ca-11ee-aaaf-00155da910be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T01:05:13.7066693Z","updatedOn":"2023-06-06T01:05:13.7066693Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/30f7f3e5-0406-11ee-b551-0022482d400c","type":"Microsoft.Authorization/roleAssignments","name":"30f7f3e5-0406-11ee-b551-0022482d400c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T05:00:05.2963688Z","updatedOn":"2023-06-06T05:00:05.2963688Z","createdBy":"aedb4132-9499-4449-90b4-3f7cc9885668","updatedBy":"aedb4132-9499-4449-90b4-3f7cc9885668","delegatedManagedIdentityResourceId":null,"description":"add + RCG-Read Write-CG-23637\n"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ca637efb-b6e1-4bf5-bb88-a6724eacb0a7","type":"Microsoft.Authorization/roleAssignments","name":"ca637efb-b6e1-4bf5-bb88-a6724eacb0a7"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T17:38:31.9010821Z","updatedOn":"2023-06-06T17:38:31.9010821Z","createdBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","updatedBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f4658d49-0490-11ee-994b-00155db896c4","type":"Microsoft.Authorization/roleAssignments","name":"f4658d49-0490-11ee-994b-00155db896c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-06T17:38:35.1906894Z","updatedOn":"2023-06-06T17:38:35.1906894Z","createdBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","updatedBy":"1c17ba4b-43eb-4be3-964f-ade4bf97589b","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f6601fef-0490-11ee-994b-00155db896c4","type":"Microsoft.Authorization/roleAssignments","name":"f6601fef-0490-11ee-994b-00155db896c4"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2a2b9908-6ea1-4ae2-8e65-a410df84e7d1","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-07T01:57:45.0424798Z","updatedOn":"2023-06-07T01:57:45.0424798Z","createdBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","updatedBy":"8ff738a5-abcd-4864-a162-6c18f7c9cbd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b19ebd13-04d6-11ee-b0e1-000d3a1d1b64","type":"Microsoft.Authorization/roleAssignments","name":"b19ebd13-04d6-11ee-b0e1-000d3a1d1b64"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-07T18:06:20.2372529Z","updatedOn":"2023-06-07T18:06:20.2372529Z","createdBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","updatedBy":"8b03baf8-d4d0-48b9-8d46-35b0fec00eb3","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/944021da-5dd6-47df-b8bd-2b702ec66b62","type":"Microsoft.Authorization/roleAssignments","name":"944021da-5dd6-47df-b8bd-2b702ec66b62"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-08T18:05:13.4812189Z","updatedOn":"2023-06-08T18:05:13.4812189Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/03b31b12-0627-11ee-a6d2-002248be7b21","type":"Microsoft.Authorization/roleAssignments","name":"03b31b12-0627-11ee-a6d2-002248be7b21"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-08T18:05:17.6164752Z","updatedOn":"2023-06-08T18:05:17.6164752Z","createdBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","updatedBy":"f033e452-b6a2-4661-90e8-c2512618f1b8","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/061fcfb9-0627-11ee-a6d2-002248be7b21","type":"Microsoft.Authorization/roleAssignments","name":"061fcfb9-0627-11ee-a6d2-002248be7b21"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T21:54:46.4146879Z","updatedOn":"2023-06-09T21:54:46.4146879Z","createdBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","updatedBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3f5dc66d-0710-11ee-931c-00155d54ed98","type":"Microsoft.Authorization/roleAssignments","name":"3f5dc66d-0710-11ee-931c-00155d54ed98"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T21:54:50.2224528Z","updatedOn":"2023-06-09T21:54:50.2224528Z","createdBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","updatedBy":"816d5f99-8ab8-4d5a-8eb3-0fb65594efed","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/41a244d2-0710-11ee-931c-00155d54ed98","type":"Microsoft.Authorization/roleAssignments","name":"41a244d2-0710-11ee-931c-00155d54ed98"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T22:15:22.1460837Z","updatedOn":"2023-06-09T22:15:22.1460837Z","createdBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","updatedBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/1f99aa10-0713-11ee-9f64-00155dba898f","type":"Microsoft.Authorization/roleAssignments","name":"1f99aa10-0713-11ee-9f64-00155dba898f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-09T22:15:26.3614867Z","updatedOn":"2023-06-09T22:15:26.3614867Z","createdBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","updatedBy":"3a165e14-e8ee-48c7-a1f2-cc3cb4634dd9","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/221f3106-0713-11ee-9f64-00155dba898f","type":"Microsoft.Authorization/roleAssignments","name":"221f3106-0713-11ee-9f64-00155dba898f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-10T00:10:29.8161145Z","updatedOn":"2023-06-10T00:10:29.8161145Z","createdBy":"7df1b69c-686b-452a-9f60-59b12a299512","updatedBy":"7df1b69c-686b-452a-9f60-59b12a299512","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/3547a3a6-0723-11ee-af96-521cf0d5af1e","type":"Microsoft.Authorization/roleAssignments","name":"3547a3a6-0723-11ee-af96-521cf0d5af1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-10T00:10:33.6141995Z","updatedOn":"2023-06-10T00:10:33.6141995Z","createdBy":"7df1b69c-686b-452a-9f60-59b12a299512","updatedBy":"7df1b69c-686b-452a-9f60-59b12a299512","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/377f6236-0723-11ee-af96-521cf0d5af1e","type":"Microsoft.Authorization/roleAssignments","name":"377f6236-0723-11ee-af96-521cf0d5af1e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-12T03:43:13.3971745Z","updatedOn":"2023-06-12T03:43:13.3971745Z","createdBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","updatedBy":"33312ea3-4fb4-44c9-8323-c387b5e8b6a7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/417d165a-08d3-11ee-8ac2-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"417d165a-08d3-11ee-8ac2-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-12T05:29:01.6737026Z","updatedOn":"2023-06-12T05:29:01.6737026Z","createdBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","updatedBy":"579a5a8e-a3ce-45fc-97d6-4356669fe2db","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b154a136-cc93-46f2-8a71-079a399ec467","type":"Microsoft.Authorization/roleAssignments","name":"b154a136-cc93-46f2-8a71-079a399ec467"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-12T07:33:06.7743063Z","updatedOn":"2023-06-12T07:33:06.7743063Z","createdBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","updatedBy":"c8705a49-b269-4cb2-9f97-2034463e28aa","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/5d216b6f-33aa-40e9-8b1d-c399739dab45","type":"Microsoft.Authorization/roleAssignments","name":"5d216b6f-33aa-40e9-8b1d-c399739dab45"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T00:55:32.6278707Z","updatedOn":"2023-06-13T00:55:32.6278707Z","createdBy":"859286db-3db2-4ba3-a081-93ef7001669f","updatedBy":"859286db-3db2-4ba3-a081-93ef7001669f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ff444828-0984-11ee-aeab-a6b46b784ab5","type":"Microsoft.Authorization/roleAssignments","name":"ff444828-0984-11ee-aeab-a6b46b784ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T00:55:37.9764519Z","updatedOn":"2023-06-13T00:55:37.9764519Z","createdBy":"859286db-3db2-4ba3-a081-93ef7001669f","updatedBy":"859286db-3db2-4ba3-a081-93ef7001669f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/02794298-0985-11ee-aeab-a6b46b784ab5","type":"Microsoft.Authorization/roleAssignments","name":"02794298-0985-11ee-aeab-a6b46b784ab5"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T00:56:32.2043149Z","updatedOn":"2023-06-13T00:56:32.2043149Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/39cae6b9-bfce-4d39-8a33-55001e8e7b87","type":"Microsoft.Authorization/roleAssignments","name":"39cae6b9-bfce-4d39-8a33-55001e8e7b87"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T17:52:57.9703504Z","updatedOn":"2023-06-13T17:52:57.9703504Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/57f9abab-a02d-4961-aa68-f7b9a39940e6","type":"Microsoft.Authorization/roleAssignments","name":"57f9abab-a02d-4961-aa68-f7b9a39940e6"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T17:54:34.0715865Z","updatedOn":"2023-06-13T17:54:34.0715865Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/4caed6f2-725f-4ba4-918a-6b874a08574f","type":"Microsoft.Authorization/roleAssignments","name":"4caed6f2-725f-4ba4-918a-6b874a08574f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f58310d9-a9f6-439a-9e8d-f62e7b41a168","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T18:35:01.5499775Z","updatedOn":"2023-06-13T18:35:01.5499775Z","createdBy":"d702bac4-4929-494e-a3de-0894c7606921","updatedBy":"d702bac4-4929-494e-a3de-0894c7606921","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/b89c4524-5b48-40cb-9a55-b9712852158d","type":"Microsoft.Authorization/roleAssignments","name":"b89c4524-5b48-40cb-9a55-b9712852158d"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T19:11:38.6491712Z","updatedOn":"2023-06-13T19:11:38.6491712Z","createdBy":"d87783d5-8706-48d6-ba20-d688d69119b2","updatedBy":"d87783d5-8706-48d6-ba20-d688d69119b2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/09b91438-5494-4648-9766-b0079f6970de","type":"Microsoft.Authorization/roleAssignments","name":"09b91438-5494-4648-9766-b0079f6970de"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-13T19:56:31.5140590Z","updatedOn":"2023-06-13T19:56:31.5140590Z","createdBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","updatedBy":"ab34edf2-4e74-4fe2-8e49-70e0ee438df0","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/0042f368-b701-4c14-8177-38b23d027a7e","type":"Microsoft.Authorization/roleAssignments","name":"0042f368-b701-4c14-8177-38b23d027a7e"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T12:57:07.9074452Z","updatedOn":"2023-06-14T12:57:07.9074452Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f7e7c27e-0ab2-11ee-a74d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"f7e7c27e-0ab2-11ee-a74d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T12:57:11.6755824Z","updatedOn":"2023-06-14T12:57:11.6755824Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/fa216932-0ab2-11ee-a74d-acde48001122","type":"Microsoft.Authorization/roleAssignments","name":"fa216932-0ab2-11ee-a74d-acde48001122"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"User","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T17:38:49.2228645Z","updatedOn":"2023-06-14T17:38:49.2228645Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/84bddd3a-c733-408c-b9f2-689e5458a38f","type":"Microsoft.Authorization/roleAssignments","name":"84bddd3a-c733-408c-b9f2-689e5458a38f"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T17:38:48.8722593Z","updatedOn":"2023-06-14T17:38:48.8722593Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/8aa8e9b1-633b-4e0d-b371-8d21cfdf950a","type":"Microsoft.Authorization/roleAssignments","name":"8aa8e9b1-633b-4e0d-b371-8d21cfdf950a"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/55a29198-56db-4399-94a5-5ed3c83bda46","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T17:38:48.8686689Z","updatedOn":"2023-06-14T17:38:48.8686689Z","createdBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","updatedBy":"f0c92441-ff57-4565-a1e6-f25d8d3b2116","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ef3807a5-a1bb-4bae-a3d7-781a09a2a198","type":"Microsoft.Authorization/roleAssignments","name":"ef3807a5-a1bb-4bae-a3d7-781a09a2a198"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005","condition":null,"conditionVersion":null,"createdOn":"2023-06-14T21:16:11.8951215Z","updatedOn":"2023-06-14T21:16:11.8951215Z","createdBy":"4d730cf1-e190-49af-af02-ea52983c017e","updatedBy":"4d730cf1-e190-49af-af02-ea52983c017e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005/providers/Microsoft.Authorization/roleAssignments/0a597482-2658-451c-bc34-11ed8a1180db","type":"Microsoft.Authorization/roleAssignments","name":"0a597482-2658-451c-bc34-11ed8a1180db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-12T17:41:39.7941619Z","updatedOn":"2021-03-12T17:41:39.7941619Z","createdBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","updatedBy":"b1e54977-a96f-4b97-b7ac-a911bef78f5e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/d4625aa1-611e-448a-bf3e-f37f2bc878a3","type":"Microsoft.Authorization/roleAssignments","name":"d4625aa1-611e-448a-bf3e-f37f2bc878a3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-16T23:49:03.3523073Z","updatedOn":"2021-03-16T23:49:03.3523073Z","createdBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","updatedBy":"1950a39c-ef6a-4e9d-b00e-9a99d027ddb2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/f33005f1-10be-43e3-a87f-9e2f954fb2db","type":"Microsoft.Authorization/roleAssignments","name":"f33005f1-10be-43e3-a87f-9e2f954fb2db"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-25T00:58:10.6501184Z","updatedOn":"2021-03-25T00:58:10.6501184Z","createdBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","updatedBy":"243a3958-b8d3-4c74-ad3f-77b916846d93","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/2aca810c-8d05-11eb-bd25-000d3a4359fa","type":"Microsoft.Authorization/roleAssignments","name":"2aca810c-8d05-11eb-bd25-000d3a4359fa"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","condition":null,"conditionVersion":null,"createdOn":"2021-03-26T10:24:43.4077585Z","updatedOn":"2021-03-26T10:24:43.4077585Z","createdBy":"a75ea823-3748-4855-a4df-f4ba5383d006","updatedBy":"a75ea823-3748-4855-a4df-f4ba5383d006","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/779ad30e-8e1d-11eb-8aa9-000d3ac754e3","type":"Microsoft.Authorization/roleAssignments","name":"779ad30e-8e1d-11eb-8aa9-000d3ac754e3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/46610f90-7283-a03b-3791-33f202e8180c","condition":null,"conditionVersion":null,"createdOn":"2022-01-27T22:46:23.4119129Z","updatedOn":"2022-01-27T22:46:23.4119129Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/46610f90-7283-a03b-3791-33f202e8180c/providers/Microsoft.Authorization/roleAssignments/d92f870d-03da-4626-a453-84734da0b49c","type":"Microsoft.Authorization/roleAssignments","name":"d92f870d-03da-4626-a453-84734da0b49c"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.8423155Z","updatedOn":"2019-03-26T22:01:02.8423155Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad/providers/Microsoft.Authorization/roleAssignments/3d069c98-e792-47bd-b58a-399e2d42dbab","type":"Microsoft.Authorization/roleAssignments","name":"3d069c98-e792-47bd-b58a-399e2d42dbab"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad","condition":null,"conditionVersion":null,"createdOn":"2021-04-09T18:15:49.7063250Z","updatedOn":"2021-04-09T18:15:49.7063250Z","createdBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","updatedBy":"2ffe2392-0a52-4093-b041-66b10ebc8317","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/c92f8fe1-e3cb-47e8-a01d-0771814c0dad/providers/Microsoft.Authorization/roleAssignments/a6b435df-80e6-4a7b-b109-2af5f373d238","type":"Microsoft.Authorization/roleAssignments","name":"a6b435df-80e6-4a7b-b109-2af5f373d238"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-26T22:01:02.9176787Z","updatedOn":"2019-03-26T22:01:02.9176787Z","createdBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","updatedBy":"8701e34d-d7c2-459c-b2d7-f3a9c5204818","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/4b771ea9-81de-4fc4-aa28-a3a0b9b4a320","type":"Microsoft.Authorization/roleAssignments","name":"4b771ea9-81de-4fc4-aa28-a3a0b9b4a320"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:49:37.3000523Z","updatedOn":"2019-03-27T00:49:37.3000523Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/e6e1fffd-83f7-40c7-9f33-e56e2cf75b29","type":"Microsoft.Authorization/roleAssignments","name":"e6e1fffd-83f7-40c7-9f33-e56e2cf75b29"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/5d58bcaf-24a5-4b20-bdb6-eed9f69fbe4c","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2019-03-27T00:50:08.3039053Z","updatedOn":"2019-03-27T00:50:08.3039053Z","createdBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","updatedBy":"820ba717-9ea7-4147-bc13-1e35af4cc27c","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/3d01f56e-ee3a-41ed-a775-0e067546cb12","type":"Microsoft.Authorization/roleAssignments","name":"3d01f56e-ee3a-41ed-a775-0e067546cb12"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/94ddc4bc-25f5-4f3e-b527-c587da93cfe4","principalId":"00000000-0000-0000-0000-000000000001","principalType":"Group","scope":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod","condition":null,"conditionVersion":null,"createdOn":"2022-06-28T23:11:28.9217618Z","updatedOn":"2022-06-28T23:11:28.9217618Z","createdBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","updatedBy":"1c8b3602-77a2-4e8a-8c1e-f127f2af5ca2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/CnAIOrchestrationServicePublicCorpprod/providers/Microsoft.Authorization/roleAssignments/869183bd-893a-46f9-bb02-45e48b13f1be","type":"Microsoft.Authorization/roleAssignments","name":"869183bd-893a-46f9-bb02-45e48b13f1be"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2020-03-12T20:43:06.5941189Z","updatedOn":"2020-03-12T20:43:06.5941189Z","createdBy":"606f48c8-d219-4875-991d-ae6befaf0756","updatedBy":"606f48c8-d219-4875-991d-ae6befaf0756","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/ad9e2cd7-0ff7-4931-9b17-656c8f17934b","type":"Microsoft.Authorization/roleAssignments","name":"ad9e2cd7-0ff7-4931-9b17-656c8f17934b"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-02-21T22:32:46.2324804Z","updatedOn":"2023-02-21T22:32:46.2324804Z","createdBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","updatedBy":"7f1579a6-c648-43a1-ac1e-0c3020dd9b8e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/df7c1e07-5c2d-4b22-b7b9-fd11a8569db3","type":"Microsoft.Authorization/roleAssignments","name":"df7c1e07-5c2d-4b22-b7b9-fd11a8569db3"},{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47","condition":null,"conditionVersion":null,"createdOn":"2023-05-04T20:23:16.3808369Z","updatedOn":"2023-05-04T20:23:16.3808369Z","createdBy":"fa00c2de-57d5-4527-9254-4d513f482d0a","updatedBy":"fa00c2de-57d5-4527-9254-4d513f482d0a","delegatedManagedIdentityResourceId":null,"description":null},"id":"/providers/Microsoft.Management/managementGroups/72f988bf-86f1-41af-91ab-2d7cd011db47/providers/Microsoft.Authorization/roleAssignments/59109645-7b2b-4278-831a-2e4627ec603d","type":"Microsoft.Authorization/roleAssignments","name":"59109645-7b2b-4278-831a-2e4627ec603d"}]}' headers: cache-control: - no-cache content-length: - - '67037' + - '788165' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:08:44 GMT + - Wed, 14 Jun 2023 21:19:58 GMT expires: - '-1' pragma: @@ -2173,7 +7038,7 @@ interactions: message: OK - request: body: '{"location": "westus2", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliakstest-clitestwgfu23jj6-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestubb6jek5g-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "vnetSubnetID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": @@ -2182,9 +7047,8 @@ interactions: "enableFIPS": false, "name": "nodepool1"}], "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, - "storageProfile": {}}}' + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -2195,63 +7059,66 @@ interactions: Connection: - keep-alive Content-Length: - - '1201' + - '1164' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000006?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000006\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000006\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestwgfu23jj6-79a739\",\n \"fqdn\": \"cliakstest-clitestwgfu23jj6-79a739-cys8zx9n.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwgfu23jj6-79a739-cys8zx9n.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000006_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": - \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000006\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000006\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestubb6jek5g-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestubb6jek5g-8ecadf-am74jca3.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestubb6jek5g-8ecadf-am74jca3.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000006_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1c5c6a04-e2c7-4e0a-baef-1cdc0ddf0df5?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae012c21-f92d-4e8c-beed-c17540716d5b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2735' + - '2734' content-type: - application/json date: - - Wed, 15 Mar 2023 10:08:50 GMT + - Wed, 14 Jun 2023 21:20:08 GMT expires: - '-1' pragma: @@ -2263,7 +7130,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -2282,14 +7149,63 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae012c21-f92d-4e8c-beed-c17540716d5b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"212c01ae-2df9-8c4e-beed-c17540716d5b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T21:20:07.6710383Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 21:20:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --node-count --service-principal --client-secret + --vnet-subnet-id --no-ssh-key + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1c5c6a04-e2c7-4e0a-baef-1cdc0ddf0df5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae012c21-f92d-4e8c-beed-c17540716d5b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"046a5c1c-c7e2-0a4e-baef-1cdc0ddf0df5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:08:50.7128221Z\"\n }" + string: "{\n \"name\": \"212c01ae-2df9-8c4e-beed-c17540716d5b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T21:20:07.6710383Z\"\n }" headers: cache-control: - no-cache @@ -2298,7 +7214,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:09:20 GMT + - Wed, 14 Jun 2023 21:20:38 GMT expires: - '-1' pragma: @@ -2331,14 +7247,14 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1c5c6a04-e2c7-4e0a-baef-1cdc0ddf0df5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae012c21-f92d-4e8c-beed-c17540716d5b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"046a5c1c-c7e2-0a4e-baef-1cdc0ddf0df5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:08:50.7128221Z\"\n }" + string: "{\n \"name\": \"212c01ae-2df9-8c4e-beed-c17540716d5b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T21:20:07.6710383Z\"\n }" headers: cache-control: - no-cache @@ -2347,7 +7263,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:09:50 GMT + - Wed, 14 Jun 2023 21:21:08 GMT expires: - '-1' pragma: @@ -2380,14 +7296,14 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1c5c6a04-e2c7-4e0a-baef-1cdc0ddf0df5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae012c21-f92d-4e8c-beed-c17540716d5b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"046a5c1c-c7e2-0a4e-baef-1cdc0ddf0df5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:08:50.7128221Z\"\n }" + string: "{\n \"name\": \"212c01ae-2df9-8c4e-beed-c17540716d5b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T21:20:07.6710383Z\"\n }" headers: cache-control: - no-cache @@ -2396,7 +7312,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:20 GMT + - Wed, 14 Jun 2023 21:21:38 GMT expires: - '-1' pragma: @@ -2429,14 +7345,14 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1c5c6a04-e2c7-4e0a-baef-1cdc0ddf0df5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae012c21-f92d-4e8c-beed-c17540716d5b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"046a5c1c-c7e2-0a4e-baef-1cdc0ddf0df5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:08:50.7128221Z\"\n }" + string: "{\n \"name\": \"212c01ae-2df9-8c4e-beed-c17540716d5b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T21:20:07.6710383Z\"\n }" headers: cache-control: - no-cache @@ -2445,7 +7361,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:51 GMT + - Wed, 14 Jun 2023 21:22:09 GMT expires: - '-1' pragma: @@ -2478,14 +7394,14 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1c5c6a04-e2c7-4e0a-baef-1cdc0ddf0df5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae012c21-f92d-4e8c-beed-c17540716d5b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"046a5c1c-c7e2-0a4e-baef-1cdc0ddf0df5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:08:50.7128221Z\"\n }" + string: "{\n \"name\": \"212c01ae-2df9-8c4e-beed-c17540716d5b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T21:20:07.6710383Z\"\n }" headers: cache-control: - no-cache @@ -2494,7 +7410,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:11:21 GMT + - Wed, 14 Jun 2023 21:22:39 GMT expires: - '-1' pragma: @@ -2527,14 +7443,14 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1c5c6a04-e2c7-4e0a-baef-1cdc0ddf0df5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae012c21-f92d-4e8c-beed-c17540716d5b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"046a5c1c-c7e2-0a4e-baef-1cdc0ddf0df5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:08:50.7128221Z\"\n }" + string: "{\n \"name\": \"212c01ae-2df9-8c4e-beed-c17540716d5b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T21:20:07.6710383Z\"\n }" headers: cache-control: - no-cache @@ -2543,7 +7459,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:11:51 GMT + - Wed, 14 Jun 2023 21:23:09 GMT expires: - '-1' pragma: @@ -2576,14 +7492,14 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1c5c6a04-e2c7-4e0a-baef-1cdc0ddf0df5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae012c21-f92d-4e8c-beed-c17540716d5b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"046a5c1c-c7e2-0a4e-baef-1cdc0ddf0df5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:08:50.7128221Z\"\n }" + string: "{\n \"name\": \"212c01ae-2df9-8c4e-beed-c17540716d5b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T21:20:07.6710383Z\"\n }" headers: cache-control: - no-cache @@ -2592,7 +7508,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:20 GMT + - Wed, 14 Jun 2023 21:23:39 GMT expires: - '-1' pragma: @@ -2625,14 +7541,14 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1c5c6a04-e2c7-4e0a-baef-1cdc0ddf0df5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae012c21-f92d-4e8c-beed-c17540716d5b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"046a5c1c-c7e2-0a4e-baef-1cdc0ddf0df5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:08:50.7128221Z\"\n }" + string: "{\n \"name\": \"212c01ae-2df9-8c4e-beed-c17540716d5b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T21:20:07.6710383Z\"\n }" headers: cache-control: - no-cache @@ -2641,7 +7557,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:50 GMT + - Wed, 14 Jun 2023 21:24:09 GMT expires: - '-1' pragma: @@ -2674,15 +7590,15 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1c5c6a04-e2c7-4e0a-baef-1cdc0ddf0df5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae012c21-f92d-4e8c-beed-c17540716d5b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"046a5c1c-c7e2-0a4e-baef-1cdc0ddf0df5\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:08:50.7128221Z\",\n \"endTime\": - \"2023-03-15T10:12:52.2858387Z\"\n }" + string: "{\n \"name\": \"212c01ae-2df9-8c4e-beed-c17540716d5b\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T21:20:07.6710383Z\",\n \"\ + endTime\": \"2023-06-14T21:24:22.3499601Z\"\n }" headers: cache-control: - no-cache @@ -2691,7 +7607,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:13:21 GMT + - Wed, 14 Jun 2023 21:24:39 GMT expires: - '-1' pragma: @@ -2724,56 +7640,59 @@ interactions: - --resource-group --name --location --node-count --service-principal --client-secret --vnet-subnet-id --no-ssh-key User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000006?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000006\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000006\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestwgfu23jj6-79a739\",\n \"fqdn\": \"cliakstest-clitestwgfu23jj6-79a739-cys8zx9n.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwgfu23jj6-79a739-cys8zx9n.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000006_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000006_westus2/providers/Microsoft.Network/publicIPAddresses/f3f394a7-824f-4439-9ffb-23af73329787\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000006\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000006\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestubb6jek5g-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestubb6jek5g-8ecadf-am74jca3.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestubb6jek5g-8ecadf-am74jca3.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/virtualNetworks/clivnet000004/subnets/clisubnet000005\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000006_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000006_westus2/providers/Microsoft.Network/publicIPAddresses/3149ffaa-7622-4575-a9a0-2276fea77fb9\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '2999' + - '2998' content-type: - application/json date: - - Wed, 15 Mar 2023 10:13:21 GMT + - Wed, 14 Jun 2023 21:24:40 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_setting.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_setting.yaml old mode 100755 new mode 100644 index 142ef34a748..99a1aee8075 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_setting.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_setting.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:13:21 GMT + - Wed, 14 Jun 2023 21:24:52 GMT expires: - '-1' pragma: @@ -53,13 +53,12 @@ interactions: false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, - "storageProfile": {}}}' + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -70,66 +69,33 @@ interactions: Connection: - keep-alive Content-Length: - - '1504' + - '1796' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-zxy5ypv5.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-zxy5ypv5.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"details\": null,\n\ + \ \"message\": \"Service principal clientID: 0a048992-9adc-46a2-8d28-16cb9b806204\ + \ not found in Active Directory tenant 72f988bf-86f1-41af-91ab-2d7cd011db47,\ + \ Please see https://aka.ms/aks-sp-help for more details.\",\n \"subcode\"\ + : \"ServicePrincipalNotFound\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/634c6895-a944-4450-84d7-a1df7d39f1db?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3050' + - '313' content-type: - application/json date: - - Wed, 15 Mar 2023 10:13:24 GMT + - Wed, 14 Jun 2023 21:24:57 GMT expires: - '-1' pragma: @@ -141,75 +107,95 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: - code: 201 - message: Created + code: 404 + message: Not Found - request: - body: null + body: '{"location": "westus2", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": + false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": + -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, + "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks wait + - aks create Connection: - keep-alive + Content-Length: + - '1796' + Content-Type: + - application/json ParameterSetName: - - -g -n --created + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-zxy5ypv5.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-zxy5ypv5.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-6k6k45ch.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-6k6k45ch.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2d92ba90-6015-4a1c-89c5-1461a088b3b1?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3050' + - '3378' content-type: - application/json date: - - Wed, 15 Mar 2023 10:13:25 GMT + - Wed, 14 Jun 2023 21:25:05 GMT expires: - '-1' pragma: @@ -218,15 +204,13 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -241,59 +225,58 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-zxy5ypv5.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-zxy5ypv5.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2063c7bf-ce38-4dde-89ef-b1b41fe3413b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-6k6k45ch.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-6k6k45ch.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3312' + - '3378' content-type: - application/json date: - - Wed, 15 Mar 2023 10:13:56 GMT + - Wed, 14 Jun 2023 21:25:08 GMT expires: - '-1' pragma: @@ -325,59 +308,60 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-zxy5ypv5.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-zxy5ypv5.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2063c7bf-ce38-4dde-89ef-b1b41fe3413b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-6k6k45ch.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-6k6k45ch.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/65e61843-1fbc-47a1-b399-ebe0d9b8ae34\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3312' + - '3640' content-type: - application/json date: - - Wed, 15 Mar 2023 10:14:27 GMT + - Wed, 14 Jun 2023 21:25:38 GMT expires: - '-1' pragma: @@ -409,59 +393,60 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-zxy5ypv5.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-zxy5ypv5.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2063c7bf-ce38-4dde-89ef-b1b41fe3413b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-6k6k45ch.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-6k6k45ch.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/65e61843-1fbc-47a1-b399-ebe0d9b8ae34\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3312' + - '3640' content-type: - application/json date: - - Wed, 15 Mar 2023 10:14:57 GMT + - Wed, 14 Jun 2023 21:26:09 GMT expires: - '-1' pragma: @@ -493,59 +478,60 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-zxy5ypv5.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-zxy5ypv5.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2063c7bf-ce38-4dde-89ef-b1b41fe3413b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-6k6k45ch.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-6k6k45ch.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/65e61843-1fbc-47a1-b399-ebe0d9b8ae34\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3312' + - '3640' content-type: - application/json date: - - Wed, 15 Mar 2023 10:15:27 GMT + - Wed, 14 Jun 2023 21:26:40 GMT expires: - '-1' pragma: @@ -577,59 +563,60 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-zxy5ypv5.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-zxy5ypv5.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2063c7bf-ce38-4dde-89ef-b1b41fe3413b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-6k6k45ch.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-6k6k45ch.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/65e61843-1fbc-47a1-b399-ebe0d9b8ae34\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3312' + - '3640' content-type: - application/json date: - - Wed, 15 Mar 2023 10:15:58 GMT + - Wed, 14 Jun 2023 21:27:11 GMT expires: - '-1' pragma: @@ -661,59 +648,60 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-zxy5ypv5.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-zxy5ypv5.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2063c7bf-ce38-4dde-89ef-b1b41fe3413b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-6k6k45ch.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-6k6k45ch.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/65e61843-1fbc-47a1-b399-ebe0d9b8ae34\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3312' + - '3640' content-type: - application/json date: - - Wed, 15 Mar 2023 10:16:28 GMT + - Wed, 14 Jun 2023 21:27:41 GMT expires: - '-1' pragma: @@ -745,59 +733,60 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-zxy5ypv5.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-zxy5ypv5.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2063c7bf-ce38-4dde-89ef-b1b41fe3413b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-6k6k45ch.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-6k6k45ch.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/65e61843-1fbc-47a1-b399-ebe0d9b8ae34\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3314' + - '3642' content-type: - application/json date: - - Wed, 15 Mar 2023 10:16:59 GMT + - Wed, 14 Jun 2023 21:28:11 GMT expires: - '-1' pragma: @@ -829,60 +818,65 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.24.9\",\n \"currentKubernetesVersion\": - \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-zxy5ypv5.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-zxy5ypv5.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2063c7bf-ce38-4dde-89ef-b1b41fe3413b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n - \ }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-6k6k45ch.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-6k6k45ch.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/65e61843-1fbc-47a1-b399-ebe0d9b8ae34\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \ + \ \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"\ + enabled\": false\n },\n \"workloadAutoScalerProfile\": {}\n },\n\ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '3557' + - '3885' content-type: - application/json date: - - Wed, 15 Mar 2023 10:16:59 GMT + - Wed, 14 Jun 2023 21:28:14 GMT expires: - '-1' pragma: @@ -914,60 +908,65 @@ interactions: ParameterSetName: - -g -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.24.9\",\n \"currentKubernetesVersion\": - \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-zxy5ypv5.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-zxy5ypv5.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2063c7bf-ce38-4dde-89ef-b1b41fe3413b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n - \ }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-6k6k45ch.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-6k6k45ch.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/65e61843-1fbc-47a1-b399-ebe0d9b8ae34\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \ + \ \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"\ + enabled\": false\n },\n \"workloadAutoScalerProfile\": {}\n },\n\ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '3557' + - '3885' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:00 GMT + - Wed, 14 Jun 2023 21:28:15 GMT expires: - '-1' pragma: @@ -999,59 +998,60 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-zxy5ypv5.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-zxy5ypv5.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2063c7bf-ce38-4dde-89ef-b1b41fe3413b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-6k6k45ch.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-6k6k45ch.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/65e61843-1fbc-47a1-b399-ebe0d9b8ae34\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3314' + - '3642' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:00 GMT + - Wed, 14 Jun 2023 21:28:17 GMT expires: - '-1' pragma: @@ -1085,15 +1085,15 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUm1kWlZGTXhjRlZJZDBOclVUTk1iVUZzV1ZjemFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCZWsxVVZYaE5SRUY2VGtSYVlVZEJPSGxOUkZWNlRVUk5lRTVVUlhkTlZFMHdUbXh2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSTkNqUlFiWFZMUW5ObU5tSnJiRmhWY0hCWGRVUkpSbTVpUkV0eVJWUlRMMlpLUVdOV2VYaHVaa0ZNV2prelJGSldNMmcxUkRKeFFYSkdTRXRJTmxCclJVZ0tTa2hrUlZremRtdHFkbkJ4Y1c5dmIwY3dPVTV1UWxKbGVrTmpWbXMzWkVObVVVWnFZMHM1VkZvelYxSlpkV1ozYkZKVFQxaEdXVmg2ZDNsM04zVjBWQXB1UVZwQlNDOW9ORWQwTkRCaFF5OXdWVWhGUm14Q1RYTTFOR2RtU1RWd1VUVkhVelZIT0haUmVHdHdhMDE2VGxwdVVVODJkMnhWVjJ4T1JFODBLMHhKQ2tsMmMxRkthbU14YmtkRE1ETmxLMW8wTVVVM2JGTjNWRlZVU201VmVFNHdZVEZtZDBzNFRuSkNMMUJ6Vkc5M1JqQXlUa2xXVUZZckwxZGtVVzVUU1VrS0swNU1VM3BsUVdObldHMHpXRkl2YW1OTWJEY3pkbEp2U1dzMVVteFVjbGxUT0VKUFIzbE5RV1JzTURoMU1XMTFZbmR2YmxST2F6a3hOM3BvV1VJdlVRcEZRbVpzWWpoWVdUTXpkVEZXTXpsbVEzZFZiVzlPWkhSWVZqazBTR3B1U21KTVZIaHZRVXRDWm1GWFJUQkJiRmRLV1VwTmN6Vm9WbFIxYURJMU4wcFFDa1ZRVVZBcmEyUk5kVlZHYldSWWRYcDZhVTFQY2pobVNFY3pjbGR3Tm01dVRVVmFXRUZYVlRRM05taEdSVUpvWWtWRVJHUjRVMVYxWmtKM04xVkhXSGdLYUdOU2FVZEtiSFZLUlROUVVHMUdjVU13TW1wd1RtVjNVV1o1VDBSTlprVnlaWEZ2U2xGbFVtUTJjbm8wVDFSWFMxQXZZelZwZUhKUE1FMVlZVmRQZFFwa1dYQlFVVzQxUlRKdlVqZHFlRWxYZVhRdmJrWnJhakExT1VzeGVUSjBkblJpU0VjMU1VeGhjbmRqUTJGVldscHJWRVZpVW1STU1GbENOWEkxZGpoc0NqaGxOM2RYT0hSRlltczRSRzVHTldSSWRuY3lZelJLYVcweVVsWk1USHBYTTFWSlJYZzJXRzVYV21Ob2JuUkJPVlowYUdveVZTdExNV1pSVURsWFNtc0thVW8wVVZCeVEzSjJTVUpIUzJ3M1VrTm9UMmRGV2xjNFNGaFlja0pLUkRaNlpFVk5RMlV4ZWk5M1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWQ2RFWkhNVGhQYUZjcmJsVTFha3hzQ20xbmJtbEVVamxTV0RScmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGTU1FdFJjVkY0TWpFd1lrRTBVM1Y0VFhWUFV6RnpRMDlsUzFZS05WaE5URlZsV0ZFeFlVOVpiMGxZYTJ4NlNXWk1lVTV4ZGxCWlNqZGhORWxzUlZkSlUwZE1jMlp2YzJ0bGVqbFlZM05ZYW5OeE1qUldWRnBLTTFwNk53cHVORlJwWlU1U01FZFJOMk5CZVdOQ1ozZHlNVk5CV25oWlZISlpNRWN2WTJWcUwwTXdNbFZFZUhWb2VuRktNbll6ZGxWTFJUUlJkRFpzYkZSall6ZFBDa2xaYlZoeVVFNWtTazlMUmpWWVJuRjJUbkFyZW14TmNsZGxRekp3TWpaTGVHVnVMMDUzYWtWVWNHbGxORmRYVERkRWNISlljRzh6YVd0dU1XcHZWMUVLTUhOelNGWkVUbVkwVmtKYVpXWTVUbE52VGtWT1FsRm1jMEZvWlhCNGIya3hLMHN5T0hGVFRFMW5TVmRaYmtkdWNVWkRUMDlDZW1wd1RFMUJUelp5VVFwNmRsUjZSbXh4WTNoNmMyZzVXVWwxWkZKQ1JVdFpkVEZDV21NMk5VbG5hRlpCUjJkWWRFOVROMEl5VFRFeE4zTlpiVU5LYUVwa1VFeFhaVTloZG1KWkNsTlpSVEYwZUVkRVVpdEZVMnhyVGs5V1NqVmphM29yYmpoeVVrSnVaVkJEYUd4VE4yTldWbEZuUkZZMFNVOHJjSGszZURSdlZUWktLM2RoZG5waGFIa0tSa1Z2TWpOTU1FNHZlVFpaVjFOR1lVWTNlakpQYWk5U09XNDBOMkZJZGpVM2JWbEZkMHBPVUdrd05IRTVTU3QxU2pkVVJHbGpPVlJwUlhCMlZGZFdVUXBCYjFKVVZsSXliSE5WZWxwa1FrTTVabWRaTlhodVNsUldTa3BuYjFkUUwwNWxibEp2TWxGME1EVnRRMUZZYlV4TFpYTk1ibUZMWm5GTFoycEtiRXRSQ21OSGVETnpjMVYzYW5GRUwzZDNRa1ZFT1hkUGFHdzNiMll3U21kSFQyOW9ZVTlGTjNka01FTlVVV1ZNWVdodWFtTm5OV1o1TjBWS2FWVXdORFJhVkhRS09IQTJPRk4zVDJObWVGWnhVekJ0YjNremQyRmtRalI2YlV4a1dHMXhXRmx0UzJkWVdYRllkM2xFWmxnMGFFRlVaa2htUmtKdE4wRnhZVFJ3ZFZodmRBcENVMUZxVWtneVl5OHdMeXRXV1Zvd0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3VlYWZrYnAtenh5NXlwdjUuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3Q3d2plY24KY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3Q3d2plY24KICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3R4MjRyNGV6c21nX2NsaWFrc3Rlc3Q3d2plY24KICBuYW1lOiBjbGlha3N0ZXN0N3dqZWNuCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdDd3amVjbgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3R4MjRyNGV6c21nX2NsaWFrc3Rlc3Q3d2plY24KICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJTQzluWlRaWU5uSTFkV2xMZFdSWlJWTllOVXg0UkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJlazFVVlhoTlJFRjZUa1JhWVVaM01IbE9WRUY2VFZSVmVFMUVSWHBPUkZwaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJvS3paamJqTldPRUpMY21STVJ5dEdkbHBPTkRJS2NFdFBTMGd3UVRock9XOVRjell3VEhGMVNEWjJabnA0WWxCbldtWlNTVEZpZFRCaGMyaEdXa2RpVEZsS2JsVlVVaTh4VVZoWFNWUTNWbXhRTVdOQlpncG1URlU1UVU1WE4zZFpVVWN5VDBSbVVGQTBjRUp1WkZoaGFHa3JSWGR1VTJ0YWJucFJiREJtU1cxaUt6WlBiVVI0U21KRE5FRTJiVWh4ZFRoa1pERlJDbk5KU2xkbGNrcFdTSFExV0Zoc1NXNXZTbGh4VlhWNVMxTlZWM05rVVZWemFXOVhUbFpCYlROWUt6Qk5Na1J4ZGpOWE1ITXJVR2swVFRKbFQxTjNReklLU0hoTFdGSXhSWFZOVFc5NlpsaGhXVVkwY0VVNFdETTJaVTAxVTBaWFlrMDRVVlZIWWt4RGQzaHlRV3RPZFRrd1NYSktkWFZ1YzNadlJDdFFkbGhSVHdwbWRTOUhjSE13Y0hGSGVuRTFaV3BXVEcxcmFHSk5hbU52U1hkRk1rdEVWWFI1YTA5S1pXYzFjVFpWVlVGT0wzTjFkbXBZTDA1b2MyOW9lR3hvV1RGS0NrYzVUa0pFV2twd0sycHBXbGQxY1dGQ1QwZGxObVk0VlVwaVUzSmpSVlZCY0ZKdWJXUkVhVUZqYmpKdlpYcG5VM2R0VWtZeU4wSldhbXRaSzJnd2JsWUtiM0V3V2twb05HbElabTR2VEVwNk5VZExWVFJzZHpCdGIzTkVkbUZ1VDJOUGF6ZFRRMDFoVlZSb2FXeE9kWFZaYzB4NlZFTTJNbk5LZWtKUmIxbDFiZ28zTUhGeGJXeDNSbkpOVGxKNlV6QkliMlowVFVrclJYSlFVVlV3VVZSaVJHdFBkakpMYjJOd01tOUZObHBFVEVGa1dVZENZM2wzYzJScVoyRlphbXhOQ2xObVpuWnBSSEk1WjFGMGVGSjVLMEpsUmxkVGRqRkJWalppUlVWc1ZHNWljVFJYZDFWNldWQklia05GWkRWMWJ6SnpURWQxVVRKbU15dDNjV1pYVVRNS1JHdE1Sa1ZUWldwT1QwNHZPVmRZTm1OeVEyVTVhbHAyTW1aMk5DOU1ia3BLVFZWd1ZFOVdMMmRKVDIxRVlsWkdkMnRtTmpKTldtSlRORXc0UlVwVFRRcE9jREp2TmpBNVUxSXZSWG81YTJWVlR6aFVjRFYzU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEZITUZWaVdIYzJSbUlLTm1SVWJVMTFWMkZEWlVsT1NERkdabWxVUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZHTDNVdk1YQXlhMEpaUkhKTlkwUkRSVU5oTlFvcmR5c3pkbTlyVFZoaVpraEdPVVYxVG0xR1RWcGthWEJpY2pjclMweG5WM2d5VXpaWmEzVjJSbTVUT0hSS1FsaFRjRlpXTWk5MmREZEhjbFYxZEZaTENrZzJia2RQVkVScVoxVmlWazlQU21GNVpYbFBaVU16WXpacllYTktZMlpSZUV3cmEyMXhXRXBvYjBoTlZVaEdTall2YzFnd1VGRmFUa2RpWm5vMmJHd0tjSHBLZEdVeFkzZEdkV292VDB0dlNUSjJSVEE1TTB4SVRWVnFhamxDYm1NeEsySTBiMlJrU2xvMGRuZHdXRXBtV1hrckwyMUNhWFJXTDA0NU4ydEZXQXBaVUVVM1VqUkhZM0ZRU3pkc1MxQjRTbGxLZUdwb1FrUjZVMlpqUzNCWFRuQm9XakIwZFhwUlYybENWMFExTTFadVluRnZOR0pNTms5NlV6Uk9hVXBRQ2twcVJHdFpWWE5uYldaS1FrWlhjbXRqUzBOVmNYaExhRkF5ZG1NMmRVczViRlpCYUdoWVZYUnRhbTA0TTNWR1IwSmlZeXQ0UkRkRGN6UTNOVXRqZVVNS1REWjRaMUJEY3pRcmRVUkRNRTl1Y205MFMwdzRVMVZEVERsaWJFUklOazVYZUVaUWNVZFhVVzF4VTNKT2FGWTNZa3BwTjA5R2VUaEhWR2xsUldaWGRncFlRa0kzVDJjM1kzQmxiMjF4ZW1sT1ZHSXlWME1yWXpCRmFtVjVha3BQUlhsNlJsWTBTbVF3ZGxselJtUklVU3R4T0ROS0wxSlhTMDlWWVhwV05pOVdDbFJVVUhGR2MxQmpXVGRPY2xWS05qUTRLMUI0UlhObmRWZENWMUI1WjFKRlJUbDJNRWRzUkZkUU1ERmthVFZ3UWxSa2IzQlJObXQyVHpsT05teFZlRE1LUVVkVmN6SXZXa3c0YjI5Q2VHUlVlbGhsVVROTFdUSlJTbVY2YVdkRFJtRnFSbnBPVDB0NFlrdzFXVXd2UmxsNmJVZDZkRzFrWWtOV2JERXZiMlZzVVFwWlYxTlZRamc0YXlzMVdGZFlaRFpZU1dwTFoyMDJNV2xZV0VsMFpUa3ZOMFpHYmxGWk5USklOVFI1YWxFMVkzaEVSRWxpYkRFeE0xSmxRMHBNZGk5MkNrZFNNREp0UjBST1QzaHlNQzlVVXpsb1MwVjRhMU5SUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCTkdaMWJrbzVNV1pCVTNFelUzaDJhR0l5VkdWT2NWTnFhV2c1UVZCS1VHRkZjazkwUXpaeWFDdHlNemc0VjNvMENrZFlNRk5PVnpkMFIzSkpVbGRTYlhreVExb3hSVEJtT1ZWR01XbEZLekZhVkRsWVFVZ3plVEZRVVVSV2RUaEhSVUowYW1jemVub3JTMUZhTTFZeWIxa0tkbWhOU2pCd1IxbzRNRXBrU0hsS2JTOTFhbkJuT0ZOWGQzVkJUM0JvTm5KMlNGaGtWVXhEUTFadWNYbFdVamRsVmpFMVUwbzJRMVkyYkV4emFXdHNSZ3B5U0ZWR1RFbHhSbXBXVVVwME1TOTBSRTVuTm5JNU1YUk1VR28wZFVST2JtcHJjMEYwYURoVGJEQmtVa3hxUkV0Tk16RXliVUpsUzFKUVJqa3JibXBQQ2xWb1ZtMTZVRVZHUW0xNWQzTk5ZWGRLUkdKMlpFTkxlV0p5Y0RkTU5rRXZhamN4TUVSdU4zWjRjV0pPUzJGb2N6WjFXRzh4VXpWd1NWZDZTVE5MUTAwS1FrNXBaekZNWTNCRWFWaHZUMkYxYkVaQlJHWTNUSEkwTVM5NldXSkxTV05hV1ZkT1UxSjJWRkZSTWxOaFptODBiVlp5Y1cxblZHaHVkVzR2UmtOWE1BcHhNMEpHUVV0VldqVnVVVFJuU0VvNWNVaHpORVZ6U210U1pIVjNWbGsxUjFCdlpFb3hZVXQwUjFOWlpVbG9NelV2ZVhsaksxSnBiRTlLWTA1S2NVeEJDamN5Y0hwdVJIQlBNR2RxUjJ4Rk5GbHdWR0p5YlV4RE9EQjNkWFJ5UTJOM1ZVdEhUSEFyT1V0eGNIQmpRbUY2UkZWak1IUkNOa2czVkVOUWFFdDZNRVlLVGtWRk1uYzFSSEk1YVhGSVMyUnhRazl0VVhsM1NGZENaMWhOYzB4SVdUUkhiVWsxVkVWdU16YzBaell2V1VWTVkxVmpkbWRZYUZacmNqbFJSbVZ0ZUFwQ1NsVTFNaloxUm5OR1RUSkVlRFYzYUVobFluRk9ja040Y210T2Jqa3ZjMHR1TVd0T2R6VkRlRkpGYm05NlZHcG1MMVpzSzI1TGQyNTJXVEppT1c0M0NpdFFlVFY1VTFSR1MxVjZiR1kwUTBSd1p6SXhVbU5LU0N0MGFrZFhNSFZETDBKRFZXcEVZV1J4VDNSUVZXdG1lRTB2V2toc1JIWkZObVZqUTBGM1JVRUtRVkZMUTBGblJVRjRjbTF0Y0ZWbWJUUXZMMDFqUTBJd1puRkZWbE5NWnk5dFNtTnBlR2xMTDBGMlRTdHRZVkZOVmxwUU9XVTVSak15TDBwQmMxQjROd3BTV2paU05IVnFWMlpZTlZWT2EwSTBXWFJQT0VSQmIwNUpSV1UwVXk5bkt6WlJXbmszYTIxbE9FOWhTREpqYVhCUFUzRlhhVU5wYXpKWlIydG5ZV1pKQ2pKclRHZzBVamd2Y3paeVpYSjVSMUk0YnpGWFZrZzVhMUp5WW1acFRGZDJOa3A1T1dSc01VODJWVmh2ZFZSQ1pYQldSMGM0V2xNNU1FbHhXRzlxVDNVS1ptcHZTVEJXYkhBdlNVZHhSMm94SzFwTE5FNURkVGh3WjJSbmVrb3ZWSEpTUmpGVE5XMTJRbHBOV2xGS1F5dFFVMFpIVm13d00yeEpaMjUyTDFGc01ncG5ZeTlVUldGSGIwSkVSRXhKYWxobk9EYzNTakZZWmpKaVZrVk9XR3BKUTJGWk9FWnVSSGxuYVRORWFUYzFWMEZ1WjFGelNIUnBVVk5VU3pOUVJtaFdDbTlxZEhwdVJVNHhVamhJT1V0U1JFUkNRekF4Y0ZaS2NEVnNNSEpuUW1WUkswbEJNMjV2UjBkWlZsbFNaVEJ5VDBwa2FuWm5RWGx2V0d0Vkt5OXJlaXNLU1VsTlRtdHhjMGRGVEVGTVIwTlFjMEZMV1ROak9VaFRVVGw1Y0V4amFrVTNObFpPTlhaWVdtVjJVMDB6VFdKcmRIUm1hR3RsWVhkM1JtWlNZVE0yVndwUVIzSnpka1lyVVdSYVRHSTVaV3BLZFdwSmFsSXZUV052VDJabVRVbFBjVFZzTm5aYVNYcE1kMUl6ZWt0eFNGTkxTMmxsV1N0dFNEaEtWbU5YTVN0a0NsWkZkVEJFYkhZNE5sWnRjRWs0YVc5ek5uTjVZMFJrT0VwRGJqRXhUMWxKY0M5T1JYcE5TVmRTUWtkM2VqQnVTVkY1WjB4YU9XVlVaRlJHYWpGUWQzTUtSRXhYWlZsS2NVSjZlSFpPUXlzNFZrMVZRM280VDJoSlQzRlhVSEpHZDJGTFFsZzRUWGt2WkU1c2RtZHNNVW96U1Vwdk5EWlRXaTlpTVZaMk1Fd3ZOZ28zUlcwMUt6UTRlRTVvVmxkME5YSnlOR2hSWkRaRWRVb3lTVFkwT0RZd1ZIY3hLMmM1UkhaaVFrSmxkSGxSU0dsUFFVVkRaMmRGUWtGUWVEUjFXVzVsQ2pCRGFrOTFObGxuUTI1WU5tODJSMGxqVEU4MFdpOXNUa3RDWTBSRFpsTlNZbHBqYUZSTGJsTTVTeXMyYzNSWlFUaGlhV2hLV1VKcmNGbENWV3RtWTNjS1puZDJiMFpvWm5GclpFOVNXbGhHZGxsdE1XZFlhWFZyTmxNelNHOXlWWEZ6U3paVmQwcDNLMmRNZGtod1NFdE5jRlpxZUUxU1FXOXhaekpvVHpsd013bzRhRXRRUzA1MVRtRkVlVFpVVjB3eldFVkVNMkp4VlVsWWRIZG5OWFZZT1RBMlpESnZkelJOWjBWbWRXRndlamwxS3pKcFFtOTZkbWt4VkhsUmFUSjFDbVlyWTJ4U05WVTJMMHRtYTBrNU1tWlBWakZEV0VZeWN6VjVPWGRWYWtkVmJEWTJWWEJFYzBWSE1TOUlibEpTVUVSM05YaElkRzgwTlhGRE1UTk1hRklLTW5NdmJrRnRVbGt6ZEROeWNUVTNOSGx2TkZVd2QyZHRiM0J3ZUVWMmNIaDJZV3BrYVd4NlJqVnJSVFF2V2xGUWFUUXJhV2hXZDJZeGVHdDZURE51VWdwd1pFOUZjbTlRYXpNdll6VnlTMFZEWjJkRlFrRlBWV3RMVFZaTk1XdEtiRlJuVUdod2VYVnJPVUZEVjBaV1IzVmtiVGhHVFZFMllWTkxiMWhTVkZabENuQjFibU40UVdWUGFTOXVjMGhLVW1aNGVGbE1PR3d4UVdsb09YbEVNVE0wT1daUlkyZGxaWFY0Vmk5S1dFZG9RWE5wT0RoSmJ6bDJUREZLU2lzelRGUUtVV1JZWms5NUwzazFVSGd2YXk4NFptNTFhVVpKT1VsM1UwTXJjRTUzVGxKUVRUQkJjWGh0YkROemRHMXFaakZ6VEcxSGVqZDNaVTVyVEdoWmJUWk1ZZ3B4VVVWUmVrZFVNR1ZWUkc1Wk1tMU1VM296ZFhCU01reFBjek53YlVOaEx6VnBVa3B4U1ZGdFZYWk1NM1ZITlZKdGJXaFhUVFZwYlZWSWNISjROazF3Q21OWlUwbHNPUzlDWXpOWU1IbFZVVlZJZFdoWk0wNUJjbEJLUkRKaU1YWXhWM2MxTWs1V00xZG1aSEF6ZUVjeWVEUTRVV0pzUzBkWGFtdFZNR1YwT1VVS2EzY3ZOREYwVGpoakwxWkNhbnB5WmxsVFNGVkZlUzlqYVhSakwwTjBiMmhsUld4bFlqbFFSMUZaWTBOblowVkJSMUJQYUdWeFR5OTBUbXBDY1U5b2RncDNSSE15U1hObVIxRTJlazA0WkVkVVZHSnljVW92WVdKbGVEQTJXVEp3U3pkdVkyOUtOR2hQVnpJemNITXJaU3RvTlVaVlNEZGlNbEl5YmpOcVVVOU5Dbmd2YTA1eGIyeFZheTlUTjA5a2MwSm9TbTB2Vm1WS1ZFNWtNMVJ5TVRGeFFXRlVOR1J4TWpWNFlrZEpjRTB3ZDBOVmNsQkVTV1JuVFVRNVpucFdjMHdLVjNvd1lWZDBZVkpyYjFsb2RFVlFRV2hGWW05TGQwUk5RWHBtZUZremEwOHdTVEJoYTJ0MGRGbEZNM05GWXlzeU1rZ3hZekYzUkhjclVtOTRSMlZ0VEFwblRtaEhVbmxtZFZadE5IaHFUSGxETWt0b2EwcDVlRVpXVjJGNFYwaG1UMk5OWm1OdFZqUTJOR0pYUTFaQ1ZHUnFha3RNUkhSb1owcE1NM2tyV2tocENqZE9TRmN3TURWS1ZHOU9NbGM0TjJSelVpOU9kbFo1ZVZoMFkwOVVjRGR6V1RkUVRFMHJMMXBZYVdVd2QwZGpVa3hvWkd3NFRXTnpaVlozWVd3d1VuVUtZMmhQVFVsUlMwTkJVVVZCY2xSaGFGUXdkMlpLZWlzelRYSXpkMmhrUTBNeGNrdGtWMUZ4WkRSd2VURkZZMjVXU21saVJFaFhNelJzVVRWaFlsTXZNd3BhYVhoNlEydEtRV3c0ZW1WSlJtNDJWRE13UlZkMFFXODVTMmhqUm5OM1NucGlaa1ZxT1ZwblJ6ZzNSV1pXVEdGSVkxWndUemh4ZDIxTlJGQXlRbGwyQ25aVFQyWjBOWEZ4YjBSRFRTOUpWMk1yT1VwYWEweDBibFEzZVhsdGIyWkdia1pLYUVGWVNUSjFXWEYzU2xSRFFtUnhhMk4wV1dGQ1FXaHZNWFZDWTBzS1ZtVk1WVkp0VDFOMFJGWnFVV0Z6VHk4M2MxZFdhWGcwUWpOU1lUSTVTM2R1TlZKa1Mxb3JjMHhxVlVSbFpVRXpUU3RQYm01U1NtMURiamRMT1Rnd1pncDJPRzlWU0hNNWNUaGpOME14VDFoeFQyUmlaMHBWTm1GNk5YSlRRM0ZhY1hGeGQyZHZOVGt5WjNKamNYRjBMMHB0YTNweGJWUTBXVkZXYldzME1tWlFDbkpHVlhKMFlVSkpjRFkzVGpscU9ITkJWSGhhYzNKNlkxWm1TRFppVFdOUmJuZExRMEZSUWk5YVlYTTRUVmswYjJKUlJsTm1WMkpyVFhaclkyVlZLMmtLV21GVU5XTndNbU5QVEVrMVV6bG1WMHhrU3pkS05XaDFkMnBSV0hKbWRubFVZVlpMU21kWE1FMVVNVWhoTHpoUmVuaENWbHBzWlVOemRFUTJaWFZ1ZFFwQmRXcDRaRVZ5YTJORk0xTmlUR0ZvVWpGbFZVbGxOV3RGZVU5VlZGQkJaVU12VXk5bVF6ZHdSWEZrYzFWc1NHSTNhSFIxTUhVMVNuUlNiMVJPSzI5R0NtNHhjallyTnk5NFpWVllaR1JFZGtORWExbzNXQzg1ZDB3d1VHbE1TbkUzV0hSRFVUbG9Oa3BpYTNkRE9IRnNkbVV2T1ZkNFpIRm5VM2d3Y1hKSFRFOEtaV2s1VmtsbUwxVmFOWFV2VlVKaGVVTXJaMFF5UXpoaFpXbHdjRnB4YW01SGVFRnVURzFGZFM5V1MwUTNTR05STDBkUGNHbGFVMEp4V1ZSdk1rWk1RZ3BHVTBsTmNYZzVaM2RPY21OSFZ6TkZNRU5GVWpZMWIxaGpja3BtY25aT2FGWmpXbTVaUkc5YVZrUk9jVWRJUTFoMWQzcFhaVFZMYjAwNGVFa0tMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogemZmZTh6ZHhxM3Q0eDdvem9zdjAwOHppdjljdnQzd2hkODVkYnVjbXltZXl5M2xldXh4bjhicG11Mm96MHV4MWt3amo5MWMweTJmcWg3bXVwY2F3cWVidXdna2Z4dXJyYnFtaWcwZzEzZXZhN2ltNXBuNDJsZnc1cG5neGQ5enYK\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUzFSV1FVeE1Xbll3Umt4aVpEbDZXREZRZVc4clZFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYbE5WRVV4VFdwc1lVZEJPSGxOUkZWNlRVUlplRTVFU1hoTmFsVjVUMVp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSRkNqRm5VVmgwT1V4cU9HVkRVeTlNU1VGRFNFWTJjVEpEUTNScE1YQmliV2hMTlhOUlNrMHlZaTlhYzBOVlkwZ3dOR3g2TmpZMlQyZzJSWE16ZERWYVdsb0tUV0ZrUlZWV1kxRk9VVkV6YmpsSlNIcDVXbU5vVW5aclVEQkRSRWxpYTJKb2IxcFZjMGxWT1dKWlVqUldXVkprYW1JeVRYQlRSVmhKV0ZBdkwwNXhaQW80Y0VaMVVISnFORlZyTlVkSlFrUjZlR2RqTlV4aU5WVTJRVEJKZDBzMlRrNDRiSEZTTUhGVFNISlFaRlpUTVcxRVVYVnZkbEk0WkZwc1kzRXlZbUpUQ25CVGRFOUhUVWRrUzBwalVUTllXSEZ2Y1ZWMGJqQk1iMk5RSzJaSVdrc3ZRV0ZrU1RabWRVZDFWbXBIYm5wM2FXZHpRWFpLTm5KdFFYSnZTelo2VVdJS1RsbHdNVVpuV1dWM1UzbFNTVVpXZERrMGJHOHJWMGR4TkhjMFJYVkJNVTFMVEc1UU5tdHNhSE51Y1d0NFlWSkhUbGh3YTNWbWFtUlVLMDUxZGxCUU5Bb3dNbTF1ZFhkWk9GSk9haTlIUVVkb1ExY3lkVU5zVGpOWE4xZEROV3hOVW1OSVdVd3hSVkZIUlVOd015dDFObGN3V0dKdVZ6bFRkVXRUVlZsUE5FaGtDbFZTU0VkRU5rZENhaTlYVTNwbk4zTk5OVVl5Y0dSYWNFTXhLME55UzFsVmFrTmtSVzlJVW5aeE4yNWlSbElyY1VzMlQwUkhlUzlCZWtwdGFrbDZkV1lLWlM5eFowVlhkVVprVVRCSmJsRjJibmhpVTFwSFVGRlNXR3RDYkVoTmRUZHhha3BMWmpGeVRsQnBWV3B0YW0weVF6RXZNa2xIZFZsSWJqZGtZVEZLVGdwNlZsbDFXRFpqUW5BMk1IZGpSMDVvY3pkdWJqUkRjRzhyVm1FelUwcFlNV3B4VkhKcFozUjVabGhXVVRKTmRIbGhkWE5rVmxCdlYwWk5ObGxCT1VsbkNrMW1aamt3VDJSV2FsZEtNRmN6UjJKNVUxWjRWMGxxV21sbk5EWTFOVVZQYjNSUlFVOVpkWGhoSzFWUE1HdGhkaXMyTVZRekwwNUxlRWhNWW5kRVNtOEtlamRtTWxOYVlqbHpjRFJVUTBaUlRuVnpaVzl5VG1Sb09WRlVlbk5pY1RrM1JVVllWREk0TjBSM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWdGNITkdjMk1yZUVWM1ZGTnhjWEpoQ25jNFNHTnlSM2x2ZVZWbmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGR2FVcFFjVlZLU25SQ1VGaGtNWGs1UTJ4VlRtVlhSRlprY1VFS2RXUlJTbE0xZUVoYWEyTlNlVlI2VUhjMVkzbGFVV1Y2SzNKeGRsTm5WVVZVTkRKUGVtOW9heTlJWTB4RVlWbHlXVTVqYjJaTGFYWkxXRU0yYkN0amRnbzRVSGR2ZERRdk9FRnZaVEoxU1ZwTWNuRldNbFpCTkZwMGVVUkJhR056V205TlJtRnhhaXREY3pKVWNraHFhRTFuU0RsM1ZUSTNkVmQ0VXpWVlRFZzBDa05aTldSdGEwbEhRM2xGS3pSYVYwZFNXRk15YVRWVWNsVkxSMUpRYW5SU2R6ZzViVkZ0YjB4NGJIRlVjM2RYSzBwWmMwRjJWM2czVjNCRGFqWkpZVzBLVFVSSWFtd3phbVJYU1VFMlVVczBMM2RwVWxKT1VuaEZNV0V4VkdWVlVqZ3dTalJTUzNaalduZ3lhRVFyUlV3NFMwUjJNMmhRZEhSdmVYbDNkamxKZWdwQkt6Qk1NVXhOVm0xbVJIRlhRMmcyUXpKUWFsazFhV3hWYXpCTWJYbFVkbUZHVG1KNk5GWjFTbUpyWXpKdFdGTmpZVmt4VFVGYVVYWXdZVEJZUmtVd0NuZFVTMDlpZFdGWGF6VldhbHBPYTNWSWQwZHhZM2RDY1VVMVQxZFFZbHBqTW14S05IQkpRMGxUVDBSeFRreHRjbGhUTWxOeVRYUXpkVTlFWVhacFpuWUtUV016ZUZSVGFtOW5TR1V6VG1zd1kzSlFTRmhuZGpKT1pYWmpTbTlKWjJSTE1FVXdiM2h2UlhrMVkwOXNkV2R3WjJsMmFTOVZNRzVEVmpacFMyRTFVZ3BuUVhVdmNURnFUelpQYUhabFZrRmFZbTlIT0hKdE5VSmlVbXBCYTFsMFltVm1hMlZaZWxneFoxUmtWR2gzYjFCdk1IazVRVFEwTDI1UldHcEZkV3B3Q2pCcFdHMUJlbWx3VVZGdGFFaFROalpIZFdobWRVbEtTbmRRTXpaRGEyOHZXRkp0VDBJMk5IZG9PRUo2WlVWbU5VNXhNRWs0YUhkaWJrTmpjbmQ1VjBVS2FUbHZkbXgzZGs5M01tbFVSMjlwY2pkdGRVY3lOakowY2tGQ1l6bDFRaTkxWlN0Mk5rZENVRWhKVW5oc1kxTlFZMnBvTjNodFpqWlNZVUZaWWxneE5RcGpjWGxaV2tJNFJ6TlZRVTlEZVhSTENpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3BoeHVqd2gtNms2azQ1Y2guaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3QyaGdic28KY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3QyaGdic28KICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RvZTYzYjc0Ynh6X2NsaWFrc3Rlc3QyaGdic28KICBuYW1lOiBjbGlha3N0ZXN0MmhnYnNvCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdDJoZ2JzbwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RvZTYzYjc0Ynh6X2NsaWFrc3Rlc3QyaGdic28KICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJXbVJUUmpnMk9HUk1jemtyZG5kM0wxcFlaMWx1ZWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVVhsTlZFVXhUV3BzWVVaM01IbE9WRUV5VFZSUmVVMVVTVEZOYW14aFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVU01VURaUWJtSk1SME5TU2tsV00zUmhWVVpWYVhNS2FIRjZOMHRHWld4MWJGa3ZVVWRzWkd4dE9XOXJiRGRSVVc4d1NtbFhTVWRJVEZJNFVWSndVazkxWmtKQ09YcDZTRkJuUkVGS1VWUkpja3RDWm1aaWJBcEthazVTT1ZGNGRVbEhXVFY0TXpWalNEZzFWWFZNUkdoTmFpOHdia3BSWVVWRWJXbDNla3BVU0V4Qk9GVTFSbXR3TVVNMldYRk9lVzVYVTAxdlptZDVDbkozUjFaTFJYYzVRbGxNV1RSek0wWnBNMEZoT0hWSGMwUXljVFo2T1hVMlJFaDFURm96UVVnclN6Y3lhVXRIU25CNVRFWnJSVUZ2TW0xRlJEbDNjbVVLWkcxb1JqSjFjVEJTVUZKRGFHbEpPSFpzVG1KT1dVazBOQ3N3Y0ZoM2JVNUZVeXM0UjNwQ1kydzVkbTF3T0dsVFN6QXdVV2xoVm1jMlVEVkxaWFYyWndvNFN6ZG5kVlZMTTFadGMxWnpkVkUxU2tSbU9HZGplRXAzUmpSdWFFRldXV1ZYVWpkVGQyRlpjRlZ0YUM5eWJIbFhTMUV2ZERkc00zTlBSVkI1T1hSd0NsUTVUV0pGY0hselRFNDVTRXRPY1VjdmJERlVWMjl0YXk5R0sxTjNaMVpaUVZOTVNXRlJhWGhuVEdObFZubDJOaXRpYlZKVEt6WkxSblppTWs5d2JWZ0tSWE16WnpFNGFFVjFVRXBhY0VkVFVHZDZXbVl4YWxaTGNqQXZXRUZuTlZRd1VubzBOa05pUWpKR2VrSnVObWhzUTJOc1VsZGFNRXMyVmtwbk55ODJVZ3BwTVZwa1JIUkVlbEJJYmpkRFpraHFUakZ4YVdKUE1HUnNaRlJRU0ZkTFFsZDJOREpHZEV4UFUydFZTa3hLVURsSVJYWk5kV2wyVmxKYVRYSjRTRVJZQ2t4WGFFTXdTME40WkU1dWNTdFFVWEpFTUZCamQySnRPV2hqWVhkMFNHNTZTRFkxWTBkb05rZG1SMll3UmpkMFFVdFllbVYzUkU1MGFETjJja3B6Y20wS1RGcEpaRGxHT0RGcFQzQTNhR2haU201VVpsQjFSbGhXZG1sRk0ySjJjMUZGVkdkRmVGZG9NbVJQTjFCMVlsZEdZVFZwVjBzNVowTXZLMkUxUVZWa1pBcG1iRkpuTjFwdU9GRlRVM0I2VFhJeFNYSTBhMHBSU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbE5oYlhkWGVIbzNSVlFLUWs1TGNYRjBja1IzWkhsellrdHFTbE5FUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZDV210UFlUZ3JRMWg2VjNWc1ZXeDRWMHd4ZFFwbFRFSkRSRVFyT0hsMGMybGFhbHBNZEdaR1RHc3dOVzh6YW5wemVIQXphRkV4V2xsMlZHeG5RV3hoUzFGWVFVTktjM2gxWkRock1ERnFXblJUYUhaUENuYzRUR2RQWm1SU2FVZGhVbmx0U0drMU5VOW9XbUpTWWpkQ2VuQlBRMUZhU21aUlRFMTBOUzlRYm1rek9FSnBZMUJvVnpWYVVsSkpkMnRtZFRSUmFVb0tWV3BXTWpSaVp6TkJWWFEwUVVKUlRXcHJaREZTZDBrcmFDdGhTRUpaVlcxamNsTk9WV3BtYmtsbFlrRXpTR2xTWTBWSWMyRmlNMGRLUVZVNWJtdFNXUXBSYUdSMk9XZFZPSHBVZVRJMFJVVTFUbXgyZVZsWmQxUlNabVZuYUNzNFpUZEVSbGhQWkN0RGFrNXRaRkIzZEZWQmFsWllhMWhrYURsSGRVeFJOMloxQ21kaGJWaHpTRWhuYzFSSEsxQnVXVmRDYjNSVFNEaGhhVnBqTVVoblVtaHJValZRWlV0U1RqaFlhelpOTHpac2NFODNVbGsxT0Vob1N6WmxZbFZCYWtVS2NEZzFhRlJFTW1WWGFXMXVjbFkxUW1STWFtcE9iRUl4YkRKUU16Tk1SU3RFZG5sSlZ6azFPRTg1YkRKWGJGSmFSMFp2S3pCbGEzVXdXVWRIUVROWWNncHNaVzVrUWpoamNraDNRVnBzVUhoV1dGb3pSVXhVVmxaUU9VZFliWFkyZVRJNVdXRXlVa1YwUXpsaFdYVTBVMnhJUW1Nek9GZFRPR2RUV1RaM2VUSXZDazFRZERoSGFuRjNSaXRRT0VVMU9IRXhhRlZNWkdoSkx5dG5ObWRYVjA1WU5WWnVZMWhMUzNCWmVVdHRMMGh6TjJJelMwTTJZMEVyZGtOR01qQk5UVmdLZEVNMGQyMVlLMlpTYlhFclZtWlJabEJuTUVkVk1uQTJlRlJFVFVWVmRFSnZibmgyUTBOV1VXVjBNVXhNYkcxcUt6Tkhaa2hGZDI4ME5tWktjVkJQUWdwcVZUVlRNek5YUWxSaGRYTlpVa2cyUjNSNFpsSkxXSGxNTjJOVFMyd3JMMnhhWlVWNGRWVkVhRU5SWXpnemVuaGtTM3BFY25FeU9WZGxVVWw1T0N0bUNuVXdTRUZCUjIxbUwwTlhiV2xrVkhGU1VTOVZPVVpKUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZGxRcmFqVXllWGhuYTFOVFJtUTNWMnhDVmtseVNXRnpLM2xvV0hCaWNGZFFNRUp3V0ZwYWRtRktTbVV3UlV0T0NrTlpiR2xDYUhrd1prVkZZVlZVY201M1VXWmpPSGg2TkVGM1ExVkZlVXQ1WjFnek1qVlRXWHBWWmxWTlltbENiVTlqWkN0WVFpOVBWa3hwZHpSVVNTOEtPVXA1VlVkb1FUVnZjMDE1VlhoNWQxQkdUMUphUzJSUmRXMUxhbU53TVd0cVMwZzBUWEU0UW14VGFFMVFVVmRETWs5TVRuaFpkSGRIZGt4b2NrRTVjUXAxY3k5aWRXZDROMmt5WkhkQ0wybDFPVzlwYUdsaFkybDRXa0pCUzA1d2FFRXZZMHN6YmxwdlVtUnljWFJGVkRCUmIxbHBVRXcxVkZkNlYwTlBUMUIwQ2t0V09FcHFVa1YyZGtKemQxaEtabUkxY1daSmEybDBUa1ZKYld4WlQyb3JVMjV5Y2pSUVEzVTBUR3hEZERGYWNrWmlUR3RQVTFFekwwbElUVk5qUW1VS1NqUlJSbGRJYkd0bE1ITkhiVXRXU205bU5qVmpiR2xyVURkbE5XUTNSR2hFT0haaVlWVXZWRWQ0UzJOeVEzcG1VbmxxWVdoMk5XUlZNWEZLY0ZCNFpncHJjMGxHVjBGRmFYbEhhMGx6V1VNelNHeGpjaXQyYlRWclZYWjFhV2hpTWpscWNWcHNlRXhPTkU1bVNWSk1hbmxYWVZKcmFqUk5NbGc1V1RGVGNUbFFDakYzU1U5Vk9VVmpLMDluYlhka2FHTjNXaXR2V2xGdVNsVldiV1JEZFd4VFdVOHZLMnRaZEZkWVVUZFJPSHA0TlN0M2JuZzBlbVJoYjIxNmRFaGFXRlVLZW5neGFXZFdjaXRPYUdKVGVtdHdSa05UZVZRdlVuaE1la3h2Y2pGVlYxUkxPRkozTVhreGIxRjBRMmR6V0ZSYU5uWnFNRXQzT1VRelRVYzFkbGxZUndwelRGSTFPSGdyZFZoQ2IyVm9ibmh1T1VKbE4xRkRiRGd6YzBGNllsbGtOelo1WWtzMWFUSlRTR1pTWms1WmFuRmxORmxYUTFvd00zbzNhRll4WWpSb0NrNHlOemRGUWtVMFFrMVdiMlJ1VkhWNk4yMHhhRmQxV1d4cGRsbEJkaTl0ZFZGR1NGaFlOVlZaVHpKYUwwVkZhM0ZqZWtzNVUwc3JTa05WUTBGM1JVRUtRVkZMUTBGblFWQk1XRTUyY3k4dmIyVnhaR054WVhBM05XUnJWMUJTWWxOaVkwaGFkMHd2TmtGeGFIZHZVV1lyVlhZM1dIQlFOalp5VWtnelpUUllaUXBGVkhGVVIxTTFUa0pPZUhKbmRqbEJMMjFNYUhobU5tRTVRV1JDUTFoa1JVMHljbnA1YUZadmRrNDRaR1JGSzFBMkswRkVjalIzUW1scE1ESnBaV0ZXQ21KNVNYbEhSRXh4U1RadFpHTlBNMEZvVUdsdE1FbHBiak55VjFKSGQyWTVaRzFZYlROMlNraG5jV3RQUm5OcEt6Ukpka2w1VGs4clpEY3dabWh5UkVJS01WZElaWGRqYzBkaGNEZEtPREpYVDJkeGMybHROa1E0VDBkMlpYVTFRbEpUWlZaWk16ZzNXRXAyY2tnNVJuVnlSRkJsVFhGSWNqQjJia281Y0dOek1ncFJkR1l5UmxKbVJuWTVPRTlIWm5KelVVb3pTM29yVkZaQ1JtRXlhVFZpTmpOMVJFTTBNazVxVFdneWNtdzBVVVk1UlV3eVFub3JSakk0YVhnNU9IQm1DazlRTUcxalRuTmxOblJpYTI1TlpGQmtUMU5wTDAxVFVVSTRSbTgxVjFacmQybG9abE5CZWtwcmQwSmlNMFJXTVdKQ2NXOUZSMFZCVDNSTmJXazBUbk1LZDJGUWRITkdVVlV5TWpWSGRVTnFXbVIxV0ZoSVlqSlhibmR3WVZsM2VHaGtUbEJ0WkRGcWQzWkxaMWRtV0U5eWFVRkJWMFF6T1M5S2JXcDBSMk0zZUFwTlVrMWtkMVJ6U1ZGaWVYRXJURkJCYlRORE5rSk1URTVDUTNrdmEwOUpPREZFYkdoaE1FWTBNelY0UzFCV1dGZG5jbXh3TWpGbFZGY3dMMmhaUVZreENsVmlZa3RwUmpoWlJrVkpTblZwVkRkR1FUWm1RMWd3Vmt0YVEyMHpkR0V2UzJNeFJYZDVMMGxxWTNWaWJFc3pjWGRWTlROMFFWUTVOV2hNTDI5b1pIRUtRekp0WTJwMGFtbDFielUxVDNsQ1F6bFVUekZ1UTFoQ01GUmpkMUV3TUZRNVlXb3hWVVI0WTBndllqVXlSR2d3Yld4bFVrSkJMMnhITUdoclFXNXZUd281YkU0d1RFeHBjR3h0ZVZSVFRtWk5TMFIxZDNablRqTlhORXhaUWxKelVFRTNRMHc1Y0VNd1pXNHhhbEJKTVhaWlVVdERRVkZGUVhwdUt6WkZObTA0Q25ObGRrSmFiMnBCUmxnNWFraG9PR1JaTlRkbE1HZEpORWt2VERSRldreFROMmxoUzNOalpYZFliVlFyVDJsdmFqQnhUMUkyTHpaeVMxRm9hbFJrS3pVS1RsUkxlallyVW5aeFQwZFRSbWxQTlZWTlduQXJURU54UTBaTVNXZFhiV015UmtkV2RuWnRPSFp6S3pCVlVHcG1PV3NyYmpFeU4yNTNOMDlNZVRkdlJ3cEpORlpQV1ZvemRrdGhlRFprT1dWbGJpczJlRk5CTDFSTFZYTnZTakp5UWpsU1EyZG9UbkV3WTB0dFNuZHNWbXBRYVhoNVZEQjZkM2g2TjAwMlNEVm9Dak52UldaVWRURm5RbU13V0ZCbFExSXpTemhWYzAxMFdGQkRNMmd2VTNNeldrNVhZbUpQY1ZwalVXVlhTbXczVVZaMGEzRTBTbTFJYUhJeFVsaFplRWNLWm5SU2JrWm1OWEJXVEZscmNFUjNUMnN5TVVKNllYSkZkVEpZUVdKeFptOXRkbU4xUjJWalJERXhSbGd3YW5aQlExcDJha2s0TDFwaVVFdGpkemhNVGdwWVlqSnZLMlY2WjBvMFVHNVZkMHREUVZGRlFUWndNVTkwUldGcU0yZ3dhWHBHYzNaSVVWRk1Zak5VV1RSeWRpOVdLMHBVZDB0V05XdzNaMnRuU1RNNENtWkdUblZvT1RWMVpFZEljVXgzTkRKSGJHYzBlbEE1VlV4VmVuRkRjR2wwYjFocFVsaEdOUzlSU0c5WGNHeHVNRmRPYmt0WlltMTBaVzFoZWtGeWRXTUtVVkpPV1RkeVEzWlpkbTFtSzBSemFtaFVRVVZUZWk4eFREQXpOMU5sYTNOaFVGRkRXa016UjBsTWNEaEJSbTFGU3paeWJrWnVSelF2YzNKUUsyeGFTZ3BWWlZoT1Ztd3dTMEl4WkVVd2RucFBURTFYVmxsSE4zRlpjV2h5Ym5KTFpsaExlRlI1YTFOSmVFaG9PQ3RsYTJ4NlVscGxSVE50YlhsUU9XcDFTamhuQ25nMVkzZE5SMWhMWld4V2VtZFRSVmw0YkdFd1VVNDVZa1ZXVERjeGRsaHhhVTlFT0hFeE1sWTFja3N2VFc1UFkxQjBjVzVwZFdodlMzWTFhU3Q2TTFvS2VEQkJlbGx4VTBWSFNYWmFVMHhHZHk5ME5sbzFRV2hXT1VKallWSTNVbXhOY1VadlVsbzBkbkIzUzBOQlVVSm1NSGN5TmxOcE0zbE5iMFJSTXl0NWFncEVWRmxzY1VSTGRra3JOSEZpYWxVelIxZDZZMWQwU0daRFlYVmhla0oxWmpocFZ6TlJRVGRZYkVkblIzQXljM1EwTWt0U2NFcDNRbVk0U0ZkWFZ6aHVDbGt5VjNwUFIybHhabmxvTVRaNVZUaE1ORFI2TXpWeFZrWXlZbmc1Um05UFFXSjVabEp3TlVoWmNtUXdWbFppWm1wa1dERmxRMGRhU1dsak5WUldla3NLWW1WME1qWlhkMGR6TTBVMVF6TTNiSHB4WVZob1FXSXhabVl5TDB0UE5VdDVZVWhRZFVkblVsWm1Za1p5WlV0a01IaHhjbGRPY0RWemJHMW5LM0UxZHdwbmNtVnBWWGt2WTNoTVNrcFRSa3d5TjJsUVRXODVNVlYzV0hOaGF6bE5XV3BJYVRBeldrczBaWEJhV0VjeVpUQnpkVEp5UWpSckwwZGliWE5xZURZMUNqTk1kM05MYlVwd1RESTBNWHB0VkRCM1ZXTklSVzkyZVZCWWJqZE5lVk53UzIxdmFXVlBLMjlvWkhCc2NDOUplR2xJVVU5ek4zTjRTVTh6YXpkSVRXOEtXWGxHV2tGdlNVSkJSV3BwTldacFRHMVplaTlqUkdkalpUazFMM2w1TW5SR01WRmFTVFZMYURsWVREYzVXRW93SzNGSlZtVnJUVVpwUjJ0a1lWTk5kUW8yUW05SFUwUnBWeTg0TlhZMVF6ZFBibXRpT0dRM1UyRlRSVFY0TjFGaFV6VXdXakl5TjNCbGNuTnFPV0pwSzBGcFJYaHdSRWh2VEVWTE0xZHdhVmxTQ21SMWEyWk9hMGhEVlZKTmRtOHpVVEoyWTB0UlpHZFBSa04wYTJ0bU1VUmlibTV3WkZaUWNHSTVZalkzVW1OWGFVeEZjVkpWSzFoc2FHOHdNa05ySzA0S2FGRjNia1JqV2tzck9GVm9jMEk1UjFFeWFtbENWRUU1VDFOeE1XSXJabHB3Y201akwwdHNhVTFaWmt4WE1ERkhVMmw1Y0VGMk15dHpha2hYTjJKb2FncHZObUZUUzJGbk1HUXpkRkEyU0V4U1dGQjJSRWRyUnpjME9FMDFTamhEY2prd2IzUk5TRlV5WVV0YU1qTlRWeXROWmtoeWJsTlRVbWhYVlRONGRrZzFDbEZHSzJSQlNWZDBhMmhIVG5CWFdsaGFkM0YyZFVkRGNWWkZTMDFwYWtWRFoyZEZRa0ZMY0dsRFJETjRTVk5PT0RWNU0yNHdZVzk0TmxRMWQxbE1TRTRLYlhCRWRWRldjRVZLUmpKM1QwSnJZa04zWVVsaVR6VlhiWEJZVFRsbWVuQlhSVmRGVFdwYU5GZFpUemhMZFdKeFZXSnpNRU5tUW5KdlpGRllVbTl6Y3dwMmEyaEtSRWRFVEV4b01YWmFTa2h3Y2lzMGNHTkVXVTF2TjFGcGVWQlRhbHBWWlZoRlpuUktXR1YyYWpoS1dsTjFXWEY1VDBobWRsTnhMeXRQZVc5VkNrMUhjVkpTYTJoUlJ6TkVObWN3YlhadU5qZENjVFozY3pWTmNYUk1WRmxLVTBGeFVucHllblEwVjFkbFkwdGpNeXRGZGtocFJHUkdVRTVNY1hKelNVWUtXR1JvZHpGek9VSjBhVFo2UzBsMk0yMVBWa0poTWxkdFdqSTRSMkZDU0d0ME0wRnFNV05ZZVRKWGVWbHhhakJtYlc0Mk1qbGFVVmsxYVdOelF6UktRUXBJVDBZMWRGaFZjMU5TT1VobGVpdHRNMjFvTDFWRU5Xc3dXWHB3VVhrNWIxTTRjVTlqWVhFNVRHOXBkMFI0VG04MlZFVjBjRWRuYkZCclp6MEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogc3NyN2ZxbWN3ajJubXlzZnc0cmJqM3kxY2JsZng0eXAzbG5yc2oyeW1lYm1wMnFxcWxiZWNoYWE0dTRjaXc4N3FlZ2FyMHJjbWxuN201MTZ2dDVvbDZzYmptdWluOHhpZ3l1N2k2Mm5jMnN1ZndzOXBsNTRnaGl2cjl2c3cwY3IK\"\ + \n }\n ]\n }" headers: cache-control: - no-cache @@ -1102,7 +1102,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:00 GMT + - Wed, 14 Jun 2023 21:28:17 GMT expires: - '-1' pragma: @@ -1138,15 +1138,15 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUm1kWlZGTXhjRlZJZDBOclVUTk1iVUZzV1ZjemFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCZWsxVVZYaE5SRUY2VGtSYVlVZEJPSGxOUkZWNlRVUk5lRTVVUlhkTlZFMHdUbXh2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSTkNqUlFiWFZMUW5ObU5tSnJiRmhWY0hCWGRVUkpSbTVpUkV0eVJWUlRMMlpLUVdOV2VYaHVaa0ZNV2prelJGSldNMmcxUkRKeFFYSkdTRXRJTmxCclJVZ0tTa2hrUlZremRtdHFkbkJ4Y1c5dmIwY3dPVTV1UWxKbGVrTmpWbXMzWkVObVVVWnFZMHM1VkZvelYxSlpkV1ozYkZKVFQxaEdXVmg2ZDNsM04zVjBWQXB1UVZwQlNDOW9ORWQwTkRCaFF5OXdWVWhGUm14Q1RYTTFOR2RtU1RWd1VUVkhVelZIT0haUmVHdHdhMDE2VGxwdVVVODJkMnhWVjJ4T1JFODBLMHhKQ2tsMmMxRkthbU14YmtkRE1ETmxLMW8wTVVVM2JGTjNWRlZVU201VmVFNHdZVEZtZDBzNFRuSkNMMUJ6Vkc5M1JqQXlUa2xXVUZZckwxZGtVVzVUU1VrS0swNU1VM3BsUVdObldHMHpXRkl2YW1OTWJEY3pkbEp2U1dzMVVteFVjbGxUT0VKUFIzbE5RV1JzTURoMU1XMTFZbmR2YmxST2F6a3hOM3BvV1VJdlVRcEZRbVpzWWpoWVdUTXpkVEZXTXpsbVEzZFZiVzlPWkhSWVZqazBTR3B1U21KTVZIaHZRVXRDWm1GWFJUQkJiRmRLV1VwTmN6Vm9WbFIxYURJMU4wcFFDa1ZRVVZBcmEyUk5kVlZHYldSWWRYcDZhVTFQY2pobVNFY3pjbGR3Tm01dVRVVmFXRUZYVlRRM05taEdSVUpvWWtWRVJHUjRVMVYxWmtKM04xVkhXSGdLYUdOU2FVZEtiSFZLUlROUVVHMUdjVU13TW1wd1RtVjNVV1o1VDBSTlprVnlaWEZ2U2xGbFVtUTJjbm8wVDFSWFMxQXZZelZwZUhKUE1FMVlZVmRQZFFwa1dYQlFVVzQxUlRKdlVqZHFlRWxYZVhRdmJrWnJhakExT1VzeGVUSjBkblJpU0VjMU1VeGhjbmRqUTJGVldscHJWRVZpVW1STU1GbENOWEkxZGpoc0NqaGxOM2RYT0hSRlltczRSRzVHTldSSWRuY3lZelJLYVcweVVsWk1USHBYTTFWSlJYZzJXRzVYV21Ob2JuUkJPVlowYUdveVZTdExNV1pSVURsWFNtc0thVW8wVVZCeVEzSjJTVUpIUzJ3M1VrTm9UMmRGV2xjNFNGaFlja0pLUkRaNlpFVk5RMlV4ZWk5M1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWQ2RFWkhNVGhQYUZjcmJsVTFha3hzQ20xbmJtbEVVamxTV0RScmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGTU1FdFJjVkY0TWpFd1lrRTBVM1Y0VFhWUFV6RnpRMDlsUzFZS05WaE5URlZsV0ZFeFlVOVpiMGxZYTJ4NlNXWk1lVTV4ZGxCWlNqZGhORWxzUlZkSlUwZE1jMlp2YzJ0bGVqbFlZM05ZYW5OeE1qUldWRnBLTTFwNk53cHVORlJwWlU1U01FZFJOMk5CZVdOQ1ozZHlNVk5CV25oWlZISlpNRWN2WTJWcUwwTXdNbFZFZUhWb2VuRktNbll6ZGxWTFJUUlJkRFpzYkZSall6ZFBDa2xaYlZoeVVFNWtTazlMUmpWWVJuRjJUbkFyZW14TmNsZGxRekp3TWpaTGVHVnVMMDUzYWtWVWNHbGxORmRYVERkRWNISlljRzh6YVd0dU1XcHZWMUVLTUhOelNGWkVUbVkwVmtKYVpXWTVUbE52VGtWT1FsRm1jMEZvWlhCNGIya3hLMHN5T0hGVFRFMW5TVmRaYmtkdWNVWkRUMDlDZW1wd1RFMUJUelp5VVFwNmRsUjZSbXh4WTNoNmMyZzVXVWwxWkZKQ1JVdFpkVEZDV21NMk5VbG5hRlpCUjJkWWRFOVROMEl5VFRFeE4zTlpiVU5LYUVwa1VFeFhaVTloZG1KWkNsTlpSVEYwZUVkRVVpdEZVMnhyVGs5V1NqVmphM29yYmpoeVVrSnVaVkJEYUd4VE4yTldWbEZuUkZZMFNVOHJjSGszZURSdlZUWktLM2RoZG5waGFIa0tSa1Z2TWpOTU1FNHZlVFpaVjFOR1lVWTNlakpQYWk5U09XNDBOMkZJZGpVM2JWbEZkMHBPVUdrd05IRTVTU3QxU2pkVVJHbGpPVlJwUlhCMlZGZFdVUXBCYjFKVVZsSXliSE5WZWxwa1FrTTVabWRaTlhodVNsUldTa3BuYjFkUUwwNWxibEp2TWxGME1EVnRRMUZZYlV4TFpYTk1ibUZMWm5GTFoycEtiRXRSQ21OSGVETnpjMVYzYW5GRUwzZDNRa1ZFT1hkUGFHdzNiMll3U21kSFQyOW9ZVTlGTjNka01FTlVVV1ZNWVdodWFtTm5OV1o1TjBWS2FWVXdORFJhVkhRS09IQTJPRk4zVDJObWVGWnhVekJ0YjNremQyRmtRalI2YlV4a1dHMXhXRmx0UzJkWVdYRllkM2xFWmxnMGFFRlVaa2htUmtKdE4wRnhZVFJ3ZFZodmRBcENVMUZxVWtneVl5OHdMeXRXV1Zvd0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3VlYWZrYnAtenh5NXlwdjUuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3Q3d2plY24KY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3Q3d2plY24KICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3R4MjRyNGV6c21nX2NsaWFrc3Rlc3Q3d2plY24KICBuYW1lOiBjbGlha3N0ZXN0N3dqZWNuCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdDd3amVjbgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3R4MjRyNGV6c21nX2NsaWFrc3Rlc3Q3d2plY24KICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJTQzluWlRaWU5uSTFkV2xMZFdSWlJWTllOVXg0UkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJlazFVVlhoTlJFRjZUa1JhWVVaM01IbE9WRUY2VFZSVmVFMUVSWHBPUkZwaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJvS3paamJqTldPRUpMY21STVJ5dEdkbHBPTkRJS2NFdFBTMGd3UVRock9XOVRjell3VEhGMVNEWjJabnA0WWxCbldtWlNTVEZpZFRCaGMyaEdXa2RpVEZsS2JsVlVVaTh4VVZoWFNWUTNWbXhRTVdOQlpncG1URlU1UVU1WE4zZFpVVWN5VDBSbVVGQTBjRUp1WkZoaGFHa3JSWGR1VTJ0YWJucFJiREJtU1cxaUt6WlBiVVI0U21KRE5FRTJiVWh4ZFRoa1pERlJDbk5KU2xkbGNrcFdTSFExV0Zoc1NXNXZTbGh4VlhWNVMxTlZWM05rVVZWemFXOVhUbFpCYlROWUt6Qk5Na1J4ZGpOWE1ITXJVR2swVFRKbFQxTjNReklLU0hoTFdGSXhSWFZOVFc5NlpsaGhXVVkwY0VVNFdETTJaVTAxVTBaWFlrMDRVVlZIWWt4RGQzaHlRV3RPZFRrd1NYSktkWFZ1YzNadlJDdFFkbGhSVHdwbWRTOUhjSE13Y0hGSGVuRTFaV3BXVEcxcmFHSk5hbU52U1hkRk1rdEVWWFI1YTA5S1pXYzFjVFpWVlVGT0wzTjFkbXBZTDA1b2MyOW9lR3hvV1RGS0NrYzVUa0pFV2twd0sycHBXbGQxY1dGQ1QwZGxObVk0VlVwaVUzSmpSVlZCY0ZKdWJXUkVhVUZqYmpKdlpYcG5VM2R0VWtZeU4wSldhbXRaSzJnd2JsWUtiM0V3V2twb05HbElabTR2VEVwNk5VZExWVFJzZHpCdGIzTkVkbUZ1VDJOUGF6ZFRRMDFoVlZSb2FXeE9kWFZaYzB4NlZFTTJNbk5LZWtKUmIxbDFiZ28zTUhGeGJXeDNSbkpOVGxKNlV6QkliMlowVFVrclJYSlFVVlV3VVZSaVJHdFBkakpMYjJOd01tOUZObHBFVEVGa1dVZENZM2wzYzJScVoyRlphbXhOQ2xObVpuWnBSSEk1WjFGMGVGSjVLMEpsUmxkVGRqRkJWalppUlVWc1ZHNWljVFJYZDFWNldWQklia05GWkRWMWJ6SnpURWQxVVRKbU15dDNjV1pYVVRNS1JHdE1Sa1ZUWldwT1QwNHZPVmRZTm1OeVEyVTVhbHAyTW1aMk5DOU1ia3BLVFZWd1ZFOVdMMmRKVDIxRVlsWkdkMnRtTmpKTldtSlRORXc0UlVwVFRRcE9jREp2TmpBNVUxSXZSWG81YTJWVlR6aFVjRFYzU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEZITUZWaVdIYzJSbUlLTm1SVWJVMTFWMkZEWlVsT1NERkdabWxVUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZHTDNVdk1YQXlhMEpaUkhKTlkwUkRSVU5oTlFvcmR5c3pkbTlyVFZoaVpraEdPVVYxVG0xR1RWcGthWEJpY2pjclMweG5WM2d5VXpaWmEzVjJSbTVUT0hSS1FsaFRjRlpXTWk5MmREZEhjbFYxZEZaTENrZzJia2RQVkVScVoxVmlWazlQU21GNVpYbFBaVU16WXpacllYTktZMlpSZUV3cmEyMXhXRXBvYjBoTlZVaEdTall2YzFnd1VGRmFUa2RpWm5vMmJHd0tjSHBLZEdVeFkzZEdkV292VDB0dlNUSjJSVEE1TTB4SVRWVnFhamxDYm1NeEsySTBiMlJrU2xvMGRuZHdXRXBtV1hrckwyMUNhWFJXTDA0NU4ydEZXQXBaVUVVM1VqUkhZM0ZRU3pkc1MxQjRTbGxLZUdwb1FrUjZVMlpqUzNCWFRuQm9XakIwZFhwUlYybENWMFExTTFadVluRnZOR0pNTms5NlV6Uk9hVXBRQ2twcVJHdFpWWE5uYldaS1FrWlhjbXRqUzBOVmNYaExhRkF5ZG1NMmRVczViRlpCYUdoWVZYUnRhbTA0TTNWR1IwSmlZeXQ0UkRkRGN6UTNOVXRqZVVNS1REWjRaMUJEY3pRcmRVUkRNRTl1Y205MFMwdzRVMVZEVERsaWJFUklOazVYZUVaUWNVZFhVVzF4VTNKT2FGWTNZa3BwTjA5R2VUaEhWR2xsUldaWGRncFlRa0kzVDJjM1kzQmxiMjF4ZW1sT1ZHSXlWME1yWXpCRmFtVjVha3BQUlhsNlJsWTBTbVF3ZGxselJtUklVU3R4T0ROS0wxSlhTMDlWWVhwV05pOVdDbFJVVUhGR2MxQmpXVGRPY2xWS05qUTRLMUI0UlhObmRWZENWMUI1WjFKRlJUbDJNRWRzUkZkUU1ERmthVFZ3UWxSa2IzQlJObXQyVHpsT05teFZlRE1LUVVkVmN6SXZXa3c0YjI5Q2VHUlVlbGhsVVROTFdUSlJTbVY2YVdkRFJtRnFSbnBPVDB0NFlrdzFXVXd2UmxsNmJVZDZkRzFrWWtOV2JERXZiMlZzVVFwWlYxTlZRamc0YXlzMVdGZFlaRFpZU1dwTFoyMDJNV2xZV0VsMFpUa3ZOMFpHYmxGWk5USklOVFI1YWxFMVkzaEVSRWxpYkRFeE0xSmxRMHBNZGk5MkNrZFNNREp0UjBST1QzaHlNQzlVVXpsb1MwVjRhMU5SUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCTkdaMWJrbzVNV1pCVTNFelUzaDJhR0l5VkdWT2NWTnFhV2c1UVZCS1VHRkZjazkwUXpaeWFDdHlNemc0VjNvMENrZFlNRk5PVnpkMFIzSkpVbGRTYlhreVExb3hSVEJtT1ZWR01XbEZLekZhVkRsWVFVZ3plVEZRVVVSV2RUaEhSVUowYW1jemVub3JTMUZhTTFZeWIxa0tkbWhOU2pCd1IxbzRNRXBrU0hsS2JTOTFhbkJuT0ZOWGQzVkJUM0JvTm5KMlNGaGtWVXhEUTFadWNYbFdVamRsVmpFMVUwbzJRMVkyYkV4emFXdHNSZ3B5U0ZWR1RFbHhSbXBXVVVwME1TOTBSRTVuTm5JNU1YUk1VR28wZFVST2JtcHJjMEYwYURoVGJEQmtVa3hxUkV0Tk16RXliVUpsUzFKUVJqa3JibXBQQ2xWb1ZtMTZVRVZHUW0xNWQzTk5ZWGRLUkdKMlpFTkxlV0p5Y0RkTU5rRXZhamN4TUVSdU4zWjRjV0pPUzJGb2N6WjFXRzh4VXpWd1NWZDZTVE5MUTAwS1FrNXBaekZNWTNCRWFWaHZUMkYxYkVaQlJHWTNUSEkwTVM5NldXSkxTV05hV1ZkT1UxSjJWRkZSTWxOaFptODBiVlp5Y1cxblZHaHVkVzR2UmtOWE1BcHhNMEpHUVV0VldqVnVVVFJuU0VvNWNVaHpORVZ6U210U1pIVjNWbGsxUjFCdlpFb3hZVXQwUjFOWlpVbG9NelV2ZVhsaksxSnBiRTlLWTA1S2NVeEJDamN5Y0hwdVJIQlBNR2RxUjJ4Rk5GbHdWR0p5YlV4RE9EQjNkWFJ5UTJOM1ZVdEhUSEFyT1V0eGNIQmpRbUY2UkZWak1IUkNOa2czVkVOUWFFdDZNRVlLVGtWRk1uYzFSSEk1YVhGSVMyUnhRazl0VVhsM1NGZENaMWhOYzB4SVdUUkhiVWsxVkVWdU16YzBaell2V1VWTVkxVmpkbWRZYUZacmNqbFJSbVZ0ZUFwQ1NsVTFNaloxUm5OR1RUSkVlRFYzYUVobFluRk9ja040Y210T2Jqa3ZjMHR1TVd0T2R6VkRlRkpGYm05NlZHcG1MMVpzSzI1TGQyNTJXVEppT1c0M0NpdFFlVFY1VTFSR1MxVjZiR1kwUTBSd1p6SXhVbU5LU0N0MGFrZFhNSFZETDBKRFZXcEVZV1J4VDNSUVZXdG1lRTB2V2toc1JIWkZObVZqUTBGM1JVRUtRVkZMUTBGblJVRjRjbTF0Y0ZWbWJUUXZMMDFqUTBJd1puRkZWbE5NWnk5dFNtTnBlR2xMTDBGMlRTdHRZVkZOVmxwUU9XVTVSak15TDBwQmMxQjROd3BTV2paU05IVnFWMlpZTlZWT2EwSTBXWFJQT0VSQmIwNUpSV1UwVXk5bkt6WlJXbmszYTIxbE9FOWhTREpqYVhCUFUzRlhhVU5wYXpKWlIydG5ZV1pKQ2pKclRHZzBVamd2Y3paeVpYSjVSMUk0YnpGWFZrZzVhMUp5WW1acFRGZDJOa3A1T1dSc01VODJWVmh2ZFZSQ1pYQldSMGM0V2xNNU1FbHhXRzlxVDNVS1ptcHZTVEJXYkhBdlNVZHhSMm94SzFwTE5FNURkVGh3WjJSbmVrb3ZWSEpTUmpGVE5XMTJRbHBOV2xGS1F5dFFVMFpIVm13d00yeEpaMjUyTDFGc01ncG5ZeTlVUldGSGIwSkVSRXhKYWxobk9EYzNTakZZWmpKaVZrVk9XR3BKUTJGWk9FWnVSSGxuYVRORWFUYzFWMEZ1WjFGelNIUnBVVk5VU3pOUVJtaFdDbTlxZEhwdVJVNHhVamhJT1V0U1JFUkNRekF4Y0ZaS2NEVnNNSEpuUW1WUkswbEJNMjV2UjBkWlZsbFNaVEJ5VDBwa2FuWm5RWGx2V0d0Vkt5OXJlaXNLU1VsTlRtdHhjMGRGVEVGTVIwTlFjMEZMV1ROak9VaFRVVGw1Y0V4amFrVTNObFpPTlhaWVdtVjJVMDB6VFdKcmRIUm1hR3RsWVhkM1JtWlNZVE0yVndwUVIzSnpka1lyVVdSYVRHSTVaV3BLZFdwSmFsSXZUV052VDJabVRVbFBjVFZzTm5aYVNYcE1kMUl6ZWt0eFNGTkxTMmxsV1N0dFNEaEtWbU5YTVN0a0NsWkZkVEJFYkhZNE5sWnRjRWs0YVc5ek5uTjVZMFJrT0VwRGJqRXhUMWxKY0M5T1JYcE5TVmRTUWtkM2VqQnVTVkY1WjB4YU9XVlVaRlJHYWpGUWQzTUtSRXhYWlZsS2NVSjZlSFpPUXlzNFZrMVZRM280VDJoSlQzRlhVSEpHZDJGTFFsZzRUWGt2WkU1c2RtZHNNVW96U1Vwdk5EWlRXaTlpTVZaMk1Fd3ZOZ28zUlcwMUt6UTRlRTVvVmxkME5YSnlOR2hSWkRaRWRVb3lTVFkwT0RZd1ZIY3hLMmM1UkhaaVFrSmxkSGxSU0dsUFFVVkRaMmRGUWtGUWVEUjFXVzVsQ2pCRGFrOTFObGxuUTI1WU5tODJSMGxqVEU4MFdpOXNUa3RDWTBSRFpsTlNZbHBqYUZSTGJsTTVTeXMyYzNSWlFUaGlhV2hLV1VKcmNGbENWV3RtWTNjS1puZDJiMFpvWm5GclpFOVNXbGhHZGxsdE1XZFlhWFZyTmxNelNHOXlWWEZ6U3paVmQwcDNLMmRNZGtod1NFdE5jRlpxZUUxU1FXOXhaekpvVHpsd013bzRhRXRRUzA1MVRtRkVlVFpVVjB3eldFVkVNMkp4VlVsWWRIZG5OWFZZT1RBMlpESnZkelJOWjBWbWRXRndlamwxS3pKcFFtOTZkbWt4VkhsUmFUSjFDbVlyWTJ4U05WVTJMMHRtYTBrNU1tWlBWakZEV0VZeWN6VjVPWGRWYWtkVmJEWTJWWEJFYzBWSE1TOUlibEpTVUVSM05YaElkRzgwTlhGRE1UTk1hRklLTW5NdmJrRnRVbGt6ZEROeWNUVTNOSGx2TkZVd2QyZHRiM0J3ZUVWMmNIaDJZV3BrYVd4NlJqVnJSVFF2V2xGUWFUUXJhV2hXZDJZeGVHdDZURE51VWdwd1pFOUZjbTlRYXpNdll6VnlTMFZEWjJkRlFrRlBWV3RMVFZaTk1XdEtiRlJuVUdod2VYVnJPVUZEVjBaV1IzVmtiVGhHVFZFMllWTkxiMWhTVkZabENuQjFibU40UVdWUGFTOXVjMGhLVW1aNGVGbE1PR3d4UVdsb09YbEVNVE0wT1daUlkyZGxaWFY0Vmk5S1dFZG9RWE5wT0RoSmJ6bDJUREZLU2lzelRGUUtVV1JZWms5NUwzazFVSGd2YXk4NFptNTFhVVpKT1VsM1UwTXJjRTUzVGxKUVRUQkJjWGh0YkROemRHMXFaakZ6VEcxSGVqZDNaVTVyVEdoWmJUWk1ZZ3B4VVVWUmVrZFVNR1ZWUkc1Wk1tMU1VM296ZFhCU01reFBjek53YlVOaEx6VnBVa3B4U1ZGdFZYWk1NM1ZITlZKdGJXaFhUVFZwYlZWSWNISjROazF3Q21OWlUwbHNPUzlDWXpOWU1IbFZVVlZJZFdoWk0wNUJjbEJLUkRKaU1YWXhWM2MxTWs1V00xZG1aSEF6ZUVjeWVEUTRVV0pzUzBkWGFtdFZNR1YwT1VVS2EzY3ZOREYwVGpoakwxWkNhbnB5WmxsVFNGVkZlUzlqYVhSakwwTjBiMmhsUld4bFlqbFFSMUZaWTBOblowVkJSMUJQYUdWeFR5OTBUbXBDY1U5b2RncDNSSE15U1hObVIxRTJlazA0WkVkVVZHSnljVW92WVdKbGVEQTJXVEp3U3pkdVkyOUtOR2hQVnpJemNITXJaU3RvTlVaVlNEZGlNbEl5YmpOcVVVOU5Dbmd2YTA1eGIyeFZheTlUTjA5a2MwSm9TbTB2Vm1WS1ZFNWtNMVJ5TVRGeFFXRlVOR1J4TWpWNFlrZEpjRTB3ZDBOVmNsQkVTV1JuVFVRNVpucFdjMHdLVjNvd1lWZDBZVkpyYjFsb2RFVlFRV2hGWW05TGQwUk5RWHBtZUZremEwOHdTVEJoYTJ0MGRGbEZNM05GWXlzeU1rZ3hZekYzUkhjclVtOTRSMlZ0VEFwblRtaEhVbmxtZFZadE5IaHFUSGxETWt0b2EwcDVlRVpXVjJGNFYwaG1UMk5OWm1OdFZqUTJOR0pYUTFaQ1ZHUnFha3RNUkhSb1owcE1NM2tyV2tocENqZE9TRmN3TURWS1ZHOU9NbGM0TjJSelVpOU9kbFo1ZVZoMFkwOVVjRGR6V1RkUVRFMHJMMXBZYVdVd2QwZGpVa3hvWkd3NFRXTnpaVlozWVd3d1VuVUtZMmhQVFVsUlMwTkJVVVZCY2xSaGFGUXdkMlpLZWlzelRYSXpkMmhrUTBNeGNrdGtWMUZ4WkRSd2VURkZZMjVXU21saVJFaFhNelJzVVRWaFlsTXZNd3BhYVhoNlEydEtRV3c0ZW1WSlJtNDJWRE13UlZkMFFXODVTMmhqUm5OM1NucGlaa1ZxT1ZwblJ6ZzNSV1pXVEdGSVkxWndUemh4ZDIxTlJGQXlRbGwyQ25aVFQyWjBOWEZ4YjBSRFRTOUpWMk1yT1VwYWEweDBibFEzZVhsdGIyWkdia1pLYUVGWVNUSjFXWEYzU2xSRFFtUnhhMk4wV1dGQ1FXaHZNWFZDWTBzS1ZtVk1WVkp0VDFOMFJGWnFVV0Z6VHk4M2MxZFdhWGcwUWpOU1lUSTVTM2R1TlZKa1Mxb3JjMHhxVlVSbFpVRXpUU3RQYm01U1NtMURiamRMT1Rnd1pncDJPRzlWU0hNNWNUaGpOME14VDFoeFQyUmlaMHBWTm1GNk5YSlRRM0ZhY1hGeGQyZHZOVGt5WjNKamNYRjBMMHB0YTNweGJWUTBXVkZXYldzME1tWlFDbkpHVlhKMFlVSkpjRFkzVGpscU9ITkJWSGhhYzNKNlkxWm1TRFppVFdOUmJuZExRMEZSUWk5YVlYTTRUVmswYjJKUlJsTm1WMkpyVFhaclkyVlZLMmtLV21GVU5XTndNbU5QVEVrMVV6bG1WMHhrU3pkS05XaDFkMnBSV0hKbWRubFVZVlpMU21kWE1FMVVNVWhoTHpoUmVuaENWbHBzWlVOemRFUTJaWFZ1ZFFwQmRXcDRaRVZ5YTJORk0xTmlUR0ZvVWpGbFZVbGxOV3RGZVU5VlZGQkJaVU12VXk5bVF6ZHdSWEZrYzFWc1NHSTNhSFIxTUhVMVNuUlNiMVJPSzI5R0NtNHhjallyTnk5NFpWVllaR1JFZGtORWExbzNXQzg1ZDB3d1VHbE1TbkUzV0hSRFVUbG9Oa3BpYTNkRE9IRnNkbVV2T1ZkNFpIRm5VM2d3Y1hKSFRFOEtaV2s1VmtsbUwxVmFOWFV2VlVKaGVVTXJaMFF5UXpoaFpXbHdjRnB4YW01SGVFRnVURzFGZFM5V1MwUTNTR05STDBkUGNHbGFVMEp4V1ZSdk1rWk1RZ3BHVTBsTmNYZzVaM2RPY21OSFZ6TkZNRU5GVWpZMWIxaGpja3BtY25aT2FGWmpXbTVaUkc5YVZrUk9jVWRJUTFoMWQzcFhaVFZMYjAwNGVFa0tMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogemZmZTh6ZHhxM3Q0eDdvem9zdjAwOHppdjljdnQzd2hkODVkYnVjbXltZXl5M2xldXh4bjhicG11Mm96MHV4MWt3amo5MWMweTJmcWg3bXVwY2F3cWVidXdna2Z4dXJyYnFtaWcwZzEzZXZhN2ltNXBuNDJsZnc1cG5neGQ5enYK\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUzFSV1FVeE1Xbll3Umt4aVpEbDZXREZRZVc4clZFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYbE5WRVV4VFdwc1lVZEJPSGxOUkZWNlRVUlplRTVFU1hoTmFsVjVUMVp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSRkNqRm5VVmgwT1V4cU9HVkRVeTlNU1VGRFNFWTJjVEpEUTNScE1YQmliV2hMTlhOUlNrMHlZaTlhYzBOVlkwZ3dOR3g2TmpZMlQyZzJSWE16ZERWYVdsb0tUV0ZrUlZWV1kxRk9VVkV6YmpsSlNIcDVXbU5vVW5aclVEQkRSRWxpYTJKb2IxcFZjMGxWT1dKWlVqUldXVkprYW1JeVRYQlRSVmhKV0ZBdkwwNXhaQW80Y0VaMVVISnFORlZyTlVkSlFrUjZlR2RqTlV4aU5WVTJRVEJKZDBzMlRrNDRiSEZTTUhGVFNISlFaRlpUTVcxRVVYVnZkbEk0WkZwc1kzRXlZbUpUQ25CVGRFOUhUVWRrUzBwalVUTllXSEZ2Y1ZWMGJqQk1iMk5RSzJaSVdrc3ZRV0ZrU1RabWRVZDFWbXBIYm5wM2FXZHpRWFpLTm5KdFFYSnZTelo2VVdJS1RsbHdNVVpuV1dWM1UzbFNTVVpXZERrMGJHOHJWMGR4TkhjMFJYVkJNVTFMVEc1UU5tdHNhSE51Y1d0NFlWSkhUbGh3YTNWbWFtUlVLMDUxZGxCUU5Bb3dNbTF1ZFhkWk9GSk9haTlIUVVkb1ExY3lkVU5zVGpOWE4xZEROV3hOVW1OSVdVd3hSVkZIUlVOd015dDFObGN3V0dKdVZ6bFRkVXRUVlZsUE5FaGtDbFZTU0VkRU5rZENhaTlYVTNwbk4zTk5OVVl5Y0dSYWNFTXhLME55UzFsVmFrTmtSVzlJVW5aeE4yNWlSbElyY1VzMlQwUkhlUzlCZWtwdGFrbDZkV1lLWlM5eFowVlhkVVprVVRCSmJsRjJibmhpVTFwSFVGRlNXR3RDYkVoTmRUZHhha3BMWmpGeVRsQnBWV3B0YW0weVF6RXZNa2xIZFZsSWJqZGtZVEZLVGdwNlZsbDFXRFpqUW5BMk1IZGpSMDVvY3pkdWJqUkRjRzhyVm1FelUwcFlNV3B4VkhKcFozUjVabGhXVVRKTmRIbGhkWE5rVmxCdlYwWk5ObGxCT1VsbkNrMW1aamt3VDJSV2FsZEtNRmN6UjJKNVUxWjRWMGxxV21sbk5EWTFOVVZQYjNSUlFVOVpkWGhoSzFWUE1HdGhkaXMyTVZRekwwNUxlRWhNWW5kRVNtOEtlamRtTWxOYVlqbHpjRFJVUTBaUlRuVnpaVzl5VG1Sb09WRlVlbk5pY1RrM1JVVllWREk0TjBSM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWdGNITkdjMk1yZUVWM1ZGTnhjWEpoQ25jNFNHTnlSM2x2ZVZWbmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGR2FVcFFjVlZLU25SQ1VGaGtNWGs1UTJ4VlRtVlhSRlprY1VFS2RXUlJTbE0xZUVoYWEyTlNlVlI2VUhjMVkzbGFVV1Y2SzNKeGRsTm5WVVZVTkRKUGVtOW9heTlJWTB4RVlWbHlXVTVqYjJaTGFYWkxXRU0yYkN0amRnbzRVSGR2ZERRdk9FRnZaVEoxU1ZwTWNuRldNbFpCTkZwMGVVUkJhR056V205TlJtRnhhaXREY3pKVWNraHFhRTFuU0RsM1ZUSTNkVmQ0VXpWVlRFZzBDa05aTldSdGEwbEhRM2xGS3pSYVYwZFNXRk15YVRWVWNsVkxSMUpRYW5SU2R6ZzViVkZ0YjB4NGJIRlVjM2RYSzBwWmMwRjJWM2czVjNCRGFqWkpZVzBLVFVSSWFtd3phbVJYU1VFMlVVczBMM2RwVWxKT1VuaEZNV0V4VkdWVlVqZ3dTalJTUzNaalduZ3lhRVFyUlV3NFMwUjJNMmhRZEhSdmVYbDNkamxKZWdwQkt6Qk1NVXhOVm0xbVJIRlhRMmcyUXpKUWFsazFhV3hWYXpCTWJYbFVkbUZHVG1KNk5GWjFTbUpyWXpKdFdGTmpZVmt4VFVGYVVYWXdZVEJZUmtVd0NuZFVTMDlpZFdGWGF6VldhbHBPYTNWSWQwZHhZM2RDY1VVMVQxZFFZbHBqTW14S05IQkpRMGxUVDBSeFRreHRjbGhUTWxOeVRYUXpkVTlFWVhacFpuWUtUV016ZUZSVGFtOW5TR1V6VG1zd1kzSlFTRmhuZGpKT1pYWmpTbTlKWjJSTE1FVXdiM2h2UlhrMVkwOXNkV2R3WjJsMmFTOVZNRzVEVmpacFMyRTFVZ3BuUVhVdmNURnFUelpQYUhabFZrRmFZbTlIT0hKdE5VSmlVbXBCYTFsMFltVm1hMlZaZWxneFoxUmtWR2gzYjFCdk1IazVRVFEwTDI1UldHcEZkV3B3Q2pCcFdHMUJlbWx3VVZGdGFFaFROalpIZFdobWRVbEtTbmRRTXpaRGEyOHZXRkp0VDBJMk5IZG9PRUo2WlVWbU5VNXhNRWs0YUhkaWJrTmpjbmQ1VjBVS2FUbHZkbXgzZGs5M01tbFVSMjlwY2pkdGRVY3lOakowY2tGQ1l6bDFRaTkxWlN0Mk5rZENVRWhKVW5oc1kxTlFZMnBvTjNodFpqWlNZVUZaWWxneE5RcGpjWGxaV2tJNFJ6TlZRVTlEZVhSTENpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3BoeHVqd2gtNms2azQ1Y2guaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3QyaGdic28KY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3QyaGdic28KICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RvZTYzYjc0Ynh6X2NsaWFrc3Rlc3QyaGdic28KICBuYW1lOiBjbGlha3N0ZXN0MmhnYnNvCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdDJoZ2JzbwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RvZTYzYjc0Ynh6X2NsaWFrc3Rlc3QyaGdic28KICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJXbVJUUmpnMk9HUk1jemtyZG5kM0wxcFlaMWx1ZWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVVhsTlZFVXhUV3BzWVVaM01IbE9WRUV5VFZSUmVVMVVTVEZOYW14aFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVU01VURaUWJtSk1SME5TU2tsV00zUmhWVVpWYVhNS2FIRjZOMHRHWld4MWJGa3ZVVWRzWkd4dE9XOXJiRGRSVVc4d1NtbFhTVWRJVEZJNFVWSndVazkxWmtKQ09YcDZTRkJuUkVGS1VWUkpja3RDWm1aaWJBcEthazVTT1ZGNGRVbEhXVFY0TXpWalNEZzFWWFZNUkdoTmFpOHdia3BSWVVWRWJXbDNla3BVU0V4Qk9GVTFSbXR3TVVNMldYRk9lVzVYVTAxdlptZDVDbkozUjFaTFJYYzVRbGxNV1RSek0wWnBNMEZoT0hWSGMwUXljVFo2T1hVMlJFaDFURm96UVVnclN6Y3lhVXRIU25CNVRFWnJSVUZ2TW0xRlJEbDNjbVVLWkcxb1JqSjFjVEJTVUZKRGFHbEpPSFpzVG1KT1dVazBOQ3N3Y0ZoM2JVNUZVeXM0UjNwQ1kydzVkbTF3T0dsVFN6QXdVV2xoVm1jMlVEVkxaWFYyWndvNFN6ZG5kVlZMTTFadGMxWnpkVkUxU2tSbU9HZGplRXAzUmpSdWFFRldXV1ZYVWpkVGQyRlpjRlZ0YUM5eWJIbFhTMUV2ZERkc00zTlBSVkI1T1hSd0NsUTVUV0pGY0hselRFNDVTRXRPY1VjdmJERlVWMjl0YXk5R0sxTjNaMVpaUVZOTVNXRlJhWGhuVEdObFZubDJOaXRpYlZKVEt6WkxSblppTWs5d2JWZ0tSWE16WnpFNGFFVjFVRXBhY0VkVFVHZDZXbVl4YWxaTGNqQXZXRUZuTlZRd1VubzBOa05pUWpKR2VrSnVObWhzUTJOc1VsZGFNRXMyVmtwbk55ODJVZ3BwTVZwa1JIUkVlbEJJYmpkRFpraHFUakZ4YVdKUE1HUnNaRlJRU0ZkTFFsZDJOREpHZEV4UFUydFZTa3hLVURsSVJYWk5kV2wyVmxKYVRYSjRTRVJZQ2t4WGFFTXdTME40WkU1dWNTdFFVWEpFTUZCamQySnRPV2hqWVhkMFNHNTZTRFkxWTBkb05rZG1SMll3UmpkMFFVdFllbVYzUkU1MGFETjJja3B6Y20wS1RGcEpaRGxHT0RGcFQzQTNhR2haU201VVpsQjFSbGhXZG1sRk0ySjJjMUZGVkdkRmVGZG9NbVJQTjFCMVlsZEdZVFZwVjBzNVowTXZLMkUxUVZWa1pBcG1iRkpuTjFwdU9GRlRVM0I2VFhJeFNYSTBhMHBSU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbE5oYlhkWGVIbzNSVlFLUWs1TGNYRjBja1IzWkhsellrdHFTbE5FUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZDV210UFlUZ3JRMWg2VjNWc1ZXeDRWMHd4ZFFwbFRFSkRSRVFyT0hsMGMybGFhbHBNZEdaR1RHc3dOVzh6YW5wemVIQXphRkV4V2xsMlZHeG5RV3hoUzFGWVFVTktjM2gxWkRock1ERnFXblJUYUhaUENuYzRUR2RQWm1SU2FVZGhVbmx0U0drMU5VOW9XbUpTWWpkQ2VuQlBRMUZhU21aUlRFMTBOUzlRYm1rek9FSnBZMUJvVnpWYVVsSkpkMnRtZFRSUmFVb0tWV3BXTWpSaVp6TkJWWFEwUVVKUlRXcHJaREZTZDBrcmFDdGhTRUpaVlcxamNsTk9WV3BtYmtsbFlrRXpTR2xTWTBWSWMyRmlNMGRLUVZVNWJtdFNXUXBSYUdSMk9XZFZPSHBVZVRJMFJVVTFUbXgyZVZsWmQxUlNabVZuYUNzNFpUZEVSbGhQWkN0RGFrNXRaRkIzZEZWQmFsWllhMWhrYURsSGRVeFJOMloxQ21kaGJWaHpTRWhuYzFSSEsxQnVXVmRDYjNSVFNEaGhhVnBqTVVoblVtaHJValZRWlV0U1RqaFlhelpOTHpac2NFODNVbGsxT0Vob1N6WmxZbFZCYWtVS2NEZzFhRlJFTW1WWGFXMXVjbFkxUW1STWFtcE9iRUl4YkRKUU16Tk1SU3RFZG5sSlZ6azFPRTg1YkRKWGJGSmFSMFp2S3pCbGEzVXdXVWRIUVROWWNncHNaVzVrUWpoamNraDNRVnBzVUhoV1dGb3pSVXhVVmxaUU9VZFliWFkyZVRJNVdXRXlVa1YwUXpsaFdYVTBVMnhJUW1Nek9GZFRPR2RUV1RaM2VUSXZDazFRZERoSGFuRjNSaXRRT0VVMU9IRXhhRlZNWkdoSkx5dG5ObWRYVjA1WU5WWnVZMWhMUzNCWmVVdHRMMGh6TjJJelMwTTJZMEVyZGtOR01qQk5UVmdLZEVNMGQyMVlLMlpTYlhFclZtWlJabEJuTUVkVk1uQTJlRlJFVFVWVmRFSnZibmgyUTBOV1VXVjBNVXhNYkcxcUt6Tkhaa2hGZDI4ME5tWktjVkJQUWdwcVZUVlRNek5YUWxSaGRYTlpVa2cyUjNSNFpsSkxXSGxNTjJOVFMyd3JMMnhhWlVWNGRWVkVhRU5SWXpnemVuaGtTM3BFY25FeU9WZGxVVWw1T0N0bUNuVXdTRUZCUjIxbUwwTlhiV2xrVkhGU1VTOVZPVVpKUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZGxRcmFqVXllWGhuYTFOVFJtUTNWMnhDVmtseVNXRnpLM2xvV0hCaWNGZFFNRUp3V0ZwYWRtRktTbVV3UlV0T0NrTlpiR2xDYUhrd1prVkZZVlZVY201M1VXWmpPSGg2TkVGM1ExVkZlVXQ1WjFnek1qVlRXWHBWWmxWTlltbENiVTlqWkN0WVFpOVBWa3hwZHpSVVNTOEtPVXA1VlVkb1FUVnZjMDE1VlhoNWQxQkdUMUphUzJSUmRXMUxhbU53TVd0cVMwZzBUWEU0UW14VGFFMVFVVmRETWs5TVRuaFpkSGRIZGt4b2NrRTVjUXAxY3k5aWRXZDROMmt5WkhkQ0wybDFPVzlwYUdsaFkybDRXa0pCUzA1d2FFRXZZMHN6YmxwdlVtUnljWFJGVkRCUmIxbHBVRXcxVkZkNlYwTlBUMUIwQ2t0V09FcHFVa1YyZGtKemQxaEtabUkxY1daSmEybDBUa1ZKYld4WlQyb3JVMjV5Y2pSUVEzVTBUR3hEZERGYWNrWmlUR3RQVTFFekwwbElUVk5qUW1VS1NqUlJSbGRJYkd0bE1ITkhiVXRXU205bU5qVmpiR2xyVURkbE5XUTNSR2hFT0haaVlWVXZWRWQ0UzJOeVEzcG1VbmxxWVdoMk5XUlZNWEZLY0ZCNFpncHJjMGxHVjBGRmFYbEhhMGx6V1VNelNHeGpjaXQyYlRWclZYWjFhV2hpTWpscWNWcHNlRXhPTkU1bVNWSk1hbmxYWVZKcmFqUk5NbGc1V1RGVGNUbFFDakYzU1U5Vk9VVmpLMDluYlhka2FHTjNXaXR2V2xGdVNsVldiV1JEZFd4VFdVOHZLMnRaZEZkWVVUZFJPSHA0TlN0M2JuZzBlbVJoYjIxNmRFaGFXRlVLZW5neGFXZFdjaXRPYUdKVGVtdHdSa05UZVZRdlVuaE1la3h2Y2pGVlYxUkxPRkozTVhreGIxRjBRMmR6V0ZSYU5uWnFNRXQzT1VRelRVYzFkbGxZUndwelRGSTFPSGdyZFZoQ2IyVm9ibmh1T1VKbE4xRkRiRGd6YzBGNllsbGtOelo1WWtzMWFUSlRTR1pTWms1WmFuRmxORmxYUTFvd00zbzNhRll4WWpSb0NrNHlOemRGUWtVMFFrMVdiMlJ1VkhWNk4yMHhhRmQxV1d4cGRsbEJkaTl0ZFZGR1NGaFlOVlZaVHpKYUwwVkZhM0ZqZWtzNVUwc3JTa05WUTBGM1JVRUtRVkZMUTBGblFWQk1XRTUyY3k4dmIyVnhaR054WVhBM05XUnJWMUJTWWxOaVkwaGFkMHd2TmtGeGFIZHZVV1lyVlhZM1dIQlFOalp5VWtnelpUUllaUXBGVkhGVVIxTTFUa0pPZUhKbmRqbEJMMjFNYUhobU5tRTVRV1JDUTFoa1JVMHljbnA1YUZadmRrNDRaR1JGSzFBMkswRkVjalIzUW1scE1ESnBaV0ZXQ21KNVNYbEhSRXh4U1RadFpHTlBNMEZvVUdsdE1FbHBiak55VjFKSGQyWTVaRzFZYlROMlNraG5jV3RQUm5OcEt6Ukpka2w1VGs4clpEY3dabWh5UkVJS01WZElaWGRqYzBkaGNEZEtPREpYVDJkeGMybHROa1E0VDBkMlpYVTFRbEpUWlZaWk16ZzNXRXAyY2tnNVJuVnlSRkJsVFhGSWNqQjJia281Y0dOek1ncFJkR1l5UmxKbVJuWTVPRTlIWm5KelVVb3pTM29yVkZaQ1JtRXlhVFZpTmpOMVJFTTBNazVxVFdneWNtdzBVVVk1UlV3eVFub3JSakk0YVhnNU9IQm1DazlRTUcxalRuTmxOblJpYTI1TlpGQmtUMU5wTDAxVFVVSTRSbTgxVjFacmQybG9abE5CZWtwcmQwSmlNMFJXTVdKQ2NXOUZSMFZCVDNSTmJXazBUbk1LZDJGUWRITkdVVlV5TWpWSGRVTnFXbVIxV0ZoSVlqSlhibmR3WVZsM2VHaGtUbEJ0WkRGcWQzWkxaMWRtV0U5eWFVRkJWMFF6T1M5S2JXcDBSMk0zZUFwTlVrMWtkMVJ6U1ZGaWVYRXJURkJCYlRORE5rSk1URTVDUTNrdmEwOUpPREZFYkdoaE1FWTBNelY0UzFCV1dGZG5jbXh3TWpGbFZGY3dMMmhaUVZreENsVmlZa3RwUmpoWlJrVkpTblZwVkRkR1FUWm1RMWd3Vmt0YVEyMHpkR0V2UzJNeFJYZDVMMGxxWTNWaWJFc3pjWGRWTlROMFFWUTVOV2hNTDI5b1pIRUtRekp0WTJwMGFtbDFielUxVDNsQ1F6bFVUekZ1UTFoQ01GUmpkMUV3TUZRNVlXb3hWVVI0WTBndllqVXlSR2d3Yld4bFVrSkJMMnhITUdoclFXNXZUd281YkU0d1RFeHBjR3h0ZVZSVFRtWk5TMFIxZDNablRqTlhORXhaUWxKelVFRTNRMHc1Y0VNd1pXNHhhbEJKTVhaWlVVdERRVkZGUVhwdUt6WkZObTA0Q25ObGRrSmFiMnBCUmxnNWFraG9PR1JaTlRkbE1HZEpORWt2VERSRldreFROMmxoUzNOalpYZFliVlFyVDJsdmFqQnhUMUkyTHpaeVMxRm9hbFJrS3pVS1RsUkxlallyVW5aeFQwZFRSbWxQTlZWTlduQXJURU54UTBaTVNXZFhiV015UmtkV2RuWnRPSFp6S3pCVlVHcG1PV3NyYmpFeU4yNTNOMDlNZVRkdlJ3cEpORlpQV1ZvemRrdGhlRFprT1dWbGJpczJlRk5CTDFSTFZYTnZTakp5UWpsU1EyZG9UbkV3WTB0dFNuZHNWbXBRYVhoNVZEQjZkM2g2TjAwMlNEVm9Dak52UldaVWRURm5RbU13V0ZCbFExSXpTemhWYzAxMFdGQkRNMmd2VTNNeldrNVhZbUpQY1ZwalVXVlhTbXczVVZaMGEzRTBTbTFJYUhJeFVsaFplRWNLWm5SU2JrWm1OWEJXVEZscmNFUjNUMnN5TVVKNllYSkZkVEpZUVdKeFptOXRkbU4xUjJWalJERXhSbGd3YW5aQlExcDJha2s0TDFwaVVFdGpkemhNVGdwWVlqSnZLMlY2WjBvMFVHNVZkMHREUVZGRlFUWndNVTkwUldGcU0yZ3dhWHBHYzNaSVVWRk1Zak5VV1RSeWRpOVdLMHBVZDB0V05XdzNaMnRuU1RNNENtWkdUblZvT1RWMVpFZEljVXgzTkRKSGJHYzBlbEE1VlV4VmVuRkRjR2wwYjFocFVsaEdOUzlSU0c5WGNHeHVNRmRPYmt0WlltMTBaVzFoZWtGeWRXTUtVVkpPV1RkeVEzWlpkbTFtSzBSemFtaFVRVVZUZWk4eFREQXpOMU5sYTNOaFVGRkRXa016UjBsTWNEaEJSbTFGU3paeWJrWnVSelF2YzNKUUsyeGFTZ3BWWlZoT1Ztd3dTMEl4WkVVd2RucFBURTFYVmxsSE4zRlpjV2h5Ym5KTFpsaExlRlI1YTFOSmVFaG9PQ3RsYTJ4NlVscGxSVE50YlhsUU9XcDFTamhuQ25nMVkzZE5SMWhMWld4V2VtZFRSVmw0YkdFd1VVNDVZa1ZXVERjeGRsaHhhVTlFT0hFeE1sWTFja3N2VFc1UFkxQjBjVzVwZFdodlMzWTFhU3Q2TTFvS2VEQkJlbGx4VTBWSFNYWmFVMHhHZHk5ME5sbzFRV2hXT1VKallWSTNVbXhOY1VadlVsbzBkbkIzUzBOQlVVSm1NSGN5TmxOcE0zbE5iMFJSTXl0NWFncEVWRmxzY1VSTGRra3JOSEZpYWxVelIxZDZZMWQwU0daRFlYVmhla0oxWmpocFZ6TlJRVGRZYkVkblIzQXljM1EwTWt0U2NFcDNRbVk0U0ZkWFZ6aHVDbGt5VjNwUFIybHhabmxvTVRaNVZUaE1ORFI2TXpWeFZrWXlZbmc1Um05UFFXSjVabEp3TlVoWmNtUXdWbFppWm1wa1dERmxRMGRhU1dsak5WUldla3NLWW1WME1qWlhkMGR6TTBVMVF6TTNiSHB4WVZob1FXSXhabVl5TDB0UE5VdDVZVWhRZFVkblVsWm1Za1p5WlV0a01IaHhjbGRPY0RWemJHMW5LM0UxZHdwbmNtVnBWWGt2WTNoTVNrcFRSa3d5TjJsUVRXODVNVlYzV0hOaGF6bE5XV3BJYVRBeldrczBaWEJhV0VjeVpUQnpkVEp5UWpSckwwZGliWE5xZURZMUNqTk1kM05MYlVwd1RESTBNWHB0VkRCM1ZXTklSVzkyZVZCWWJqZE5lVk53UzIxdmFXVlBLMjlvWkhCc2NDOUplR2xJVVU5ek4zTjRTVTh6YXpkSVRXOEtXWGxHV2tGdlNVSkJSV3BwTldacFRHMVplaTlqUkdkalpUazFMM2w1TW5SR01WRmFTVFZMYURsWVREYzVXRW93SzNGSlZtVnJUVVpwUjJ0a1lWTk5kUW8yUW05SFUwUnBWeTg0TlhZMVF6ZFBibXRpT0dRM1UyRlRSVFY0TjFGaFV6VXdXakl5TjNCbGNuTnFPV0pwSzBGcFJYaHdSRWh2VEVWTE0xZHdhVmxTQ21SMWEyWk9hMGhEVlZKTmRtOHpVVEoyWTB0UlpHZFBSa04wYTJ0bU1VUmlibTV3WkZaUWNHSTVZalkzVW1OWGFVeEZjVkpWSzFoc2FHOHdNa05ySzA0S2FGRjNia1JqV2tzck9GVm9jMEk1UjFFeWFtbENWRUU1VDFOeE1XSXJabHB3Y201akwwdHNhVTFaWmt4WE1ERkhVMmw1Y0VGMk15dHpha2hYTjJKb2FncHZObUZUUzJGbk1HUXpkRkEyU0V4U1dGQjJSRWRyUnpjME9FMDFTamhEY2prd2IzUk5TRlV5WVV0YU1qTlRWeXROWmtoeWJsTlRVbWhYVlRONGRrZzFDbEZHSzJSQlNWZDBhMmhIVG5CWFdsaGFkM0YyZFVkRGNWWkZTMDFwYWtWRFoyZEZRa0ZMY0dsRFJETjRTVk5PT0RWNU0yNHdZVzk0TmxRMWQxbE1TRTRLYlhCRWRWRldjRVZLUmpKM1QwSnJZa04zWVVsaVR6VlhiWEJZVFRsbWVuQlhSVmRGVFdwYU5GZFpUemhMZFdKeFZXSnpNRU5tUW5KdlpGRllVbTl6Y3dwMmEyaEtSRWRFVEV4b01YWmFTa2h3Y2lzMGNHTkVXVTF2TjFGcGVWQlRhbHBWWlZoRlpuUktXR1YyYWpoS1dsTjFXWEY1VDBobWRsTnhMeXRQZVc5VkNrMUhjVkpTYTJoUlJ6TkVObWN3YlhadU5qZENjVFozY3pWTmNYUk1WRmxLVTBGeFVucHllblEwVjFkbFkwdGpNeXRGZGtocFJHUkdVRTVNY1hKelNVWUtXR1JvZHpGek9VSjBhVFo2UzBsMk0yMVBWa0poTWxkdFdqSTRSMkZDU0d0ME0wRnFNV05ZZVRKWGVWbHhhakJtYlc0Mk1qbGFVVmsxYVdOelF6UktRUXBJVDBZMWRGaFZjMU5TT1VobGVpdHRNMjFvTDFWRU5Xc3dXWHB3VVhrNWIxTTRjVTlqWVhFNVRHOXBkMFI0VG04MlZFVjBjRWRuYkZCclp6MEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogc3NyN2ZxbWN3ajJubXlzZnc0cmJqM3kxY2JsZng0eXAzbG5yc2oyeW1lYm1wMnFxcWxiZWNoYWE0dTRjaXc4N3FlZ2FyMHJjbWxuN201MTZ2dDVvbDZzYmptdWluOHhpZ3l1N2k2Mm5jMnN1ZndzOXBsNTRnaGl2cjl2c3cwY3IK\"\ + \n }\n ]\n }" headers: cache-control: - no-cache @@ -1155,7 +1155,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:01 GMT + - Wed, 14 Jun 2023 21:28:19 GMT expires: - '-1' pragma: @@ -1191,15 +1191,15 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUm1kWlZGTXhjRlZJZDBOclVUTk1iVUZzV1ZjemFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCZWsxVVZYaE5SRUY2VGtSYVlVZEJPSGxOUkZWNlRVUk5lRTVVUlhkTlZFMHdUbXh2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSTkNqUlFiWFZMUW5ObU5tSnJiRmhWY0hCWGRVUkpSbTVpUkV0eVJWUlRMMlpLUVdOV2VYaHVaa0ZNV2prelJGSldNMmcxUkRKeFFYSkdTRXRJTmxCclJVZ0tTa2hrUlZremRtdHFkbkJ4Y1c5dmIwY3dPVTV1UWxKbGVrTmpWbXMzWkVObVVVWnFZMHM1VkZvelYxSlpkV1ozYkZKVFQxaEdXVmg2ZDNsM04zVjBWQXB1UVZwQlNDOW9ORWQwTkRCaFF5OXdWVWhGUm14Q1RYTTFOR2RtU1RWd1VUVkhVelZIT0haUmVHdHdhMDE2VGxwdVVVODJkMnhWVjJ4T1JFODBLMHhKQ2tsMmMxRkthbU14YmtkRE1ETmxLMW8wTVVVM2JGTjNWRlZVU201VmVFNHdZVEZtZDBzNFRuSkNMMUJ6Vkc5M1JqQXlUa2xXVUZZckwxZGtVVzVUU1VrS0swNU1VM3BsUVdObldHMHpXRkl2YW1OTWJEY3pkbEp2U1dzMVVteFVjbGxUT0VKUFIzbE5RV1JzTURoMU1XMTFZbmR2YmxST2F6a3hOM3BvV1VJdlVRcEZRbVpzWWpoWVdUTXpkVEZXTXpsbVEzZFZiVzlPWkhSWVZqazBTR3B1U21KTVZIaHZRVXRDWm1GWFJUQkJiRmRLV1VwTmN6Vm9WbFIxYURJMU4wcFFDa1ZRVVZBcmEyUk5kVlZHYldSWWRYcDZhVTFQY2pobVNFY3pjbGR3Tm01dVRVVmFXRUZYVlRRM05taEdSVUpvWWtWRVJHUjRVMVYxWmtKM04xVkhXSGdLYUdOU2FVZEtiSFZLUlROUVVHMUdjVU13TW1wd1RtVjNVV1o1VDBSTlprVnlaWEZ2U2xGbFVtUTJjbm8wVDFSWFMxQXZZelZwZUhKUE1FMVlZVmRQZFFwa1dYQlFVVzQxUlRKdlVqZHFlRWxYZVhRdmJrWnJhakExT1VzeGVUSjBkblJpU0VjMU1VeGhjbmRqUTJGVldscHJWRVZpVW1STU1GbENOWEkxZGpoc0NqaGxOM2RYT0hSRlltczRSRzVHTldSSWRuY3lZelJLYVcweVVsWk1USHBYTTFWSlJYZzJXRzVYV21Ob2JuUkJPVlowYUdveVZTdExNV1pSVURsWFNtc0thVW8wVVZCeVEzSjJTVUpIUzJ3M1VrTm9UMmRGV2xjNFNGaFlja0pLUkRaNlpFVk5RMlV4ZWk5M1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWQ2RFWkhNVGhQYUZjcmJsVTFha3hzQ20xbmJtbEVVamxTV0RScmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGTU1FdFJjVkY0TWpFd1lrRTBVM1Y0VFhWUFV6RnpRMDlsUzFZS05WaE5URlZsV0ZFeFlVOVpiMGxZYTJ4NlNXWk1lVTV4ZGxCWlNqZGhORWxzUlZkSlUwZE1jMlp2YzJ0bGVqbFlZM05ZYW5OeE1qUldWRnBLTTFwNk53cHVORlJwWlU1U01FZFJOMk5CZVdOQ1ozZHlNVk5CV25oWlZISlpNRWN2WTJWcUwwTXdNbFZFZUhWb2VuRktNbll6ZGxWTFJUUlJkRFpzYkZSall6ZFBDa2xaYlZoeVVFNWtTazlMUmpWWVJuRjJUbkFyZW14TmNsZGxRekp3TWpaTGVHVnVMMDUzYWtWVWNHbGxORmRYVERkRWNISlljRzh6YVd0dU1XcHZWMUVLTUhOelNGWkVUbVkwVmtKYVpXWTVUbE52VGtWT1FsRm1jMEZvWlhCNGIya3hLMHN5T0hGVFRFMW5TVmRaYmtkdWNVWkRUMDlDZW1wd1RFMUJUelp5VVFwNmRsUjZSbXh4WTNoNmMyZzVXVWwxWkZKQ1JVdFpkVEZDV21NMk5VbG5hRlpCUjJkWWRFOVROMEl5VFRFeE4zTlpiVU5LYUVwa1VFeFhaVTloZG1KWkNsTlpSVEYwZUVkRVVpdEZVMnhyVGs5V1NqVmphM29yYmpoeVVrSnVaVkJEYUd4VE4yTldWbEZuUkZZMFNVOHJjSGszZURSdlZUWktLM2RoZG5waGFIa0tSa1Z2TWpOTU1FNHZlVFpaVjFOR1lVWTNlakpQYWk5U09XNDBOMkZJZGpVM2JWbEZkMHBPVUdrd05IRTVTU3QxU2pkVVJHbGpPVlJwUlhCMlZGZFdVUXBCYjFKVVZsSXliSE5WZWxwa1FrTTVabWRaTlhodVNsUldTa3BuYjFkUUwwNWxibEp2TWxGME1EVnRRMUZZYlV4TFpYTk1ibUZMWm5GTFoycEtiRXRSQ21OSGVETnpjMVYzYW5GRUwzZDNRa1ZFT1hkUGFHdzNiMll3U21kSFQyOW9ZVTlGTjNka01FTlVVV1ZNWVdodWFtTm5OV1o1TjBWS2FWVXdORFJhVkhRS09IQTJPRk4zVDJObWVGWnhVekJ0YjNremQyRmtRalI2YlV4a1dHMXhXRmx0UzJkWVdYRllkM2xFWmxnMGFFRlVaa2htUmtKdE4wRnhZVFJ3ZFZodmRBcENVMUZxVWtneVl5OHdMeXRXV1Zvd0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3VlYWZrYnAtenh5NXlwdjUuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3Q3d2plY24KY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3Q3d2plY24KICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3R4MjRyNGV6c21nX2NsaWFrc3Rlc3Q3d2plY24KICBuYW1lOiBjbGlha3N0ZXN0N3dqZWNuCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdDd3amVjbgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3R4MjRyNGV6c21nX2NsaWFrc3Rlc3Q3d2plY24KICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJTQzluWlRaWU5uSTFkV2xMZFdSWlJWTllOVXg0UkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJlazFVVlhoTlJFRjZUa1JhWVVaM01IbE9WRUY2VFZSVmVFMUVSWHBPUkZwaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJvS3paamJqTldPRUpMY21STVJ5dEdkbHBPTkRJS2NFdFBTMGd3UVRock9XOVRjell3VEhGMVNEWjJabnA0WWxCbldtWlNTVEZpZFRCaGMyaEdXa2RpVEZsS2JsVlVVaTh4VVZoWFNWUTNWbXhRTVdOQlpncG1URlU1UVU1WE4zZFpVVWN5VDBSbVVGQTBjRUp1WkZoaGFHa3JSWGR1VTJ0YWJucFJiREJtU1cxaUt6WlBiVVI0U21KRE5FRTJiVWh4ZFRoa1pERlJDbk5KU2xkbGNrcFdTSFExV0Zoc1NXNXZTbGh4VlhWNVMxTlZWM05rVVZWemFXOVhUbFpCYlROWUt6Qk5Na1J4ZGpOWE1ITXJVR2swVFRKbFQxTjNReklLU0hoTFdGSXhSWFZOVFc5NlpsaGhXVVkwY0VVNFdETTJaVTAxVTBaWFlrMDRVVlZIWWt4RGQzaHlRV3RPZFRrd1NYSktkWFZ1YzNadlJDdFFkbGhSVHdwbWRTOUhjSE13Y0hGSGVuRTFaV3BXVEcxcmFHSk5hbU52U1hkRk1rdEVWWFI1YTA5S1pXYzFjVFpWVlVGT0wzTjFkbXBZTDA1b2MyOW9lR3hvV1RGS0NrYzVUa0pFV2twd0sycHBXbGQxY1dGQ1QwZGxObVk0VlVwaVUzSmpSVlZCY0ZKdWJXUkVhVUZqYmpKdlpYcG5VM2R0VWtZeU4wSldhbXRaSzJnd2JsWUtiM0V3V2twb05HbElabTR2VEVwNk5VZExWVFJzZHpCdGIzTkVkbUZ1VDJOUGF6ZFRRMDFoVlZSb2FXeE9kWFZaYzB4NlZFTTJNbk5LZWtKUmIxbDFiZ28zTUhGeGJXeDNSbkpOVGxKNlV6QkliMlowVFVrclJYSlFVVlV3VVZSaVJHdFBkakpMYjJOd01tOUZObHBFVEVGa1dVZENZM2wzYzJScVoyRlphbXhOQ2xObVpuWnBSSEk1WjFGMGVGSjVLMEpsUmxkVGRqRkJWalppUlVWc1ZHNWljVFJYZDFWNldWQklia05GWkRWMWJ6SnpURWQxVVRKbU15dDNjV1pYVVRNS1JHdE1Sa1ZUWldwT1QwNHZPVmRZTm1OeVEyVTVhbHAyTW1aMk5DOU1ia3BLVFZWd1ZFOVdMMmRKVDIxRVlsWkdkMnRtTmpKTldtSlRORXc0UlVwVFRRcE9jREp2TmpBNVUxSXZSWG81YTJWVlR6aFVjRFYzU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEZITUZWaVdIYzJSbUlLTm1SVWJVMTFWMkZEWlVsT1NERkdabWxVUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZHTDNVdk1YQXlhMEpaUkhKTlkwUkRSVU5oTlFvcmR5c3pkbTlyVFZoaVpraEdPVVYxVG0xR1RWcGthWEJpY2pjclMweG5WM2d5VXpaWmEzVjJSbTVUT0hSS1FsaFRjRlpXTWk5MmREZEhjbFYxZEZaTENrZzJia2RQVkVScVoxVmlWazlQU21GNVpYbFBaVU16WXpacllYTktZMlpSZUV3cmEyMXhXRXBvYjBoTlZVaEdTall2YzFnd1VGRmFUa2RpWm5vMmJHd0tjSHBLZEdVeFkzZEdkV292VDB0dlNUSjJSVEE1TTB4SVRWVnFhamxDYm1NeEsySTBiMlJrU2xvMGRuZHdXRXBtV1hrckwyMUNhWFJXTDA0NU4ydEZXQXBaVUVVM1VqUkhZM0ZRU3pkc1MxQjRTbGxLZUdwb1FrUjZVMlpqUzNCWFRuQm9XakIwZFhwUlYybENWMFExTTFadVluRnZOR0pNTms5NlV6Uk9hVXBRQ2twcVJHdFpWWE5uYldaS1FrWlhjbXRqUzBOVmNYaExhRkF5ZG1NMmRVczViRlpCYUdoWVZYUnRhbTA0TTNWR1IwSmlZeXQ0UkRkRGN6UTNOVXRqZVVNS1REWjRaMUJEY3pRcmRVUkRNRTl1Y205MFMwdzRVMVZEVERsaWJFUklOazVYZUVaUWNVZFhVVzF4VTNKT2FGWTNZa3BwTjA5R2VUaEhWR2xsUldaWGRncFlRa0kzVDJjM1kzQmxiMjF4ZW1sT1ZHSXlWME1yWXpCRmFtVjVha3BQUlhsNlJsWTBTbVF3ZGxselJtUklVU3R4T0ROS0wxSlhTMDlWWVhwV05pOVdDbFJVVUhGR2MxQmpXVGRPY2xWS05qUTRLMUI0UlhObmRWZENWMUI1WjFKRlJUbDJNRWRzUkZkUU1ERmthVFZ3UWxSa2IzQlJObXQyVHpsT05teFZlRE1LUVVkVmN6SXZXa3c0YjI5Q2VHUlVlbGhsVVROTFdUSlJTbVY2YVdkRFJtRnFSbnBPVDB0NFlrdzFXVXd2UmxsNmJVZDZkRzFrWWtOV2JERXZiMlZzVVFwWlYxTlZRamc0YXlzMVdGZFlaRFpZU1dwTFoyMDJNV2xZV0VsMFpUa3ZOMFpHYmxGWk5USklOVFI1YWxFMVkzaEVSRWxpYkRFeE0xSmxRMHBNZGk5MkNrZFNNREp0UjBST1QzaHlNQzlVVXpsb1MwVjRhMU5SUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCTkdaMWJrbzVNV1pCVTNFelUzaDJhR0l5VkdWT2NWTnFhV2c1UVZCS1VHRkZjazkwUXpaeWFDdHlNemc0VjNvMENrZFlNRk5PVnpkMFIzSkpVbGRTYlhreVExb3hSVEJtT1ZWR01XbEZLekZhVkRsWVFVZ3plVEZRVVVSV2RUaEhSVUowYW1jemVub3JTMUZhTTFZeWIxa0tkbWhOU2pCd1IxbzRNRXBrU0hsS2JTOTFhbkJuT0ZOWGQzVkJUM0JvTm5KMlNGaGtWVXhEUTFadWNYbFdVamRsVmpFMVUwbzJRMVkyYkV4emFXdHNSZ3B5U0ZWR1RFbHhSbXBXVVVwME1TOTBSRTVuTm5JNU1YUk1VR28wZFVST2JtcHJjMEYwYURoVGJEQmtVa3hxUkV0Tk16RXliVUpsUzFKUVJqa3JibXBQQ2xWb1ZtMTZVRVZHUW0xNWQzTk5ZWGRLUkdKMlpFTkxlV0p5Y0RkTU5rRXZhamN4TUVSdU4zWjRjV0pPUzJGb2N6WjFXRzh4VXpWd1NWZDZTVE5MUTAwS1FrNXBaekZNWTNCRWFWaHZUMkYxYkVaQlJHWTNUSEkwTVM5NldXSkxTV05hV1ZkT1UxSjJWRkZSTWxOaFptODBiVlp5Y1cxblZHaHVkVzR2UmtOWE1BcHhNMEpHUVV0VldqVnVVVFJuU0VvNWNVaHpORVZ6U210U1pIVjNWbGsxUjFCdlpFb3hZVXQwUjFOWlpVbG9NelV2ZVhsaksxSnBiRTlLWTA1S2NVeEJDamN5Y0hwdVJIQlBNR2RxUjJ4Rk5GbHdWR0p5YlV4RE9EQjNkWFJ5UTJOM1ZVdEhUSEFyT1V0eGNIQmpRbUY2UkZWak1IUkNOa2czVkVOUWFFdDZNRVlLVGtWRk1uYzFSSEk1YVhGSVMyUnhRazl0VVhsM1NGZENaMWhOYzB4SVdUUkhiVWsxVkVWdU16YzBaell2V1VWTVkxVmpkbWRZYUZacmNqbFJSbVZ0ZUFwQ1NsVTFNaloxUm5OR1RUSkVlRFYzYUVobFluRk9ja040Y210T2Jqa3ZjMHR1TVd0T2R6VkRlRkpGYm05NlZHcG1MMVpzSzI1TGQyNTJXVEppT1c0M0NpdFFlVFY1VTFSR1MxVjZiR1kwUTBSd1p6SXhVbU5LU0N0MGFrZFhNSFZETDBKRFZXcEVZV1J4VDNSUVZXdG1lRTB2V2toc1JIWkZObVZqUTBGM1JVRUtRVkZMUTBGblJVRjRjbTF0Y0ZWbWJUUXZMMDFqUTBJd1puRkZWbE5NWnk5dFNtTnBlR2xMTDBGMlRTdHRZVkZOVmxwUU9XVTVSak15TDBwQmMxQjROd3BTV2paU05IVnFWMlpZTlZWT2EwSTBXWFJQT0VSQmIwNUpSV1UwVXk5bkt6WlJXbmszYTIxbE9FOWhTREpqYVhCUFUzRlhhVU5wYXpKWlIydG5ZV1pKQ2pKclRHZzBVamd2Y3paeVpYSjVSMUk0YnpGWFZrZzVhMUp5WW1acFRGZDJOa3A1T1dSc01VODJWVmh2ZFZSQ1pYQldSMGM0V2xNNU1FbHhXRzlxVDNVS1ptcHZTVEJXYkhBdlNVZHhSMm94SzFwTE5FNURkVGh3WjJSbmVrb3ZWSEpTUmpGVE5XMTJRbHBOV2xGS1F5dFFVMFpIVm13d00yeEpaMjUyTDFGc01ncG5ZeTlVUldGSGIwSkVSRXhKYWxobk9EYzNTakZZWmpKaVZrVk9XR3BKUTJGWk9FWnVSSGxuYVRORWFUYzFWMEZ1WjFGelNIUnBVVk5VU3pOUVJtaFdDbTlxZEhwdVJVNHhVamhJT1V0U1JFUkNRekF4Y0ZaS2NEVnNNSEpuUW1WUkswbEJNMjV2UjBkWlZsbFNaVEJ5VDBwa2FuWm5RWGx2V0d0Vkt5OXJlaXNLU1VsTlRtdHhjMGRGVEVGTVIwTlFjMEZMV1ROak9VaFRVVGw1Y0V4amFrVTNObFpPTlhaWVdtVjJVMDB6VFdKcmRIUm1hR3RsWVhkM1JtWlNZVE0yVndwUVIzSnpka1lyVVdSYVRHSTVaV3BLZFdwSmFsSXZUV052VDJabVRVbFBjVFZzTm5aYVNYcE1kMUl6ZWt0eFNGTkxTMmxsV1N0dFNEaEtWbU5YTVN0a0NsWkZkVEJFYkhZNE5sWnRjRWs0YVc5ek5uTjVZMFJrT0VwRGJqRXhUMWxKY0M5T1JYcE5TVmRTUWtkM2VqQnVTVkY1WjB4YU9XVlVaRlJHYWpGUWQzTUtSRXhYWlZsS2NVSjZlSFpPUXlzNFZrMVZRM280VDJoSlQzRlhVSEpHZDJGTFFsZzRUWGt2WkU1c2RtZHNNVW96U1Vwdk5EWlRXaTlpTVZaMk1Fd3ZOZ28zUlcwMUt6UTRlRTVvVmxkME5YSnlOR2hSWkRaRWRVb3lTVFkwT0RZd1ZIY3hLMmM1UkhaaVFrSmxkSGxSU0dsUFFVVkRaMmRGUWtGUWVEUjFXVzVsQ2pCRGFrOTFObGxuUTI1WU5tODJSMGxqVEU4MFdpOXNUa3RDWTBSRFpsTlNZbHBqYUZSTGJsTTVTeXMyYzNSWlFUaGlhV2hLV1VKcmNGbENWV3RtWTNjS1puZDJiMFpvWm5GclpFOVNXbGhHZGxsdE1XZFlhWFZyTmxNelNHOXlWWEZ6U3paVmQwcDNLMmRNZGtod1NFdE5jRlpxZUUxU1FXOXhaekpvVHpsd013bzRhRXRRUzA1MVRtRkVlVFpVVjB3eldFVkVNMkp4VlVsWWRIZG5OWFZZT1RBMlpESnZkelJOWjBWbWRXRndlamwxS3pKcFFtOTZkbWt4VkhsUmFUSjFDbVlyWTJ4U05WVTJMMHRtYTBrNU1tWlBWakZEV0VZeWN6VjVPWGRWYWtkVmJEWTJWWEJFYzBWSE1TOUlibEpTVUVSM05YaElkRzgwTlhGRE1UTk1hRklLTW5NdmJrRnRVbGt6ZEROeWNUVTNOSGx2TkZVd2QyZHRiM0J3ZUVWMmNIaDJZV3BrYVd4NlJqVnJSVFF2V2xGUWFUUXJhV2hXZDJZeGVHdDZURE51VWdwd1pFOUZjbTlRYXpNdll6VnlTMFZEWjJkRlFrRlBWV3RMVFZaTk1XdEtiRlJuVUdod2VYVnJPVUZEVjBaV1IzVmtiVGhHVFZFMllWTkxiMWhTVkZabENuQjFibU40UVdWUGFTOXVjMGhLVW1aNGVGbE1PR3d4UVdsb09YbEVNVE0wT1daUlkyZGxaWFY0Vmk5S1dFZG9RWE5wT0RoSmJ6bDJUREZLU2lzelRGUUtVV1JZWms5NUwzazFVSGd2YXk4NFptNTFhVVpKT1VsM1UwTXJjRTUzVGxKUVRUQkJjWGh0YkROemRHMXFaakZ6VEcxSGVqZDNaVTVyVEdoWmJUWk1ZZ3B4VVVWUmVrZFVNR1ZWUkc1Wk1tMU1VM296ZFhCU01reFBjek53YlVOaEx6VnBVa3B4U1ZGdFZYWk1NM1ZITlZKdGJXaFhUVFZwYlZWSWNISjROazF3Q21OWlUwbHNPUzlDWXpOWU1IbFZVVlZJZFdoWk0wNUJjbEJLUkRKaU1YWXhWM2MxTWs1V00xZG1aSEF6ZUVjeWVEUTRVV0pzUzBkWGFtdFZNR1YwT1VVS2EzY3ZOREYwVGpoakwxWkNhbnB5WmxsVFNGVkZlUzlqYVhSakwwTjBiMmhsUld4bFlqbFFSMUZaWTBOblowVkJSMUJQYUdWeFR5OTBUbXBDY1U5b2RncDNSSE15U1hObVIxRTJlazA0WkVkVVZHSnljVW92WVdKbGVEQTJXVEp3U3pkdVkyOUtOR2hQVnpJemNITXJaU3RvTlVaVlNEZGlNbEl5YmpOcVVVOU5Dbmd2YTA1eGIyeFZheTlUTjA5a2MwSm9TbTB2Vm1WS1ZFNWtNMVJ5TVRGeFFXRlVOR1J4TWpWNFlrZEpjRTB3ZDBOVmNsQkVTV1JuVFVRNVpucFdjMHdLVjNvd1lWZDBZVkpyYjFsb2RFVlFRV2hGWW05TGQwUk5RWHBtZUZremEwOHdTVEJoYTJ0MGRGbEZNM05GWXlzeU1rZ3hZekYzUkhjclVtOTRSMlZ0VEFwblRtaEhVbmxtZFZadE5IaHFUSGxETWt0b2EwcDVlRVpXVjJGNFYwaG1UMk5OWm1OdFZqUTJOR0pYUTFaQ1ZHUnFha3RNUkhSb1owcE1NM2tyV2tocENqZE9TRmN3TURWS1ZHOU9NbGM0TjJSelVpOU9kbFo1ZVZoMFkwOVVjRGR6V1RkUVRFMHJMMXBZYVdVd2QwZGpVa3hvWkd3NFRXTnpaVlozWVd3d1VuVUtZMmhQVFVsUlMwTkJVVVZCY2xSaGFGUXdkMlpLZWlzelRYSXpkMmhrUTBNeGNrdGtWMUZ4WkRSd2VURkZZMjVXU21saVJFaFhNelJzVVRWaFlsTXZNd3BhYVhoNlEydEtRV3c0ZW1WSlJtNDJWRE13UlZkMFFXODVTMmhqUm5OM1NucGlaa1ZxT1ZwblJ6ZzNSV1pXVEdGSVkxWndUemh4ZDIxTlJGQXlRbGwyQ25aVFQyWjBOWEZ4YjBSRFRTOUpWMk1yT1VwYWEweDBibFEzZVhsdGIyWkdia1pLYUVGWVNUSjFXWEYzU2xSRFFtUnhhMk4wV1dGQ1FXaHZNWFZDWTBzS1ZtVk1WVkp0VDFOMFJGWnFVV0Z6VHk4M2MxZFdhWGcwUWpOU1lUSTVTM2R1TlZKa1Mxb3JjMHhxVlVSbFpVRXpUU3RQYm01U1NtMURiamRMT1Rnd1pncDJPRzlWU0hNNWNUaGpOME14VDFoeFQyUmlaMHBWTm1GNk5YSlRRM0ZhY1hGeGQyZHZOVGt5WjNKamNYRjBMMHB0YTNweGJWUTBXVkZXYldzME1tWlFDbkpHVlhKMFlVSkpjRFkzVGpscU9ITkJWSGhhYzNKNlkxWm1TRFppVFdOUmJuZExRMEZSUWk5YVlYTTRUVmswYjJKUlJsTm1WMkpyVFhaclkyVlZLMmtLV21GVU5XTndNbU5QVEVrMVV6bG1WMHhrU3pkS05XaDFkMnBSV0hKbWRubFVZVlpMU21kWE1FMVVNVWhoTHpoUmVuaENWbHBzWlVOemRFUTJaWFZ1ZFFwQmRXcDRaRVZ5YTJORk0xTmlUR0ZvVWpGbFZVbGxOV3RGZVU5VlZGQkJaVU12VXk5bVF6ZHdSWEZrYzFWc1NHSTNhSFIxTUhVMVNuUlNiMVJPSzI5R0NtNHhjallyTnk5NFpWVllaR1JFZGtORWExbzNXQzg1ZDB3d1VHbE1TbkUzV0hSRFVUbG9Oa3BpYTNkRE9IRnNkbVV2T1ZkNFpIRm5VM2d3Y1hKSFRFOEtaV2s1VmtsbUwxVmFOWFV2VlVKaGVVTXJaMFF5UXpoaFpXbHdjRnB4YW01SGVFRnVURzFGZFM5V1MwUTNTR05STDBkUGNHbGFVMEp4V1ZSdk1rWk1RZ3BHVTBsTmNYZzVaM2RPY21OSFZ6TkZNRU5GVWpZMWIxaGpja3BtY25aT2FGWmpXbTVaUkc5YVZrUk9jVWRJUTFoMWQzcFhaVFZMYjAwNGVFa0tMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogemZmZTh6ZHhxM3Q0eDdvem9zdjAwOHppdjljdnQzd2hkODVkYnVjbXltZXl5M2xldXh4bjhicG11Mm96MHV4MWt3amo5MWMweTJmcWg3bXVwY2F3cWVidXdna2Z4dXJyYnFtaWcwZzEzZXZhN2ltNXBuNDJsZnc1cG5neGQ5enYK\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUzFSV1FVeE1Xbll3Umt4aVpEbDZXREZRZVc4clZFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYbE5WRVV4VFdwc1lVZEJPSGxOUkZWNlRVUlplRTVFU1hoTmFsVjVUMVp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSRkNqRm5VVmgwT1V4cU9HVkRVeTlNU1VGRFNFWTJjVEpEUTNScE1YQmliV2hMTlhOUlNrMHlZaTlhYzBOVlkwZ3dOR3g2TmpZMlQyZzJSWE16ZERWYVdsb0tUV0ZrUlZWV1kxRk9VVkV6YmpsSlNIcDVXbU5vVW5aclVEQkRSRWxpYTJKb2IxcFZjMGxWT1dKWlVqUldXVkprYW1JeVRYQlRSVmhKV0ZBdkwwNXhaQW80Y0VaMVVISnFORlZyTlVkSlFrUjZlR2RqTlV4aU5WVTJRVEJKZDBzMlRrNDRiSEZTTUhGVFNISlFaRlpUTVcxRVVYVnZkbEk0WkZwc1kzRXlZbUpUQ25CVGRFOUhUVWRrUzBwalVUTllXSEZ2Y1ZWMGJqQk1iMk5RSzJaSVdrc3ZRV0ZrU1RabWRVZDFWbXBIYm5wM2FXZHpRWFpLTm5KdFFYSnZTelo2VVdJS1RsbHdNVVpuV1dWM1UzbFNTVVpXZERrMGJHOHJWMGR4TkhjMFJYVkJNVTFMVEc1UU5tdHNhSE51Y1d0NFlWSkhUbGh3YTNWbWFtUlVLMDUxZGxCUU5Bb3dNbTF1ZFhkWk9GSk9haTlIUVVkb1ExY3lkVU5zVGpOWE4xZEROV3hOVW1OSVdVd3hSVkZIUlVOd015dDFObGN3V0dKdVZ6bFRkVXRUVlZsUE5FaGtDbFZTU0VkRU5rZENhaTlYVTNwbk4zTk5OVVl5Y0dSYWNFTXhLME55UzFsVmFrTmtSVzlJVW5aeE4yNWlSbElyY1VzMlQwUkhlUzlCZWtwdGFrbDZkV1lLWlM5eFowVlhkVVprVVRCSmJsRjJibmhpVTFwSFVGRlNXR3RDYkVoTmRUZHhha3BMWmpGeVRsQnBWV3B0YW0weVF6RXZNa2xIZFZsSWJqZGtZVEZLVGdwNlZsbDFXRFpqUW5BMk1IZGpSMDVvY3pkdWJqUkRjRzhyVm1FelUwcFlNV3B4VkhKcFozUjVabGhXVVRKTmRIbGhkWE5rVmxCdlYwWk5ObGxCT1VsbkNrMW1aamt3VDJSV2FsZEtNRmN6UjJKNVUxWjRWMGxxV21sbk5EWTFOVVZQYjNSUlFVOVpkWGhoSzFWUE1HdGhkaXMyTVZRekwwNUxlRWhNWW5kRVNtOEtlamRtTWxOYVlqbHpjRFJVUTBaUlRuVnpaVzl5VG1Sb09WRlVlbk5pY1RrM1JVVllWREk0TjBSM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWdGNITkdjMk1yZUVWM1ZGTnhjWEpoQ25jNFNHTnlSM2x2ZVZWbmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGR2FVcFFjVlZLU25SQ1VGaGtNWGs1UTJ4VlRtVlhSRlprY1VFS2RXUlJTbE0xZUVoYWEyTlNlVlI2VUhjMVkzbGFVV1Y2SzNKeGRsTm5WVVZVTkRKUGVtOW9heTlJWTB4RVlWbHlXVTVqYjJaTGFYWkxXRU0yYkN0amRnbzRVSGR2ZERRdk9FRnZaVEoxU1ZwTWNuRldNbFpCTkZwMGVVUkJhR056V205TlJtRnhhaXREY3pKVWNraHFhRTFuU0RsM1ZUSTNkVmQ0VXpWVlRFZzBDa05aTldSdGEwbEhRM2xGS3pSYVYwZFNXRk15YVRWVWNsVkxSMUpRYW5SU2R6ZzViVkZ0YjB4NGJIRlVjM2RYSzBwWmMwRjJWM2czVjNCRGFqWkpZVzBLVFVSSWFtd3phbVJYU1VFMlVVczBMM2RwVWxKT1VuaEZNV0V4VkdWVlVqZ3dTalJTUzNaalduZ3lhRVFyUlV3NFMwUjJNMmhRZEhSdmVYbDNkamxKZWdwQkt6Qk1NVXhOVm0xbVJIRlhRMmcyUXpKUWFsazFhV3hWYXpCTWJYbFVkbUZHVG1KNk5GWjFTbUpyWXpKdFdGTmpZVmt4VFVGYVVYWXdZVEJZUmtVd0NuZFVTMDlpZFdGWGF6VldhbHBPYTNWSWQwZHhZM2RDY1VVMVQxZFFZbHBqTW14S05IQkpRMGxUVDBSeFRreHRjbGhUTWxOeVRYUXpkVTlFWVhacFpuWUtUV016ZUZSVGFtOW5TR1V6VG1zd1kzSlFTRmhuZGpKT1pYWmpTbTlKWjJSTE1FVXdiM2h2UlhrMVkwOXNkV2R3WjJsMmFTOVZNRzVEVmpacFMyRTFVZ3BuUVhVdmNURnFUelpQYUhabFZrRmFZbTlIT0hKdE5VSmlVbXBCYTFsMFltVm1hMlZaZWxneFoxUmtWR2gzYjFCdk1IazVRVFEwTDI1UldHcEZkV3B3Q2pCcFdHMUJlbWx3VVZGdGFFaFROalpIZFdobWRVbEtTbmRRTXpaRGEyOHZXRkp0VDBJMk5IZG9PRUo2WlVWbU5VNXhNRWs0YUhkaWJrTmpjbmQ1VjBVS2FUbHZkbXgzZGs5M01tbFVSMjlwY2pkdGRVY3lOakowY2tGQ1l6bDFRaTkxWlN0Mk5rZENVRWhKVW5oc1kxTlFZMnBvTjNodFpqWlNZVUZaWWxneE5RcGpjWGxaV2tJNFJ6TlZRVTlEZVhSTENpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3BoeHVqd2gtNms2azQ1Y2guaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3QyaGdic28KY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3QyaGdic28KICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RvZTYzYjc0Ynh6X2NsaWFrc3Rlc3QyaGdic28KICBuYW1lOiBjbGlha3N0ZXN0MmhnYnNvCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdDJoZ2JzbwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RvZTYzYjc0Ynh6X2NsaWFrc3Rlc3QyaGdic28KICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJXbVJUUmpnMk9HUk1jemtyZG5kM0wxcFlaMWx1ZWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVVhsTlZFVXhUV3BzWVVaM01IbE9WRUV5VFZSUmVVMVVTVEZOYW14aFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVU01VURaUWJtSk1SME5TU2tsV00zUmhWVVpWYVhNS2FIRjZOMHRHWld4MWJGa3ZVVWRzWkd4dE9XOXJiRGRSVVc4d1NtbFhTVWRJVEZJNFVWSndVazkxWmtKQ09YcDZTRkJuUkVGS1VWUkpja3RDWm1aaWJBcEthazVTT1ZGNGRVbEhXVFY0TXpWalNEZzFWWFZNUkdoTmFpOHdia3BSWVVWRWJXbDNla3BVU0V4Qk9GVTFSbXR3TVVNMldYRk9lVzVYVTAxdlptZDVDbkozUjFaTFJYYzVRbGxNV1RSek0wWnBNMEZoT0hWSGMwUXljVFo2T1hVMlJFaDFURm96UVVnclN6Y3lhVXRIU25CNVRFWnJSVUZ2TW0xRlJEbDNjbVVLWkcxb1JqSjFjVEJTVUZKRGFHbEpPSFpzVG1KT1dVazBOQ3N3Y0ZoM2JVNUZVeXM0UjNwQ1kydzVkbTF3T0dsVFN6QXdVV2xoVm1jMlVEVkxaWFYyWndvNFN6ZG5kVlZMTTFadGMxWnpkVkUxU2tSbU9HZGplRXAzUmpSdWFFRldXV1ZYVWpkVGQyRlpjRlZ0YUM5eWJIbFhTMUV2ZERkc00zTlBSVkI1T1hSd0NsUTVUV0pGY0hselRFNDVTRXRPY1VjdmJERlVWMjl0YXk5R0sxTjNaMVpaUVZOTVNXRlJhWGhuVEdObFZubDJOaXRpYlZKVEt6WkxSblppTWs5d2JWZ0tSWE16WnpFNGFFVjFVRXBhY0VkVFVHZDZXbVl4YWxaTGNqQXZXRUZuTlZRd1VubzBOa05pUWpKR2VrSnVObWhzUTJOc1VsZGFNRXMyVmtwbk55ODJVZ3BwTVZwa1JIUkVlbEJJYmpkRFpraHFUakZ4YVdKUE1HUnNaRlJRU0ZkTFFsZDJOREpHZEV4UFUydFZTa3hLVURsSVJYWk5kV2wyVmxKYVRYSjRTRVJZQ2t4WGFFTXdTME40WkU1dWNTdFFVWEpFTUZCamQySnRPV2hqWVhkMFNHNTZTRFkxWTBkb05rZG1SMll3UmpkMFFVdFllbVYzUkU1MGFETjJja3B6Y20wS1RGcEpaRGxHT0RGcFQzQTNhR2haU201VVpsQjFSbGhXZG1sRk0ySjJjMUZGVkdkRmVGZG9NbVJQTjFCMVlsZEdZVFZwVjBzNVowTXZLMkUxUVZWa1pBcG1iRkpuTjFwdU9GRlRVM0I2VFhJeFNYSTBhMHBSU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbE5oYlhkWGVIbzNSVlFLUWs1TGNYRjBja1IzWkhsellrdHFTbE5FUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZDV210UFlUZ3JRMWg2VjNWc1ZXeDRWMHd4ZFFwbFRFSkRSRVFyT0hsMGMybGFhbHBNZEdaR1RHc3dOVzh6YW5wemVIQXphRkV4V2xsMlZHeG5RV3hoUzFGWVFVTktjM2gxWkRock1ERnFXblJUYUhaUENuYzRUR2RQWm1SU2FVZGhVbmx0U0drMU5VOW9XbUpTWWpkQ2VuQlBRMUZhU21aUlRFMTBOUzlRYm1rek9FSnBZMUJvVnpWYVVsSkpkMnRtZFRSUmFVb0tWV3BXTWpSaVp6TkJWWFEwUVVKUlRXcHJaREZTZDBrcmFDdGhTRUpaVlcxamNsTk9WV3BtYmtsbFlrRXpTR2xTWTBWSWMyRmlNMGRLUVZVNWJtdFNXUXBSYUdSMk9XZFZPSHBVZVRJMFJVVTFUbXgyZVZsWmQxUlNabVZuYUNzNFpUZEVSbGhQWkN0RGFrNXRaRkIzZEZWQmFsWllhMWhrYURsSGRVeFJOMloxQ21kaGJWaHpTRWhuYzFSSEsxQnVXVmRDYjNSVFNEaGhhVnBqTVVoblVtaHJValZRWlV0U1RqaFlhelpOTHpac2NFODNVbGsxT0Vob1N6WmxZbFZCYWtVS2NEZzFhRlJFTW1WWGFXMXVjbFkxUW1STWFtcE9iRUl4YkRKUU16Tk1SU3RFZG5sSlZ6azFPRTg1YkRKWGJGSmFSMFp2S3pCbGEzVXdXVWRIUVROWWNncHNaVzVrUWpoamNraDNRVnBzVUhoV1dGb3pSVXhVVmxaUU9VZFliWFkyZVRJNVdXRXlVa1YwUXpsaFdYVTBVMnhJUW1Nek9GZFRPR2RUV1RaM2VUSXZDazFRZERoSGFuRjNSaXRRT0VVMU9IRXhhRlZNWkdoSkx5dG5ObWRYVjA1WU5WWnVZMWhMUzNCWmVVdHRMMGh6TjJJelMwTTJZMEVyZGtOR01qQk5UVmdLZEVNMGQyMVlLMlpTYlhFclZtWlJabEJuTUVkVk1uQTJlRlJFVFVWVmRFSnZibmgyUTBOV1VXVjBNVXhNYkcxcUt6Tkhaa2hGZDI4ME5tWktjVkJQUWdwcVZUVlRNek5YUWxSaGRYTlpVa2cyUjNSNFpsSkxXSGxNTjJOVFMyd3JMMnhhWlVWNGRWVkVhRU5SWXpnemVuaGtTM3BFY25FeU9WZGxVVWw1T0N0bUNuVXdTRUZCUjIxbUwwTlhiV2xrVkhGU1VTOVZPVVpKUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZGxRcmFqVXllWGhuYTFOVFJtUTNWMnhDVmtseVNXRnpLM2xvV0hCaWNGZFFNRUp3V0ZwYWRtRktTbVV3UlV0T0NrTlpiR2xDYUhrd1prVkZZVlZVY201M1VXWmpPSGg2TkVGM1ExVkZlVXQ1WjFnek1qVlRXWHBWWmxWTlltbENiVTlqWkN0WVFpOVBWa3hwZHpSVVNTOEtPVXA1VlVkb1FUVnZjMDE1VlhoNWQxQkdUMUphUzJSUmRXMUxhbU53TVd0cVMwZzBUWEU0UW14VGFFMVFVVmRETWs5TVRuaFpkSGRIZGt4b2NrRTVjUXAxY3k5aWRXZDROMmt5WkhkQ0wybDFPVzlwYUdsaFkybDRXa0pCUzA1d2FFRXZZMHN6YmxwdlVtUnljWFJGVkRCUmIxbHBVRXcxVkZkNlYwTlBUMUIwQ2t0V09FcHFVa1YyZGtKemQxaEtabUkxY1daSmEybDBUa1ZKYld4WlQyb3JVMjV5Y2pSUVEzVTBUR3hEZERGYWNrWmlUR3RQVTFFekwwbElUVk5qUW1VS1NqUlJSbGRJYkd0bE1ITkhiVXRXU205bU5qVmpiR2xyVURkbE5XUTNSR2hFT0haaVlWVXZWRWQ0UzJOeVEzcG1VbmxxWVdoMk5XUlZNWEZLY0ZCNFpncHJjMGxHVjBGRmFYbEhhMGx6V1VNelNHeGpjaXQyYlRWclZYWjFhV2hpTWpscWNWcHNlRXhPTkU1bVNWSk1hbmxYWVZKcmFqUk5NbGc1V1RGVGNUbFFDakYzU1U5Vk9VVmpLMDluYlhka2FHTjNXaXR2V2xGdVNsVldiV1JEZFd4VFdVOHZLMnRaZEZkWVVUZFJPSHA0TlN0M2JuZzBlbVJoYjIxNmRFaGFXRlVLZW5neGFXZFdjaXRPYUdKVGVtdHdSa05UZVZRdlVuaE1la3h2Y2pGVlYxUkxPRkozTVhreGIxRjBRMmR6V0ZSYU5uWnFNRXQzT1VRelRVYzFkbGxZUndwelRGSTFPSGdyZFZoQ2IyVm9ibmh1T1VKbE4xRkRiRGd6YzBGNllsbGtOelo1WWtzMWFUSlRTR1pTWms1WmFuRmxORmxYUTFvd00zbzNhRll4WWpSb0NrNHlOemRGUWtVMFFrMVdiMlJ1VkhWNk4yMHhhRmQxV1d4cGRsbEJkaTl0ZFZGR1NGaFlOVlZaVHpKYUwwVkZhM0ZqZWtzNVUwc3JTa05WUTBGM1JVRUtRVkZMUTBGblFWQk1XRTUyY3k4dmIyVnhaR054WVhBM05XUnJWMUJTWWxOaVkwaGFkMHd2TmtGeGFIZHZVV1lyVlhZM1dIQlFOalp5VWtnelpUUllaUXBGVkhGVVIxTTFUa0pPZUhKbmRqbEJMMjFNYUhobU5tRTVRV1JDUTFoa1JVMHljbnA1YUZadmRrNDRaR1JGSzFBMkswRkVjalIzUW1scE1ESnBaV0ZXQ21KNVNYbEhSRXh4U1RadFpHTlBNMEZvVUdsdE1FbHBiak55VjFKSGQyWTVaRzFZYlROMlNraG5jV3RQUm5OcEt6Ukpka2w1VGs4clpEY3dabWh5UkVJS01WZElaWGRqYzBkaGNEZEtPREpYVDJkeGMybHROa1E0VDBkMlpYVTFRbEpUWlZaWk16ZzNXRXAyY2tnNVJuVnlSRkJsVFhGSWNqQjJia281Y0dOek1ncFJkR1l5UmxKbVJuWTVPRTlIWm5KelVVb3pTM29yVkZaQ1JtRXlhVFZpTmpOMVJFTTBNazVxVFdneWNtdzBVVVk1UlV3eVFub3JSakk0YVhnNU9IQm1DazlRTUcxalRuTmxOblJpYTI1TlpGQmtUMU5wTDAxVFVVSTRSbTgxVjFacmQybG9abE5CZWtwcmQwSmlNMFJXTVdKQ2NXOUZSMFZCVDNSTmJXazBUbk1LZDJGUWRITkdVVlV5TWpWSGRVTnFXbVIxV0ZoSVlqSlhibmR3WVZsM2VHaGtUbEJ0WkRGcWQzWkxaMWRtV0U5eWFVRkJWMFF6T1M5S2JXcDBSMk0zZUFwTlVrMWtkMVJ6U1ZGaWVYRXJURkJCYlRORE5rSk1URTVDUTNrdmEwOUpPREZFYkdoaE1FWTBNelY0UzFCV1dGZG5jbXh3TWpGbFZGY3dMMmhaUVZreENsVmlZa3RwUmpoWlJrVkpTblZwVkRkR1FUWm1RMWd3Vmt0YVEyMHpkR0V2UzJNeFJYZDVMMGxxWTNWaWJFc3pjWGRWTlROMFFWUTVOV2hNTDI5b1pIRUtRekp0WTJwMGFtbDFielUxVDNsQ1F6bFVUekZ1UTFoQ01GUmpkMUV3TUZRNVlXb3hWVVI0WTBndllqVXlSR2d3Yld4bFVrSkJMMnhITUdoclFXNXZUd281YkU0d1RFeHBjR3h0ZVZSVFRtWk5TMFIxZDNablRqTlhORXhaUWxKelVFRTNRMHc1Y0VNd1pXNHhhbEJKTVhaWlVVdERRVkZGUVhwdUt6WkZObTA0Q25ObGRrSmFiMnBCUmxnNWFraG9PR1JaTlRkbE1HZEpORWt2VERSRldreFROMmxoUzNOalpYZFliVlFyVDJsdmFqQnhUMUkyTHpaeVMxRm9hbFJrS3pVS1RsUkxlallyVW5aeFQwZFRSbWxQTlZWTlduQXJURU54UTBaTVNXZFhiV015UmtkV2RuWnRPSFp6S3pCVlVHcG1PV3NyYmpFeU4yNTNOMDlNZVRkdlJ3cEpORlpQV1ZvemRrdGhlRFprT1dWbGJpczJlRk5CTDFSTFZYTnZTakp5UWpsU1EyZG9UbkV3WTB0dFNuZHNWbXBRYVhoNVZEQjZkM2g2TjAwMlNEVm9Dak52UldaVWRURm5RbU13V0ZCbFExSXpTemhWYzAxMFdGQkRNMmd2VTNNeldrNVhZbUpQY1ZwalVXVlhTbXczVVZaMGEzRTBTbTFJYUhJeFVsaFplRWNLWm5SU2JrWm1OWEJXVEZscmNFUjNUMnN5TVVKNllYSkZkVEpZUVdKeFptOXRkbU4xUjJWalJERXhSbGd3YW5aQlExcDJha2s0TDFwaVVFdGpkemhNVGdwWVlqSnZLMlY2WjBvMFVHNVZkMHREUVZGRlFUWndNVTkwUldGcU0yZ3dhWHBHYzNaSVVWRk1Zak5VV1RSeWRpOVdLMHBVZDB0V05XdzNaMnRuU1RNNENtWkdUblZvT1RWMVpFZEljVXgzTkRKSGJHYzBlbEE1VlV4VmVuRkRjR2wwYjFocFVsaEdOUzlSU0c5WGNHeHVNRmRPYmt0WlltMTBaVzFoZWtGeWRXTUtVVkpPV1RkeVEzWlpkbTFtSzBSemFtaFVRVVZUZWk4eFREQXpOMU5sYTNOaFVGRkRXa016UjBsTWNEaEJSbTFGU3paeWJrWnVSelF2YzNKUUsyeGFTZ3BWWlZoT1Ztd3dTMEl4WkVVd2RucFBURTFYVmxsSE4zRlpjV2h5Ym5KTFpsaExlRlI1YTFOSmVFaG9PQ3RsYTJ4NlVscGxSVE50YlhsUU9XcDFTamhuQ25nMVkzZE5SMWhMWld4V2VtZFRSVmw0YkdFd1VVNDVZa1ZXVERjeGRsaHhhVTlFT0hFeE1sWTFja3N2VFc1UFkxQjBjVzVwZFdodlMzWTFhU3Q2TTFvS2VEQkJlbGx4VTBWSFNYWmFVMHhHZHk5ME5sbzFRV2hXT1VKallWSTNVbXhOY1VadlVsbzBkbkIzUzBOQlVVSm1NSGN5TmxOcE0zbE5iMFJSTXl0NWFncEVWRmxzY1VSTGRra3JOSEZpYWxVelIxZDZZMWQwU0daRFlYVmhla0oxWmpocFZ6TlJRVGRZYkVkblIzQXljM1EwTWt0U2NFcDNRbVk0U0ZkWFZ6aHVDbGt5VjNwUFIybHhabmxvTVRaNVZUaE1ORFI2TXpWeFZrWXlZbmc1Um05UFFXSjVabEp3TlVoWmNtUXdWbFppWm1wa1dERmxRMGRhU1dsak5WUldla3NLWW1WME1qWlhkMGR6TTBVMVF6TTNiSHB4WVZob1FXSXhabVl5TDB0UE5VdDVZVWhRZFVkblVsWm1Za1p5WlV0a01IaHhjbGRPY0RWemJHMW5LM0UxZHdwbmNtVnBWWGt2WTNoTVNrcFRSa3d5TjJsUVRXODVNVlYzV0hOaGF6bE5XV3BJYVRBeldrczBaWEJhV0VjeVpUQnpkVEp5UWpSckwwZGliWE5xZURZMUNqTk1kM05MYlVwd1RESTBNWHB0VkRCM1ZXTklSVzkyZVZCWWJqZE5lVk53UzIxdmFXVlBLMjlvWkhCc2NDOUplR2xJVVU5ek4zTjRTVTh6YXpkSVRXOEtXWGxHV2tGdlNVSkJSV3BwTldacFRHMVplaTlqUkdkalpUazFMM2w1TW5SR01WRmFTVFZMYURsWVREYzVXRW93SzNGSlZtVnJUVVpwUjJ0a1lWTk5kUW8yUW05SFUwUnBWeTg0TlhZMVF6ZFBibXRpT0dRM1UyRlRSVFY0TjFGaFV6VXdXakl5TjNCbGNuTnFPV0pwSzBGcFJYaHdSRWh2VEVWTE0xZHdhVmxTQ21SMWEyWk9hMGhEVlZKTmRtOHpVVEoyWTB0UlpHZFBSa04wYTJ0bU1VUmlibTV3WkZaUWNHSTVZalkzVW1OWGFVeEZjVkpWSzFoc2FHOHdNa05ySzA0S2FGRjNia1JqV2tzck9GVm9jMEk1UjFFeWFtbENWRUU1VDFOeE1XSXJabHB3Y201akwwdHNhVTFaWmt4WE1ERkhVMmw1Y0VGMk15dHpha2hYTjJKb2FncHZObUZUUzJGbk1HUXpkRkEyU0V4U1dGQjJSRWRyUnpjME9FMDFTamhEY2prd2IzUk5TRlV5WVV0YU1qTlRWeXROWmtoeWJsTlRVbWhYVlRONGRrZzFDbEZHSzJSQlNWZDBhMmhIVG5CWFdsaGFkM0YyZFVkRGNWWkZTMDFwYWtWRFoyZEZRa0ZMY0dsRFJETjRTVk5PT0RWNU0yNHdZVzk0TmxRMWQxbE1TRTRLYlhCRWRWRldjRVZLUmpKM1QwSnJZa04zWVVsaVR6VlhiWEJZVFRsbWVuQlhSVmRGVFdwYU5GZFpUemhMZFdKeFZXSnpNRU5tUW5KdlpGRllVbTl6Y3dwMmEyaEtSRWRFVEV4b01YWmFTa2h3Y2lzMGNHTkVXVTF2TjFGcGVWQlRhbHBWWlZoRlpuUktXR1YyYWpoS1dsTjFXWEY1VDBobWRsTnhMeXRQZVc5VkNrMUhjVkpTYTJoUlJ6TkVObWN3YlhadU5qZENjVFozY3pWTmNYUk1WRmxLVTBGeFVucHllblEwVjFkbFkwdGpNeXRGZGtocFJHUkdVRTVNY1hKelNVWUtXR1JvZHpGek9VSjBhVFo2UzBsMk0yMVBWa0poTWxkdFdqSTRSMkZDU0d0ME0wRnFNV05ZZVRKWGVWbHhhakJtYlc0Mk1qbGFVVmsxYVdOelF6UktRUXBJVDBZMWRGaFZjMU5TT1VobGVpdHRNMjFvTDFWRU5Xc3dXWHB3VVhrNWIxTTRjVTlqWVhFNVRHOXBkMFI0VG04MlZFVjBjRWRuYkZCclp6MEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogc3NyN2ZxbWN3ajJubXlzZnc0cmJqM3kxY2JsZng0eXAzbG5yc2oyeW1lYm1wMnFxcWxiZWNoYWE0dTRjaXc4N3FlZ2FyMHJjbWxuN201MTZ2dDVvbDZzYmptdWluOHhpZ3l1N2k2Mm5jMnN1ZndzOXBsNTRnaGl2cjl2c3cwY3IK\"\ + \n }\n ]\n }" headers: cache-control: - no-cache @@ -1208,7 +1208,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:01 GMT + - Wed, 14 Jun 2023 21:28:20 GMT expires: - '-1' pragma: @@ -1244,8 +1244,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -1253,17 +1253,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e9d800f-4dda-4a82-a2f8-8b85ccc1129d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/84f0229b-77ab-4caf-8bf9-5292e472eadc?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:17:02 GMT + - Wed, 14 Jun 2023 21:28:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/2e9d800f-4dda-4a82-a2f8-8b85ccc1129d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/84f0229b-77ab-4caf-8bf9-5292e472eadc?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_setting_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_setting_msi.yaml old mode 100755 new mode 100644 index 3b1f60bbd8c..85c3f47d42d --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_setting_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_setting_msi.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:12:25 GMT + - Wed, 14 Jun 2023 21:28:26 GMT expires: - '-1' pragma: @@ -54,12 +54,11 @@ interactions: "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -70,68 +69,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1440' + - '1732' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-60e7np0i.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-60e7np0i.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-k1cxf4ca.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-k1cxf4ca.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9322e727-1333-4696-9ad0-837f4fca1cc1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/909f60a2-404e-4915-b819-bf8ae75feed4?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3211' + - '3539' content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:29 GMT + - Wed, 14 Jun 2023 21:28:33 GMT expires: - '-1' pragma: @@ -161,59 +161,60 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-60e7np0i.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-60e7np0i.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-k1cxf4ca.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-k1cxf4ca.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3211' + - '3539' content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:29 GMT + - Wed, 14 Jun 2023 21:28:35 GMT expires: - '-1' pragma: @@ -245,59 +246,62 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-60e7np0i.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-60e7np0i.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-k1cxf4ca.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-k1cxf4ca.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/eaef0980-7ac7-4c47-ba25-4595a4b9dba9\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3211' + - '3801' content-type: - application/json date: - - Wed, 15 Mar 2023 10:13:00 GMT + - Wed, 14 Jun 2023 21:29:06 GMT expires: - '-1' pragma: @@ -329,59 +333,62 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-60e7np0i.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-60e7np0i.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-k1cxf4ca.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-k1cxf4ca.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/eaef0980-7ac7-4c47-ba25-4595a4b9dba9\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3211' + - '3801' content-type: - application/json date: - - Wed, 15 Mar 2023 10:13:30 GMT + - Wed, 14 Jun 2023 21:29:37 GMT expires: - '-1' pragma: @@ -413,61 +420,65 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-60e7np0i.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-60e7np0i.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9f7e7254-77f5-4378-8251-b820f447bdbd\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-k1cxf4ca.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-k1cxf4ca.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/eaef0980-7ac7-4c47-ba25-4595a4b9dba9\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3473' + - '4190' content-type: - application/json date: - - Wed, 15 Mar 2023 10:14:01 GMT + - Wed, 14 Jun 2023 21:30:08 GMT expires: - '-1' pragma: @@ -499,61 +510,65 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-60e7np0i.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-60e7np0i.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9f7e7254-77f5-4378-8251-b820f447bdbd\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-k1cxf4ca.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-k1cxf4ca.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/eaef0980-7ac7-4c47-ba25-4595a4b9dba9\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3473' + - '4190' content-type: - application/json date: - - Wed, 15 Mar 2023 10:14:30 GMT + - Wed, 14 Jun 2023 21:30:38 GMT expires: - '-1' pragma: @@ -585,64 +600,65 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-60e7np0i.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-60e7np0i.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9f7e7254-77f5-4378-8251-b820f447bdbd\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-k1cxf4ca.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-k1cxf4ca.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/eaef0980-7ac7-4c47-ba25-4595a4b9dba9\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3862' + - '4190' content-type: - application/json date: - - Wed, 15 Mar 2023 10:15:01 GMT + - Wed, 14 Jun 2023 21:31:10 GMT expires: - '-1' pragma: @@ -674,64 +690,65 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-60e7np0i.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-60e7np0i.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9f7e7254-77f5-4378-8251-b820f447bdbd\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-k1cxf4ca.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-k1cxf4ca.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/eaef0980-7ac7-4c47-ba25-4595a4b9dba9\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3862' + - '4190' content-type: - application/json date: - - Wed, 15 Mar 2023 10:15:31 GMT + - Wed, 14 Jun 2023 21:31:40 GMT expires: - '-1' pragma: @@ -763,242 +780,65 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-60e7np0i.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-60e7np0i.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9f7e7254-77f5-4378-8251-b820f447bdbd\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-k1cxf4ca.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-k1cxf4ca.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/eaef0980-7ac7-4c47-ba25-4595a4b9dba9\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3862' + - '4192' content-type: - application/json date: - - Wed, 15 Mar 2023 10:16:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks wait - Connection: - - keep-alive - ParameterSetName: - - -g -n --created - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-60e7np0i.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-60e7np0i.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9f7e7254-77f5-4378-8251-b820f447bdbd\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '3862' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:16:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks wait - Connection: - - keep-alive - ParameterSetName: - - -g -n --created - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-60e7np0i.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-60e7np0i.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9f7e7254-77f5-4378-8251-b820f447bdbd\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '3864' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:17:03 GMT + - Wed, 14 Jun 2023 21:32:10 GMT expires: - '-1' pragma: @@ -1030,65 +870,71 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.24.9\",\n \"currentKubernetesVersion\": - \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-60e7np0i.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-60e7np0i.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9f7e7254-77f5-4378-8251-b820f447bdbd\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-k1cxf4ca.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-k1cxf4ca.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/eaef0980-7ac7-4c47-ba25-4595a4b9dba9\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ + : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \ + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \ + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n\ + \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n \ + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '4131' + - '4459' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:04 GMT + - Wed, 14 Jun 2023 21:32:12 GMT expires: - '-1' pragma: @@ -1120,65 +966,71 @@ interactions: ParameterSetName: - -g -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.24.9\",\n \"currentKubernetesVersion\": - \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-60e7np0i.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-60e7np0i.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9f7e7254-77f5-4378-8251-b820f447bdbd\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-k1cxf4ca.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-k1cxf4ca.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/eaef0980-7ac7-4c47-ba25-4595a4b9dba9\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ + : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \ + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \ + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n\ + \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n \ + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '4131' + - '4459' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:05 GMT + - Wed, 14 Jun 2023 21:32:14 GMT expires: - '-1' pragma: @@ -1210,64 +1062,65 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-60e7np0i.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-60e7np0i.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9f7e7254-77f5-4378-8251-b820f447bdbd\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-k1cxf4ca.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-k1cxf4ca.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/eaef0980-7ac7-4c47-ba25-4595a4b9dba9\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3864' + - '4192' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:05 GMT + - Wed, 14 Jun 2023 21:32:15 GMT expires: - '-1' pragma: @@ -1301,24 +1154,24 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVUxT1JFSlZSelZxVkVKR2FXdDZTVFIxTmxoVVozZDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDAxNlJURk5WRUYzVFhwVk5GZG9aMUJOYWtFeFRYcEJlazFVVlhoTlJFVjZUbFJvWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuZDVXRXBMZUhCSGEwTTNUVUkyU0VnMVJtUjRlRll4UWtsa1JrMDVXbko0VlZaWlpuSmFSRVIwYVRGeGJVZ3lkVXhGVWt0YVVrWnJPWGN4WVV0TFNtOEtiMFZWTkdodVdDczRaM3A2ZWpab1JFUnhUeXM0WTFoMlFrTlRaMGgwTDJzeU5HTnBXbFEwV1dsaEt6UmxlV2RJVmpOVGNsWjRkR2REZEZOUk9WSktVd3BSTkdsUFVXdG1jVVptTjJjeWFIWmFRMlJJTHpSbVYyWTJVbkZoVUhKaVFqZEhXbUpNTkV4NU5saGljbkpJZUZOUmQwbFpaR1JEVTBKTEwzbFNSV2h1Q21oU2VXRlVja0Y0UWpRMVRVRmtUSGRWZW5JNGRqQjBabmhrVjJaS2RHNVRhVk50TURGbllrUXpOelZSTlhCd00xVmFOMUJDY20xbmF6VlFTVFZ6SzB3S00zaERjMGx1VDNCU2JIWnBPRlo0Ykdoa2R6UTRNSFZCYkhKSWNWcEVibXMwV0RKM2VFTmliM2ROVGpGU2JqZFlTR2c0TlVFMGEwSk9SRUl3ZVhvMVJnb3ZjR3c1WW1OTVRFUnlTVWR6Y0d0VVlUbHdOeTlETkhWVlpHcDFXSFIxZVRkUWVtaGFlVk5PZFU1aVVHb3lZM0J5VUcxaE5rSmxRbE5TTHk4clNFWjNDa1pDYjB4bmR6QkxhWEpFVEhoc1dqRnZXSEF5TWpaMlJIVXhhRUUxYVhWRVVuY3ZVMjgzY0dOSVQxTjNTRU41VERSVkswTlVVa2x0U1V0dVFWVmplamtLVmxnd2VIVnFVMEkzUmxkbVFqQm9URVJYVXk4eVVUQm5jVnBJV1RSUGQwSjZOalEwWVRsWWRESnZVMkZQWm1wM2RIVm9RbmhKVmpVeGR5ODNRWE5ZYmdvMFR6aFNObE5pTUVwV2VuWklXazV4ZG1wUmRqZENNbkZvYkVWc2MySmpXRzlJWjBOaFpVMVRiSFJFY1VrMWVtczVZbFJaVGtaRFFraDVlVzAzV0hCSkNtbEJlRTVKZEZWNmVHVk5aR053Y2toWGJVVjJVVGRxV1ZGM2NHeHljMWhJV1ZCUk4xaHRhWHBJUm0xTVJVaHNWRlZDWmsxdFpEWnVjSEp3T0U5aFpVTUtSMFpzZG1KelFuRnFSR2gxZFVvMlVXdEdVR3RNWjJOSWFrMXZRMDVZVlcxV1RFbEJRbUV3Y1cxblRVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1IyZFBNSGxTVmtvNWVUTm5OMFF2Q25GVU4zTkJjWEUwTjAwNFEwMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFuSmtTR2xyVEc1c1lqUnVUbWxsVDBkclZtOXljR2hSYTBJS05scFBiRnBOY25GdldVazRkR3RXZDIxMGExTjVOR0YzWlhvMVYxTXJOSE5zVTNsYVNGSnlUeTlrU3paV2IzWmFlbkJ6UW0xaU4yRldWR2xITUVSNFpRcEJhelZVVXlzemFUSnFTemRTUW1WYWRHbDRTVWhXYlhrcldqSldUV0ZKUVhOb1VtMW5kV3BvYzFKS2FHdERObHBXTDIwNGNtcFRNVlZJZHpjd1dsSXZDbkpHVkcxM1praEtZa1JyWXl0VmJFSlhVbUpHVEdVNVJqaGxaM04zTTNobWFuSldibG93UW1JMFkxTnlSMGRCTDBkUE4zQXhjVGxKYXpFd2FXOVpNRUVLUmpSV1VYTjNaWFoyT0hFMU5YVTJUemtyV1ZJdlZUQlhXbEZzZWxkRFF6bExOM0FyTkdJelZrUkxhVzgyZDAxWWVXTmlNVkZuYWxSblMwOXNXREY0YXdvNGRURm5ZbkZQUTIxdFJtMXJWWGRpYWpoWk5uaFVNSFJ5SzJjcmVFdzNkbHA2U1ZBdmRrOXdOV05pU21aVGF6SnpZMFV4WTJOSk1FeHJhaTlYV1c1NENuVlhjemR1VlRkaFdEVlVXWFpqV2tSTWNIbDJaRzFXT1ZOS1ZIQjFjSE16TXlzNFZXdGlTWFoxYXpObGFXNUROMjV5WW5GdGRGQnJUREZZVFhkRFRXb0tSVmh1Y0ZWVE1GTXhRamszYTBZclEyWjJabEJFUWxsMVdUZFhUR1Z4VEdKSlR6UnlaM0VyU0c5MVRFWktia3h2VEdzdllYTTJjeXR5UW0xRFNFMXBhUXAxVjNaWlZFMUxjR1p6WVUwMlRIRjNXRkpHTjBKMmFHeGFUM05xT0RGUVpEQjJSa1pXVUN0clZrVkNhMmwyZURONE5YcFdNemRuVFZOQkx6ZHNiRU5QQ2xWa2NGQXZRa1ZLY20xWVpHaDVTMVJsUVZjM1RHbG5lRzFTUm1WeVN6TXJkMVpxY1c5SFdHd3pjV2RaYVdObVZuWkxZVFpTTlZaWFVsVjBZVGgwVEVzS1RrdFhNV2wxTUZad2NGcFZLek5EVTBZeWIwSmFSVUl3YWpOblprd3JTR0pIYTNORlR6bE9hMlJSWkdaVk1saFNUV3czYTBJNUwzRklXRVZzYjFwcWNBbzRSeXM1ZEdadk1Xa3hhakZxYWxOU1ZtYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zNWNrZGYydy02MGU3bnAwaS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdGhpY3p0ZQpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdGhpY3p0ZQogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGs3a2dpY3lsemdfY2xpYWtzdGVzdGhpY3p0ZQogIG5hbWU6IGNsaWFrc3Rlc3RoaWN6dGUKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0aGljenRlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGs3a2dpY3lsemdfY2xpYWtzdGVzdGhpY3p0ZQogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVOVJjRWRqVkU0NGIzYzVZa0ZPV1VnMVlsSjRWMWwzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwMTZSVEZOVkVGM1RYcFZORmRvWTA1TmFsVjNUWHBGTVUxVVFYaE5lbFUwVjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJNMmRWU25wdlUxVXdVbEZPUzBnd2FuZGFaM29LZFZSVGEyWnFhRE5xUjNZdllrdFNSa3A2YUdsbE1uUk5XbkJUTVRkUFdtNDRTbGRRYkRKVVJWTTJNWE5UTVdwTldURjNSMjFFU1ZSS1VtTlBaV0phYlFwUFVrZE5ObTh4VlhZd1JrWmthbUY1ZUZReWRIVkdhV0pFZVhoNVNrSlpVRkF3YlVaV1EwaHBTMkpRY0dGb00xSnViV0p0TlZwVlFYVjJVbmhyWVZGRkNuSXZPV2hpWkRGSWFucDRjMkp4YnpGWkt6ZElOR2xTYTJaR0wzVmljMnN3UmtwWldGbGpRelJ1TjJaNFRuaERUMFV5VG1sQ1JFeEZiamxaTVdSUU1YWUtOa3h0T1RFelQxRkJlSHA2T1VVeFYxa3JaRUk0YURGUlZEUkJXRFZJVDNacE5FMUZURmh5U2tOWFVqUXlTekIzYmxKa2NUSkdVWGxvWjNGNVRFa3hiQXA0U1ZoeFlWSlpjbWhIZVV4SVZ6QlBOR2xaWVhKUVltRkhOVU01VFdabFZXOVFhMk5KVUdWSE5FTjNVMFJuYTB4RVltNXVha0ZaVkhKYVRHOW9ibHBSQ25KUFQzbFdXV3BRTWxGdmJEQnZjRkpVU0hBd1EzTTFVMkZHTnpWVGMzRnVjMjFUUkZGRVIzWkxSelE0WTFOeEwwMU1OM05oV0N0TFVWQkxkak5pWkdvS2FrWnJkV1UzYmxvd1ltbFRkazVUUmk5bmEyaFpaMFZJYjNSbGNucGtiVTVSWjBoTU56TldSbHB5UnpOUlRYWmFUMHRTZW1Oek9WVnBhMlpEWVRKSFJBcHRWVTFJZEVSclJuUTBhbnBzY2xSRE5IbGxUa2hNWW5nemFVOVRkbGRuWnpOVFFWVkRUSEY0U2tZMU1raEtjM3BKYkVoaVdWRXJhV2xxZGtNdldWQkdDbFpWY2xCTllWZHhLeTlMVm5WTVMyaEZlV3AwYWt0cll6TkxORWMwU0VrNGIxcERXakYwTW1VdmQzcHhORWxTUlZSUVNXaGFhREJXUWpOdU5YcE9jRklLTlVWd01rSlhaVk5UVlVJM04yUlZiRk01YW5NMGRrWmtiR2RNT1hWa1ZsaDZZVEozUkVoU0wweFRlRzVoUmpVeGRsRllVbHBOU1RkdVlqTTBTREZSU2dwaWVVaE1aMmMyUWtsM1RGWnlaVEJTVTNaRlkyUlFjME5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZZVUUzVkVwR1ZXNEtNMHhsUkhOUUszQlFkWGREY1hKcWMzcDNTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJTRTU0YVZadFRtaFZUbk5uSzFRdk1qUk1aUXBLVFRKNlIyUndabTFDY0RWTGFGbHpZMnB4UkZjclVVWlpNV1JsVDBSUVowUktUbWRDT0cweVVYcDVMMEZyTDJsU2JraDBRVmN3ZDJrMWRHb3ZhMEZTQ25veGIzRnlUV1JTVENzM2QxSnNZMUJwYkVOUmJ6TnpZbEpQUVU5blYxTm9jbXQ1WWxwcGRscENlbEJXTlVKNFRFVTJZWGRWTW0wMFFXODBRWFF2U1djS1prWjVRMmhXZVVNclZXTnBhWGMxUVU1SFdUUnVPVU12VFVoMU9URkRhekEyV210Skt6aFdORW8wY1haaU4zWm9jbUZhUVdKa09WaHdWekJOWkRWd0t3bzVRblYwTkVoQ1NteFRTRmczYW5oQ1EySXhhRkJuTjJaaFJrWTBSREpsTnpSWGFXdEVaMWRtYVhaNGNtVm5hRGxJTkVKM2FYbHJMMVpxZG1WSmVDOW5DazFGVnpKaU1Fd3JVazVMTkZwRFFXbzFVRm81VkVWWVkyYzVkWEZOUmxwUFpFdEJaa0l5U21aTVFrUm1VSGxJTDFsMGFFVjBkV1ZDTlhWUkszaElOMGtLUVZCNVpGWlNUR295U1ZRMWNXaFhjWFJTZUdwaGFXbHVZVEZ6VFdsbFZuUTRZM2huUkVwaFMxTm5NbWx1UW5rNGFETlRhV2RDWlN0cWF6TnBjVlZQY1FwbmJra3lORmgwWlVwRk4wOWpRWFZWUTFVcmRWY3pPRVp2T1hOb01UUlBSV2hVVm5oU0szQkRlWEppSzNJM1IybFpWbEUxY1VkeFVrVnZZM1ZVYTFWQkNrWm9UMVJaWWxKQlRFRjJkWFJuYmpkb1ExSTNWWFJqY1V4YVZXaFBVREU1Tm5WaFYzcGxWM0I2T1Vjdk16Tkthemt3ZVN0c2JVZGliRmc1ZERCblUyVUtWazlFUzNWWU4xQlVNMFJPYjI5Nk9HcFFSRXBVYVZWVVdpOTVSbUU0T0dwcmNsTndSV0pYVEZOeVdXdDNURkF2TTJoa1ZqVjJiVmd4YlM4d1RFTTFRUXBDVjFRclVYUkRhM1JqTlhKSmNFSndTRGxFZEU1eGFUWkJaa012TTNaUk5qWklRU3RtVXpGc1UwbEtkMFJKZWpReFNFMHdTMnd6VTJ4bFdrTjRNbEJ5Q2xGRWRHZE9XbFl2VVhFd2NYUXlZbWsxU2xCalp6SkxMd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJNMmRWU25wdlUxVXdVbEZPUzBnd2FuZGFaM3AxVkZOclptcG9NMnBIZGk5aVMxSkdTbnBvYVdVeWRFMWFjRk14Q2pkUFdtNDRTbGRRYkRKVVJWTTJNWE5UTVdwTldURjNSMjFFU1ZSS1VtTlBaV0phYlU5U1IwMDJiekZWZGpCR1JtUnFZWGw0VkRKMGRVWnBZa1I1ZUhrS1NrSlpVRkF3YlVaV1EwaHBTMkpRY0dGb00xSnViV0p0TlZwVlFYVjJVbmhyWVZGRmNpODVhR0prTVVocWVuaHpZbkZ2TVZrck4wZzBhVkpyWmtZdmRRcGljMnN3UmtwWldGbGpRelJ1TjJaNFRuaERUMFV5VG1sQ1JFeEZiamxaTVdSUU1YWTJURzA1TVROUFVVRjRlbm81UlRGWFdTdGtRamhvTVZGVU5FRllDalZJVDNacE5FMUZURmh5U2tOWFVqUXlTekIzYmxKa2NUSkdVWGxvWjNGNVRFa3hiSGhKV0hGaFVsbHlhRWQ1VEVoWE1FODBhVmxoY2xCaVlVYzFRemtLVFdabFZXOVFhMk5KVUdWSE5FTjNVMFJuYTB4RVltNXVha0ZaVkhKYVRHOW9ibHBSY2s5UGVWWlphbEF5VVc5c01HOXdVbFJJY0RCRGN6VlRZVVkzTlFwVGMzRnVjMjFUUkZGRVIzWkxSelE0WTFOeEwwMU1OM05oV0N0TFVWQkxkak5pWkdwcVJtdDFaVGR1V2pCaWFWTjJUbE5HTDJkcmFGbG5SVWh2ZEdWeUNucGtiVTVSWjBoTU56TldSbHB5UnpOUlRYWmFUMHRTZW1Oek9WVnBhMlpEWVRKSFJHMVZUVWgwUkd0R2REUnFlbXh5VkVNMGVXVk9TRXhpZUROcFQxTUtkbGRuWnpOVFFWVkRUSEY0U2tZMU1raEtjM3BKYkVoaVdWRXJhV2xxZGtNdldWQkdWbFZ5VUUxaFYzRXJMMHRXZFV4TGFFVjVhblJxUzJ0ak0wczBSd28wU0VrNGIxcERXakYwTW1VdmQzcHhORWxTUlZSUVNXaGFhREJXUWpOdU5YcE9jRkkxUlhBeVFsZGxVMU5WUWpjM1pGVnNVemxxY3pSMlJtUnNaMHc1Q25Wa1ZsaDZZVEozUkVoU0wweFRlRzVoUmpVeGRsRllVbHBOU1RkdVlqTTBTREZSU21KNVNFeG5aelpDU1hkTVZuSmxNRkpUZGtWalpGQnpRMEYzUlVFS1FWRkxRMEZuUVZkUmNsVlJRWFJWVlM5WmFYZE9XbEJtVG1zMlFsWkdhbXd5ZFRKS2J6ZzFlR0Y1YzFBeWNWSjBUVmd6ZDJwNGNVdHFWRTlCZFUwMGVnbzFUVTlXZG5WaGNua3hValkxWlVFeldrWllkRVY0YlRsa1JqbGtaVE5uUVd0SWEyUXdRVXRTTjNKM1VEaE1XVFZXU2tRdlpsaHdXVk5sYm5aak5GTjBDbmRrVURKVlNHRnVNRU5QVkZkVlpuWllkbWMyZUc5WFdXbzNVakJ1VVhRNGR6UkpTVkkwZFhKelRqZ3phazV3TTNaNVVtZEpRa2s1UVRKc05GbDJRVzRLVDJaaFNUbFNNVE5aZFRaTU0xSjNXSGhoZEZoU01XZEhlV1ExZEc1RGJpOXllazlUVkVaWVpHVmtLMlZzY2twVEx6Qk9kRXBUTDBGR1UxWldka3RaZGdwc1V6aFNRbEZVYXpOTlExTkVObGxFTWt4V1ZVbFZRbkZJVTJSSFFrSk9WSGhCYUVzNU9FMW1RMU01UkRFMFVUTk5WM29yT1Vrd2VuUkdiM1p3WVhBdkNsWTNTWEpUWkM5d2FteHBVVmxOU25Cc1RGcHRXV1ZPTUdvcmNGbHhOREExZDI0eVFqSTNlbFJKYkdaUlFuQTBRbEZyYURaeVZrTXpORVpIYW0weFIyTUtWbE5RY2pSWGVrVnZNbVppWlVSU2RFcFBhVmRtWnl0dVVUVnBiR1Z6TWt3NWNFVmpkVzh5UmtkcWRIWkpWR3RKVTNOVVdFUk5WbFE1VjFvM1dXMWlOQXBKUVVnM09XNUJWRmRyU0VSMWVURk9ZMVZLY0UxbU9XRTBkMlpwTWpZclZISm1iMlpzY1cwMGJtZ3hiRFZGZVdGaVFVVkNPR1JYWWt4aU5WSk1ZbEpQQ2toYU1tRjBSSEpVTlZoM2NYSTRWVGxFV2tsU1UzcEJUVVZETlVSR2MzZGFLM0ZsVWt0bmFsSTRUMnMwVHpaSWVIbFZlbTFXU0cxSU4zWkJRbVZyTTI0S05ra3lRMDlQY21GM1lXUnVZV2xGVG5OTFJtOTJhakVyVUcxeVVVUXJOVVYwZW1kTllrNXROM3BLZW0xM1NuTldVSE5vWjNOMVNIZFRWemh3VWxGcFJ3cEthakZTVm1wdVRVcGhhbGgzT0VsT1RXazNkbWwzUzJKSFUyODNTVUV4V0c1M2NsTXJZamxKVEdVMFJGbFhORU5qVVV0RFFWRkZRVFpJTkdGTU1rMXJDa3RaV25sYU9XNWljRTU1U0c0d1RsUlZUWFFyTUVKeUszbzNUalk1WkhGeVUzcEhLMkZSYm1SV09YVXpWbkl4TkhobVZqZENXRXB4V1hZNVl6QmlSMW9LT0VoMFUyazJTalJoWkVRMU1FOWpOblJtVjBVeVdFbDFSa2RaYkZndllURk1RMlZrYVZwMFV6bFNhRGhMTW5GRlNGcG5TblkwTWpNclMxWmtXSEZFZFFvNVJuQTFhU3RIWVRGTVowOURkR1ZvUjJZd1pXVmtiMUpEZDJkV1R6TnpVR0pyZG5aNGFUaFRhSFZOUW5CSE9WUndZbFV6Y0dOUVpVcDZlaTlvUzFKeUNqRTJNazlHVVZRd1JVbGxZVVJpZURGeFVVUm1UbWhKVVdWSmRWQktUVzlRY1ZkcmFGSkpkamRhVTJVdlNFOW5LMlJZZEZKWlZreHlURTF4U2xGWFZEUUtVekIyWmxOU1RVVnVXSEZXTVdWNWVVSkZLekVyVEcxUFZXbEtNMFp3VVhnMVRXeHFiRm92VGtjck16ZFVVVkJ3WVRadlFrcHpTMGxxYVVkQlkxWnlaQXA0WlZSdVYyUmFNbVpRTjB0QmQwdERRVkZGUVRsSVptRlNhamhUWVVwdlpTOVNSbXRuWVhjclZsQnVkREZQVkVoelVtUTJRVVkxT1hSMU5VaGFhSEZvQ2xNNVdqaElUVmszVTBWQlZua3pjMGRuYUhGTVJHdEtLMFpHVm5kR2VYTjFWRU5RZVU1MUt6WjJMemxOWTIxMWJXSXhSVlpZTlV0dFZXUm9NRXgzWjFJS1ppOTZRMFpEVVdaMVJpdFdkRzlPT0U5bllrczFLMFI0U21aMFoydFhOSEpwY2paaU1IaHljaXRhTVVObU0xQXZjSGR3UTBGeE1scGlWR3RpY25wNk9BcDVTWFp1ZG5SR2FISTFSMG94VDNWcGFqZHNjbUZRVFdsbGFIRlBWa0pzZWxoT2NVaFFVbU0zTm5oc1lrRllTRlF6YkVReU1UaDNaV3RFYUdWRVoyTlVDalI0ZFhCV0wyb3ZVVlpzS3pWSFNIbENNQ3QwWkRaalJYVkliemhRUldkc2NrOU1NM1pIYUV4YVprbEdZVll3YUVwUWVWVk5MME5UVVcxVlJXdGtOREVLWWxSU1VtaFpiREZFZG5abWRWWnBXQ3ROYkVwRVpWa3ZOM1pKTkdJck1reG5WVTFrZEN0UGVuRlJTME5CVVVKWU1FcHRkbGxJUldWU2FYZGpWV04xUndwMk9ERjVUMGx1Vm5OTFpHSnFNMkpFYlZCV1QzVTJUMHh4VjFKVldrZGtOR05uVFZRdmEydEtOMHRxYXpZNGVVaFVRa1ZTUnpGWllqUldhbE5oVkVjeUNrNXFja1o2ZWtRM00xcHhjVlF4YUdOWFEwTjRNa2wxYUNzcmVXcE9NRzVyVkdKV1NUWk9hWGxJVDFaQ2RIaFFVVVpTV0hCVmFuZDJhVFpVZUZWMWRXRUtaMVpMT0dkaGJsZEhVMlJVZFhsNFNUQkhja1Z3Y25sNlYyNWtZMnRvWTJKWU9EaFZMM1l2U0ZSWFYxSmtVMUZMUTJnMGVGTmlSalpMTlVoS1IzRXZaQXBPYm5KWWVWZEdabnB1WVVKQk9USTBlVzB6Y3pWWE1UUXZZalpXUmpWTFJFdE1iMnN2ZDNadlkwRllWRVIyUkVwWlJUZHljRzF0Y1dSNVVVWm5LM1IzQ2xkQlkxVlpSM293T1NzMmVETmtVMFkzV1V0NGQzQlFPVFpLZERKMmJqbEpiREpGWlU4cldVVjRjR1pqZG1kdE5rNWhiRUZLTmxGM2VGUTRiRlJpTkM4S2FFUldiRUZ2U1VKQlVVTjZMMDFZYTNORE1HbG1SVFZUWW1keE9HVm5PRTlUTVVKNVZFNXdSa3BSTmpZeFRtSnFOWFl3UlZSS2FubHRRVU5oZDNOM1JRcDJjMGxPU2xFcksyNUZTa1JDYlhWRVJuZENSek53UkdkdFFuRk9ibVZUTVRGUldEUjJRVGd5Y0RsRUwyODFNekphYkVoelEzQnRkbnBITUhKdVVXdEtDbTF5TlVWUFVIZDFWVXN2TVVaeFZWWklUVmRXWWxSS04yNVRhRzEyWTNnNE5DczJRVzVsZG1Oc1R6TlRkMUJPVkN0b1lrczFla1ZLYVdjdlpXRndVSE1LVTJzdllsSnVNVk5MWldKT2VIbDRZMFE0T0RSV1pVTmpkbGgxVTFjNVprOXRUVlp5UVRrMVJVMVJTRGhGV214NUwzb3diMUZOWmtGcWNUUlpVMmRtVFFwdGJFdFdXRkpPZG14S1kxaHZRVEJYYzFaQ1JqVmhlSFphUlN0WVJrbGFiV3RXUTNkeFZrNXpkM1JXZFdoRVJqWXhjSE5PZEdwa1NuQndjR0Z2WTBKbkNtWnpjbEl3UlhSaVlsQTNkbFE1VmtWWVIzUXlOVTFMZDAxaVZHZHVZa2MxUVc5SlFrRkNUbkl6VVhVNVUxQk9NVzFrYzFwQlRXcFNOWGhHWldRd05Gb0thbU5aYTJ4V01ERkhNalp6ZERCb0wycHJNa1ZPYkVwWmVrNVdhRlpxUzFsbk1HVmtiQ3MwTUdRM00yUm5TRXBKT1VWdGFFazNRM1pDT1dGRE9FYzNRUXBUYUdOeFVVOVhRVWcwUjI0dlFqTmhiVGxCTkZkcldtRjRPV2RxY25kc1JqQTNOMVp1YUd3M1FVeFZiMUozWjNCNlNWYzBkM2R5VHpod2FqUTNPVmRpQ2pFeFRUbHlUWE5sY2tOT2MyWXhUbXBNVW1sR2FVY3hVMEp3YWxoU2VEZ3lWMFlyTWtOb05VYzRObkJNTWpGVlozWkhibWhxY3pGUU16RmlRM281YmtRS2NIcE5PSFI0T1doTkt6aGlhVlpEZGprclZrWXpaRlJLYWs0eGIzaDNNbTlqYUdjd2RYSkxSV05yZDBWNmRTOXJRMFYyVm5KNVFtdHZjM1JDWVU1UmFnb3dlVFJ4V1V0RmQweGhNbU5RTUhReFUyaHFZbVo1Y1dWclpIcHFWVEYxU2tKSWExWlRjVmhvV0ZwamNGQklUWFl2Ymk5SE5YTlRMekJHUVQwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBjdnliMmR1YXZ0ZHhuamFkMXYxMno1c3k2YTh2d2RkZmVlYjJzYnU1ZXBiaDY5cnR1anhmcGNhcnptZ3V1NW9iN21raW4wcWJudDkwb3N0N2N0c3U0dDFzaHlxMnFmMmR6MmY5aXVubGQxaHliNHh6ZTd4dmM4cWRpOGFnYnQ4cgo=\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUlV4WU9XSXhNM00yVkhCa1dVcFJPRWxVTWpSMWFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYbE5WRVUxVFZSa1lVZEJPSGxOUkZWNlRVUlplRTVFU1hoTmFtdDRUakZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOMENsTXZUVWRhWnpBNWQyOXpMMnhOYm5FeGRHMVNNME5MVUhsTFNVUldkM05HY1ZsbmNVMWhVMU5JUkRCRFV6SnZiR0ZYUVdoSWFHNXNlVElyVms5QlUyY0tlRzV4ZERoYVJIVmFPV3BOWkdkNlNDdFhUVFJETTNBMFZ6UjZSRE4zWm00eVpqVlJNWGhYWldkUGMya3dkMk5SVUV4NVdEbDVZbGhDTlVOUVN6SkdLd3AzYXpJMlVURjFkMHB6ZEVsTFExWlZXbWQyZGs5U00ybFpOMDlyTmpjd2VtSXJNalJsWmt4UmFTdGtTbGhUUmtjNE56bFFVRnB4UTFsVU5rbHBWMnRCQ25WS1N6ZEJhR3BuV0hwSWVVWXlVVFl2YVRWd2RYSjJSbk5qWlVSc1NsWTNka29yU1VWeU16QndZMHhXVUVKUWRFSXpZWFZXZFVOSE0xVlpZbmROTkZRS2JUaFNZVXhMU0RsM1ZDc3paM3BPVEZwdk9Xa3JWMVE0Tm5FcmVTOTJOazgzZGl0eUwzTkZkbGt2VVRKMVZHSlFhRGRvTTFwYU9DdGphRU5MTjBwVVJ3cFBPRXRyUkZOdWIxY3paM2RoYjBjMWFUZDBOQ3RZT1VWdWQyVmhOM0UyZWxoT2VWb3JNalp5TWtWdVVtMUxOVEp6VTBZMk1tbG5PRnBpVVRoeVVuRlRDa3hMYW5GSWJ6aDFNamQxUmxWQ1dVZFhha292TjBzM2RuSkZjRzl1Y25wTWRsRXZZMXBFT1UxU1RGaEliRzFMYlhoM1oxcFBNV2hyVG5SdlJGZDJUMVFLU1ZWSU9UQlhValZ5WXpOT2NteE1UVkJQYkZob09HMVFPV2syWTNKQmJFRllibmRXY0RCbWIzUmhURXN6U2xoM05GVjZiR3BMV1hkUU1tTlJSVTVZTmdwQ1VpOVBTMFJoVm10UmFYSjFjR1JhWjFoMlVrZFhWMk14VURWQmJERTBWMVJYZVRWdGNYbHVOMjE2VkN0UVEyMXBUVk1yTTFaVE1VTlFiWHBOVDFaUENuSnlNbmt5WTI5eE0xRkxSbkppZGpKWWFXazNVVEZxTURSc1JGaGpLMDF5UTFOV1VrNTVOVEkyY2xOeU1VMVBSQzlDVVRoU2JYUXpMMEp4V2xaVFZtSUtjRlpKU0hOek4yVkVORmhUZEVSS1NHTlVMMmxzY0haYVVTdFJabmRZVFVWck5rMTFRWFJhWnpGUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWMVJsUjVRVUZEU0cxT1MzbGhZWE4yQ201WVNIVkhMemhhVm5oSmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRFQyeDZkMUJPVGxvM00yMXdkMFJtU2tFMFpWQm5iMjl6VUU0S2FsTTJabXBqZFdKeWEwcHZSVWxtVjA5bUwxcDBjM3BvTVZwblMxZExSeTlqWldrNE5XeEJiRVkyVUdOUU5tWkZXRzFXZW1SMFdTODBNbU5QTUVoa2FBbzRSalZtYmtNM1p6QlNabnBFTW05bVRrUk1hbVJXVm5OTVoweHhSWFpVYWt4amNFeHRVRXBYZDNFelMwNUROR0ZXY1ZBdlFreEhVV3RJWVhaNWN6Z3JDbWhZVG1wNmNXVXhLelEwYTNoRlNGWTRlbE13Y0VwWFNsTlVXR1V4VG1kRmVWb3ZPV1pXTUU4eVMyVlJRbWh1UmpobVV5OUJSazFQZFZKaGIweFhWbEVLYVZKakwxSlFZUzkyWm01bFVWVkZNR2M0YUN0NE9YYzJhM1paY1ZoMVZubHRWemxZYUZoQlVFZFBkblowU0VZNGNFbHRWRzF3WW5BNWVqTndhMVZDVlFwWlFVMVhhbWwyZEVod1JFMDRUVEE0ZERRM1JsaDRiMWx3VGtzeVV6QjRjVkpvVjJOd1RtSTFTR1ZpTWxrM00yOWhVRWh6V2xOUmVFcFlWMDAwYjA5UkNrczRRa2QwY2xVdlZubEZURkEzZVROSVR6VkpRVWxpYkRoREwzRmFVM056VGpWeGFuWjRMMnN2YVZKQlp6QlNaVWxtTmxrclVtdHZNVEJSVkRSYVZtb0tMMmxMWVdWTk55dEVUbFF3WVd0S2RGcFhNV1JtYTBwVFNuaHFUV1ZwVEZWM0wzTlZXVUZKTlZWeGFFMVphWFpaUW1GcWVuVm1SRE14TUd3dmNGVXZNZ3BrZUROM05IZGlWWFpaVUdoV1ZGWTFORkpsTjBaQlRrWTNWRU5tYUU1blZWZzRheTluUTFndmJHOTVhVFZWTmxkRWFYbFBkbVZwWkhSM1owdHhlVGxDQ21jMVJFeDRiVVZQWW5vNVEyTTVTWFpWYlRoV2Npc3ZXR2hxZFRCSVYzbE5hbU5pYmxKSGNESjNPR1JUY3paMVVHcFNTMnhrWjBKR2MxWjZLMWRJTm1vS1UxaEhiM053UjBsNGMxaHRSWHBxZDB4dUwycHRkWEJzYVRGdGJ6SkpkMHMzVVhwelVqSXZaM2x3UXpobWRFUlpNVXRzVERGbVoyVnJlbmhrUzNodGFBcEhNMVF2SzNsS2JHeFZWMGQzYmpKb0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2R5cG90dmotazFjeGY0Y2EuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3Rkbm9wYWIKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3Rkbm9wYWIKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RoZWdhc3U3a3JzX2NsaWFrc3Rlc3Rkbm9wYWIKICBuYW1lOiBjbGlha3N0ZXN0ZG5vcGFiCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGRub3BhYgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RoZWdhc3U3a3JzX2NsaWFrc3Rlc3Rkbm9wYWIKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJaRnBNYTFRMGRHUmhVRFUzYVZsb1VIcFdSakpZUkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVVhsTlZFVTFUVlJrWVVaM01IbE9WRUV5VFZSUmVVMVVTVFZOVkdSaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVU4zUWtaUlZqRk5RblUwUW1wSU5GcDVVWGwwY0VnS1VGQXpZVlJ6WnpaWFVWSlRkazAxTURoR01YQlVLMk5vTnpodlRrOXlRazEwV0c5R05uaFBVM2h4WVZJeVIwcENjV0pJY0hSMGJWWktkMUZxUVhOMU1ncHBZbFU0VjFwUU4wZERiek5KTkZSeU0yVktSVWtyUzNVMFoyczRTbTE1YkdGM1dVTnBiMGsxZEhOS04ydG1WMjl1V21wR1FuRlpiVWRPY204NVZsRnpDa1kzVG5GVFEyMHhSM2M1WkdWQ09YUlFMMEZzYTFkbFQzUk5XblI0TldObFJsbElTR1l6UzNRM01sWTFiRWxZTWsxRk1sRk9Za3BIV2paNWFEbHNaakVLWVdGRWJYcE5RVWxsU1N0MU1ERnZla1JJZUV4VVZYRXlVakkwTDFsbWRWTldVMnhRUkdGSmMxcERjV1UyU0ZwbGRYZEthazFVUkM5cldVTjZSekF3VmdwcWMyOUpUVkJrVFZZM1luRjZUbGh3TXpSNlQzazRUQ3RpY1RoVWQycHZNbVZwYTFsVFlrNUJZMEo2VVVOYWJraG5jakZ3UjJ4UFpqTXhPVTl6TW1sSkNqVmpZMkpNUm13elNqaGpTVFZKYkZkNFJFWkpSRkZCVGxsUGEwNVRkMU5YYldGT09IUjFUbnA2YVVkV1REVnZXVGhTVTBoemFTODBURkk0UlZkNGVtOEtNVmhaVHk5Q1lsVm9jamhRUWtGMlpDOHhXbEpCZEVSV05HcG9lU3RUUVRoeGFuTkpNbWtyUlRFNWRXRTBPRVo1VlhKaGMyOXNTazFHYlcxUllsWTJid3BXVnpWMlpEUlBSV0pQTWpKWFdVNVpaMFpzV0daaWRYcHRWVVZNYUdOU2JYUkRZblpFUlRCbVdIRmljMlpJWlVKb1JHdzFPRGR2VDJaRVpYcFJaRUZuQ2tNd1puRm5XRFJDWkZCUlNURlJPR2xuVkM5b2JXRktURXRwY0dweGQzaGtZamxQTldVMlQxbGpTWE5OVjI0MVdXbFBXVVl2YVVsTWJHdHlibXd3YUdjS1JHdHZTbGQzV0VONlJ5OU5TemwwTlZCbldGQjBhVVZ5TUNzemNVbHJWM0p5YVc5RFRrbDFObVZHTnk5WVZWRlVWalZCVURGb2JFOXhiWFI1UkVwblVBcFhXRE0wYWpsMWNYUTNTazEzUW5oTmVYRTVkVXQzU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbE0wVmxCSlFVRkpaVmtLTUhKS2NIRjVLMlJqWlRSaUwzaHNXRVZxUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZvUkZSS1IybFBkbGx3TWtWbGNHWlZVM0oyYUFwc2FWRmxVR2x1Wnl0SWMwaERia0kyY1VwQmRpdG9WMmRvUXl0c2IwdFJWblU0WkVSU1ZURlplRFl6YTJSbFdUUkVPVVEwS3pCRE1GUjVXamhFUWtGdUNqWlBTMkV2VUc0ek5qUjBSRmRST0dSS0sxWkJTRmRCTkVjMVVVUnhZVlpYZG5wTVUzbGphblpxUW1aRVRGWjJiR2N6U1U5bWQzYzBaMkl2VkRSMVpXa0tjM0JFTURGMkwwVTBSbTVOZFRRclZFdFJSRk5HZDB0cFRFODNWVmROVUhOc04yNWxXa1ZGYm5jcmFVTnNXWEp4TjFod05qbHlhVVJoTlZFNWVXSmpjZ295WWt4S1YwRkNaM1phVjJKalpuTjJlV3RZWlV4UkwwbHpkMUZSU0hGa01tWTFjMnRFUVVaaFowNU5LMWxWTURndlZtZFFVbVJoTkRNeVJ6Rm9hMDQ1Q21sbVV6QnFjbTg1TDJjclZpdEJjV1ZMWVdkU01qVnliRE5OYTNGSkwwUnlVRzV6T0dFd2MxSkJMMjlVT0c1dldIcDBWVzVLTVZsS1JYSk5VbWhNVjJrS1VHZ3dRM1pYVmxGVGFISnNjMjUwY1VodVRVdFdSV3BNSzNjd1l6ZG5kVkV6YlVkdFF6ZHBSVGwzZURKV2RrNDRRakpMZGpGSE9YZ3lNREU0UkZoeFNBcEtRVmxITW1kaFdXY3lWMjFMZW1OU1pVNU9lbGhUYmtkbWRFeExSekZGTHpoa2FYRm1VRTVwTTBnMVpUSmhNV0ZzWmxWb0sxQlRWV05aUVZwMlluQk9DbGxWZW1KcVlVeGtVV1V6VkhCcmJTOTRiME5IU0RoU1NuQldhVzRyVUZGaVdsTm9TMk4zTDJkTGNXdGllWHBKTjFKUlVreE1RMnRJVWtsMlNFSTJiWE1LZDFoM01HOWtORTR4U1ZsUVdUUnNTREZSZGxkb1F6aGhiVFZTUmxJdllXNVpjRmx4WlVSeldEaG1kVEpUVmxOYVFtSlFTRXRKTjI1QmFGRkpjVmgxVlFwWmVISnFkMjVHVFVWbVNqVlNURE15YW1KWWFuSm5XakpLTkVkTlF6UXZXVEkzV0dGRWIyODNMMko0VmpOVlIwVkRlbWQyZUZOcmNraGhURnByTlc5WUNsZzROR2N3UzBSeFRXNUtaVlJaYTBWaWJXaDZObTgwUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCYzBGU1ZVWmtWRUZpZFVGWmVDdEhZMnROY21GU2VubzVNbXMzU1U5c2EwVlZjbnBQWkZCQ1pHRlZMMjVKWlM5TENrUlVjWGRVVEZZMlFtVnpWR3R6WVcxclpHaHBVV0Z0ZURaaVlscHNVMk5GU1hkTVRIUnZiVEZRUm0xVUszaG5jVTU1VDBVMk9UTnBVa05RYVhKMVNVb0tVRU5hYzNCWGMwZEJiM0ZEVDJKaVEyVTFTREZ4U2pKWmVGRmhiVXBvYW1FMlVGWlZURUpsZW1GclozQjBVbk5RV0ZoblptSlVMM2RLV2tadWFuSlVSd3BpWTJWWVNHaFhRbmd6T1hseVpUbHNaVnBUUmpscVFrNXJSRmQ1VW0xbGMyOW1XbGc1VjIxbk5YTjZRVU5JYVZCeWRFNWhUWGQ0T0ZNd01VdDBhMlIxQ2xBeVNEZHJiRlZ3VkhjeWFVeEhVWEZ1ZFdneVdISnpRMWw2Ulhjdk5VZEJjM2gwVGtaWk4wdERSRVF6VkVabE1qWnplbFkyWkN0TmVuTjJReTl0Tm5ZS1JUaEpOazV1YjNCSFJXMTZVVWhCWXpCQmJWcDRORXM1WVZKd1ZHNDVPV1pVY2s1dmFVOVlTRWQ1ZUZwa2VXWklRMDlUU2xaelVYaFRRVEJCUkZkRWNBcEVWWE5GYkhCdGFtWk1ZbXBqT0RSb2JGTXJZVWRRUlZWb04wbDJLME13WmtKR2MyTTJUbFl5UkhaM1Z6RkpZUzlFZDFGTU0yWTVWMVZSVEZFeFpVazBDbU4yYTJkUVMyODNRMDV2ZG1oT1ptSnRkVkJDWTJ4TE1uSkxTbE5VUWxwd2EwY3haWEZHVm5WaU0yVkVhRWQ2ZEhSc2JVUlhTVUphVmpNeU4zTTFiRUlLUXpSWVJWcHlVVzAzZDNoT1NERTJiVGRJZURObldWRTFaV1pQTmtSdWR6TnpNRWhSU1VGMFNEWnZSaXRCV0ZRd1EwNVZVRWx2UlM4MFdtMXBVM2x2Y1FwWk5uTk5XRmN2VkhWWWRXcHRTRU5NUkVad0sxZEphbTFDWmpScFF6VmFTelUxWkVsWlFUVkxRMVp6Um5kemVIWjZRM1ppWlZRMFJubzNXV2hMT1ZCMENqWnBTa1p4TmpSeFFXcFRUSFZ1YUdVdk1URkZSVEZsVVVRNVdWcFVjWEJ5WTJkNVdVUXhiRGtyU1M5aWNYSmxlVlJOUVdOVVRYRjJZbWx6UTBGM1JVRUtRVkZMUTBGblJVRnFWVFZqVW5NMWRUQnNVVGM0VEU5U05ISm1TR1J4ZEdwVVJrRXdPVWx4YTB0MGQwTnFkVk56ZVZNdmNHRldaemxEUmxCWFZuazNWZ293UlhsQ1oxUk1WRnBKUTI1dFVHeHVjVU0wZDBSVmNYVlRiMFZxUlRrNFNIcFlVa2xzWVhNemMwNDFiVUp2YTNnM1pYY3hVSEJ4WlU5V2FreHVhREJIQ2xSVFNIWkhMMEUxZGpoU1ZYbEdTVVUxUWk5TVdWRm9Va3htV2s0MVluWTVVVVpVUVdwMlJYcGhOa1pWT0ZoelJVTjBWSEJ2ZVhCRWNISjNNU3RIVUdnS2RGVjJLM1k1TlZKM09FcFdjbGRtYm5wT09HVjVUMFJSVDFwSmRqSlJaemh6VXpCeksxWXZORlZoZWtKWEwzZHdRMHhpTjFKTmVXaHRSMkpNT1ZKV1JBcFFXVU12WTJjelZVaGFRMWd2YzB3MVZISkxaVWRJTkhsTFVtWkJNRmsyTldGTmQwOXlTVFEyWm1SUFJqUXJVMmhCVWl0YU5HNU1kbEZPYVV4eVZrcDZDa1JXYlZabGVWUkhURTF0V1ZkQ1FVRnBXa1Z0UlRGSVlrUkxOa0pQZUdvd2MzZFBaazFDVkc5QlFVVkdiMUpQYmxWc1NraHhWVlZHWmtaSFdIRm9TR3NLV0dGUFlYaHdWbHBrTjFZeGFVWlVTbmRwTnk5eE9YWm5Vek50SzNkdGRtNWlZbFJoTmtJeVZGWlBRMWwyVTBKck9XTnhXV2hsWkdNdmJ6QmFXVmQyU3dwelp6TjVkM1ZDVjBOUFZtVlFUMVZOVkdVMk9FMUVOWFpaV0hGWFJrZE1LMVpSUm5GQmRrdzNSMjVNV0ZGRVdUZFZVWFkyTnpnMmFrUTNRbFJDUWxkWkNtSnVaMnBIZEN0b1EweDJkelo2Y0N0S1ExRXhVMU12WmpBdlZuRklNV1pFT0dsTVYxb3hkelJOTVdKUWNDOTFTV2RITUZFMmFsSkJVbTFPV1RCak16UUthMEkzZEZaNFkxaFdhVE50ZEZWT1pFWmtVbGszU1hwWFNWVXdXVWh2TkVGaVQzTTRiVzFZWVVRcllUTTRUM2xwY1ROcmR6QjBkRGMxWVRReGIwVnpVd294V1c5WGJtMVpka1ZpZGpOYVRURnRLMXB4ZEZRMk5XSnNLekJTTjBkRVdXUnROamRwVUdaalJVRXpPVmN5WTNsdFJXdERaMmRGUWtGTk9FOURaRnBEQ2tWUE1IZE5iakUxYjNwcmIycHRjVTlrYUhaTk9USTRTa1U1VnpadVNtTkpWR2czZEdOWmNIbEZUWFJhYVVNd2VEZENWRmxZYTFOT2VsSTBRM0pVWVVnS1pYbEVaWE15YmtGMmRWRlFhbUZZZUZCb2JtNVZNRGR2V2psdU5ubE9NMng2V1hNMFYydDROVVUxUW5oNVZrNVhaVmw1V0VWeWVubHRUa1ZzYzNBemVncE9UV0o0TlZGSWJUVnRkSGhQTVVOeE9XRnpOREJMUkVkV1VWTlZjVEZTVFcxdVNrSk1SVTFTVjJGMldHNVBWR2RRV0ZKdlJFTTFSbTU0VjI5V2MwSnNDa05yTDJWaGNWaG1kVXhzSzNsaFFtaHBlRmx5VkZkWlVFdE1iWFpOWjJsVFpIUnNLME00Tkhsa2RHcE5RMmh4YlhGNVpIcG1TRzUxWkVWTWQycEVhM1VLVEhKS2NYUnlVbEI2ZDJsVFQxRklhVEZzZVZJemVFSm5OVFJXY0N0NkwzWk5VbEIzVkVzME4wbFBiM1ppVkhaVU5HbDBNMVUxYkhaWlEybHBVbmxIZFFveWFHUlRRbkpXWTNRMGJrMU1SakJEWjJkRlFrRk9iV2RDYVZsQmNHY3ZVRTVySzBZeFMzZHBUbEE0T0RWMmFsTlJXbHBQVFRGRGMwOW5TazEwYXpZMENtMXRObTkyZFZJelZtVnNXQ3RMVkZkRFR6bGhNREJvUmtWVGJ6QlVPVU5yYUZweFlsVmtTUzlHYzJodFVGVTBWamhCUlROeGR6bFhNMHBqYUdKalJIRUtRMGRRVkhVMVdITkNiMGhIZGswNVZqaEdTV055TjBSb1QzSkxlRUZKY1d0c09FYzFXV0l5UVZWRE9IRXpla2RzYkV4aE5YcFNUMFFyYm5sdlRGWXlOZ28zZFdaNGJXWmhObGMyZDBwTFNGUTJZMjkwT0ZKakx6SkdlRVZFY1ZrM1YycFFWM0J3T1dSNU16SkRlVk5UUVVjMmRURjRjalJKTVdnMGRHVmpiMlF5Q25aT2QyY3JSbEJ0VDJaTVptd3lNSFF3UkhwbGFrUktkVVJVZVc1cU16aFlNbWxWYzNOd1NERTFSamhSUlRCTlJreE1OalE0UkU1RWNWVjFlV2N3VW5jS1NUTXlTSG81ZVRSb1VYcEtVMGhRU2tWb1FUUllRV2QzT1N0TFVVeExTMmM1V0dodFkyazNPRzVEWTBOblowVkNRVXBNVTFkYVpHTTRZazh2V1ZrMGJ3cEhkRFJHVEVSbVZFaFdNVXBWYjNWb00wUmlTMUpSS3pCREwwWlRXR2hxVjBkaFMxbHphaXRoUkhSWldrNHpPVlpNWjFsQ2VpdElRelJGVkVkd2JVcDJDa1YxTWxaUFpGSmFOVXhrY0cxWFJua3lNMFoxY1RsRWRHa3pjMVpWY2tzemFVY3ZPSFk0TkdkdE9FSmtkME5RVEhkNVJreHZaMVIxTWtwWVlVbGFTR1lLYzJKVGRXSnRhMlJWVjJSQmRXMHZTRTAzU1hveVpXNUdRMEl2VFhCNE5VaDRNVnBpV21nelIwSk5NM1Z0WmxOV01tVkVOWEJqY0RNeU5FRllURE5wTHdvd04xWXhaVzVSU0hSNVJGcFJLMFZFUkhSWVkzSmFXREpvWlVKcWVVOTBSMVJhUVdRek1uaFhhM3BqSzFwU00zaFJUeTlYYzNobk5EY3hVVVUxT1cxckNsaHBTM1I2VlRkU1JUQkNRa1F2VVVaUmVXTlFjQ3RKUjAxeU56UjJkV04wWkc5SFdtSTVVR3QzTlZGbE5GZEZSRFJUVUhaTWNFWnlPRFp3YkhRcmQxTUtLM1pNZW01UFJVTm5aMFZCU2tjNGFVZEhTM0poY1VseFYxa3plVmRST0hoRFJIQlBRVkZLVTJOTVQwODJPR0Z3ZGpWRVVWSk5WM0pPVkU5VVNXWlVTUXB6VmxKR1JVaFBNRGg2TW14bFkyWXlXVGRhTWxac2RqQTRhbXh0Y2xkb1lXcENjSGd3VVhwcVRGcEZRVlp2VlZsVlZWVk1aSFY1TTJ0ME4zb3pUbTE2Q2tSVE9GVnNWRWQ1Um1zd2RreE9TRWxZWm04NFQxQnVkRmhyVjBoRk5EZFVNMlJIZW5CRlFYZGpXbU5TZFd3MmVVcFJVMU00T0hCRlJGSnFjSGxsUkZJS1ZVUkJTVlZsTVUxSFFWbHhUMlpNWkZWaUwyNU9lalk0VVhKVGQyOVBWbVZsU0ZobmQwUm1iMUpRUW5acVkwVm5aa1JxU0hVNU5IQkxSVVp6TUdJNFRncHVTbVpMV210RWVGSXZLMHRSVkdOcWFVUkJWbGRvV0VsTk9HdFVOMFpRWVdNdkwyY3JZWFEwU0d0WlowVk1WVmhPZEVWblNVOXJWbE5CVEdkNlptTnRDbUl3YlZSck5qZHhSVEJWWTFFeFRGQmlWMHgwTVdoNFZXWkdMMHRhWjNSemNWRkxRMEZSUVhablJrcHZNSE5FT1djclZVVnNjMk5JU0ZacU4wVXJjRFFLUWpOUlpUVkNVbVEzY0cwNU56RlVjMFpFWkhWRE9YTlFSMFoxVEV4MFIxQXliakpGZFV4RFREZ3hUbXhWVHpoSlJURnFUR0oxZVdGbU5VczVSVFJDZEFwVVdXdG1RbTRyYmtKWlpGbHFlakpETkVScWVYcG1WelJpT1dNNFRUQlNSemxvUTNsa2RIQmtWMGgyYUhOdU9XVkNhMkZsUldSQ09VdzRNVmh5WmxaaUNpdEtaQzl1Y3pKYVptMDFWRk5sYkhsR2JtODRla0pRWVVselFXSnRRWFZ0VVhkQlpVZFlOSEZTU25KNVlUUkllbGRKV20xTFdYcEZURWxITkhaRWFtNEthV2xIZUd4bVYyOTZlalJtUVN0SE1tTldibmxFV1dKT1YyRTJWbTQ0UTFvMk55dE1iVWRKYUU5cVVHb3lSalIyUzNnd2VWWlZWblZ0TTJ3dlIwSktkd3BTV1ZsdmEyRlBVRmdyVldoRllXZHNXVlJRVTBaeldDdHlVMmM1UzJKek5UWjJiR2RSWmlzNE1rVkpXamxVVm5GUVFYaG9XVFJ4TW1RM1kxRUtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogenVuNGlncGYxcTduOW16dzI4cTN1b3FhenZncHF4c2JqdXk2bGpndnJ3bnQ0eG9rY3BnMWp6YjBqOWFrbXRib2J0OGZ5anB1aTNqbmpmM2w3bTI3OGF4a2c4OXNndWQ3NHhubHF4bmE1Ync2eG9jenM3c29vcTRqaGh4bDJqY2gK\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13084' + - '13072' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:05 GMT + - Wed, 14 Jun 2023 21:32:16 GMT expires: - '-1' pragma: @@ -1354,24 +1207,24 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVUxT1JFSlZSelZxVkVKR2FXdDZTVFIxTmxoVVozZDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDAxNlJURk5WRUYzVFhwVk5GZG9aMUJOYWtFeFRYcEJlazFVVlhoTlJFVjZUbFJvWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuZDVXRXBMZUhCSGEwTTNUVUkyU0VnMVJtUjRlRll4UWtsa1JrMDVXbko0VlZaWlpuSmFSRVIwYVRGeGJVZ3lkVXhGVWt0YVVrWnJPWGN4WVV0TFNtOEtiMFZWTkdodVdDczRaM3A2ZWpab1JFUnhUeXM0WTFoMlFrTlRaMGgwTDJzeU5HTnBXbFEwV1dsaEt6UmxlV2RJVmpOVGNsWjRkR2REZEZOUk9WSktVd3BSTkdsUFVXdG1jVVptTjJjeWFIWmFRMlJJTHpSbVYyWTJVbkZoVUhKaVFqZEhXbUpNTkV4NU5saGljbkpJZUZOUmQwbFpaR1JEVTBKTEwzbFNSV2h1Q21oU2VXRlVja0Y0UWpRMVRVRmtUSGRWZW5JNGRqQjBabmhrVjJaS2RHNVRhVk50TURGbllrUXpOelZSTlhCd00xVmFOMUJDY20xbmF6VlFTVFZ6SzB3S00zaERjMGx1VDNCU2JIWnBPRlo0Ykdoa2R6UTRNSFZCYkhKSWNWcEVibXMwV0RKM2VFTmliM2ROVGpGU2JqZFlTR2c0TlVFMGEwSk9SRUl3ZVhvMVJnb3ZjR3c1WW1OTVRFUnlTVWR6Y0d0VVlUbHdOeTlETkhWVlpHcDFXSFIxZVRkUWVtaGFlVk5PZFU1aVVHb3lZM0J5VUcxaE5rSmxRbE5TTHk4clNFWjNDa1pDYjB4bmR6QkxhWEpFVEhoc1dqRnZXSEF5TWpaMlJIVXhhRUUxYVhWRVVuY3ZVMjgzY0dOSVQxTjNTRU41VERSVkswTlVVa2x0U1V0dVFWVmplamtLVmxnd2VIVnFVMEkzUmxkbVFqQm9URVJYVXk4eVVUQm5jVnBJV1RSUGQwSjZOalEwWVRsWWRESnZVMkZQWm1wM2RIVm9RbmhKVmpVeGR5ODNRWE5ZYmdvMFR6aFNObE5pTUVwV2VuWklXazV4ZG1wUmRqZENNbkZvYkVWc2MySmpXRzlJWjBOaFpVMVRiSFJFY1VrMWVtczVZbFJaVGtaRFFraDVlVzAzV0hCSkNtbEJlRTVKZEZWNmVHVk5aR053Y2toWGJVVjJVVGRxV1ZGM2NHeHljMWhJV1ZCUk4xaHRhWHBJUm0xTVJVaHNWRlZDWmsxdFpEWnVjSEp3T0U5aFpVTUtSMFpzZG1KelFuRnFSR2gxZFVvMlVXdEdVR3RNWjJOSWFrMXZRMDVZVlcxV1RFbEJRbUV3Y1cxblRVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1IyZFBNSGxTVmtvNWVUTm5OMFF2Q25GVU4zTkJjWEUwTjAwNFEwMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFuSmtTR2xyVEc1c1lqUnVUbWxsVDBkclZtOXljR2hSYTBJS05scFBiRnBOY25GdldVazRkR3RXZDIxMGExTjVOR0YzWlhvMVYxTXJOSE5zVTNsYVNGSnlUeTlrU3paV2IzWmFlbkJ6UW0xaU4yRldWR2xITUVSNFpRcEJhelZVVXlzemFUSnFTemRTUW1WYWRHbDRTVWhXYlhrcldqSldUV0ZKUVhOb1VtMW5kV3BvYzFKS2FHdERObHBXTDIwNGNtcFRNVlZJZHpjd1dsSXZDbkpHVkcxM1praEtZa1JyWXl0VmJFSlhVbUpHVEdVNVJqaGxaM04zTTNobWFuSldibG93UW1JMFkxTnlSMGRCTDBkUE4zQXhjVGxKYXpFd2FXOVpNRUVLUmpSV1VYTjNaWFoyT0hFMU5YVTJUemtyV1ZJdlZUQlhXbEZzZWxkRFF6bExOM0FyTkdJelZrUkxhVzgyZDAxWWVXTmlNVkZuYWxSblMwOXNXREY0YXdvNGRURm5ZbkZQUTIxdFJtMXJWWGRpYWpoWk5uaFVNSFJ5SzJjcmVFdzNkbHA2U1ZBdmRrOXdOV05pU21aVGF6SnpZMFV4WTJOSk1FeHJhaTlYV1c1NENuVlhjemR1VlRkaFdEVlVXWFpqV2tSTWNIbDJaRzFXT1ZOS1ZIQjFjSE16TXlzNFZXdGlTWFoxYXpObGFXNUROMjV5WW5GdGRGQnJUREZZVFhkRFRXb0tSVmh1Y0ZWVE1GTXhRamszYTBZclEyWjJabEJFUWxsMVdUZFhUR1Z4VEdKSlR6UnlaM0VyU0c5MVRFWktia3h2VEdzdllYTTJjeXR5UW0xRFNFMXBhUXAxVjNaWlZFMUxjR1p6WVUwMlRIRjNXRkpHTjBKMmFHeGFUM05xT0RGUVpEQjJSa1pXVUN0clZrVkNhMmwyZURONE5YcFdNemRuVFZOQkx6ZHNiRU5QQ2xWa2NGQXZRa1ZLY20xWVpHaDVTMVJsUVZjM1RHbG5lRzFTUm1WeVN6TXJkMVpxY1c5SFdHd3pjV2RaYVdObVZuWkxZVFpTTlZaWFVsVjBZVGgwVEVzS1RrdFhNV2wxTUZad2NGcFZLek5EVTBZeWIwSmFSVUl3YWpOblprd3JTR0pIYTNORlR6bE9hMlJSWkdaVk1saFNUV3czYTBJNUwzRklXRVZzYjFwcWNBbzRSeXM1ZEdadk1Xa3hhakZxYWxOU1ZtYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zNWNrZGYydy02MGU3bnAwaS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdGhpY3p0ZQpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdGhpY3p0ZQogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGs3a2dpY3lsemdfY2xpYWtzdGVzdGhpY3p0ZQogIG5hbWU6IGNsaWFrc3Rlc3RoaWN6dGUKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0aGljenRlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGs3a2dpY3lsemdfY2xpYWtzdGVzdGhpY3p0ZQogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVOVJjRWRqVkU0NGIzYzVZa0ZPV1VnMVlsSjRWMWwzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwMTZSVEZOVkVGM1RYcFZORmRvWTA1TmFsVjNUWHBGTVUxVVFYaE5lbFUwVjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJNMmRWU25wdlUxVXdVbEZPUzBnd2FuZGFaM29LZFZSVGEyWnFhRE5xUjNZdllrdFNSa3A2YUdsbE1uUk5XbkJUTVRkUFdtNDRTbGRRYkRKVVJWTTJNWE5UTVdwTldURjNSMjFFU1ZSS1VtTlBaV0phYlFwUFVrZE5ObTh4VlhZd1JrWmthbUY1ZUZReWRIVkdhV0pFZVhoNVNrSlpVRkF3YlVaV1EwaHBTMkpRY0dGb00xSnViV0p0TlZwVlFYVjJVbmhyWVZGRkNuSXZPV2hpWkRGSWFucDRjMkp4YnpGWkt6ZElOR2xTYTJaR0wzVmljMnN3UmtwWldGbGpRelJ1TjJaNFRuaERUMFV5VG1sQ1JFeEZiamxaTVdSUU1YWUtOa3h0T1RFelQxRkJlSHA2T1VVeFYxa3JaRUk0YURGUlZEUkJXRFZJVDNacE5FMUZURmh5U2tOWFVqUXlTekIzYmxKa2NUSkdVWGxvWjNGNVRFa3hiQXA0U1ZoeFlWSlpjbWhIZVV4SVZ6QlBOR2xaWVhKUVltRkhOVU01VFdabFZXOVFhMk5KVUdWSE5FTjNVMFJuYTB4RVltNXVha0ZaVkhKYVRHOW9ibHBSQ25KUFQzbFdXV3BRTWxGdmJEQnZjRkpVU0hBd1EzTTFVMkZHTnpWVGMzRnVjMjFUUkZGRVIzWkxSelE0WTFOeEwwMU1OM05oV0N0TFVWQkxkak5pWkdvS2FrWnJkV1UzYmxvd1ltbFRkazVUUmk5bmEyaFpaMFZJYjNSbGNucGtiVTVSWjBoTU56TldSbHB5UnpOUlRYWmFUMHRTZW1Oek9WVnBhMlpEWVRKSFJBcHRWVTFJZEVSclJuUTBhbnBzY2xSRE5IbGxUa2hNWW5nemFVOVRkbGRuWnpOVFFWVkRUSEY0U2tZMU1raEtjM3BKYkVoaVdWRXJhV2xxZGtNdldWQkdDbFpWY2xCTllWZHhLeTlMVm5WTVMyaEZlV3AwYWt0cll6TkxORWMwU0VrNGIxcERXakYwTW1VdmQzcHhORWxTUlZSUVNXaGFhREJXUWpOdU5YcE9jRklLTlVWd01rSlhaVk5UVlVJM04yUlZiRk01YW5NMGRrWmtiR2RNT1hWa1ZsaDZZVEozUkVoU0wweFRlRzVoUmpVeGRsRllVbHBOU1RkdVlqTTBTREZSU2dwaWVVaE1aMmMyUWtsM1RGWnlaVEJTVTNaRlkyUlFjME5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZZVUUzVkVwR1ZXNEtNMHhsUkhOUUszQlFkWGREY1hKcWMzcDNTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJTRTU0YVZadFRtaFZUbk5uSzFRdk1qUk1aUXBLVFRKNlIyUndabTFDY0RWTGFGbHpZMnB4UkZjclVVWlpNV1JsVDBSUVowUktUbWRDT0cweVVYcDVMMEZyTDJsU2JraDBRVmN3ZDJrMWRHb3ZhMEZTQ25veGIzRnlUV1JTVENzM2QxSnNZMUJwYkVOUmJ6TnpZbEpQUVU5blYxTm9jbXQ1WWxwcGRscENlbEJXTlVKNFRFVTJZWGRWTW0wMFFXODBRWFF2U1djS1prWjVRMmhXZVVNclZXTnBhWGMxUVU1SFdUUnVPVU12VFVoMU9URkRhekEyV210Skt6aFdORW8wY1haaU4zWm9jbUZhUVdKa09WaHdWekJOWkRWd0t3bzVRblYwTkVoQ1NteFRTRmczYW5oQ1EySXhhRkJuTjJaaFJrWTBSREpsTnpSWGFXdEVaMWRtYVhaNGNtVm5hRGxJTkVKM2FYbHJMMVpxZG1WSmVDOW5DazFGVnpKaU1Fd3JVazVMTkZwRFFXbzFVRm81VkVWWVkyYzVkWEZOUmxwUFpFdEJaa0l5U21aTVFrUm1VSGxJTDFsMGFFVjBkV1ZDTlhWUkszaElOMGtLUVZCNVpGWlNUR295U1ZRMWNXaFhjWFJTZUdwaGFXbHVZVEZ6VFdsbFZuUTRZM2huUkVwaFMxTm5NbWx1UW5rNGFETlRhV2RDWlN0cWF6TnBjVlZQY1FwbmJra3lORmgwWlVwRk4wOWpRWFZWUTFVcmRWY3pPRVp2T1hOb01UUlBSV2hVVm5oU0szQkRlWEppSzNJM1IybFpWbEUxY1VkeFVrVnZZM1ZVYTFWQkNrWm9UMVJaWWxKQlRFRjJkWFJuYmpkb1ExSTNWWFJqY1V4YVZXaFBVREU1Tm5WaFYzcGxWM0I2T1Vjdk16Tkthemt3ZVN0c2JVZGliRmc1ZERCblUyVUtWazlFUzNWWU4xQlVNMFJPYjI5Nk9HcFFSRXBVYVZWVVdpOTVSbUU0T0dwcmNsTndSV0pYVEZOeVdXdDNURkF2TTJoa1ZqVjJiVmd4YlM4d1RFTTFRUXBDVjFRclVYUkRhM1JqTlhKSmNFSndTRGxFZEU1eGFUWkJaa012TTNaUk5qWklRU3RtVXpGc1UwbEtkMFJKZWpReFNFMHdTMnd6VTJ4bFdrTjRNbEJ5Q2xGRWRHZE9XbFl2VVhFd2NYUXlZbWsxU2xCalp6SkxMd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJNMmRWU25wdlUxVXdVbEZPUzBnd2FuZGFaM3AxVkZOclptcG9NMnBIZGk5aVMxSkdTbnBvYVdVeWRFMWFjRk14Q2pkUFdtNDRTbGRRYkRKVVJWTTJNWE5UTVdwTldURjNSMjFFU1ZSS1VtTlBaV0phYlU5U1IwMDJiekZWZGpCR1JtUnFZWGw0VkRKMGRVWnBZa1I1ZUhrS1NrSlpVRkF3YlVaV1EwaHBTMkpRY0dGb00xSnViV0p0TlZwVlFYVjJVbmhyWVZGRmNpODVhR0prTVVocWVuaHpZbkZ2TVZrck4wZzBhVkpyWmtZdmRRcGljMnN3UmtwWldGbGpRelJ1TjJaNFRuaERUMFV5VG1sQ1JFeEZiamxaTVdSUU1YWTJURzA1TVROUFVVRjRlbm81UlRGWFdTdGtRamhvTVZGVU5FRllDalZJVDNacE5FMUZURmh5U2tOWFVqUXlTekIzYmxKa2NUSkdVWGxvWjNGNVRFa3hiSGhKV0hGaFVsbHlhRWQ1VEVoWE1FODBhVmxoY2xCaVlVYzFRemtLVFdabFZXOVFhMk5KVUdWSE5FTjNVMFJuYTB4RVltNXVha0ZaVkhKYVRHOW9ibHBSY2s5UGVWWlphbEF5VVc5c01HOXdVbFJJY0RCRGN6VlRZVVkzTlFwVGMzRnVjMjFUUkZGRVIzWkxSelE0WTFOeEwwMU1OM05oV0N0TFVWQkxkak5pWkdwcVJtdDFaVGR1V2pCaWFWTjJUbE5HTDJkcmFGbG5SVWh2ZEdWeUNucGtiVTVSWjBoTU56TldSbHB5UnpOUlRYWmFUMHRTZW1Oek9WVnBhMlpEWVRKSFJHMVZUVWgwUkd0R2REUnFlbXh5VkVNMGVXVk9TRXhpZUROcFQxTUtkbGRuWnpOVFFWVkRUSEY0U2tZMU1raEtjM3BKYkVoaVdWRXJhV2xxZGtNdldWQkdWbFZ5VUUxaFYzRXJMMHRXZFV4TGFFVjVhblJxUzJ0ak0wczBSd28wU0VrNGIxcERXakYwTW1VdmQzcHhORWxTUlZSUVNXaGFhREJXUWpOdU5YcE9jRkkxUlhBeVFsZGxVMU5WUWpjM1pGVnNVemxxY3pSMlJtUnNaMHc1Q25Wa1ZsaDZZVEozUkVoU0wweFRlRzVoUmpVeGRsRllVbHBOU1RkdVlqTTBTREZSU21KNVNFeG5aelpDU1hkTVZuSmxNRkpUZGtWalpGQnpRMEYzUlVFS1FWRkxRMEZuUVZkUmNsVlJRWFJWVlM5WmFYZE9XbEJtVG1zMlFsWkdhbXd5ZFRKS2J6ZzFlR0Y1YzFBeWNWSjBUVmd6ZDJwNGNVdHFWRTlCZFUwMGVnbzFUVTlXZG5WaGNua3hValkxWlVFeldrWllkRVY0YlRsa1JqbGtaVE5uUVd0SWEyUXdRVXRTTjNKM1VEaE1XVFZXU2tRdlpsaHdXVk5sYm5aak5GTjBDbmRrVURKVlNHRnVNRU5QVkZkVlpuWllkbWMyZUc5WFdXbzNVakJ1VVhRNGR6UkpTVkkwZFhKelRqZ3phazV3TTNaNVVtZEpRa2s1UVRKc05GbDJRVzRLVDJaaFNUbFNNVE5aZFRaTU0xSjNXSGhoZEZoU01XZEhlV1ExZEc1RGJpOXllazlUVkVaWVpHVmtLMlZzY2twVEx6Qk9kRXBUTDBGR1UxWldka3RaZGdwc1V6aFNRbEZVYXpOTlExTkVObGxFTWt4V1ZVbFZRbkZJVTJSSFFrSk9WSGhCYUVzNU9FMW1RMU01UkRFMFVUTk5WM29yT1Vrd2VuUkdiM1p3WVhBdkNsWTNTWEpUWkM5d2FteHBVVmxOU25Cc1RGcHRXV1ZPTUdvcmNGbHhOREExZDI0eVFqSTNlbFJKYkdaUlFuQTBRbEZyYURaeVZrTXpORVpIYW0weFIyTUtWbE5RY2pSWGVrVnZNbVppWlVSU2RFcFBhVmRtWnl0dVVUVnBiR1Z6TWt3NWNFVmpkVzh5UmtkcWRIWkpWR3RKVTNOVVdFUk5WbFE1VjFvM1dXMWlOQXBKUVVnM09XNUJWRmRyU0VSMWVURk9ZMVZLY0UxbU9XRTBkMlpwTWpZclZISm1iMlpzY1cwMGJtZ3hiRFZGZVdGaVFVVkNPR1JYWWt4aU5WSk1ZbEpQQ2toYU1tRjBSSEpVTlZoM2NYSTRWVGxFV2tsU1UzcEJUVVZETlVSR2MzZGFLM0ZsVWt0bmFsSTRUMnMwVHpaSWVIbFZlbTFXU0cxSU4zWkJRbVZyTTI0S05ra3lRMDlQY21GM1lXUnVZV2xGVG5OTFJtOTJhakVyVUcxeVVVUXJOVVYwZW1kTllrNXROM3BLZW0xM1NuTldVSE5vWjNOMVNIZFRWemh3VWxGcFJ3cEthakZTVm1wdVRVcGhhbGgzT0VsT1RXazNkbWwzUzJKSFUyODNTVUV4V0c1M2NsTXJZamxKVEdVMFJGbFhORU5qVVV0RFFWRkZRVFpJTkdGTU1rMXJDa3RaV25sYU9XNWljRTU1U0c0d1RsUlZUWFFyTUVKeUszbzNUalk1WkhGeVUzcEhLMkZSYm1SV09YVXpWbkl4TkhobVZqZENXRXB4V1hZNVl6QmlSMW9LT0VoMFUyazJTalJoWkVRMU1FOWpOblJtVjBVeVdFbDFSa2RaYkZndllURk1RMlZrYVZwMFV6bFNhRGhMTW5GRlNGcG5TblkwTWpNclMxWmtXSEZFZFFvNVJuQTFhU3RIWVRGTVowOURkR1ZvUjJZd1pXVmtiMUpEZDJkV1R6TnpVR0pyZG5aNGFUaFRhSFZOUW5CSE9WUndZbFV6Y0dOUVpVcDZlaTlvUzFKeUNqRTJNazlHVVZRd1JVbGxZVVJpZURGeFVVUm1UbWhKVVdWSmRWQktUVzlRY1ZkcmFGSkpkamRhVTJVdlNFOW5LMlJZZEZKWlZreHlURTF4U2xGWFZEUUtVekIyWmxOU1RVVnVXSEZXTVdWNWVVSkZLekVyVEcxUFZXbEtNMFp3VVhnMVRXeHFiRm92VGtjck16ZFVVVkJ3WVRadlFrcHpTMGxxYVVkQlkxWnlaQXA0WlZSdVYyUmFNbVpRTjB0QmQwdERRVkZGUVRsSVptRlNhamhUWVVwdlpTOVNSbXRuWVhjclZsQnVkREZQVkVoelVtUTJRVVkxT1hSMU5VaGFhSEZvQ2xNNVdqaElUVmszVTBWQlZua3pjMGRuYUhGTVJHdEtLMFpHVm5kR2VYTjFWRU5RZVU1MUt6WjJMemxOWTIxMWJXSXhSVlpZTlV0dFZXUm9NRXgzWjFJS1ppOTZRMFpEVVdaMVJpdFdkRzlPT0U5bllrczFLMFI0U21aMFoydFhOSEpwY2paaU1IaHljaXRhTVVObU0xQXZjSGR3UTBGeE1scGlWR3RpY25wNk9BcDVTWFp1ZG5SR2FISTFSMG94VDNWcGFqZHNjbUZRVFdsbGFIRlBWa0pzZWxoT2NVaFFVbU0zTm5oc1lrRllTRlF6YkVReU1UaDNaV3RFYUdWRVoyTlVDalI0ZFhCV0wyb3ZVVlpzS3pWSFNIbENNQ3QwWkRaalJYVkliemhRUldkc2NrOU1NM1pIYUV4YVprbEdZVll3YUVwUWVWVk5MME5UVVcxVlJXdGtOREVLWWxSU1VtaFpiREZFZG5abWRWWnBXQ3ROYkVwRVpWa3ZOM1pKTkdJck1reG5WVTFrZEN0UGVuRlJTME5CVVVKWU1FcHRkbGxJUldWU2FYZGpWV04xUndwMk9ERjVUMGx1Vm5OTFpHSnFNMkpFYlZCV1QzVTJUMHh4VjFKVldrZGtOR05uVFZRdmEydEtOMHRxYXpZNGVVaFVRa1ZTUnpGWllqUldhbE5oVkVjeUNrNXFja1o2ZWtRM00xcHhjVlF4YUdOWFEwTjRNa2wxYUNzcmVXcE9NRzVyVkdKV1NUWk9hWGxJVDFaQ2RIaFFVVVpTV0hCVmFuZDJhVFpVZUZWMWRXRUtaMVpMT0dkaGJsZEhVMlJVZFhsNFNUQkhja1Z3Y25sNlYyNWtZMnRvWTJKWU9EaFZMM1l2U0ZSWFYxSmtVMUZMUTJnMGVGTmlSalpMTlVoS1IzRXZaQXBPYm5KWWVWZEdabnB1WVVKQk9USTBlVzB6Y3pWWE1UUXZZalpXUmpWTFJFdE1iMnN2ZDNadlkwRllWRVIyUkVwWlJUZHljRzF0Y1dSNVVVWm5LM1IzQ2xkQlkxVlpSM293T1NzMmVETmtVMFkzV1V0NGQzQlFPVFpLZERKMmJqbEpiREpGWlU4cldVVjRjR1pqZG1kdE5rNWhiRUZLTmxGM2VGUTRiRlJpTkM4S2FFUldiRUZ2U1VKQlVVTjZMMDFZYTNORE1HbG1SVFZUWW1keE9HVm5PRTlUTVVKNVZFNXdSa3BSTmpZeFRtSnFOWFl3UlZSS2FubHRRVU5oZDNOM1JRcDJjMGxPU2xFcksyNUZTa1JDYlhWRVJuZENSek53UkdkdFFuRk9ibVZUTVRGUldEUjJRVGd5Y0RsRUwyODFNekphYkVoelEzQnRkbnBITUhKdVVXdEtDbTF5TlVWUFVIZDFWVXN2TVVaeFZWWklUVmRXWWxSS04yNVRhRzEyWTNnNE5DczJRVzVsZG1Oc1R6TlRkMUJPVkN0b1lrczFla1ZLYVdjdlpXRndVSE1LVTJzdllsSnVNVk5MWldKT2VIbDRZMFE0T0RSV1pVTmpkbGgxVTFjNVprOXRUVlp5UVRrMVJVMVJTRGhGV214NUwzb3diMUZOWmtGcWNUUlpVMmRtVFFwdGJFdFdXRkpPZG14S1kxaHZRVEJYYzFaQ1JqVmhlSFphUlN0WVJrbGFiV3RXUTNkeFZrNXpkM1JXZFdoRVJqWXhjSE5PZEdwa1NuQndjR0Z2WTBKbkNtWnpjbEl3UlhSaVlsQTNkbFE1VmtWWVIzUXlOVTFMZDAxaVZHZHVZa2MxUVc5SlFrRkNUbkl6VVhVNVUxQk9NVzFrYzFwQlRXcFNOWGhHWldRd05Gb0thbU5aYTJ4V01ERkhNalp6ZERCb0wycHJNa1ZPYkVwWmVrNVdhRlpxUzFsbk1HVmtiQ3MwTUdRM00yUm5TRXBKT1VWdGFFazNRM1pDT1dGRE9FYzNRUXBUYUdOeFVVOVhRVWcwUjI0dlFqTmhiVGxCTkZkcldtRjRPV2RxY25kc1JqQTNOMVp1YUd3M1FVeFZiMUozWjNCNlNWYzBkM2R5VHpod2FqUTNPVmRpQ2pFeFRUbHlUWE5sY2tOT2MyWXhUbXBNVW1sR2FVY3hVMEp3YWxoU2VEZ3lWMFlyTWtOb05VYzRObkJNTWpGVlozWkhibWhxY3pGUU16RmlRM281YmtRS2NIcE5PSFI0T1doTkt6aGlhVlpEZGprclZrWXpaRlJLYWs0eGIzaDNNbTlqYUdjd2RYSkxSV05yZDBWNmRTOXJRMFYyVm5KNVFtdHZjM1JDWVU1UmFnb3dlVFJ4V1V0RmQweGhNbU5RTUhReFUyaHFZbVo1Y1dWclpIcHFWVEYxU2tKSWExWlRjVmhvV0ZwamNGQklUWFl2Ymk5SE5YTlRMekJHUVQwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBjdnliMmR1YXZ0ZHhuamFkMXYxMno1c3k2YTh2d2RkZmVlYjJzYnU1ZXBiaDY5cnR1anhmcGNhcnptZ3V1NW9iN21raW4wcWJudDkwb3N0N2N0c3U0dDFzaHlxMnFmMmR6MmY5aXVubGQxaHliNHh6ZTd4dmM4cWRpOGFnYnQ4cgo=\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUlV4WU9XSXhNM00yVkhCa1dVcFJPRWxVTWpSMWFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYbE5WRVUxVFZSa1lVZEJPSGxOUkZWNlRVUlplRTVFU1hoTmFtdDRUakZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOMENsTXZUVWRhWnpBNWQyOXpMMnhOYm5FeGRHMVNNME5MVUhsTFNVUldkM05HY1ZsbmNVMWhVMU5JUkRCRFV6SnZiR0ZYUVdoSWFHNXNlVElyVms5QlUyY0tlRzV4ZERoYVJIVmFPV3BOWkdkNlNDdFhUVFJETTNBMFZ6UjZSRE4zWm00eVpqVlJNWGhYWldkUGMya3dkMk5SVUV4NVdEbDVZbGhDTlVOUVN6SkdLd3AzYXpJMlVURjFkMHB6ZEVsTFExWlZXbWQyZGs5U00ybFpOMDlyTmpjd2VtSXJNalJsWmt4UmFTdGtTbGhUUmtjNE56bFFVRnB4UTFsVU5rbHBWMnRCQ25WS1N6ZEJhR3BuV0hwSWVVWXlVVFl2YVRWd2RYSjJSbk5qWlVSc1NsWTNka29yU1VWeU16QndZMHhXVUVKUWRFSXpZWFZXZFVOSE0xVlpZbmROTkZRS2JUaFNZVXhMU0RsM1ZDc3paM3BPVEZwdk9Xa3JWMVE0Tm5FcmVTOTJOazgzZGl0eUwzTkZkbGt2VVRKMVZHSlFhRGRvTTFwYU9DdGphRU5MTjBwVVJ3cFBPRXRyUkZOdWIxY3paM2RoYjBjMWFUZDBOQ3RZT1VWdWQyVmhOM0UyZWxoT2VWb3JNalp5TWtWdVVtMUxOVEp6VTBZMk1tbG5PRnBpVVRoeVVuRlRDa3hMYW5GSWJ6aDFNamQxUmxWQ1dVZFhha292TjBzM2RuSkZjRzl1Y25wTWRsRXZZMXBFT1UxU1RGaEliRzFMYlhoM1oxcFBNV2hyVG5SdlJGZDJUMVFLU1ZWSU9UQlhValZ5WXpOT2NteE1UVkJQYkZob09HMVFPV2syWTNKQmJFRllibmRXY0RCbWIzUmhURXN6U2xoM05GVjZiR3BMV1hkUU1tTlJSVTVZTmdwQ1VpOVBTMFJoVm10UmFYSjFjR1JhWjFoMlVrZFhWMk14VURWQmJERTBWMVJYZVRWdGNYbHVOMjE2VkN0UVEyMXBUVk1yTTFaVE1VTlFiWHBOVDFaUENuSnlNbmt5WTI5eE0xRkxSbkppZGpKWWFXazNVVEZxTURSc1JGaGpLMDF5UTFOV1VrNTVOVEkyY2xOeU1VMVBSQzlDVVRoU2JYUXpMMEp4V2xaVFZtSUtjRlpKU0hOek4yVkVORmhUZEVSS1NHTlVMMmxzY0haYVVTdFJabmRZVFVWck5rMTFRWFJhWnpGUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWMVJsUjVRVUZEU0cxT1MzbGhZWE4yQ201WVNIVkhMemhhVm5oSmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRFQyeDZkMUJPVGxvM00yMXdkMFJtU2tFMFpWQm5iMjl6VUU0S2FsTTJabXBqZFdKeWEwcHZSVWxtVjA5bUwxcDBjM3BvTVZwblMxZExSeTlqWldrNE5XeEJiRVkyVUdOUU5tWkZXRzFXZW1SMFdTODBNbU5QTUVoa2FBbzRSalZtYmtNM1p6QlNabnBFTW05bVRrUk1hbVJXVm5OTVoweHhSWFpVYWt4amNFeHRVRXBYZDNFelMwNUROR0ZXY1ZBdlFreEhVV3RJWVhaNWN6Z3JDbWhZVG1wNmNXVXhLelEwYTNoRlNGWTRlbE13Y0VwWFNsTlVXR1V4VG1kRmVWb3ZPV1pXTUU4eVMyVlJRbWh1UmpobVV5OUJSazFQZFZKaGIweFhWbEVLYVZKakwxSlFZUzkyWm01bFVWVkZNR2M0YUN0NE9YYzJhM1paY1ZoMVZubHRWemxZYUZoQlVFZFBkblowU0VZNGNFbHRWRzF3WW5BNWVqTndhMVZDVlFwWlFVMVhhbWwyZEVod1JFMDRUVEE0ZERRM1JsaDRiMWx3VGtzeVV6QjRjVkpvVjJOd1RtSTFTR1ZpTWxrM00yOWhVRWh6V2xOUmVFcFlWMDAwYjA5UkNrczRRa2QwY2xVdlZubEZURkEzZVROSVR6VkpRVWxpYkRoREwzRmFVM056VGpWeGFuWjRMMnN2YVZKQlp6QlNaVWxtTmxrclVtdHZNVEJSVkRSYVZtb0tMMmxMWVdWTk55dEVUbFF3WVd0S2RGcFhNV1JtYTBwVFNuaHFUV1ZwVEZWM0wzTlZXVUZKTlZWeGFFMVphWFpaUW1GcWVuVm1SRE14TUd3dmNGVXZNZ3BrZUROM05IZGlWWFpaVUdoV1ZGWTFORkpsTjBaQlRrWTNWRU5tYUU1blZWZzRheTluUTFndmJHOTVhVFZWTmxkRWFYbFBkbVZwWkhSM1owdHhlVGxDQ21jMVJFeDRiVVZQWW5vNVEyTTVTWFpWYlRoV2Npc3ZXR2hxZFRCSVYzbE5hbU5pYmxKSGNESjNPR1JUY3paMVVHcFNTMnhrWjBKR2MxWjZLMWRJTm1vS1UxaEhiM053UjBsNGMxaHRSWHBxZDB4dUwycHRkWEJzYVRGdGJ6SkpkMHMzVVhwelVqSXZaM2x3UXpobWRFUlpNVXRzVERGbVoyVnJlbmhrUzNodGFBcEhNMVF2SzNsS2JHeFZWMGQzYmpKb0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2R5cG90dmotazFjeGY0Y2EuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3Rkbm9wYWIKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3Rkbm9wYWIKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RoZWdhc3U3a3JzX2NsaWFrc3Rlc3Rkbm9wYWIKICBuYW1lOiBjbGlha3N0ZXN0ZG5vcGFiCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGRub3BhYgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RoZWdhc3U3a3JzX2NsaWFrc3Rlc3Rkbm9wYWIKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJaRnBNYTFRMGRHUmhVRFUzYVZsb1VIcFdSakpZUkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVVhsTlZFVTFUVlJrWVVaM01IbE9WRUV5VFZSUmVVMVVTVFZOVkdSaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVU4zUWtaUlZqRk5RblUwUW1wSU5GcDVVWGwwY0VnS1VGQXpZVlJ6WnpaWFVWSlRkazAxTURoR01YQlVLMk5vTnpodlRrOXlRazEwV0c5R05uaFBVM2h4WVZJeVIwcENjV0pJY0hSMGJWWktkMUZxUVhOMU1ncHBZbFU0VjFwUU4wZERiek5KTkZSeU0yVktSVWtyUzNVMFoyczRTbTE1YkdGM1dVTnBiMGsxZEhOS04ydG1WMjl1V21wR1FuRlpiVWRPY204NVZsRnpDa1kzVG5GVFEyMHhSM2M1WkdWQ09YUlFMMEZzYTFkbFQzUk5XblI0TldObFJsbElTR1l6UzNRM01sWTFiRWxZTWsxRk1sRk9Za3BIV2paNWFEbHNaakVLWVdGRWJYcE5RVWxsU1N0MU1ERnZla1JJZUV4VVZYRXlVakkwTDFsbWRWTldVMnhRUkdGSmMxcERjV1UyU0ZwbGRYZEthazFVUkM5cldVTjZSekF3VmdwcWMyOUpUVkJrVFZZM1luRjZUbGh3TXpSNlQzazRUQ3RpY1RoVWQycHZNbVZwYTFsVFlrNUJZMEo2VVVOYWJraG5jakZ3UjJ4UFpqTXhPVTl6TW1sSkNqVmpZMkpNUm13elNqaGpTVFZKYkZkNFJFWkpSRkZCVGxsUGEwNVRkMU5YYldGT09IUjFUbnA2YVVkV1REVnZXVGhTVTBoemFTODBURkk0UlZkNGVtOEtNVmhaVHk5Q1lsVm9jamhRUWtGMlpDOHhXbEpCZEVSV05HcG9lU3RUUVRoeGFuTkpNbWtyUlRFNWRXRTBPRVo1VlhKaGMyOXNTazFHYlcxUllsWTJid3BXVnpWMlpEUlBSV0pQTWpKWFdVNVpaMFpzV0daaWRYcHRWVVZNYUdOU2JYUkRZblpFUlRCbVdIRmljMlpJWlVKb1JHdzFPRGR2VDJaRVpYcFJaRUZuQ2tNd1puRm5XRFJDWkZCUlNURlJPR2xuVkM5b2JXRktURXRwY0dweGQzaGtZamxQTldVMlQxbGpTWE5OVjI0MVdXbFBXVVl2YVVsTWJHdHlibXd3YUdjS1JHdHZTbGQzV0VONlJ5OU5TemwwTlZCbldGQjBhVVZ5TUNzemNVbHJWM0p5YVc5RFRrbDFObVZHTnk5WVZWRlVWalZCVURGb2JFOXhiWFI1UkVwblVBcFhXRE0wYWpsMWNYUTNTazEzUW5oTmVYRTVkVXQzU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbE0wVmxCSlFVRkpaVmtLTUhKS2NIRjVLMlJqWlRSaUwzaHNXRVZxUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZvUkZSS1IybFBkbGx3TWtWbGNHWlZVM0oyYUFwc2FWRmxVR2x1Wnl0SWMwaERia0kyY1VwQmRpdG9WMmRvUXl0c2IwdFJWblU0WkVSU1ZURlplRFl6YTJSbFdUUkVPVVEwS3pCRE1GUjVXamhFUWtGdUNqWlBTMkV2VUc0ek5qUjBSRmRST0dSS0sxWkJTRmRCTkVjMVVVUnhZVlpYZG5wTVUzbGphblpxUW1aRVRGWjJiR2N6U1U5bWQzYzBaMkl2VkRSMVpXa0tjM0JFTURGMkwwVTBSbTVOZFRRclZFdFJSRk5HZDB0cFRFODNWVmROVUhOc04yNWxXa1ZGYm5jcmFVTnNXWEp4TjFod05qbHlhVVJoTlZFNWVXSmpjZ295WWt4S1YwRkNaM1phVjJKalpuTjJlV3RZWlV4UkwwbHpkMUZSU0hGa01tWTFjMnRFUVVaaFowNU5LMWxWTURndlZtZFFVbVJoTkRNeVJ6Rm9hMDQ1Q21sbVV6QnFjbTg1TDJjclZpdEJjV1ZMWVdkU01qVnliRE5OYTNGSkwwUnlVRzV6T0dFd2MxSkJMMjlVT0c1dldIcDBWVzVLTVZsS1JYSk5VbWhNVjJrS1VHZ3dRM1pYVmxGVGFISnNjMjUwY1VodVRVdFdSV3BNSzNjd1l6ZG5kVkV6YlVkdFF6ZHBSVGwzZURKV2RrNDRRakpMZGpGSE9YZ3lNREU0UkZoeFNBcEtRVmxITW1kaFdXY3lWMjFMZW1OU1pVNU9lbGhUYmtkbWRFeExSekZGTHpoa2FYRm1VRTVwTTBnMVpUSmhNV0ZzWmxWb0sxQlRWV05aUVZwMlluQk9DbGxWZW1KcVlVeGtVV1V6VkhCcmJTOTRiME5IU0RoU1NuQldhVzRyVUZGaVdsTm9TMk4zTDJkTGNXdGllWHBKTjFKUlVreE1RMnRJVWtsMlNFSTJiWE1LZDFoM01HOWtORTR4U1ZsUVdUUnNTREZSZGxkb1F6aGhiVFZTUmxJdllXNVpjRmx4WlVSeldEaG1kVEpUVmxOYVFtSlFTRXRKTjI1QmFGRkpjVmgxVlFwWmVISnFkMjVHVFVWbVNqVlNURE15YW1KWWFuSm5XakpLTkVkTlF6UXZXVEkzV0dGRWIyODNMMko0VmpOVlIwVkRlbWQyZUZOcmNraGhURnByTlc5WUNsZzROR2N3UzBSeFRXNUtaVlJaYTBWaWJXaDZObTgwUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCYzBGU1ZVWmtWRUZpZFVGWmVDdEhZMnROY21GU2VubzVNbXMzU1U5c2EwVlZjbnBQWkZCQ1pHRlZMMjVKWlM5TENrUlVjWGRVVEZZMlFtVnpWR3R6WVcxclpHaHBVV0Z0ZURaaVlscHNVMk5GU1hkTVRIUnZiVEZRUm0xVUszaG5jVTU1VDBVMk9UTnBVa05RYVhKMVNVb0tVRU5hYzNCWGMwZEJiM0ZEVDJKaVEyVTFTREZ4U2pKWmVGRmhiVXBvYW1FMlVGWlZURUpsZW1GclozQjBVbk5RV0ZoblptSlVMM2RLV2tadWFuSlVSd3BpWTJWWVNHaFhRbmd6T1hseVpUbHNaVnBUUmpscVFrNXJSRmQ1VW0xbGMyOW1XbGc1VjIxbk5YTjZRVU5JYVZCeWRFNWhUWGQ0T0ZNd01VdDBhMlIxQ2xBeVNEZHJiRlZ3VkhjeWFVeEhVWEZ1ZFdneVdISnpRMWw2Ulhjdk5VZEJjM2gwVGtaWk4wdERSRVF6VkVabE1qWnplbFkyWkN0TmVuTjJReTl0Tm5ZS1JUaEpOazV1YjNCSFJXMTZVVWhCWXpCQmJWcDRORXM1WVZKd1ZHNDVPV1pVY2s1dmFVOVlTRWQ1ZUZwa2VXWklRMDlUU2xaelVYaFRRVEJCUkZkRWNBcEVWWE5GYkhCdGFtWk1ZbXBqT0RSb2JGTXJZVWRRUlZWb04wbDJLME13WmtKR2MyTTJUbFl5UkhaM1Z6RkpZUzlFZDFGTU0yWTVWMVZSVEZFeFpVazBDbU4yYTJkUVMyODNRMDV2ZG1oT1ptSnRkVkJDWTJ4TE1uSkxTbE5VUWxwd2EwY3haWEZHVm5WaU0yVkVhRWQ2ZEhSc2JVUlhTVUphVmpNeU4zTTFiRUlLUXpSWVJWcHlVVzAzZDNoT1NERTJiVGRJZURObldWRTFaV1pQTmtSdWR6TnpNRWhSU1VGMFNEWnZSaXRCV0ZRd1EwNVZVRWx2UlM4MFdtMXBVM2x2Y1FwWk5uTk5XRmN2VkhWWWRXcHRTRU5NUkVad0sxZEphbTFDWmpScFF6VmFTelUxWkVsWlFUVkxRMVp6Um5kemVIWjZRM1ppWlZRMFJubzNXV2hMT1ZCMENqWnBTa1p4TmpSeFFXcFRUSFZ1YUdVdk1URkZSVEZsVVVRNVdWcFVjWEJ5WTJkNVdVUXhiRGtyU1M5aWNYSmxlVlJOUVdOVVRYRjJZbWx6UTBGM1JVRUtRVkZMUTBGblJVRnFWVFZqVW5NMWRUQnNVVGM0VEU5U05ISm1TR1J4ZEdwVVJrRXdPVWx4YTB0MGQwTnFkVk56ZVZNdmNHRldaemxEUmxCWFZuazNWZ293UlhsQ1oxUk1WRnBKUTI1dFVHeHVjVU0wZDBSVmNYVlRiMFZxUlRrNFNIcFlVa2xzWVhNemMwNDFiVUp2YTNnM1pYY3hVSEJ4WlU5V2FreHVhREJIQ2xSVFNIWkhMMEUxZGpoU1ZYbEdTVVUxUWk5TVdWRm9Va3htV2s0MVluWTVVVVpVUVdwMlJYcGhOa1pWT0ZoelJVTjBWSEJ2ZVhCRWNISjNNU3RIVUdnS2RGVjJLM1k1TlZKM09FcFdjbGRtYm5wT09HVjVUMFJSVDFwSmRqSlJaemh6VXpCeksxWXZORlZoZWtKWEwzZHdRMHhpTjFKTmVXaHRSMkpNT1ZKV1JBcFFXVU12WTJjelZVaGFRMWd2YzB3MVZISkxaVWRJTkhsTFVtWkJNRmsyTldGTmQwOXlTVFEyWm1SUFJqUXJVMmhCVWl0YU5HNU1kbEZPYVV4eVZrcDZDa1JXYlZabGVWUkhURTF0V1ZkQ1FVRnBXa1Z0UlRGSVlrUkxOa0pQZUdvd2MzZFBaazFDVkc5QlFVVkdiMUpQYmxWc1NraHhWVlZHWmtaSFdIRm9TR3NLV0dGUFlYaHdWbHBrTjFZeGFVWlVTbmRwTnk5eE9YWm5Vek50SzNkdGRtNWlZbFJoTmtJeVZGWlBRMWwyVTBKck9XTnhXV2hsWkdNdmJ6QmFXVmQyU3dwelp6TjVkM1ZDVjBOUFZtVlFUMVZOVkdVMk9FMUVOWFpaV0hGWFJrZE1LMVpSUm5GQmRrdzNSMjVNV0ZGRVdUZFZVWFkyTnpnMmFrUTNRbFJDUWxkWkNtSnVaMnBIZEN0b1EweDJkelo2Y0N0S1ExRXhVMU12WmpBdlZuRklNV1pFT0dsTVYxb3hkelJOTVdKUWNDOTFTV2RITUZFMmFsSkJVbTFPV1RCak16UUthMEkzZEZaNFkxaFdhVE50ZEZWT1pFWmtVbGszU1hwWFNWVXdXVWh2TkVGaVQzTTRiVzFZWVVRcllUTTRUM2xwY1ROcmR6QjBkRGMxWVRReGIwVnpVd294V1c5WGJtMVpka1ZpZGpOYVRURnRLMXB4ZEZRMk5XSnNLekJTTjBkRVdXUnROamRwVUdaalJVRXpPVmN5WTNsdFJXdERaMmRGUWtGTk9FOURaRnBEQ2tWUE1IZE5iakUxYjNwcmIycHRjVTlrYUhaTk9USTRTa1U1VnpadVNtTkpWR2czZEdOWmNIbEZUWFJhYVVNd2VEZENWRmxZYTFOT2VsSTBRM0pVWVVnS1pYbEVaWE15YmtGMmRWRlFhbUZZZUZCb2JtNVZNRGR2V2psdU5ubE9NMng2V1hNMFYydDROVVUxUW5oNVZrNVhaVmw1V0VWeWVubHRUa1ZzYzNBemVncE9UV0o0TlZGSWJUVnRkSGhQTVVOeE9XRnpOREJMUkVkV1VWTlZjVEZTVFcxdVNrSk1SVTFTVjJGMldHNVBWR2RRV0ZKdlJFTTFSbTU0VjI5V2MwSnNDa05yTDJWaGNWaG1kVXhzSzNsaFFtaHBlRmx5VkZkWlVFdE1iWFpOWjJsVFpIUnNLME00Tkhsa2RHcE5RMmh4YlhGNVpIcG1TRzUxWkVWTWQycEVhM1VLVEhKS2NYUnlVbEI2ZDJsVFQxRklhVEZzZVZJemVFSm5OVFJXY0N0NkwzWk5VbEIzVkVzME4wbFBiM1ppVkhaVU5HbDBNMVUxYkhaWlEybHBVbmxIZFFveWFHUlRRbkpXWTNRMGJrMU1SakJEWjJkRlFrRk9iV2RDYVZsQmNHY3ZVRTVySzBZeFMzZHBUbEE0T0RWMmFsTlJXbHBQVFRGRGMwOW5TazEwYXpZMENtMXRObTkyZFZJelZtVnNXQ3RMVkZkRFR6bGhNREJvUmtWVGJ6QlVPVU5yYUZweFlsVmtTUzlHYzJodFVGVTBWamhCUlROeGR6bFhNMHBqYUdKalJIRUtRMGRRVkhVMVdITkNiMGhIZGswNVZqaEdTV055TjBSb1QzSkxlRUZKY1d0c09FYzFXV0l5UVZWRE9IRXpla2RzYkV4aE5YcFNUMFFyYm5sdlRGWXlOZ28zZFdaNGJXWmhObGMyZDBwTFNGUTJZMjkwT0ZKakx6SkdlRVZFY1ZrM1YycFFWM0J3T1dSNU16SkRlVk5UUVVjMmRURjRjalJKTVdnMGRHVmpiMlF5Q25aT2QyY3JSbEJ0VDJaTVptd3lNSFF3UkhwbGFrUktkVVJVZVc1cU16aFlNbWxWYzNOd1NERTFSamhSUlRCTlJreE1OalE0UkU1RWNWVjFlV2N3VW5jS1NUTXlTSG81ZVRSb1VYcEtVMGhRU2tWb1FUUllRV2QzT1N0TFVVeExTMmM1V0dodFkyazNPRzVEWTBOblowVkNRVXBNVTFkYVpHTTRZazh2V1ZrMGJ3cEhkRFJHVEVSbVZFaFdNVXBWYjNWb00wUmlTMUpSS3pCREwwWlRXR2hxVjBkaFMxbHphaXRoUkhSWldrNHpPVlpNWjFsQ2VpdElRelJGVkVkd2JVcDJDa1YxTWxaUFpGSmFOVXhrY0cxWFJua3lNMFoxY1RsRWRHa3pjMVpWY2tzemFVY3ZPSFk0TkdkdE9FSmtkME5RVEhkNVJreHZaMVIxTWtwWVlVbGFTR1lLYzJKVGRXSnRhMlJWVjJSQmRXMHZTRTAzU1hveVpXNUdRMEl2VFhCNE5VaDRNVnBpV21nelIwSk5NM1Z0WmxOV01tVkVOWEJqY0RNeU5FRllURE5wTHdvd04xWXhaVzVSU0hSNVJGcFJLMFZFUkhSWVkzSmFXREpvWlVKcWVVOTBSMVJhUVdRek1uaFhhM3BqSzFwU00zaFJUeTlYYzNobk5EY3hVVVUxT1cxckNsaHBTM1I2VlRkU1JUQkNRa1F2VVVaUmVXTlFjQ3RKUjAxeU56UjJkV04wWkc5SFdtSTVVR3QzTlZGbE5GZEZSRFJUVUhaTWNFWnlPRFp3YkhRcmQxTUtLM1pNZW01UFJVTm5aMFZCU2tjNGFVZEhTM0poY1VseFYxa3plVmRST0hoRFJIQlBRVkZLVTJOTVQwODJPR0Z3ZGpWRVVWSk5WM0pPVkU5VVNXWlVTUXB6VmxKR1JVaFBNRGg2TW14bFkyWXlXVGRhTWxac2RqQTRhbXh0Y2xkb1lXcENjSGd3VVhwcVRGcEZRVlp2VlZsVlZWVk1aSFY1TTJ0ME4zb3pUbTE2Q2tSVE9GVnNWRWQ1Um1zd2RreE9TRWxZWm04NFQxQnVkRmhyVjBoRk5EZFVNMlJIZW5CRlFYZGpXbU5TZFd3MmVVcFJVMU00T0hCRlJGSnFjSGxsUkZJS1ZVUkJTVlZsTVUxSFFWbHhUMlpNWkZWaUwyNU9lalk0VVhKVGQyOVBWbVZsU0ZobmQwUm1iMUpRUW5acVkwVm5aa1JxU0hVNU5IQkxSVVp6TUdJNFRncHVTbVpMV210RWVGSXZLMHRSVkdOcWFVUkJWbGRvV0VsTk9HdFVOMFpRWVdNdkwyY3JZWFEwU0d0WlowVk1WVmhPZEVWblNVOXJWbE5CVEdkNlptTnRDbUl3YlZSck5qZHhSVEJWWTFFeFRGQmlWMHgwTVdoNFZXWkdMMHRhWjNSemNWRkxRMEZSUVhablJrcHZNSE5FT1djclZVVnNjMk5JU0ZacU4wVXJjRFFLUWpOUlpUVkNVbVEzY0cwNU56RlVjMFpFWkhWRE9YTlFSMFoxVEV4MFIxQXliakpGZFV4RFREZ3hUbXhWVHpoSlJURnFUR0oxZVdGbU5VczVSVFJDZEFwVVdXdG1RbTRyYmtKWlpGbHFlakpETkVScWVYcG1WelJpT1dNNFRUQlNSemxvUTNsa2RIQmtWMGgyYUhOdU9XVkNhMkZsUldSQ09VdzRNVmh5WmxaaUNpdEtaQzl1Y3pKYVptMDFWRk5sYkhsR2JtODRla0pRWVVselFXSnRRWFZ0VVhkQlpVZFlOSEZTU25KNVlUUkllbGRKV20xTFdYcEZURWxITkhaRWFtNEthV2xIZUd4bVYyOTZlalJtUVN0SE1tTldibmxFV1dKT1YyRTJWbTQ0UTFvMk55dE1iVWRKYUU5cVVHb3lSalIyUzNnd2VWWlZWblZ0TTJ3dlIwSktkd3BTV1ZsdmEyRlBVRmdyVldoRllXZHNXVlJRVTBaeldDdHlVMmM1UzJKek5UWjJiR2RSWmlzNE1rVkpXamxVVm5GUVFYaG9XVFJ4TW1RM1kxRUtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogenVuNGlncGYxcTduOW16dzI4cTN1b3FhenZncHF4c2JqdXk2bGpndnJ3bnQ0eG9rY3BnMWp6YjBqOWFrbXRib2J0OGZ5anB1aTNqbmpmM2w3bTI3OGF4a2c4OXNndWQ3NHhubHF4bmE1Ync2eG9jenM3c29vcTRqaGh4bDJqY2gK\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13084' + - '13072' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:05 GMT + - Wed, 14 Jun 2023 21:32:18 GMT expires: - '-1' pragma: @@ -1407,24 +1260,24 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVUxT1JFSlZSelZxVkVKR2FXdDZTVFIxTmxoVVozZDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDAxNlJURk5WRUYzVFhwVk5GZG9aMUJOYWtFeFRYcEJlazFVVlhoTlJFVjZUbFJvWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuZDVXRXBMZUhCSGEwTTNUVUkyU0VnMVJtUjRlRll4UWtsa1JrMDVXbko0VlZaWlpuSmFSRVIwYVRGeGJVZ3lkVXhGVWt0YVVrWnJPWGN4WVV0TFNtOEtiMFZWTkdodVdDczRaM3A2ZWpab1JFUnhUeXM0WTFoMlFrTlRaMGgwTDJzeU5HTnBXbFEwV1dsaEt6UmxlV2RJVmpOVGNsWjRkR2REZEZOUk9WSktVd3BSTkdsUFVXdG1jVVptTjJjeWFIWmFRMlJJTHpSbVYyWTJVbkZoVUhKaVFqZEhXbUpNTkV4NU5saGljbkpJZUZOUmQwbFpaR1JEVTBKTEwzbFNSV2h1Q21oU2VXRlVja0Y0UWpRMVRVRmtUSGRWZW5JNGRqQjBabmhrVjJaS2RHNVRhVk50TURGbllrUXpOelZSTlhCd00xVmFOMUJDY20xbmF6VlFTVFZ6SzB3S00zaERjMGx1VDNCU2JIWnBPRlo0Ykdoa2R6UTRNSFZCYkhKSWNWcEVibXMwV0RKM2VFTmliM2ROVGpGU2JqZFlTR2c0TlVFMGEwSk9SRUl3ZVhvMVJnb3ZjR3c1WW1OTVRFUnlTVWR6Y0d0VVlUbHdOeTlETkhWVlpHcDFXSFIxZVRkUWVtaGFlVk5PZFU1aVVHb3lZM0J5VUcxaE5rSmxRbE5TTHk4clNFWjNDa1pDYjB4bmR6QkxhWEpFVEhoc1dqRnZXSEF5TWpaMlJIVXhhRUUxYVhWRVVuY3ZVMjgzY0dOSVQxTjNTRU41VERSVkswTlVVa2x0U1V0dVFWVmplamtLVmxnd2VIVnFVMEkzUmxkbVFqQm9URVJYVXk4eVVUQm5jVnBJV1RSUGQwSjZOalEwWVRsWWRESnZVMkZQWm1wM2RIVm9RbmhKVmpVeGR5ODNRWE5ZYmdvMFR6aFNObE5pTUVwV2VuWklXazV4ZG1wUmRqZENNbkZvYkVWc2MySmpXRzlJWjBOaFpVMVRiSFJFY1VrMWVtczVZbFJaVGtaRFFraDVlVzAzV0hCSkNtbEJlRTVKZEZWNmVHVk5aR053Y2toWGJVVjJVVGRxV1ZGM2NHeHljMWhJV1ZCUk4xaHRhWHBJUm0xTVJVaHNWRlZDWmsxdFpEWnVjSEp3T0U5aFpVTUtSMFpzZG1KelFuRnFSR2gxZFVvMlVXdEdVR3RNWjJOSWFrMXZRMDVZVlcxV1RFbEJRbUV3Y1cxblRVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1IyZFBNSGxTVmtvNWVUTm5OMFF2Q25GVU4zTkJjWEUwTjAwNFEwMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFuSmtTR2xyVEc1c1lqUnVUbWxsVDBkclZtOXljR2hSYTBJS05scFBiRnBOY25GdldVazRkR3RXZDIxMGExTjVOR0YzWlhvMVYxTXJOSE5zVTNsYVNGSnlUeTlrU3paV2IzWmFlbkJ6UW0xaU4yRldWR2xITUVSNFpRcEJhelZVVXlzemFUSnFTemRTUW1WYWRHbDRTVWhXYlhrcldqSldUV0ZKUVhOb1VtMW5kV3BvYzFKS2FHdERObHBXTDIwNGNtcFRNVlZJZHpjd1dsSXZDbkpHVkcxM1praEtZa1JyWXl0VmJFSlhVbUpHVEdVNVJqaGxaM04zTTNobWFuSldibG93UW1JMFkxTnlSMGRCTDBkUE4zQXhjVGxKYXpFd2FXOVpNRUVLUmpSV1VYTjNaWFoyT0hFMU5YVTJUemtyV1ZJdlZUQlhXbEZzZWxkRFF6bExOM0FyTkdJelZrUkxhVzgyZDAxWWVXTmlNVkZuYWxSblMwOXNXREY0YXdvNGRURm5ZbkZQUTIxdFJtMXJWWGRpYWpoWk5uaFVNSFJ5SzJjcmVFdzNkbHA2U1ZBdmRrOXdOV05pU21aVGF6SnpZMFV4WTJOSk1FeHJhaTlYV1c1NENuVlhjemR1VlRkaFdEVlVXWFpqV2tSTWNIbDJaRzFXT1ZOS1ZIQjFjSE16TXlzNFZXdGlTWFoxYXpObGFXNUROMjV5WW5GdGRGQnJUREZZVFhkRFRXb0tSVmh1Y0ZWVE1GTXhRamszYTBZclEyWjJabEJFUWxsMVdUZFhUR1Z4VEdKSlR6UnlaM0VyU0c5MVRFWktia3h2VEdzdllYTTJjeXR5UW0xRFNFMXBhUXAxVjNaWlZFMUxjR1p6WVUwMlRIRjNXRkpHTjBKMmFHeGFUM05xT0RGUVpEQjJSa1pXVUN0clZrVkNhMmwyZURONE5YcFdNemRuVFZOQkx6ZHNiRU5QQ2xWa2NGQXZRa1ZLY20xWVpHaDVTMVJsUVZjM1RHbG5lRzFTUm1WeVN6TXJkMVpxY1c5SFdHd3pjV2RaYVdObVZuWkxZVFpTTlZaWFVsVjBZVGgwVEVzS1RrdFhNV2wxTUZad2NGcFZLek5EVTBZeWIwSmFSVUl3YWpOblprd3JTR0pIYTNORlR6bE9hMlJSWkdaVk1saFNUV3czYTBJNUwzRklXRVZzYjFwcWNBbzRSeXM1ZEdadk1Xa3hhakZxYWxOU1ZtYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zNWNrZGYydy02MGU3bnAwaS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdGhpY3p0ZQpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdGhpY3p0ZQogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGs3a2dpY3lsemdfY2xpYWtzdGVzdGhpY3p0ZQogIG5hbWU6IGNsaWFrc3Rlc3RoaWN6dGUKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0aGljenRlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGs3a2dpY3lsemdfY2xpYWtzdGVzdGhpY3p0ZQogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVOVJjRWRqVkU0NGIzYzVZa0ZPV1VnMVlsSjRWMWwzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwMTZSVEZOVkVGM1RYcFZORmRvWTA1TmFsVjNUWHBGTVUxVVFYaE5lbFUwVjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJNMmRWU25wdlUxVXdVbEZPUzBnd2FuZGFaM29LZFZSVGEyWnFhRE5xUjNZdllrdFNSa3A2YUdsbE1uUk5XbkJUTVRkUFdtNDRTbGRRYkRKVVJWTTJNWE5UTVdwTldURjNSMjFFU1ZSS1VtTlBaV0phYlFwUFVrZE5ObTh4VlhZd1JrWmthbUY1ZUZReWRIVkdhV0pFZVhoNVNrSlpVRkF3YlVaV1EwaHBTMkpRY0dGb00xSnViV0p0TlZwVlFYVjJVbmhyWVZGRkNuSXZPV2hpWkRGSWFucDRjMkp4YnpGWkt6ZElOR2xTYTJaR0wzVmljMnN3UmtwWldGbGpRelJ1TjJaNFRuaERUMFV5VG1sQ1JFeEZiamxaTVdSUU1YWUtOa3h0T1RFelQxRkJlSHA2T1VVeFYxa3JaRUk0YURGUlZEUkJXRFZJVDNacE5FMUZURmh5U2tOWFVqUXlTekIzYmxKa2NUSkdVWGxvWjNGNVRFa3hiQXA0U1ZoeFlWSlpjbWhIZVV4SVZ6QlBOR2xaWVhKUVltRkhOVU01VFdabFZXOVFhMk5KVUdWSE5FTjNVMFJuYTB4RVltNXVha0ZaVkhKYVRHOW9ibHBSQ25KUFQzbFdXV3BRTWxGdmJEQnZjRkpVU0hBd1EzTTFVMkZHTnpWVGMzRnVjMjFUUkZGRVIzWkxSelE0WTFOeEwwMU1OM05oV0N0TFVWQkxkak5pWkdvS2FrWnJkV1UzYmxvd1ltbFRkazVUUmk5bmEyaFpaMFZJYjNSbGNucGtiVTVSWjBoTU56TldSbHB5UnpOUlRYWmFUMHRTZW1Oek9WVnBhMlpEWVRKSFJBcHRWVTFJZEVSclJuUTBhbnBzY2xSRE5IbGxUa2hNWW5nemFVOVRkbGRuWnpOVFFWVkRUSEY0U2tZMU1raEtjM3BKYkVoaVdWRXJhV2xxZGtNdldWQkdDbFpWY2xCTllWZHhLeTlMVm5WTVMyaEZlV3AwYWt0cll6TkxORWMwU0VrNGIxcERXakYwTW1VdmQzcHhORWxTUlZSUVNXaGFhREJXUWpOdU5YcE9jRklLTlVWd01rSlhaVk5UVlVJM04yUlZiRk01YW5NMGRrWmtiR2RNT1hWa1ZsaDZZVEozUkVoU0wweFRlRzVoUmpVeGRsRllVbHBOU1RkdVlqTTBTREZSU2dwaWVVaE1aMmMyUWtsM1RGWnlaVEJTVTNaRlkyUlFjME5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZZVUUzVkVwR1ZXNEtNMHhsUkhOUUszQlFkWGREY1hKcWMzcDNTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJTRTU0YVZadFRtaFZUbk5uSzFRdk1qUk1aUXBLVFRKNlIyUndabTFDY0RWTGFGbHpZMnB4UkZjclVVWlpNV1JsVDBSUVowUktUbWRDT0cweVVYcDVMMEZyTDJsU2JraDBRVmN3ZDJrMWRHb3ZhMEZTQ25veGIzRnlUV1JTVENzM2QxSnNZMUJwYkVOUmJ6TnpZbEpQUVU5blYxTm9jbXQ1WWxwcGRscENlbEJXTlVKNFRFVTJZWGRWTW0wMFFXODBRWFF2U1djS1prWjVRMmhXZVVNclZXTnBhWGMxUVU1SFdUUnVPVU12VFVoMU9URkRhekEyV210Skt6aFdORW8wY1haaU4zWm9jbUZhUVdKa09WaHdWekJOWkRWd0t3bzVRblYwTkVoQ1NteFRTRmczYW5oQ1EySXhhRkJuTjJaaFJrWTBSREpsTnpSWGFXdEVaMWRtYVhaNGNtVm5hRGxJTkVKM2FYbHJMMVpxZG1WSmVDOW5DazFGVnpKaU1Fd3JVazVMTkZwRFFXbzFVRm81VkVWWVkyYzVkWEZOUmxwUFpFdEJaa0l5U21aTVFrUm1VSGxJTDFsMGFFVjBkV1ZDTlhWUkszaElOMGtLUVZCNVpGWlNUR295U1ZRMWNXaFhjWFJTZUdwaGFXbHVZVEZ6VFdsbFZuUTRZM2huUkVwaFMxTm5NbWx1UW5rNGFETlRhV2RDWlN0cWF6TnBjVlZQY1FwbmJra3lORmgwWlVwRk4wOWpRWFZWUTFVcmRWY3pPRVp2T1hOb01UUlBSV2hVVm5oU0szQkRlWEppSzNJM1IybFpWbEUxY1VkeFVrVnZZM1ZVYTFWQkNrWm9UMVJaWWxKQlRFRjJkWFJuYmpkb1ExSTNWWFJqY1V4YVZXaFBVREU1Tm5WaFYzcGxWM0I2T1Vjdk16Tkthemt3ZVN0c2JVZGliRmc1ZERCblUyVUtWazlFUzNWWU4xQlVNMFJPYjI5Nk9HcFFSRXBVYVZWVVdpOTVSbUU0T0dwcmNsTndSV0pYVEZOeVdXdDNURkF2TTJoa1ZqVjJiVmd4YlM4d1RFTTFRUXBDVjFRclVYUkRhM1JqTlhKSmNFSndTRGxFZEU1eGFUWkJaa012TTNaUk5qWklRU3RtVXpGc1UwbEtkMFJKZWpReFNFMHdTMnd6VTJ4bFdrTjRNbEJ5Q2xGRWRHZE9XbFl2VVhFd2NYUXlZbWsxU2xCalp6SkxMd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJNMmRWU25wdlUxVXdVbEZPUzBnd2FuZGFaM3AxVkZOclptcG9NMnBIZGk5aVMxSkdTbnBvYVdVeWRFMWFjRk14Q2pkUFdtNDRTbGRRYkRKVVJWTTJNWE5UTVdwTldURjNSMjFFU1ZSS1VtTlBaV0phYlU5U1IwMDJiekZWZGpCR1JtUnFZWGw0VkRKMGRVWnBZa1I1ZUhrS1NrSlpVRkF3YlVaV1EwaHBTMkpRY0dGb00xSnViV0p0TlZwVlFYVjJVbmhyWVZGRmNpODVhR0prTVVocWVuaHpZbkZ2TVZrck4wZzBhVkpyWmtZdmRRcGljMnN3UmtwWldGbGpRelJ1TjJaNFRuaERUMFV5VG1sQ1JFeEZiamxaTVdSUU1YWTJURzA1TVROUFVVRjRlbm81UlRGWFdTdGtRamhvTVZGVU5FRllDalZJVDNacE5FMUZURmh5U2tOWFVqUXlTekIzYmxKa2NUSkdVWGxvWjNGNVRFa3hiSGhKV0hGaFVsbHlhRWQ1VEVoWE1FODBhVmxoY2xCaVlVYzFRemtLVFdabFZXOVFhMk5KVUdWSE5FTjNVMFJuYTB4RVltNXVha0ZaVkhKYVRHOW9ibHBSY2s5UGVWWlphbEF5VVc5c01HOXdVbFJJY0RCRGN6VlRZVVkzTlFwVGMzRnVjMjFUUkZGRVIzWkxSelE0WTFOeEwwMU1OM05oV0N0TFVWQkxkak5pWkdwcVJtdDFaVGR1V2pCaWFWTjJUbE5HTDJkcmFGbG5SVWh2ZEdWeUNucGtiVTVSWjBoTU56TldSbHB5UnpOUlRYWmFUMHRTZW1Oek9WVnBhMlpEWVRKSFJHMVZUVWgwUkd0R2REUnFlbXh5VkVNMGVXVk9TRXhpZUROcFQxTUtkbGRuWnpOVFFWVkRUSEY0U2tZMU1raEtjM3BKYkVoaVdWRXJhV2xxZGtNdldWQkdWbFZ5VUUxaFYzRXJMMHRXZFV4TGFFVjVhblJxUzJ0ak0wczBSd28wU0VrNGIxcERXakYwTW1VdmQzcHhORWxTUlZSUVNXaGFhREJXUWpOdU5YcE9jRkkxUlhBeVFsZGxVMU5WUWpjM1pGVnNVemxxY3pSMlJtUnNaMHc1Q25Wa1ZsaDZZVEozUkVoU0wweFRlRzVoUmpVeGRsRllVbHBOU1RkdVlqTTBTREZSU21KNVNFeG5aelpDU1hkTVZuSmxNRkpUZGtWalpGQnpRMEYzUlVFS1FWRkxRMEZuUVZkUmNsVlJRWFJWVlM5WmFYZE9XbEJtVG1zMlFsWkdhbXd5ZFRKS2J6ZzFlR0Y1YzFBeWNWSjBUVmd6ZDJwNGNVdHFWRTlCZFUwMGVnbzFUVTlXZG5WaGNua3hValkxWlVFeldrWllkRVY0YlRsa1JqbGtaVE5uUVd0SWEyUXdRVXRTTjNKM1VEaE1XVFZXU2tRdlpsaHdXVk5sYm5aak5GTjBDbmRrVURKVlNHRnVNRU5QVkZkVlpuWllkbWMyZUc5WFdXbzNVakJ1VVhRNGR6UkpTVkkwZFhKelRqZ3phazV3TTNaNVVtZEpRa2s1UVRKc05GbDJRVzRLVDJaaFNUbFNNVE5aZFRaTU0xSjNXSGhoZEZoU01XZEhlV1ExZEc1RGJpOXllazlUVkVaWVpHVmtLMlZzY2twVEx6Qk9kRXBUTDBGR1UxWldka3RaZGdwc1V6aFNRbEZVYXpOTlExTkVObGxFTWt4V1ZVbFZRbkZJVTJSSFFrSk9WSGhCYUVzNU9FMW1RMU01UkRFMFVUTk5WM29yT1Vrd2VuUkdiM1p3WVhBdkNsWTNTWEpUWkM5d2FteHBVVmxOU25Cc1RGcHRXV1ZPTUdvcmNGbHhOREExZDI0eVFqSTNlbFJKYkdaUlFuQTBRbEZyYURaeVZrTXpORVpIYW0weFIyTUtWbE5RY2pSWGVrVnZNbVppWlVSU2RFcFBhVmRtWnl0dVVUVnBiR1Z6TWt3NWNFVmpkVzh5UmtkcWRIWkpWR3RKVTNOVVdFUk5WbFE1VjFvM1dXMWlOQXBKUVVnM09XNUJWRmRyU0VSMWVURk9ZMVZLY0UxbU9XRTBkMlpwTWpZclZISm1iMlpzY1cwMGJtZ3hiRFZGZVdGaVFVVkNPR1JYWWt4aU5WSk1ZbEpQQ2toYU1tRjBSSEpVTlZoM2NYSTRWVGxFV2tsU1UzcEJUVVZETlVSR2MzZGFLM0ZsVWt0bmFsSTRUMnMwVHpaSWVIbFZlbTFXU0cxSU4zWkJRbVZyTTI0S05ra3lRMDlQY21GM1lXUnVZV2xGVG5OTFJtOTJhakVyVUcxeVVVUXJOVVYwZW1kTllrNXROM3BLZW0xM1NuTldVSE5vWjNOMVNIZFRWemh3VWxGcFJ3cEthakZTVm1wdVRVcGhhbGgzT0VsT1RXazNkbWwzUzJKSFUyODNTVUV4V0c1M2NsTXJZamxKVEdVMFJGbFhORU5qVVV0RFFWRkZRVFpJTkdGTU1rMXJDa3RaV25sYU9XNWljRTU1U0c0d1RsUlZUWFFyTUVKeUszbzNUalk1WkhGeVUzcEhLMkZSYm1SV09YVXpWbkl4TkhobVZqZENXRXB4V1hZNVl6QmlSMW9LT0VoMFUyazJTalJoWkVRMU1FOWpOblJtVjBVeVdFbDFSa2RaYkZndllURk1RMlZrYVZwMFV6bFNhRGhMTW5GRlNGcG5TblkwTWpNclMxWmtXSEZFZFFvNVJuQTFhU3RIWVRGTVowOURkR1ZvUjJZd1pXVmtiMUpEZDJkV1R6TnpVR0pyZG5aNGFUaFRhSFZOUW5CSE9WUndZbFV6Y0dOUVpVcDZlaTlvUzFKeUNqRTJNazlHVVZRd1JVbGxZVVJpZURGeFVVUm1UbWhKVVdWSmRWQktUVzlRY1ZkcmFGSkpkamRhVTJVdlNFOW5LMlJZZEZKWlZreHlURTF4U2xGWFZEUUtVekIyWmxOU1RVVnVXSEZXTVdWNWVVSkZLekVyVEcxUFZXbEtNMFp3VVhnMVRXeHFiRm92VGtjck16ZFVVVkJ3WVRadlFrcHpTMGxxYVVkQlkxWnlaQXA0WlZSdVYyUmFNbVpRTjB0QmQwdERRVkZGUVRsSVptRlNhamhUWVVwdlpTOVNSbXRuWVhjclZsQnVkREZQVkVoelVtUTJRVVkxT1hSMU5VaGFhSEZvQ2xNNVdqaElUVmszVTBWQlZua3pjMGRuYUhGTVJHdEtLMFpHVm5kR2VYTjFWRU5RZVU1MUt6WjJMemxOWTIxMWJXSXhSVlpZTlV0dFZXUm9NRXgzWjFJS1ppOTZRMFpEVVdaMVJpdFdkRzlPT0U5bllrczFLMFI0U21aMFoydFhOSEpwY2paaU1IaHljaXRhTVVObU0xQXZjSGR3UTBGeE1scGlWR3RpY25wNk9BcDVTWFp1ZG5SR2FISTFSMG94VDNWcGFqZHNjbUZRVFdsbGFIRlBWa0pzZWxoT2NVaFFVbU0zTm5oc1lrRllTRlF6YkVReU1UaDNaV3RFYUdWRVoyTlVDalI0ZFhCV0wyb3ZVVlpzS3pWSFNIbENNQ3QwWkRaalJYVkliemhRUldkc2NrOU1NM1pIYUV4YVprbEdZVll3YUVwUWVWVk5MME5UVVcxVlJXdGtOREVLWWxSU1VtaFpiREZFZG5abWRWWnBXQ3ROYkVwRVpWa3ZOM1pKTkdJck1reG5WVTFrZEN0UGVuRlJTME5CVVVKWU1FcHRkbGxJUldWU2FYZGpWV04xUndwMk9ERjVUMGx1Vm5OTFpHSnFNMkpFYlZCV1QzVTJUMHh4VjFKVldrZGtOR05uVFZRdmEydEtOMHRxYXpZNGVVaFVRa1ZTUnpGWllqUldhbE5oVkVjeUNrNXFja1o2ZWtRM00xcHhjVlF4YUdOWFEwTjRNa2wxYUNzcmVXcE9NRzVyVkdKV1NUWk9hWGxJVDFaQ2RIaFFVVVpTV0hCVmFuZDJhVFpVZUZWMWRXRUtaMVpMT0dkaGJsZEhVMlJVZFhsNFNUQkhja1Z3Y25sNlYyNWtZMnRvWTJKWU9EaFZMM1l2U0ZSWFYxSmtVMUZMUTJnMGVGTmlSalpMTlVoS1IzRXZaQXBPYm5KWWVWZEdabnB1WVVKQk9USTBlVzB6Y3pWWE1UUXZZalpXUmpWTFJFdE1iMnN2ZDNadlkwRllWRVIyUkVwWlJUZHljRzF0Y1dSNVVVWm5LM1IzQ2xkQlkxVlpSM293T1NzMmVETmtVMFkzV1V0NGQzQlFPVFpLZERKMmJqbEpiREpGWlU4cldVVjRjR1pqZG1kdE5rNWhiRUZLTmxGM2VGUTRiRlJpTkM4S2FFUldiRUZ2U1VKQlVVTjZMMDFZYTNORE1HbG1SVFZUWW1keE9HVm5PRTlUTVVKNVZFNXdSa3BSTmpZeFRtSnFOWFl3UlZSS2FubHRRVU5oZDNOM1JRcDJjMGxPU2xFcksyNUZTa1JDYlhWRVJuZENSek53UkdkdFFuRk9ibVZUTVRGUldEUjJRVGd5Y0RsRUwyODFNekphYkVoelEzQnRkbnBITUhKdVVXdEtDbTF5TlVWUFVIZDFWVXN2TVVaeFZWWklUVmRXWWxSS04yNVRhRzEyWTNnNE5DczJRVzVsZG1Oc1R6TlRkMUJPVkN0b1lrczFla1ZLYVdjdlpXRndVSE1LVTJzdllsSnVNVk5MWldKT2VIbDRZMFE0T0RSV1pVTmpkbGgxVTFjNVprOXRUVlp5UVRrMVJVMVJTRGhGV214NUwzb3diMUZOWmtGcWNUUlpVMmRtVFFwdGJFdFdXRkpPZG14S1kxaHZRVEJYYzFaQ1JqVmhlSFphUlN0WVJrbGFiV3RXUTNkeFZrNXpkM1JXZFdoRVJqWXhjSE5PZEdwa1NuQndjR0Z2WTBKbkNtWnpjbEl3UlhSaVlsQTNkbFE1VmtWWVIzUXlOVTFMZDAxaVZHZHVZa2MxUVc5SlFrRkNUbkl6VVhVNVUxQk9NVzFrYzFwQlRXcFNOWGhHWldRd05Gb0thbU5aYTJ4V01ERkhNalp6ZERCb0wycHJNa1ZPYkVwWmVrNVdhRlpxUzFsbk1HVmtiQ3MwTUdRM00yUm5TRXBKT1VWdGFFazNRM1pDT1dGRE9FYzNRUXBUYUdOeFVVOVhRVWcwUjI0dlFqTmhiVGxCTkZkcldtRjRPV2RxY25kc1JqQTNOMVp1YUd3M1FVeFZiMUozWjNCNlNWYzBkM2R5VHpod2FqUTNPVmRpQ2pFeFRUbHlUWE5sY2tOT2MyWXhUbXBNVW1sR2FVY3hVMEp3YWxoU2VEZ3lWMFlyTWtOb05VYzRObkJNTWpGVlozWkhibWhxY3pGUU16RmlRM281YmtRS2NIcE5PSFI0T1doTkt6aGlhVlpEZGprclZrWXpaRlJLYWs0eGIzaDNNbTlqYUdjd2RYSkxSV05yZDBWNmRTOXJRMFYyVm5KNVFtdHZjM1JDWVU1UmFnb3dlVFJ4V1V0RmQweGhNbU5RTUhReFUyaHFZbVo1Y1dWclpIcHFWVEYxU2tKSWExWlRjVmhvV0ZwamNGQklUWFl2Ymk5SE5YTlRMekJHUVQwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBjdnliMmR1YXZ0ZHhuamFkMXYxMno1c3k2YTh2d2RkZmVlYjJzYnU1ZXBiaDY5cnR1anhmcGNhcnptZ3V1NW9iN21raW4wcWJudDkwb3N0N2N0c3U0dDFzaHlxMnFmMmR6MmY5aXVubGQxaHliNHh6ZTd4dmM4cWRpOGFnYnQ4cgo=\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUlV4WU9XSXhNM00yVkhCa1dVcFJPRWxVTWpSMWFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVVYbE5WRVUxVFZSa1lVZEJPSGxOUkZWNlRVUlplRTVFU1hoTmFtdDRUakZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOMENsTXZUVWRhWnpBNWQyOXpMMnhOYm5FeGRHMVNNME5MVUhsTFNVUldkM05HY1ZsbmNVMWhVMU5JUkRCRFV6SnZiR0ZYUVdoSWFHNXNlVElyVms5QlUyY0tlRzV4ZERoYVJIVmFPV3BOWkdkNlNDdFhUVFJETTNBMFZ6UjZSRE4zWm00eVpqVlJNWGhYWldkUGMya3dkMk5SVUV4NVdEbDVZbGhDTlVOUVN6SkdLd3AzYXpJMlVURjFkMHB6ZEVsTFExWlZXbWQyZGs5U00ybFpOMDlyTmpjd2VtSXJNalJsWmt4UmFTdGtTbGhUUmtjNE56bFFVRnB4UTFsVU5rbHBWMnRCQ25WS1N6ZEJhR3BuV0hwSWVVWXlVVFl2YVRWd2RYSjJSbk5qWlVSc1NsWTNka29yU1VWeU16QndZMHhXVUVKUWRFSXpZWFZXZFVOSE0xVlpZbmROTkZRS2JUaFNZVXhMU0RsM1ZDc3paM3BPVEZwdk9Xa3JWMVE0Tm5FcmVTOTJOazgzZGl0eUwzTkZkbGt2VVRKMVZHSlFhRGRvTTFwYU9DdGphRU5MTjBwVVJ3cFBPRXRyUkZOdWIxY3paM2RoYjBjMWFUZDBOQ3RZT1VWdWQyVmhOM0UyZWxoT2VWb3JNalp5TWtWdVVtMUxOVEp6VTBZMk1tbG5PRnBpVVRoeVVuRlRDa3hMYW5GSWJ6aDFNamQxUmxWQ1dVZFhha292TjBzM2RuSkZjRzl1Y25wTWRsRXZZMXBFT1UxU1RGaEliRzFMYlhoM1oxcFBNV2hyVG5SdlJGZDJUMVFLU1ZWSU9UQlhValZ5WXpOT2NteE1UVkJQYkZob09HMVFPV2syWTNKQmJFRllibmRXY0RCbWIzUmhURXN6U2xoM05GVjZiR3BMV1hkUU1tTlJSVTVZTmdwQ1VpOVBTMFJoVm10UmFYSjFjR1JhWjFoMlVrZFhWMk14VURWQmJERTBWMVJYZVRWdGNYbHVOMjE2VkN0UVEyMXBUVk1yTTFaVE1VTlFiWHBOVDFaUENuSnlNbmt5WTI5eE0xRkxSbkppZGpKWWFXazNVVEZxTURSc1JGaGpLMDF5UTFOV1VrNTVOVEkyY2xOeU1VMVBSQzlDVVRoU2JYUXpMMEp4V2xaVFZtSUtjRlpKU0hOek4yVkVORmhUZEVSS1NHTlVMMmxzY0haYVVTdFJabmRZVFVWck5rMTFRWFJhWnpGUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWMVJsUjVRVUZEU0cxT1MzbGhZWE4yQ201WVNIVkhMemhhVm5oSmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRFQyeDZkMUJPVGxvM00yMXdkMFJtU2tFMFpWQm5iMjl6VUU0S2FsTTJabXBqZFdKeWEwcHZSVWxtVjA5bUwxcDBjM3BvTVZwblMxZExSeTlqWldrNE5XeEJiRVkyVUdOUU5tWkZXRzFXZW1SMFdTODBNbU5QTUVoa2FBbzRSalZtYmtNM1p6QlNabnBFTW05bVRrUk1hbVJXVm5OTVoweHhSWFpVYWt4amNFeHRVRXBYZDNFelMwNUROR0ZXY1ZBdlFreEhVV3RJWVhaNWN6Z3JDbWhZVG1wNmNXVXhLelEwYTNoRlNGWTRlbE13Y0VwWFNsTlVXR1V4VG1kRmVWb3ZPV1pXTUU4eVMyVlJRbWh1UmpobVV5OUJSazFQZFZKaGIweFhWbEVLYVZKakwxSlFZUzkyWm01bFVWVkZNR2M0YUN0NE9YYzJhM1paY1ZoMVZubHRWemxZYUZoQlVFZFBkblowU0VZNGNFbHRWRzF3WW5BNWVqTndhMVZDVlFwWlFVMVhhbWwyZEVod1JFMDRUVEE0ZERRM1JsaDRiMWx3VGtzeVV6QjRjVkpvVjJOd1RtSTFTR1ZpTWxrM00yOWhVRWh6V2xOUmVFcFlWMDAwYjA5UkNrczRRa2QwY2xVdlZubEZURkEzZVROSVR6VkpRVWxpYkRoREwzRmFVM056VGpWeGFuWjRMMnN2YVZKQlp6QlNaVWxtTmxrclVtdHZNVEJSVkRSYVZtb0tMMmxMWVdWTk55dEVUbFF3WVd0S2RGcFhNV1JtYTBwVFNuaHFUV1ZwVEZWM0wzTlZXVUZKTlZWeGFFMVphWFpaUW1GcWVuVm1SRE14TUd3dmNGVXZNZ3BrZUROM05IZGlWWFpaVUdoV1ZGWTFORkpsTjBaQlRrWTNWRU5tYUU1blZWZzRheTluUTFndmJHOTVhVFZWTmxkRWFYbFBkbVZwWkhSM1owdHhlVGxDQ21jMVJFeDRiVVZQWW5vNVEyTTVTWFpWYlRoV2Npc3ZXR2hxZFRCSVYzbE5hbU5pYmxKSGNESjNPR1JUY3paMVVHcFNTMnhrWjBKR2MxWjZLMWRJTm1vS1UxaEhiM053UjBsNGMxaHRSWHBxZDB4dUwycHRkWEJzYVRGdGJ6SkpkMHMzVVhwelVqSXZaM2x3UXpobWRFUlpNVXRzVERGbVoyVnJlbmhrUzNodGFBcEhNMVF2SzNsS2JHeFZWMGQzYmpKb0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2R5cG90dmotazFjeGY0Y2EuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3Rkbm9wYWIKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3Rkbm9wYWIKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RoZWdhc3U3a3JzX2NsaWFrc3Rlc3Rkbm9wYWIKICBuYW1lOiBjbGlha3N0ZXN0ZG5vcGFiCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGRub3BhYgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RoZWdhc3U3a3JzX2NsaWFrc3Rlc3Rkbm9wYWIKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJaRnBNYTFRMGRHUmhVRFUzYVZsb1VIcFdSakpZUkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVVhsTlZFVTFUVlJrWVVaM01IbE9WRUV5VFZSUmVVMVVTVFZOVkdSaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVU4zUWtaUlZqRk5RblUwUW1wSU5GcDVVWGwwY0VnS1VGQXpZVlJ6WnpaWFVWSlRkazAxTURoR01YQlVLMk5vTnpodlRrOXlRazEwV0c5R05uaFBVM2h4WVZJeVIwcENjV0pJY0hSMGJWWktkMUZxUVhOMU1ncHBZbFU0VjFwUU4wZERiek5KTkZSeU0yVktSVWtyUzNVMFoyczRTbTE1YkdGM1dVTnBiMGsxZEhOS04ydG1WMjl1V21wR1FuRlpiVWRPY204NVZsRnpDa1kzVG5GVFEyMHhSM2M1WkdWQ09YUlFMMEZzYTFkbFQzUk5XblI0TldObFJsbElTR1l6UzNRM01sWTFiRWxZTWsxRk1sRk9Za3BIV2paNWFEbHNaakVLWVdGRWJYcE5RVWxsU1N0MU1ERnZla1JJZUV4VVZYRXlVakkwTDFsbWRWTldVMnhRUkdGSmMxcERjV1UyU0ZwbGRYZEthazFVUkM5cldVTjZSekF3VmdwcWMyOUpUVkJrVFZZM1luRjZUbGh3TXpSNlQzazRUQ3RpY1RoVWQycHZNbVZwYTFsVFlrNUJZMEo2VVVOYWJraG5jakZ3UjJ4UFpqTXhPVTl6TW1sSkNqVmpZMkpNUm13elNqaGpTVFZKYkZkNFJFWkpSRkZCVGxsUGEwNVRkMU5YYldGT09IUjFUbnA2YVVkV1REVnZXVGhTVTBoemFTODBURkk0UlZkNGVtOEtNVmhaVHk5Q1lsVm9jamhRUWtGMlpDOHhXbEpCZEVSV05HcG9lU3RUUVRoeGFuTkpNbWtyUlRFNWRXRTBPRVo1VlhKaGMyOXNTazFHYlcxUllsWTJid3BXVnpWMlpEUlBSV0pQTWpKWFdVNVpaMFpzV0daaWRYcHRWVVZNYUdOU2JYUkRZblpFUlRCbVdIRmljMlpJWlVKb1JHdzFPRGR2VDJaRVpYcFJaRUZuQ2tNd1puRm5XRFJDWkZCUlNURlJPR2xuVkM5b2JXRktURXRwY0dweGQzaGtZamxQTldVMlQxbGpTWE5OVjI0MVdXbFBXVVl2YVVsTWJHdHlibXd3YUdjS1JHdHZTbGQzV0VONlJ5OU5TemwwTlZCbldGQjBhVVZ5TUNzemNVbHJWM0p5YVc5RFRrbDFObVZHTnk5WVZWRlVWalZCVURGb2JFOXhiWFI1UkVwblVBcFhXRE0wYWpsMWNYUTNTazEzUW5oTmVYRTVkVXQzU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbE0wVmxCSlFVRkpaVmtLTUhKS2NIRjVLMlJqWlRSaUwzaHNXRVZxUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZvUkZSS1IybFBkbGx3TWtWbGNHWlZVM0oyYUFwc2FWRmxVR2x1Wnl0SWMwaERia0kyY1VwQmRpdG9WMmRvUXl0c2IwdFJWblU0WkVSU1ZURlplRFl6YTJSbFdUUkVPVVEwS3pCRE1GUjVXamhFUWtGdUNqWlBTMkV2VUc0ek5qUjBSRmRST0dSS0sxWkJTRmRCTkVjMVVVUnhZVlpYZG5wTVUzbGphblpxUW1aRVRGWjJiR2N6U1U5bWQzYzBaMkl2VkRSMVpXa0tjM0JFTURGMkwwVTBSbTVOZFRRclZFdFJSRk5HZDB0cFRFODNWVmROVUhOc04yNWxXa1ZGYm5jcmFVTnNXWEp4TjFod05qbHlhVVJoTlZFNWVXSmpjZ295WWt4S1YwRkNaM1phVjJKalpuTjJlV3RZWlV4UkwwbHpkMUZSU0hGa01tWTFjMnRFUVVaaFowNU5LMWxWTURndlZtZFFVbVJoTkRNeVJ6Rm9hMDQ1Q21sbVV6QnFjbTg1TDJjclZpdEJjV1ZMWVdkU01qVnliRE5OYTNGSkwwUnlVRzV6T0dFd2MxSkJMMjlVT0c1dldIcDBWVzVLTVZsS1JYSk5VbWhNVjJrS1VHZ3dRM1pYVmxGVGFISnNjMjUwY1VodVRVdFdSV3BNSzNjd1l6ZG5kVkV6YlVkdFF6ZHBSVGwzZURKV2RrNDRRakpMZGpGSE9YZ3lNREU0UkZoeFNBcEtRVmxITW1kaFdXY3lWMjFMZW1OU1pVNU9lbGhUYmtkbWRFeExSekZGTHpoa2FYRm1VRTVwTTBnMVpUSmhNV0ZzWmxWb0sxQlRWV05aUVZwMlluQk9DbGxWZW1KcVlVeGtVV1V6VkhCcmJTOTRiME5IU0RoU1NuQldhVzRyVUZGaVdsTm9TMk4zTDJkTGNXdGllWHBKTjFKUlVreE1RMnRJVWtsMlNFSTJiWE1LZDFoM01HOWtORTR4U1ZsUVdUUnNTREZSZGxkb1F6aGhiVFZTUmxJdllXNVpjRmx4WlVSeldEaG1kVEpUVmxOYVFtSlFTRXRKTjI1QmFGRkpjVmgxVlFwWmVISnFkMjVHVFVWbVNqVlNURE15YW1KWWFuSm5XakpLTkVkTlF6UXZXVEkzV0dGRWIyODNMMko0VmpOVlIwVkRlbWQyZUZOcmNraGhURnByTlc5WUNsZzROR2N3UzBSeFRXNUtaVlJaYTBWaWJXaDZObTgwUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCYzBGU1ZVWmtWRUZpZFVGWmVDdEhZMnROY21GU2VubzVNbXMzU1U5c2EwVlZjbnBQWkZCQ1pHRlZMMjVKWlM5TENrUlVjWGRVVEZZMlFtVnpWR3R6WVcxclpHaHBVV0Z0ZURaaVlscHNVMk5GU1hkTVRIUnZiVEZRUm0xVUszaG5jVTU1VDBVMk9UTnBVa05RYVhKMVNVb0tVRU5hYzNCWGMwZEJiM0ZEVDJKaVEyVTFTREZ4U2pKWmVGRmhiVXBvYW1FMlVGWlZURUpsZW1GclozQjBVbk5RV0ZoblptSlVMM2RLV2tadWFuSlVSd3BpWTJWWVNHaFhRbmd6T1hseVpUbHNaVnBUUmpscVFrNXJSRmQ1VW0xbGMyOW1XbGc1VjIxbk5YTjZRVU5JYVZCeWRFNWhUWGQ0T0ZNd01VdDBhMlIxQ2xBeVNEZHJiRlZ3VkhjeWFVeEhVWEZ1ZFdneVdISnpRMWw2Ulhjdk5VZEJjM2gwVGtaWk4wdERSRVF6VkVabE1qWnplbFkyWkN0TmVuTjJReTl0Tm5ZS1JUaEpOazV1YjNCSFJXMTZVVWhCWXpCQmJWcDRORXM1WVZKd1ZHNDVPV1pVY2s1dmFVOVlTRWQ1ZUZwa2VXWklRMDlUU2xaelVYaFRRVEJCUkZkRWNBcEVWWE5GYkhCdGFtWk1ZbXBqT0RSb2JGTXJZVWRRUlZWb04wbDJLME13WmtKR2MyTTJUbFl5UkhaM1Z6RkpZUzlFZDFGTU0yWTVWMVZSVEZFeFpVazBDbU4yYTJkUVMyODNRMDV2ZG1oT1ptSnRkVkJDWTJ4TE1uSkxTbE5VUWxwd2EwY3haWEZHVm5WaU0yVkVhRWQ2ZEhSc2JVUlhTVUphVmpNeU4zTTFiRUlLUXpSWVJWcHlVVzAzZDNoT1NERTJiVGRJZURObldWRTFaV1pQTmtSdWR6TnpNRWhSU1VGMFNEWnZSaXRCV0ZRd1EwNVZVRWx2UlM4MFdtMXBVM2x2Y1FwWk5uTk5XRmN2VkhWWWRXcHRTRU5NUkVad0sxZEphbTFDWmpScFF6VmFTelUxWkVsWlFUVkxRMVp6Um5kemVIWjZRM1ppWlZRMFJubzNXV2hMT1ZCMENqWnBTa1p4TmpSeFFXcFRUSFZ1YUdVdk1URkZSVEZsVVVRNVdWcFVjWEJ5WTJkNVdVUXhiRGtyU1M5aWNYSmxlVlJOUVdOVVRYRjJZbWx6UTBGM1JVRUtRVkZMUTBGblJVRnFWVFZqVW5NMWRUQnNVVGM0VEU5U05ISm1TR1J4ZEdwVVJrRXdPVWx4YTB0MGQwTnFkVk56ZVZNdmNHRldaemxEUmxCWFZuazNWZ293UlhsQ1oxUk1WRnBKUTI1dFVHeHVjVU0wZDBSVmNYVlRiMFZxUlRrNFNIcFlVa2xzWVhNemMwNDFiVUp2YTNnM1pYY3hVSEJ4WlU5V2FreHVhREJIQ2xSVFNIWkhMMEUxZGpoU1ZYbEdTVVUxUWk5TVdWRm9Va3htV2s0MVluWTVVVVpVUVdwMlJYcGhOa1pWT0ZoelJVTjBWSEJ2ZVhCRWNISjNNU3RIVUdnS2RGVjJLM1k1TlZKM09FcFdjbGRtYm5wT09HVjVUMFJSVDFwSmRqSlJaemh6VXpCeksxWXZORlZoZWtKWEwzZHdRMHhpTjFKTmVXaHRSMkpNT1ZKV1JBcFFXVU12WTJjelZVaGFRMWd2YzB3MVZISkxaVWRJTkhsTFVtWkJNRmsyTldGTmQwOXlTVFEyWm1SUFJqUXJVMmhCVWl0YU5HNU1kbEZPYVV4eVZrcDZDa1JXYlZabGVWUkhURTF0V1ZkQ1FVRnBXa1Z0UlRGSVlrUkxOa0pQZUdvd2MzZFBaazFDVkc5QlFVVkdiMUpQYmxWc1NraHhWVlZHWmtaSFdIRm9TR3NLV0dGUFlYaHdWbHBrTjFZeGFVWlVTbmRwTnk5eE9YWm5Vek50SzNkdGRtNWlZbFJoTmtJeVZGWlBRMWwyVTBKck9XTnhXV2hsWkdNdmJ6QmFXVmQyU3dwelp6TjVkM1ZDVjBOUFZtVlFUMVZOVkdVMk9FMUVOWFpaV0hGWFJrZE1LMVpSUm5GQmRrdzNSMjVNV0ZGRVdUZFZVWFkyTnpnMmFrUTNRbFJDUWxkWkNtSnVaMnBIZEN0b1EweDJkelo2Y0N0S1ExRXhVMU12WmpBdlZuRklNV1pFT0dsTVYxb3hkelJOTVdKUWNDOTFTV2RITUZFMmFsSkJVbTFPV1RCak16UUthMEkzZEZaNFkxaFdhVE50ZEZWT1pFWmtVbGszU1hwWFNWVXdXVWh2TkVGaVQzTTRiVzFZWVVRcllUTTRUM2xwY1ROcmR6QjBkRGMxWVRReGIwVnpVd294V1c5WGJtMVpka1ZpZGpOYVRURnRLMXB4ZEZRMk5XSnNLekJTTjBkRVdXUnROamRwVUdaalJVRXpPVmN5WTNsdFJXdERaMmRGUWtGTk9FOURaRnBEQ2tWUE1IZE5iakUxYjNwcmIycHRjVTlrYUhaTk9USTRTa1U1VnpadVNtTkpWR2czZEdOWmNIbEZUWFJhYVVNd2VEZENWRmxZYTFOT2VsSTBRM0pVWVVnS1pYbEVaWE15YmtGMmRWRlFhbUZZZUZCb2JtNVZNRGR2V2psdU5ubE9NMng2V1hNMFYydDROVVUxUW5oNVZrNVhaVmw1V0VWeWVubHRUa1ZzYzNBemVncE9UV0o0TlZGSWJUVnRkSGhQTVVOeE9XRnpOREJMUkVkV1VWTlZjVEZTVFcxdVNrSk1SVTFTVjJGMldHNVBWR2RRV0ZKdlJFTTFSbTU0VjI5V2MwSnNDa05yTDJWaGNWaG1kVXhzSzNsaFFtaHBlRmx5VkZkWlVFdE1iWFpOWjJsVFpIUnNLME00Tkhsa2RHcE5RMmh4YlhGNVpIcG1TRzUxWkVWTWQycEVhM1VLVEhKS2NYUnlVbEI2ZDJsVFQxRklhVEZzZVZJemVFSm5OVFJXY0N0NkwzWk5VbEIzVkVzME4wbFBiM1ppVkhaVU5HbDBNMVUxYkhaWlEybHBVbmxIZFFveWFHUlRRbkpXWTNRMGJrMU1SakJEWjJkRlFrRk9iV2RDYVZsQmNHY3ZVRTVySzBZeFMzZHBUbEE0T0RWMmFsTlJXbHBQVFRGRGMwOW5TazEwYXpZMENtMXRObTkyZFZJelZtVnNXQ3RMVkZkRFR6bGhNREJvUmtWVGJ6QlVPVU5yYUZweFlsVmtTUzlHYzJodFVGVTBWamhCUlROeGR6bFhNMHBqYUdKalJIRUtRMGRRVkhVMVdITkNiMGhIZGswNVZqaEdTV055TjBSb1QzSkxlRUZKY1d0c09FYzFXV0l5UVZWRE9IRXpla2RzYkV4aE5YcFNUMFFyYm5sdlRGWXlOZ28zZFdaNGJXWmhObGMyZDBwTFNGUTJZMjkwT0ZKakx6SkdlRVZFY1ZrM1YycFFWM0J3T1dSNU16SkRlVk5UUVVjMmRURjRjalJKTVdnMGRHVmpiMlF5Q25aT2QyY3JSbEJ0VDJaTVptd3lNSFF3UkhwbGFrUktkVVJVZVc1cU16aFlNbWxWYzNOd1NERTFSamhSUlRCTlJreE1OalE0UkU1RWNWVjFlV2N3VW5jS1NUTXlTSG81ZVRSb1VYcEtVMGhRU2tWb1FUUllRV2QzT1N0TFVVeExTMmM1V0dodFkyazNPRzVEWTBOblowVkNRVXBNVTFkYVpHTTRZazh2V1ZrMGJ3cEhkRFJHVEVSbVZFaFdNVXBWYjNWb00wUmlTMUpSS3pCREwwWlRXR2hxVjBkaFMxbHphaXRoUkhSWldrNHpPVlpNWjFsQ2VpdElRelJGVkVkd2JVcDJDa1YxTWxaUFpGSmFOVXhrY0cxWFJua3lNMFoxY1RsRWRHa3pjMVpWY2tzemFVY3ZPSFk0TkdkdE9FSmtkME5RVEhkNVJreHZaMVIxTWtwWVlVbGFTR1lLYzJKVGRXSnRhMlJWVjJSQmRXMHZTRTAzU1hveVpXNUdRMEl2VFhCNE5VaDRNVnBpV21nelIwSk5NM1Z0WmxOV01tVkVOWEJqY0RNeU5FRllURE5wTHdvd04xWXhaVzVSU0hSNVJGcFJLMFZFUkhSWVkzSmFXREpvWlVKcWVVOTBSMVJhUVdRek1uaFhhM3BqSzFwU00zaFJUeTlYYzNobk5EY3hVVVUxT1cxckNsaHBTM1I2VlRkU1JUQkNRa1F2VVVaUmVXTlFjQ3RKUjAxeU56UjJkV04wWkc5SFdtSTVVR3QzTlZGbE5GZEZSRFJUVUhaTWNFWnlPRFp3YkhRcmQxTUtLM1pNZW01UFJVTm5aMFZCU2tjNGFVZEhTM0poY1VseFYxa3plVmRST0hoRFJIQlBRVkZLVTJOTVQwODJPR0Z3ZGpWRVVWSk5WM0pPVkU5VVNXWlVTUXB6VmxKR1JVaFBNRGg2TW14bFkyWXlXVGRhTWxac2RqQTRhbXh0Y2xkb1lXcENjSGd3VVhwcVRGcEZRVlp2VlZsVlZWVk1aSFY1TTJ0ME4zb3pUbTE2Q2tSVE9GVnNWRWQ1Um1zd2RreE9TRWxZWm04NFQxQnVkRmhyVjBoRk5EZFVNMlJIZW5CRlFYZGpXbU5TZFd3MmVVcFJVMU00T0hCRlJGSnFjSGxsUkZJS1ZVUkJTVlZsTVUxSFFWbHhUMlpNWkZWaUwyNU9lalk0VVhKVGQyOVBWbVZsU0ZobmQwUm1iMUpRUW5acVkwVm5aa1JxU0hVNU5IQkxSVVp6TUdJNFRncHVTbVpMV210RWVGSXZLMHRSVkdOcWFVUkJWbGRvV0VsTk9HdFVOMFpRWVdNdkwyY3JZWFEwU0d0WlowVk1WVmhPZEVWblNVOXJWbE5CVEdkNlptTnRDbUl3YlZSck5qZHhSVEJWWTFFeFRGQmlWMHgwTVdoNFZXWkdMMHRhWjNSemNWRkxRMEZSUVhablJrcHZNSE5FT1djclZVVnNjMk5JU0ZacU4wVXJjRFFLUWpOUlpUVkNVbVEzY0cwNU56RlVjMFpFWkhWRE9YTlFSMFoxVEV4MFIxQXliakpGZFV4RFREZ3hUbXhWVHpoSlJURnFUR0oxZVdGbU5VczVSVFJDZEFwVVdXdG1RbTRyYmtKWlpGbHFlakpETkVScWVYcG1WelJpT1dNNFRUQlNSemxvUTNsa2RIQmtWMGgyYUhOdU9XVkNhMkZsUldSQ09VdzRNVmh5WmxaaUNpdEtaQzl1Y3pKYVptMDFWRk5sYkhsR2JtODRla0pRWVVselFXSnRRWFZ0VVhkQlpVZFlOSEZTU25KNVlUUkllbGRKV20xTFdYcEZURWxITkhaRWFtNEthV2xIZUd4bVYyOTZlalJtUVN0SE1tTldibmxFV1dKT1YyRTJWbTQ0UTFvMk55dE1iVWRKYUU5cVVHb3lSalIyUzNnd2VWWlZWblZ0TTJ3dlIwSktkd3BTV1ZsdmEyRlBVRmdyVldoRllXZHNXVlJRVTBaeldDdHlVMmM1UzJKek5UWjJiR2RSWmlzNE1rVkpXamxVVm5GUVFYaG9XVFJ4TW1RM1kxRUtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogenVuNGlncGYxcTduOW16dzI4cTN1b3FhenZncHF4c2JqdXk2bGpndnJ3bnQ0eG9rY3BnMWp6YjBqOWFrbXRib2J0OGZ5anB1aTNqbmpmM2w3bTI3OGF4a2c4OXNndWQ3NHhubHF4bmE1Ync2eG9jenM3c29vcTRqaGh4bDJqY2gK\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13084' + - '13072' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:06 GMT + - Wed, 14 Jun 2023 21:32:19 GMT expires: - '-1' pragma: @@ -1460,8 +1313,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -1469,17 +1322,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b99dc8ee-d8c9-4151-b818-40a77fd7895b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8021b556-c1a0-4a6b-9a0d-1d03872a06d4?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:17:07 GMT + - Wed, 14 Jun 2023 21:32:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/b99dc8ee-d8c9-4151-b818-40a77fd7895b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/8021b556-c1a0-4a6b-9a0d-1d03872a06d4?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_sp.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_sp.yaml old mode 100755 new mode 100644 index abd631561b2..b2cd6a82dec --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_sp.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_default_sp.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-tags --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:17:07 GMT + - Wed, 14 Jun 2023 21:32:29 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: message: Not Found - request: body: '{"tags": {"key1": "value1"}, "location": "westus2", "properties": {"kubernetesVersion": - "", "dnsPrefix": "cliakstest-clitestkaldhfv2q-79a739", "agentPoolProfiles": + "", "dnsPrefix": "cliakstest-clitestyzrjdvdvr-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, @@ -55,13 +55,12 @@ interactions: -1.0, "tags": {"tag1": "tv1", "tag2": "tv2"}, "nodeLabels": {"label1": "value1", "label2": "value2"}, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, - "storageProfile": {}}}' + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -72,69 +71,70 @@ interactions: Connection: - keep-alive Content-Length: - - '1647' + - '1939' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-tags --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestkaldhfv2q-79a739\",\n - \ \"fqdn\": \"cliakstest-clitestkaldhfv2q-79a739-zu88fp23.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestkaldhfv2q-79a739-zu88fp23.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"tag1\": - \"tv1\",\n \"tag2\": \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": - \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestyzrjdvdvr-8ecadf\"\ + ,\n \"fqdn\": \"cliakstest-clitestyzrjdvdvr-8ecadf-g8vsnkma.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestyzrjdvdvr-8ecadf-g8vsnkma.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\ + \n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0b590a8d-1f00-4b85-ba3b-6778784b585b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ac33777f-7477-4d4b-9548-d4f2020ae54c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3288' + - '3616' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:10 GMT + - Wed, 14 Jun 2023 21:32:38 GMT expires: - '-1' pragma: @@ -146,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -165,23 +165,23 @@ interactions: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-tags --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0b590a8d-1f00-4b85-ba3b-6778784b585b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ac33777f-7477-4d4b-9548-d4f2020ae54c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8d0a590b-001f-854b-ba3b-6778784b585b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:17:10.714465Z\"\n }" + string: "{\n \"name\": \"7f7733ac-7774-4b4d-9548-d4f2020ae54c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T21:32:38.6105737Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:40 GMT + - Wed, 14 Jun 2023 21:32:38 GMT expires: - '-1' pragma: @@ -214,23 +214,23 @@ interactions: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-tags --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0b590a8d-1f00-4b85-ba3b-6778784b585b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ac33777f-7477-4d4b-9548-d4f2020ae54c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8d0a590b-001f-854b-ba3b-6778784b585b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:17:10.714465Z\"\n }" + string: "{\n \"name\": \"7f7733ac-7774-4b4d-9548-d4f2020ae54c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T21:32:38.6105737Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:18:11 GMT + - Wed, 14 Jun 2023 21:33:09 GMT expires: - '-1' pragma: @@ -263,23 +263,23 @@ interactions: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-tags --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0b590a8d-1f00-4b85-ba3b-6778784b585b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ac33777f-7477-4d4b-9548-d4f2020ae54c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8d0a590b-001f-854b-ba3b-6778784b585b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:17:10.714465Z\"\n }" + string: "{\n \"name\": \"7f7733ac-7774-4b4d-9548-d4f2020ae54c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T21:32:38.6105737Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:18:40 GMT + - Wed, 14 Jun 2023 21:33:39 GMT expires: - '-1' pragma: @@ -312,23 +312,23 @@ interactions: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-tags --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0b590a8d-1f00-4b85-ba3b-6778784b585b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ac33777f-7477-4d4b-9548-d4f2020ae54c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8d0a590b-001f-854b-ba3b-6778784b585b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:17:10.714465Z\"\n }" + string: "{\n \"name\": \"7f7733ac-7774-4b4d-9548-d4f2020ae54c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T21:32:38.6105737Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:19:10 GMT + - Wed, 14 Jun 2023 21:34:09 GMT expires: - '-1' pragma: @@ -361,23 +361,23 @@ interactions: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-tags --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0b590a8d-1f00-4b85-ba3b-6778784b585b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ac33777f-7477-4d4b-9548-d4f2020ae54c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8d0a590b-001f-854b-ba3b-6778784b585b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:17:10.714465Z\"\n }" + string: "{\n \"name\": \"7f7733ac-7774-4b4d-9548-d4f2020ae54c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T21:32:38.6105737Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:19:41 GMT + - Wed, 14 Jun 2023 21:34:40 GMT expires: - '-1' pragma: @@ -410,23 +410,23 @@ interactions: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-tags --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0b590a8d-1f00-4b85-ba3b-6778784b585b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ac33777f-7477-4d4b-9548-d4f2020ae54c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8d0a590b-001f-854b-ba3b-6778784b585b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:17:10.714465Z\"\n }" + string: "{\n \"name\": \"7f7733ac-7774-4b4d-9548-d4f2020ae54c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T21:32:38.6105737Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:10 GMT + - Wed, 14 Jun 2023 21:35:10 GMT expires: - '-1' pragma: @@ -459,24 +459,24 @@ interactions: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-tags --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0b590a8d-1f00-4b85-ba3b-6778784b585b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ac33777f-7477-4d4b-9548-d4f2020ae54c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8d0a590b-001f-854b-ba3b-6778784b585b\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:17:10.714465Z\",\n \"endTime\": - \"2023-03-15T10:20:26.8161384Z\"\n }" + string: "{\n \"name\": \"7f7733ac-7774-4b4d-9548-d4f2020ae54c\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T21:32:38.6105737Z\",\n \"\ + endTime\": \"2023-06-14T21:35:42.0672935Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:40 GMT + - Wed, 14 Jun 2023 22:40:30 GMT expires: - '-1' pragma: @@ -509,62 +509,66 @@ interactions: - --resource-group --name --location --node-count --ssh-key-value --tags --nodepool-labels --nodepool-tags --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestkaldhfv2q-79a739\",\n - \ \"fqdn\": \"cliakstest-clitestkaldhfv2q-79a739-zu88fp23.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestkaldhfv2q-79a739-zu88fp23.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"tag1\": - \"tv1\",\n \"tag2\": \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": - \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/14e1d053-2ca5-4943-bd6e-321c54ec49a8\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestyzrjdvdvr-8ecadf\"\ + ,\n \"fqdn\": \"cliakstest-clitestyzrjdvdvr-8ecadf-g8vsnkma.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestyzrjdvdvr-8ecadf-g8vsnkma.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\ + \n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/82b5e98b-d5be-4189-b5d4-48b4de8220a4\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"defender\": {\n \"logAnalyticsWorkspaceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n }\n\ + \ },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"\ + oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n\ + \ }\n }" headers: cache-control: - no-cache content-length: - - '3552' + - '4212' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:41 GMT + - Wed, 14 Jun 2023 22:40:37 GMT expires: - '-1' pragma: @@ -596,62 +600,66 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestkaldhfv2q-79a739\",\n - \ \"fqdn\": \"cliakstest-clitestkaldhfv2q-79a739-zu88fp23.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestkaldhfv2q-79a739-zu88fp23.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"tag1\": - \"tv1\",\n \"tag2\": \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": - \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/14e1d053-2ca5-4943-bd6e-321c54ec49a8\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestyzrjdvdvr-8ecadf\"\ + ,\n \"fqdn\": \"cliakstest-clitestyzrjdvdvr-8ecadf-g8vsnkma.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestyzrjdvdvr-8ecadf-g8vsnkma.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\ + \n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/82b5e98b-d5be-4189-b5d4-48b4de8220a4\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"defender\": {\n \"logAnalyticsWorkspaceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n }\n\ + \ },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"\ + oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n\ + \ }\n }" headers: cache-control: - no-cache content-length: - - '3552' + - '4212' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:42 GMT + - Wed, 14 Jun 2023 22:40:38 GMT expires: - '-1' pragma: @@ -683,64 +691,70 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestkaldhfv2q-79a739\",\n - \ \"fqdn\": \"cliakstest-clitestkaldhfv2q-79a739-zu88fp23.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestkaldhfv2q-79a739-zu88fp23.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": - \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n - \ \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": - [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/14e1d053-2ca5-4943-bd6e-321c54ec49a8\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n - \ }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \ + \ \"tags\": {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \ + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\"\ + : \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\"\ + : \"cliakstest-clitestyzrjdvdvr-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyzrjdvdvr-8ecadf-g8vsnkma.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestyzrjdvdvr-8ecadf-g8vsnkma.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n\ + \ \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\n },\n \ + \ \"nodeLabels\": {\n \"label1\": \"value1\",\n \"label2\":\ + \ \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\"\ + ,\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/82b5e98b-d5be-4189-b5d4-48b4de8220a4\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \ + \ \"securityProfile\": {\n \"defender\": {\n \"logAnalyticsWorkspaceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n\ + \ }\n },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n\ + \ \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"\ + enabled\": true\n },\n \"snapshotController\": {\n \"enabled\"\ + : true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }\n ]\n\ + \ }" headers: cache-control: - no-cache content-length: - - '3817' + - '4491' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:42 GMT + - Wed, 14 Jun 2023 22:40:39 GMT expires: - '-1' pragma: @@ -772,64 +786,70 @@ interactions: ParameterSetName: - -g -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestkaldhfv2q-79a739\",\n - \ \"fqdn\": \"cliakstest-clitestkaldhfv2q-79a739-zu88fp23.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestkaldhfv2q-79a739-zu88fp23.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": - \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n - \ \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": - [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/14e1d053-2ca5-4943-bd6e-321c54ec49a8\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n - \ }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \ + \ \"tags\": {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \ + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\"\ + : \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\"\ + : \"cliakstest-clitestyzrjdvdvr-8ecadf\",\n \"fqdn\": \"cliakstest-clitestyzrjdvdvr-8ecadf-g8vsnkma.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestyzrjdvdvr-8ecadf-g8vsnkma.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n\ + \ \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\n },\n \ + \ \"nodeLabels\": {\n \"label1\": \"value1\",\n \"label2\":\ + \ \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\"\ + ,\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/82b5e98b-d5be-4189-b5d4-48b4de8220a4\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \ + \ \"securityProfile\": {\n \"defender\": {\n \"logAnalyticsWorkspaceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n\ + \ }\n },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n\ + \ \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"\ + enabled\": true\n },\n \"snapshotController\": {\n \"enabled\"\ + : true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }\n ]\n\ + \ }" headers: cache-control: - no-cache content-length: - - '3817' + - '4491' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:42 GMT + - Wed, 14 Jun 2023 22:40:40 GMT expires: - '-1' pragma: @@ -863,24 +883,24 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUmxBMFpqRjZPRWx6UTNKSGFEQXJVeTlxUkU1VWVrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCZWsxVVZYaE5SRUV6VFhwU1lVZEJPSGxOUkZWNlRVUk5lRTVVUlhkTlZHTjZUa1p2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVONkNsaHpLM2hFY3pKQ1VHWXhhSE5YZUdrek1WWkJiVmxNTDJ4bWEyTlNjazFFTVN0bGFraFBaR0pWUmtwUmMzVlhjRkJITVdKUWR6SklRM1JxY2xGNGFqRUtRbGxoYUdsblRFRlRiRk5MYWpNMGFsRk5jbnBLZUdwR1RVVnZUSE5FY0VaQk1HeHNUbVZTVG0xTlpETmxTMmRZWWpGelJXTlJaVmhLVlZkRFRHcDNSQXBsYkRWeU9UTXJMekpCWTNGNVRHSmxOblY2WWtONGVWSkNaVGt3V1dwTllYQkZhSFp4ZUd4WFR6ZExiVlp4Ym1SMVlYaHdlblYyVlRaNllrNUZhR3RhQ21sQ1ZITktlbEJrVVUxWlFUTmhUMnB0VW1kdlpscG9SSEZLYjIxM1ZrY3daa1l5UlRGcldETndOM2RFWlU1c2JYWk5WSFJOUm5sblpIRlJhM0pOT1c0S00ybzNlWGxLYzB4QlpqRkVkbnBHYnk5RmFYQjFTbEZOU1VSRE1GRnJjV3hIYjA5NE1uZHpSU3RRTkZJeWF6bDVUMnR3T1hBMlVtUlZMeTk0U0hGek53cFVNbTByY1hsUGFERTNRWGN3VmpaU1oyMVROa2xwYUU1SVdYSlBWRzFNTlcxNFNtMTNhbUZ5T1dOWFRrbE9lWEJCVFRCdFpURjFaMnhwT1hWc1p6TnVDbE0wY1hvd1dVa3JOM1JhTlZKc2NVeEdObU16VTJsRVJrVTFUbVF6VFRaVFZGaFlUbk5zVFZjMlRHSmFjMUJQVGt0b1VIRkRhbGxYYjA5WmQxUkdUak1LUTBGaVptdGxSbFJ1WWxoelVXMXdSRWc1ZUc0emIwOHdObWx5Ym5oeVVFcHNjVzVTYUdacmQyTm9TbWhxTTBweU5HSkliRVJGZG5oeFVraEtVbVV2YXdwNEwycHZZMHhYZEZGdFRsaFNaVWd5YVVGMVltbzVVMjlVYjJreVZ6WnlkRFZUTm1kTVJYQjBLM1F3Um1vNWJ6TkNaVlZDZDBoclJYbHdjR1ZvU2paSUNuRlRjek40VkRsRldXNXpSVTByTTFsUGEyeGtTMnRCU1V0WlltY3hTRVZ6TkRSeWMxVmpXbVF5VWpjNFIzUmhhazFxTnpkS1dtUkliakJpYlRWdlN6a0taamg0ZFZSak0ya3ZOVlIyZUd0bmFWcEdOV2hTTlVWNmNFMWhkR2h0WTBGVFNsazRXWEpDWjFKM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWaVNVOVBkSEJGZFVSVGFYWlJiVXB6Q25FelRGcDJMMEZHTm1GbmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGQldGcHJOVWs0VGpOSVZuaDJjMVJ2VW1NcldHMW1TbXNyVVRRS2JtZDRkSHBYTkRCMFNtTXlXVk0xU1U1RlIzVTFla0ZuT1ZKc2QwZGxiVXA2ZUVWTlZHcGtLMWh2YXl0RmNFbHRTRzkxZVdwNVp6SXlkek0wZDBkcVp3cE5Ua3R2TDB0aFkyeG1RVEJhYkVaVFFsVjZSRmhIVlV3d2JYRkJkelZXVjJWdFRuWXpkMmhuYWxSWldIRXphMUZ1WWpSclZuRkVPRXcwTlRkMVMyTlNDbkV4TVhBMVVXZEVWR05PU0N0MVEyaHpUWGhoUTNKeGJFcDRRV2xqZFN0eWVHOW5RMjVCYWs4eE4wUnJaM2RCTXl0RGNqRTRlWEZZT0cxeFNXOVZhVGtLVEhkQmJuTmlZblJWV0RSd2NIZHlTbkJUT1VOR0wzaHdaV1Z0WWt4MFZWWnNXRUZKY1c5bFNtdENhQzloTjBjelEwOXNNMkozUnpoYVVDdHZZbU4zZWdwQ1VHdExNbkJwVlZsVFdGbHFWVzh4YVZWNVJVTjBlRVF6VFZFeE4ybzJNRzVQY0ZKcFJEWTRPSEJwZG1Vd1pFNHZRMk5YYVdKcVQwNUNkWGhFWjNCT0NsWnFPRmMwT0RVMFRqSkJlR1ppY1RGdWRVMDRia1ZLUVRaV2RXbzFTazVIZEhKS1FuQTRUWEYwTWpKRmRFNTFZVmxDVmpoNGJFOHJSa0pVUW1wd1owUUtjMjlQZVhSeWNHMVllVmxDYUdONWIwZDFNVmQyVW1kSFlYa3JOVlE0V1ZwWE5sSnZWbVJCYkVkeFR6bFVPWGh0VmpKV1YwVXJSMjVPVEdWV1pIbFVjZ3BVU25nMVJsVjNhMmhUYzFCUWN6ZGtXR2wzWmtneGJYbE9aalZoUVdJeVdGbHdSSEZVVEU5TmIzaGxhVlFyTlVWdGQzSjZNM2hGVEZsdU5uWnRWM0pUQ2xCdmNrcFFVMU5xVURjM2FVZFlLelJESzFCUFdGaHVjakI1YmpOMGVEQlFOVXAzUlVkaGVtcFFlbkJHZUhsc1NHVkhjbXcyUlU5alRISjRSbkJWWm5rS1JVcFBOa2d6WjJaa05WQjNiRVUyYkVsSE9WTlVVVkpKWlZwMFFWY3hWMGhTU3pVeEwyWmtZbEpUYjFsV2NYZHFTMFZhYURWblRuWldTMmhoWkdOalpncEhVMWRPVFRsUE15OVpTMFp3WkRFeUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc3Rlc3QtY2xpdGVzdGthbGRoZnYycS03OWE3MzktenU4OGZwMjMuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RoNHI0ZDIKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RoNHI0ZDIKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RrYWxkaGZ2MnF6X2NsaWFrc3Rlc3RoNHI0ZDIKICBuYW1lOiBjbGlha3N0ZXN0aDRyNGQyCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGg0cjRkMgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RrYWxkaGZ2MnF6X2NsaWFrc3Rlc3RoNHI0ZDIKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJRazFRZEZKdFlrcGhZVzl0T0ZJMU56TXhWV2R1UkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJlazFVVlhoTlJFRXpUWHBTWVVaM01IbE9WRUY2VFZSVmVFMUVSVE5OZWxKaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVU55Vkhsb1kyNUlOVkE0WTJ4NWVqUnNWbXhSYUVvS2RFWnVRVEJFTjBveGREbFhRa3BETlV0VVJYUnplVTloTmpsSU0yZHVkVzFqVW1oSFZqaE5NM0UwTm05T05uUkhkREpHV21wVWEwRlBaVmd4SzNSemJBb3llRWhsWWxRNFVHTnBRa3cxZWtKMWNuRTFSREpJVlZFcmRuWmlSMVJSYlU4dlRqUnNUMjlhYTJoU1F5dFJTMUUzWkN0dVpWcGphazEzY21GREsxbFFDa2t3UjNKSlpFOW1jRkpUVWxOTGEwMTFWMHA0VW0xUGNUZEVNbGRNVEdveVRWQTJLemwxWVdjemVFbFBWbVptTm1GbFNIbGxOMU5oY25SV00xbERTR2dLYlhSMlNWUjVWbFpUTm5oNWJHZG9Oa1I0VmxWRGJrOW5NM2hYVVZsR2RHOVViRkZaYWtzemJEUkhlbFExVjBWSFpUZzRZMFl6VjNKMFdubFJaamt3Y1FwUkwwVnNkSFpJZVVGaWRXTnNjSGRQWVhORVNFbDRZWEJ6ZHpSc1duZ3dSMHBDY3poUmExUk9lWEJWZVhKa2EzRTVPR2gxUjFsTk1UUkJhVk5uUWtOdkNtTlhRVzQxYkUxdkszZE1NVk50UkhvM1IwaGlOMVZWZFRKT2FWb3hZa3B0TjFsU04yaDNjSFE0UmxOTVJuWkdSVmhqTDI5dmQzbEpMek53ZWpkelNUUUtOVTVGVVV4UWIydGtXRVZ6UkhCTFprbHVXRU5EZEdsQ1VtaEdUM28yVmpaWVNtSmlVMFF2WVRGWU1UaEplbWx2ZFhZM1JrRXhNRUpXUTFoNVRtSnhid3BCTnpaSE0wMUJPR1JaTDBKcWQyUjVaSFJGVkVGUVVrdzNhRFEzY0ZGUVZEQnJZMEphWm5oS1VFWkliRTVUUjFWWlltNUJkbVpIVDNaeE4wbFhPVXh1Q25CWWQwaFFjaXRYVmxaMlVqUTNORzlCUkd4aVV6QXpVVkJFZFhCT1owZGlTRFpGY0V0WFpGZzVVMFpIVkhoTk1EaFRXRE0wYmxrcmFIWnVhMjlUU0ZJS1dqRllVVEJYY1RaMU0xRkxhV3BKV0VGemVYUjZhWGx0WlVKNmRtWk9ZWGw0WW1KcE9XWjFVMk5GY0ZkSFYwSlZOVWRoTW5SNVJ5dDJjakpaV0VGRVZ3b3ZlRTlrVW5GUWQzbFVPWGhvU1VVMlYwMU5TbU5SU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEp6WnpRMk1tdFRORTRLUzBzNVExbHRlWEpqZEcwdk9FRlljSEZFUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZvU0VGVk9WWkpMMUl2TlU4M1dtaFhabTV5YlFwMk9VZFFPSEI2TDFsbVNYTmphSEJFYjFCUmNIcHRUa1ZpWldGT1pYUkRNVXAwWml0WmRtRjNOMmxqTlhSRU1HaHBjMjV4WmtwbmRXVlVSWFpyYjFRMUNsVmhXV1Z6V2tveWJuSlhjelZvT0VoNWNEZE9PVUZEZFZweldXMTBPREYzU0doWmJsVnJjbE53VXpBMmNuUlRWMXBqV1ZoalpGVlVZMFZpTXpoWlVXZ0tibE5FV1VjeFVHUnVWamszVWtadE1UQnVNMFJQUmxFMVZGY3ZZaklyYTNSUVdTOHpSa3QyVmpSRU1VaDVlbkZMV0RRNVVsZG1MMU5UWjFCWkx6SmtjUXB5TkhvME1sVmFaM1Z6UVdaNk5FUlVjbGh6VFdSalptSlRkRVF5Y0V0UlMyRjNhVXMwTVVWM1VWWjVNRGx0VlVSQ1VuRndaR1UwY3pSaGRqUkJRWGswQ2xKaldERnJTRTlCWWxwb2VIcFdORzVoS3pKMU5UQkNaakJzUzNScmJVUkZPRzF4T0RWdlZVaENNRTFZVkVGcFJIaGxiVUpJVkRCdmVWb3dPRVZqVFVrS1YxUjRTRXh1TVdoalZYVlpXRkYyYjNCVVZpdGpPWEZxWVdSUlJVNVNhMEp4Vm1zeVJHVTRXVWhMTkRKak9HOWpPRFY1T0ZGVVkyNWhiRXhxWVVSa1ZncFNXU3Q1VUhsbldtdDZWa041VFdwMk5YQXJha0ZSYUZsTWEyMHhiSFp1TTJveWRFMUtiU3RGU1cxdWJYRXlOMjV5VFhCSFNrNVpOWFJyZEhKd1JqSnVDalpNYkdWc1JVTjZNVUpEWmxCb2QzUlhjelV4ZW5aQ2VtTXJOMUZFTWl0alNFTnBNRUpVUzBsSGFWWjJhRmRoU1ZSTFZsWmlWRGROUkdGNVJraFFRVWdLVWtoV1RWbDFNa1VyYUdKS1dFY3pSbU5MZEhCaFEzZFJObWRCUmxBeGJERndkSEExUzNWRmNVRkRTSEJKT0dsTWVqQk9WM3BtVVRWalZYaFpNVU5yVUFwYVQxSjRRWGRuTWtOME1IQkdWMjFDTDBwTFlXZzNlVzlNTmxSWFZscFBlR1V4Y1ZBM1FWUkRlbmhEUTJWVGVIVldaVzQ0Wld4a01XZDFXV0ptTDJSNENqWjZlVGxTVlcxMlpHcFlhbnBHZUhseWVIbEJSRWc0UFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCY1RBNGIxaEtlQ3RVTDBoS1kzTXJTbFphVlVsVFlsSmFkMDVCSzNsa1ltWldaMU5SZFZOcmVFeGlUV3B0ZFhaU0NqazBTamR3YmtWWlVteG1SRTQyZFU5eFJHVnlVbkprYUZkWk1EVkJSRzVzT1daeVlrcGtjMUl6YlRBdlJETkpaMU1yWTNkaWNUWjFVVGxvTVVWUWNqY0tNbmhyTUVwcWRucGxTbFJ4UjFwSlZWRjJhME5yVHpObWNETnRXRWw2VFVzeVozWnRSSGxPUW5GNVNGUnVObFZWYTFWcGNFUk1iR2xqVlZwcWNYVjNPUXBzYVhrME9XcEVLM1oyWW0xdlRqaFRSR3hZTXl0dGJtZzRiblV3YlhFM1ZtUXlRV2cwV25KaWVVVTRiRlpWZFhOamNGbEpaV2M0VmxaQmNIcHZUamhXQ210SFFtSmhSVFZWUjBsNWREVmxRbk13SzFab1FtNTJVRWhDWkRGeE4xZGphMGd2WkV0clVIaEtZbUo0T0dkSE4yNUtZV05FYlhKQmVIbE5WM0ZpVFU4S1NsZGpaRUpwVVdKUVJVcEZlbU54VmsxeE0xcExkbVpKWW1odFJFNWxRVWxyYjBGUmNVaEdaMG9yV2xSTFVITkRPVlZ3WnpncmVHZ3lLekZHVEhScVdRcHRaRmQ1V25VeVJXVTBZMHRpWmtKVmFYaGllRkpHTTFBMlMwMU5hVkE1Tm1Nck4wTlBUMVJTUlVONk5rcElWbmhNUVRaVGJubEtNWGRuY2xsblZWbFNDbFJ6SzJ4bGJIbFhNakJuTHpKMFZqbG1RMDAwY1V4eUszaFJUbVJCVmxGc09HcFhObkZCVHl0b2RIcEJVRWhYVUhkWk9FaGpibUpTUlhkRU1GTXJOR1VLVHpaVlJEQTVTa2hCVjFnNFUxUjRValZVVldoc1IwYzFkMHd6ZUdweU5uVjVSblpUTlRaV09FSjZOaTlzYkZaaU1HVlBLMHRCUVRWWE1IUk9NRVIzTndweFZGbENiWGdyYUV0VGJHNVdMMVZvVW1zNFZFNVFSV3c1SzBveVVHOWlOVFZMUldnd1YyUldNRTVHY1hWeWREQkRiMjk1Um5kTVRYSmpOSE53Ym1kakNqY3plbGR6YzFjeU5IWllOMnR1UWt0V2FHeG5WazlTYlhSeVkyaDJjalk1YlVaM1FURjJPRlJ1VldGcU9FMXJMMk5aVTBKUGJHcEVRMWhGUTBGM1JVRUtRVkZMUTBGblFXMXBRelpITjJwb1NFZFNXamQxV1hsc1kwWnJiRFIxWjFKUk5GaHlPVzFZVkhaclJXcE9UVEl6TDNOUmVXTXpjVTR4YnpacVpVZHlRd3BZTjJ0elV6SXhVMFIyZERaak5Fd3hSbkIyVFc1cWJFbFpOekZ3VUZkWksyaHZiMXB0YXpCRVdtRlFlVTFXTlVoTGJXWnBaM1ZIYkdaWWVrdFpUU3MxQ25ad01FNVdWbk42VjFScmJtbHBiVEZVVG1ObE9YSnpjRWx0V1VRek5sWkZjbVEwWnpKWmRsQjRaVEJ2VkVsaFJTOW9WWEVySzI4MldHbE1XVlpXY200S1lucGxaVEZoTkVaQ1dHTTJibmhvVVZveGVsQk5hVmxZY2sxeVUwdFFabTlxVlhwVVlUWnpSazU0VUM5RFIyUXJkVXc0WWxoNlNrWm5SR0oyVG1wallRcE5iMHB0TkRGNk0wdEhMM3BsYlU5NVlVOUNlREVyTmpSWVpIQk5VMGN6TUZWeWMwY3JWR0pQTWs0eVVFeEtibWc0VGxkSVNrSjNOV00wUlVkM1dscFRDbkp2UlRGWVMzcEZZMjVCV0doNFdsSkdXRWcyTmpCS2FWZFhXR3hpZVhsTWJ6Wmtka296TDFJMVFsaGlNV3gyYm5KWGNEWm5SMWRtWVZGVVMyTkxWR1FLUVRkWVFtWlNVamh6VW10SU1Hc3pOek50U3pkVlpEUm9kV0ZGVEVkcVFrdDNOSGwzUVVGd05rUnFUR1JLVDFsRmFITk5kemc0ZUdvdkwzQkRWamRaTkFwRVpVSnVUMUZ2T0ZJemRGRkxSV2gzWWxjM2QybGpiRmhTUWxwMldqWjNhbmRoUkUwNFlrOHdSMHAxTlVKbVVHVXJaRnBKVWxGNlJUQkNabWQzU2xGNENqZGxZMUZoTlhWUVZHNUJWVk5FT1c1WVRTdFZZWEJpYm5JMWEwcGxVM1ZMVnpCTVptRnBXblJUWkdkc05XVjBVMFZoTWtONlNrTjVUWFpSVVRjNEwxSUtUMDVPTUROR2QwTTFUMmxKZHpsS1FVSnZNM2R4YTFKTVNuVjZhRmg0TVhONEwyRlhkRGhMTmxobmJVaENlWFJZTmxacVlqWlRXbFJ2V1dzdlZrVldkQW8xTjJWbGJFZFJNSGRZV1VoM1pHODBaVlZCTUdwNk9FRmFTMlJqTTFoaE1ISmljRkZNVVhKdWVFMUdXbloxV1RGb1VVdERRVkZGUVhveFpYZE9UVGRSQ2tsaFlVOWlSRUZEVDNOb1RVNUlhakZoT0U0elRrWmtTMnRyVEZoQlZYSnFlRTlxTTFWMVNWRlFSMnM0VG1wWUwyaDVRMUJZVkVFNU5rMDJMMVl2ZVRZS1EwTklia0ZwVlRWQ01tMHdhV0p2VUhVMU9IQndTbmxLVWpCTk5uVkZORWhSVXpGUmQzVm9aVWxYVDBoTVZFOHhkbmt4WjNOT1RtdENSMnBpVTNkRllncEhhV2hqVkc1NVptWldVR2R5UWpNelEzbEhjSHBaWjB3eVJHWmpaQ3NyVVVOa0syUXZTRmRpTVVsdVRTdGllbVZ4TUhCUmFrZzNTa2x2VTJoblRrdENDbVl2WjI5dFJGZFZOMHh5TkRNdlYwRXJVM3BMWWtSVk5qRllPSE5ZTVVSclIzaHFlazk1YVN0c01GaFFWbGg1ZFVacGIwMXFabm94Ym1nMlVtcGxla1lLUlVWRlNXRnZWVnBLU2tZeWRqaEVkVVZPYTNOMk5tTTVSVzVGZVVvMU0xTTVkMlIzY1hSU09VMW5LMjUzWVVjNFpXazNXbkF4VHpKUlEwazNWM2syVVFwcE9WaFRRbTh5UTNoVkwwZExkMHREUVZGRlFUQTBTemRNVTBaNWMxRXlPVGx1VkdsSlUzRTJVVFpvYlVOMmIxVTBaRzlKTldZMFMyRXhXbnBxTmpFMENsRTNWazFoTmtWR2NHVkNjMlJUV0dGUFQzTkxXblZCTVdKcGQxZFpURVkxZVRsM2IwZEJiekJYTW5aTmFYRllOR0pQS3pSVlFXZzRabGxqTWt4aldIZ0tiR1JuYmpoWldGWmhaa2QzU2k4clJHNXNWa3R0UlZkMlpqUnNjMVJYUXpZNE1WWXlhM0Z1YlU5Qk5YYzFTMHhCYmt4b01scG1WbFZMYTJKc1V6azRVUXBUYjFOVFRraE5iV0UzTTJoSmFEQmhjV2hzT1VWYWFua3JSVGQ1YVUxV1ltdzJNbUYxT0RWdk0wMUdNSEJ3WjNOc1JIaEJNSFJSTkU1T2VtRmhLelZUQ21sdVVFNWpRMDlzZFRKV2MyaGxiVEpuUjBRcldWWlZkMVp6ZDFWaU5ta3pXbXMyYmpCdWQzVnFWbUpuVVcxcGJYRlBURk15UjJaNmNHSm5jbTFRVmprS2RGSk9VWEZDVDNKeWQyaEJjVWQzTlM5NWNHbFBTQ3R3S3pkemIwSkxlVGRDYUhGQ1ZtZEpZekIzUzBOQlVVVkJhbTR6TVRBMlZGcDBibUZRV2taNGRBb3JPVmhTVVZSS2NtWXhOalp0YkdKMlNXRnpZblJaUTNoSVdUYzFRVnBZYjJ0SmRrWXpTQ3R3YkRCVVUwbGlibGx2YUd0TWRVd3dkbGxCTVd0bk56TjFDaTl0UVhaMVdVMU1PSFZaUlV0WFQwZHRSbTVyYW1WeVdqUXpibmREWWt4R2JHVTJabHBJYjI5RGFsWXlVVXM1VjBObk0wSjJlamhKVlVOaGVXOVRTRmNLVUdKM1lVdEZPRVJwZW5aalVsTnhZemhWUVdGdVRGbG1ZVUp0YzNGdFduTTNSbWw2WWtkSVdFdFRTMDlVY1N0SVRFNXBNMWxTTDBvM1dtTjFNWE5RYXdwRUwycERkSEU0ZVhKdmRWRndWMHhFYUhoMU5UZzVkRlZ0UTJKRFlXTkxjbXRMZUdsUE5UZFBlVTQyYlN0RFIwTTNkVXRXU2pGTmVtSjFUWGxzU0c1YUNpdEtObUpZUm1GTWFGUnhja2hTT0dsM2JucFhaV2hHYkdaWE1EUnBZalF3VGl0Wk5GcE5USGhGTkhORkt6VkNNVXhKWjJGQlMxUXdielZWVkc1SWN5c0tRbkp0TTA1M1MwTkJVVUpVWVVaYVVITmpWRGgwVTB0WlRXWmxTMmhOVEROTk1EQnhVSFo0UmtwRGIyMUxSWGRNYTBGbU5sQk1iMVZYVlZwT2JYazBVd292TjBaR1kxTjJhRVJwT0VnMmNIRnVWelZPYm1ob1ZURnZlR1pqWjNkdGNXczFVVkpwVDIxNVlUaFpVRXRaYlU5S2RXWnBibEpDY25WMFdHeHNTbFpaQ2s1bmNqRmxkbXcwVlhOSllqQnFPRzB5UWxwNFdGSm1ZMHBZVDJjeWIyTkRla0U0VVRKdE1rTllLM1YzZDFaSWVtRm5iVFpLWW1wVE5tWjVUakp0Y204S1UyWlRhRGd3UVRCdEswTkxUUzl3T0cxUlZtcHJhRUpSWmtKR2MzaHFWSElyVVRNM1RrUTVRVXBhUzJGclZESnZLM1kzV0ZkVFFVeHZVMklyWkdSQ1FncFhabTB4ZUZSb1J6TXZhbmRuVW5WVE0zUXJaMDlNVVRaRlFVb3lTM0Z3WnpaclZqbGhjVGwxU1dsU2NsZHVURzFuZGpSUFZEWkVSell4Y2k5TVQwdHFDa2d5YjBGQlRUTlBTbVpUWkhWNGNGcFFja1JHVW5sb2NHVTRTazVJU1VGd1FXOUpRa0ZDTTBZNVdVc3hOelJwUkdsT1praGFUWHBpY1hKQmRIcENWRzhLZVdZMVVIZGhRV0pIWkZKM1NXcFFSMXBzWkVsQmRVcFdjRFIyWVVsUWVsSjRWbTEyY213dlpUbE1VR0ZwYTJKU1pISkRjV1oxYTFSYWEyeGlSMVprY0Fwa1YweEVNbWxLWW1OdWQwTkVWRk5RVW1KUlNqQXhSa0o2Y3pKcVVYUTViMWhqVkU0elVYSjVkV05tWWl0YVVrc3ZWV2RtU2pCT04zZDNXRUpMU0Rod0Nqa3dObmxLVjJwVVN6RXdaakF4WWtaeWRURldSMmx5WjFSdFVHNVZWR3RQZWpsdE5HOHhiVzloZVZwb2NpdFFZa1J4UzBOcVdrRnJja1JQYUd0NWExY0thRmRFTmt0M1JrVjViME5uVTJwemIzVlZRelpFTlRkWGRVSXZSbVl3ZEZjMVMxQkhielUzUW01WVpVSllRMlU0T1ZsSWN6azBUWGhKWkVad1pVdHRNUXBuZEM5dmFYVXJVV2czZEdKeFZqSmxMMFo0SzFCU1ZITm1hbkoxVm1ORk5qUldVa2xVY1hsTE4wMDRkbTlwVTNKRWJHdHRXVnBOVUd4UlRUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogYzlzN3UwZncwc2xiNHFpdG5ocXUwa2R4d2ZhNzdsY3M4bHlpb3ZxNHptdG9rNGs2czU2aXo5ZWZhaHZkeGZ6ZjRhdG92cjI2aDBrZzh2Yno1dG9raGl4Y3VsbWg5amYxY2p3eGJzOGRzdjRqNnkxY3c1Zm9mcjE1dnRjbXQ5cGcK\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVV4RWVGWldUbGwyYWtKVEwwRnZiVFZ2UzA1bk0yZDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJUQk5ha1Y1VFhwQk1GZG9aMUJOYWtFeFRYcEJNazFVVVhsTlZFMTZUVVJTWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNtOUpUR1Y2ZEd4c2R6RnlTVWRrU0RKdmQxTnZOR1JoUjA5a1pXbE9lVXRNUVRCbldVY3hjSGhMTnpkcWJGWTJWSHBaUzBsT1QyVkxaM040WkdWbFRFd0tlVU5uUjFwMFJTdFpLemx4UWtacEsydG1WVWRUTUVVeVRXbzJkMVphTWpGRFRUUjFObFJMTlRSUmFXOWhPSFJsUWpCQ1VXUnVjRVU1Y2xwUU9UWldjd3AwZG1aR1ZHOWhaak5FZDBZclFVb3pRblEwV1RkVE5tZFphR1E0TjFOMVZYWjBlUzl1WkU5cVVHZzRhbWxQTUVjekt6bEtSWEp2WWxGamVGaHJiMnR1Q20wclZXbHRlamxOYzJnME1sSnZWbVUxYmpkNlNXVXJjRmRXY1dKWWNqQjVTVzVLYld4Q2RITnFOVzVvZDBSSmVWbFdla1JLY0UxS1VqVklVbmhUUzBRS1JWYzJMMlZtWjNWSWVXdDRURkUyUzJka1ZGZHZiVzlsUTJoTFFWSklXRlFyY0ZOUE5ucGlMMGR4UzJSVWNYcEpiMGg1V2s5SmVYSk1OMjgyVVVneVN3cG9WbEZQYjAxRGR6WllXaTlRVDFsTGFURk5lRlozY1ZsUVJsbEVaR1ZYWkZwSU0yWk9ZVlZzVm1OUFdrazJhV1EyWm5wNlRHTjBNbVJhV2pCb09WVnBDamhRTlZoWmIxcEtWV0ZQY1doTFRIVk1jMlZGZURCa1JURmpRa3hvTlhodE5WaEJObXMwWXpGMk9WRkZlRUZYVjJSaVFUUkdibkpYY3pSdVl6bDFUakFLZUVKaGF6UlRSekJKUzJsTU5USkhjMnMwTmxjNFdXRTBjM05KS3pGTk5UUlhXbGxCYnpnNGVFcFdibGx5Y25wR2JFODVjM2t2T1ZnMWIwVkliMHgyT1FwVlRUaGhSM1ZwT0hSRE1tRkVTWGRhVVV4WFJuYzFTWGhaWkZaWU0ycE5RWE5YZFdwWUswRklaR3BsVDFCVmVtUlBPRFJCVVVKWk1YVnZZa3ROYkVSVUNraDFlbkpxV0dsWVZGQmtVbEZZY1dKVlV5dFhhM1o2YjFwT1dUUm5jVGwzVlZJdlkydHhSakowY1RWUmRsUkdNME41WjBab2VqWnRkeTl6TkZSRGNFa0tORlJIUzNCWFpXOUtTUzlMVW14eFJGcElhRkF3VlcweFprVmpkV0Z6VkhGaVpWaHplR2RGZWxOalJVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1NUWndlVFpYUkc1VE5rRXZlVzR2Q214bGVrMWllaXRtTmtNMFMwMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFVbDJlVGM0UVV4MlZFaHViVmMzV1c0eE55czBVbVpITlRZS2VUWTRNbFl3Ykd4U01taHVaMjUyYmtOTk16UmlLekJTUTNwWVkxSXpjM0F3YnpoM1QwcDVVVFpoVkROVmVtWXJNRWc1Tm05elJGSmpUall6VFRRMlZ3cDRSSEpEZDJKNk5HTllWWFExVFU5WVQyOTBORTk1U0dWRlRFeExWM1JoWldablowRjFibGt6ZEd3M1F6RkdWRzFsYzJ0TFVURlBTRTVETmpKelFsbDNDbTlqYVU1cVRTOVZlWEIyZDBaSmVrUTBWRkJQTkU5c2JqRlFOR1p6ZG1kME5GYzRiVVZTWlVoeVdGUlBSWEl4V0ZoWGJqVjBhMlZMTkdwRGQxcEdWa0lLUm5oNFVqUlBTM1UwUlZOcWIyVnNWRGcwTVZjNFJGaEdZakJEVVc0d2RFVmplRmRhZFZsMFdsVkZMMk13Wm1abVVtTXZjVWQ2Um14WGNFdG5aMGxEVmdwdGNFRlNVWFpvV1ZBMmVYRnhlak12UW04MEsxWmxLemx1Ym05TGFEWTNaVlppSzNoVlMyWTRWemN4VFVRMVVtWlpkMmhNZGk4NU1WZE5ZVkF6WTFwdUNuTmtaekY2YWtaYVRDdHlTSFpUVUZOUk1UQmFaSE1yYlVvNEswbHVTVFk0UlV4c1EzWlllRmRvUmpNMU9XTlVlbVZJYzJGUmRsbGtjM1J1VjJwbGRtNEtORkZsV25ONmJIZEdXQ3QyVGpRNVpuZ3ljRmgyV0hkeGRtcHRRWGhoTjBGTlZ6aHZSMUJQZEhkV1JESmlhMWxQWTNWbFZtbHJWM0Y1UmxkMVJYRjFUd293Ukc1T1EzcFZUMEZ2YjNBelpqQnVZazlPU0ZGUWJqZFBUM0J1YUZwak55OUxkamhYTW5sMlNqUjRRMjh4ZUhWUVdUTmhVVkJvTkc5MGMwVk9OV1J0Q25sd2JuTXJjR2xTY0ZkM2FWWkpXVlpwUldOWFJVcEZkV1ZUWWpocVVIZG5Lekl5YW5KcFRqSXdTWEYxU2xweGNFOTNOWGswVkhaU09IaFRNR1oyTVVRS2NqQm9NR1JRWVVoUVJuVk9XbXBTY1RWWFpVNVhUbTFPYUZCcVFsUkViVmRTZEc1aVJtWjZUSEF6UVd4dlQwOWpiR2xrYVc5QlVrcHljVlpXUW5KUFFRb3plVFZNTmsxVlpIaElZVEEzYlZKUWFuYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzdGVzdC1jbGl0ZXN0eXpyamR2ZHZyLThlY2FkZi1nOHZzbmttYS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHd3YTJrMwpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHd3YTJrMwogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdHl6cmpkdmR2cmVfY2xpYWtzdGVzdHd3YTJrMwogIG5hbWU6IGNsaWFrc3Rlc3R3d2EyazMKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0d3dhMmszCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdHl6cmpkdmR2cmVfY2xpYWtzdGVzdHd3YTJrMwogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVODNaMlJrYkhwdWRXdE1jV0psTnpKWFZteGFiRUYzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFSVEJOYWtWNVRYcEJNRmRvWTA1TmFsVjNUbXBGTUUxcVJYcE5la0V3VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJiakpsV205eFR5dHNTREFyTm01WlIxcE5SVFlLYVdKMllVTnVlakYxVVV4NVVGQnZlRW8xZDJORFpWaEhhVzVUYjI5RmFHTjFiMUZ0WVZJM1puRnBjMUYzVWsxcVFUVnVlbVpyUTNOSlVXRnJVVWh3TWdwdk5YZGtha280YWtKQlNrczRORmcxTlVsR1JEUnFkMUJXV1dNNVVHcG1kRFJ1ZERaSGRFaGplakJ5VUZWalZsY3hXRXRRTkc1eFJWcEJMM0k1Vm1KcENpdEpWMVZEVW5GUWJXc3hSMWxUV0VsdVZHb3hhazVvVUVscFNtaEVUa1pwV21WVmF6VlRRMlpXWmxOR1MySXdZMUF2UmtoUWFHazNSamxTUTBrMVdFa0tPVkJCTlRkVFpsRm5WMHQxYkhsb2FFUlRXV2xMYlcxYVZITjVUbGtyTXpFMU1uRlRTRTR3UkM5dFJ6TjFhbFJOY0dKa1JrdEJZMlp3VTFreVdGSjBTd3BKVGxwS2NYTnhiSEpKWVdVMVVuTTBjQ3RYT1c1dk1pODBXWEJwTkdGNFVUWTFjMWRyU0VsR1RXRllWV1ZQVWtkcmJHUTBXblp4UzFsMmJUbEpjRzVHQ2pkTVVGZExNblV2TjJoMFNFbzVRbVpQUW1SYU5rSlRWbGxZUkVsaGJEUnhiSEF3ZG14MVUyMVdUMjlTVm1wVVpGRnpOaTl1WTNkaGFrTjFNa1l4VGtRS1lUaHFOMlV2VW1ocFNqVjVlRTlTWWtkRmNVTk1ja0pHVTJOM2JYcHFORkJ5Y1d0WGEwVnpUM0J0VTNaQlJtNWtXVUZVUzJOU1JGVTFhbXRFYzBsaVlRcGtjbkozVlU4M1kwRk1UM1ExWlc1bFNuWm1RV0pWZUdrM00wa3dOMWROUTNsRVUwd3JlR3BQVFVodlJVRkRZazl3VDIxRkwxWkNZMlZYZVU5VE1GVmlDazV3Y214clJqWldXVVZDU2t0UFYwaHVZMFpXYUROS00zVktiak4yTlZRMFoxVjZVWEp5T1ZBd1UycGpkbWxaWW5SbWVVMVpTMHh2VVhWS1ptOURNRmNLUlhkdmFXSnZPVlpTUTNodmVuQXZRWFpLWkV0bE5rTjVaRk5VVVhkTmN6TlZja0paVjNkVU1rUkZLeTkwYVU5c2RrcEpjMjVITm1jelZuQkJPVmhVZFFwVmVWZDNVbmRJWjI1RFpISXlZVzVaWkZoMFRWQkRUVU5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZhbkZ1VEhCWlQyUUtURzlFTDB0bUsxWTNUWGgyVURVdmIweG5iM2RFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJTakI2YlUxb1ExcEVURmR0Y0ZFNVExVlllQXBJTm5KaU4xTk9UVWc0ZDNnMWRWSlFWVXAxVkVveE9YUlNSekZHUnpoaVZEbEpkaTgzTkZjMVJURlVWRkUwYldvdlFYcElUemszYjFGa0wxaHFSeXRKQ2xWV1NuSlNaVmMxY1dGdloyeE1VVUpxYzBFd1QzRk9XVE40UTAxeVRrRmFhbWhRWm5KQmVVNXpVa05XZVVoc1RYVkNSWGhKVjJwbmVWVXdiV0U0UTNFS0wzUjRNVWhYZVZJM1EwRmtXWHBoT1RoRVptUTNWVzFGUjNKdE9XdzRLMHhPV0ZWRVRXdEtkbEI1UW1zcmQwaE9RVWhSVDFveGJWRklVbGR3ZEU5a1p3cElVRTloYkVGallXTm9NRTVJZUhCV2MxUjNUbHA1TW5NNUwxZzRRWEJTTTFWMlFuWjZLM0JFZEhaVU1FTkphbFZOTkRCeVpGZHdWWFZwVld4WlUwdFFDazhyZDJOMWVuaERORXhGUlZkVk1XYzRZV2d5TUZSMmQydGlPRFl5SzNaT2FGQjRiMFpXUVRSQ2JrTndRMmM0U0VkWGRIRXhWVXROYVV0SFNYUlhjRWdLWlROM1kwdFNUR3RDWnpSMU1sY3daV3RzWkVkS2F6azBiWFJ3VDJkUE9ISTFSVlU1Tm5KMlNGZEZTMkZ2ZUVKTk5FMWxXV2h3TWxoSE1Vd3pVR1ExY1FwUU5tUjRkRXBEZGpCS1VHMUxNemRzU0N0U1QwTk1TVFUxV0U1V1QycE9iSGh4YldVeWFsUXlTbWxWUldoaGNpOW1NRVJITVhwMFMyMHpUVEpZYjJjckNuWXdabXh1TjNOTlNuSndjM0Z1Wms1dlVsQkxUVVV4VmxGdGNYaHpaM3BETkhkVWIzVlphR0ZDT1VGblJreDFWM1pTUzA1a01WaHFMME0yZEZKek5FMEtlRzR3U0VwUE56RXlkWHBQTkVFMlZubGhZMU5uV0VWamJIcGtTMVJEUlVwSWIydDZVek5GZFd0UFpHcFZabkF3TkhkcVdGWlFURFJuVmtGbWFVOUZWZ3BQYWtWU2FrY3haM2gzY21jdk5ESkxRVlpCZEhSd2FEUklZVk5EY20xU2MxSTRVRWROUVhsblVIVkpia2d5V21jeGJtb3pZbmx4Tm1SNFkwZFFNRW8yQ2tOV2FYbHBSVTFsVnpCdFRrTlhjbXRRTjFseWJYWlZUQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJiakpsV205eFR5dHNTREFyTm01WlIxcE5SVFpwWW5aaFEyNTZNWFZSVEhsUVVHOTRTalYzWTBObFdFZHBibE52Q205RmFHTjFiMUZ0WVZJM1puRnBjMUYzVWsxcVFUVnVlbVpyUTNOSlVXRnJVVWh3TW04MWQyUnFTamhxUWtGS1N6ZzBXRFUxU1VaRU5HcDNVRlpaWXprS1VHcG1kRFJ1ZERaSGRFaGplakJ5VUZWalZsY3hXRXRRTkc1eFJWcEJMM0k1Vm1KcEswbFhWVU5TY1ZCdGF6RkhXVk5ZU1c1VWFqRnFUbWhRU1dsS2FBcEVUa1pwV21WVmF6VlRRMlpXWmxOR1MySXdZMUF2UmtoUWFHazNSamxTUTBrMVdFazVVRUUxTjFObVVXZFhTM1ZzZVdob1JGTlphVXR0YlZwVWMzbE9DbGtyTXpFMU1uRlRTRTR3UkM5dFJ6TjFhbFJOY0dKa1JrdEJZMlp3VTFreVdGSjBTMGxPV2tweGMzRnNja2xoWlRWU2N6UndLMWM1Ym04eUx6UlpjR2tLTkdGNFVUWTFjMWRyU0VsR1RXRllWV1ZQVWtkcmJHUTBXblp4UzFsMmJUbEpjRzVHTjB4UVYwc3lkUzgzYUhSSVNqbENaazlDWkZvMlFsTldXVmhFU1FwaGJEUnhiSEF3ZG14MVUyMVdUMjlTVm1wVVpGRnpOaTl1WTNkaGFrTjFNa1l4VGtSaE9HbzNaUzlTYUdsS05YbDRUMUppUjBWeFEweHlRa1pUWTNkdENucHFORkJ5Y1d0WGEwVnpUM0J0VTNaQlJtNWtXVUZVUzJOU1JGVTFhbXRFYzBsaVlXUnljbmRWVHpkalFVeFBkRFZsYm1WS2RtWkJZbFY0YVRjelNUQUtOMWROUTNsRVUwd3JlR3BQVFVodlJVRkRZazl3VDIxRkwxWkNZMlZYZVU5VE1GVmlUbkJ5Ykd0R05sWlpSVUpLUzA5WFNHNWpSbFpvTTBvemRVcHVNd3AyTlZRMFoxVjZVWEp5T1ZBd1UycGpkbWxaWW5SbWVVMVpTMHh2VVhWS1ptOURNRmRGZDI5cFltODVWbEpEZUc5NmNDOUJka3BrUzJVMlEzbGtVMVJSQ25kTmN6TlZja0paVjNkVU1rUkZLeTkwYVU5c2RrcEpjMjVITm1jelZuQkJPVmhVZFZWNVYzZFNkMGhuYmtOa2NqSmhibGxrV0hSTlVFTk5RMEYzUlVFS1FWRkxRMEZuUVZOa1oyTm1RazlQTDJkeWJsVnZXa3RtTDBwcWR6bHhZVXczUjJwM05HeDRNMjR5YjNRNGFrSXhTRkF4Wm1JMU9WQTBUa2ROWTBZeVlRcGpkemR2VVVaRFUyRTRjakJWWkVsWVdIaHZVVkZTY1c5MFVWbHJZMHRKYW1SU1MzcEdhV3ByUW5wSmJuVnhha2d2VEdsNE5sSlhOSEpRVjBvNE1EZDVDalpFWTNkamNrOU1MM1JVVG5BMVZIVllPRFJTV1VvMmRFeFZSR2RGTW1oUWJscHVaaTkxT0ZaMFZFTkZkRTlKVEZNNGJuVmFRbXBzVTFOTGFVNXRWMDRLWlRkbE5GWnlaRTVZUXpreldVWlJiRFYxZEZWSFUzTklkMEZOYTBOMVdrdG9kaTl2TTBOeWIwdHhPRU4yVGxoalNEVnhNM1UwZW5Oak9WTXdNVzE2VWdwc2RUaDBaVTVsTUZsM1ZVbGtRemcwVFZselEzSXlhRUZhUkdGNmEzUXlOVkF2Y25JdmFrNU5lVlpvU1dGYU1FdFVaRkphU2twUVRFZDNMMDFIV1hkR0NtTnZPRlJpZFdOeGExSldlbEZXYjJGWmR6SXZOVXhvTkRFeVNrdHNjalo2YTFoM1pITkZZa2x3YVhwRVVqWjBVVkJ0TUdwdmRYb3ZibWhCUkZkWk9ERUthRnBUV1RWUmIzTnVaSG8wVW1NckswdFlkMDlSVHpoelpYUk1jVzAxTTJweVpVWm9iMUF6VkVOdFpIbGtaRTFIU25wT1oya3lTM0ExV1dvMVNETkZNZ28wU25keVNXOTJXRkp5VFd4Q2FuWjFiMEoyTW5GTWVrTXlVVTFXYzA0M2RsRmtTMGRNYjJOTlVtVTFaRmszTVhsWlVsZFVWSE5yV2poVU5HZzFTbVp5Q2t0TGFVVkNZVVJ6VEVob1pXYzJXRzkyZEhGakswaE1Ra1V5TUhwelREUjRkVzl1V0VWM1VqVjBRekpPVldGTU5tSXJWVTh6VWtsVk1WTk5RMXBFV2xVS2FIbHJPVTl2VEN0c0swbFNWbXBxUlZFMFMyRlBZMDFHYTNnMllrZDZjMjFMVFdKR1VVaHNWaXRWVG1KRVJqTmpla2w2VXpObksyTlRNV3gyUm05VlRRcHZPVEZ6WmpSRk0yWkVRa1JEZUhvd1pERXdRV2hHZURsNFpqZFpMMHBEVjJ4cVpsVjZaVGg1UzBzcmNrbGFiREk0VVV0RFFWRkZRVEJhU0VVd1prMVFDbUpJYjNFNVluRjJTSFlyYkVsWVptWnFhVmhvWWtSS2JGaDBVeTlzYWt0cVJIazBSMFF4YVhOd1VtUmxVRWRKVkZWMkswdElkR3BRZVRsbWQxcFdPWFlLU1hGYVlYQTRSVWxOYVZCRU5rZDFiVlZMY2tGMWVrdFlTRTVZVlc5RE5uTnVNV1l4WmxoMFlXbFNWRk42U1ZWTmJsbEdNVnAwYjJ4ck56TjNPVXRoVndvNFR5OURWRU0wUjAxR1ZpdG9Oa2xPV1RkSmVUaHJNMHgxZVdsamFWWmxRelZLUVhKcU5XSjVPRTkyTjFwR1V6WllSMkZMTkZOWFpHeHhVREZWV1dJMUNrOXVlV3R2ZFRjNWIxWXZWMkpvWWk5cFpVeGpNME5yWm5WSFIwOUtWWGhIYUhBelRqaFVTQ3MwUm5WTmRUTXZRbUZMV2swMGJGZHpMMlJ5T0dwT1kxUUtTa3M0YnpoRU9ERldla3ROYVVob2QzVlpkRmQ2UW14MGVUbFNZMEk1UjBSMWVtUlpLMnN2VHpsSmVWbHdVMjVUUms5eVNWWTJPV1JVV2pSWVlsTlRjd3BGTUhCdGRrdEpVVm80UkVwTWQwdERRVkZGUVhkeWFXVmpkbE5vVTBwYVVUaE9jMmRXUm1kaVJqRjRUekJYYkhsd1oxcDVSbHBsUlVkMWEyWktaREZCQ2pWdFVsZFpOblE0ZEVOUVptRnNPVnBhWkVSRFQwSlNhMGR3ZGxveUswRXZSRzVJVlZOUldGbDFia1Z1T0ZWeGFHZFhjblZ3TmtWT1IwSTNTbU52YlVJS2IyNHlUbTltTkhOV1NYbGhXVVkxUzFRek5VNXdXbU50TUUxM1kzZGlRamhYTUc1cGVVVlJNVlExVkRCb2VIYzRaa2hGYmxOUVdGUjVRa2t5U0V3eFpBcHFTblpGZFZReU5XYzRUbHA0YVc0cldVdFZSVWt2WTAxelVUaHZWVE5WVWxjNGFHMDRkRWxxYlU4clFrVmhjM1VyV2sxR00xVk9NVXBKVEdwT2NWUnNDbU0wTjNoMVNIaE1lRUpzVWpVclozQjFPREl2V0dWVVIzRTRaSGs1YUd4aGJHVlZWbkZYTlU5eGRWRndPVzU1VmtGSWJXWkJha1YyTTFWNkt6TnRhSE1LV0VGRmNFVlJkR0ZrVnpWd00yZGhVMlpIWnpKQ1FVRkJVa013V1hOb01rbG9Sa3RJTVRKMVdGUlJTME5CVVVGcE1uVXJNVk0wZGtKTGQwTkRTbWsyUXdwS1ZuRTViV3RhWjFOblUxbEVhbTB4T0VGU09WbHhZV3RITmprclZtVXhRU3RCV1VGWVVDdENlVzFoWVdkemVuTjRiRzFDVVhOSmJFeFRNMlYzVFdkM0NreHhjV2wxVjFSTUwyUndXVk5ETTBJMlpqWllUbUYzV1ZKSVZHTkVaWGRqTmtreU1qTnNiMlY1UXpGVGEyVXlNa05PTVU5ck0xb3ZWa05GYjNOdE4zUUtSWGR6WTFjclQwZE9WbXR5TWpaNVN6QkdTbGwwVjJ4aWQyMDJPRlIzY2xFM2VUWTRibE55ZUhVd2VGWTNaaXR5TUd4Rk1qUm9RVXB1YW14NmNpOVJXQXBLZFRGMlIyWjNaVmgwUlVVdlVVZzViRXAzYW5Jckx6WTJOM2RaTlZsMlUyNVBaRzVPTDFKbVFqSnROa3Q1TWl0bGRrZFBTM2xrVURkeFNVMWplbUpZQ2pka2VGcDRhelZhVkdOa09UUnhlbFZRWkcxbmJ6QlJXbTE2WWpsVGRFUk5PRFpXWm5OMmFuZzJZWEYzYVhOWmJEVnhiRmQ1WTJGck0zSmlMMjlMVkVJS00wNXhXa0Z2U1VKQlJrNXpiMWxaUTNoUE4wTmFPVGh3U1c5eVFWUkxjMUJuZWpBMEwydFBabFV4Vm04eWRFcHJkV3hIVVc0elQxWXpWMVpMV0ZZd1dRcFhWMjVNWmtKUGFFRjJWR1l4TlhWSE1XbHVZbmN5WnlzMFNVdEJiazFCVlVwMFlUYzRUVWgyZGtaMldrcHFSVVpVTmpGbmRVVmxWRzU0UTJWUmQxQmxDbFZYTW10UFFsbHBkVTFYVUVseVVXMUlkRkJyT1hkS2RHWXhibkI2ZVZaUVdHZDRZM3B3Vmt0TVZtbFhObUZ6TkVWcVRIZzVjR2c1VkVOV1NrTnhaMjRLUlRsc1VYVkpiRlJoV21relExcHlOazFZTjBGRmVsaE9aMFF6WTFKcFFVcDZURko2VFU5alFWWkhlbVJ5T1hnMmNucHZSVWc0U1Vsd1ozTjVVbGwxTkFwb1ZucHJTRXN3TTJ0NGREVkljREJQUlVoVVltMHZTRWxsYVZacEszaFdRVTQzU2tFMFpESlpVR05ZUlhGUmMxcEtPRVJHTkVaaWVYTkdUamRHT0VKckNrVTNkSEFyVjNsUVoxVlVjR042VUVOV2JXaEtUM1Z1YlV0bmFtcE5ZV3REWjJkRlFrRkpaSEJrTTFWUUx6a3hSWHBXTUVoa1kyRTBabHBTVFVoQ2FtMEtZMEU0ZFUxNGVuTk9NRVpWV25WSmRubDVOMloyY1dwM1RWRTVWR0ZNTUVScVdrY3dkSGRwSzNsa1lWWkJPVEI0TkRoNkx6azFkelJSV0ZreGRVUXZZZ28wWkdkVE9FaHJOVVpGTlRoRU1pOVJVVTRyZGs5TE1YUkNRVzl5TVVaQ1RsZHFRa1JDUzFSbU9DdDViRXROTm1nM1FWb3ZOU3M1VTFWVGRFbGFlVlYyQ2pOV1QwSlVSM2R2SzJaM2RFWTRNRTUwZUZsclQwZHNRblZLV1VaMWJ6aDRkbGhTWTNsUFprcGpNRWxFZUhCM2FEWk1MMVoyVUhSeFZ6UlBWbFJwVjNVS2F6bDJiRWxuTHpOVFZIZE5SMmRVZEM5UVdVaEpibWQ2V1RWbGRHMWhRMDFMZFRCRVluWjFOWEJZVjA5SU1XMVNhakptV2tGNFprOW5iSFZ6U2s4eE1RcFFjQzgyUWxWek9GaHljMlZXV214MEswZFJkMVpzT1V0WlJYQnNjbk0wVm01dk0xTXdTSGsyUnpWNlNVOUtSM28xTkdOVlYwUlNia1ZKZHowS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiA1eWwwOXN4MGNnaXVzcHAyNHlnOXNvcTMzOHZrcDMzeHYzbnV5emllbHJ1azJqYzcweTFsMHVkc2s4NXF0bGczdzBvbWd6NHd5em8ydDF5Nmwwajh5eXk4ZzZmb3FmZGhtcTliZGxjYzg5MzV6MmRtYnB6bWZ3NHlvMHhpanpxNgo=\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13096' + - '13108' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:43 GMT + - Wed, 14 Jun 2023 22:40:41 GMT expires: - '-1' pragma: @@ -916,24 +936,24 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUmxBMFpqRjZPRWx6UTNKSGFEQXJVeTlxUkU1VWVrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCZWsxVVZYaE5SRUV6VFhwU1lVZEJPSGxOUkZWNlRVUk5lRTVVUlhkTlZHTjZUa1p2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVONkNsaHpLM2hFY3pKQ1VHWXhhSE5YZUdrek1WWkJiVmxNTDJ4bWEyTlNjazFFTVN0bGFraFBaR0pWUmtwUmMzVlhjRkJITVdKUWR6SklRM1JxY2xGNGFqRUtRbGxoYUdsblRFRlRiRk5MYWpNMGFsRk5jbnBLZUdwR1RVVnZUSE5FY0VaQk1HeHNUbVZTVG0xTlpETmxTMmRZWWpGelJXTlJaVmhLVlZkRFRHcDNSQXBsYkRWeU9UTXJMekpCWTNGNVRHSmxOblY2WWtONGVWSkNaVGt3V1dwTllYQkZhSFp4ZUd4WFR6ZExiVlp4Ym1SMVlYaHdlblYyVlRaNllrNUZhR3RhQ21sQ1ZITktlbEJrVVUxWlFUTmhUMnB0VW1kdlpscG9SSEZLYjIxM1ZrY3daa1l5UlRGcldETndOM2RFWlU1c2JYWk5WSFJOUm5sblpIRlJhM0pOT1c0S00ybzNlWGxLYzB4QlpqRkVkbnBHYnk5RmFYQjFTbEZOU1VSRE1GRnJjV3hIYjA5NE1uZHpSU3RRTkZJeWF6bDVUMnR3T1hBMlVtUlZMeTk0U0hGek53cFVNbTByY1hsUGFERTNRWGN3VmpaU1oyMVROa2xwYUU1SVdYSlBWRzFNTlcxNFNtMTNhbUZ5T1dOWFRrbE9lWEJCVFRCdFpURjFaMnhwT1hWc1p6TnVDbE0wY1hvd1dVa3JOM1JhTlZKc2NVeEdObU16VTJsRVJrVTFUbVF6VFRaVFZGaFlUbk5zVFZjMlRHSmFjMUJQVGt0b1VIRkRhbGxYYjA5WmQxUkdUak1LUTBGaVptdGxSbFJ1WWxoelVXMXdSRWc1ZUc0emIwOHdObWx5Ym5oeVVFcHNjVzVTYUdacmQyTm9TbWhxTTBweU5HSkliRVJGZG5oeFVraEtVbVV2YXdwNEwycHZZMHhYZEZGdFRsaFNaVWd5YVVGMVltbzVVMjlVYjJreVZ6WnlkRFZUTm1kTVJYQjBLM1F3Um1vNWJ6TkNaVlZDZDBoclJYbHdjR1ZvU2paSUNuRlRjek40VkRsRldXNXpSVTByTTFsUGEyeGtTMnRCU1V0WlltY3hTRVZ6TkRSeWMxVmpXbVF5VWpjNFIzUmhhazFxTnpkS1dtUkliakJpYlRWdlN6a0taamg0ZFZSak0ya3ZOVlIyZUd0bmFWcEdOV2hTTlVWNmNFMWhkR2h0WTBGVFNsazRXWEpDWjFKM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWaVNVOVBkSEJGZFVSVGFYWlJiVXB6Q25FelRGcDJMMEZHTm1GbmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGQldGcHJOVWs0VGpOSVZuaDJjMVJ2VW1NcldHMW1TbXNyVVRRS2JtZDRkSHBYTkRCMFNtTXlXVk0xU1U1RlIzVTFla0ZuT1ZKc2QwZGxiVXA2ZUVWTlZHcGtLMWh2YXl0RmNFbHRTRzkxZVdwNVp6SXlkek0wZDBkcVp3cE5Ua3R2TDB0aFkyeG1RVEJhYkVaVFFsVjZSRmhIVlV3d2JYRkJkelZXVjJWdFRuWXpkMmhuYWxSWldIRXphMUZ1WWpSclZuRkVPRXcwTlRkMVMyTlNDbkV4TVhBMVVXZEVWR05PU0N0MVEyaHpUWGhoUTNKeGJFcDRRV2xqZFN0eWVHOW5RMjVCYWs4eE4wUnJaM2RCTXl0RGNqRTRlWEZZT0cxeFNXOVZhVGtLVEhkQmJuTmlZblJWV0RSd2NIZHlTbkJUT1VOR0wzaHdaV1Z0WWt4MFZWWnNXRUZKY1c5bFNtdENhQzloTjBjelEwOXNNMkozUnpoYVVDdHZZbU4zZWdwQ1VHdExNbkJwVlZsVFdGbHFWVzh4YVZWNVJVTjBlRVF6VFZFeE4ybzJNRzVQY0ZKcFJEWTRPSEJwZG1Vd1pFNHZRMk5YYVdKcVQwNUNkWGhFWjNCT0NsWnFPRmMwT0RVMFRqSkJlR1ppY1RGdWRVMDRia1ZLUVRaV2RXbzFTazVIZEhKS1FuQTRUWEYwTWpKRmRFNTFZVmxDVmpoNGJFOHJSa0pVUW1wd1owUUtjMjlQZVhSeWNHMVllVmxDYUdONWIwZDFNVmQyVW1kSFlYa3JOVlE0V1ZwWE5sSnZWbVJCYkVkeFR6bFVPWGh0VmpKV1YwVXJSMjVPVEdWV1pIbFVjZ3BVU25nMVJsVjNhMmhUYzFCUWN6ZGtXR2wzWmtneGJYbE9aalZoUVdJeVdGbHdSSEZVVEU5TmIzaGxhVlFyTlVWdGQzSjZNM2hGVEZsdU5uWnRWM0pUQ2xCdmNrcFFVMU5xVURjM2FVZFlLelJESzFCUFdGaHVjakI1YmpOMGVEQlFOVXAzUlVkaGVtcFFlbkJHZUhsc1NHVkhjbXcyUlU5alRISjRSbkJWWm5rS1JVcFBOa2d6WjJaa05WQjNiRVUyYkVsSE9WTlVVVkpKWlZwMFFWY3hWMGhTU3pVeEwyWmtZbEpUYjFsV2NYZHFTMFZhYURWblRuWldTMmhoWkdOalpncEhVMWRPVFRsUE15OVpTMFp3WkRFeUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc3Rlc3QtY2xpdGVzdGthbGRoZnYycS03OWE3MzktenU4OGZwMjMuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RoNHI0ZDIKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RoNHI0ZDIKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RrYWxkaGZ2MnF6X2NsaWFrc3Rlc3RoNHI0ZDIKICBuYW1lOiBjbGlha3N0ZXN0aDRyNGQyCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGg0cjRkMgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RrYWxkaGZ2MnF6X2NsaWFrc3Rlc3RoNHI0ZDIKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJRazFRZEZKdFlrcGhZVzl0T0ZJMU56TXhWV2R1UkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJlazFVVlhoTlJFRXpUWHBTWVVaM01IbE9WRUY2VFZSVmVFMUVSVE5OZWxKaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVU55Vkhsb1kyNUlOVkE0WTJ4NWVqUnNWbXhSYUVvS2RFWnVRVEJFTjBveGREbFhRa3BETlV0VVJYUnplVTloTmpsSU0yZHVkVzFqVW1oSFZqaE5NM0UwTm05T05uUkhkREpHV21wVWEwRlBaVmd4SzNSemJBb3llRWhsWWxRNFVHTnBRa3cxZWtKMWNuRTFSREpJVlZFcmRuWmlSMVJSYlU4dlRqUnNUMjlhYTJoU1F5dFJTMUUzWkN0dVpWcGphazEzY21GREsxbFFDa2t3UjNKSlpFOW1jRkpUVWxOTGEwMTFWMHA0VW0xUGNUZEVNbGRNVEdveVRWQTJLemwxWVdjemVFbFBWbVptTm1GbFNIbGxOMU5oY25SV00xbERTR2dLYlhSMlNWUjVWbFpUTm5oNWJHZG9Oa1I0VmxWRGJrOW5NM2hYVVZsR2RHOVViRkZaYWtzemJEUkhlbFExVjBWSFpUZzRZMFl6VjNKMFdubFJaamt3Y1FwUkwwVnNkSFpJZVVGaWRXTnNjSGRQWVhORVNFbDRZWEJ6ZHpSc1duZ3dSMHBDY3poUmExUk9lWEJWZVhKa2EzRTVPR2gxUjFsTk1UUkJhVk5uUWtOdkNtTlhRVzQxYkUxdkszZE1NVk50UkhvM1IwaGlOMVZWZFRKT2FWb3hZa3B0TjFsU04yaDNjSFE0UmxOTVJuWkdSVmhqTDI5dmQzbEpMek53ZWpkelNUUUtOVTVGVVV4UWIydGtXRVZ6UkhCTFprbHVXRU5EZEdsQ1VtaEdUM28yVmpaWVNtSmlVMFF2WVRGWU1UaEplbWx2ZFhZM1JrRXhNRUpXUTFoNVRtSnhid3BCTnpaSE0wMUJPR1JaTDBKcWQyUjVaSFJGVkVGUVVrdzNhRFEzY0ZGUVZEQnJZMEphWm5oS1VFWkliRTVUUjFWWlltNUJkbVpIVDNaeE4wbFhPVXh1Q25CWWQwaFFjaXRYVmxaMlVqUTNORzlCUkd4aVV6QXpVVkJFZFhCT1owZGlTRFpGY0V0WFpGZzVVMFpIVkhoTk1EaFRXRE0wYmxrcmFIWnVhMjlUU0ZJS1dqRllVVEJYY1RaMU0xRkxhV3BKV0VGemVYUjZhWGx0WlVKNmRtWk9ZWGw0WW1KcE9XWjFVMk5GY0ZkSFYwSlZOVWRoTW5SNVJ5dDJjakpaV0VGRVZ3b3ZlRTlrVW5GUWQzbFVPWGhvU1VVMlYwMU5TbU5SU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEp6WnpRMk1tdFRORTRLUzBzNVExbHRlWEpqZEcwdk9FRlljSEZFUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZvU0VGVk9WWkpMMUl2TlU4M1dtaFhabTV5YlFwMk9VZFFPSEI2TDFsbVNYTmphSEJFYjFCUmNIcHRUa1ZpWldGT1pYUkRNVXAwWml0WmRtRjNOMmxqTlhSRU1HaHBjMjV4WmtwbmRXVlVSWFpyYjFRMUNsVmhXV1Z6V2tveWJuSlhjelZvT0VoNWNEZE9PVUZEZFZweldXMTBPREYzU0doWmJsVnJjbE53VXpBMmNuUlRWMXBqV1ZoalpGVlVZMFZpTXpoWlVXZ0tibE5FV1VjeFVHUnVWamszVWtadE1UQnVNMFJQUmxFMVZGY3ZZaklyYTNSUVdTOHpSa3QyVmpSRU1VaDVlbkZMV0RRNVVsZG1MMU5UWjFCWkx6SmtjUXB5TkhvME1sVmFaM1Z6UVdaNk5FUlVjbGh6VFdSalptSlRkRVF5Y0V0UlMyRjNhVXMwTVVWM1VWWjVNRGx0VlVSQ1VuRndaR1UwY3pSaGRqUkJRWGswQ2xKaldERnJTRTlCWWxwb2VIcFdORzVoS3pKMU5UQkNaakJzUzNScmJVUkZPRzF4T0RWdlZVaENNRTFZVkVGcFJIaGxiVUpJVkRCdmVWb3dPRVZqVFVrS1YxUjRTRXh1TVdoalZYVlpXRkYyYjNCVVZpdGpPWEZxWVdSUlJVNVNhMEp4Vm1zeVJHVTRXVWhMTkRKak9HOWpPRFY1T0ZGVVkyNWhiRXhxWVVSa1ZncFNXU3Q1VUhsbldtdDZWa041VFdwMk5YQXJha0ZSYUZsTWEyMHhiSFp1TTJveWRFMUtiU3RGU1cxdWJYRXlOMjV5VFhCSFNrNVpOWFJyZEhKd1JqSnVDalpNYkdWc1JVTjZNVUpEWmxCb2QzUlhjelV4ZW5aQ2VtTXJOMUZFTWl0alNFTnBNRUpVUzBsSGFWWjJhRmRoU1ZSTFZsWmlWRGROUkdGNVJraFFRVWdLVWtoV1RWbDFNa1VyYUdKS1dFY3pSbU5MZEhCaFEzZFJObWRCUmxBeGJERndkSEExUzNWRmNVRkRTSEJKT0dsTWVqQk9WM3BtVVRWalZYaFpNVU5yVUFwYVQxSjRRWGRuTWtOME1IQkdWMjFDTDBwTFlXZzNlVzlNTmxSWFZscFBlR1V4Y1ZBM1FWUkRlbmhEUTJWVGVIVldaVzQ0Wld4a01XZDFXV0ptTDJSNENqWjZlVGxTVlcxMlpHcFlhbnBHZUhseWVIbEJSRWc0UFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCY1RBNGIxaEtlQ3RVTDBoS1kzTXJTbFphVlVsVFlsSmFkMDVCSzNsa1ltWldaMU5SZFZOcmVFeGlUV3B0ZFhaU0NqazBTamR3YmtWWlVteG1SRTQyZFU5eFJHVnlVbkprYUZkWk1EVkJSRzVzT1daeVlrcGtjMUl6YlRBdlJETkpaMU1yWTNkaWNUWjFVVGxvTVVWUWNqY0tNbmhyTUVwcWRucGxTbFJ4UjFwSlZWRjJhME5yVHpObWNETnRXRWw2VFVzeVozWnRSSGxPUW5GNVNGUnVObFZWYTFWcGNFUk1iR2xqVlZwcWNYVjNPUXBzYVhrME9XcEVLM1oyWW0xdlRqaFRSR3hZTXl0dGJtZzRiblV3YlhFM1ZtUXlRV2cwV25KaWVVVTRiRlpWZFhOamNGbEpaV2M0VmxaQmNIcHZUamhXQ210SFFtSmhSVFZWUjBsNWREVmxRbk13SzFab1FtNTJVRWhDWkRGeE4xZGphMGd2WkV0clVIaEtZbUo0T0dkSE4yNUtZV05FYlhKQmVIbE5WM0ZpVFU4S1NsZGpaRUpwVVdKUVJVcEZlbU54VmsxeE0xcExkbVpKWW1odFJFNWxRVWxyYjBGUmNVaEdaMG9yV2xSTFVITkRPVlZ3WnpncmVHZ3lLekZHVEhScVdRcHRaRmQ1V25VeVJXVTBZMHRpWmtKVmFYaGllRkpHTTFBMlMwMU5hVkE1Tm1Nck4wTlBUMVJTUlVONk5rcElWbmhNUVRaVGJubEtNWGRuY2xsblZWbFNDbFJ6SzJ4bGJIbFhNakJuTHpKMFZqbG1RMDAwY1V4eUszaFJUbVJCVmxGc09HcFhObkZCVHl0b2RIcEJVRWhYVUhkWk9FaGpibUpTUlhkRU1GTXJOR1VLVHpaVlJEQTVTa2hCVjFnNFUxUjRValZVVldoc1IwYzFkMHd6ZUdweU5uVjVSblpUTlRaV09FSjZOaTlzYkZaaU1HVlBLMHRCUVRWWE1IUk9NRVIzTndweFZGbENiWGdyYUV0VGJHNVdMMVZvVW1zNFZFNVFSV3c1SzBveVVHOWlOVFZMUldnd1YyUldNRTVHY1hWeWREQkRiMjk1Um5kTVRYSmpOSE53Ym1kakNqY3plbGR6YzFjeU5IWllOMnR1UWt0V2FHeG5WazlTYlhSeVkyaDJjalk1YlVaM1FURjJPRlJ1VldGcU9FMXJMMk5aVTBKUGJHcEVRMWhGUTBGM1JVRUtRVkZMUTBGblFXMXBRelpITjJwb1NFZFNXamQxV1hsc1kwWnJiRFIxWjFKUk5GaHlPVzFZVkhaclJXcE9UVEl6TDNOUmVXTXpjVTR4YnpacVpVZHlRd3BZTjJ0elV6SXhVMFIyZERaak5Fd3hSbkIyVFc1cWJFbFpOekZ3VUZkWksyaHZiMXB0YXpCRVdtRlFlVTFXTlVoTGJXWnBaM1ZIYkdaWWVrdFpUU3MxQ25ad01FNVdWbk42VjFScmJtbHBiVEZVVG1ObE9YSnpjRWx0V1VRek5sWkZjbVEwWnpKWmRsQjRaVEJ2VkVsaFJTOW9WWEVySzI4MldHbE1XVlpXY200S1lucGxaVEZoTkVaQ1dHTTJibmhvVVZveGVsQk5hVmxZY2sxeVUwdFFabTlxVlhwVVlUWnpSazU0VUM5RFIyUXJkVXc0WWxoNlNrWm5SR0oyVG1wallRcE5iMHB0TkRGNk0wdEhMM3BsYlU5NVlVOUNlREVyTmpSWVpIQk5VMGN6TUZWeWMwY3JWR0pQTWs0eVVFeEtibWc0VGxkSVNrSjNOV00wUlVkM1dscFRDbkp2UlRGWVMzcEZZMjVCV0doNFdsSkdXRWcyTmpCS2FWZFhXR3hpZVhsTWJ6Wmtka296TDFJMVFsaGlNV3gyYm5KWGNEWm5SMWRtWVZGVVMyTkxWR1FLUVRkWVFtWlNVamh6VW10SU1Hc3pOek50U3pkVlpEUm9kV0ZGVEVkcVFrdDNOSGwzUVVGd05rUnFUR1JLVDFsRmFITk5kemc0ZUdvdkwzQkRWamRaTkFwRVpVSnVUMUZ2T0ZJemRGRkxSV2gzWWxjM2QybGpiRmhTUWxwMldqWjNhbmRoUkUwNFlrOHdSMHAxTlVKbVVHVXJaRnBKVWxGNlJUQkNabWQzU2xGNENqZGxZMUZoTlhWUVZHNUJWVk5FT1c1WVRTdFZZWEJpYm5JMWEwcGxVM1ZMVnpCTVptRnBXblJUWkdkc05XVjBVMFZoTWtONlNrTjVUWFpSVVRjNEwxSUtUMDVPTUROR2QwTTFUMmxKZHpsS1FVSnZNM2R4YTFKTVNuVjZhRmg0TVhONEwyRlhkRGhMTmxobmJVaENlWFJZTmxacVlqWlRXbFJ2V1dzdlZrVldkQW8xTjJWbGJFZFJNSGRZV1VoM1pHODBaVlZCTUdwNk9FRmFTMlJqTTFoaE1ISmljRkZNVVhKdWVFMUdXbloxV1RGb1VVdERRVkZGUVhveFpYZE9UVGRSQ2tsaFlVOWlSRUZEVDNOb1RVNUlhakZoT0U0elRrWmtTMnRyVEZoQlZYSnFlRTlxTTFWMVNWRlFSMnM0VG1wWUwyaDVRMUJZVkVFNU5rMDJMMVl2ZVRZS1EwTklia0ZwVlRWQ01tMHdhV0p2VUhVMU9IQndTbmxLVWpCTk5uVkZORWhSVXpGUmQzVm9aVWxYVDBoTVZFOHhkbmt4WjNOT1RtdENSMnBpVTNkRllncEhhV2hqVkc1NVptWldVR2R5UWpNelEzbEhjSHBaWjB3eVJHWmpaQ3NyVVVOa0syUXZTRmRpTVVsdVRTdGllbVZ4TUhCUmFrZzNTa2x2VTJoblRrdENDbVl2WjI5dFJGZFZOMHh5TkRNdlYwRXJVM3BMWWtSVk5qRllPSE5ZTVVSclIzaHFlazk1YVN0c01GaFFWbGg1ZFVacGIwMXFabm94Ym1nMlVtcGxla1lLUlVWRlNXRnZWVnBLU2tZeWRqaEVkVVZPYTNOMk5tTTVSVzVGZVVvMU0xTTVkMlIzY1hSU09VMW5LMjUzWVVjNFpXazNXbkF4VHpKUlEwazNWM2syVVFwcE9WaFRRbTh5UTNoVkwwZExkMHREUVZGRlFUQTBTemRNVTBaNWMxRXlPVGx1VkdsSlUzRTJVVFpvYlVOMmIxVTBaRzlKTldZMFMyRXhXbnBxTmpFMENsRTNWazFoTmtWR2NHVkNjMlJUV0dGUFQzTkxXblZCTVdKcGQxZFpURVkxZVRsM2IwZEJiekJYTW5aTmFYRllOR0pQS3pSVlFXZzRabGxqTWt4aldIZ0tiR1JuYmpoWldGWmhaa2QzU2k4clJHNXNWa3R0UlZkMlpqUnNjMVJYUXpZNE1WWXlhM0Z1YlU5Qk5YYzFTMHhCYmt4b01scG1WbFZMYTJKc1V6azRVUXBUYjFOVFRraE5iV0UzTTJoSmFEQmhjV2hzT1VWYWFua3JSVGQ1YVUxV1ltdzJNbUYxT0RWdk0wMUdNSEJ3WjNOc1JIaEJNSFJSTkU1T2VtRmhLelZUQ21sdVVFNWpRMDlzZFRKV2MyaGxiVEpuUjBRcldWWlZkMVp6ZDFWaU5ta3pXbXMyYmpCdWQzVnFWbUpuVVcxcGJYRlBURk15UjJaNmNHSm5jbTFRVmprS2RGSk9VWEZDVDNKeWQyaEJjVWQzTlM5NWNHbFBTQ3R3S3pkemIwSkxlVGRDYUhGQ1ZtZEpZekIzUzBOQlVVVkJhbTR6TVRBMlZGcDBibUZRV2taNGRBb3JPVmhTVVZSS2NtWXhOalp0YkdKMlNXRnpZblJaUTNoSVdUYzFRVnBZYjJ0SmRrWXpTQ3R3YkRCVVUwbGlibGx2YUd0TWRVd3dkbGxCTVd0bk56TjFDaTl0UVhaMVdVMU1PSFZaUlV0WFQwZHRSbTVyYW1WeVdqUXpibmREWWt4R2JHVTJabHBJYjI5RGFsWXlVVXM1VjBObk0wSjJlamhKVlVOaGVXOVRTRmNLVUdKM1lVdEZPRVJwZW5aalVsTnhZemhWUVdGdVRGbG1ZVUp0YzNGdFduTTNSbWw2WWtkSVdFdFRTMDlVY1N0SVRFNXBNMWxTTDBvM1dtTjFNWE5RYXdwRUwycERkSEU0ZVhKdmRWRndWMHhFYUhoMU5UZzVkRlZ0UTJKRFlXTkxjbXRMZUdsUE5UZFBlVTQyYlN0RFIwTTNkVXRXU2pGTmVtSjFUWGxzU0c1YUNpdEtObUpZUm1GTWFGUnhja2hTT0dsM2JucFhaV2hHYkdaWE1EUnBZalF3VGl0Wk5GcE5USGhGTkhORkt6VkNNVXhKWjJGQlMxUXdielZWVkc1SWN5c0tRbkp0TTA1M1MwTkJVVUpVWVVaYVVITmpWRGgwVTB0WlRXWmxTMmhOVEROTk1EQnhVSFo0UmtwRGIyMUxSWGRNYTBGbU5sQk1iMVZYVlZwT2JYazBVd292TjBaR1kxTjJhRVJwT0VnMmNIRnVWelZPYm1ob1ZURnZlR1pqWjNkdGNXczFVVkpwVDIxNVlUaFpVRXRaYlU5S2RXWnBibEpDY25WMFdHeHNTbFpaQ2s1bmNqRmxkbXcwVlhOSllqQnFPRzB5UWxwNFdGSm1ZMHBZVDJjeWIyTkRla0U0VVRKdE1rTllLM1YzZDFaSWVtRm5iVFpLWW1wVE5tWjVUakp0Y204S1UyWlRhRGd3UVRCdEswTkxUUzl3T0cxUlZtcHJhRUpSWmtKR2MzaHFWSElyVVRNM1RrUTVRVXBhUzJGclZESnZLM1kzV0ZkVFFVeHZVMklyWkdSQ1FncFhabTB4ZUZSb1J6TXZhbmRuVW5WVE0zUXJaMDlNVVRaRlFVb3lTM0Z3WnpaclZqbGhjVGwxU1dsU2NsZHVURzFuZGpSUFZEWkVSell4Y2k5TVQwdHFDa2d5YjBGQlRUTlBTbVpUWkhWNGNGcFFja1JHVW5sb2NHVTRTazVJU1VGd1FXOUpRa0ZDTTBZNVdVc3hOelJwUkdsT1praGFUWHBpY1hKQmRIcENWRzhLZVdZMVVIZGhRV0pIWkZKM1NXcFFSMXBzWkVsQmRVcFdjRFIyWVVsUWVsSjRWbTEyY213dlpUbE1VR0ZwYTJKU1pISkRjV1oxYTFSYWEyeGlSMVprY0Fwa1YweEVNbWxLWW1OdWQwTkVWRk5RVW1KUlNqQXhSa0o2Y3pKcVVYUTViMWhqVkU0elVYSjVkV05tWWl0YVVrc3ZWV2RtU2pCT04zZDNXRUpMU0Rod0Nqa3dObmxLVjJwVVN6RXdaakF4WWtaeWRURldSMmx5WjFSdFVHNVZWR3RQZWpsdE5HOHhiVzloZVZwb2NpdFFZa1J4UzBOcVdrRnJja1JQYUd0NWExY0thRmRFTmt0M1JrVjViME5uVTJwemIzVlZRelpFTlRkWGRVSXZSbVl3ZEZjMVMxQkhielUzUW01WVpVSllRMlU0T1ZsSWN6azBUWGhKWkVad1pVdHRNUXBuZEM5dmFYVXJVV2czZEdKeFZqSmxMMFo0SzFCU1ZITm1hbkoxVm1ORk5qUldVa2xVY1hsTE4wMDRkbTlwVTNKRWJHdHRXVnBOVUd4UlRUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogYzlzN3UwZncwc2xiNHFpdG5ocXUwa2R4d2ZhNzdsY3M4bHlpb3ZxNHptdG9rNGs2czU2aXo5ZWZhaHZkeGZ6ZjRhdG92cjI2aDBrZzh2Yno1dG9raGl4Y3VsbWg5amYxY2p3eGJzOGRzdjRqNnkxY3c1Zm9mcjE1dnRjbXQ5cGcK\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVV4RWVGWldUbGwyYWtKVEwwRnZiVFZ2UzA1bk0yZDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJUQk5ha1Y1VFhwQk1GZG9aMUJOYWtFeFRYcEJNazFVVVhsTlZFMTZUVVJTWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNtOUpUR1Y2ZEd4c2R6RnlTVWRrU0RKdmQxTnZOR1JoUjA5a1pXbE9lVXRNUVRCbldVY3hjSGhMTnpkcWJGWTJWSHBaUzBsT1QyVkxaM040WkdWbFRFd0tlVU5uUjFwMFJTdFpLemx4UWtacEsydG1WVWRUTUVVeVRXbzJkMVphTWpGRFRUUjFObFJMTlRSUmFXOWhPSFJsUWpCQ1VXUnVjRVU1Y2xwUU9UWldjd3AwZG1aR1ZHOWhaak5FZDBZclFVb3pRblEwV1RkVE5tZFphR1E0TjFOMVZYWjBlUzl1WkU5cVVHZzRhbWxQTUVjekt6bEtSWEp2WWxGamVGaHJiMnR1Q20wclZXbHRlamxOYzJnME1sSnZWbVUxYmpkNlNXVXJjRmRXY1dKWWNqQjVTVzVLYld4Q2RITnFOVzVvZDBSSmVWbFdla1JLY0UxS1VqVklVbmhUUzBRS1JWYzJMMlZtWjNWSWVXdDRURkUyUzJka1ZGZHZiVzlsUTJoTFFWSklXRlFyY0ZOUE5ucGlMMGR4UzJSVWNYcEpiMGg1V2s5SmVYSk1OMjgyVVVneVN3cG9WbEZQYjAxRGR6WllXaTlRVDFsTGFURk5lRlozY1ZsUVJsbEVaR1ZYWkZwSU0yWk9ZVlZzVm1OUFdrazJhV1EyWm5wNlRHTjBNbVJhV2pCb09WVnBDamhRTlZoWmIxcEtWV0ZQY1doTFRIVk1jMlZGZURCa1JURmpRa3hvTlhodE5WaEJObXMwWXpGMk9WRkZlRUZYVjJSaVFUUkdibkpYY3pSdVl6bDFUakFLZUVKaGF6UlRSekJKUzJsTU5USkhjMnMwTmxjNFdXRTBjM05KS3pGTk5UUlhXbGxCYnpnNGVFcFdibGx5Y25wR2JFODVjM2t2T1ZnMWIwVkliMHgyT1FwVlRUaGhSM1ZwT0hSRE1tRkVTWGRhVVV4WFJuYzFTWGhaWkZaWU0ycE5RWE5YZFdwWUswRklaR3BsVDFCVmVtUlBPRFJCVVVKWk1YVnZZa3ROYkVSVUNraDFlbkpxV0dsWVZGQmtVbEZZY1dKVlV5dFhhM1o2YjFwT1dUUm5jVGwzVlZJdlkydHhSakowY1RWUmRsUkdNME41WjBab2VqWnRkeTl6TkZSRGNFa0tORlJIUzNCWFpXOUtTUzlMVW14eFJGcElhRkF3VlcweFprVmpkV0Z6VkhGaVpWaHplR2RGZWxOalJVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1NUWndlVFpYUkc1VE5rRXZlVzR2Q214bGVrMWllaXRtTmtNMFMwMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFVbDJlVGM0UVV4MlZFaHViVmMzV1c0eE55czBVbVpITlRZS2VUWTRNbFl3Ykd4U01taHVaMjUyYmtOTk16UmlLekJTUTNwWVkxSXpjM0F3YnpoM1QwcDVVVFpoVkROVmVtWXJNRWc1Tm05elJGSmpUall6VFRRMlZ3cDRSSEpEZDJKNk5HTllWWFExVFU5WVQyOTBORTk1U0dWRlRFeExWM1JoWldablowRjFibGt6ZEd3M1F6RkdWRzFsYzJ0TFVURlBTRTVETmpKelFsbDNDbTlqYVU1cVRTOVZlWEIyZDBaSmVrUTBWRkJQTkU5c2JqRlFOR1p6ZG1kME5GYzRiVVZTWlVoeVdGUlBSWEl4V0ZoWGJqVjBhMlZMTkdwRGQxcEdWa0lLUm5oNFVqUlBTM1UwUlZOcWIyVnNWRGcwTVZjNFJGaEdZakJEVVc0d2RFVmplRmRhZFZsMFdsVkZMMk13Wm1abVVtTXZjVWQ2Um14WGNFdG5aMGxEVmdwdGNFRlNVWFpvV1ZBMmVYRnhlak12UW04MEsxWmxLemx1Ym05TGFEWTNaVlppSzNoVlMyWTRWemN4VFVRMVVtWlpkMmhNZGk4NU1WZE5ZVkF6WTFwdUNuTmtaekY2YWtaYVRDdHlTSFpUVUZOUk1UQmFaSE1yYlVvNEswbHVTVFk0UlV4c1EzWlllRmRvUmpNMU9XTlVlbVZJYzJGUmRsbGtjM1J1VjJwbGRtNEtORkZsV25ONmJIZEdXQ3QyVGpRNVpuZ3ljRmgyV0hkeGRtcHRRWGhoTjBGTlZ6aHZSMUJQZEhkV1JESmlhMWxQWTNWbFZtbHJWM0Y1UmxkMVJYRjFUd293Ukc1T1EzcFZUMEZ2YjNBelpqQnVZazlPU0ZGUWJqZFBUM0J1YUZwak55OUxkamhYTW5sMlNqUjRRMjh4ZUhWUVdUTmhVVkJvTkc5MGMwVk9OV1J0Q25sd2JuTXJjR2xTY0ZkM2FWWkpXVlpwUldOWFJVcEZkV1ZUWWpocVVIZG5Lekl5YW5KcFRqSXdTWEYxU2xweGNFOTNOWGswVkhaU09IaFRNR1oyTVVRS2NqQm9NR1JRWVVoUVJuVk9XbXBTY1RWWFpVNVhUbTFPYUZCcVFsUkViVmRTZEc1aVJtWjZUSEF6UVd4dlQwOWpiR2xrYVc5QlVrcHljVlpXUW5KUFFRb3plVFZNTmsxVlpIaElZVEEzYlZKUWFuYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzdGVzdC1jbGl0ZXN0eXpyamR2ZHZyLThlY2FkZi1nOHZzbmttYS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHd3YTJrMwpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHd3YTJrMwogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdHl6cmpkdmR2cmVfY2xpYWtzdGVzdHd3YTJrMwogIG5hbWU6IGNsaWFrc3Rlc3R3d2EyazMKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0d3dhMmszCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdHl6cmpkdmR2cmVfY2xpYWtzdGVzdHd3YTJrMwogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVODNaMlJrYkhwdWRXdE1jV0psTnpKWFZteGFiRUYzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFSVEJOYWtWNVRYcEJNRmRvWTA1TmFsVjNUbXBGTUUxcVJYcE5la0V3VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJiakpsV205eFR5dHNTREFyTm01WlIxcE5SVFlLYVdKMllVTnVlakYxVVV4NVVGQnZlRW8xZDJORFpWaEhhVzVUYjI5RmFHTjFiMUZ0WVZJM1puRnBjMUYzVWsxcVFUVnVlbVpyUTNOSlVXRnJVVWh3TWdwdk5YZGtha280YWtKQlNrczRORmcxTlVsR1JEUnFkMUJXV1dNNVVHcG1kRFJ1ZERaSGRFaGplakJ5VUZWalZsY3hXRXRRTkc1eFJWcEJMM0k1Vm1KcENpdEpWMVZEVW5GUWJXc3hSMWxUV0VsdVZHb3hhazVvVUVscFNtaEVUa1pwV21WVmF6VlRRMlpXWmxOR1MySXdZMUF2UmtoUWFHazNSamxTUTBrMVdFa0tPVkJCTlRkVFpsRm5WMHQxYkhsb2FFUlRXV2xMYlcxYVZITjVUbGtyTXpFMU1uRlRTRTR3UkM5dFJ6TjFhbFJOY0dKa1JrdEJZMlp3VTFreVdGSjBTd3BKVGxwS2NYTnhiSEpKWVdVMVVuTTBjQ3RYT1c1dk1pODBXWEJwTkdGNFVUWTFjMWRyU0VsR1RXRllWV1ZQVWtkcmJHUTBXblp4UzFsMmJUbEpjRzVHQ2pkTVVGZExNblV2TjJoMFNFbzVRbVpQUW1SYU5rSlRWbGxZUkVsaGJEUnhiSEF3ZG14MVUyMVdUMjlTVm1wVVpGRnpOaTl1WTNkaGFrTjFNa1l4VGtRS1lUaHFOMlV2VW1ocFNqVjVlRTlTWWtkRmNVTk1ja0pHVTJOM2JYcHFORkJ5Y1d0WGEwVnpUM0J0VTNaQlJtNWtXVUZVUzJOU1JGVTFhbXRFYzBsaVlRcGtjbkozVlU4M1kwRk1UM1ExWlc1bFNuWm1RV0pWZUdrM00wa3dOMWROUTNsRVUwd3JlR3BQVFVodlJVRkRZazl3VDIxRkwxWkNZMlZYZVU5VE1GVmlDazV3Y214clJqWldXVVZDU2t0UFYwaHVZMFpXYUROS00zVktiak4yTlZRMFoxVjZVWEp5T1ZBd1UycGpkbWxaWW5SbWVVMVpTMHh2VVhWS1ptOURNRmNLUlhkdmFXSnZPVlpTUTNodmVuQXZRWFpLWkV0bE5rTjVaRk5VVVhkTmN6TlZja0paVjNkVU1rUkZLeTkwYVU5c2RrcEpjMjVITm1jelZuQkJPVmhVZFFwVmVWZDNVbmRJWjI1RFpISXlZVzVaWkZoMFRWQkRUVU5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZhbkZ1VEhCWlQyUUtURzlFTDB0bUsxWTNUWGgyVURVdmIweG5iM2RFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJTakI2YlUxb1ExcEVURmR0Y0ZFNVExVlllQXBJTm5KaU4xTk9UVWc0ZDNnMWRWSlFWVXAxVkVveE9YUlNSekZHUnpoaVZEbEpkaTgzTkZjMVJURlVWRkUwYldvdlFYcElUemszYjFGa0wxaHFSeXRKQ2xWV1NuSlNaVmMxY1dGdloyeE1VVUpxYzBFd1QzRk9XVE40UTAxeVRrRmFhbWhRWm5KQmVVNXpVa05XZVVoc1RYVkNSWGhKVjJwbmVWVXdiV0U0UTNFS0wzUjRNVWhYZVZJM1EwRmtXWHBoT1RoRVptUTNWVzFGUjNKdE9XdzRLMHhPV0ZWRVRXdEtkbEI1UW1zcmQwaE9RVWhSVDFveGJWRklVbGR3ZEU5a1p3cElVRTloYkVGallXTm9NRTVJZUhCV2MxUjNUbHA1TW5NNUwxZzRRWEJTTTFWMlFuWjZLM0JFZEhaVU1FTkphbFZOTkRCeVpGZHdWWFZwVld4WlUwdFFDazhyZDJOMWVuaERORXhGUlZkVk1XYzRZV2d5TUZSMmQydGlPRFl5SzNaT2FGQjRiMFpXUVRSQ2JrTndRMmM0U0VkWGRIRXhWVXROYVV0SFNYUlhjRWdLWlROM1kwdFNUR3RDWnpSMU1sY3daV3RzWkVkS2F6azBiWFJ3VDJkUE9ISTFSVlU1Tm5KMlNGZEZTMkZ2ZUVKTk5FMWxXV2h3TWxoSE1Vd3pVR1ExY1FwUU5tUjRkRXBEZGpCS1VHMUxNemRzU0N0U1QwTk1TVFUxV0U1V1QycE9iSGh4YldVeWFsUXlTbWxWUldoaGNpOW1NRVJITVhwMFMyMHpUVEpZYjJjckNuWXdabXh1TjNOTlNuSndjM0Z1Wms1dlVsQkxUVVV4VmxGdGNYaHpaM3BETkhkVWIzVlphR0ZDT1VGblJreDFWM1pTUzA1a01WaHFMME0yZEZKek5FMEtlRzR3U0VwUE56RXlkWHBQTkVFMlZubGhZMU5uV0VWamJIcGtTMVJEUlVwSWIydDZVek5GZFd0UFpHcFZabkF3TkhkcVdGWlFURFJuVmtGbWFVOUZWZ3BQYWtWU2FrY3haM2gzY21jdk5ESkxRVlpCZEhSd2FEUklZVk5EY20xU2MxSTRVRWROUVhsblVIVkpia2d5V21jeGJtb3pZbmx4Tm1SNFkwZFFNRW8yQ2tOV2FYbHBSVTFsVnpCdFRrTlhjbXRRTjFseWJYWlZUQW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJiakpsV205eFR5dHNTREFyTm01WlIxcE5SVFpwWW5aaFEyNTZNWFZSVEhsUVVHOTRTalYzWTBObFdFZHBibE52Q205RmFHTjFiMUZ0WVZJM1puRnBjMUYzVWsxcVFUVnVlbVpyUTNOSlVXRnJVVWh3TW04MWQyUnFTamhxUWtGS1N6ZzBXRFUxU1VaRU5HcDNVRlpaWXprS1VHcG1kRFJ1ZERaSGRFaGplakJ5VUZWalZsY3hXRXRRTkc1eFJWcEJMM0k1Vm1KcEswbFhWVU5TY1ZCdGF6RkhXVk5ZU1c1VWFqRnFUbWhRU1dsS2FBcEVUa1pwV21WVmF6VlRRMlpXWmxOR1MySXdZMUF2UmtoUWFHazNSamxTUTBrMVdFazVVRUUxTjFObVVXZFhTM1ZzZVdob1JGTlphVXR0YlZwVWMzbE9DbGtyTXpFMU1uRlRTRTR3UkM5dFJ6TjFhbFJOY0dKa1JrdEJZMlp3VTFreVdGSjBTMGxPV2tweGMzRnNja2xoWlRWU2N6UndLMWM1Ym04eUx6UlpjR2tLTkdGNFVUWTFjMWRyU0VsR1RXRllWV1ZQVWtkcmJHUTBXblp4UzFsMmJUbEpjRzVHTjB4UVYwc3lkUzgzYUhSSVNqbENaazlDWkZvMlFsTldXVmhFU1FwaGJEUnhiSEF3ZG14MVUyMVdUMjlTVm1wVVpGRnpOaTl1WTNkaGFrTjFNa1l4VGtSaE9HbzNaUzlTYUdsS05YbDRUMUppUjBWeFEweHlRa1pUWTNkdENucHFORkJ5Y1d0WGEwVnpUM0J0VTNaQlJtNWtXVUZVUzJOU1JGVTFhbXRFYzBsaVlXUnljbmRWVHpkalFVeFBkRFZsYm1WS2RtWkJZbFY0YVRjelNUQUtOMWROUTNsRVUwd3JlR3BQVFVodlJVRkRZazl3VDIxRkwxWkNZMlZYZVU5VE1GVmlUbkJ5Ykd0R05sWlpSVUpLUzA5WFNHNWpSbFpvTTBvemRVcHVNd3AyTlZRMFoxVjZVWEp5T1ZBd1UycGpkbWxaWW5SbWVVMVpTMHh2VVhWS1ptOURNRmRGZDI5cFltODVWbEpEZUc5NmNDOUJka3BrUzJVMlEzbGtVMVJSQ25kTmN6TlZja0paVjNkVU1rUkZLeTkwYVU5c2RrcEpjMjVITm1jelZuQkJPVmhVZFZWNVYzZFNkMGhuYmtOa2NqSmhibGxrV0hSTlVFTk5RMEYzUlVFS1FWRkxRMEZuUVZOa1oyTm1RazlQTDJkeWJsVnZXa3RtTDBwcWR6bHhZVXczUjJwM05HeDRNMjR5YjNRNGFrSXhTRkF4Wm1JMU9WQTBUa2ROWTBZeVlRcGpkemR2VVVaRFUyRTRjakJWWkVsWVdIaHZVVkZTY1c5MFVWbHJZMHRKYW1SU1MzcEdhV3ByUW5wSmJuVnhha2d2VEdsNE5sSlhOSEpRVjBvNE1EZDVDalpFWTNkamNrOU1MM1JVVG5BMVZIVllPRFJTV1VvMmRFeFZSR2RGTW1oUWJscHVaaTkxT0ZaMFZFTkZkRTlKVEZNNGJuVmFRbXBzVTFOTGFVNXRWMDRLWlRkbE5GWnlaRTVZUXpreldVWlJiRFYxZEZWSFUzTklkMEZOYTBOMVdrdG9kaTl2TTBOeWIwdHhPRU4yVGxoalNEVnhNM1UwZW5Oak9WTXdNVzE2VWdwc2RUaDBaVTVsTUZsM1ZVbGtRemcwVFZselEzSXlhRUZhUkdGNmEzUXlOVkF2Y25JdmFrNU5lVlpvU1dGYU1FdFVaRkphU2twUVRFZDNMMDFIV1hkR0NtTnZPRlJpZFdOeGExSldlbEZXYjJGWmR6SXZOVXhvTkRFeVNrdHNjalo2YTFoM1pITkZZa2x3YVhwRVVqWjBVVkJ0TUdwdmRYb3ZibWhCUkZkWk9ERUthRnBUV1RWUmIzTnVaSG8wVW1NckswdFlkMDlSVHpoelpYUk1jVzAxTTJweVpVWm9iMUF6VkVOdFpIbGtaRTFIU25wT1oya3lTM0ExV1dvMVNETkZNZ28wU25keVNXOTJXRkp5VFd4Q2FuWjFiMEoyTW5GTWVrTXlVVTFXYzA0M2RsRmtTMGRNYjJOTlVtVTFaRmszTVhsWlVsZFVWSE5yV2poVU5HZzFTbVp5Q2t0TGFVVkNZVVJ6VEVob1pXYzJXRzkyZEhGakswaE1Ra1V5TUhwelREUjRkVzl1V0VWM1VqVjBRekpPVldGTU5tSXJWVTh6VWtsVk1WTk5RMXBFV2xVS2FIbHJPVTl2VEN0c0swbFNWbXBxUlZFMFMyRlBZMDFHYTNnMllrZDZjMjFMVFdKR1VVaHNWaXRWVG1KRVJqTmpla2w2VXpObksyTlRNV3gyUm05VlRRcHZPVEZ6WmpSRk0yWkVRa1JEZUhvd1pERXdRV2hHZURsNFpqZFpMMHBEVjJ4cVpsVjZaVGg1UzBzcmNrbGFiREk0VVV0RFFWRkZRVEJhU0VVd1prMVFDbUpJYjNFNVluRjJTSFlyYkVsWVptWnFhVmhvWWtSS2JGaDBVeTlzYWt0cVJIazBSMFF4YVhOd1VtUmxVRWRKVkZWMkswdElkR3BRZVRsbWQxcFdPWFlLU1hGYVlYQTRSVWxOYVZCRU5rZDFiVlZMY2tGMWVrdFlTRTVZVlc5RE5uTnVNV1l4WmxoMFlXbFNWRk42U1ZWTmJsbEdNVnAwYjJ4ck56TjNPVXRoVndvNFR5OURWRU0wUjAxR1ZpdG9Oa2xPV1RkSmVUaHJNMHgxZVdsamFWWmxRelZLUVhKcU5XSjVPRTkyTjFwR1V6WllSMkZMTkZOWFpHeHhVREZWV1dJMUNrOXVlV3R2ZFRjNWIxWXZWMkpvWWk5cFpVeGpNME5yWm5WSFIwOUtWWGhIYUhBelRqaFVTQ3MwUm5WTmRUTXZRbUZMV2swMGJGZHpMMlJ5T0dwT1kxUUtTa3M0YnpoRU9ERldla3ROYVVob2QzVlpkRmQ2UW14MGVUbFNZMEk1UjBSMWVtUlpLMnN2VHpsSmVWbHdVMjVUUms5eVNWWTJPV1JVV2pSWVlsTlRjd3BGTUhCdGRrdEpVVm80UkVwTWQwdERRVkZGUVhkeWFXVmpkbE5vVTBwYVVUaE9jMmRXUm1kaVJqRjRUekJYYkhsd1oxcDVSbHBsUlVkMWEyWktaREZCQ2pWdFVsZFpOblE0ZEVOUVptRnNPVnBhWkVSRFQwSlNhMGR3ZGxveUswRXZSRzVJVlZOUldGbDFia1Z1T0ZWeGFHZFhjblZ3TmtWT1IwSTNTbU52YlVJS2IyNHlUbTltTkhOV1NYbGhXVVkxUzFRek5VNXdXbU50TUUxM1kzZGlRamhYTUc1cGVVVlJNVlExVkRCb2VIYzRaa2hGYmxOUVdGUjVRa2t5U0V3eFpBcHFTblpGZFZReU5XYzRUbHA0YVc0cldVdFZSVWt2WTAxelVUaHZWVE5WVWxjNGFHMDRkRWxxYlU4clFrVmhjM1VyV2sxR00xVk9NVXBKVEdwT2NWUnNDbU0wTjNoMVNIaE1lRUpzVWpVclozQjFPREl2V0dWVVIzRTRaSGs1YUd4aGJHVlZWbkZYTlU5eGRWRndPVzU1VmtGSWJXWkJha1YyTTFWNkt6TnRhSE1LV0VGRmNFVlJkR0ZrVnpWd00yZGhVMlpIWnpKQ1FVRkJVa013V1hOb01rbG9Sa3RJTVRKMVdGUlJTME5CVVVGcE1uVXJNVk0wZGtKTGQwTkRTbWsyUXdwS1ZuRTViV3RhWjFOblUxbEVhbTB4T0VGU09WbHhZV3RITmprclZtVXhRU3RCV1VGWVVDdENlVzFoWVdkemVuTjRiRzFDVVhOSmJFeFRNMlYzVFdkM0NreHhjV2wxVjFSTUwyUndXVk5ETTBJMlpqWllUbUYzV1ZKSVZHTkVaWGRqTmtreU1qTnNiMlY1UXpGVGEyVXlNa05PTVU5ck0xb3ZWa05GYjNOdE4zUUtSWGR6WTFjclQwZE9WbXR5TWpaNVN6QkdTbGwwVjJ4aWQyMDJPRlIzY2xFM2VUWTRibE55ZUhVd2VGWTNaaXR5TUd4Rk1qUm9RVXB1YW14NmNpOVJXQXBLZFRGMlIyWjNaVmgwUlVVdlVVZzViRXAzYW5Jckx6WTJOM2RaTlZsMlUyNVBaRzVPTDFKbVFqSnROa3Q1TWl0bGRrZFBTM2xrVURkeFNVMWplbUpZQ2pka2VGcDRhelZhVkdOa09UUnhlbFZRWkcxbmJ6QlJXbTE2WWpsVGRFUk5PRFpXWm5OMmFuZzJZWEYzYVhOWmJEVnhiRmQ1WTJGck0zSmlMMjlMVkVJS00wNXhXa0Z2U1VKQlJrNXpiMWxaUTNoUE4wTmFPVGh3U1c5eVFWUkxjMUJuZWpBMEwydFBabFV4Vm04eWRFcHJkV3hIVVc0elQxWXpWMVpMV0ZZd1dRcFhWMjVNWmtKUGFFRjJWR1l4TlhWSE1XbHVZbmN5WnlzMFNVdEJiazFCVlVwMFlUYzRUVWgyZGtaMldrcHFSVVpVTmpGbmRVVmxWRzU0UTJWUmQxQmxDbFZYTW10UFFsbHBkVTFYVUVseVVXMUlkRkJyT1hkS2RHWXhibkI2ZVZaUVdHZDRZM3B3Vmt0TVZtbFhObUZ6TkVWcVRIZzVjR2c1VkVOV1NrTnhaMjRLUlRsc1VYVkpiRlJoV21relExcHlOazFZTjBGRmVsaE9aMFF6WTFKcFFVcDZURko2VFU5alFWWkhlbVJ5T1hnMmNucHZSVWc0U1Vsd1ozTjVVbGwxTkFwb1ZucHJTRXN3TTJ0NGREVkljREJQUlVoVVltMHZTRWxsYVZacEszaFdRVTQzU2tFMFpESlpVR05ZUlhGUmMxcEtPRVJHTkVaaWVYTkdUamRHT0VKckNrVTNkSEFyVjNsUVoxVlVjR042VUVOV2JXaEtUM1Z1YlV0bmFtcE5ZV3REWjJkRlFrRkpaSEJrTTFWUUx6a3hSWHBXTUVoa1kyRTBabHBTVFVoQ2FtMEtZMEU0ZFUxNGVuTk9NRVpWV25WSmRubDVOMloyY1dwM1RWRTVWR0ZNTUVScVdrY3dkSGRwSzNsa1lWWkJPVEI0TkRoNkx6azFkelJSV0ZreGRVUXZZZ28wWkdkVE9FaHJOVVpGTlRoRU1pOVJVVTRyZGs5TE1YUkNRVzl5TVVaQ1RsZHFRa1JDUzFSbU9DdDViRXROTm1nM1FWb3ZOU3M1VTFWVGRFbGFlVlYyQ2pOV1QwSlVSM2R2SzJaM2RFWTRNRTUwZUZsclQwZHNRblZLV1VaMWJ6aDRkbGhTWTNsUFprcGpNRWxFZUhCM2FEWk1MMVoyVUhSeFZ6UlBWbFJwVjNVS2F6bDJiRWxuTHpOVFZIZE5SMmRVZEM5UVdVaEpibWQ2V1RWbGRHMWhRMDFMZFRCRVluWjFOWEJZVjA5SU1XMVNhakptV2tGNFprOW5iSFZ6U2s4eE1RcFFjQzgyUWxWek9GaHljMlZXV214MEswZFJkMVpzT1V0WlJYQnNjbk0wVm01dk0xTXdTSGsyUnpWNlNVOUtSM28xTkdOVlYwUlNia1ZKZHowS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiA1eWwwOXN4MGNnaXVzcHAyNHlnOXNvcTMzOHZrcDMzeHYzbnV5emllbHJ1azJqYzcweTFsMHVkc2s4NXF0bGczdzBvbWd6NHd5em8ydDF5Nmwwajh5eXk4ZzZmb3FmZGhtcTliZGxjYzg5MzV6MmRtYnB6bWZ3NHlvMHhpanpxNgo=\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13096' + - '13108' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:43 GMT + - Wed, 14 Jun 2023 22:40:42 GMT expires: - '-1' pragma: @@ -967,62 +987,66 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestkaldhfv2q-79a739\",\n - \ \"fqdn\": \"cliakstest-clitestkaldhfv2q-79a739-zu88fp23.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestkaldhfv2q-79a739-zu88fp23.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"tag1\": - \"tv1\",\n \"tag2\": \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": - \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/14e1d053-2ca5-4943-bd6e-321c54ec49a8\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestyzrjdvdvr-8ecadf\"\ + ,\n \"fqdn\": \"cliakstest-clitestyzrjdvdvr-8ecadf-g8vsnkma.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestyzrjdvdvr-8ecadf-g8vsnkma.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\ + \n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/82b5e98b-d5be-4189-b5d4-48b4de8220a4\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"defender\": {\n \"logAnalyticsWorkspaceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n }\n\ + \ },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"\ + oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n\ + \ }\n }" headers: cache-control: - no-cache content-length: - - '3552' + - '4212' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:44 GMT + - Wed, 14 Jun 2023 22:40:43 GMT expires: - '-1' pragma: @@ -1041,27 +1065,28 @@ interactions: code: 200 message: OK - request: - body: '{"tags": {"key1": "value1"}, "location": "westus2", "sku": {"name": "Basic", - "tier": "Free"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestkaldhfv2q-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + body: '{"tags": {"key1": "value1"}, "location": "westus2", "sku": {"name": "Base", + "tier": "Free"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestyzrjdvdvr-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "tags": {"tag1": "tv1", "tag2": "tv2"}, "nodeLabels": {"label1": "value1", "label2": "value2"}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, - "nodeResourceGroup": "MC_clitest000001_cliakstest000003_westus2", "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", - "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/14e1d053-2ca5-4943-bd6e-321c54ec49a8"}]}, + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": + "MC_clitest000001_cliakstest000003_westus2", "enableRBAC": true, "supportPlan": + "KubernetesOfficial", "networkProfile": {"networkPlugin": "kubenet", "podCidr": + "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": + {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/82b5e98b-d5be-4189-b5d4-48b4de8220a4"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": - ["IPv4"]}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": - {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + ["IPv4"]}, "disableLocalAccounts": false, "securityProfile": {"defender": {"logAnalyticsWorkspaceResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2", + "securityMonitoring": {"enabled": true}}}, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": {"enabled": true}}, "workloadAutoScalerProfile": {}}}' headers: Accept: @@ -1073,70 +1098,74 @@ interactions: Connection: - keep-alive Content-Length: - - '2243' + - '2865' Content-Type: - application/json ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestkaldhfv2q-79a739\",\n - \ \"fqdn\": \"cliakstest-clitestkaldhfv2q-79a739-zu88fp23.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestkaldhfv2q-79a739-zu88fp23.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"tag1\": - \"tv1\",\n \"tag2\": \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": - \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/14e1d053-2ca5-4943-bd6e-321c54ec49a8\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestyzrjdvdvr-8ecadf\"\ + ,\n \"fqdn\": \"cliakstest-clitestyzrjdvdvr-8ecadf-g8vsnkma.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestyzrjdvdvr-8ecadf-g8vsnkma.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\ + \n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/82b5e98b-d5be-4189-b5d4-48b4de8220a4\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"defender\": {\n \"logAnalyticsWorkspaceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n }\n\ + \ },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"\ + oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n\ + \ }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a021aab9-c83c-4733-a0f9-e7ae8bdc3f5c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea3a09e2-c708-45b6-91b5-afcf5cbb014a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3550' + - '4210' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:48 GMT + - Wed, 14 Jun 2023 22:40:50 GMT expires: - '-1' pragma: @@ -1152,7 +1181,103 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea3a09e2-c708-45b6-91b5-afcf5cbb014a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e2093aea-08c7-b645-91b5-afcf5cbb014a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:40:50.2300949Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 22:40:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea3a09e2-c708-45b6-91b5-afcf5cbb014a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e2093aea-08c7-b645-91b5-afcf5cbb014a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:40:50.2300949Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 22:41:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -1170,14 +1295,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a021aab9-c83c-4733-a0f9-e7ae8bdc3f5c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea3a09e2-c708-45b6-91b5-afcf5cbb014a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9aa21a0-3cc8-3347-a0f9-e7ae8bdc3f5c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:20:48.2619756Z\"\n }" + string: "{\n \"name\": \"e2093aea-08c7-b645-91b5-afcf5cbb014a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:40:50.2300949Z\"\n }" headers: cache-control: - no-cache @@ -1186,7 +1311,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:21:17 GMT + - Wed, 14 Jun 2023 22:41:51 GMT expires: - '-1' pragma: @@ -1218,14 +1343,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a021aab9-c83c-4733-a0f9-e7ae8bdc3f5c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea3a09e2-c708-45b6-91b5-afcf5cbb014a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9aa21a0-3cc8-3347-a0f9-e7ae8bdc3f5c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:20:48.2619756Z\"\n }" + string: "{\n \"name\": \"e2093aea-08c7-b645-91b5-afcf5cbb014a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:40:50.2300949Z\"\n }" headers: cache-control: - no-cache @@ -1234,7 +1359,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:21:47 GMT + - Wed, 14 Jun 2023 22:42:21 GMT expires: - '-1' pragma: @@ -1266,14 +1391,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a021aab9-c83c-4733-a0f9-e7ae8bdc3f5c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea3a09e2-c708-45b6-91b5-afcf5cbb014a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9aa21a0-3cc8-3347-a0f9-e7ae8bdc3f5c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:20:48.2619756Z\"\n }" + string: "{\n \"name\": \"e2093aea-08c7-b645-91b5-afcf5cbb014a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:40:50.2300949Z\"\n }" headers: cache-control: - no-cache @@ -1282,7 +1407,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:18 GMT + - Wed, 14 Jun 2023 22:42:51 GMT expires: - '-1' pragma: @@ -1314,14 +1439,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a021aab9-c83c-4733-a0f9-e7ae8bdc3f5c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea3a09e2-c708-45b6-91b5-afcf5cbb014a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9aa21a0-3cc8-3347-a0f9-e7ae8bdc3f5c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:20:48.2619756Z\"\n }" + string: "{\n \"name\": \"e2093aea-08c7-b645-91b5-afcf5cbb014a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:40:50.2300949Z\"\n }" headers: cache-control: - no-cache @@ -1330,7 +1455,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:48 GMT + - Wed, 14 Jun 2023 22:43:21 GMT expires: - '-1' pragma: @@ -1362,14 +1487,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a021aab9-c83c-4733-a0f9-e7ae8bdc3f5c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea3a09e2-c708-45b6-91b5-afcf5cbb014a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9aa21a0-3cc8-3347-a0f9-e7ae8bdc3f5c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:20:48.2619756Z\"\n }" + string: "{\n \"name\": \"e2093aea-08c7-b645-91b5-afcf5cbb014a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:40:50.2300949Z\"\n }" headers: cache-control: - no-cache @@ -1378,7 +1503,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:23:18 GMT + - Wed, 14 Jun 2023 22:43:51 GMT expires: - '-1' pragma: @@ -1410,15 +1535,15 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a021aab9-c83c-4733-a0f9-e7ae8bdc3f5c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea3a09e2-c708-45b6-91b5-afcf5cbb014a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9aa21a0-3cc8-3347-a0f9-e7ae8bdc3f5c\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:20:48.2619756Z\",\n \"endTime\": - \"2023-03-15T10:23:34.0683367Z\"\n }" + string: "{\n \"name\": \"e2093aea-08c7-b645-91b5-afcf5cbb014a\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T22:40:50.2300949Z\",\n \"\ + endTime\": \"2023-06-14T22:44:08.6096677Z\"\n }" headers: cache-control: - no-cache @@ -1427,7 +1552,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:23:48 GMT + - Wed, 14 Jun 2023 22:44:21 GMT expires: - '-1' pragma: @@ -1459,62 +1584,66 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestkaldhfv2q-79a739\",\n - \ \"fqdn\": \"cliakstest-clitestkaldhfv2q-79a739-zu88fp23.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestkaldhfv2q-79a739-zu88fp23.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"tag1\": - \"tv1\",\n \"tag2\": \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": - \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/14e1d053-2ca5-4943-bd6e-321c54ec49a8\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestyzrjdvdvr-8ecadf\"\ + ,\n \"fqdn\": \"cliakstest-clitestyzrjdvdvr-8ecadf-g8vsnkma.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestyzrjdvdvr-8ecadf-g8vsnkma.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\ + \n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/82b5e98b-d5be-4189-b5d4-48b4de8220a4\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"defender\": {\n \"logAnalyticsWorkspaceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n }\n\ + \ },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"\ + oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n\ + \ }\n }" headers: cache-control: - no-cache content-length: - - '3552' + - '4212' content-type: - application/json date: - - Wed, 15 Mar 2023 10:23:48 GMT + - Wed, 14 Jun 2023 22:44:22 GMT expires: - '-1' pragma: @@ -1546,62 +1675,66 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\": - {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": \"cliakstest-clitestkaldhfv2q-79a739\",\n - \ \"fqdn\": \"cliakstest-clitestkaldhfv2q-79a739-zu88fp23.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestkaldhfv2q-79a739-zu88fp23.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"tag1\": - \"tv1\",\n \"tag2\": \"tv2\"\n },\n \"nodeLabels\": {\n \"label1\": - \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/14e1d053-2ca5-4943-bd6e-321c54ec49a8\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ + : {\n \"key1\": \"value1\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestyzrjdvdvr-8ecadf\"\ + ,\n \"fqdn\": \"cliakstest-clitestyzrjdvdvr-8ecadf-g8vsnkma.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestyzrjdvdvr-8ecadf-g8vsnkma.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"tag1\": \"tv1\",\n \"tag2\": \"tv2\"\ + \n },\n \"nodeLabels\": {\n \"label1\": \"value1\",\n \"\ + label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/82b5e98b-d5be-4189-b5d4-48b4de8220a4\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"defender\": {\n \"logAnalyticsWorkspaceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n }\n\ + \ },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"\ + oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n\ + \ }\n }" headers: cache-control: - no-cache content-length: - - '3552' + - '4212' content-type: - application/json date: - - Wed, 15 Mar 2023 10:23:49 GMT + - Wed, 14 Jun 2023 22:44:23 GMT expires: - '-1' pragma: @@ -1635,8 +1768,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: @@ -1644,17 +1777,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9dbc5a61-0f12-4e1d-859b-b159cbda8e11?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d95b8977-7c25-4c62-be7f-698955fef29c?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:23:50 GMT + - Wed, 14 Jun 2023 22:44:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/9dbc5a61-0f12-4e1d-859b-b159cbda8e11?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/d95b8977-7c25-4c62-be7f-698955fef29c?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_disable_rbac.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_disable_rbac.yaml index fd6cd9886d5..60533445137 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_disable_rbac.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_disable_rbac.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --disable-rbac User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:23:51 GMT + - Wed, 14 Jun 2023 22:44:29 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --disable-rbac User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:23:51Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_disable_rbac","date":"2023-06-14T22:44:28Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '358' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:23:51 GMT + - Wed, 14 Jun 2023 22:44:29 GMT expires: - '-1' pragma: @@ -88,19 +88,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestd6fg4ijvx-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest4c4irtwyo-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": false, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": false, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -111,67 +110,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1460' + - '1752' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value --disable-rbac User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestd6fg4ijvx-79a739\",\n \"fqdn\": \"cliakstest-clitestd6fg4ijvx-79a739-d6ljzbni.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestd6fg4ijvx-79a739-d6ljzbni.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": false,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest4c4irtwyo-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest4c4irtwyo-8ecadf-7k9n2d31.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest4c4irtwyo-8ecadf-7k9n2d31.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": false,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5f8de9e2-403f-4471-8cc5-050b720c1248?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2fbf732-cebf-4cce-9c4a-ed3bef951346?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3269' + - '3597' content-type: - application/json date: - - Wed, 15 Mar 2023 10:23:54 GMT + - Wed, 14 Jun 2023 22:44:35 GMT expires: - '-1' pragma: @@ -201,14 +202,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --disable-rbac User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5f8de9e2-403f-4471-8cc5-050b720c1248?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2fbf732-cebf-4cce-9c4a-ed3bef951346?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2e98d5f-3f40-7144-8cc5-050b720c1248\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:23:54.6225275Z\"\n }" + string: "{\n \"name\": \"32f7fbc2-bfce-ce4c-9c4a-ed3bef951346\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:44:35.4806163Z\"\n }" headers: cache-control: - no-cache @@ -217,7 +218,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:24:24 GMT + - Wed, 14 Jun 2023 22:44:35 GMT expires: - '-1' pragma: @@ -249,14 +250,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --disable-rbac User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5f8de9e2-403f-4471-8cc5-050b720c1248?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2fbf732-cebf-4cce-9c4a-ed3bef951346?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2e98d5f-3f40-7144-8cc5-050b720c1248\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:23:54.6225275Z\"\n }" + string: "{\n \"name\": \"32f7fbc2-bfce-ce4c-9c4a-ed3bef951346\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:44:35.4806163Z\"\n }" headers: cache-control: - no-cache @@ -265,7 +266,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:24:54 GMT + - Wed, 14 Jun 2023 22:45:05 GMT expires: - '-1' pragma: @@ -297,14 +298,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --disable-rbac User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5f8de9e2-403f-4471-8cc5-050b720c1248?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2fbf732-cebf-4cce-9c4a-ed3bef951346?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2e98d5f-3f40-7144-8cc5-050b720c1248\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:23:54.6225275Z\"\n }" + string: "{\n \"name\": \"32f7fbc2-bfce-ce4c-9c4a-ed3bef951346\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:44:35.4806163Z\"\n }" headers: cache-control: - no-cache @@ -313,7 +314,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:25:24 GMT + - Wed, 14 Jun 2023 22:45:36 GMT expires: - '-1' pragma: @@ -345,14 +346,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --disable-rbac User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5f8de9e2-403f-4471-8cc5-050b720c1248?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2fbf732-cebf-4cce-9c4a-ed3bef951346?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2e98d5f-3f40-7144-8cc5-050b720c1248\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:23:54.6225275Z\"\n }" + string: "{\n \"name\": \"32f7fbc2-bfce-ce4c-9c4a-ed3bef951346\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:44:35.4806163Z\"\n }" headers: cache-control: - no-cache @@ -361,7 +362,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:25:54 GMT + - Wed, 14 Jun 2023 22:46:06 GMT expires: - '-1' pragma: @@ -393,14 +394,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --disable-rbac User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5f8de9e2-403f-4471-8cc5-050b720c1248?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2fbf732-cebf-4cce-9c4a-ed3bef951346?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2e98d5f-3f40-7144-8cc5-050b720c1248\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:23:54.6225275Z\"\n }" + string: "{\n \"name\": \"32f7fbc2-bfce-ce4c-9c4a-ed3bef951346\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:44:35.4806163Z\"\n }" headers: cache-control: - no-cache @@ -409,7 +410,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:26:24 GMT + - Wed, 14 Jun 2023 22:46:36 GMT expires: - '-1' pragma: @@ -441,14 +442,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --disable-rbac User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5f8de9e2-403f-4471-8cc5-050b720c1248?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2fbf732-cebf-4cce-9c4a-ed3bef951346?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2e98d5f-3f40-7144-8cc5-050b720c1248\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:23:54.6225275Z\"\n }" + string: "{\n \"name\": \"32f7fbc2-bfce-ce4c-9c4a-ed3bef951346\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:44:35.4806163Z\"\n }" headers: cache-control: - no-cache @@ -457,7 +458,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:26:54 GMT + - Wed, 14 Jun 2023 22:47:07 GMT expires: - '-1' pragma: @@ -489,14 +490,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --disable-rbac User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5f8de9e2-403f-4471-8cc5-050b720c1248?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2fbf732-cebf-4cce-9c4a-ed3bef951346?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2e98d5f-3f40-7144-8cc5-050b720c1248\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:23:54.6225275Z\"\n }" + string: "{\n \"name\": \"32f7fbc2-bfce-ce4c-9c4a-ed3bef951346\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:44:35.4806163Z\"\n }" headers: cache-control: - no-cache @@ -505,7 +506,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:27:25 GMT + - Wed, 14 Jun 2023 22:47:37 GMT expires: - '-1' pragma: @@ -537,15 +538,15 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --disable-rbac User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5f8de9e2-403f-4471-8cc5-050b720c1248?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2fbf732-cebf-4cce-9c4a-ed3bef951346?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e2e98d5f-3f40-7144-8cc5-050b720c1248\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:23:54.6225275Z\",\n \"endTime\": - \"2023-03-15T10:27:25.9393862Z\"\n }" + string: "{\n \"name\": \"32f7fbc2-bfce-ce4c-9c4a-ed3bef951346\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T22:44:35.4806163Z\",\n \"\ + endTime\": \"2023-06-14T22:47:55.9304971Z\"\n }" headers: cache-control: - no-cache @@ -554,7 +555,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:27:55 GMT + - Wed, 14 Jun 2023 22:48:07 GMT expires: - '-1' pragma: @@ -586,64 +587,66 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --disable-rbac User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestd6fg4ijvx-79a739\",\n \"fqdn\": \"cliakstest-clitestd6fg4ijvx-79a739-d6ljzbni.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestd6fg4ijvx-79a739-d6ljzbni.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": false,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/869ffa3d-67d9-4d8f-bd5e-8345ce1d3b6f\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest4c4irtwyo-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest4c4irtwyo-8ecadf-7k9n2d31.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest4c4irtwyo-8ecadf-7k9n2d31.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": false,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c12666c4-706a-4780-8eee-5b66a29da6d9\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3922' + - '4250' content-type: - application/json date: - - Wed, 15 Mar 2023 10:27:55 GMT + - Wed, 14 Jun 2023 22:48:07 GMT expires: - '-1' pragma: @@ -677,8 +680,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -686,17 +689,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22d67c39-3d93-4cca-901d-5ed0e446e0d3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9a6285ea-524a-45e8-9bfc-cc1723fa5326?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:27:56 GMT + - Wed, 14 Jun 2023 22:48:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/22d67c39-3d93-4cca-901d-5ed0e446e0d3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/9a6285ea-524a-45e8-9bfc-cc1723fa5326?api-version=2016-03-30 pragma: - no-cache server: @@ -706,7 +709,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_dualstack_with_default_network.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_dualstack_with_default_network.yaml old mode 100755 new mode 100644 index da467b0ae3f..e4bddf9397e --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_dualstack_with_default_network.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_dualstack_with_default_network.yaml @@ -13,54 +13,36 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators?api-version=2019-04-01&resource-type=managedClusters + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators\",\n - \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\",\n - \ \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.23.12\",\n \"upgrades\": - [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.9\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\",\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.6\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.5\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\",\n \"default\": true,\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.4\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.26.0\",\n \"isPreview\": true\n - \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n }\n }" + string: "{\n \"values\": [\n {\n \"version\": \"1.24\",\n \"capabilities\"\ + : {\n \"supportPlan\": [\n \"KubernetesOfficial\"\n ]\n },\n\ + \ \"patchVersions\": {\n \"1.24.10\": {\n \"upgrades\": [\n \ + \ \"1.25.5\",\n \"1.25.6\"\n ]\n },\n \"1.24.9\": {\n\ + \ \"upgrades\": [\n \"1.24.10\",\n \"1.25.5\",\n \"\ + 1.25.6\"\n ]\n }\n }\n },\n {\n \"version\": \"1.25\",\n\ + \ \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\"\ + \n ]\n },\n \"patchVersions\": {\n \"1.25.5\": {\n \"upgrades\"\ + : [\n \"1.25.6\",\n \"1.26.0\",\n \"1.26.3\"\n ]\n\ + \ },\n \"1.25.6\": {\n \"upgrades\": [\n \"1.26.0\",\n\ + \ \"1.26.3\"\n ]\n }\n }\n },\n {\n \"version\":\ + \ \"1.26\",\n \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\"\ + \n ]\n },\n \"patchVersions\": {\n \"1.26.0\": {\n \"upgrades\"\ + : [\n \"1.26.3\"\n ]\n },\n \"1.26.3\": {\n \"upgrades\"\ + : []\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2410' + - '957' content-type: - application/json date: - - Wed, 15 Mar 2023 10:27:57 GMT + - Wed, 14 Jun 2023 22:48:12 GMT expires: - '-1' pragma: @@ -93,8 +75,8 @@ interactions: - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -110,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:27:57 GMT + - Wed, 14 Jun 2023 22:48:12 GMT expires: - '-1' pragma: @@ -126,18 +108,17 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "1.26.0", "dnsPrefix": "cliakstest-clitestnjh2qtwqs-79a739", + {"kubernetesVersion": "1.26.3", "dnsPrefix": "cliakstest-clitestbfqbgrtdd-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "1.26.0", "upgradeSettings": {}, "enableNodePublicIP": + "mode": "System", "orchestratorVersion": "1.26.3", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"outboundType": "loadBalancer", "loadBalancerSku": "standard", - "ipFamilies": ["IPv4", "IPv6"]}, "disableLocalAccounts": false, "storageProfile": - {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"outboundType": "loadBalancer", "loadBalancerSku": "standard", "ipFamilies": + ["IPv4", "IPv6"]}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/AKS-EnableDualStack @@ -150,69 +131,72 @@ interactions: Connection: - keep-alive Content-Length: - - '1351' + - '1680' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.26.0\",\n \"currentKubernetesVersion\": \"1.26.0\",\n \"dnsPrefix\": - \"cliakstest-clitestnjh2qtwqs-79a739\",\n \"fqdn\": \"cliakstest-clitestnjh2qtwqs-79a739-zyxr7w0l.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestnjh2qtwqs-79a739-zyxr7w0l.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.26.0\",\n \"currentOrchestratorVersion\": - \"1.26.0\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1,\n \"countIPv6\": 1\n }\n },\n \"podCidr\": - \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\",\n \"fd5d:24f9:c628:f4d5::/64\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\",\n \"fd62:2df2:d329:a303::/108\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\",\n \"IPv6\"\n ]\n },\n - \ \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.26.3\",\n \"currentKubernetesVersion\"\ + : \"1.26.3\",\n \"dnsPrefix\": \"cliakstest-clitestbfqbgrtdd-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestbfqbgrtdd-8ecadf-0wbbv4ba.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestbfqbgrtdd-8ecadf-0wbbv4ba.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.26.3\",\n \"currentOrchestratorVersion\": \"1.26.3\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1,\n \"countIPv6\": 1\n }\n },\n \"podCidr\"\ + : \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\"\ + : [\n \"10.244.0.0/16\",\n \"fd0c:25fb:4bdb:ee06::/64\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\",\n \"fd8e:48:e4ab:37a::/108\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\",\n \"IPv6\"\n ]\n \ + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54b8694a-ab57-4123-879c-73743da46838?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e6b821d-19ee-484b-a931-66041a5c574a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3370' + - '3695' content-type: - application/json date: - - Wed, 15 Mar 2023 10:28:01 GMT + - Wed, 14 Jun 2023 22:48:18 GMT expires: - '-1' pragma: @@ -224,7 +208,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1199' status: code: 201 message: Created @@ -243,14 +227,14 @@ interactions: - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54b8694a-ab57-4123-879c-73743da46838?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e6b821d-19ee-484b-a931-66041a5c574a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a69b854-57ab-2341-879c-73743da46838\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:28:01.3111195Z\"\n }" + string: "{\n \"name\": \"1d826b7e-ee19-4b48-a931-66041a5c574a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:48:18.8249764Z\"\n }" headers: cache-control: - no-cache @@ -259,7 +243,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:28:30 GMT + - Wed, 14 Jun 2023 22:48:18 GMT expires: - '-1' pragma: @@ -292,14 +276,14 @@ interactions: - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54b8694a-ab57-4123-879c-73743da46838?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e6b821d-19ee-484b-a931-66041a5c574a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a69b854-57ab-2341-879c-73743da46838\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:28:01.3111195Z\"\n }" + string: "{\n \"name\": \"1d826b7e-ee19-4b48-a931-66041a5c574a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:48:18.8249764Z\"\n }" headers: cache-control: - no-cache @@ -308,7 +292,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:29:01 GMT + - Wed, 14 Jun 2023 22:48:48 GMT expires: - '-1' pragma: @@ -341,14 +325,14 @@ interactions: - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54b8694a-ab57-4123-879c-73743da46838?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e6b821d-19ee-484b-a931-66041a5c574a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a69b854-57ab-2341-879c-73743da46838\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:28:01.3111195Z\"\n }" + string: "{\n \"name\": \"1d826b7e-ee19-4b48-a931-66041a5c574a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:48:18.8249764Z\"\n }" headers: cache-control: - no-cache @@ -357,7 +341,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:29:31 GMT + - Wed, 14 Jun 2023 22:49:18 GMT expires: - '-1' pragma: @@ -390,14 +374,14 @@ interactions: - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54b8694a-ab57-4123-879c-73743da46838?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e6b821d-19ee-484b-a931-66041a5c574a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a69b854-57ab-2341-879c-73743da46838\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:28:01.3111195Z\"\n }" + string: "{\n \"name\": \"1d826b7e-ee19-4b48-a931-66041a5c574a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:48:18.8249764Z\"\n }" headers: cache-control: - no-cache @@ -406,7 +390,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:30:01 GMT + - Wed, 14 Jun 2023 22:49:49 GMT expires: - '-1' pragma: @@ -439,14 +423,14 @@ interactions: - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54b8694a-ab57-4123-879c-73743da46838?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e6b821d-19ee-484b-a931-66041a5c574a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a69b854-57ab-2341-879c-73743da46838\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:28:01.3111195Z\"\n }" + string: "{\n \"name\": \"1d826b7e-ee19-4b48-a931-66041a5c574a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:48:18.8249764Z\"\n }" headers: cache-control: - no-cache @@ -455,7 +439,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:30:31 GMT + - Wed, 14 Jun 2023 22:50:19 GMT expires: - '-1' pragma: @@ -488,14 +472,14 @@ interactions: - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54b8694a-ab57-4123-879c-73743da46838?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e6b821d-19ee-484b-a931-66041a5c574a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a69b854-57ab-2341-879c-73743da46838\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:28:01.3111195Z\"\n }" + string: "{\n \"name\": \"1d826b7e-ee19-4b48-a931-66041a5c574a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:48:18.8249764Z\"\n }" headers: cache-control: - no-cache @@ -504,7 +488,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:31:01 GMT + - Wed, 14 Jun 2023 22:50:49 GMT expires: - '-1' pragma: @@ -537,14 +521,14 @@ interactions: - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54b8694a-ab57-4123-879c-73743da46838?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e6b821d-19ee-484b-a931-66041a5c574a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a69b854-57ab-2341-879c-73743da46838\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:28:01.3111195Z\"\n }" + string: "{\n \"name\": \"1d826b7e-ee19-4b48-a931-66041a5c574a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:48:18.8249764Z\"\n }" headers: cache-control: - no-cache @@ -553,7 +537,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:31:31 GMT + - Wed, 14 Jun 2023 22:51:19 GMT expires: - '-1' pragma: @@ -586,15 +570,64 @@ interactions: - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54b8694a-ab57-4123-879c-73743da46838?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e6b821d-19ee-484b-a931-66041a5c574a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a69b854-57ab-2341-879c-73743da46838\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:28:01.3111195Z\",\n \"endTime\": - \"2023-03-15T10:31:48.7502054Z\"\n }" + string: "{\n \"name\": \"1d826b7e-ee19-4b48-a931-66041a5c574a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:48:18.8249764Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 22:51:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version + --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7e6b821d-19ee-484b-a931-66041a5c574a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"1d826b7e-ee19-4b48-a931-66041a5c574a\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T22:48:18.8249764Z\",\n \"\ + endTime\": \"2023-06-14T22:51:54.8141855Z\"\n }" headers: cache-control: - no-cache @@ -603,7 +636,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:32:01 GMT + - Wed, 14 Jun 2023 22:52:20 GMT expires: - '-1' pragma: @@ -636,66 +669,68 @@ interactions: - --resource-group --name --location --ip-families --ssh-key-value --kubernetes-version --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.26.0\",\n \"currentKubernetesVersion\": \"1.26.0\",\n \"dnsPrefix\": - \"cliakstest-clitestnjh2qtwqs-79a739\",\n \"fqdn\": \"cliakstest-clitestnjh2qtwqs-79a739-zyxr7w0l.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestnjh2qtwqs-79a739-zyxr7w0l.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.26.0\",\n \"currentOrchestratorVersion\": - \"1.26.0\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1,\n \"countIPv6\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a727c723-3764-4aec-ad8a-81114d2b6b07\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/38e28871-610a-42ad-a193-12ee83a2e810-ipv6\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\",\n \"fd5d:24f9:c628:f4d5::/64\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\",\n \"fd62:2df2:d329:a303::/108\"\n ],\n \"ipFamilies\": - [\n \"IPv4\",\n \"IPv6\"\n ]\n },\n \"maxAgentPools\": 100,\n - \ \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.26.3\",\n \"currentKubernetesVersion\"\ + : \"1.26.3\",\n \"dnsPrefix\": \"cliakstest-clitestbfqbgrtdd-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestbfqbgrtdd-8ecadf-0wbbv4ba.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestbfqbgrtdd-8ecadf-0wbbv4ba.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.26.3\",\n \"currentOrchestratorVersion\": \"1.26.3\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1,\n \"countIPv6\": 1\n },\n \"effectiveOutboundIPs\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3497b38b-45dc-4b1d-ae98-0fbbbcbf1336\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4b038865-fde9-4ea8-a159-d8842750b1c9-ipv6\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\",\n \"\ + fd0c:25fb:4bdb:ee06::/64\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + ,\n \"fd8e:48:e4ab:37a::/108\"\n ],\n \"ipFamilies\": [\n \"\ + IPv4\",\n \"IPv6\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4252' + - '4577' content-type: - application/json date: - - Wed, 15 Mar 2023 10:32:01 GMT + - Wed, 14 Jun 2023 22:52:21 GMT expires: - '-1' pragma: @@ -729,8 +764,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -738,17 +773,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/462a0e6c-4488-44dc-afda-c3e834827cdd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fb6df717-7287-49a5-86ea-d9f4d0951eed?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:32:03 GMT + - Wed, 14 Jun 2023 22:52:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/462a0e6c-4488-44dc-afda-c3e834827cdd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/fb6df717-7287-49a5-86ea-d9f4d0951eed?api-version=2016-03-30 pragma: - no-cache server: @@ -758,7 +793,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_enable_azure_rbac.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_enable_azure_rbac.yaml index 2c0afdbef88..86d820a78c8 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_enable_azure_rbac.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_enable_azure_rbac.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-aad --enable-azure-rbac User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:10:42 GMT + - Wed, 14 Jun 2023 22:52:28 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-aad --enable-azure-rbac User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:10:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_enable_azure_rbac","date":"2023-06-14T22:52:28Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '363' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:10:42 GMT + - Wed, 14 Jun 2023 22:52:29 GMT expires: - '-1' pragma: @@ -88,20 +88,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestqnx4cj76r-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestv2l6wgxqo-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "aadProfile": - {"managed": true, "enableAzureRBAC": true}, "disableLocalAccounts": false, "storageProfile": - {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "aadProfile": {"managed": true, "enableAzureRBAC": true}, "disableLocalAccounts": + false, "storageProfile": {}}}' headers: Accept: - application/json @@ -112,70 +111,72 @@ interactions: Connection: - keep-alive Content-Length: - - '1517' + - '1809' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value --enable-aad --enable-azure-rbac User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestqnx4cj76r-79a739\",\n \"fqdn\": \"cliakstest-clitestqnx4cj76r-79a739-ylu6lpoo.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestqnx4cj76r-79a739-ylu6lpoo.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": - null,\n \"adminUsers\": null,\n \"enableAzureRBAC\": true,\n \"tenantID\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"maxAgentPools\": 100,\n - \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestv2l6wgxqo-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestv2l6wgxqo-8ecadf-zdu9gkb5.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestv2l6wgxqo-8ecadf-zdu9gkb5.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n\ + \ \"adminGroupObjectIDs\": null,\n \"adminUsers\": null,\n \"enableAzureRBAC\"\ + : true,\n \"tenantID\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n\ + \ \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\"\ + : {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"\ + oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/70d53adc-b799-42db-b6ae-cc357577b6fd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c79da10d-65be-4533-8b3f-b12c8783a6b5?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3455' + - '3783' content-type: - application/json date: - - Wed, 15 Mar 2023 10:10:46 GMT + - Wed, 14 Jun 2023 22:52:34 GMT expires: - '-1' pragma: @@ -205,14 +206,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-aad --enable-azure-rbac User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/70d53adc-b799-42db-b6ae-cc357577b6fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c79da10d-65be-4533-8b3f-b12c8783a6b5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dc3ad570-99b7-db42-b6ae-cc357577b6fd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:10:46.5103033Z\"\n }" + string: "{\n \"name\": \"0da19dc7-be65-3345-8b3f-b12c8783a6b5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:52:35.0444364Z\"\n }" headers: cache-control: - no-cache @@ -221,7 +222,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:11:16 GMT + - Wed, 14 Jun 2023 22:52:34 GMT expires: - '-1' pragma: @@ -253,14 +254,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-aad --enable-azure-rbac User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/70d53adc-b799-42db-b6ae-cc357577b6fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c79da10d-65be-4533-8b3f-b12c8783a6b5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dc3ad570-99b7-db42-b6ae-cc357577b6fd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:10:46.5103033Z\"\n }" + string: "{\n \"name\": \"0da19dc7-be65-3345-8b3f-b12c8783a6b5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:52:35.0444364Z\"\n }" headers: cache-control: - no-cache @@ -269,7 +270,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:11:46 GMT + - Wed, 14 Jun 2023 22:53:04 GMT expires: - '-1' pragma: @@ -301,14 +302,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-aad --enable-azure-rbac User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/70d53adc-b799-42db-b6ae-cc357577b6fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c79da10d-65be-4533-8b3f-b12c8783a6b5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dc3ad570-99b7-db42-b6ae-cc357577b6fd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:10:46.5103033Z\"\n }" + string: "{\n \"name\": \"0da19dc7-be65-3345-8b3f-b12c8783a6b5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:52:35.0444364Z\"\n }" headers: cache-control: - no-cache @@ -317,7 +318,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:16 GMT + - Wed, 14 Jun 2023 22:53:34 GMT expires: - '-1' pragma: @@ -349,14 +350,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-aad --enable-azure-rbac User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/70d53adc-b799-42db-b6ae-cc357577b6fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c79da10d-65be-4533-8b3f-b12c8783a6b5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dc3ad570-99b7-db42-b6ae-cc357577b6fd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:10:46.5103033Z\"\n }" + string: "{\n \"name\": \"0da19dc7-be65-3345-8b3f-b12c8783a6b5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:52:35.0444364Z\"\n }" headers: cache-control: - no-cache @@ -365,7 +366,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:12:46 GMT + - Wed, 14 Jun 2023 22:54:06 GMT expires: - '-1' pragma: @@ -397,14 +398,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-aad --enable-azure-rbac User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/70d53adc-b799-42db-b6ae-cc357577b6fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c79da10d-65be-4533-8b3f-b12c8783a6b5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dc3ad570-99b7-db42-b6ae-cc357577b6fd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:10:46.5103033Z\"\n }" + string: "{\n \"name\": \"0da19dc7-be65-3345-8b3f-b12c8783a6b5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:52:35.0444364Z\"\n }" headers: cache-control: - no-cache @@ -413,7 +414,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:13:16 GMT + - Wed, 14 Jun 2023 22:54:36 GMT expires: - '-1' pragma: @@ -445,14 +446,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-aad --enable-azure-rbac User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/70d53adc-b799-42db-b6ae-cc357577b6fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c79da10d-65be-4533-8b3f-b12c8783a6b5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dc3ad570-99b7-db42-b6ae-cc357577b6fd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:10:46.5103033Z\"\n }" + string: "{\n \"name\": \"0da19dc7-be65-3345-8b3f-b12c8783a6b5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:52:35.0444364Z\"\n }" headers: cache-control: - no-cache @@ -461,7 +462,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:13:47 GMT + - Wed, 14 Jun 2023 22:55:06 GMT expires: - '-1' pragma: @@ -493,15 +494,63 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-aad --enable-azure-rbac User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/70d53adc-b799-42db-b6ae-cc357577b6fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c79da10d-65be-4533-8b3f-b12c8783a6b5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dc3ad570-99b7-db42-b6ae-cc357577b6fd\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:10:46.5103033Z\",\n \"endTime\": - \"2023-03-15T10:14:04.0236434Z\"\n }" + string: "{\n \"name\": \"0da19dc7-be65-3345-8b3f-b12c8783a6b5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:52:35.0444364Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Wed, 14 Jun 2023 22:55:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --ssh-key-value --enable-aad --enable-azure-rbac + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c79da10d-65be-4533-8b3f-b12c8783a6b5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0da19dc7-be65-3345-8b3f-b12c8783a6b5\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T22:52:35.0444364Z\",\n \"\ + endTime\": \"2023-06-14T22:55:47.4964606Z\"\n }" headers: cache-control: - no-cache @@ -510,7 +559,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:14:16 GMT + - Wed, 14 Jun 2023 22:56:06 GMT expires: - '-1' pragma: @@ -542,66 +591,69 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-aad --enable-azure-rbac User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestqnx4cj76r-79a739\",\n \"fqdn\": \"cliakstest-clitestqnx4cj76r-79a739-ylu6lpoo.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestqnx4cj76r-79a739-ylu6lpoo.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e1ce4524-7962-4393-8b33-6eb732644f34\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": - {\n \"managed\": true,\n \"adminGroupObjectIDs\": null,\n \"adminUsers\": - null,\n \"enableAzureRBAC\": true,\n \"tenantID\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n - \ },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": - {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestv2l6wgxqo-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestv2l6wgxqo-8ecadf-zdu9gkb5.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestv2l6wgxqo-8ecadf-zdu9gkb5.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9d411369-a299-4b33-85c5-3fa92cd24c41\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n\ + \ \"adminGroupObjectIDs\": null,\n \"adminUsers\": null,\n \"enableAzureRBAC\"\ + : true,\n \"tenantID\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n\ + \ \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ + : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4108' + - '4436' content-type: - application/json date: - - Wed, 15 Mar 2023 10:14:17 GMT + - Wed, 14 Jun 2023 22:56:07 GMT expires: - '-1' pragma: @@ -635,8 +687,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -644,17 +696,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/161ab839-f739-4b37-8c1e-31b3564610dc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fbb2f28c-0b85-4573-9fd6-ae73ab863418?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:14:17 GMT + - Wed, 14 Jun 2023 22:56:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/161ab839-f739-4b37-8c1e-31b3564610dc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/fbb2f28c-0b85-4573-9fd6-ae73ab863418?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_enable_encryption.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_enable_encryption.yaml old mode 100755 new mode 100644 index 7195cc29360..82dde9381a3 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_enable_encryption.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_enable_encryption.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-encryption-at-host User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 20 Mar 2023 04:58:30 GMT + - Wed, 14 Jun 2023 22:56:13 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-encryption-at-host User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-20T04:58:30Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_enable_encryption","date":"2023-06-14T22:56:10Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '363' content-type: - application/json; charset=utf-8 date: - - Mon, 20 Mar 2023 04:58:31 GMT + - Wed, 14 Jun 2023 22:56:13 GMT expires: - '-1' pragma: @@ -88,19 +88,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestxmikbatbv-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest4rusyvzsf-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": true, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCmFJU2dqss7l5NUEOEvn/iW3YU0aCoysSHpxmiPkquEHesD2Ty3/tvalegO3eIpREyD1gVeumT/5zxjIbTGXLtIyvNktGvMgFGiFDkgIe4MnNQINevklNnnHUAr93omRLjKQ0rbl1Xy+wmRHeEtSLIv93PnupkKf/eqMY94H2WkbyJ4Jsz2ZeVqX/TeZwwXLvE34Y6QC+sBG7hmHdvDgiMZC0+S30QWUmyUPrR14pejTuTruCLoXAItYMDn1rOWckmfbzErKFBXMLfksyZxHh9V04k5+059GEXg6oNdWVMOo9mNiN7bSrKDnN0wKYJVf7rCBPViCgpV7PtEjv73mXP - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -111,67 +110,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1458' + - '1750' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value --enable-encryption-at-host User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxmikbatbv-8ecadf\",\n \"fqdn\": \"cliakstest-clitestxmikbatbv-8ecadf-7flg1i85.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxmikbatbv-8ecadf-7flg1i85.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": true,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCmFJU2dqss7l5NUEOEvn/iW3YU0aCoysSHpxmiPkquEHesD2Ty3/tvalegO3eIpREyD1gVeumT/5zxjIbTGXLtIyvNktGvMgFGiFDkgIe4MnNQINevklNnnHUAr93omRLjKQ0rbl1Xy+wmRHeEtSLIv93PnupkKf/eqMY94H2WkbyJ4Jsz2ZeVqX/TeZwwXLvE34Y6QC+sBG7hmHdvDgiMZC0+S30QWUmyUPrR14pejTuTruCLoXAItYMDn1rOWckmfbzErKFBXMLfksyZxHh9V04k5+059GEXg6oNdWVMOo9mNiN7bSrKDnN0wKYJVf7rCBPViCgpV7PtEjv73mXP - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest4rusyvzsf-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest4rusyvzsf-8ecadf-bw0l864l.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest4rusyvzsf-8ecadf-bw0l864l.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": true,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f292e2ac-bf4a-46c6-a039-d6368677cc20?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/755e8e72-6ce9-47c9-961f-0895d6681c1e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3267' + - '3595' content-type: - application/json date: - - Mon, 20 Mar 2023 04:58:36 GMT + - Wed, 14 Jun 2023 22:56:20 GMT expires: - '-1' pragma: @@ -201,14 +202,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-encryption-at-host User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f292e2ac-bf4a-46c6-a039-d6368677cc20?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/755e8e72-6ce9-47c9-961f-0895d6681c1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ace292f2-4abf-c646-a039-d6368677cc20\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-20T04:58:37.1871602Z\"\n }" + string: "{\n \"name\": \"728e5e75-e96c-c947-961f-0895d6681c1e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:56:20.2633738Z\"\n }" headers: cache-control: - no-cache @@ -217,7 +218,7 @@ interactions: content-type: - application/json date: - - Mon, 20 Mar 2023 04:59:06 GMT + - Wed, 14 Jun 2023 22:56:20 GMT expires: - '-1' pragma: @@ -249,14 +250,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-encryption-at-host User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f292e2ac-bf4a-46c6-a039-d6368677cc20?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/755e8e72-6ce9-47c9-961f-0895d6681c1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ace292f2-4abf-c646-a039-d6368677cc20\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-20T04:58:37.1871602Z\"\n }" + string: "{\n \"name\": \"728e5e75-e96c-c947-961f-0895d6681c1e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:56:20.2633738Z\"\n }" headers: cache-control: - no-cache @@ -265,7 +266,7 @@ interactions: content-type: - application/json date: - - Mon, 20 Mar 2023 04:59:37 GMT + - Wed, 14 Jun 2023 22:56:50 GMT expires: - '-1' pragma: @@ -297,14 +298,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-encryption-at-host User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f292e2ac-bf4a-46c6-a039-d6368677cc20?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/755e8e72-6ce9-47c9-961f-0895d6681c1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ace292f2-4abf-c646-a039-d6368677cc20\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-20T04:58:37.1871602Z\"\n }" + string: "{\n \"name\": \"728e5e75-e96c-c947-961f-0895d6681c1e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:56:20.2633738Z\"\n }" headers: cache-control: - no-cache @@ -313,7 +314,7 @@ interactions: content-type: - application/json date: - - Mon, 20 Mar 2023 05:00:07 GMT + - Wed, 14 Jun 2023 22:57:20 GMT expires: - '-1' pragma: @@ -345,14 +346,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-encryption-at-host User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f292e2ac-bf4a-46c6-a039-d6368677cc20?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/755e8e72-6ce9-47c9-961f-0895d6681c1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ace292f2-4abf-c646-a039-d6368677cc20\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-20T04:58:37.1871602Z\"\n }" + string: "{\n \"name\": \"728e5e75-e96c-c947-961f-0895d6681c1e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:56:20.2633738Z\"\n }" headers: cache-control: - no-cache @@ -361,7 +362,7 @@ interactions: content-type: - application/json date: - - Mon, 20 Mar 2023 05:00:37 GMT + - Wed, 14 Jun 2023 22:57:51 GMT expires: - '-1' pragma: @@ -393,14 +394,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-encryption-at-host User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f292e2ac-bf4a-46c6-a039-d6368677cc20?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/755e8e72-6ce9-47c9-961f-0895d6681c1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ace292f2-4abf-c646-a039-d6368677cc20\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-20T04:58:37.1871602Z\"\n }" + string: "{\n \"name\": \"728e5e75-e96c-c947-961f-0895d6681c1e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-14T22:56:20.2633738Z\"\n }" headers: cache-control: - no-cache @@ -409,7 +410,7 @@ interactions: content-type: - application/json date: - - Mon, 20 Mar 2023 05:01:07 GMT + - Wed, 14 Jun 2023 22:58:21 GMT expires: - '-1' pragma: @@ -441,111 +442,15 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-encryption-at-host User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f292e2ac-bf4a-46c6-a039-d6368677cc20?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/755e8e72-6ce9-47c9-961f-0895d6681c1e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ace292f2-4abf-c646-a039-d6368677cc20\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-20T04:58:37.1871602Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Mon, 20 Mar 2023 05:01:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --ssh-key-value --enable-encryption-at-host - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f292e2ac-bf4a-46c6-a039-d6368677cc20?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"ace292f2-4abf-c646-a039-d6368677cc20\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-20T04:58:37.1871602Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Mon, 20 Mar 2023 05:02:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --ssh-key-value --enable-encryption-at-host - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f292e2ac-bf4a-46c6-a039-d6368677cc20?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"ace292f2-4abf-c646-a039-d6368677cc20\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-20T04:58:37.1871602Z\",\n \"endTime\": - \"2023-03-20T05:02:15.6739555Z\"\n }" + string: "{\n \"name\": \"728e5e75-e96c-c947-961f-0895d6681c1e\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-14T22:56:20.2633738Z\",\n \"\ + endTime\": \"2023-06-14T22:59:37.5223983Z\"\n }" headers: cache-control: - no-cache @@ -554,7 +459,7 @@ interactions: content-type: - application/json date: - - Mon, 20 Mar 2023 05:02:37 GMT + - Wed, 14 Jun 2023 23:31:27 GMT expires: - '-1' pragma: @@ -586,64 +491,69 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-encryption-at-host User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxmikbatbv-8ecadf\",\n \"fqdn\": \"cliakstest-clitestxmikbatbv-8ecadf-7flg1i85.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxmikbatbv-8ecadf-7flg1i85.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": true,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCmFJU2dqss7l5NUEOEvn/iW3YU0aCoysSHpxmiPkquEHesD2Ty3/tvalegO3eIpREyD1gVeumT/5zxjIbTGXLtIyvNktGvMgFGiFDkgIe4MnNQINevklNnnHUAr93omRLjKQ0rbl1Xy+wmRHeEtSLIv93PnupkKf/eqMY94H2WkbyJ4Jsz2ZeVqX/TeZwwXLvE34Y6QC+sBG7hmHdvDgiMZC0+S30QWUmyUPrR14pejTuTruCLoXAItYMDn1rOWckmfbzErKFBXMLfksyZxHh9V04k5+059GEXg6oNdWVMOo9mNiN7bSrKDnN0wKYJVf7rCBPViCgpV7PtEjv73mXP - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/50d8eb4c-eacc-485f-91c6-b96b2120eac3\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest4rusyvzsf-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest4rusyvzsf-8ecadf-bw0l864l.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest4rusyvzsf-8ecadf-bw0l864l.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": true,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/263a7960-fd4b-4921-885b-6c10005c6e44\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"defender\": {\n \"logAnalyticsWorkspaceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n }\n\ + \ },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"\ + oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '3920' + - '4580' content-type: - application/json date: - - Mon, 20 Mar 2023 05:02:37 GMT + - Wed, 14 Jun 2023 23:31:29 GMT expires: - '-1' pragma: @@ -677,8 +587,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -686,17 +596,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ee7828a2-35c8-459d-b9b9-6af8bd9b8087?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ae3a1de-34bf-4f63-98dc-5f59bee61e21?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Mon, 20 Mar 2023 05:02:39 GMT + - Wed, 14 Jun 2023 23:31:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/ee7828a2-35c8-459d-b9b9-6af8bd9b8087?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/7ae3a1de-34bf-4f63-98dc-5f59bee61e21?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_loadbalancer_then_update.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_loadbalancer_then_update.yaml index 047a464baa3..ce0dec17d34 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_loadbalancer_then_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_loadbalancer_then_update.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --ssh-key-value --load-balancer-sku --load-balancer-managed-outbound-ip-count --load-balancer-outbound-ports --load-balancer-idle-timeout User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:14:24 GMT + - Thu, 15 Jun 2023 22:30:32 GMT expires: - '-1' pragma: @@ -60,21 +60,21 @@ interactions: - --resource-group --name --ssh-key-value --load-balancer-sku --load-balancer-managed-outbound-ip-count --load-balancer-outbound-ports --load-balancer-idle-timeout User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:14:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_loadbalancer_then_update","date":"2023-06-15T22:30:31Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '370' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:14:24 GMT + - Thu, 15 Jun 2023 22:30:33 GMT expires: - '-1' pragma: @@ -90,21 +90,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest2vvbn6n67-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest24eqbkw57-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard", "loadBalancerProfile": - {"managedOutboundIPs": {"count": 2, "countIPv6": 0}, "allocatedOutboundPorts": - 2048, "idleTimeoutInMinutes": 5}}, "disableLocalAccounts": false, "storageProfile": - {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 2, "countIPv6": + 0}, "allocatedOutboundPorts": 2048, "idleTimeoutInMinutes": 5}}, "disableLocalAccounts": + false, "storageProfile": {}}}' headers: Accept: - application/json @@ -115,68 +114,71 @@ interactions: Connection: - keep-alive Content-Length: - - '1595' + - '1887' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value --load-balancer-sku --load-balancer-managed-outbound-ip-count --load-balancer-outbound-ports --load-balancer-idle-timeout User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest2vvbn6n67-79a739\",\n \"fqdn\": \"cliakstest-clitest2vvbn6n67-79a739-6fasdps6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest2vvbn6n67-79a739-6fasdps6.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 2\n },\n \"allocatedOutboundPorts\": 2048,\n \"idleTimeoutInMinutes\": - 5\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest24eqbkw57-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest24eqbkw57-8ecadf-f6dnwqvs.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest24eqbkw57-8ecadf-f6dnwqvs.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 2\n },\n \"allocatedOutboundPorts\": 2048,\n\ + \ \"idleTimeoutInMinutes\": 5\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a3104aa-42b7-4466-8186-2372d97119c4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e77bea5-41de-4203-b815-597bdd16d0ee?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3337' + - '3665' content-type: - application/json date: - - Wed, 15 Mar 2023 10:14:28 GMT + - Thu, 15 Jun 2023 22:30:54 GMT expires: - '-1' pragma: @@ -207,14 +209,14 @@ interactions: - --resource-group --name --ssh-key-value --load-balancer-sku --load-balancer-managed-outbound-ip-count --load-balancer-outbound-ports --load-balancer-idle-timeout User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a3104aa-42b7-4466-8186-2372d97119c4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e77bea5-41de-4203-b815-597bdd16d0ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aa04318a-b742-6644-8186-2372d97119c4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:14:28.7921315Z\"\n }" + string: "{\n \"name\": \"a5be771e-de41-0342-b815-597bdd16d0ee\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:30:40.9234002Z\"\n }" headers: cache-control: - no-cache @@ -223,7 +225,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:14:59 GMT + - Thu, 15 Jun 2023 22:30:55 GMT expires: - '-1' pragma: @@ -256,14 +258,14 @@ interactions: - --resource-group --name --ssh-key-value --load-balancer-sku --load-balancer-managed-outbound-ip-count --load-balancer-outbound-ports --load-balancer-idle-timeout User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a3104aa-42b7-4466-8186-2372d97119c4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e77bea5-41de-4203-b815-597bdd16d0ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aa04318a-b742-6644-8186-2372d97119c4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:14:28.7921315Z\"\n }" + string: "{\n \"name\": \"a5be771e-de41-0342-b815-597bdd16d0ee\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:30:40.9234002Z\"\n }" headers: cache-control: - no-cache @@ -272,7 +274,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:15:28 GMT + - Thu, 15 Jun 2023 22:31:25 GMT expires: - '-1' pragma: @@ -305,14 +307,14 @@ interactions: - --resource-group --name --ssh-key-value --load-balancer-sku --load-balancer-managed-outbound-ip-count --load-balancer-outbound-ports --load-balancer-idle-timeout User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a3104aa-42b7-4466-8186-2372d97119c4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e77bea5-41de-4203-b815-597bdd16d0ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aa04318a-b742-6644-8186-2372d97119c4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:14:28.7921315Z\"\n }" + string: "{\n \"name\": \"a5be771e-de41-0342-b815-597bdd16d0ee\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:30:40.9234002Z\"\n }" headers: cache-control: - no-cache @@ -321,7 +323,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:15:58 GMT + - Thu, 15 Jun 2023 22:31:55 GMT expires: - '-1' pragma: @@ -354,14 +356,14 @@ interactions: - --resource-group --name --ssh-key-value --load-balancer-sku --load-balancer-managed-outbound-ip-count --load-balancer-outbound-ports --load-balancer-idle-timeout User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a3104aa-42b7-4466-8186-2372d97119c4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e77bea5-41de-4203-b815-597bdd16d0ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aa04318a-b742-6644-8186-2372d97119c4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:14:28.7921315Z\"\n }" + string: "{\n \"name\": \"a5be771e-de41-0342-b815-597bdd16d0ee\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:30:40.9234002Z\"\n }" headers: cache-control: - no-cache @@ -370,7 +372,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:16:28 GMT + - Thu, 15 Jun 2023 22:32:25 GMT expires: - '-1' pragma: @@ -403,14 +405,14 @@ interactions: - --resource-group --name --ssh-key-value --load-balancer-sku --load-balancer-managed-outbound-ip-count --load-balancer-outbound-ports --load-balancer-idle-timeout User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a3104aa-42b7-4466-8186-2372d97119c4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e77bea5-41de-4203-b815-597bdd16d0ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aa04318a-b742-6644-8186-2372d97119c4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:14:28.7921315Z\"\n }" + string: "{\n \"name\": \"a5be771e-de41-0342-b815-597bdd16d0ee\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:30:40.9234002Z\"\n }" headers: cache-control: - no-cache @@ -419,7 +421,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:16:58 GMT + - Thu, 15 Jun 2023 22:32:55 GMT expires: - '-1' pragma: @@ -452,14 +454,14 @@ interactions: - --resource-group --name --ssh-key-value --load-balancer-sku --load-balancer-managed-outbound-ip-count --load-balancer-outbound-ports --load-balancer-idle-timeout User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a3104aa-42b7-4466-8186-2372d97119c4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e77bea5-41de-4203-b815-597bdd16d0ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aa04318a-b742-6644-8186-2372d97119c4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:14:28.7921315Z\"\n }" + string: "{\n \"name\": \"a5be771e-de41-0342-b815-597bdd16d0ee\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:30:40.9234002Z\"\n }" headers: cache-control: - no-cache @@ -468,7 +470,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:28 GMT + - Thu, 15 Jun 2023 22:33:25 GMT expires: - '-1' pragma: @@ -501,15 +503,15 @@ interactions: - --resource-group --name --ssh-key-value --load-balancer-sku --load-balancer-managed-outbound-ip-count --load-balancer-outbound-ports --load-balancer-idle-timeout User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8a3104aa-42b7-4466-8186-2372d97119c4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e77bea5-41de-4203-b815-597bdd16d0ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"aa04318a-b742-6644-8186-2372d97119c4\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:14:28.7921315Z\",\n \"endTime\": - \"2023-03-15T10:17:55.3714854Z\"\n }" + string: "{\n \"name\": \"a5be771e-de41-0342-b815-597bdd16d0ee\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T22:30:40.9234002Z\",\n \"\ + endTime\": \"2023-06-15T22:33:49.5411557Z\"\n }" headers: cache-control: - no-cache @@ -518,7 +520,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:59 GMT + - Thu, 15 Jun 2023 22:33:56 GMT expires: - '-1' pragma: @@ -551,65 +553,68 @@ interactions: - --resource-group --name --ssh-key-value --load-balancer-sku --load-balancer-managed-outbound-ip-count --load-balancer-outbound-ports --load-balancer-idle-timeout User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest2vvbn6n67-79a739\",\n \"fqdn\": \"cliakstest-clitest2vvbn6n67-79a739-6fasdps6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest2vvbn6n67-79a739-6fasdps6.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bf897c0f-eca4-40f0-8697-2fe8f7ad10e1\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8ed526dd-503c-4e48-b212-6f724ae15e9d\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 2048,\n \"idleTimeoutInMinutes\": - 5\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest24eqbkw57-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest24eqbkw57-8ecadf-f6dnwqvs.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest24eqbkw57-8ecadf-f6dnwqvs.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8be528af-4fa9-40d5-b4d1-39f152201bfe\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/994d5c65-624a-4566-a464-1dc562ef71b3\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 2048,\n \"idleTimeoutInMinutes\"\ + : 5\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4214' + - '4542' content-type: - application/json date: - - Wed, 15 Mar 2023 10:18:00 GMT + - Thu, 15 Jun 2023 22:33:56 GMT expires: - '-1' pragma: @@ -641,65 +646,68 @@ interactions: ParameterSetName: - --resource-group --name --load-balancer-outbound-ports --load-balancer-idle-timeout User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest2vvbn6n67-79a739\",\n \"fqdn\": \"cliakstest-clitest2vvbn6n67-79a739-6fasdps6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest2vvbn6n67-79a739-6fasdps6.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bf897c0f-eca4-40f0-8697-2fe8f7ad10e1\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8ed526dd-503c-4e48-b212-6f724ae15e9d\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 2048,\n \"idleTimeoutInMinutes\": - 5\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest24eqbkw57-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest24eqbkw57-8ecadf-f6dnwqvs.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest24eqbkw57-8ecadf-f6dnwqvs.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8be528af-4fa9-40d5-b4d1-39f152201bfe\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/994d5c65-624a-4566-a464-1dc562ef71b3\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 2048,\n \"idleTimeoutInMinutes\"\ + : 5\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4214' + - '4542' content-type: - application/json date: - - Wed, 15 Mar 2023 10:18:00 GMT + - Thu, 15 Jun 2023 22:33:58 GMT expires: - '-1' pragma: @@ -718,24 +726,24 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitest2vvbn6n67-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitest24eqbkw57-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 2}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bf897c0f-eca4-40f0-8697-2fe8f7ad10e1"}, - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8ed526dd-503c-4e48-b212-6f724ae15e9d"}], + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 2}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8be528af-4fa9-40d5-b4d1-39f152201bfe"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/994d5c65-624a-4566-a464-1dc562ef71b3"}], "allocatedOutboundPorts": 1024, "idleTimeoutInMinutes": 10}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", @@ -752,73 +760,76 @@ interactions: Connection: - keep-alive Content-Length: - - '2747' + - '3075' Content-Type: - application/json ParameterSetName: - --resource-group --name --load-balancer-outbound-ports --load-balancer-idle-timeout User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest2vvbn6n67-79a739\",\n \"fqdn\": \"cliakstest-clitest2vvbn6n67-79a739-6fasdps6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest2vvbn6n67-79a739-6fasdps6.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bf897c0f-eca4-40f0-8697-2fe8f7ad10e1\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8ed526dd-503c-4e48-b212-6f724ae15e9d\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 1024,\n \"idleTimeoutInMinutes\": - 10\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest24eqbkw57-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest24eqbkw57-8ecadf-f6dnwqvs.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest24eqbkw57-8ecadf-f6dnwqvs.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8be528af-4fa9-40d5-b4d1-39f152201bfe\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/994d5c65-624a-4566-a464-1dc562ef71b3\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 1024,\n \"idleTimeoutInMinutes\"\ + : 10\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/302fe980-6685-4e9e-8059-f416910db39d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b29f629-89b2-4f6c-830d-e24ef7b41b12?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4213' + - '4541' content-type: - application/json date: - - Wed, 15 Mar 2023 10:18:03 GMT + - Thu, 15 Jun 2023 22:34:04 GMT expires: - '-1' pragma: @@ -834,7 +845,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -852,23 +863,23 @@ interactions: ParameterSetName: - --resource-group --name --load-balancer-outbound-ports --load-balancer-idle-timeout User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/302fe980-6685-4e9e-8059-f416910db39d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b29f629-89b2-4f6c-830d-e24ef7b41b12?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80e92f30-8566-9e4e-8059-f416910db39d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:18:03.3708623Z\"\n }" + string: "{\n \"name\": \"29f6294b-b289-6c4f-830d-e24ef7b41b12\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:34:03.642577Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 10:18:33 GMT + - Thu, 15 Jun 2023 22:34:04 GMT expires: - '-1' pragma: @@ -900,23 +911,23 @@ interactions: ParameterSetName: - --resource-group --name --load-balancer-outbound-ports --load-balancer-idle-timeout User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/302fe980-6685-4e9e-8059-f416910db39d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b29f629-89b2-4f6c-830d-e24ef7b41b12?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80e92f30-8566-9e4e-8059-f416910db39d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:18:03.3708623Z\"\n }" + string: "{\n \"name\": \"29f6294b-b289-6c4f-830d-e24ef7b41b12\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:34:03.642577Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 10:19:03 GMT + - Thu, 15 Jun 2023 22:34:35 GMT expires: - '-1' pragma: @@ -948,24 +959,120 @@ interactions: ParameterSetName: - --resource-group --name --load-balancer-outbound-ports --load-balancer-idle-timeout User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/302fe980-6685-4e9e-8059-f416910db39d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b29f629-89b2-4f6c-830d-e24ef7b41b12?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"80e92f30-8566-9e4e-8059-f416910db39d\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:18:03.3708623Z\",\n \"endTime\": - \"2023-03-15T10:19:25.4508534Z\"\n }" + string: "{\n \"name\": \"29f6294b-b289-6c4f-830d-e24ef7b41b12\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:34:03.642577Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '125' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 22:35:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --load-balancer-outbound-ports --load-balancer-idle-timeout + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b29f629-89b2-4f6c-830d-e24ef7b41b12?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"29f6294b-b289-6c4f-830d-e24ef7b41b12\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:34:03.642577Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 22:35:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --load-balancer-outbound-ports --load-balancer-idle-timeout + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b29f629-89b2-4f6c-830d-e24ef7b41b12?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"29f6294b-b289-6c4f-830d-e24ef7b41b12\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T22:34:03.642577Z\",\n \"\ + endTime\": \"2023-06-15T22:35:53.4963532Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' content-type: - application/json date: - - Wed, 15 Mar 2023 10:19:33 GMT + - Thu, 15 Jun 2023 22:36:04 GMT expires: - '-1' pragma: @@ -997,65 +1104,68 @@ interactions: ParameterSetName: - --resource-group --name --load-balancer-outbound-ports --load-balancer-idle-timeout User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest2vvbn6n67-79a739\",\n \"fqdn\": \"cliakstest-clitest2vvbn6n67-79a739-6fasdps6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest2vvbn6n67-79a739-6fasdps6.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8ed526dd-503c-4e48-b212-6f724ae15e9d\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/bf897c0f-eca4-40f0-8697-2fe8f7ad10e1\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 1024,\n \"idleTimeoutInMinutes\": - 10\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest24eqbkw57-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest24eqbkw57-8ecadf-f6dnwqvs.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest24eqbkw57-8ecadf-f6dnwqvs.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8be528af-4fa9-40d5-b4d1-39f152201bfe\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/994d5c65-624a-4566-a464-1dc562ef71b3\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 1024,\n \"idleTimeoutInMinutes\"\ + : 10\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4215' + - '4543' content-type: - application/json date: - - Wed, 15 Mar 2023 10:19:33 GMT + - Thu, 15 Jun 2023 22:36:05 GMT expires: - '-1' pragma: @@ -1089,8 +1199,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -1098,17 +1208,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d1783b69-6f70-46c1-be00-35c3e6e89c67?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d5c3a60f-7b23-422e-bd13-03cdf87795b0?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:19:35 GMT + - Thu, 15 Jun 2023 22:36:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/d1783b69-6f70-46c1-be00-35c3e6e89c67?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/d5c3a60f-7b23-422e-bd13-03cdf87795b0?api-version=2016-03-30 pragma: - no-cache server: @@ -1118,7 +1228,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_network_cidr.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_network_cidr.yaml index 4666c77f5d9..50730dcaee4 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_network_cidr.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_network_cidr.yaml @@ -11,11 +11,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --docker-bridge-address - --dns-service-ip --network-plugin --network-policy + - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --dns-service-ip + --network-plugin --network-policy User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:15:02 GMT + - Thu, 15 Jun 2023 22:36:16 GMT expires: - '-1' pragma: @@ -57,24 +57,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --docker-bridge-address - --dns-service-ip --network-plugin --network-policy + - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --dns-service-ip + --network-plugin --network-policy User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:15:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_network_cidr","date":"2023-06-15T22:36:13Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '358' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:15:03 GMT + - Thu, 15 Jun 2023 22:36:15 GMT expires: - '-1' pragma: @@ -90,19 +90,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestsziwmhkky-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestdo63xky4b-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "networkPolicy": "calico", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.2.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "networkPolicy": "calico", "podCidr": "10.244.0.0/16", + "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.2.10", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -113,68 +113,71 @@ interactions: Connection: - keep-alive Content-Length: - - '1486' + - '1778' Content-Type: - application/json ParameterSetName: - - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --docker-bridge-address - --dns-service-ip --network-plugin --network-policy + - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --dns-service-ip + --network-plugin --network-policy User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestsziwmhkky-79a739\",\n \"fqdn\": \"cliakstest-clitestsziwmhkky-79a739-mjghg4j6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestsziwmhkky-79a739-mjghg4j6.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"networkPolicy\": - \"calico\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": - \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.2.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestdo63xky4b-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestdo63xky4b-8ecadf-ibrsrey0.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestdo63xky4b-8ecadf-ibrsrey0.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"networkPolicy\"\ + : \"calico\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n\ + \ \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\"\ + ,\n \"dnsServiceIP\": \"10.0.2.10\",\n \"outboundType\": \"loadBalancer\"\ + ,\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n\ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a0c2a09-4508-456f-bad8-5cd71adffcbb?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b215d85-59a2-44de-82ac-7b9f73e7b3c4?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3299' + - '3627' content-type: - application/json date: - - Wed, 15 Mar 2023 10:15:07 GMT + - Thu, 15 Jun 2023 22:36:23 GMT expires: - '-1' pragma: @@ -186,7 +189,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -202,17 +205,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --docker-bridge-address - --dns-service-ip --network-plugin --network-policy + - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --dns-service-ip + --network-plugin --network-policy User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a0c2a09-4508-456f-bad8-5cd71adffcbb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b215d85-59a2-44de-82ac-7b9f73e7b3c4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"092a0c7a-0845-6f45-bad8-5cd71adffcbb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:15:06.9952636Z\"\n }" + string: "{\n \"name\": \"855d214b-a259-de44-82ac-7b9f73e7b3c4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:36:23.3614105Z\"\n }" headers: cache-control: - no-cache @@ -221,7 +224,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:15:36 GMT + - Thu, 15 Jun 2023 22:36:23 GMT expires: - '-1' pragma: @@ -251,17 +254,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --docker-bridge-address - --dns-service-ip --network-plugin --network-policy + - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --dns-service-ip + --network-plugin --network-policy User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a0c2a09-4508-456f-bad8-5cd71adffcbb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b215d85-59a2-44de-82ac-7b9f73e7b3c4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"092a0c7a-0845-6f45-bad8-5cd71adffcbb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:15:06.9952636Z\"\n }" + string: "{\n \"name\": \"855d214b-a259-de44-82ac-7b9f73e7b3c4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:36:23.3614105Z\"\n }" headers: cache-control: - no-cache @@ -270,7 +273,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:16:06 GMT + - Thu, 15 Jun 2023 22:36:53 GMT expires: - '-1' pragma: @@ -300,17 +303,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --docker-bridge-address - --dns-service-ip --network-plugin --network-policy + - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --dns-service-ip + --network-plugin --network-policy User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a0c2a09-4508-456f-bad8-5cd71adffcbb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b215d85-59a2-44de-82ac-7b9f73e7b3c4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"092a0c7a-0845-6f45-bad8-5cd71adffcbb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:15:06.9952636Z\"\n }" + string: "{\n \"name\": \"855d214b-a259-de44-82ac-7b9f73e7b3c4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:36:23.3614105Z\"\n }" headers: cache-control: - no-cache @@ -319,7 +322,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:16:37 GMT + - Thu, 15 Jun 2023 22:37:23 GMT expires: - '-1' pragma: @@ -349,17 +352,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --docker-bridge-address - --dns-service-ip --network-plugin --network-policy + - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --dns-service-ip + --network-plugin --network-policy User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a0c2a09-4508-456f-bad8-5cd71adffcbb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b215d85-59a2-44de-82ac-7b9f73e7b3c4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"092a0c7a-0845-6f45-bad8-5cd71adffcbb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:15:06.9952636Z\"\n }" + string: "{\n \"name\": \"855d214b-a259-de44-82ac-7b9f73e7b3c4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:36:23.3614105Z\"\n }" headers: cache-control: - no-cache @@ -368,7 +371,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:06 GMT + - Thu, 15 Jun 2023 22:37:54 GMT expires: - '-1' pragma: @@ -398,17 +401,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --docker-bridge-address - --dns-service-ip --network-plugin --network-policy + - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --dns-service-ip + --network-plugin --network-policy User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a0c2a09-4508-456f-bad8-5cd71adffcbb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b215d85-59a2-44de-82ac-7b9f73e7b3c4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"092a0c7a-0845-6f45-bad8-5cd71adffcbb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:15:06.9952636Z\"\n }" + string: "{\n \"name\": \"855d214b-a259-de44-82ac-7b9f73e7b3c4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:36:23.3614105Z\"\n }" headers: cache-control: - no-cache @@ -417,7 +420,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:37 GMT + - Thu, 15 Jun 2023 22:38:24 GMT expires: - '-1' pragma: @@ -447,17 +450,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --docker-bridge-address - --dns-service-ip --network-plugin --network-policy + - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --dns-service-ip + --network-plugin --network-policy User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a0c2a09-4508-456f-bad8-5cd71adffcbb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b215d85-59a2-44de-82ac-7b9f73e7b3c4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"092a0c7a-0845-6f45-bad8-5cd71adffcbb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:15:06.9952636Z\"\n }" + string: "{\n \"name\": \"855d214b-a259-de44-82ac-7b9f73e7b3c4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:36:23.3614105Z\"\n }" headers: cache-control: - no-cache @@ -466,7 +469,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:18:07 GMT + - Thu, 15 Jun 2023 22:38:54 GMT expires: - '-1' pragma: @@ -496,17 +499,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --docker-bridge-address - --dns-service-ip --network-plugin --network-policy + - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --dns-service-ip + --network-plugin --network-policy User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a0c2a09-4508-456f-bad8-5cd71adffcbb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b215d85-59a2-44de-82ac-7b9f73e7b3c4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"092a0c7a-0845-6f45-bad8-5cd71adffcbb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:15:06.9952636Z\"\n }" + string: "{\n \"name\": \"855d214b-a259-de44-82ac-7b9f73e7b3c4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:36:23.3614105Z\"\n }" headers: cache-control: - no-cache @@ -515,7 +518,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:18:36 GMT + - Thu, 15 Jun 2023 22:39:25 GMT expires: - '-1' pragma: @@ -545,17 +548,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --docker-bridge-address - --dns-service-ip --network-plugin --network-policy + - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --dns-service-ip + --network-plugin --network-policy User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a0c2a09-4508-456f-bad8-5cd71adffcbb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b215d85-59a2-44de-82ac-7b9f73e7b3c4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"092a0c7a-0845-6f45-bad8-5cd71adffcbb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:15:06.9952636Z\"\n }" + string: "{\n \"name\": \"855d214b-a259-de44-82ac-7b9f73e7b3c4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:36:23.3614105Z\"\n }" headers: cache-control: - no-cache @@ -564,7 +567,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:19:07 GMT + - Thu, 15 Jun 2023 22:39:55 GMT expires: - '-1' pragma: @@ -594,17 +597,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --docker-bridge-address - --dns-service-ip --network-plugin --network-policy + - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --dns-service-ip + --network-plugin --network-policy User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a0c2a09-4508-456f-bad8-5cd71adffcbb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b215d85-59a2-44de-82ac-7b9f73e7b3c4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"092a0c7a-0845-6f45-bad8-5cd71adffcbb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:15:06.9952636Z\"\n }" + string: "{\n \"name\": \"855d214b-a259-de44-82ac-7b9f73e7b3c4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:36:23.3614105Z\"\n }" headers: cache-control: - no-cache @@ -613,7 +616,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:19:37 GMT + - Thu, 15 Jun 2023 22:40:25 GMT expires: - '-1' pragma: @@ -643,18 +646,67 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --docker-bridge-address - --dns-service-ip --network-plugin --network-policy + - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --dns-service-ip + --network-plugin --network-policy User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7a0c2a09-4508-456f-bad8-5cd71adffcbb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b215d85-59a2-44de-82ac-7b9f73e7b3c4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"092a0c7a-0845-6f45-bad8-5cd71adffcbb\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:15:06.9952636Z\",\n \"endTime\": - \"2023-03-15T10:19:45.3569286Z\"\n }" + string: "{\n \"name\": \"855d214b-a259-de44-82ac-7b9f73e7b3c4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:36:23.3614105Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 22:40:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --dns-service-ip + --network-plugin --network-policy + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4b215d85-59a2-44de-82ac-7b9f73e7b3c4?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"855d214b-a259-de44-82ac-7b9f73e7b3c4\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T22:36:23.3614105Z\",\n \"\ + endTime\": \"2023-06-15T22:41:16.8033603Z\"\n }" headers: cache-control: - no-cache @@ -663,7 +715,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:07 GMT + - Thu, 15 Jun 2023 22:41:24 GMT expires: - '-1' pragma: @@ -693,67 +745,69 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --docker-bridge-address - --dns-service-ip --network-plugin --network-policy + - --resource-group --name --ssh-key-value --pod-cidr --service-cidr --dns-service-ip + --network-plugin --network-policy User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestsziwmhkky-79a739\",\n \"fqdn\": \"cliakstest-clitestsziwmhkky-79a739-mjghg4j6.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestsziwmhkky-79a739-mjghg4j6.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"networkPolicy\": - \"calico\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/a58c198a-784f-4e1d-8540-f71a421a7b59\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.2.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestdo63xky4b-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestdo63xky4b-8ecadf-ibrsrey0.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestdo63xky4b-8ecadf-ibrsrey0.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"networkPolicy\"\ + : \"calico\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ + effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1f4c1bbe-5adc-4f15-a6c3-658080d0da20\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.2.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3952' + - '4280' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:07 GMT + - Thu, 15 Jun 2023 22:41:26 GMT expires: - '-1' pragma: @@ -787,8 +841,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -796,17 +850,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ac064a79-8505-44e5-9052-a5b26e0c2e06?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07cd3002-d1f3-45cf-bf95-470e1b1dcff3?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:20:08 GMT + - Thu, 15 Jun 2023 22:41:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/ac064a79-8505-44e5-9052-a5b26e0c2e06?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/07cd3002-d1f3-45cf-bf95-470e1b1dcff3?api-version=2016-03-30 pragma: - no-cache server: @@ -816,7 +870,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_node_public_ip.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_node_public_ip.yaml index 2d6bccb5b7c..9d837421e4b 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_node_public_ip.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_node_public_ip.yaml @@ -18,24 +18,24 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.47.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.1 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksipprefix000003?api-version=2022-09-01 response: body: - string: "{\r\n \"name\": \"cliaksipprefix000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksipprefix000003\",\r\n - \ \"etag\": \"W/\\\"aa1ae343-62dd-4456-8bf0-5c582f805382\\\"\",\r\n \"type\": - \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"westus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"c5a03ecc-d666-466a-8059-fc11ab721b16\",\r\n \"prefixLength\": 29,\r\n - \ \"publicIPAddressVersion\": \"IPv4\",\r\n \"ipTags\": []\r\n },\r\n - \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n - \ }\r\n}" + string: "{\r\n \"name\": \"cliaksipprefix000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksipprefix000003\"\ + ,\r\n \"etag\": \"W/\\\"1ac5f907-f538-49f8-a0a8-82354f27e26f\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"\ + westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"resourceGuid\": \"a93daaf5-48f7-4756-abca-fb6df4e4157e\",\r\n \ + \ \"prefixLength\": 29,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n\ + \ \"ipTags\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\"\ + ,\r\n \"tier\": \"Regional\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a01a631f-f7d6-456d-933a-a6970437e319?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/70027328-59b5-4b99-b1db-f3c2d3c858ea?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -43,7 +43,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Apr 2023 02:52:18 GMT + - Thu, 15 Jun 2023 02:22:38 GMT expires: - '-1' pragma: @@ -56,7 +56,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9fa514a0-196b-4452-91b6-76918617753a + - edfb7523-d7a5-49f2-9025-412ca40005e0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -76,9 +76,9 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.47.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.1 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a01a631f-f7d6-456d-933a-a6970437e319?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/70027328-59b5-4b99-b1db-f3c2d3c858ea?api-version=2022-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -90,7 +90,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Apr 2023 02:52:21 GMT + - Thu, 15 Jun 2023 02:22:39 GMT expires: - '-1' pragma: @@ -107,7 +107,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2301c935-81c0-4fed-9c8c-a238ef4421c5 + - 2132ce24-53a9-4a08-a860-c419e1e359eb status: code: 200 message: OK @@ -125,30 +125,31 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.47.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.1 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksipprefix000003?api-version=2022-09-01 response: body: - string: "{\r\n \"name\": \"cliaksipprefix000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksipprefix000003\",\r\n - \ \"etag\": \"W/\\\"5c5d52b8-9ee1-4010-b92d-3be7e4753b37\\\"\",\r\n \"type\": - \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"westus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"c5a03ecc-d666-466a-8059-fc11ab721b16\",\r\n \"prefixLength\": 29,\r\n - \ \"publicIPAddressVersion\": \"IPv4\",\r\n \"ipPrefix\": \"4.155.217.120/29\",\r\n - \ \"ipTags\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n - \ \"tier\": \"Regional\"\r\n }\r\n}" + string: "{\r\n \"name\": \"cliaksipprefix000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksipprefix000003\"\ + ,\r\n \"etag\": \"W/\\\"c356e6d7-0733-4d34-91da-d78f9cb3b784\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"\ + westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"resourceGuid\": \"a93daaf5-48f7-4756-abca-fb6df4e4157e\",\r\n \ + \ \"prefixLength\": 29,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n\ + \ \"ipPrefix\": \"20.3.206.16/29\",\r\n \"ipTags\": []\r\n },\r\n \ + \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\ + \n }\r\n}" headers: cache-control: - no-cache content-length: - - '640' + - '638' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Apr 2023 02:52:22 GMT + - Thu, 15 Jun 2023 02:22:39 GMT etag: - - W/"5c5d52b8-9ee1-4010-b92d-3be7e4753b37" + - W/"c356e6d7-0733-4d34-91da-d78f9cb3b784" expires: - '-1' pragma: @@ -165,7 +166,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8ea46156-f806-4513-b176-73d055642458 + - e112ea35-b903-4f69-8b3c-f4eda4a8bcf2 status: code: 200 message: OK @@ -183,8 +184,8 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -200,7 +201,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Apr 2023 02:52:23 GMT + - Thu, 15 Jun 2023 02:22:40 GMT expires: - '-1' pragma: @@ -228,21 +229,21 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.1 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-10T02:52:07Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_node_public_ip","date":"2023-06-15T02:22:34Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '360' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Apr 2023 02:52:24 GMT + - Thu, 15 Jun 2023 02:22:40 GMT expires: - '-1' pragma: @@ -258,7 +259,7 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestkp2m7c346-0b1f64", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestituxb44pt-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": @@ -269,9 +270,8 @@ interactions: "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, - "storageProfile": {}}}' + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -282,68 +282,70 @@ interactions: Connection: - keep-alive Content-Length: - - '1961' + - '1924' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.10\",\n \"currentKubernetesVersion\": \"1.24.10\",\n \"dnsPrefix\": - \"cliakstest-clitestkp2m7c346-0b1f64\",\n \"fqdn\": \"cliakstest-clitestkp2m7c346-0b1f64-6wyen8uy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestkp2m7c346-0b1f64-6wyen8uy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.10\",\n \"currentOrchestratorVersion\": - \"1.24.10\",\n \"enableNodePublicIP\": true,\n \"nodePublicIPPrefixID\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksipprefix000003\",\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.22.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestituxb44pt-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestituxb44pt-8ecadf-ha1vwxyz.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestituxb44pt-8ecadf-ha1vwxyz.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : true,\n \"nodePublicIPPrefixID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksipprefix000003\"\ + ,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e59922f-a1d4-4a59-8f97-87d7787d4434?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cb4ed43c-bd3a-4906-9a3c-653105fb1b85?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3779' + - '3774' content-type: - application/json date: - - Mon, 10 Apr 2023 02:52:34 GMT + - Thu, 15 Jun 2023 02:22:48 GMT expires: - '-1' pragma: @@ -373,14 +375,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e59922f-a1d4-4a59-8f97-87d7787d4434?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cb4ed43c-bd3a-4906-9a3c-653105fb1b85?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2f92594e-d4a1-594a-8f97-87d7787d4434\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:52:33.3442811Z\"\n }" + string: "{\n \"name\": \"3cd44ecb-3abd-0649-9a3c-653105fb1b85\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:22:49.1849717Z\"\n }" headers: cache-control: - no-cache @@ -389,7 +391,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:53:03 GMT + - Thu, 15 Jun 2023 02:22:48 GMT expires: - '-1' pragma: @@ -421,14 +423,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e59922f-a1d4-4a59-8f97-87d7787d4434?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cb4ed43c-bd3a-4906-9a3c-653105fb1b85?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2f92594e-d4a1-594a-8f97-87d7787d4434\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:52:33.3442811Z\"\n }" + string: "{\n \"name\": \"3cd44ecb-3abd-0649-9a3c-653105fb1b85\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:22:49.1849717Z\"\n }" headers: cache-control: - no-cache @@ -437,7 +439,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:53:34 GMT + - Thu, 15 Jun 2023 02:23:20 GMT expires: - '-1' pragma: @@ -469,14 +471,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e59922f-a1d4-4a59-8f97-87d7787d4434?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cb4ed43c-bd3a-4906-9a3c-653105fb1b85?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2f92594e-d4a1-594a-8f97-87d7787d4434\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:52:33.3442811Z\"\n }" + string: "{\n \"name\": \"3cd44ecb-3abd-0649-9a3c-653105fb1b85\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:22:49.1849717Z\"\n }" headers: cache-control: - no-cache @@ -485,7 +487,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:54:05 GMT + - Thu, 15 Jun 2023 02:23:50 GMT expires: - '-1' pragma: @@ -517,14 +519,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e59922f-a1d4-4a59-8f97-87d7787d4434?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cb4ed43c-bd3a-4906-9a3c-653105fb1b85?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2f92594e-d4a1-594a-8f97-87d7787d4434\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:52:33.3442811Z\"\n }" + string: "{\n \"name\": \"3cd44ecb-3abd-0649-9a3c-653105fb1b85\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:22:49.1849717Z\"\n }" headers: cache-control: - no-cache @@ -533,7 +535,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:54:35 GMT + - Thu, 15 Jun 2023 02:24:19 GMT expires: - '-1' pragma: @@ -565,14 +567,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e59922f-a1d4-4a59-8f97-87d7787d4434?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cb4ed43c-bd3a-4906-9a3c-653105fb1b85?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2f92594e-d4a1-594a-8f97-87d7787d4434\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:52:33.3442811Z\"\n }" + string: "{\n \"name\": \"3cd44ecb-3abd-0649-9a3c-653105fb1b85\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:22:49.1849717Z\"\n }" headers: cache-control: - no-cache @@ -581,7 +583,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:55:05 GMT + - Thu, 15 Jun 2023 02:24:49 GMT expires: - '-1' pragma: @@ -613,14 +615,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e59922f-a1d4-4a59-8f97-87d7787d4434?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cb4ed43c-bd3a-4906-9a3c-653105fb1b85?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2f92594e-d4a1-594a-8f97-87d7787d4434\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:52:33.3442811Z\"\n }" + string: "{\n \"name\": \"3cd44ecb-3abd-0649-9a3c-653105fb1b85\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:22:49.1849717Z\"\n }" headers: cache-control: - no-cache @@ -629,7 +631,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:55:36 GMT + - Thu, 15 Jun 2023 02:25:19 GMT expires: - '-1' pragma: @@ -661,14 +663,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e59922f-a1d4-4a59-8f97-87d7787d4434?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cb4ed43c-bd3a-4906-9a3c-653105fb1b85?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2f92594e-d4a1-594a-8f97-87d7787d4434\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:52:33.3442811Z\"\n }" + string: "{\n \"name\": \"3cd44ecb-3abd-0649-9a3c-653105fb1b85\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:22:49.1849717Z\"\n }" headers: cache-control: - no-cache @@ -677,7 +679,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:56:06 GMT + - Thu, 15 Jun 2023 02:25:50 GMT expires: - '-1' pragma: @@ -709,15 +711,15 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e59922f-a1d4-4a59-8f97-87d7787d4434?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cb4ed43c-bd3a-4906-9a3c-653105fb1b85?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2f92594e-d4a1-594a-8f97-87d7787d4434\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-04-10T02:52:33.3442811Z\",\n \"endTime\": - \"2023-04-10T02:56:26.8655555Z\"\n }" + string: "{\n \"name\": \"3cd44ecb-3abd-0649-9a3c-653105fb1b85\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T02:22:49.1849717Z\",\n \"\ + endTime\": \"2023-06-15T02:26:09.6921796Z\"\n }" headers: cache-control: - no-cache @@ -726,7 +728,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:56:36 GMT + - Thu, 15 Jun 2023 02:26:20 GMT expires: - '-1' pragma: @@ -758,65 +760,67 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value --enable-node-public-ip --node-public-ip-prefix-id User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.10\",\n \"currentKubernetesVersion\": \"1.24.10\",\n \"dnsPrefix\": - \"cliakstest-clitestkp2m7c346-0b1f64\",\n \"fqdn\": \"cliakstest-clitestkp2m7c346-0b1f64-6wyen8uy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestkp2m7c346-0b1f64-6wyen8uy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.10\",\n \"currentOrchestratorVersion\": - \"1.24.10\",\n \"enableNodePublicIP\": true,\n \"nodePublicIPPrefixID\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksipprefix000003\",\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.22.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3a4d1000-6515-4216-9dcb-88bce3ab039c\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestituxb44pt-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestituxb44pt-8ecadf-ha1vwxyz.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestituxb44pt-8ecadf-ha1vwxyz.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : true,\n \"nodePublicIPPrefixID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksipprefix000003\"\ + ,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3bcd91b3-c1e3-4e9f-9726-6ec245356786\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4432' + - '4427' content-type: - application/json date: - - Mon, 10 Apr 2023 02:56:37 GMT + - Thu, 15 Jun 2023 02:26:21 GMT expires: - '-1' pragma: @@ -850,8 +854,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -859,17 +863,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ebc3794-bbee-4086-83f9-99de67001299?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd2de13b-89f9-49f1-9426-dceb523060ce?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Mon, 10 Apr 2023 02:56:41 GMT + - Thu, 15 Jun 2023 02:26:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/4ebc3794-bbee-4086-83f9-99de67001299?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/cd2de13b-89f9-49f1-9426-dceb523060ce?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_node_resource_group.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_node_resource_group.yaml old mode 100755 new mode 100644 index 67867a2f970..47ee093f24b --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_node_resource_group.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_node_resource_group.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --node-resource-group User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:23:51 GMT + - Thu, 15 Jun 2023 02:26:28 GMT expires: - '-1' pragma: @@ -46,19 +46,19 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest7pltozshs-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestgfiqaa3dx-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "nodeResourceGroup": - "cliaksnrg000003", "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "nodeResourceGroup": "cliaksnrg000003", + "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": + "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": + false, "storageProfile": {}}}' headers: Accept: - application/json @@ -69,67 +69,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1499' + - '1791' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --ssh-key-value --node-resource-group User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest7pltozshs-79a739\",\n \"fqdn\": \"cliakstest-clitest7pltozshs-79a739-1r9ntz2y.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest7pltozshs-79a739-1r9ntz2y.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"cliaksnrg000003\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n - \ \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n - \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestgfiqaa3dx-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestgfiqaa3dx-8ecadf-uqwrde9n.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestgfiqaa3dx-8ecadf-uqwrde9n.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"cliaksnrg000003\",\n \"enableRBAC\": true,\n\ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5de76d-8505-4822-bdaa-d2749c43d2d1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa6b5079-a47c-423a-86f3-409967f0e343?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3242' + - '3570' content-type: - application/json date: - - Wed, 15 Mar 2023 10:23:54 GMT + - Thu, 15 Jun 2023 02:26:35 GMT expires: - '-1' pragma: @@ -159,14 +161,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --node-resource-group User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5de76d-8505-4822-bdaa-d2749c43d2d1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa6b5079-a47c-423a-86f3-409967f0e343?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6de75d8d-0585-2248-bdaa-d2749c43d2d1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:23:54.7631554Z\"\n }" + string: "{\n \"name\": \"79506bfa-7ca4-3a42-86f3-409967f0e343\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:26:34.8260604Z\"\n }" headers: cache-control: - no-cache @@ -175,7 +177,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:24:24 GMT + - Thu, 15 Jun 2023 02:26:35 GMT expires: - '-1' pragma: @@ -207,14 +209,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --node-resource-group User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5de76d-8505-4822-bdaa-d2749c43d2d1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa6b5079-a47c-423a-86f3-409967f0e343?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6de75d8d-0585-2248-bdaa-d2749c43d2d1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:23:54.7631554Z\"\n }" + string: "{\n \"name\": \"79506bfa-7ca4-3a42-86f3-409967f0e343\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:26:34.8260604Z\"\n }" headers: cache-control: - no-cache @@ -223,7 +225,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:24:54 GMT + - Thu, 15 Jun 2023 02:27:05 GMT expires: - '-1' pragma: @@ -255,14 +257,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --node-resource-group User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5de76d-8505-4822-bdaa-d2749c43d2d1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa6b5079-a47c-423a-86f3-409967f0e343?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6de75d8d-0585-2248-bdaa-d2749c43d2d1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:23:54.7631554Z\"\n }" + string: "{\n \"name\": \"79506bfa-7ca4-3a42-86f3-409967f0e343\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:26:34.8260604Z\"\n }" headers: cache-control: - no-cache @@ -271,7 +273,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:25:24 GMT + - Thu, 15 Jun 2023 02:27:35 GMT expires: - '-1' pragma: @@ -303,14 +305,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --node-resource-group User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5de76d-8505-4822-bdaa-d2749c43d2d1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa6b5079-a47c-423a-86f3-409967f0e343?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6de75d8d-0585-2248-bdaa-d2749c43d2d1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:23:54.7631554Z\"\n }" + string: "{\n \"name\": \"79506bfa-7ca4-3a42-86f3-409967f0e343\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:26:34.8260604Z\"\n }" headers: cache-control: - no-cache @@ -319,7 +321,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:25:54 GMT + - Thu, 15 Jun 2023 02:28:05 GMT expires: - '-1' pragma: @@ -351,14 +353,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --node-resource-group User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5de76d-8505-4822-bdaa-d2749c43d2d1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa6b5079-a47c-423a-86f3-409967f0e343?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6de75d8d-0585-2248-bdaa-d2749c43d2d1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:23:54.7631554Z\"\n }" + string: "{\n \"name\": \"79506bfa-7ca4-3a42-86f3-409967f0e343\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:26:34.8260604Z\"\n }" headers: cache-control: - no-cache @@ -367,7 +369,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:26:24 GMT + - Thu, 15 Jun 2023 02:28:35 GMT expires: - '-1' pragma: @@ -399,14 +401,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --node-resource-group User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5de76d-8505-4822-bdaa-d2749c43d2d1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa6b5079-a47c-423a-86f3-409967f0e343?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6de75d8d-0585-2248-bdaa-d2749c43d2d1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:23:54.7631554Z\"\n }" + string: "{\n \"name\": \"79506bfa-7ca4-3a42-86f3-409967f0e343\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:26:34.8260604Z\"\n }" headers: cache-control: - no-cache @@ -415,7 +417,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:26:54 GMT + - Thu, 15 Jun 2023 02:29:05 GMT expires: - '-1' pragma: @@ -447,15 +449,63 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --node-resource-group User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d5de76d-8505-4822-bdaa-d2749c43d2d1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa6b5079-a47c-423a-86f3-409967f0e343?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6de75d8d-0585-2248-bdaa-d2749c43d2d1\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:23:54.7631554Z\",\n \"endTime\": - \"2023-03-15T10:27:16.7992713Z\"\n }" + string: "{\n \"name\": \"79506bfa-7ca4-3a42-86f3-409967f0e343\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:26:34.8260604Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 02:29:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --ssh-key-value --node-resource-group + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fa6b5079-a47c-423a-86f3-409967f0e343?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"79506bfa-7ca4-3a42-86f3-409967f0e343\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T02:26:34.8260604Z\",\n \"\ + endTime\": \"2023-06-15T02:29:55.6643814Z\"\n }" headers: cache-control: - no-cache @@ -464,7 +514,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:27:25 GMT + - Thu, 15 Jun 2023 02:30:05 GMT expires: - '-1' pragma: @@ -496,63 +546,66 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --node-resource-group User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest7pltozshs-79a739\",\n \"fqdn\": \"cliakstest-clitest7pltozshs-79a739-1r9ntz2y.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest7pltozshs-79a739-1r9ntz2y.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"cliaksnrg000003\",\n \"enableRBAC\": true,\n \"networkProfile\": {\n - \ \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n - \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliaksnrg000003/providers/Microsoft.Network/publicIPAddresses/a86d3f8f-fe10-4fdd-867c-558eaf06b3d8\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliaksnrg000003/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestgfiqaa3dx-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestgfiqaa3dx-8ecadf-uqwrde9n.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestgfiqaa3dx-8ecadf-uqwrde9n.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"cliaksnrg000003\",\n \"enableRBAC\": true,\n\ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliaksnrg000003/providers/Microsoft.Network/publicIPAddresses/cd7b1e10-f0ea-476d-b04e-83403eb219ef\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliaksnrg000003/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3843' + - '4171' content-type: - application/json date: - - Wed, 15 Mar 2023 10:27:25 GMT + - Thu, 15 Jun 2023 02:30:06 GMT expires: - '-1' pragma: @@ -586,8 +639,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -595,17 +648,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5644279-743d-4043-9231-cbfee1efb467?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/462a459c-6302-48a2-95af-cdc06460ee83?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:27:26 GMT + - Thu, 15 Jun 2023 02:30:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/b5644279-743d-4043-9231-cbfee1efb467?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/462a459c-6302-48a2-95af-cdc06460ee83?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad.yaml index 59d260b60b8..c36a0bd4325 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:27:27 GMT + - Thu, 15 Jun 2023 02:30:18 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:27:27Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_nonaad_and_update_with_managed_aad","date":"2023-06-15T02:30:17Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '387' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:27:26 GMT + - Thu, 15 Jun 2023 02:30:18 GMT expires: - '-1' pragma: @@ -87,20 +87,19 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestatcl7u4df-79a739", + body: '{"location": "southcentralus", "identity": {"type": "SystemAssigned"}, + "properties": {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestzz7iwxisu-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -111,67 +110,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1459' + - '1758' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestatcl7u4df-79a739\",\n \"fqdn\": \"cliakstest-clitestatcl7u4df-79a739-g44bjpwb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestatcl7u4df-79a739-g44bjpwb.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"southcentralus\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestzz7iwxisu-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestzz7iwxisu-8ecadf-ktod2tgm.hcp.southcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestzz7iwxisu-8ecadf-ktod2tgm.portal.hcp.southcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_southcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9670858d-ad8e-46f0-90fc-126b95342330?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/96c1c1da-ade3-4e70-a2ce-0fb035b02125?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3268' + - '3624' content-type: - application/json date: - - Wed, 15 Mar 2023 10:27:31 GMT + - Thu, 15 Jun 2023 02:30:24 GMT expires: - '-1' pragma: @@ -183,7 +184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1199' status: code: 201 message: Created @@ -201,14 +202,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9670858d-ad8e-46f0-90fc-126b95342330?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/96c1c1da-ade3-4e70-a2ce-0fb035b02125?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8d857096-8ead-f046-90fc-126b95342330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:27:31.1702801Z\"\n }" + string: "{\n \"name\": \"dac1c196-e3ad-704e-a2ce-0fb035b02125\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:30:24.4101055Z\"\n }" headers: cache-control: - no-cache @@ -217,7 +218,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:28:00 GMT + - Thu, 15 Jun 2023 02:30:24 GMT expires: - '-1' pragma: @@ -249,14 +250,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9670858d-ad8e-46f0-90fc-126b95342330?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/96c1c1da-ade3-4e70-a2ce-0fb035b02125?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8d857096-8ead-f046-90fc-126b95342330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:27:31.1702801Z\"\n }" + string: "{\n \"name\": \"dac1c196-e3ad-704e-a2ce-0fb035b02125\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:30:24.4101055Z\"\n }" headers: cache-control: - no-cache @@ -265,7 +266,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:28:31 GMT + - Thu, 15 Jun 2023 02:30:54 GMT expires: - '-1' pragma: @@ -297,14 +298,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9670858d-ad8e-46f0-90fc-126b95342330?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/96c1c1da-ade3-4e70-a2ce-0fb035b02125?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8d857096-8ead-f046-90fc-126b95342330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:27:31.1702801Z\"\n }" + string: "{\n \"name\": \"dac1c196-e3ad-704e-a2ce-0fb035b02125\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:30:24.4101055Z\"\n }" headers: cache-control: - no-cache @@ -313,7 +314,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:29:00 GMT + - Thu, 15 Jun 2023 02:31:25 GMT expires: - '-1' pragma: @@ -345,14 +346,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9670858d-ad8e-46f0-90fc-126b95342330?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/96c1c1da-ade3-4e70-a2ce-0fb035b02125?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8d857096-8ead-f046-90fc-126b95342330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:27:31.1702801Z\"\n }" + string: "{\n \"name\": \"dac1c196-e3ad-704e-a2ce-0fb035b02125\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:30:24.4101055Z\"\n }" headers: cache-control: - no-cache @@ -361,7 +362,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:29:31 GMT + - Thu, 15 Jun 2023 02:31:55 GMT expires: - '-1' pragma: @@ -393,14 +394,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9670858d-ad8e-46f0-90fc-126b95342330?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/96c1c1da-ade3-4e70-a2ce-0fb035b02125?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8d857096-8ead-f046-90fc-126b95342330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:27:31.1702801Z\"\n }" + string: "{\n \"name\": \"dac1c196-e3ad-704e-a2ce-0fb035b02125\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:30:24.4101055Z\"\n }" headers: cache-control: - no-cache @@ -409,7 +410,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:30:01 GMT + - Thu, 15 Jun 2023 02:32:25 GMT expires: - '-1' pragma: @@ -441,14 +442,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9670858d-ad8e-46f0-90fc-126b95342330?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/96c1c1da-ade3-4e70-a2ce-0fb035b02125?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8d857096-8ead-f046-90fc-126b95342330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:27:31.1702801Z\"\n }" + string: "{\n \"name\": \"dac1c196-e3ad-704e-a2ce-0fb035b02125\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:30:24.4101055Z\"\n }" headers: cache-control: - no-cache @@ -457,7 +458,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:30:31 GMT + - Thu, 15 Jun 2023 02:32:55 GMT expires: - '-1' pragma: @@ -489,14 +490,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9670858d-ad8e-46f0-90fc-126b95342330?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/96c1c1da-ade3-4e70-a2ce-0fb035b02125?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8d857096-8ead-f046-90fc-126b95342330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:27:31.1702801Z\"\n }" + string: "{\n \"name\": \"dac1c196-e3ad-704e-a2ce-0fb035b02125\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:30:24.4101055Z\"\n }" headers: cache-control: - no-cache @@ -505,7 +506,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:31:01 GMT + - Thu, 15 Jun 2023 02:33:25 GMT expires: - '-1' pragma: @@ -537,119 +538,24 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9670858d-ad8e-46f0-90fc-126b95342330?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/96c1c1da-ade3-4e70-a2ce-0fb035b02125?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8d857096-8ead-f046-90fc-126b95342330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:27:31.1702801Z\"\n }" + string: "{\n \"name\": \"dac1c196-e3ad-704e-a2ce-0fb035b02125\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T02:30:24.4101055Z\",\n \"\ + endTime\": \"2023-06-15T02:33:55.1040583Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:31:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --vm-set-type --node-count --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9670858d-ad8e-46f0-90fc-126b95342330?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"8d857096-8ead-f046-90fc-126b95342330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:27:31.1702801Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:32:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --vm-set-type --node-count --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9670858d-ad8e-46f0-90fc-126b95342330?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"8d857096-8ead-f046-90fc-126b95342330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:27:31.1702801Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 10:32:31 GMT + - Thu, 15 Jun 2023 02:33:56 GMT expires: - '-1' pragma: @@ -681,23 +587,66 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9670858d-ad8e-46f0-90fc-126b95342330?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"8d857096-8ead-f046-90fc-126b95342330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:27:31.1702801Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"southcentralus\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestzz7iwxisu-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestzz7iwxisu-8ecadf-ktod2tgm.hcp.southcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestzz7iwxisu-8ecadf-ktod2tgm.portal.hcp.southcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_southcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_southcentralus/providers/Microsoft.Network/publicIPAddresses/7d543974-c94f-41ac-83bd-f614bb6a3f45\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_southcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '4291' content-type: - application/json date: - - Wed, 15 Mar 2023 10:33:02 GMT + - Thu, 15 Jun 2023 02:33:57 GMT expires: - '-1' pragma: @@ -719,123 +668,77 @@ interactions: body: null headers: Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --vm-set-type --node-count --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9670858d-ad8e-46f0-90fc-126b95342330?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"8d857096-8ead-f046-90fc-126b95342330\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:27:31.1702801Z\",\n \"endTime\": - \"2023-03-15T10:33:06.7735718Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '170' - content-type: - application/json - date: - - Wed, 15 Mar 2023 10:33:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive ParameterSetName: - - --resource-group --name --vm-set-type --node-count --ssh-key-value -o + - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id + -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestatcl7u4df-79a739\",\n \"fqdn\": \"cliakstest-clitestatcl7u4df-79a739-g44bjpwb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestatcl7u4df-79a739-g44bjpwb.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4cd5ce03-94a7-4185-940a-b91768fc87c2\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"southcentralus\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestzz7iwxisu-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestzz7iwxisu-8ecadf-ktod2tgm.hcp.southcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestzz7iwxisu-8ecadf-ktod2tgm.portal.hcp.southcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_southcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_southcentralus/providers/Microsoft.Network/publicIPAddresses/7d543974-c94f-41ac-83bd-f614bb6a3f45\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_southcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4291' content-type: - application/json date: - - Wed, 15 Mar 2023 10:33:32 GMT + - Thu, 15 Jun 2023 02:33:58 GMT expires: - '-1' pragma: @@ -854,7 +757,31 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "southcentralus", "sku": {"name": "Base", "tier": "Free"}, + "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": + "1.25.6", "dnsPrefix": "cliakstest-clitestzz7iwxisu-8ecadf", "agentPoolProfiles": + [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": + "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": + "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": + "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": + {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_southcentralus", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_southcentralus/providers/Microsoft.Network/publicIPAddresses/7d543974-c94f-41ac-83bd-f614bb6a3f45"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "aadProfile": {"managed": true, "adminGroupObjectIDs": ["00000000-0000-0000-0000-000000000001"], + "tenantID": "00000000-0000-0000-0000-000000000002"}, "identityProfile": {"kubeletidentity": + {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_southcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, + "workloadAutoScalerProfile": {}}}' headers: Accept: - application/json @@ -864,68 +791,79 @@ interactions: - aks update Connection: - keep-alive + Content-Length: + - '2990' + Content-Type: + - application/json ParameterSetName: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestatcl7u4df-79a739\",\n \"fqdn\": \"cliakstest-clitestatcl7u4df-79a739-g44bjpwb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestatcl7u4df-79a739-g44bjpwb.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4cd5ce03-94a7-4185-940a-b91768fc87c2\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"southcentralus\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestzz7iwxisu-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestzz7iwxisu-8ecadf-ktod2tgm.hcp.southcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestzz7iwxisu-8ecadf-ktod2tgm.portal.hcp.southcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_southcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_southcentralus/providers/Microsoft.Network/publicIPAddresses/7d543974-c94f-41ac-83bd-f614bb6a3f45\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n\ + \ \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\ + \n ],\n \"adminUsers\": null,\n \"tenantID\": \"00000000-0000-0000-0000-000000000002\"\ + \n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ + : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_southcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/d3cadfae-0c6a-4a32-9005-db5c849ed7c9?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3921' + - '4494' content-type: - application/json date: - - Wed, 15 Mar 2023 10:33:34 GMT + - Thu, 15 Jun 2023 02:34:02 GMT expires: - '-1' pragma: @@ -940,113 +878,43 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestatcl7u4df-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": - "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": - "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": - false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": - false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, - "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4cd5ce03-94a7-4185-940a-b91768fc87c2"}]}, - "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": - ["IPv4"]}, "aadProfile": {"managed": true, "adminGroupObjectIDs": ["00000000-0000-0000-0000-000000000001"], - "tenantID": "00000000-0000-0000-0000-000000000002"}, "identityProfile": {"kubeletidentity": - {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", - "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, - "workloadAutoScalerProfile": {}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks update Connection: - keep-alive - Content-Length: - - '2634' - Content-Type: - - application/json ParameterSetName: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/d3cadfae-0c6a-4a32-9005-db5c849ed7c9?api-version=2017-08-31 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestatcl7u4df-79a739\",\n \"fqdn\": \"cliakstest-clitestatcl7u4df-79a739-g44bjpwb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestatcl7u4df-79a739-g44bjpwb.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4cd5ce03-94a7-4185-940a-b91768fc87c2\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": - {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n - \ ],\n \"adminUsers\": null,\n \"tenantID\": \"00000000-0000-0000-0000-000000000002\"\n - \ },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": - {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"aedfcad3-6a0c-324a-9005-db5c849ed7c9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:34:02.2209869Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4e708b3-4c87-4521-b307-029f3ea7d3e3?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4124' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:33:36 GMT + - Thu, 15 Jun 2023 02:34:02 GMT expires: - '-1' pragma: @@ -1061,8 +929,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' status: code: 200 message: OK @@ -1081,14 +947,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4e708b3-4c87-4521-b307-029f3ea7d3e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/d3cadfae-0c6a-4a32-9005-db5c849ed7c9?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"b308e7d4-874c-2145-b307-029f3ea7d3e3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:33:36.6246577Z\"\n }" + string: "{\n \"name\": \"aedfcad3-6a0c-324a-9005-db5c849ed7c9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:34:02.2209869Z\"\n }" headers: cache-control: - no-cache @@ -1097,7 +963,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:34:06 GMT + - Thu, 15 Jun 2023 02:34:32 GMT expires: - '-1' pragma: @@ -1130,14 +996,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4e708b3-4c87-4521-b307-029f3ea7d3e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/d3cadfae-0c6a-4a32-9005-db5c849ed7c9?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"b308e7d4-874c-2145-b307-029f3ea7d3e3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:33:36.6246577Z\"\n }" + string: "{\n \"name\": \"aedfcad3-6a0c-324a-9005-db5c849ed7c9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:34:02.2209869Z\"\n }" headers: cache-control: - no-cache @@ -1146,7 +1012,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:34:36 GMT + - Thu, 15 Jun 2023 02:35:02 GMT expires: - '-1' pragma: @@ -1179,14 +1045,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4e708b3-4c87-4521-b307-029f3ea7d3e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/d3cadfae-0c6a-4a32-9005-db5c849ed7c9?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"b308e7d4-874c-2145-b307-029f3ea7d3e3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:33:36.6246577Z\"\n }" + string: "{\n \"name\": \"aedfcad3-6a0c-324a-9005-db5c849ed7c9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:34:02.2209869Z\"\n }" headers: cache-control: - no-cache @@ -1195,7 +1061,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:35:06 GMT + - Thu, 15 Jun 2023 02:35:33 GMT expires: - '-1' pragma: @@ -1228,14 +1094,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4e708b3-4c87-4521-b307-029f3ea7d3e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/d3cadfae-0c6a-4a32-9005-db5c849ed7c9?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"b308e7d4-874c-2145-b307-029f3ea7d3e3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:33:36.6246577Z\"\n }" + string: "{\n \"name\": \"aedfcad3-6a0c-324a-9005-db5c849ed7c9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:34:02.2209869Z\"\n }" headers: cache-control: - no-cache @@ -1244,7 +1110,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:35:36 GMT + - Thu, 15 Jun 2023 02:36:03 GMT expires: - '-1' pragma: @@ -1277,15 +1143,15 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d4e708b3-4c87-4521-b307-029f3ea7d3e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/d3cadfae-0c6a-4a32-9005-db5c849ed7c9?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"b308e7d4-874c-2145-b307-029f3ea7d3e3\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:33:36.6246577Z\",\n \"endTime\": - \"2023-03-15T10:35:41.4010394Z\"\n }" + string: "{\n \"name\": \"aedfcad3-6a0c-324a-9005-db5c849ed7c9\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T02:34:02.2209869Z\",\n \"\ + endTime\": \"2023-06-15T02:36:20.4831669Z\"\n }" headers: cache-control: - no-cache @@ -1294,7 +1160,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:36:06 GMT + - Thu, 15 Jun 2023 02:36:33 GMT expires: - '-1' pragma: @@ -1327,66 +1193,69 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestatcl7u4df-79a739\",\n \"fqdn\": \"cliakstest-clitestatcl7u4df-79a739-g44bjpwb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestatcl7u4df-79a739-g44bjpwb.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4cd5ce03-94a7-4185-940a-b91768fc87c2\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": - {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n - \ ],\n \"adminUsers\": null,\n \"tenantID\": \"00000000-0000-0000-0000-000000000002\"\n - \ },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": - {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"southcentralus\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestzz7iwxisu-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestzz7iwxisu-8ecadf-ktod2tgm.hcp.southcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestzz7iwxisu-8ecadf-ktod2tgm.portal.hcp.southcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_southcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_southcentralus/providers/Microsoft.Network/publicIPAddresses/7d543974-c94f-41ac-83bd-f614bb6a3f45\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n\ + \ \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\ + \n ],\n \"adminUsers\": null,\n \"tenantID\": \"00000000-0000-0000-0000-000000000002\"\ + \n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ + : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_southcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4126' + - '4496' content-type: - application/json date: - - Wed, 15 Mar 2023 10:36:06 GMT + - Thu, 15 Jun 2023 02:36:34 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad_msi.yaml index a9c9c3be8bd..66f05433d11 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_nonaad_and_update_with_managed_aad_msi.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:15:58 GMT + - Thu, 15 Jun 2023 02:36:38 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:15:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_nonaad_and_update_with_managed_aad_msi","date":"2023-06-15T02:36:37Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '391' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:15:58 GMT + - Thu, 15 Jun 2023 02:36:38 GMT expires: - '-1' pragma: @@ -87,20 +87,19 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestg6vdm6y67-79a739", + body: '{"location": "southcentralus", "identity": {"type": "SystemAssigned"}, + "properties": {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesttg73ndgxc-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -111,67 +110,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1459' + - '1758' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestg6vdm6y67-79a739\",\n \"fqdn\": \"cliakstest-clitestg6vdm6y67-79a739-lwn3voaf.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestg6vdm6y67-79a739-lwn3voaf.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"southcentralus\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitesttg73ndgxc-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesttg73ndgxc-8ecadf-iu20jk3z.hcp.southcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesttg73ndgxc-8ecadf-iu20jk3z.portal.hcp.southcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_southcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/032297e2-6fa9-4071-8871-9aba302be847?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/c1feb0fb-4e9a-40d1-9821-9b4c117f6f89?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3268' + - '3624' content-type: - application/json date: - - Wed, 15 Mar 2023 10:16:02 GMT + - Thu, 15 Jun 2023 02:36:45 GMT expires: - '-1' pragma: @@ -183,7 +184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -201,14 +202,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/032297e2-6fa9-4071-8871-9aba302be847?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/c1feb0fb-4e9a-40d1-9821-9b4c117f6f89?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"e2972203-a96f-7140-8871-9aba302be847\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:16:02.7142744Z\"\n }" + string: "{\n \"name\": \"fbb0fec1-9a4e-d140-9821-9b4c117f6f89\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:36:45.2623167Z\"\n }" headers: cache-control: - no-cache @@ -217,7 +218,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:16:32 GMT + - Thu, 15 Jun 2023 02:36:45 GMT expires: - '-1' pragma: @@ -249,14 +250,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/032297e2-6fa9-4071-8871-9aba302be847?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/c1feb0fb-4e9a-40d1-9821-9b4c117f6f89?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"e2972203-a96f-7140-8871-9aba302be847\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:16:02.7142744Z\"\n }" + string: "{\n \"name\": \"fbb0fec1-9a4e-d140-9821-9b4c117f6f89\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:36:45.2623167Z\"\n }" headers: cache-control: - no-cache @@ -265,7 +266,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:02 GMT + - Thu, 15 Jun 2023 02:37:15 GMT expires: - '-1' pragma: @@ -297,14 +298,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/032297e2-6fa9-4071-8871-9aba302be847?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/c1feb0fb-4e9a-40d1-9821-9b4c117f6f89?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"e2972203-a96f-7140-8871-9aba302be847\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:16:02.7142744Z\"\n }" + string: "{\n \"name\": \"fbb0fec1-9a4e-d140-9821-9b4c117f6f89\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:36:45.2623167Z\"\n }" headers: cache-control: - no-cache @@ -313,7 +314,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:33 GMT + - Thu, 15 Jun 2023 02:37:45 GMT expires: - '-1' pragma: @@ -345,14 +346,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/032297e2-6fa9-4071-8871-9aba302be847?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/c1feb0fb-4e9a-40d1-9821-9b4c117f6f89?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"e2972203-a96f-7140-8871-9aba302be847\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:16:02.7142744Z\"\n }" + string: "{\n \"name\": \"fbb0fec1-9a4e-d140-9821-9b4c117f6f89\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:36:45.2623167Z\"\n }" headers: cache-control: - no-cache @@ -361,7 +362,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:18:02 GMT + - Thu, 15 Jun 2023 02:38:15 GMT expires: - '-1' pragma: @@ -393,14 +394,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/032297e2-6fa9-4071-8871-9aba302be847?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/c1feb0fb-4e9a-40d1-9821-9b4c117f6f89?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"e2972203-a96f-7140-8871-9aba302be847\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:16:02.7142744Z\"\n }" + string: "{\n \"name\": \"fbb0fec1-9a4e-d140-9821-9b4c117f6f89\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:36:45.2623167Z\"\n }" headers: cache-control: - no-cache @@ -409,7 +410,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:18:32 GMT + - Thu, 15 Jun 2023 02:38:46 GMT expires: - '-1' pragma: @@ -441,14 +442,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/032297e2-6fa9-4071-8871-9aba302be847?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/c1feb0fb-4e9a-40d1-9821-9b4c117f6f89?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"e2972203-a96f-7140-8871-9aba302be847\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:16:02.7142744Z\"\n }" + string: "{\n \"name\": \"fbb0fec1-9a4e-d140-9821-9b4c117f6f89\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:36:45.2623167Z\"\n }" headers: cache-control: - no-cache @@ -457,7 +458,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:19:02 GMT + - Thu, 15 Jun 2023 02:39:16 GMT expires: - '-1' pragma: @@ -489,14 +490,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/032297e2-6fa9-4071-8871-9aba302be847?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/c1feb0fb-4e9a-40d1-9821-9b4c117f6f89?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"e2972203-a96f-7140-8871-9aba302be847\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:16:02.7142744Z\"\n }" + string: "{\n \"name\": \"fbb0fec1-9a4e-d140-9821-9b4c117f6f89\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:36:45.2623167Z\"\n }" headers: cache-control: - no-cache @@ -505,7 +506,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:19:32 GMT + - Thu, 15 Jun 2023 02:39:46 GMT expires: - '-1' pragma: @@ -537,15 +538,63 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/032297e2-6fa9-4071-8871-9aba302be847?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/c1feb0fb-4e9a-40d1-9821-9b4c117f6f89?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"e2972203-a96f-7140-8871-9aba302be847\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:16:02.7142744Z\",\n \"endTime\": - \"2023-03-15T10:19:41.3044062Z\"\n }" + string: "{\n \"name\": \"fbb0fec1-9a4e-d140-9821-9b4c117f6f89\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:36:45.2623167Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 02:40:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type --node-count --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/c1feb0fb-4e9a-40d1-9821-9b4c117f6f89?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"fbb0fec1-9a4e-d140-9821-9b4c117f6f89\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T02:36:45.2623167Z\",\n \"\ + endTime\": \"2023-06-15T02:40:19.9700312Z\"\n }" headers: cache-control: - no-cache @@ -554,7 +603,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:03 GMT + - Thu, 15 Jun 2023 02:40:47 GMT expires: - '-1' pragma: @@ -586,64 +635,66 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestg6vdm6y67-79a739\",\n \"fqdn\": \"cliakstest-clitestg6vdm6y67-79a739-lwn3voaf.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestg6vdm6y67-79a739-lwn3voaf.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cf831d92-c9c5-411d-9363-e3df50779d7c\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"southcentralus\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitesttg73ndgxc-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesttg73ndgxc-8ecadf-iu20jk3z.hcp.southcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesttg73ndgxc-8ecadf-iu20jk3z.portal.hcp.southcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_southcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_southcentralus/providers/Microsoft.Network/publicIPAddresses/bef21ec4-e954-43ec-843e-264396e09104\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_southcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4291' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:03 GMT + - Thu, 15 Jun 2023 02:40:47 GMT expires: - '-1' pragma: @@ -676,64 +727,66 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestg6vdm6y67-79a739\",\n \"fqdn\": \"cliakstest-clitestg6vdm6y67-79a739-lwn3voaf.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestg6vdm6y67-79a739-lwn3voaf.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cf831d92-c9c5-411d-9363-e3df50779d7c\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"southcentralus\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitesttg73ndgxc-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesttg73ndgxc-8ecadf-iu20jk3z.hcp.southcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesttg73ndgxc-8ecadf-iu20jk3z.portal.hcp.southcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_southcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_southcentralus/providers/Microsoft.Network/publicIPAddresses/bef21ec4-e954-43ec-843e-264396e09104\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_southcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4291' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:04 GMT + - Thu, 15 Jun 2023 02:40:49 GMT expires: - '-1' pragma: @@ -752,27 +805,28 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestg6vdm6y67-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": - "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": - "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": - false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": - false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, - "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cf831d92-c9c5-411d-9363-e3df50779d7c"}]}, + body: '{"location": "southcentralus", "sku": {"name": "Base", "tier": "Free"}, + "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": + "1.25.6", "dnsPrefix": "cliakstest-clitesttg73ndgxc-8ecadf", "agentPoolProfiles": + [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": + "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": + "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": + "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": + {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_southcentralus", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_southcentralus/providers/Microsoft.Network/publicIPAddresses/bef21ec4-e954-43ec-843e-264396e09104"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "aadProfile": {"managed": true, "adminGroupObjectIDs": ["00000000-0000-0000-0000-000000000001"], "tenantID": "00000000-0000-0000-0000-000000000002"}, "identityProfile": {"kubeletidentity": - {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", + {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_southcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, "workloadAutoScalerProfile": {}}}' @@ -786,75 +840,78 @@ interactions: Connection: - keep-alive Content-Length: - - '2634' + - '2990' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestg6vdm6y67-79a739\",\n \"fqdn\": \"cliakstest-clitestg6vdm6y67-79a739-lwn3voaf.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestg6vdm6y67-79a739-lwn3voaf.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cf831d92-c9c5-411d-9363-e3df50779d7c\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": - {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n - \ ],\n \"adminUsers\": null,\n \"tenantID\": \"00000000-0000-0000-0000-000000000002\"\n - \ },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": - {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"southcentralus\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitesttg73ndgxc-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesttg73ndgxc-8ecadf-iu20jk3z.hcp.southcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesttg73ndgxc-8ecadf-iu20jk3z.portal.hcp.southcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_southcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_southcentralus/providers/Microsoft.Network/publicIPAddresses/bef21ec4-e954-43ec-843e-264396e09104\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n\ + \ \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\ + \n ],\n \"adminUsers\": null,\n \"tenantID\": \"00000000-0000-0000-0000-000000000002\"\ + \n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ + : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_southcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bda978be-6518-4972-a73e-687c0cd4eb9c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/98ba4a39-decc-49ca-b996-5869272b80f2?api-version=2017-08-31 cache-control: - no-cache content-length: - - '4124' + - '4494' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:06 GMT + - Thu, 15 Jun 2023 02:40:53 GMT expires: - '-1' pragma: @@ -870,7 +927,56 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id + -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/98ba4a39-decc-49ca-b996-5869272b80f2?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"394aba98-ccde-ca49-b996-5869272b80f2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:40:53.2778182Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 02:40:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -889,14 +995,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bda978be-6518-4972-a73e-687c0cd4eb9c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/98ba4a39-decc-49ca-b996-5869272b80f2?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"be78a9bd-1865-7249-a73e-687c0cd4eb9c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:20:06.6835336Z\"\n }" + string: "{\n \"name\": \"394aba98-ccde-ca49-b996-5869272b80f2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:40:53.2778182Z\"\n }" headers: cache-control: - no-cache @@ -905,7 +1011,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:36 GMT + - Thu, 15 Jun 2023 02:41:23 GMT expires: - '-1' pragma: @@ -938,14 +1044,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bda978be-6518-4972-a73e-687c0cd4eb9c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/98ba4a39-decc-49ca-b996-5869272b80f2?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"be78a9bd-1865-7249-a73e-687c0cd4eb9c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:20:06.6835336Z\"\n }" + string: "{\n \"name\": \"394aba98-ccde-ca49-b996-5869272b80f2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:40:53.2778182Z\"\n }" headers: cache-control: - no-cache @@ -954,7 +1060,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:21:06 GMT + - Thu, 15 Jun 2023 02:41:54 GMT expires: - '-1' pragma: @@ -987,14 +1093,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bda978be-6518-4972-a73e-687c0cd4eb9c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/98ba4a39-decc-49ca-b996-5869272b80f2?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"be78a9bd-1865-7249-a73e-687c0cd4eb9c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:20:06.6835336Z\"\n }" + string: "{\n \"name\": \"394aba98-ccde-ca49-b996-5869272b80f2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:40:53.2778182Z\"\n }" headers: cache-control: - no-cache @@ -1003,7 +1109,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:21:37 GMT + - Thu, 15 Jun 2023 02:42:24 GMT expires: - '-1' pragma: @@ -1036,14 +1142,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bda978be-6518-4972-a73e-687c0cd4eb9c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/98ba4a39-decc-49ca-b996-5869272b80f2?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"be78a9bd-1865-7249-a73e-687c0cd4eb9c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:20:06.6835336Z\"\n }" + string: "{\n \"name\": \"394aba98-ccde-ca49-b996-5869272b80f2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:40:53.2778182Z\"\n }" headers: cache-control: - no-cache @@ -1052,7 +1158,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:06 GMT + - Thu, 15 Jun 2023 02:42:54 GMT expires: - '-1' pragma: @@ -1085,15 +1191,15 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bda978be-6518-4972-a73e-687c0cd4eb9c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/southcentralus/operations/98ba4a39-decc-49ca-b996-5869272b80f2?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"be78a9bd-1865-7249-a73e-687c0cd4eb9c\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:20:06.6835336Z\",\n \"endTime\": - \"2023-03-15T10:22:19.2576731Z\"\n }" + string: "{\n \"name\": \"394aba98-ccde-ca49-b996-5869272b80f2\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T02:40:53.2778182Z\",\n \"\ + endTime\": \"2023-06-15T02:43:22.4488366Z\"\n }" headers: cache-control: - no-cache @@ -1102,7 +1208,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:36 GMT + - Thu, 15 Jun 2023 02:43:24 GMT expires: - '-1' pragma: @@ -1135,66 +1241,69 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestg6vdm6y67-79a739\",\n \"fqdn\": \"cliakstest-clitestg6vdm6y67-79a739-lwn3voaf.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestg6vdm6y67-79a739-lwn3voaf.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cf831d92-c9c5-411d-9363-e3df50779d7c\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": - {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n - \ ],\n \"adminUsers\": null,\n \"tenantID\": \"00000000-0000-0000-0000-000000000002\"\n - \ },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\": - {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"southcentralus\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitesttg73ndgxc-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesttg73ndgxc-8ecadf-iu20jk3z.hcp.southcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesttg73ndgxc-8ecadf-iu20jk3z.portal.hcp.southcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_southcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_southcentralus/providers/Microsoft.Network/publicIPAddresses/bef21ec4-e954-43ec-843e-264396e09104\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n\ + \ \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\ + \n ],\n \"adminUsers\": null,\n \"tenantID\": \"00000000-0000-0000-0000-000000000002\"\ + \n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ + : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_southcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4126' + - '4496' content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:37 GMT + - Thu, 15 Jun 2023 02:43:24 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_scale_with_custom_nodepool_name.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_scale_with_custom_nodepool_name.yaml old mode 100755 new mode 100644 index 29d46d09ee6..d85fa3d9c92 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_scale_with_custom_nodepool_name.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_scale_with_custom_nodepool_name.yaml @@ -13,54 +13,36 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators?api-version=2019-04-01&resource-type=managedClusters + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators\",\n - \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\",\n - \ \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.23.12\",\n \"upgrades\": - [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.9\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\",\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.6\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.5\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\",\n \"default\": true,\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.4\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.26.0\",\n \"isPreview\": true\n - \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n }\n }" + string: "{\n \"values\": [\n {\n \"version\": \"1.24\",\n \"capabilities\"\ + : {\n \"supportPlan\": [\n \"KubernetesOfficial\"\n ]\n },\n\ + \ \"patchVersions\": {\n \"1.24.10\": {\n \"upgrades\": [\n \ + \ \"1.25.5\",\n \"1.25.6\"\n ]\n },\n \"1.24.9\": {\n\ + \ \"upgrades\": [\n \"1.24.10\",\n \"1.25.5\",\n \"\ + 1.25.6\"\n ]\n }\n }\n },\n {\n \"version\": \"1.25\",\n\ + \ \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\"\ + \n ]\n },\n \"patchVersions\": {\n \"1.25.5\": {\n \"upgrades\"\ + : [\n \"1.26.0\",\n \"1.26.3\",\n \"1.25.6\"\n ]\n\ + \ },\n \"1.25.6\": {\n \"upgrades\": [\n \"1.26.0\",\n\ + \ \"1.26.3\"\n ]\n }\n }\n },\n {\n \"version\":\ + \ \"1.26\",\n \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\"\ + \n ]\n },\n \"patchVersions\": {\n \"1.26.0\": {\n \"upgrades\"\ + : [\n \"1.26.3\"\n ]\n },\n \"1.26.3\": {\n \"upgrades\"\ + : []\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2410' + - '957' content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:37 GMT + - Thu, 15 Jun 2023 02:43:38 GMT expires: - '-1' pragma: @@ -93,8 +75,8 @@ interactions: - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value --tags -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: @@ -110,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:22:37 GMT + - Thu, 15 Jun 2023 02:43:39 GMT expires: - '-1' pragma: @@ -126,20 +108,19 @@ interactions: message: Not Found - request: body: '{"tags": {"scenario_test": ""}, "location": "westus2", "properties": {"kubernetesVersion": - "1.25.5", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": [{"count": 1, + "1.25.6", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.25.5", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": + "1.25.6", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "np000005"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, - "storageProfile": {}}}' + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -150,67 +131,135 @@ interactions: Connection: - keep-alive Content-Length: - - '1546' + - '1838' Content-Type: - application/json ParameterSetName: - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value --tags -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000004\",\n - \ \"fqdn\": \"cliaksdns000004-dtwua7dk.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000004-dtwua7dk.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"np000005\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"details\": null,\n\ + \ \"message\": \"Service principal clientID: f5a24b1e-6270-44ca-82f4-8b5b41d770c0\ + \ not found in Active Directory tenant 72f988bf-86f1-41af-91ab-2d7cd011db47,\ + \ Please see https://aka.ms/aks-sp-help for more details.\",\n \"subcode\"\ + : \"ServicePrincipalNotFound\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '313' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 02:43:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 404 + message: Not Found +- request: + body: '{"tags": {"scenario_test": ""}, "location": "westus2", "properties": {"kubernetesVersion": + "1.25.6", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": [{"count": 1, + "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": + false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.25.6", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": + "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": + [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "np000005"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1838' + Content-Type: + - application/json + ParameterSetName: + - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value + --tags -c + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\"\ + ,\n \"fqdn\": \"cliaksdns000004-v2u5anc3.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000004-v2u5anc3.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"np000005\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9d75accd-7d88-4891-ae37-179731230f5d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38dfaa6d-e8e6-4822-9205-a5e3a9080bf1?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3089' + - '3417' content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:41 GMT + - Thu, 15 Jun 2023 02:43:54 GMT expires: - '-1' pragma: @@ -241,14 +290,63 @@ interactions: - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value --tags -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38dfaa6d-e8e6-4822-9205-a5e3a9080bf1?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"6daadf38-e6e8-2248-9205-a5e3a9080bf1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:43:53.5630339Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 02:43:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value + --tags -c + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9d75accd-7d88-4891-ae37-179731230f5d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38dfaa6d-e8e6-4822-9205-a5e3a9080bf1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cdac759d-887d-9148-ae37-179731230f5d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:22:42.3878255Z\"\n }" + string: "{\n \"name\": \"6daadf38-e6e8-2248-9205-a5e3a9080bf1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:43:53.5630339Z\"\n }" headers: cache-control: - no-cache @@ -257,7 +355,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:23:12 GMT + - Thu, 15 Jun 2023 02:44:24 GMT expires: - '-1' pragma: @@ -290,14 +388,14 @@ interactions: - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value --tags -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9d75accd-7d88-4891-ae37-179731230f5d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38dfaa6d-e8e6-4822-9205-a5e3a9080bf1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cdac759d-887d-9148-ae37-179731230f5d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:22:42.3878255Z\"\n }" + string: "{\n \"name\": \"6daadf38-e6e8-2248-9205-a5e3a9080bf1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:43:53.5630339Z\"\n }" headers: cache-control: - no-cache @@ -306,7 +404,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:23:42 GMT + - Thu, 15 Jun 2023 02:44:54 GMT expires: - '-1' pragma: @@ -339,14 +437,14 @@ interactions: - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value --tags -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9d75accd-7d88-4891-ae37-179731230f5d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38dfaa6d-e8e6-4822-9205-a5e3a9080bf1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cdac759d-887d-9148-ae37-179731230f5d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:22:42.3878255Z\"\n }" + string: "{\n \"name\": \"6daadf38-e6e8-2248-9205-a5e3a9080bf1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:43:53.5630339Z\"\n }" headers: cache-control: - no-cache @@ -355,7 +453,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:24:12 GMT + - Thu, 15 Jun 2023 02:45:25 GMT expires: - '-1' pragma: @@ -388,14 +486,14 @@ interactions: - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value --tags -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9d75accd-7d88-4891-ae37-179731230f5d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38dfaa6d-e8e6-4822-9205-a5e3a9080bf1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cdac759d-887d-9148-ae37-179731230f5d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:22:42.3878255Z\"\n }" + string: "{\n \"name\": \"6daadf38-e6e8-2248-9205-a5e3a9080bf1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:43:53.5630339Z\"\n }" headers: cache-control: - no-cache @@ -404,7 +502,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:24:42 GMT + - Thu, 15 Jun 2023 02:45:55 GMT expires: - '-1' pragma: @@ -437,14 +535,14 @@ interactions: - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value --tags -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9d75accd-7d88-4891-ae37-179731230f5d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38dfaa6d-e8e6-4822-9205-a5e3a9080bf1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cdac759d-887d-9148-ae37-179731230f5d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:22:42.3878255Z\"\n }" + string: "{\n \"name\": \"6daadf38-e6e8-2248-9205-a5e3a9080bf1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:43:53.5630339Z\"\n }" headers: cache-control: - no-cache @@ -453,7 +551,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:25:12 GMT + - Thu, 15 Jun 2023 02:46:24 GMT expires: - '-1' pragma: @@ -486,14 +584,14 @@ interactions: - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value --tags -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9d75accd-7d88-4891-ae37-179731230f5d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38dfaa6d-e8e6-4822-9205-a5e3a9080bf1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cdac759d-887d-9148-ae37-179731230f5d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:22:42.3878255Z\"\n }" + string: "{\n \"name\": \"6daadf38-e6e8-2248-9205-a5e3a9080bf1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:43:53.5630339Z\"\n }" headers: cache-control: - no-cache @@ -502,7 +600,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:25:42 GMT + - Thu, 15 Jun 2023 02:46:55 GMT expires: - '-1' pragma: @@ -535,15 +633,15 @@ interactions: - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value --tags -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9d75accd-7d88-4891-ae37-179731230f5d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/38dfaa6d-e8e6-4822-9205-a5e3a9080bf1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cdac759d-887d-9148-ae37-179731230f5d\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:22:42.3878255Z\",\n \"endTime\": - \"2023-03-15T10:25:52.2777854Z\"\n }" + string: "{\n \"name\": \"6daadf38-e6e8-2248-9205-a5e3a9080bf1\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T02:43:53.5630339Z\",\n \"\ + endTime\": \"2023-06-15T02:47:01.1510817Z\"\n }" headers: cache-control: - no-cache @@ -552,7 +650,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:26:12 GMT + - Thu, 15 Jun 2023 02:47:25 GMT expires: - '-1' pragma: @@ -585,60 +683,61 @@ interactions: - -g -n -p --nodepool-name -l --service-principal --client-secret -k --ssh-key-value --tags -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000004\",\n - \ \"fqdn\": \"cliaksdns000004-dtwua7dk.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000004-dtwua7dk.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"np000005\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/f0bedb8c-4058-4cf8-8d4a-353f60f5b536\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\"\ + ,\n \"fqdn\": \"cliaksdns000004-v2u5anc3.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000004-v2u5anc3.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"np000005\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/259aaeee-dc04-4176-8212-30f2df561aa1\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3353' + - '3681' content-type: - application/json date: - - Wed, 15 Mar 2023 10:26:13 GMT + - Thu, 15 Jun 2023 02:47:26 GMT expires: - '-1' pragma: @@ -670,61 +769,65 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000004\",\n - \ \"fqdn\": \"cliaksdns000004-dtwua7dk.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000004-dtwua7dk.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"np000005\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.25.5\",\n \"currentOrchestratorVersion\": \"1.25.5\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/f0bedb8c-4058-4cf8-8d4a-353f60f5b536\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n - \ }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \ + \ \"tags\": {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \ + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\"\ + : \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\"\ + : \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-v2u5anc3.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-v2u5anc3.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"np000005\",\n\ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/259aaeee-dc04-4176-8212-30f2df561aa1\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \ + \ \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"\ + enabled\": false\n },\n \"workloadAutoScalerProfile\": {}\n },\n\ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '3602' + - '3930' content-type: - application/json date: - - Wed, 15 Mar 2023 10:26:13 GMT + - Thu, 15 Jun 2023 02:47:28 GMT expires: - '-1' pragma: @@ -756,60 +859,61 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000004\",\n - \ \"fqdn\": \"cliaksdns000004-dtwua7dk.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000004-dtwua7dk.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"np000005\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/f0bedb8c-4058-4cf8-8d4a-353f60f5b536\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\"\ + ,\n \"fqdn\": \"cliaksdns000004-v2u5anc3.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000004-v2u5anc3.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"np000005\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/259aaeee-dc04-4176-8212-30f2df561aa1\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3353' + - '3681' content-type: - application/json date: - - Wed, 15 Mar 2023 10:26:14 GMT + - Thu, 15 Jun 2023 02:47:30 GMT expires: - '-1' pragma: @@ -841,60 +945,61 @@ interactions: ParameterSetName: - -g -n --nodepool-name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000004\",\n - \ \"fqdn\": \"cliaksdns000004-dtwua7dk.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000004-dtwua7dk.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"np000005\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/f0bedb8c-4058-4cf8-8d4a-353f60f5b536\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\"\ + ,\n \"fqdn\": \"cliaksdns000004-v2u5anc3.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000004-v2u5anc3.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"np000005\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/259aaeee-dc04-4176-8212-30f2df561aa1\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3353' + - '3681' content-type: - application/json date: - - Wed, 15 Mar 2023 10:26:14 GMT + - Thu, 15 Jun 2023 02:47:31 GMT expires: - '-1' pragma: @@ -914,22 +1019,21 @@ interactions: message: OK - request: body: '{"tags": {"scenario_test": ""}, "location": "westus2", "sku": {"name": - "Basic", "tier": "Free"}, "properties": {"kubernetesVersion": "1.25.5", "dnsPrefix": + "Base", "tier": "Free"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": - "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.25.5", + "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "np000005"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, - "nodeResourceGroup": "MC_clitest000001_cliakstest000003_westus2", "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", - "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/f0bedb8c-4058-4cf8-8d4a-353f60f5b536"}]}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": + "MC_clitest000001_cliakstest000003_westus2", "enableRBAC": true, "supportPlan": + "KubernetesOfficial", "networkProfile": {"networkPlugin": "kubenet", "podCidr": + "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": + {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/259aaeee-dc04-4176-8212-30f2df561aa1"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": @@ -944,68 +1048,69 @@ interactions: Connection: - keep-alive Content-Length: - - '2130' + - '2458' Content-Type: - application/json ParameterSetName: - -g -n --nodepool-name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000004\",\n - \ \"fqdn\": \"cliaksdns000004-dtwua7dk.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000004-dtwua7dk.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"np000005\",\n \"count\": 3,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/f0bedb8c-4058-4cf8-8d4a-353f60f5b536\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\"\ + ,\n \"fqdn\": \"cliaksdns000004-v2u5anc3.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000004-v2u5anc3.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"np000005\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/259aaeee-dc04-4176-8212-30f2df561aa1\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/deeb48ce-b84e-4a31-b29f-c5ec0259ef14?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/89e418b4-d478-43ed-a5b5-926f2f21ee21?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3351' + - '3679' content-type: - application/json date: - - Wed, 15 Mar 2023 10:26:18 GMT + - Thu, 15 Jun 2023 02:47:42 GMT expires: - '-1' pragma: @@ -1039,14 +1144,110 @@ interactions: ParameterSetName: - -g -n --nodepool-name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/89e418b4-d478-43ed-a5b5-926f2f21ee21?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b418e489-78d4-ed43-a5b5-926f2f21ee21\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:47:38.8292701Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 02:47:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --nodepool-name --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/89e418b4-d478-43ed-a5b5-926f2f21ee21?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b418e489-78d4-ed43-a5b5-926f2f21ee21\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:47:38.8292701Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 02:48:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --nodepool-name --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/deeb48ce-b84e-4a31-b29f-c5ec0259ef14?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/89e418b4-d478-43ed-a5b5-926f2f21ee21?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ce48ebde-4eb8-314a-b29f-c5ec0259ef14\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:26:18.8107064Z\"\n }" + string: "{\n \"name\": \"b418e489-78d4-ed43-a5b5-926f2f21ee21\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:47:38.8292701Z\"\n }" headers: cache-control: - no-cache @@ -1055,7 +1256,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:26:48 GMT + - Thu, 15 Jun 2023 02:48:42 GMT expires: - '-1' pragma: @@ -1087,14 +1288,14 @@ interactions: ParameterSetName: - -g -n --nodepool-name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/deeb48ce-b84e-4a31-b29f-c5ec0259ef14?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/89e418b4-d478-43ed-a5b5-926f2f21ee21?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ce48ebde-4eb8-314a-b29f-c5ec0259ef14\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:26:18.8107064Z\"\n }" + string: "{\n \"name\": \"b418e489-78d4-ed43-a5b5-926f2f21ee21\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:47:38.8292701Z\"\n }" headers: cache-control: - no-cache @@ -1103,7 +1304,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:27:18 GMT + - Thu, 15 Jun 2023 02:49:12 GMT expires: - '-1' pragma: @@ -1135,14 +1336,14 @@ interactions: ParameterSetName: - -g -n --nodepool-name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/deeb48ce-b84e-4a31-b29f-c5ec0259ef14?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/89e418b4-d478-43ed-a5b5-926f2f21ee21?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ce48ebde-4eb8-314a-b29f-c5ec0259ef14\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:26:18.8107064Z\"\n }" + string: "{\n \"name\": \"b418e489-78d4-ed43-a5b5-926f2f21ee21\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:47:38.8292701Z\"\n }" headers: cache-control: - no-cache @@ -1151,7 +1352,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:27:48 GMT + - Thu, 15 Jun 2023 02:49:42 GMT expires: - '-1' pragma: @@ -1183,14 +1384,14 @@ interactions: ParameterSetName: - -g -n --nodepool-name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/deeb48ce-b84e-4a31-b29f-c5ec0259ef14?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/89e418b4-d478-43ed-a5b5-926f2f21ee21?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ce48ebde-4eb8-314a-b29f-c5ec0259ef14\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:26:18.8107064Z\"\n }" + string: "{\n \"name\": \"b418e489-78d4-ed43-a5b5-926f2f21ee21\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:47:38.8292701Z\"\n }" headers: cache-control: - no-cache @@ -1199,7 +1400,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:28:19 GMT + - Thu, 15 Jun 2023 02:50:12 GMT expires: - '-1' pragma: @@ -1231,14 +1432,14 @@ interactions: ParameterSetName: - -g -n --nodepool-name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/deeb48ce-b84e-4a31-b29f-c5ec0259ef14?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/89e418b4-d478-43ed-a5b5-926f2f21ee21?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ce48ebde-4eb8-314a-b29f-c5ec0259ef14\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:26:18.8107064Z\"\n }" + string: "{\n \"name\": \"b418e489-78d4-ed43-a5b5-926f2f21ee21\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:47:38.8292701Z\"\n }" headers: cache-control: - no-cache @@ -1247,7 +1448,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:28:48 GMT + - Thu, 15 Jun 2023 02:50:43 GMT expires: - '-1' pragma: @@ -1279,15 +1480,15 @@ interactions: ParameterSetName: - -g -n --nodepool-name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/deeb48ce-b84e-4a31-b29f-c5ec0259ef14?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/89e418b4-d478-43ed-a5b5-926f2f21ee21?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ce48ebde-4eb8-314a-b29f-c5ec0259ef14\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:26:18.8107064Z\",\n \"endTime\": - \"2023-03-15T10:29:17.1255358Z\"\n }" + string: "{\n \"name\": \"b418e489-78d4-ed43-a5b5-926f2f21ee21\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T02:47:38.8292701Z\",\n \"\ + endTime\": \"2023-06-15T02:51:03.2519735Z\"\n }" headers: cache-control: - no-cache @@ -1296,7 +1497,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:29:19 GMT + - Thu, 15 Jun 2023 02:51:13 GMT expires: - '-1' pragma: @@ -1328,60 +1529,61 @@ interactions: ParameterSetName: - -g -n --nodepool-name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000004\",\n - \ \"fqdn\": \"cliaksdns000004-dtwua7dk.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000004-dtwua7dk.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"np000005\",\n \"count\": 3,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/f0bedb8c-4058-4cf8-8d4a-353f60f5b536\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\"\ + ,\n \"fqdn\": \"cliaksdns000004-v2u5anc3.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000004-v2u5anc3.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"np000005\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/259aaeee-dc04-4176-8212-30f2df561aa1\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3353' + - '3681' content-type: - application/json date: - - Wed, 15 Mar 2023 10:29:19 GMT + - Thu, 15 Jun 2023 02:51:14 GMT expires: - '-1' pragma: @@ -1413,60 +1615,61 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000004\",\n - \ \"fqdn\": \"cliaksdns000004-dtwua7dk.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000004-dtwua7dk.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"np000005\",\n \"count\": 3,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/f0bedb8c-4058-4cf8-8d4a-353f60f5b536\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\"\ + ,\n \"fqdn\": \"cliaksdns000004-v2u5anc3.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000004-v2u5anc3.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"np000005\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/259aaeee-dc04-4176-8212-30f2df561aa1\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3353' + - '3681' content-type: - application/json date: - - Wed, 15 Mar 2023 10:29:20 GMT + - Thu, 15 Jun 2023 02:51:17 GMT expires: - '-1' pragma: @@ -1500,8 +1703,8 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: @@ -1509,17 +1712,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f97f9f6-f94e-4969-a4e9-b5cbde41e5b3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/892a714a-3d26-40bb-8d7e-b54375129600?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:29:20 GMT + - Thu, 15 Jun 2023 02:51:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/7f97f9f6-f94e-4969-a4e9-b5cbde41e5b3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/892a714a-3d26-40bb-8d7e-b54375129600?api-version=2016-03-30 pragma: - no-cache server: @@ -1547,14 +1750,62 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/892a714a-3d26-40bb-8d7e-b54375129600?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4a712a89-263d-bb40-8d7e-b54375129600\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:51:21.0017672Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 02:51:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f97f9f6-f94e-4969-a4e9-b5cbde41e5b3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/892a714a-3d26-40bb-8d7e-b54375129600?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f6f9977f-4ef9-6949-a4e9-b5cbde41e5b3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:29:21.4832684Z\"\n }" + string: "{\n \"name\": \"4a712a89-263d-bb40-8d7e-b54375129600\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:51:21.0017672Z\"\n }" headers: cache-control: - no-cache @@ -1563,7 +1814,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:29:51 GMT + - Thu, 15 Jun 2023 02:51:51 GMT expires: - '-1' pragma: @@ -1595,14 +1846,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f97f9f6-f94e-4969-a4e9-b5cbde41e5b3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/892a714a-3d26-40bb-8d7e-b54375129600?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f6f9977f-4ef9-6949-a4e9-b5cbde41e5b3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:29:21.4832684Z\"\n }" + string: "{\n \"name\": \"4a712a89-263d-bb40-8d7e-b54375129600\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:51:21.0017672Z\"\n }" headers: cache-control: - no-cache @@ -1611,7 +1862,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:30:21 GMT + - Thu, 15 Jun 2023 02:52:21 GMT expires: - '-1' pragma: @@ -1643,14 +1894,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f97f9f6-f94e-4969-a4e9-b5cbde41e5b3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/892a714a-3d26-40bb-8d7e-b54375129600?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f6f9977f-4ef9-6949-a4e9-b5cbde41e5b3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:29:21.4832684Z\"\n }" + string: "{\n \"name\": \"4a712a89-263d-bb40-8d7e-b54375129600\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:51:21.0017672Z\"\n }" headers: cache-control: - no-cache @@ -1659,7 +1910,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:30:51 GMT + - Thu, 15 Jun 2023 02:52:51 GMT expires: - '-1' pragma: @@ -1691,14 +1942,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f97f9f6-f94e-4969-a4e9-b5cbde41e5b3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/892a714a-3d26-40bb-8d7e-b54375129600?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f6f9977f-4ef9-6949-a4e9-b5cbde41e5b3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:29:21.4832684Z\"\n }" + string: "{\n \"name\": \"4a712a89-263d-bb40-8d7e-b54375129600\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:51:21.0017672Z\"\n }" headers: cache-control: - no-cache @@ -1707,7 +1958,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:31:21 GMT + - Thu, 15 Jun 2023 02:53:21 GMT expires: - '-1' pragma: @@ -1739,15 +1990,15 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f97f9f6-f94e-4969-a4e9-b5cbde41e5b3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/892a714a-3d26-40bb-8d7e-b54375129600?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f6f9977f-4ef9-6949-a4e9-b5cbde41e5b3\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:29:21.4832684Z\",\n \"endTime\": - \"2023-03-15T10:31:27.0524842Z\"\n }" + string: "{\n \"name\": \"4a712a89-263d-bb40-8d7e-b54375129600\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T02:51:21.0017672Z\",\n \"\ + endTime\": \"2023-06-15T02:53:31.1873935Z\"\n }" headers: cache-control: - no-cache @@ -1756,7 +2007,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:31:52 GMT + - Thu, 15 Jun 2023 02:53:51 GMT expires: - '-1' pragma: @@ -1788,8 +2039,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: @@ -1805,7 +2056,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:31:51 GMT + - Thu, 15 Jun 2023 02:53:53 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_scale_with_custom_nodepool_name_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_scale_with_custom_nodepool_name_msi.yaml old mode 100755 new mode 100644 index 8bb9cfcfca4..048c4b7fde0 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_scale_with_custom_nodepool_name_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_scale_with_custom_nodepool_name_msi.yaml @@ -13,54 +13,36 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators?api-version=2019-04-01&resource-type=managedClusters + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators\",\n - \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\",\n - \ \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.23.12\",\n \"upgrades\": - [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.9\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\",\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.6\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.5\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\",\n \"default\": true,\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.4\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.26.0\",\n \"isPreview\": true\n - \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n }\n }" + string: "{\n \"values\": [\n {\n \"version\": \"1.25\",\n \"capabilities\"\ + : {\n \"supportPlan\": [\n \"KubernetesOfficial\"\n ]\n },\n\ + \ \"patchVersions\": {\n \"1.25.5\": {\n \"upgrades\": [\n \ + \ \"1.25.6\",\n \"1.26.0\",\n \"1.26.3\"\n ]\n },\n\ + \ \"1.25.6\": {\n \"upgrades\": [\n \"1.26.0\",\n \"\ + 1.26.3\"\n ]\n }\n }\n },\n {\n \"version\": \"1.26\",\n\ + \ \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\"\ + \n ]\n },\n \"patchVersions\": {\n \"1.26.0\": {\n \"upgrades\"\ + : [\n \"1.26.3\"\n ]\n },\n \"1.26.3\": {\n \"upgrades\"\ + : []\n }\n }\n },\n {\n \"version\": \"1.24\",\n \"capabilities\"\ + : {\n \"supportPlan\": [\n \"KubernetesOfficial\"\n ]\n },\n\ + \ \"patchVersions\": {\n \"1.24.10\": {\n \"upgrades\": [\n \ + \ \"1.25.6\",\n \"1.25.5\"\n ]\n },\n \"1.24.9\": {\n\ + \ \"upgrades\": [\n \"1.25.6\",\n \"1.24.10\",\n \"\ + 1.25.5\"\n ]\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2410' + - '957' content-type: - application/json date: - - Wed, 15 Mar 2023 10:31:52 GMT + - Thu, 15 Jun 2023 02:54:00 GMT expires: - '-1' pragma: @@ -92,8 +74,8 @@ interactions: ParameterSetName: - -g -n -p --nodepool-name -l -k --ssh-key-value --tags -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -109,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:31:52 GMT + - Thu, 15 Jun 2023 02:54:00 GMT expires: - '-1' pragma: @@ -125,19 +107,18 @@ interactions: message: Not Found - request: body: '{"tags": {"scenario_test": ""}, "location": "westus2", "identity": {"type": - "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.5", "dnsPrefix": + "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000003", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "1.25.5", "upgradeSettings": {}, "enableNodePublicIP": + "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "np000004"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -148,68 +129,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1482' + - '1774' Content-Type: - application/json ParameterSetName: - -g -n -p --nodepool-name -l -k --ssh-key-value --tags -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000003\",\n - \ \"fqdn\": \"cliaksdns000003-slmnwole.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000003-slmnwole.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"np000004\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\"\ + ,\n \"fqdn\": \"cliaksdns000003-ulo6jby7.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000003-ulo6jby7.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"np000004\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b81e90-4200-4fe5-aa2b-22e315f0bb4d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/349f5ee7-e25c-4a24-af96-4378b0ce429f?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3250' + - '3578' content-type: - application/json date: - - Wed, 15 Mar 2023 10:31:56 GMT + - Thu, 15 Jun 2023 02:54:08 GMT expires: - '-1' pragma: @@ -221,7 +203,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 201 message: Created @@ -239,14 +221,14 @@ interactions: ParameterSetName: - -g -n -p --nodepool-name -l -k --ssh-key-value --tags -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b81e90-4200-4fe5-aa2b-22e315f0bb4d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/349f5ee7-e25c-4a24-af96-4378b0ce429f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"901eb830-0042-e54f-aa2b-22e315f0bb4d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:31:57.1556258Z\"\n }" + string: "{\n \"name\": \"e75e9f34-5ce2-244a-af96-4378b0ce429f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:54:07.8145686Z\"\n }" headers: cache-control: - no-cache @@ -255,7 +237,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:32:26 GMT + - Thu, 15 Jun 2023 02:54:08 GMT expires: - '-1' pragma: @@ -287,14 +269,14 @@ interactions: ParameterSetName: - -g -n -p --nodepool-name -l -k --ssh-key-value --tags -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b81e90-4200-4fe5-aa2b-22e315f0bb4d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/349f5ee7-e25c-4a24-af96-4378b0ce429f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"901eb830-0042-e54f-aa2b-22e315f0bb4d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:31:57.1556258Z\"\n }" + string: "{\n \"name\": \"e75e9f34-5ce2-244a-af96-4378b0ce429f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:54:07.8145686Z\"\n }" headers: cache-control: - no-cache @@ -303,7 +285,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:32:57 GMT + - Thu, 15 Jun 2023 02:54:38 GMT expires: - '-1' pragma: @@ -335,14 +317,14 @@ interactions: ParameterSetName: - -g -n -p --nodepool-name -l -k --ssh-key-value --tags -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b81e90-4200-4fe5-aa2b-22e315f0bb4d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/349f5ee7-e25c-4a24-af96-4378b0ce429f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"901eb830-0042-e54f-aa2b-22e315f0bb4d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:31:57.1556258Z\"\n }" + string: "{\n \"name\": \"e75e9f34-5ce2-244a-af96-4378b0ce429f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:54:07.8145686Z\"\n }" headers: cache-control: - no-cache @@ -351,7 +333,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:33:27 GMT + - Thu, 15 Jun 2023 02:55:08 GMT expires: - '-1' pragma: @@ -383,14 +365,14 @@ interactions: ParameterSetName: - -g -n -p --nodepool-name -l -k --ssh-key-value --tags -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b81e90-4200-4fe5-aa2b-22e315f0bb4d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/349f5ee7-e25c-4a24-af96-4378b0ce429f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"901eb830-0042-e54f-aa2b-22e315f0bb4d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:31:57.1556258Z\"\n }" + string: "{\n \"name\": \"e75e9f34-5ce2-244a-af96-4378b0ce429f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:54:07.8145686Z\"\n }" headers: cache-control: - no-cache @@ -399,7 +381,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:33:57 GMT + - Thu, 15 Jun 2023 02:55:38 GMT expires: - '-1' pragma: @@ -431,14 +413,14 @@ interactions: ParameterSetName: - -g -n -p --nodepool-name -l -k --ssh-key-value --tags -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b81e90-4200-4fe5-aa2b-22e315f0bb4d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/349f5ee7-e25c-4a24-af96-4378b0ce429f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"901eb830-0042-e54f-aa2b-22e315f0bb4d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:31:57.1556258Z\"\n }" + string: "{\n \"name\": \"e75e9f34-5ce2-244a-af96-4378b0ce429f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:54:07.8145686Z\"\n }" headers: cache-control: - no-cache @@ -447,7 +429,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:34:27 GMT + - Thu, 15 Jun 2023 02:56:09 GMT expires: - '-1' pragma: @@ -479,14 +461,14 @@ interactions: ParameterSetName: - -g -n -p --nodepool-name -l -k --ssh-key-value --tags -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b81e90-4200-4fe5-aa2b-22e315f0bb4d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/349f5ee7-e25c-4a24-af96-4378b0ce429f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"901eb830-0042-e54f-aa2b-22e315f0bb4d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:31:57.1556258Z\"\n }" + string: "{\n \"name\": \"e75e9f34-5ce2-244a-af96-4378b0ce429f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:54:07.8145686Z\"\n }" headers: cache-control: - no-cache @@ -495,7 +477,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:34:58 GMT + - Thu, 15 Jun 2023 02:56:39 GMT expires: - '-1' pragma: @@ -527,14 +509,14 @@ interactions: ParameterSetName: - -g -n -p --nodepool-name -l -k --ssh-key-value --tags -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b81e90-4200-4fe5-aa2b-22e315f0bb4d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/349f5ee7-e25c-4a24-af96-4378b0ce429f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"901eb830-0042-e54f-aa2b-22e315f0bb4d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:31:57.1556258Z\"\n }" + string: "{\n \"name\": \"e75e9f34-5ce2-244a-af96-4378b0ce429f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:54:07.8145686Z\"\n }" headers: cache-control: - no-cache @@ -543,7 +525,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:35:27 GMT + - Thu, 15 Jun 2023 02:57:09 GMT expires: - '-1' pragma: @@ -575,15 +557,63 @@ interactions: ParameterSetName: - -g -n -p --nodepool-name -l -k --ssh-key-value --tags -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/30b81e90-4200-4fe5-aa2b-22e315f0bb4d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/349f5ee7-e25c-4a24-af96-4378b0ce429f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"901eb830-0042-e54f-aa2b-22e315f0bb4d\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:31:57.1556258Z\",\n \"endTime\": - \"2023-03-15T10:35:40.3816879Z\"\n }" + string: "{\n \"name\": \"e75e9f34-5ce2-244a-af96-4378b0ce429f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:54:07.8145686Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 02:57:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - -g -n -p --nodepool-name -l -k --ssh-key-value --tags -c + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/349f5ee7-e25c-4a24-af96-4378b0ce429f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e75e9f34-5ce2-244a-af96-4378b0ce429f\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T02:54:07.8145686Z\",\n \"\ + endTime\": \"2023-06-15T02:57:50.8683342Z\"\n }" headers: cache-control: - no-cache @@ -592,7 +622,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:35:57 GMT + - Thu, 15 Jun 2023 02:58:09 GMT expires: - '-1' pragma: @@ -624,65 +654,66 @@ interactions: ParameterSetName: - -g -n -p --nodepool-name -l -k --ssh-key-value --tags -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000003\",\n - \ \"fqdn\": \"cliaksdns000003-slmnwole.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000003-slmnwole.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"np000004\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3e9f4452-6502-4b8c-afaf-95ff0440c86f\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\"\ + ,\n \"fqdn\": \"cliaksdns000003-ulo6jby7.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000003-ulo6jby7.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"np000004\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cd893f3c-60f4-498f-8a1d-3b9c766d8734\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3903' + - '4231' content-type: - application/json date: - - Wed, 15 Mar 2023 10:35:58 GMT + - Thu, 15 Jun 2023 02:58:10 GMT expires: - '-1' pragma: @@ -714,66 +745,71 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000003\",\n - \ \"fqdn\": \"cliaksdns000003-slmnwole.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000003-slmnwole.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"np000004\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.25.5\",\n \"currentOrchestratorVersion\": \"1.25.5\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3e9f4452-6502-4b8c-afaf-95ff0440c86f\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \ + \ \"tags\": {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \ + \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\"\ + : \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\"\ + : \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-ulo6jby7.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000003-ulo6jby7.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"np000004\",\n\ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cd893f3c-60f4-498f-8a1d-3b9c766d8734\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ + : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \ + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \ + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n\ + \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n \ + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '4176' + - '4504' content-type: - application/json date: - - Wed, 15 Mar 2023 10:35:58 GMT + - Thu, 15 Jun 2023 02:58:13 GMT expires: - '-1' pragma: @@ -805,65 +841,66 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000003\",\n - \ \"fqdn\": \"cliaksdns000003-slmnwole.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000003-slmnwole.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"np000004\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3e9f4452-6502-4b8c-afaf-95ff0440c86f\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\"\ + ,\n \"fqdn\": \"cliaksdns000003-ulo6jby7.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000003-ulo6jby7.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"np000004\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cd893f3c-60f4-498f-8a1d-3b9c766d8734\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3903' + - '4231' content-type: - application/json date: - - Wed, 15 Mar 2023 10:35:59 GMT + - Thu, 15 Jun 2023 02:58:15 GMT expires: - '-1' pragma: @@ -895,65 +932,66 @@ interactions: ParameterSetName: - -g -n --nodepool-name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000003\",\n - \ \"fqdn\": \"cliaksdns000003-slmnwole.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000003-slmnwole.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"np000004\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3e9f4452-6502-4b8c-afaf-95ff0440c86f\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\"\ + ,\n \"fqdn\": \"cliaksdns000003-ulo6jby7.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000003-ulo6jby7.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"np000004\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cd893f3c-60f4-498f-8a1d-3b9c766d8734\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3903' + - '4231' content-type: - application/json date: - - Wed, 15 Mar 2023 10:35:59 GMT + - Thu, 15 Jun 2023 02:58:17 GMT expires: - '-1' pragma: @@ -973,22 +1011,21 @@ interactions: message: OK - request: body: '{"tags": {"scenario_test": ""}, "location": "westus2", "sku": {"name": - "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "1.25.5", "dnsPrefix": "cliaksdns000003", "agentPoolProfiles": + "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000003", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": - "System", "orchestratorVersion": "1.25.5", "upgradeSettings": {}, "powerState": + "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "np000004"}], "linuxProfile": - {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, - "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", - "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3e9f4452-6502-4b8c-afaf-95ff0440c86f"}]}, + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": + "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "supportPlan": + "KubernetesOfficial", "networkProfile": {"networkPlugin": "kubenet", "podCidr": + "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": + {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cd893f3c-60f4-498f-8a1d-3b9c766d8734"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -1005,73 +1042,74 @@ interactions: Connection: - keep-alive Content-Length: - - '2526' + - '2854' Content-Type: - application/json ParameterSetName: - -g -n --nodepool-name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000003\",\n - \ \"fqdn\": \"cliaksdns000003-slmnwole.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000003-slmnwole.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"np000004\",\n \"count\": 3,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3e9f4452-6502-4b8c-afaf-95ff0440c86f\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\"\ + ,\n \"fqdn\": \"cliaksdns000003-ulo6jby7.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000003-ulo6jby7.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"np000004\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cd893f3c-60f4-498f-8a1d-3b9c766d8734\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3b10cf6b-3b4c-42cc-867a-9b073a058ac2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf276f34-be6b-45a6-a98a-94eca6025404?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3901' + - '4229' content-type: - application/json date: - - Wed, 15 Mar 2023 10:36:03 GMT + - Thu, 15 Jun 2023 02:58:23 GMT expires: - '-1' pragma: @@ -1087,7 +1125,103 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --nodepool-name --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf276f34-be6b-45a6-a98a-94eca6025404?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"346f27bf-6bbe-a645-a98a-94eca6025404\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:58:22.6120375Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 02:58:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --nodepool-name --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf276f34-be6b-45a6-a98a-94eca6025404?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"346f27bf-6bbe-a645-a98a-94eca6025404\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:58:22.6120375Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 02:58:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -1105,14 +1239,14 @@ interactions: ParameterSetName: - -g -n --nodepool-name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3b10cf6b-3b4c-42cc-867a-9b073a058ac2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf276f34-be6b-45a6-a98a-94eca6025404?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6bcf103b-4c3b-cc42-867a-9b073a058ac2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:36:03.4531905Z\"\n }" + string: "{\n \"name\": \"346f27bf-6bbe-a645-a98a-94eca6025404\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:58:22.6120375Z\"\n }" headers: cache-control: - no-cache @@ -1121,7 +1255,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:36:33 GMT + - Thu, 15 Jun 2023 02:59:23 GMT expires: - '-1' pragma: @@ -1153,14 +1287,14 @@ interactions: ParameterSetName: - -g -n --nodepool-name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3b10cf6b-3b4c-42cc-867a-9b073a058ac2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf276f34-be6b-45a6-a98a-94eca6025404?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6bcf103b-4c3b-cc42-867a-9b073a058ac2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:36:03.4531905Z\"\n }" + string: "{\n \"name\": \"346f27bf-6bbe-a645-a98a-94eca6025404\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:58:22.6120375Z\"\n }" headers: cache-control: - no-cache @@ -1169,7 +1303,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:37:03 GMT + - Thu, 15 Jun 2023 02:59:53 GMT expires: - '-1' pragma: @@ -1201,14 +1335,14 @@ interactions: ParameterSetName: - -g -n --nodepool-name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3b10cf6b-3b4c-42cc-867a-9b073a058ac2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf276f34-be6b-45a6-a98a-94eca6025404?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6bcf103b-4c3b-cc42-867a-9b073a058ac2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:36:03.4531905Z\"\n }" + string: "{\n \"name\": \"346f27bf-6bbe-a645-a98a-94eca6025404\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:58:22.6120375Z\"\n }" headers: cache-control: - no-cache @@ -1217,7 +1351,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:37:33 GMT + - Thu, 15 Jun 2023 03:00:23 GMT expires: - '-1' pragma: @@ -1249,14 +1383,14 @@ interactions: ParameterSetName: - -g -n --nodepool-name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3b10cf6b-3b4c-42cc-867a-9b073a058ac2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf276f34-be6b-45a6-a98a-94eca6025404?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6bcf103b-4c3b-cc42-867a-9b073a058ac2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:36:03.4531905Z\"\n }" + string: "{\n \"name\": \"346f27bf-6bbe-a645-a98a-94eca6025404\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:58:22.6120375Z\"\n }" headers: cache-control: - no-cache @@ -1265,7 +1399,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:38:03 GMT + - Thu, 15 Jun 2023 03:00:54 GMT expires: - '-1' pragma: @@ -1297,14 +1431,14 @@ interactions: ParameterSetName: - -g -n --nodepool-name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3b10cf6b-3b4c-42cc-867a-9b073a058ac2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf276f34-be6b-45a6-a98a-94eca6025404?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6bcf103b-4c3b-cc42-867a-9b073a058ac2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:36:03.4531905Z\"\n }" + string: "{\n \"name\": \"346f27bf-6bbe-a645-a98a-94eca6025404\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T02:58:22.6120375Z\"\n }" headers: cache-control: - no-cache @@ -1313,7 +1447,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:38:33 GMT + - Thu, 15 Jun 2023 03:01:24 GMT expires: - '-1' pragma: @@ -1345,15 +1479,15 @@ interactions: ParameterSetName: - -g -n --nodepool-name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3b10cf6b-3b4c-42cc-867a-9b073a058ac2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf276f34-be6b-45a6-a98a-94eca6025404?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6bcf103b-4c3b-cc42-867a-9b073a058ac2\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:36:03.4531905Z\",\n \"endTime\": - \"2023-03-15T10:38:56.3667819Z\"\n }" + string: "{\n \"name\": \"346f27bf-6bbe-a645-a98a-94eca6025404\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T02:58:22.6120375Z\",\n \"\ + endTime\": \"2023-06-15T03:01:43.9391673Z\"\n }" headers: cache-control: - no-cache @@ -1362,7 +1496,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:39:03 GMT + - Thu, 15 Jun 2023 03:01:54 GMT expires: - '-1' pragma: @@ -1394,65 +1528,66 @@ interactions: ParameterSetName: - -g -n --nodepool-name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000003\",\n - \ \"fqdn\": \"cliaksdns000003-slmnwole.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000003-slmnwole.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"np000004\",\n \"count\": 3,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3e9f4452-6502-4b8c-afaf-95ff0440c86f\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\"\ + ,\n \"fqdn\": \"cliaksdns000003-ulo6jby7.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000003-ulo6jby7.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"np000004\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cd893f3c-60f4-498f-8a1d-3b9c766d8734\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3903' + - '4231' content-type: - application/json date: - - Wed, 15 Mar 2023 10:39:03 GMT + - Thu, 15 Jun 2023 03:01:55 GMT expires: - '-1' pragma: @@ -1484,65 +1619,66 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000003\",\n - \ \"fqdn\": \"cliaksdns000003-slmnwole.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000003-slmnwole.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"np000004\",\n \"count\": 3,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3e9f4452-6502-4b8c-afaf-95ff0440c86f\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\"\ + ,\n \"fqdn\": \"cliaksdns000003-ulo6jby7.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000003-ulo6jby7.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"np000004\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cd893f3c-60f4-498f-8a1d-3b9c766d8734\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3903' + - '4231' content-type: - application/json date: - - Wed, 15 Mar 2023 10:39:04 GMT + - Thu, 15 Jun 2023 03:01:58 GMT expires: - '-1' pragma: @@ -1576,8 +1712,8 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -1585,17 +1721,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c625d310-9cd0-4fd3-9c24-762e7410848b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79f993ce-2047-469f-b237-e4a2916fe813?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:39:05 GMT + - Thu, 15 Jun 2023 03:02:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/c625d310-9cd0-4fd3-9c24-762e7410848b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/79f993ce-2047-469f-b237-e4a2916fe813?api-version=2016-03-30 pragma: - no-cache server: @@ -1605,7 +1741,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -1623,23 +1759,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c625d310-9cd0-4fd3-9c24-762e7410848b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79f993ce-2047-469f-b237-e4a2916fe813?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"10d325c6-d09c-d34f-9c24-762e7410848b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:39:06.0790256Z\"\n }" + string: "{\n \"name\": \"ce93f979-4720-9f46-b237-e4a2916fe813\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:02:02.331221Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 10:39:36 GMT + - Thu, 15 Jun 2023 03:02:01 GMT expires: - '-1' pragma: @@ -1671,23 +1807,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c625d310-9cd0-4fd3-9c24-762e7410848b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79f993ce-2047-469f-b237-e4a2916fe813?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"10d325c6-d09c-d34f-9c24-762e7410848b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:39:06.0790256Z\"\n }" + string: "{\n \"name\": \"ce93f979-4720-9f46-b237-e4a2916fe813\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:02:02.331221Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 10:40:06 GMT + - Thu, 15 Jun 2023 03:02:32 GMT expires: - '-1' pragma: @@ -1719,23 +1855,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c625d310-9cd0-4fd3-9c24-762e7410848b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79f993ce-2047-469f-b237-e4a2916fe813?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"10d325c6-d09c-d34f-9c24-762e7410848b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:39:06.0790256Z\"\n }" + string: "{\n \"name\": \"ce93f979-4720-9f46-b237-e4a2916fe813\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:02:02.331221Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 10:40:36 GMT + - Thu, 15 Jun 2023 03:03:02 GMT expires: - '-1' pragma: @@ -1767,23 +1903,23 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c625d310-9cd0-4fd3-9c24-762e7410848b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79f993ce-2047-469f-b237-e4a2916fe813?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"10d325c6-d09c-d34f-9c24-762e7410848b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:39:06.0790256Z\"\n }" + string: "{\n \"name\": \"ce93f979-4720-9f46-b237-e4a2916fe813\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:02:02.331221Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 10:41:06 GMT + - Thu, 15 Jun 2023 03:03:32 GMT expires: - '-1' pragma: @@ -1815,24 +1951,168 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c625d310-9cd0-4fd3-9c24-762e7410848b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79f993ce-2047-469f-b237-e4a2916fe813?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"10d325c6-d09c-d34f-9c24-762e7410848b\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:39:06.0790256Z\",\n \"endTime\": - \"2023-03-15T10:41:14.2600383Z\"\n }" + string: "{\n \"name\": \"ce93f979-4720-9f46-b237-e4a2916fe813\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:02:02.331221Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '125' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 03:04:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79f993ce-2047-469f-b237-e4a2916fe813?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ce93f979-4720-9f46-b237-e4a2916fe813\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:02:02.331221Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 03:04:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79f993ce-2047-469f-b237-e4a2916fe813?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ce93f979-4720-9f46-b237-e4a2916fe813\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:02:02.331221Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 03:05:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/79f993ce-2047-469f-b237-e4a2916fe813?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ce93f979-4720-9f46-b237-e4a2916fe813\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T03:02:02.331221Z\",\n \"\ + endTime\": \"2023-06-15T03:05:32.3909646Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' content-type: - application/json date: - - Wed, 15 Mar 2023 10:41:35 GMT + - Thu, 15 Jun 2023 03:05:32 GMT expires: - '-1' pragma: @@ -1864,34 +2144,37 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000002'' - under resource group ''clitest000001'' was not found. For more details please - go to https://aka.ms/ARMResourceNotFoundFix"}}' + string: "{\n \"code\": \"NotFound\",\n \"details\": [\n {\n \"code\"\ + : \"Unspecified\",\n \"message\": \"rpc error: code = NotFound desc = Managed\ + \ Cluster not found\"\n }\n ],\n \"message\": \"Could not find managed\ + \ cluster resource: cliakstest000002 in subscription: 8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8,\ + \ resourceGroup: clitest000001.\",\n \"subcode\": \"GetManagedCluster_NotFound\"\ + \n }" headers: cache-control: - no-cache content-length: - - '244' + - '361' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:41:36 GMT + - Thu, 15 Jun 2023 03:05:34 GMT expires: - '-1' pragma: - no-cache + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway status: code: 404 message: Not Found diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_service_no_wait.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_service_no_wait.yaml old mode 100755 new mode 100644 index 97de7801073..e458f9e3d8d --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_service_no_wait.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_service_no_wait.yaml @@ -13,54 +13,36 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators?api-version=2019-04-01&resource-type=managedClusters + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators\",\n - \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\",\n - \ \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.23.12\",\n \"upgrades\": - [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.9\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\",\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.6\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.5\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\",\n \"default\": true,\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.4\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.26.0\",\n \"isPreview\": true\n - \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n }\n }" + string: "{\n \"values\": [\n {\n \"version\": \"1.24\",\n \"capabilities\"\ + : {\n \"supportPlan\": [\n \"KubernetesOfficial\"\n ]\n },\n\ + \ \"patchVersions\": {\n \"1.24.10\": {\n \"upgrades\": [\n \ + \ \"1.25.5\",\n \"1.25.6\"\n ]\n },\n \"1.24.9\": {\n\ + \ \"upgrades\": [\n \"1.25.5\",\n \"1.25.6\",\n \"\ + 1.24.10\"\n ]\n }\n }\n },\n {\n \"version\": \"1.25\"\ + ,\n \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\"\ + \n ]\n },\n \"patchVersions\": {\n \"1.25.5\": {\n \"upgrades\"\ + : [\n \"1.25.6\",\n \"1.26.0\",\n \"1.26.3\"\n ]\n\ + \ },\n \"1.25.6\": {\n \"upgrades\": [\n \"1.26.0\",\n\ + \ \"1.26.3\"\n ]\n }\n }\n },\n {\n \"version\":\ + \ \"1.26\",\n \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\"\ + \n ]\n },\n \"patchVersions\": {\n \"1.26.0\": {\n \"upgrades\"\ + : [\n \"1.26.3\"\n ]\n },\n \"1.26.3\": {\n \"upgrades\"\ + : []\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2410' + - '957' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:02 GMT + - Thu, 15 Jun 2023 03:05:45 GMT expires: - '-1' pragma: @@ -93,8 +75,8 @@ interactions: - -g -n -p --ssh-key-value -l --service-principal --client-secret -k --node-vm-size --tags -c --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -110,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:17:02 GMT + - Thu, 15 Jun 2023 03:05:47 GMT expires: - '-1' pragma: @@ -126,20 +108,19 @@ interactions: message: Not Found - request: body: '{"tags": {"scenario_test": ""}, "location": "westus2", "properties": {"kubernetesVersion": - "1.25.5", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, + "1.25.6", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.25.5", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": + "1.25.6", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, - "storageProfile": {}}}' + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -150,67 +131,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1547' + - '1839' Content-Type: - application/json ParameterSetName: - -g -n -p --ssh-key-value -l --service-principal --client-secret -k --node-vm-size --tags -c --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-76bfu27l.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-76bfu27l.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-pe52i64a.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-pe52i64a.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/61869368-a71e-408a-bd48-128cb0f71052?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7582cd1c-0048-4e42-a06a-87adfb335e39?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3090' + - '3418' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:05 GMT + - Thu, 15 Jun 2023 03:05:58 GMT expires: - '-1' pragma: @@ -222,7 +204,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -240,58 +222,59 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-76bfu27l.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-76bfu27l.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-pe52i64a.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-pe52i64a.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3090' + - '3418' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:06 GMT + - Thu, 15 Jun 2023 03:05:59 GMT expires: - '-1' pragma: @@ -323,60 +306,61 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-76bfu27l.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-76bfu27l.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/1712414c-ba9b-420b-9705-fda32c137150\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-pe52i64a.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-pe52i64a.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5bbf00bb-ec67-4af1-8f65-c50ece704b8f\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3352' + - '3680' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:37 GMT + - Thu, 15 Jun 2023 03:06:30 GMT expires: - '-1' pragma: @@ -408,60 +392,61 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-76bfu27l.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-76bfu27l.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/1712414c-ba9b-420b-9705-fda32c137150\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-pe52i64a.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-pe52i64a.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5bbf00bb-ec67-4af1-8f65-c50ece704b8f\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3352' + - '3680' content-type: - application/json date: - - Wed, 15 Mar 2023 10:18:07 GMT + - Thu, 15 Jun 2023 03:07:00 GMT expires: - '-1' pragma: @@ -493,60 +478,61 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-76bfu27l.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-76bfu27l.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/1712414c-ba9b-420b-9705-fda32c137150\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-pe52i64a.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-pe52i64a.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5bbf00bb-ec67-4af1-8f65-c50ece704b8f\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3352' + - '3680' content-type: - application/json date: - - Wed, 15 Mar 2023 10:18:38 GMT + - Thu, 15 Jun 2023 03:07:31 GMT expires: - '-1' pragma: @@ -578,60 +564,61 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-76bfu27l.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-76bfu27l.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/1712414c-ba9b-420b-9705-fda32c137150\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-pe52i64a.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-pe52i64a.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5bbf00bb-ec67-4af1-8f65-c50ece704b8f\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3352' + - '3680' content-type: - application/json date: - - Wed, 15 Mar 2023 10:19:08 GMT + - Thu, 15 Jun 2023 03:08:02 GMT expires: - '-1' pragma: @@ -663,60 +650,61 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-76bfu27l.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-76bfu27l.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/1712414c-ba9b-420b-9705-fda32c137150\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-pe52i64a.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-pe52i64a.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5bbf00bb-ec67-4af1-8f65-c50ece704b8f\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3352' + - '3680' content-type: - application/json date: - - Wed, 15 Mar 2023 10:19:39 GMT + - Thu, 15 Jun 2023 03:08:33 GMT expires: - '-1' pragma: @@ -748,60 +736,61 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-76bfu27l.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-76bfu27l.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/1712414c-ba9b-420b-9705-fda32c137150\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-pe52i64a.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-pe52i64a.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5bbf00bb-ec67-4af1-8f65-c50ece704b8f\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3352' + - '3682' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:10 GMT + - Thu, 15 Jun 2023 03:09:03 GMT expires: - '-1' pragma: @@ -827,66 +816,67 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks wait + - aks show Connection: - keep-alive ParameterSetName: - - -g -n --created + - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-76bfu27l.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-76bfu27l.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/1712414c-ba9b-420b-9705-fda32c137150\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-pe52i64a.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-pe52i64a.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5bbf00bb-ec67-4af1-8f65-c50ece704b8f\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3354' + - '3682' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:40 GMT + - Thu, 15 Jun 2023 03:09:05 GMT expires: - '-1' pragma: @@ -912,66 +902,42 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks show + - aks get-versions Connection: - keep-alive ParameterSetName: - - -g -n + - -l User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-76bfu27l.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-76bfu27l.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/1712414c-ba9b-420b-9705-fda32c137150\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"values\": [\n {\n \"version\": \"1.24\",\n \"capabilities\"\ + : {\n \"supportPlan\": [\n \"KubernetesOfficial\"\n ]\n },\n\ + \ \"patchVersions\": {\n \"1.24.10\": {\n \"upgrades\": [\n \ + \ \"1.25.5\",\n \"1.25.6\"\n ]\n },\n \"1.24.9\": {\n\ + \ \"upgrades\": [\n \"1.24.10\",\n \"1.25.5\",\n \"\ + 1.25.6\"\n ]\n }\n }\n },\n {\n \"version\": \"1.25\",\n\ + \ \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\"\ + \n ]\n },\n \"patchVersions\": {\n \"1.25.5\": {\n \"upgrades\"\ + : [\n \"1.25.6\",\n \"1.26.0\",\n \"1.26.3\"\n ]\n\ + \ },\n \"1.25.6\": {\n \"upgrades\": [\n \"1.26.0\",\n\ + \ \"1.26.3\"\n ]\n }\n }\n },\n {\n \"version\":\ + \ \"1.26\",\n \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\"\ + \n ]\n },\n \"patchVersions\": {\n \"1.26.0\": {\n \"upgrades\"\ + : [\n \"1.26.3\"\n ]\n },\n \"1.26.3\": {\n \"upgrades\"\ + : []\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '3354' + - '957' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:41 GMT + - Thu, 15 Jun 2023 03:09:06 GMT expires: - '-1' pragma: @@ -1001,56 +967,38 @@ interactions: Connection: - keep-alive ParameterSetName: - - -l + - -l -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators?api-version=2019-04-01&resource-type=managedClusters + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators\",\n - \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\",\n - \ \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.23.12\",\n \"upgrades\": - [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.9\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\",\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.6\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.5\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\",\n \"default\": true,\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.4\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.26.0\",\n \"isPreview\": true\n - \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n }\n }" + string: "{\n \"values\": [\n {\n \"version\": \"1.24\",\n \"capabilities\"\ + : {\n \"supportPlan\": [\n \"KubernetesOfficial\"\n ]\n },\n\ + \ \"patchVersions\": {\n \"1.24.10\": {\n \"upgrades\": [\n \ + \ \"1.25.5\",\n \"1.25.6\"\n ]\n },\n \"1.24.9\": {\n\ + \ \"upgrades\": [\n \"1.24.10\",\n \"1.25.5\",\n \"\ + 1.25.6\"\n ]\n }\n }\n },\n {\n \"version\": \"1.25\",\n\ + \ \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\"\ + \n ]\n },\n \"patchVersions\": {\n \"1.25.5\": {\n \"upgrades\"\ + : [\n \"1.25.6\",\n \"1.26.0\",\n \"1.26.3\"\n ]\n\ + \ },\n \"1.25.6\": {\n \"upgrades\": [\n \"1.26.0\",\n\ + \ \"1.26.3\"\n ]\n }\n }\n },\n {\n \"version\":\ + \ \"1.26\",\n \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\"\ + \n ]\n },\n \"patchVersions\": {\n \"1.26.0\": {\n \"upgrades\"\ + : [\n \"1.26.3\"\n ]\n },\n \"1.26.3\": {\n \"upgrades\"\ + : []\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2410' + - '957' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:40 GMT + - Thu, 15 Jun 2023 03:09:07 GMT expires: - '-1' pragma: @@ -1076,60 +1024,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks get-versions + - aks get-upgrades Connection: - keep-alive ParameterSetName: - - -l -o + - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators?api-version=2019-04-01&resource-type=managedClusters + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeProfiles/default?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators\",\n - \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\",\n - \ \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.23.12\",\n \"upgrades\": - [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.9\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\",\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.6\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.5\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\",\n \"default\": true,\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.4\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.26.0\",\n \"isPreview\": true\n - \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeprofiles/default\"\ + ,\n \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/upgradeprofiles\"\ + ,\n \"properties\": {\n \"controlPlaneProfile\": {\n \"kubernetesVersion\"\ + : \"1.25.6\",\n \"osType\": \"Linux\",\n \"upgrades\": [\n {\n \ + \ \"kubernetesVersion\": \"1.26.0\"\n },\n {\n \"kubernetesVersion\"\ + : \"1.26.3\"\n }\n ]\n },\n \"agentPoolProfiles\": null\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '2410' + - '551' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:40 GMT + - Thu, 15 Jun 2023 03:09:09 GMT expires: - '-1' pragma: @@ -1159,29 +1081,30 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n + - -g -n --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeProfiles/default?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeprofiles/default\",\n - \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/upgradeprofiles\",\n - \ \"properties\": {\n \"controlPlaneProfile\": {\n \"kubernetesVersion\": - \"1.25.5\",\n \"osType\": \"Linux\",\n \"upgrades\": [\n {\n \"kubernetesVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n },\n \"agentPoolProfiles\": - null\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeprofiles/default\"\ + ,\n \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/upgradeprofiles\"\ + ,\n \"properties\": {\n \"controlPlaneProfile\": {\n \"kubernetesVersion\"\ + : \"1.25.6\",\n \"osType\": \"Linux\",\n \"upgrades\": [\n {\n \ + \ \"kubernetesVersion\": \"1.26.0\"\n },\n {\n \"kubernetesVersion\"\ + : \"1.26.3\"\n }\n ]\n },\n \"agentPoolProfiles\": null\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '525' + - '551' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:41 GMT + - Thu, 15 Jun 2023 03:09:11 GMT expires: - '-1' pragma: @@ -1207,33 +1130,67 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks get-upgrades + - aks enable-addons Connection: - keep-alive ParameterSetName: - - -g -n --output + - -g -n --addons User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeProfiles/default?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeprofiles/default\",\n - \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/upgradeprofiles\",\n - \ \"properties\": {\n \"controlPlaneProfile\": {\n \"kubernetesVersion\": - \"1.25.5\",\n \"osType\": \"Linux\",\n \"upgrades\": [\n {\n \"kubernetesVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n },\n \"agentPoolProfiles\": - null\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-pe52i64a.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-pe52i64a.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5bbf00bb-ec67-4af1-8f65-c50ece704b8f\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '525' + - '3682' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:41 GMT + - Thu, 15 Jun 2023 03:09:13 GMT expires: - '-1' pragma: @@ -1252,7 +1209,27 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"tags": {"scenario_test": ""}, "location": "westus2", "sku": {"name": + "Base", "tier": "Free"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": + 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": + "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.25.6", + "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"httpApplicationRouting": {"enabled": + true}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5bbf00bb-ec67-4af1-8f65-c50ece704b8f"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": + {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}, "workloadAutoScalerProfile": {}}}' headers: Accept: - application/json @@ -1262,63 +1239,73 @@ interactions: - aks enable-addons Connection: - keep-alive + Content-Length: + - '2523' + Content-Type: + - application/json ParameterSetName: - -g -n --addons User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-76bfu27l.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-76bfu27l.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/1712414c-ba9b-420b-9705-fda32c137150\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-pe52i64a.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-pe52i64a.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"httpApplicationRouting\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"HTTPApplicationRoutingZoneName\": \"\ + 2edc0d4ccdeb41a1801b.westus2.aksapp.io\"\n }\n }\n },\n \"nodeResourceGroup\"\ + : \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n\ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5bbf00bb-ec67-4af1-8f65-c50ece704b8f\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae00a3f2-fa4e-4a3b-a371-ebda89275ae1?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3354' + - '3873' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:42 GMT + - Thu, 15 Jun 2023 03:09:18 GMT expires: - '-1' pragma: @@ -1333,105 +1320,42 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK - request: - body: '{"tags": {"scenario_test": ""}, "location": "westus2", "sku": {"name": - "Basic", "tier": "Free"}, "properties": {"kubernetesVersion": "1.25.5", "dnsPrefix": - "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": - 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": - "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.25.5", - "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": - false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"httpApplicationRouting": - {"enabled": true}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": - "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": true, "networkProfile": - {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/1712414c-ba9b-420b-9705-fda32c137150"}]}, - "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": - ["IPv4"]}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": - {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": - {"enabled": true}}, "workloadAutoScalerProfile": {}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks enable-addons Connection: - keep-alive - Content-Length: - - '2195' - Content-Type: - - application/json ParameterSetName: - -g -n --addons User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae00a3f2-fa4e-4a3b-a371-ebda89275ae1?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-76bfu27l.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-76bfu27l.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"httpApplicationRouting\": {\n \"enabled\": true,\n \"config\": - {\n \"HTTPApplicationRoutingZoneName\": \"c3334f9da94548668828.westus2.aksapp.io\"\n - \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/1712414c-ba9b-420b-9705-fda32c137150\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"f2a300ae-4efa-3b4a-a371-ebda89275ae1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:09:18.3012608Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/70e0a868-06c5-4c0e-9c7b-9a7afa86616b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3545' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:45 GMT + - Thu, 15 Jun 2023 03:09:19 GMT expires: - '-1' pragma: @@ -1446,8 +1370,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: code: 200 message: OK @@ -1465,14 +1387,14 @@ interactions: ParameterSetName: - -g -n --addons User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/70e0a868-06c5-4c0e-9c7b-9a7afa86616b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae00a3f2-fa4e-4a3b-a371-ebda89275ae1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68a8e070-c506-0e4c-9c7b-9a7afa86616b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:20:45.0900772Z\"\n }" + string: "{\n \"name\": \"f2a300ae-4efa-3b4a-a371-ebda89275ae1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:09:18.3012608Z\"\n }" headers: cache-control: - no-cache @@ -1481,7 +1403,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:21:14 GMT + - Thu, 15 Jun 2023 03:09:49 GMT expires: - '-1' pragma: @@ -1513,14 +1435,14 @@ interactions: ParameterSetName: - -g -n --addons User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/70e0a868-06c5-4c0e-9c7b-9a7afa86616b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae00a3f2-fa4e-4a3b-a371-ebda89275ae1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68a8e070-c506-0e4c-9c7b-9a7afa86616b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:20:45.0900772Z\"\n }" + string: "{\n \"name\": \"f2a300ae-4efa-3b4a-a371-ebda89275ae1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:09:18.3012608Z\"\n }" headers: cache-control: - no-cache @@ -1529,7 +1451,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:21:45 GMT + - Thu, 15 Jun 2023 03:10:19 GMT expires: - '-1' pragma: @@ -1561,14 +1483,14 @@ interactions: ParameterSetName: - -g -n --addons User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/70e0a868-06c5-4c0e-9c7b-9a7afa86616b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae00a3f2-fa4e-4a3b-a371-ebda89275ae1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68a8e070-c506-0e4c-9c7b-9a7afa86616b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:20:45.0900772Z\"\n }" + string: "{\n \"name\": \"f2a300ae-4efa-3b4a-a371-ebda89275ae1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:09:18.3012608Z\"\n }" headers: cache-control: - no-cache @@ -1577,7 +1499,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:14 GMT + - Thu, 15 Jun 2023 03:10:49 GMT expires: - '-1' pragma: @@ -1609,15 +1531,15 @@ interactions: ParameterSetName: - -g -n --addons User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/70e0a868-06c5-4c0e-9c7b-9a7afa86616b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae00a3f2-fa4e-4a3b-a371-ebda89275ae1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68a8e070-c506-0e4c-9c7b-9a7afa86616b\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:20:45.0900772Z\",\n \"endTime\": - \"2023-03-15T10:22:32.2498318Z\"\n }" + string: "{\n \"name\": \"f2a300ae-4efa-3b4a-a371-ebda89275ae1\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T03:09:18.3012608Z\",\n \"\ + endTime\": \"2023-06-15T03:11:07.8571203Z\"\n }" headers: cache-control: - no-cache @@ -1626,7 +1548,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:45 GMT + - Thu, 15 Jun 2023 03:11:19 GMT expires: - '-1' pragma: @@ -1658,62 +1580,64 @@ interactions: ParameterSetName: - -g -n --addons User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-76bfu27l.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-76bfu27l.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"httpApplicationRouting\": {\n \"enabled\": true,\n \"config\": - {\n \"HTTPApplicationRoutingZoneName\": \"c3334f9da94548668828.westus2.aksapp.io\"\n - \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/1712414c-ba9b-420b-9705-fda32c137150\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-pe52i64a.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-pe52i64a.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"httpApplicationRouting\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"HTTPApplicationRoutingZoneName\": \"\ + 2edc0d4ccdeb41a1801b.westus2.aksapp.io\"\n }\n }\n },\n \"nodeResourceGroup\"\ + : \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n\ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5bbf00bb-ec67-4af1-8f65-c50ece704b8f\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3547' + - '3875' content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:45 GMT + - Thu, 15 Jun 2023 03:11:20 GMT expires: - '-1' pragma: @@ -1747,8 +1671,8 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -1756,17 +1680,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2f964f1-c56e-43c1-9f95-064c99252475?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d18cb025-059c-4403-82ef-6f4870002881?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:22:46 GMT + - Thu, 15 Jun 2023 03:11:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/c2f964f1-c56e-43c1-9f95-064c99252475?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/d18cb025-059c-4403-82ef-6f4870002881?api-version=2016-03-30 pragma: - no-cache server: @@ -1794,14 +1718,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2f964f1-c56e-43c1-9f95-064c99252475?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d18cb025-059c-4403-82ef-6f4870002881?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f164f9c2-6ec5-c143-9f95-064c99252475\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:22:47.1533889Z\"\n }" + string: "{\n \"name\": \"25b08cd1-9c05-0344-82ef-6f4870002881\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:11:25.1453325Z\"\n }" headers: cache-control: - no-cache @@ -1810,7 +1734,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:23:16 GMT + - Thu, 15 Jun 2023 03:11:25 GMT expires: - '-1' pragma: @@ -1842,14 +1766,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2f964f1-c56e-43c1-9f95-064c99252475?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d18cb025-059c-4403-82ef-6f4870002881?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f164f9c2-6ec5-c143-9f95-064c99252475\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:22:47.1533889Z\"\n }" + string: "{\n \"name\": \"25b08cd1-9c05-0344-82ef-6f4870002881\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:11:25.1453325Z\"\n }" headers: cache-control: - no-cache @@ -1858,7 +1782,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:23:46 GMT + - Thu, 15 Jun 2023 03:11:54 GMT expires: - '-1' pragma: @@ -1890,14 +1814,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2f964f1-c56e-43c1-9f95-064c99252475?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d18cb025-059c-4403-82ef-6f4870002881?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f164f9c2-6ec5-c143-9f95-064c99252475\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:22:47.1533889Z\"\n }" + string: "{\n \"name\": \"25b08cd1-9c05-0344-82ef-6f4870002881\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:11:25.1453325Z\"\n }" headers: cache-control: - no-cache @@ -1906,7 +1830,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:24:16 GMT + - Thu, 15 Jun 2023 03:12:25 GMT expires: - '-1' pragma: @@ -1938,14 +1862,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2f964f1-c56e-43c1-9f95-064c99252475?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d18cb025-059c-4403-82ef-6f4870002881?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f164f9c2-6ec5-c143-9f95-064c99252475\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:22:47.1533889Z\"\n }" + string: "{\n \"name\": \"25b08cd1-9c05-0344-82ef-6f4870002881\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:11:25.1453325Z\"\n }" headers: cache-control: - no-cache @@ -1954,7 +1878,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:24:47 GMT + - Thu, 15 Jun 2023 03:12:55 GMT expires: - '-1' pragma: @@ -1986,14 +1910,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2f964f1-c56e-43c1-9f95-064c99252475?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d18cb025-059c-4403-82ef-6f4870002881?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f164f9c2-6ec5-c143-9f95-064c99252475\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:22:47.1533889Z\"\n }" + string: "{\n \"name\": \"25b08cd1-9c05-0344-82ef-6f4870002881\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:11:25.1453325Z\"\n }" headers: cache-control: - no-cache @@ -2002,7 +1926,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:25:17 GMT + - Thu, 15 Jun 2023 03:13:25 GMT expires: - '-1' pragma: @@ -2034,15 +1958,111 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2f964f1-c56e-43c1-9f95-064c99252475?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d18cb025-059c-4403-82ef-6f4870002881?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f164f9c2-6ec5-c143-9f95-064c99252475\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:22:47.1533889Z\",\n \"endTime\": - \"2023-03-15T10:25:45.0107831Z\"\n }" + string: "{\n \"name\": \"25b08cd1-9c05-0344-82ef-6f4870002881\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:11:25.1453325Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 03:13:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d18cb025-059c-4403-82ef-6f4870002881?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"25b08cd1-9c05-0344-82ef-6f4870002881\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:11:25.1453325Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 03:14:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d18cb025-059c-4403-82ef-6f4870002881?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"25b08cd1-9c05-0344-82ef-6f4870002881\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T03:11:25.1453325Z\",\n \"\ + endTime\": \"2023-06-15T03:14:40.7240131Z\"\n }" headers: cache-control: - no-cache @@ -2051,7 +2071,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:25:47 GMT + - Thu, 15 Jun 2023 03:14:56 GMT expires: - '-1' pragma: @@ -2083,35 +2103,34 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"code\": \"NotFound\",\n \"message\": \"Could not find managed - cluster resource: cliakstest000001 in subscription: 79a7390d-3a85-432d-9f6f-a11a703c8b83, - resourceGroup: clitest000001.\",\n \"subcode\": \"GetManagedCluster_NotFound\"\n - }" + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerService/managedClusters/cliakstest000001'' + under resource group ''clitest000001'' was not found. For more details please + go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '227' + - '244' content-type: - - application/json + - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:25:47 GMT + - Thu, 15 Jun 2023 03:14:59 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-failure-cause: + - gateway status: code: 404 message: Not Found diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_service_no_wait_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_service_no_wait_msi.yaml old mode 100755 new mode 100644 index 95f13437c15..dd404cfe27e --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_service_no_wait_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_service_no_wait_msi.yaml @@ -13,54 +13,36 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators?api-version=2019-04-01&resource-type=managedClusters + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators\",\n - \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\",\n - \ \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.23.12\",\n \"upgrades\": - [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.9\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\",\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.6\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.5\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\",\n \"default\": true,\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.4\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.26.0\",\n \"isPreview\": true\n - \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n }\n }" + string: "{\n \"values\": [\n {\n \"version\": \"1.24\",\n \"capabilities\"\ + : {\n \"supportPlan\": [\n \"KubernetesOfficial\"\n ]\n },\n\ + \ \"patchVersions\": {\n \"1.24.10\": {\n \"upgrades\": [\n \ + \ \"1.25.5\",\n \"1.25.6\"\n ]\n },\n \"1.24.9\": {\n\ + \ \"upgrades\": [\n \"1.24.10\",\n \"1.25.5\",\n \"\ + 1.25.6\"\n ]\n }\n }\n },\n {\n \"version\": \"1.25\",\n\ + \ \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\"\ + \n ]\n },\n \"patchVersions\": {\n \"1.25.5\": {\n \"upgrades\"\ + : [\n \"1.25.6\",\n \"1.26.0\",\n \"1.26.3\"\n ]\n\ + \ },\n \"1.25.6\": {\n \"upgrades\": [\n \"1.26.0\",\n\ + \ \"1.26.3\"\n ]\n }\n }\n },\n {\n \"version\":\ + \ \"1.26\",\n \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\"\ + \n ]\n },\n \"patchVersions\": {\n \"1.26.0\": {\n \"upgrades\"\ + : [\n \"1.26.3\"\n ]\n },\n \"1.26.3\": {\n \"upgrades\"\ + : []\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2410' + - '957' content-type: - application/json date: - - Wed, 15 Mar 2023 10:25:48 GMT + - Thu, 15 Jun 2023 03:15:06 GMT expires: - '-1' pragma: @@ -92,8 +74,8 @@ interactions: ParameterSetName: - -g -n -p --ssh-key-value -l -k --node-vm-size --tags -c --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -109,7 +91,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:25:48 GMT + - Thu, 15 Jun 2023 03:15:09 GMT expires: - '-1' pragma: @@ -125,19 +107,18 @@ interactions: message: Not Found - request: body: '{"tags": {"scenario_test": ""}, "location": "westus2", "identity": {"type": - "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.5", "dnsPrefix": + "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "1.25.5", "upgradeSettings": {}, "enableNodePublicIP": + "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -148,68 +129,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1483' + - '1775' Content-Type: - application/json ParameterSetName: - -g -n -p --ssh-key-value -l -k --node-vm-size --tags -c --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-1nisoqxg.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-1nisoqxg.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-w49qa087.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-w49qa087.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a4ed2214-8906-48be-abbc-3a31aa0eff04?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a014ce58-5703-4432-bbf4-6a670c720ea7?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3251' + - '3579' content-type: - application/json date: - - Wed, 15 Mar 2023 10:25:52 GMT + - Thu, 15 Jun 2023 03:15:17 GMT expires: - '-1' pragma: @@ -221,7 +203,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -239,60 +221,61 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-1nisoqxg.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-1nisoqxg.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-w49qa087.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-w49qa087.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3251' + - '3579' content-type: - application/json date: - - Wed, 15 Mar 2023 10:25:52 GMT + - Thu, 15 Jun 2023 03:15:20 GMT expires: - '-1' pragma: @@ -324,60 +307,61 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-1nisoqxg.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-1nisoqxg.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-w49qa087.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-w49qa087.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3251' + - '3579' content-type: - application/json date: - - Wed, 15 Mar 2023 10:26:23 GMT + - Thu, 15 Jun 2023 03:15:50 GMT expires: - '-1' pragma: @@ -409,62 +393,63 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-1nisoqxg.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-1nisoqxg.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4273029c-7107-4cea-a6e0-0be8db0ece5d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-w49qa087.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-w49qa087.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a00c21ce-c9f1-4f9e-8aea-04aa010a7a42\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3513' + - '3841' content-type: - application/json date: - - Wed, 15 Mar 2023 10:26:54 GMT + - Thu, 15 Jun 2023 03:16:21 GMT expires: - '-1' pragma: @@ -496,62 +481,66 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-1nisoqxg.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-1nisoqxg.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4273029c-7107-4cea-a6e0-0be8db0ece5d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-w49qa087.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-w49qa087.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a00c21ce-c9f1-4f9e-8aea-04aa010a7a42\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3513' + - '4230' content-type: - application/json date: - - Wed, 15 Mar 2023 10:27:24 GMT + - Thu, 15 Jun 2023 03:16:52 GMT expires: - '-1' pragma: @@ -583,65 +572,66 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-1nisoqxg.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-1nisoqxg.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4273029c-7107-4cea-a6e0-0be8db0ece5d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-w49qa087.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-w49qa087.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a00c21ce-c9f1-4f9e-8aea-04aa010a7a42\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3902' + - '4230' content-type: - application/json date: - - Wed, 15 Mar 2023 10:27:54 GMT + - Thu, 15 Jun 2023 03:17:23 GMT expires: - '-1' pragma: @@ -673,65 +663,66 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-1nisoqxg.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-1nisoqxg.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4273029c-7107-4cea-a6e0-0be8db0ece5d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-w49qa087.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-w49qa087.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a00c21ce-c9f1-4f9e-8aea-04aa010a7a42\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3902' + - '4230' content-type: - application/json date: - - Wed, 15 Mar 2023 10:28:24 GMT + - Thu, 15 Jun 2023 03:17:53 GMT expires: - '-1' pragma: @@ -763,65 +754,66 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-1nisoqxg.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-1nisoqxg.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4273029c-7107-4cea-a6e0-0be8db0ece5d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-w49qa087.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-w49qa087.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a00c21ce-c9f1-4f9e-8aea-04aa010a7a42\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3902' + - '4230' content-type: - application/json date: - - Wed, 15 Mar 2023 10:28:55 GMT + - Thu, 15 Jun 2023 03:18:24 GMT expires: - '-1' pragma: @@ -853,65 +845,66 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-1nisoqxg.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-1nisoqxg.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4273029c-7107-4cea-a6e0-0be8db0ece5d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-w49qa087.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-w49qa087.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a00c21ce-c9f1-4f9e-8aea-04aa010a7a42\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3902' + - '4230' content-type: - application/json date: - - Wed, 15 Mar 2023 10:29:26 GMT + - Thu, 15 Jun 2023 03:18:55 GMT expires: - '-1' pragma: @@ -943,65 +936,66 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-1nisoqxg.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-1nisoqxg.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4273029c-7107-4cea-a6e0-0be8db0ece5d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-w49qa087.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-w49qa087.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a00c21ce-c9f1-4f9e-8aea-04aa010a7a42\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3904' + - '4232' content-type: - application/json date: - - Wed, 15 Mar 2023 10:29:56 GMT + - Thu, 15 Jun 2023 03:19:26 GMT expires: - '-1' pragma: @@ -1033,65 +1027,66 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-1nisoqxg.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-1nisoqxg.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4273029c-7107-4cea-a6e0-0be8db0ece5d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-w49qa087.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-w49qa087.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a00c21ce-c9f1-4f9e-8aea-04aa010a7a42\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3904' + - '4232' content-type: - application/json date: - - Wed, 15 Mar 2023 10:29:57 GMT + - Thu, 15 Jun 2023 03:19:28 GMT expires: - '-1' pragma: @@ -1123,54 +1118,36 @@ interactions: ParameterSetName: - -l User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators?api-version=2019-04-01&resource-type=managedClusters + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators\",\n - \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\",\n - \ \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.23.12\",\n \"upgrades\": - [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.9\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\",\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.6\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.5\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\",\n \"default\": true,\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.4\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.26.0\",\n \"isPreview\": true\n - \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n }\n }" + string: "{\n \"values\": [\n {\n \"version\": \"1.24\",\n \"capabilities\"\ + : {\n \"supportPlan\": [\n \"KubernetesOfficial\"\n ]\n },\n\ + \ \"patchVersions\": {\n \"1.24.10\": {\n \"upgrades\": [\n \ + \ \"1.25.5\",\n \"1.25.6\"\n ]\n },\n \"1.24.9\": {\n\ + \ \"upgrades\": [\n \"1.24.10\",\n \"1.25.5\",\n \"\ + 1.25.6\"\n ]\n }\n }\n },\n {\n \"version\": \"1.25\",\n\ + \ \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\"\ + \n ]\n },\n \"patchVersions\": {\n \"1.25.5\": {\n \"upgrades\"\ + : [\n \"1.25.6\",\n \"1.26.0\",\n \"1.26.3\"\n ]\n\ + \ },\n \"1.25.6\": {\n \"upgrades\": [\n \"1.26.0\",\n\ + \ \"1.26.3\"\n ]\n }\n }\n },\n {\n \"version\":\ + \ \"1.26\",\n \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\"\ + \n ]\n },\n \"patchVersions\": {\n \"1.26.0\": {\n \"upgrades\"\ + : [\n \"1.26.3\"\n ]\n },\n \"1.26.3\": {\n \"upgrades\"\ + : []\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2410' + - '957' content-type: - application/json date: - - Wed, 15 Mar 2023 10:29:57 GMT + - Thu, 15 Jun 2023 03:19:28 GMT expires: - '-1' pragma: @@ -1202,54 +1179,36 @@ interactions: ParameterSetName: - -l -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators?api-version=2019-04-01&resource-type=managedClusters + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators\",\n - \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\",\n - \ \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.23.12\",\n \"upgrades\": - [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.9\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\",\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.6\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.5\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\",\n \"default\": true,\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.4\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.26.0\",\n \"isPreview\": true\n - \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n }\n }" + string: "{\n \"values\": [\n {\n \"version\": \"1.26\",\n \"capabilities\"\ + : {\n \"supportPlan\": [\n \"KubernetesOfficial\"\n ]\n },\n\ + \ \"patchVersions\": {\n \"1.26.0\": {\n \"upgrades\": [\n \ + \ \"1.26.3\"\n ]\n },\n \"1.26.3\": {\n \"upgrades\"\ + : []\n }\n }\n },\n {\n \"version\": \"1.24\",\n \"capabilities\"\ + : {\n \"supportPlan\": [\n \"KubernetesOfficial\"\n ]\n },\n\ + \ \"patchVersions\": {\n \"1.24.10\": {\n \"upgrades\": [\n \ + \ \"1.25.5\",\n \"1.25.6\"\n ]\n },\n \"1.24.9\": {\n\ + \ \"upgrades\": [\n \"1.24.10\",\n \"1.25.5\",\n \"\ + 1.25.6\"\n ]\n }\n }\n },\n {\n \"version\": \"1.25\",\n\ + \ \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\"\ + \n ]\n },\n \"patchVersions\": {\n \"1.25.5\": {\n \"upgrades\"\ + : [\n \"1.26.0\",\n \"1.26.3\",\n \"1.25.6\"\n ]\n\ + \ },\n \"1.25.6\": {\n \"upgrades\": [\n \"1.26.0\",\n\ + \ \"1.26.3\"\n ]\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2410' + - '957' content-type: - application/json date: - - Wed, 15 Mar 2023 10:29:57 GMT + - Thu, 15 Jun 2023 03:19:30 GMT expires: - '-1' pragma: @@ -1281,27 +1240,28 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeProfiles/default?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeprofiles/default\",\n - \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/upgradeprofiles\",\n - \ \"properties\": {\n \"controlPlaneProfile\": {\n \"kubernetesVersion\": - \"1.25.5\",\n \"osType\": \"Linux\",\n \"upgrades\": [\n {\n \"kubernetesVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n },\n \"agentPoolProfiles\": - null\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeprofiles/default\"\ + ,\n \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/upgradeprofiles\"\ + ,\n \"properties\": {\n \"controlPlaneProfile\": {\n \"kubernetesVersion\"\ + : \"1.25.6\",\n \"osType\": \"Linux\",\n \"upgrades\": [\n {\n \ + \ \"kubernetesVersion\": \"1.26.0\"\n },\n {\n \"kubernetesVersion\"\ + : \"1.26.3\"\n }\n ]\n },\n \"agentPoolProfiles\": null\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '525' + - '551' content-type: - application/json date: - - Wed, 15 Mar 2023 10:29:57 GMT + - Thu, 15 Jun 2023 03:19:31 GMT expires: - '-1' pragma: @@ -1333,27 +1293,28 @@ interactions: ParameterSetName: - -g -n --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeProfiles/default?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeprofiles/default\",\n - \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/upgradeprofiles\",\n - \ \"properties\": {\n \"controlPlaneProfile\": {\n \"kubernetesVersion\": - \"1.25.5\",\n \"osType\": \"Linux\",\n \"upgrades\": [\n {\n \"kubernetesVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n },\n \"agentPoolProfiles\": - null\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/upgradeprofiles/default\"\ + ,\n \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/upgradeprofiles\"\ + ,\n \"properties\": {\n \"controlPlaneProfile\": {\n \"kubernetesVersion\"\ + : \"1.25.6\",\n \"osType\": \"Linux\",\n \"upgrades\": [\n {\n \ + \ \"kubernetesVersion\": \"1.26.0\"\n },\n {\n \"kubernetesVersion\"\ + : \"1.26.3\"\n }\n ]\n },\n \"agentPoolProfiles\": null\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '525' + - '551' content-type: - application/json date: - - Wed, 15 Mar 2023 10:29:57 GMT + - Thu, 15 Jun 2023 03:19:32 GMT expires: - '-1' pragma: @@ -1385,65 +1346,66 @@ interactions: ParameterSetName: - -g -n --addons User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-1nisoqxg.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-1nisoqxg.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4273029c-7107-4cea-a6e0-0be8db0ece5d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-w49qa087.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-w49qa087.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a00c21ce-c9f1-4f9e-8aea-04aa010a7a42\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3904' + - '4232' content-type: - application/json date: - - Wed, 15 Mar 2023 10:29:58 GMT + - Thu, 15 Jun 2023 03:19:34 GMT expires: - '-1' pragma: @@ -1463,23 +1425,23 @@ interactions: message: OK - request: body: '{"tags": {"scenario_test": ""}, "location": "westus2", "sku": {"name": - "Basic", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "1.25.5", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": + "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": - "System", "orchestratorVersion": "1.25.5", "upgradeSettings": {}, "powerState": + "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"httpApplicationRouting": - {"enabled": true}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": - "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": true, "networkProfile": - {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4273029c-7107-4cea-a6e0-0be8db0ece5d"}]}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"httpApplicationRouting": {"enabled": + true}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a00c21ce-c9f1-4f9e-8aea-04aa010a7a42"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -1496,75 +1458,77 @@ interactions: Connection: - keep-alive Content-Length: - - '2591' + - '2919' Content-Type: - application/json ParameterSetName: - -g -n --addons User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-1nisoqxg.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-1nisoqxg.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"httpApplicationRouting\": {\n \"enabled\": true,\n \"config\": - {\n \"HTTPApplicationRoutingZoneName\": \"50fc689261a54c348411.westus2.aksapp.io\"\n - \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4273029c-7107-4cea-a6e0-0be8db0ece5d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-w49qa087.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-w49qa087.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"httpApplicationRouting\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"HTTPApplicationRoutingZoneName\": \"\ + 2ff6c55e4dd5480c8e29.westus2.aksapp.io\"\n }\n }\n },\n \"nodeResourceGroup\"\ + : \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n\ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a00c21ce-c9f1-4f9e-8aea-04aa010a7a42\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a79a944-e4fc-4a0d-8c44-353bb4586bb1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/644c30be-c19d-4bb9-9e17-ddc02bda03ce?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4095' + - '4423' content-type: - application/json date: - - Wed, 15 Mar 2023 10:30:01 GMT + - Thu, 15 Jun 2023 03:19:39 GMT expires: - '-1' pragma: @@ -1580,7 +1544,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -1598,14 +1562,14 @@ interactions: ParameterSetName: - -g -n --addons User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a79a944-e4fc-4a0d-8c44-353bb4586bb1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/644c30be-c19d-4bb9-9e17-ddc02bda03ce?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"44a9790a-fce4-0d4a-8c44-353bb4586bb1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:30:01.2490164Z\"\n }" + string: "{\n \"name\": \"be304c64-9dc1-b94b-9e17-ddc02bda03ce\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:19:38.3025741Z\"\n }" headers: cache-control: - no-cache @@ -1614,7 +1578,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:30:31 GMT + - Thu, 15 Jun 2023 03:19:39 GMT expires: - '-1' pragma: @@ -1646,14 +1610,14 @@ interactions: ParameterSetName: - -g -n --addons User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a79a944-e4fc-4a0d-8c44-353bb4586bb1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/644c30be-c19d-4bb9-9e17-ddc02bda03ce?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"44a9790a-fce4-0d4a-8c44-353bb4586bb1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:30:01.2490164Z\"\n }" + string: "{\n \"name\": \"be304c64-9dc1-b94b-9e17-ddc02bda03ce\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:19:38.3025741Z\"\n }" headers: cache-control: - no-cache @@ -1662,7 +1626,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:31:01 GMT + - Thu, 15 Jun 2023 03:20:09 GMT expires: - '-1' pragma: @@ -1694,14 +1658,14 @@ interactions: ParameterSetName: - -g -n --addons User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a79a944-e4fc-4a0d-8c44-353bb4586bb1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/644c30be-c19d-4bb9-9e17-ddc02bda03ce?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"44a9790a-fce4-0d4a-8c44-353bb4586bb1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:30:01.2490164Z\"\n }" + string: "{\n \"name\": \"be304c64-9dc1-b94b-9e17-ddc02bda03ce\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:19:38.3025741Z\"\n }" headers: cache-control: - no-cache @@ -1710,7 +1674,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:31:31 GMT + - Thu, 15 Jun 2023 03:20:39 GMT expires: - '-1' pragma: @@ -1742,24 +1706,71 @@ interactions: ParameterSetName: - -g -n --addons User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a79a944-e4fc-4a0d-8c44-353bb4586bb1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/644c30be-c19d-4bb9-9e17-ddc02bda03ce?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"44a9790a-fce4-0d4a-8c44-353bb4586bb1\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:30:01.2490164Z\",\n \"endTime\": - \"2023-03-15T10:31:58.8629685Z\"\n }" + string: "{\n \"name\": \"be304c64-9dc1-b94b-9e17-ddc02bda03ce\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:19:38.3025741Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 03:21:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -g -n --addons + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/644c30be-c19d-4bb9-9e17-ddc02bda03ce?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"be304c64-9dc1-b94b-9e17-ddc02bda03ce\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:19:38.3025741Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:32:01 GMT + - Thu, 15 Jun 2023 03:21:41 GMT expires: - '-1' pragma: @@ -1791,69 +1802,121 @@ interactions: ParameterSetName: - -g -n --addons User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/644c30be-c19d-4bb9-9e17-ddc02bda03ce?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"be304c64-9dc1-b94b-9e17-ddc02bda03ce\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T03:19:38.3025741Z\",\n \"\ + endTime\": \"2023-06-15T03:22:05.345987Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 03:22:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - -g -n --addons + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\": - {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n - \ \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.5\",\n - \ \"currentKubernetesVersion\": \"1.25.5\",\n \"dnsPrefix\": \"cliaksdns000002\",\n - \ \"fqdn\": \"cliaksdns000002-1nisoqxg.hcp.westus2.azmk8s.io\",\n \"azurePortalFQDN\": - \"cliaksdns000002-1nisoqxg.portal.hcp.westus2.azmk8s.io\",\n \"agentPoolProfiles\": - [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": - \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n - \ \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"currentOrchestratorVersion\": - \"1.25.5\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"httpApplicationRouting\": {\n \"enabled\": true,\n \"config\": - {\n \"HTTPApplicationRoutingZoneName\": \"50fc689261a54c348411.westus2.aksapp.io\"\n - \ },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/httpapplicationrouting-cliakstest000001\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/4273029c-7107-4cea-a6e0-0be8db0ece5d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"tags\"\ + : {\n \"scenario_test\": \"\"\n },\n \"type\": \"Microsoft.ContainerService/ManagedClusters\"\ + ,\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\"\ + : {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\"\ + ,\n \"fqdn\": \"cliaksdns000002-w49qa087.hcp.westus2.azmk8s.io\",\n \"\ + azurePortalFQDN\": \"cliaksdns000002-w49qa087.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"httpApplicationRouting\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"HTTPApplicationRoutingZoneName\": \"\ + 2ff6c55e4dd5480c8e29.westus2.aksapp.io\"\n },\n \"identity\": {\n\ + \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/httpapplicationrouting-cliakstest000001\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a00c21ce-c9f1-4f9e-8aea-04aa010a7a42\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4468' + - '4796' content-type: - application/json date: - - Wed, 15 Mar 2023 10:32:01 GMT + - Thu, 15 Jun 2023 03:22:13 GMT expires: - '-1' pragma: @@ -1887,8 +1950,8 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -1896,17 +1959,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f794e5a-2394-49f1-96d0-17237224f0bc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad1353f1-cb42-42b8-83e6-f5e2af67916d?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:32:02 GMT + - Thu, 15 Jun 2023 03:22:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/4f794e5a-2394-49f1-96d0-17237224f0bc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/ad1353f1-cb42-42b8-83e6-f5e2af67916d?api-version=2016-03-30 pragma: - no-cache server: @@ -1916,7 +1979,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14999' status: code: 202 message: Accepted @@ -1934,14 +1997,110 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad1353f1-cb42-42b8-83e6-f5e2af67916d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f15313ad-42cb-b842-83e6-f5e2af67916d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:22:16.5999929Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 03:22:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad1353f1-cb42-42b8-83e6-f5e2af67916d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f15313ad-42cb-b842-83e6-f5e2af67916d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:22:16.5999929Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 03:22:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks delete + Connection: + - keep-alive + ParameterSetName: + - -g -n --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f794e5a-2394-49f1-96d0-17237224f0bc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad1353f1-cb42-42b8-83e6-f5e2af67916d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5a4e794f-9423-f149-96d0-17237224f0bc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:32:03.4681428Z\"\n }" + string: "{\n \"name\": \"f15313ad-42cb-b842-83e6-f5e2af67916d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:22:16.5999929Z\"\n }" headers: cache-control: - no-cache @@ -1950,7 +2109,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:32:32 GMT + - Thu, 15 Jun 2023 03:23:16 GMT expires: - '-1' pragma: @@ -1982,14 +2141,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f794e5a-2394-49f1-96d0-17237224f0bc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad1353f1-cb42-42b8-83e6-f5e2af67916d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5a4e794f-9423-f149-96d0-17237224f0bc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:32:03.4681428Z\"\n }" + string: "{\n \"name\": \"f15313ad-42cb-b842-83e6-f5e2af67916d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:22:16.5999929Z\"\n }" headers: cache-control: - no-cache @@ -1998,7 +2157,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:33:03 GMT + - Thu, 15 Jun 2023 03:23:46 GMT expires: - '-1' pragma: @@ -2030,14 +2189,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f794e5a-2394-49f1-96d0-17237224f0bc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad1353f1-cb42-42b8-83e6-f5e2af67916d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5a4e794f-9423-f149-96d0-17237224f0bc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:32:03.4681428Z\"\n }" + string: "{\n \"name\": \"f15313ad-42cb-b842-83e6-f5e2af67916d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:22:16.5999929Z\"\n }" headers: cache-control: - no-cache @@ -2046,7 +2205,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:33:33 GMT + - Thu, 15 Jun 2023 03:24:16 GMT expires: - '-1' pragma: @@ -2078,14 +2237,14 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f794e5a-2394-49f1-96d0-17237224f0bc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad1353f1-cb42-42b8-83e6-f5e2af67916d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5a4e794f-9423-f149-96d0-17237224f0bc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:32:03.4681428Z\"\n }" + string: "{\n \"name\": \"f15313ad-42cb-b842-83e6-f5e2af67916d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:22:16.5999929Z\"\n }" headers: cache-control: - no-cache @@ -2094,7 +2253,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:34:03 GMT + - Thu, 15 Jun 2023 03:24:47 GMT expires: - '-1' pragma: @@ -2126,15 +2285,15 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f794e5a-2394-49f1-96d0-17237224f0bc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad1353f1-cb42-42b8-83e6-f5e2af67916d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5a4e794f-9423-f149-96d0-17237224f0bc\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:32:03.4681428Z\",\n \"endTime\": - \"2023-03-15T10:34:15.5585262Z\"\n }" + string: "{\n \"name\": \"f15313ad-42cb-b842-83e6-f5e2af67916d\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T03:22:16.5999929Z\",\n \"\ + endTime\": \"2023-06-15T03:24:47.9706618Z\"\n }" headers: cache-control: - no-cache @@ -2143,7 +2302,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:34:33 GMT + - Thu, 15 Jun 2023 03:25:17 GMT expires: - '-1' pragma: @@ -2175,8 +2334,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -2192,7 +2351,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:34:34 GMT + - Thu, 15 Jun 2023 03:25:19 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_default_mgd_outbound_ip_then_update.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_default_mgd_outbound_ip_then_update.yaml old mode 100755 new mode 100644 index 8b97263a916..33048861cd9 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_default_mgd_outbound_ip_then_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_default_mgd_outbound_ip_then_update.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:34:34 GMT + - Thu, 15 Jun 2023 03:25:32 GMT expires: - '-1' pragma: @@ -53,13 +53,12 @@ interactions: false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, - "storageProfile": {}}}' + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -70,66 +69,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1504' + - '1796' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8uf4up3p.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-8uf4up3p.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-lve7m84r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-lve7m84r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82bbf92f-fa7a-4592-8294-598bee0f1298?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af4e39a8-f459-44e3-a174-c9340a214aad?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3050' + - '3378' content-type: - application/json date: - - Wed, 15 Mar 2023 10:34:37 GMT + - Thu, 15 Jun 2023 03:25:41 GMT expires: - '-1' pragma: @@ -141,7 +141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -159,57 +159,58 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8uf4up3p.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-8uf4up3p.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-lve7m84r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-lve7m84r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3050' + - '3378' content-type: - application/json date: - - Wed, 15 Mar 2023 10:34:37 GMT + - Thu, 15 Jun 2023 03:25:43 GMT expires: - '-1' pragma: @@ -241,59 +242,60 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8uf4up3p.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-8uf4up3p.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e3b0a43f-bf74-4952-bad6-1a647ab8f6a3\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-lve7m84r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-lve7m84r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9511ca2e-62ac-4261-b4b5-a962dba4af44\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3312' + - '3640' content-type: - application/json date: - - Wed, 15 Mar 2023 10:35:08 GMT + - Thu, 15 Jun 2023 03:26:13 GMT expires: - '-1' pragma: @@ -325,59 +327,60 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8uf4up3p.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-8uf4up3p.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e3b0a43f-bf74-4952-bad6-1a647ab8f6a3\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-lve7m84r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-lve7m84r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9511ca2e-62ac-4261-b4b5-a962dba4af44\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3312' + - '3640' content-type: - application/json date: - - Wed, 15 Mar 2023 10:35:38 GMT + - Thu, 15 Jun 2023 03:26:44 GMT expires: - '-1' pragma: @@ -409,59 +412,60 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8uf4up3p.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-8uf4up3p.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e3b0a43f-bf74-4952-bad6-1a647ab8f6a3\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-lve7m84r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-lve7m84r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9511ca2e-62ac-4261-b4b5-a962dba4af44\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3312' + - '3640' content-type: - application/json date: - - Wed, 15 Mar 2023 10:36:08 GMT + - Thu, 15 Jun 2023 03:27:15 GMT expires: - '-1' pragma: @@ -493,59 +497,60 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8uf4up3p.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-8uf4up3p.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e3b0a43f-bf74-4952-bad6-1a647ab8f6a3\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-lve7m84r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-lve7m84r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9511ca2e-62ac-4261-b4b5-a962dba4af44\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3312' + - '3640' content-type: - application/json date: - - Wed, 15 Mar 2023 10:36:40 GMT + - Thu, 15 Jun 2023 03:27:46 GMT expires: - '-1' pragma: @@ -577,59 +582,60 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8uf4up3p.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-8uf4up3p.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e3b0a43f-bf74-4952-bad6-1a647ab8f6a3\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-lve7m84r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-lve7m84r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9511ca2e-62ac-4261-b4b5-a962dba4af44\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3312' + - '3640' content-type: - application/json date: - - Wed, 15 Mar 2023 10:37:10 GMT + - Thu, 15 Jun 2023 03:28:16 GMT expires: - '-1' pragma: @@ -661,59 +667,60 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8uf4up3p.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-8uf4up3p.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e3b0a43f-bf74-4952-bad6-1a647ab8f6a3\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-lve7m84r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-lve7m84r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9511ca2e-62ac-4261-b4b5-a962dba4af44\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3312' + - '3640' content-type: - application/json date: - - Wed, 15 Mar 2023 10:37:40 GMT + - Thu, 15 Jun 2023 03:28:48 GMT expires: - '-1' pragma: @@ -745,59 +752,60 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8uf4up3p.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-8uf4up3p.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e3b0a43f-bf74-4952-bad6-1a647ab8f6a3\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-lve7m84r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-lve7m84r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9511ca2e-62ac-4261-b4b5-a962dba4af44\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3314' + - '3642' content-type: - application/json date: - - Wed, 15 Mar 2023 10:38:11 GMT + - Thu, 15 Jun 2023 03:29:18 GMT expires: - '-1' pragma: @@ -829,60 +837,65 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.24.9\",\n \"currentKubernetesVersion\": - \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8uf4up3p.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-8uf4up3p.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e3b0a43f-bf74-4952-bad6-1a647ab8f6a3\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n - \ }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-lve7m84r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-lve7m84r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9511ca2e-62ac-4261-b4b5-a962dba4af44\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \ + \ \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"\ + enabled\": false\n },\n \"workloadAutoScalerProfile\": {}\n },\n\ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '3557' + - '3885' content-type: - application/json date: - - Wed, 15 Mar 2023 10:38:12 GMT + - Thu, 15 Jun 2023 03:29:20 GMT expires: - '-1' pragma: @@ -914,60 +927,65 @@ interactions: ParameterSetName: - -g -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.24.9\",\n \"currentKubernetesVersion\": - \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8uf4up3p.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-8uf4up3p.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e3b0a43f-bf74-4952-bad6-1a647ab8f6a3\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n - \ }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-lve7m84r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-lve7m84r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9511ca2e-62ac-4261-b4b5-a962dba4af44\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \ + \ \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"\ + enabled\": false\n },\n \"workloadAutoScalerProfile\": {}\n },\n\ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '3557' + - '3885' content-type: - application/json date: - - Wed, 15 Mar 2023 10:38:12 GMT + - Thu, 15 Jun 2023 03:29:21 GMT expires: - '-1' pragma: @@ -999,59 +1017,60 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8uf4up3p.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-8uf4up3p.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e3b0a43f-bf74-4952-bad6-1a647ab8f6a3\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-lve7m84r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-lve7m84r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9511ca2e-62ac-4261-b4b5-a962dba4af44\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3314' + - '3642' content-type: - application/json date: - - Wed, 15 Mar 2023 10:38:12 GMT + - Thu, 15 Jun 2023 03:29:23 GMT expires: - '-1' pragma: @@ -1085,15 +1104,15 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSWTJSUlJUZGthV1U1VUdaa01FcFBjRk5sTW5OSmVrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCZWsxVVZYaE5SRWt4VFVST1lVZEJPSGxOUkZWNlRVUk5lRTVVUlhkTmVsVjNUVEZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVNMUNtVkdhRWxLY0VVd1JIbG1WRlJHZWxSc00wNUpObWRWYlVVNGVFaFlhVzVUUVdsblVTOW1iaXRsV2pSWUt5OUNLekZhV21sU2NHSmFSRnBaVFVKVFpYa0tVSEZzU1doTGRXdExlQzl3YTJsU1RuSlZVRUU1YWtaVlMwMVNkakJCV25SVWMwMXNUSEI1YlhKNVdXTTJjVTlqYVV4cFpUVTVNbVp1VWpORE4zTlZid3BET0ZVd04waEhaMWhJTDNGWVUyZEpVSHBOTmtSNmRuTjJhbVUxUlRsbFJHNU5NRnBIU1RSdlF6bHFkMmRQV0hsbU5FMUJVR1YxVEVsUmRsTjFVa1Z5Q2xONlZUZFRhRXR0TUV4c1RucHdSRXhIUm1KclNGcHFPSE5VY3pKc1dHOXJNbUowYWxnNVNIQk1XWEJVZVZka2QydGlkVFpUU0daYVdrRkJUMk5sWWs4S1J6Vk1PV3d5VW5RMlR6Z3lURGhoUzBob05GWnRVV0o2UldkMFJsbHlNRUZoVkROeU16TXlTbE50YjNka2JWSnVZamhYVHpSSk1teFVjVzVzVVhGR1pRb3dZMEV5VWpKME4ybDVXakIzUjJoSlpFaG1lRk16VEdwSlEzWjNWRE5IT1RoV1MzRk9abWxFZVVSTWQyNXdNRUpMTVVReU1qZ3ZiR1ZyS3pWQ1NtZDBDbTh5U1RVeldHVkhjVW94ZVVGR09FVk5ieTlwUzJwcmVHSk1UbnBzYlZGSmNXdFVRVmxqVkV3MVZWTXdhVFZUVmxkcFYzaE9Za2QyWTJ0V2RTOUJTbXdLVld4UVQzWlFTelZtVG1GUmNHOUVhMVJCYWpWRU1HWkZObXd5ZUc1VlN6ZHdWRzlIWkZKRlVXdFJVemhVY0hka1ZVOUhUVWRIVm1OcWNVeDViSGxrVmdwaGJVeHhjMmRNV2t0NFVFWlBiMFJYSzFSbGNVSmhhV1JxU3psbmFIWllXREpRYUZwNlpIRTBObFoxYmtaeE0yMWlVWE5JZEVabE5rVXpkSGhDV0ZkNUNsUm9RMjFITkRORk9IaE5XakU1ZERWT1IzRmtaRk40ZVRCMFlpOUdiR3BJT0dzeGNtRm9WMmQ1U0VWc2QySm9abGRxUjJwWFVYZG1UWHB4VWxGNFpEY0tLMjR3ZERoNGNHWnRhbHBOYVZKT1dVcDBjV2xHWTJRNFZuTlBXRzB6WmxJclNEVjVNM0JyWm05UlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWMlYzUnBjMWRMY1dWS1YzSk5ZakUzQ2t0U09VTkNlbmx6YW1wUmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGSVJrdDFja3AzWlZsaVoxcDZVbVJOT0d4NVJERldNM0pxZVVNS1JIbGpjbWxhU1ZsMk5sRkpLMDExTW1kUmMyOTFPVlUxT1dNMldUTm5hVFpUUzFRelFXOUhjMnd4WmtwMFIweHlkazFsZVdkRkwyOW5TMWc0WVVWaFdRbzVRMDFIWTFSWWRsSnVZbUZ2Y3pGNksybFNWbXcxWTAxclVrMTJUamxsVUUxSlYwMURUMnhOZFZGeFdrczNhbkpwUTJ0VE1ISlhkekYyUlVKWmNFVk1Da050Y0RoRlFWVlFZMUZ6Y0dKb1MwWktZV0Z6VG5CMVdXSnhRVkJUVkN0d2EwMW1WR3hrV2pNclQwbEVRbXRIUm1GRFUwMU9aa2hIY1hRNWVYRjNXRzRLWmtOR04ySTJTVkZDTkRaWlFuSk5Oa1JJVXpKR2N6TmhSbkExYkdGSVJrOU1PV2x0UlhadmFtaDNiSEJEVld3d1EyRkhZa0poVWtKQ2R6TkdObTVYZGdwaFZqZERkV3BoVjJ4aFExQjVkM0V4Y0hWSlZHOVFXVVJWZFZoM2FFOHJhMjlsT0hKd2VYRlhZVGgyV0d3M1JqRlJRVWxITW5OcFZVWnVSRmMxYUM4eENtdzJPVTE2TTAwdlQzZ3pSR0ZVV0VKS01Dc3pNamxwZW1VMk5YcGxiekJOYTJ4V2QyVmtURU0wVDB3NVlTdHBjMjQ1ZUU0d1RFdGpaMFpWTUhSNU5IQUtVRXBVV2toRlRuZ3lMMUZMZEdSVE1rODBSMEl5Uld4dk1UYzNiemQzZW10UkwyRTNOblZxYm1GUVVGSlVjRk5VYzBsU1VtZ3JOVFptYlhCT1VVeFZTd28xZUVJekwxVTRRVXh6UTFCNmVGZFBjV2xwZHpOaVpHMUxaV3RZWlVGWWIxbHRRemhsVkdONE5URm9OSFpaWkhOTVduVlVXSFpGZFdSTlRGQTVPVUp3Q2pOR2NESjJaRlZaZVhKbGRuVlRNazR3WWxwdVoxSnVlbXBEUkRORFV6QkJkRmQ2T0M5RVVtRlhlWFpEYVRsdldXeE5aRTFoWTJwWlpuUXdSMHhwY2swS1JUWnVUR1pNWm1WVlNYTmhUbWhQVGtORE1FOU1SalIyU1dGWkwwaEJaMEUzUkdFM1ptTnlWM2xFZEZWeWFUQklXRGhwWTNWd1ltOUVkMUp4ZDAxelpnbzJhbGwxYTFsaFpIWllNbmszVjA1WENpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3RqbmJydXctOHVmNHVwM3AuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RzYWtuNHkKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RzYWtuNHkKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3R3MzMzNmdjaWRnX2NsaWFrc3Rlc3RzYWtuNHkKICBuYW1lOiBjbGlha3N0ZXN0c2FrbjR5CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdHNha240eQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3R3MzMzNmdjaWRnX2NsaWFrc3Rlc3RzYWtuNHkKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJWazAyYVVOWFowTm1NRlIyVm04eEt6RjZaelJQVkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJlazFVVlhoTlJFa3hUVVJPWVVaM01IbE9WRUY2VFZSVmVFMUVUVEZOUkU1aFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJUVVVwSlNra3pUMHBzYTBKemVqQlFRMWsyZFU0S1VVTnhNbnBPWVRWaFdqbEZkSHByTUVRNVQyYzVXbkJITm1GdmFGQkhSMDFtTTBsaU0wazJhemd6WVZCQ1RrbGhjaTkzUWxSaU1uWTBMMnRJWTI1dldBcFdNMjByTUZKM2NtRmpTa1ZyVlZSak9XZ3dlRkpzZEdNeGFqVlFTRlJqZEVSeFRtd3ZhMmh3ZVhsSVNuRkhMMlV5ZVhaM1RXbFlORWxMZGt0cGFrRmxDbUVyYmxodWQzRTViRU5LSzBsMlpVUkNRamx3ZGxWaWVrVnJiVTVLVjNWeVZ6UnBReTlwT0VaTFVsTnZkMDU0WTJSRFozVnZNMlo0Tm1oSGRYSnZVeklLYzJvek9XUTNSRzlxVDJVMU5ESkRNRmhwTlhwVVlrOXlNMVZYUWxJelVFbGlOSHBTTkVObU9VdExjbE5qV2xGMlUyYzBRbHBFVEdwcGRVSk5iRnB4UlFwM2NFbzJSV2RTVW1kT09VNUtSR1ZsVkNzMlNVWXZVVU52TTJKTVRIZ3dZMmhzWlVWa2RUUTVhbmxRYXpGdFprMVVWbTVXY1U4NWVHWlVhM1JQYUZobENreDFaalZ2WXk5dFRHNDRVaXRKWkZOdmFtY3ZabWxzVjJkbGRVdGxLemxVZFdOak9ETnhZMU5LYzFZd0wyaFVhMk40WlVORWRFaDJUR1l3TkdaQ1prZ0tUMnRNTjB4S2VXbEpZV3hxUW0xWWRuUkxaRFJNTkZkM1VrWjJVRUZsSzJaSFlXdEtMMUJVYUdkRVRVODVlbEZJUzBKVlUwSXpRVmsxT0dsUmJWaE5Rd3A0ZGtoUVpYVlhVMFp5YlRVd2VXY3hhMXA1TjIxNGFuTlBOVkZwUldWWU1URm1ibFp3YWxwc1JrOXRWa3BaYkdrck5IbDNSa2xJYzFGbFlVSnpVRmRPQ25RMFJUaFFaaTluY1ZZelFWUlhWSEIwVEZoTVpUSnVNRmhSVlVORGNIaFRUVFJMYW5nNVVGcE1WMFpHYUZveGJGQnlSMmMxTDNOMU9HTjBVVTVWTkRZS05FaE5OakJHUTNScVpXbGpRV2R5TlZKVmVHbHVjSGNyVVM5dk0xWlVaVEpoV1ZoYWQzaFZibGwxTWpaeFFXMDBUbkZsYlhWclFUZHFLMVZTVkVaM1pBcG1aRzloWWxKaFNrdG1hVGhpTlM5NE5rdzJiemgzU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbE01WVRKTGVGbHhjRFFLYkdGemVIWlljM0JJTUVsSVVFdDVUMDVFUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZzVVU1bFNrZHRVRUV4YWtaRVpscHhVVVV3YVFwRGFUaEROV05EYmt0bmVqZE5TRWg2Tkc5dE1WaDRlV1ZGV21SS1FrRXpNVFkxWkhjNFFsSnhRbmxNYm5Wc1pWbGxSVWsxUWl0RVVVSm9Na1ZaYW5CeUNpODBURUp1UTJ4V1N6ZFdNVlYxVHpGa1QwVjRhbGxtUWxkbU5WZ3JSVTVGVFVaQ1FsTkNUbUZKUjNVNVptbDFSMjExZVVGMFJDdElOMVZQVFZWWlp6TUtTVlJXV0VVMlkxUk1kaXRVVjFoSE56Qk5SV2hJTVhoUlJuWXpkbFl2WVhkWVRHcFRZemN3VjFWdU5FUkJla1pxVHpCRWFFVlVNWEY1TmxkQ2JqUlRXUXBZVm5FMFIxWlRhREF4TjBsTVNrUlZiRXN4YUV4a1ZWaHVRak5zVWpkVlRGSTFiVmxXWjFFeVZuWkZUbTU1YzAwMVl5dEZRbVpKVEZSbWJteFdReTlMQ25oU2NqbHpNVlpNTjFaRmVrWlljMjl4VjJwdVFVMXBWa3hGTVVaV1ZUQjZTQ3M1YVhobVlUbHhNa1p3YTFGcmVtVkpRekl6U1ROSU1XMVVkMEUzYTNvS1pua3pNRE5HV1hWc0wxWlFXalJWTHpWSlpVaFFTMlF5VWpKcFlsTlFhMkZzYVN0VVIxbzBkVlJqY0hoMU1FSTFORU5zV1VWaFFrbFFNVnBGY1hkV053cDZTMFJqU2xreWNUaGFMMjVHY0RoUGJuUjFiSGh4ZUZwRFVTOXZXWGM0YVN0SllYTjNZazFJTjNBcmFVTmpMMjFUSzFGSFZVMUpXVkJFZW5CcksxTmtDbWhGTjFKc1FVOUtkRUpsYUZCc01uQjNNbXcwTWpKa1lUaHJUbTUwU1VSMVRHMUtUR3RuVTB4WFRHUmxjbTVKY0VacGVsZGpja2xIYkhSWFJEaE1NRFlLUkVKaFUzVmljMm9yVFhKRlR6RkthRUl4WVRRclNVaE5VbkpRZVRZMVFpdHJOVzh6WlVwNVdsb3pUbFZVWm1STE1HcHpWWEk0VG14VVluRmxhMUpYWWdwc2RGQlNRWE4wUkdjNU9XSjBOamM0Y1RRd1JIZDVWM3BhY1VNd1VGcDVSRGRFYmtOd2MwcERTRGd2UVN0cU9FTkpaRkpLV1ZKTmJUbDNUbGxGWVRJekNqSkpaSFV4UjFSMGNVOU5TRWxGY0RaVWFYazNNRUpCUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMmRKUWtGQlMwTkJaMFZCTUd0RFUwTlRUbnBwV2xwQllrMDVSSGR0VDNKcVZVRnhkSE42VjNWWGJXWlNUR00xVGtFdlZHOVFWMkZTZFcxeENrbFVlR2hxU0RsNVJ6bDVUM0JRVGpKcWQxUlRSM0V2T0VGVk1qbHlLMUExUWpOS05rWXhaRFYyZEVWalN6SnVRMUpLUmtVelVGbGtUVlZhWWxoT1dTc0tWSGd3TTB4Uk5tcGFaalZKWVdOemFIbGhhSFl6ZEhOeU9FUkpiQ3REUTNKNWIyOTNTRzEyY0RFMU9FdDJXbEZwWm1sTU0yZDNVV1poWWpGSE9IaEtTZ3BxVTFaeWNURjFTV2QyTkhaQ1UydFZjVTFFWTFoSVVXOU1jVTR6T0dWdlVuSnhOa1YwY2trNUwxaGxkelpKZW01MVpVNW5kRVkwZFdNd01ucHhPVEZHQ21kVlpIcDVSeXROTUdWQmJpOVRhWEV3YmtkVlREQnZUMEZYVVhrME5ISm5WRXBYWVdoTlMxTmxhRWxGVlZsRVpsUlRVVE51YXk5MWFVSm1NRUZ4VGpJS2VYazRaRWhKV2xob1NHSjFVRms0YWpWT1dtNTZSVEZhTVdGcWRtTllNRFZNVkc5V00yazNiaXRoU0ZBMWFUVXZSV1pwU0ZWeFNUUlFNelJ3Vm05SWNncHBibloyVlRkdVNGQk9ObTVGYVdKR1pGQTBWVFZJVFZoblp6ZFNOM2t6T1U5SWQxaDRlbkJESzNsNVkyOXBSM0JaZDFwc056ZFRibVZESzBaelJWSmlDbnAzU0hadWVHMXdRMlo2TURSWlFYcEVkbU13UW5sblZrVm5aSGRIVDJaSmEwcHNla0Z6WW5oNk0zSnNhMmhoTlhWa1RXOU9Xa2RqZFRWeldUZEVkVlVLU1doSWJEbGtXRFV4WVZreVdsSlVjR3hUVjBwWmRuVk5jMEpUUWpkRlNHMW5Za1F4YW1KbFFsQkVNeTgwUzJ4a2QwVXhhelppVXpGNU0zUndPVVl3UmdwQlozRmpWV3BQUTI4NFpsUXlVekZvVWxsWFpGcFVObmh2VDJZM1RIWklURlZFVms5UGRVSjZUM1JDVVhKWk0yOXVRVWxMSzFWV1RWbHdObU5RYTFBMkNrNHhWVE4wYlcxR01tTk5Wa295VEhSMWNXZEtkVVJoYm5CeWNFRlBOQzlzUlZWNFkwaFlNMkZIYlRCWGFWTnVOSFpISzJZNFpXa3JjVkJOUTBGM1JVRUtRVkZMUTBGblJVRjZXRnByVURaSWVGTnJZMWRrYWpac2FrNVZlREZFYzJObmNqZDVTbmRpWTNGYU5GUjJTbWx4ZVhWVE15dDNlR3hSVlRGelZtOTRSUXA1YnpGcGNVUmtlbUZLWm1oaGEzTkpSRmswV0VSRlpsRkhSVXcyY0UxNlRFbElibWNyVm5aRmFVcFZaRzl2UTNkVWJreGxNMWcxVVV4aFpucFFOR3BMQ21wUFZrNW9ibFZJWXpkWGVXWlRibHBoYTFSWVltWTRabGxxU21kcE5XOVNWSEpGVWtsbGIyUlBkalpaZFdWUVVtWjBaVVVyWjNsdk5qbElhSGRtWTFZS1JrVXljRlJZVjNwNGNWZFNjM0JsWjI1T1RVdGFPVWhDY21RM1JuVnVUemgxU0VjMk5EaGhkWFpMTVVNeE5FRnBSRWhQYlZoU1JrTXhkVGh2WVc1eU5BcE9ha1JFV1RGWVYyVlJhV1JOZDJzdldHOVRORnBxZUZWeVVVdFdiVm80TmpOVFpUSkxTaXQ2YlVGTlNXaDVRemxxVTJzM1VEQnFWekJuUVdOb2NpdFNDbnAwVldGUkwxbGFjMWx6UlhKR1dEWnpRakJEZDFCclMxbDJVV05aVG05VVdHdE9OamxpTjFOU09YcFNPRTlVZGxsRFZrbDVWVFYwVjFSUlIzQTVlV1lLWXpaMmREZHhhbE01WlU0elRFUldhRlYxY2pCNmFFTkdjRlZYU210eU1VeEJSVmd3TDJadGMybFlWVEZhUTFGMGRHVjFUR2x5ZVUxU09EVjNlblJ2VWdwQ1RGVkxTWEpMZVRKR1FWVllhVFZ2Um5kTVIwbzBkR2htT0ZKcFJ6UkZlalpIYjJGb2VVeHRaVmR4ZVdjMllWUmhURzFNZURkcEsxUkpZVVJKV2xCaUNqVndiRkZ1WXprd2QxRnBUbU14U1hKNFVtSm1iRVJRYjJ4dWRrbHRkbmxhY1dSYVRHRkpRVTkwZUVoc1RFVXZTR3BIUldaWlNuaDBOSEpsY2t0d1Eya0tOVVV3YzBkcmVVVmpOSGRLYm1sME56aGthVFpOWTI5MU5sZDBVVE5oTDNGdVIzWlZaVWxvUTNNd2FEVXlPRmhsVnpOemMwNW1aRzlIZVVOd2RtTkdjUXAxV2s1U01HeHBhRFZOV2xVNGVIWTVTRVY2Y0RaMVJUUlZZbVpVVVdZeFJrTXdUbWR6T1VaaFJWUjJhVUZ3UVdsMmRVVkRaMmRGUWtGUGVqTkhOalowQ25wR2RVZGhUSGd6T1VoSVEwbFNOM05MS3pBM05uVkVPVUZqTWxCemIwbGxkV1JsWkV0VWJVMTFjMmQ0WVVVeU5XWklaR0ZpZWxsV00zQTJibWhMZFV3S1RVTk5kblZyY0hGbVpscHRkWEp2U21ORlUxTnZRMDFJVFROcVNXNUlZMDVXWTJkdGJWRllXR1JtWkhrMmJ6aFFWWEZKWjNSSlVqUm1jWEpIZGl0TVJBbzVWVTVTUm1scWRVWktZVkJNYmxndk9HdFRjeTlXUzJoUU4xaERiSGNyYlRWMU9VUk9PV1ZPUzNCV04xZG1PV2xsYjBReFdsUlhhMFpLVERrclZXbEdDbUUzVFN0RlRXWlJXV0ZzTVVkNmVIUk5jRUZUVEZWRU5EQmhXa0ZrTjFSUWRuZERkMmxvZWtaWlRtOTRaMFpwY2xObVF6QjRLMFZySzA4NU0weEdhMWdLVWpSTU5qSnljVGRNTVN0TFpqaFZkMEYyTHpkME9WVmxjRUpXYkVGdk9VbGhXR2xLT0VRcllYQktkaTlCTkRSc0syZG9SV2MyTmxSUk5URlhiVGg0VmdwNlpuUXJVMmx4Wnpjd2JWWm5ZVEJEWjJkRlFrRlBUV3RLU0UxeVJsQkROa1JoY0VnNGFtaFVjMHROU0ZWcGR6UklORTFJUkhWYVVqSXpSekpNVGt3eUNqTlFVa1pXU0hacGEwNXllbUZrYlc1TFVHbFFjM0pMVEZveFpTOVhObGRSSzFoNlp6QlVWVkJVTUZsUFdGVndjRVp1V0hJM2N6WkhiVEJLYmxSSmMwVUtaVVo1U1daMlQxQTRMMnhxWmpsWFduWnhkWFU1SzNaU00ybFllRXRVVVdWeVJVMXdhR1J1V1RreE9DOVpTQzh6T1ZoeU4wVk9TRTEyTTFKc1MwVnJjUXA2UzIxM1RWY3pWR1JxVnpSNFJVcFBVbEZrUWl0QlN6RnRaV2hGVG1kUVRVdGFlVWRCVTNoQ1MzVkZTbU5uVVcxRVEwdHZZbmNyUkROblVVVlNOekpwQ25aak5WTlNjbTlCVld4NmJVTlpiV2h1TVhkd2JYWmpURVZhT0hSWE5FUkdWV2hSVEROamJqRjJPRTV2VDNNeWRUVlJZMHR4TDNsQ2MwdHJhRXRFZFZFS2NHNUxaM2M0UWxRNVZqQmFiV1YxYTFGRWNXUTJaRVJvVjFKWFJsUmhTREZ0VnpsUFYzQnVSV0ZTT0VOblowVkNRVTVXYjI1dlpYTm5iRlZVVFZwUk5ncDFLekJRYkcxRFVUbGxZVXhvWW1KdFdsRTVTMFZOZG1FdlEyWlJjRWRZZERsbVIwSm1XbmQ1U205UlpUY3ZWbGh6VFhoV2RHTm5RV0pJVUdvNFpsRXJDaTh2TkNzcmJpczVURVo1TVdGSU4ycGFNVzF3TkdrdlpERktiVlJIVmtWSVowaG9RVU5FY1dFMVEwdGlUR0ptTkVKTGRYTnVkbVZOTXpNcmJYTlVlR1lLV0drNVVqazVabEpxT1VOR2MzZGpUbkpoUkRKQ1RFaFdPRVJyWlRSc1dFRkVjeTlqTjFkd2QzVkVPRmgzWmxOVVRuVjRRM2x3VTJwb1EwWkVSR296UmdwNk5EWmljSFJISzNwclEzUXZaemszYUhWUmFGQjVNbHAzZW5wT2QxUlRNRVpqZFhKMFVtdHNLMnQwVEhCSkswSnBjV1YyVUd0T2JVVmpUa2RTUjB4VUNsaGFReTh6VGpSeWNGTm5RUzlOYURBNVpsWkhjVkV4T1dVeU9WSlhkM05PVEVvMVNrSnNlVzl0ZDNWRVIwMTZTMVkyVTBaaldEWlBPRUpzUlROWGNWTUtNR0UwUm1SWGEwTm5aMFZDUVU1blptcGhZMloxVURoTmNVOHZOMGxTYUVSWFdFUnRRMGRSVjNseVZVeDRSSFZYWVRZd1dUUkVSMnAyY2pKWFRXcHliUXBoTVhCS0wyTXJhRnBFVTA0eGExSlpja2MwY200dlNUZHlXV2RNUTJ0VWIxZHJLMWxZTVM5eUsyWnJaVVZ6TTJvcmJITkhiWGxuZW1seGNsSklZWEF5Q25OSVpqbEhjV1ZPWTBsVkwwdEtjbnA0SzBwdFVYZFNZVzk1U1UxdmJGZFZVV3gzV1cwMlRtNTBaVmhqWldwaFIwVlRNbHBEZFc5RWJGWldiMVp5TDJZS1ZYcDZkVzQxT1ZCb2FFeFFla1ZKV0hSWFpuaGlNSFpTZFZVME4yMHlXVmRaT0hoWlFtMXhORWxTWm1oSFJIVXhRakI2WmtoaWRuTXlOV3Q2V2tOVFlncEtZMDVNUW05M01HZHpUbGwxZVVOU1NXRldTbkpUVlhKdE1YVkVjSFpqUW5CQlRUQmhOamxHTWtwdlNYQXphazVzWlVJemMybGFja1JzVmtoaWNuSlVDbkZGVmpkc1NqbEpWeXQ2Y1ZWSk16RjJZVkJwWjA5dE5FaE9VbmgzTTJSSlJWcFZRMmRuUlVGRWRXUk5kRGxFYlZoeGFIQnhkbFZUVkhoRmNuQlFiVGtLV0M5cVdXdGpjMGN3ZUhCVWQxRTRjMlV5ZDNaWVUyWkNlbk5XV21jMU4ydDNWbTg1TUhwMU9HUkJiVFJTZFdwM2VIbEthVzFPWlVGNlJYSnZVREpHVFFwTllYUmFhR2RwWlRWV1ZrNXRWWHBCZUhaNE1FNTVXbGRDTkdsQlJXRm1kMlV5YjBaRlkxa3JPRE00UTNkMWJGTnBURVpoTW1wTGVrNXVVbXhKVkRGdENuQkNUSE5CUXk5UlYzZDVWbE52TDNFMlJVaHFjMGhGYW1SUk4ydFljVGxPVVRsSVRGZGxWSGx6WVRoamJYSkhiMWxUWWxGTFlXOVVTbEZsWkZkcFNGWUtjekkyYW01RGMyWnNUMDEzU210aFpHdEVRWFZOUVVwQlZYSnNlRXhSYkVsSk5rZGxRbmRYY1hvM2IxcEZOR2R1YUdSSVdIWkJXVkZOVjNjNU5qSjJkUXBXVUZOd1FWZDRXblJMTlZkdVRqSkJPREZ3TWsxRk1HMW1ORXcxVUhsUFpFNVBkRlZpVFVoMVNVdENSazFVTjBSUlMyeDNkUzlyVm1sRGEwMHlaejA5Q2kwdExTMHRSVTVFSUZKVFFTQlFVa2xXUVZSRklFdEZXUzB0TFMwdENnPT0KICAgIHRva2VuOiB0cGNvOG81ZThvOWVjMmJ5MGE5Y2o2cXl4bTJ4MHhrdTg0YmFsbTZqdmdvejVsOHM5cTN6cTE1cGJhaDE2YTU1OGt1MWlyM2FteWxmdmFzbXZlNjcydmp4cm44cTJtNzduZTRjem1vam9pc2Ywc3VuMHl5OWZwam1jamd4ZDVsYQo=\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSWmtKa2VFNUNPRWMxVEVGVmVIRktUVFpXTTFacWFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVZYZE5la1V5VFZST1lVZEJPSGxOUkZWNlRVUlplRTVVUVhwTmFsbDRUVEZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOMkNrOTNZVzlHYzNsMGEyZzFkbFZDYlRCRVNIVTBaSEY2VVZGWUsyUnJZVXhVVldwNGVsQkNUVkZ6TjNaNFZqUk5aa3BCYmxwMk4yZEdSemhQYTA5TVJEY0tiMHBUWVdOQmNVVnJSakEzV25sM056aGFOMGhGWVVvMmMybDNObXhZTjJaQlVtZ3pjMUkzVFdwcGRFZHVUWGRDYzFCd1ZsSTRVV0o2UW5sbWFqY3pkZ3BOYzNsYVNWVlNUV1ZTYkhSRFNVVmpTbkJPVkZJNFYyZERNRTR2TlVwRVVWbEdMM0ZqZWpCS2QxWlVMMGR3ZENzM1NuRnROWEJzV1VKM2FVTnFkbkZEQ25kbVFsTktSRmd4V0RBNE5pOXBabFJsT1VWbE5YWkpkMGQ1VUVzM2MzRm1lV1JMUWxkTVpIVXhNQ3N4ZDA4d1NsWnJjVlU1YW10ck1UTk1ZVFpyYnpNS2JHMVFMeTlsUkRWR1FXOWhRVlZyYmpOclpIWlJRbE0wVVU0MVozaERSR2t4V2pGNFMyMTJibmh3V0ZOc2QwcHNNREZUS3pWT2VqUTBVVkIyV0dKd1ZBcFFlV055VFhWM1dUaDZXRTUzZDBWckszWnROR2RuZERFMlIyVkJVakZGSzJ0Qk5IZG1OV2x5T1VoeE1GSllhMmhKYXpJMVRUSlJSa2dyTDNoMk4wdHpDbmN2Y2tOUFJscDFZMWd4UVhkWWVuY3pkbEpRUnpSTWRuUjJXalo1UlRGR2RtTlFhVVZZWXpob1dUbFFWRzlLZUZvck5sVkJXRUZRTjJRck5rWmllbWNLVG1zck5qRTJPREI1T1VaU2VUUk1lWFl6UVUxdWRUQk5MM1pGU3l0dE5XRmFZM1ZIT0hrMVZtcHFVbkpPWVhkWlRFbHlWVGhrYURsQ2RrbFpWa2xZVEFwYVRrTk1VMVpxVHpsNFNtSnhObTlMV1d0WmVIWnZTRVYyTHpoRFlXSlJSbTlKWlRWbFpVSlpLMDFTYmpGRmIySmlVM2RDV0Zsc1RHRjRLMnhPUlhFNENtWTJWWGg1Vm5aek1Gb3daamxQWjFSVFFUVkRaREJ6Y3k5RGIySnFjWEl3U2xadVRWRlNZM0pxVTBOYU0zQlpkVFl6TkZKdWNXMXpkbGRpYXpkd2NWY0tRMUJrV1VGUGFtVnJZVFZDWlRaU01FWkJWazFvZWxweFIyeE5XWFZDWTJkYVZVdHFZMXBpTlRGM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZVM2FrNUhaMHcxUkdSTlMyNW5PRlZ1Q2xWNFMzZzBNVWRhY0dVd2QwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGR1QzbG9NbkJWUlVWUlIyVjZSRGh4YmtNclRHOU5VM0pwTTJ3S09VZEtTa1lyY0RSTE0ycFBhSFZLZW5aek1XMWtObkJ6T0U1WVZtOU1UM2wwZEhoTVkxRndiREowY1RaYWREVXhUVGd2YmtWdmNGazFNbGRQZDBObk5BcE1WRlJXWVROemMwc3hSMk5QVkhReU1EZGplRXRZUkhCakwzVnNNelkxU0cxQk1FcHBhR0kzVURZM01DOUxLMWN4TVcxb1kxY3pSVUpaVkM5bkszaE5DbTFMUjBwV1VVTlJZbkpOWWpSRUsyZFJZbWs1UVZFMWFXZzNNbTltYmxoQ2R6VlhOelZrTkVwSFV6aGhTVEZNU0dKdVZIQjVLemhKWTJaS2RIazViWEVLWlRsaVZURmlOSEZaYkRVMVIyZE9NRzVOVkZkQmFsUlFPVk5XVjJkVlV6bHlURE5FWVV4UFQwdDZhekJYU2pWUk5tUnNTa1JzTjJ4SFVWRlFja3hIYXdweFFtdFhWRm8xYzJrclpFOVlZVmRTWjNwTmJrVmhVRGhFV2pOM1pGTkVOR1I2YjBsbFEzSlpRMUY2ZG14aEwyNXpXRGxEYm1SbVZGTTJkRlJLTVdWU0Npc3lTbFZVZUdoVmJFcFlMek5UVmxoNlIxSkVXRlYxUzNBeFdqaHFOakZHVkVobFVITmFXa2xhWTA1VWFrOU5SVGwzYW1SdlNXbzVOR3R0YnpkdlYyY0tXWGh3U3paRlFuRjRVWEp5Um1aMVUwZzRTSEpaUWpWMlJreG9VVEpHYkhWQmVHbE5UbmR6TTFaNFJrZGhWVXgwYTBSSFIxaEZZbGRFUTBkTWJEZFZWQXByYTI4NVVtOURVMHBvYW1JemFYZHBibk5OWVdrdlJXUjRWMEpYUW5obFF6UllTWEJzVVVsWlQyd3JRa0ZtYzAxWGJUQnFLM0ZVVjFZdlFqbEdjRE5HQ25SRVpta3lhMDE2ZGt3ME4zUlhVa2xJY1cxbUsxQXhORlU0VFVZM09FeDRhRTFSU210MFNGVjZNSEZuVkZsYVkwaGFOMk5FVlRKbFJsWklSaXRSY0c0S1NUZHRRVkZITXpVMFRtSkhjbWx0UWxGUFdYUkdNbHBtYmtKbWRVRm9iblJTYUVGVFZtcHphSEp6TWpJellUTlVkM0I0T1dNelFuUTFhRTk2YzBwWVl3cEdhekZqVjAxalVFaEtWVzFXYUhrdkNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2RuczJ0dnQ3N2MtbHZlN204NHIuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RoNnNvc3EKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RoNnNvc3EKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RyMjR0a3RrNnpvX2NsaWFrc3Rlc3RoNnNvc3EKICBuYW1lOiBjbGlha3N0ZXN0aDZzb3NxCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGg2c29zcQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RyMjR0a3RrNnpvX2NsaWFrc3Rlc3RoNnNvc3EKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJTVUZMUjBkWldUaFRjRmhEVHpsTVYxVlRRbFV4ZWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVlhkTmVrVXlUVlJPWVVaM01IbE9WRUV5VFZSVmQwMTZTVEpOVkU1aFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJpTjI1RE0wTlJWMGhaZVhOSVNUTlVabU5vVkZJS1dsRm5UUzgxSzB0M1JXYzBXVWhuYmxaNFRYVTVUbG8zVG01SVFXTmFjSEZoWlc1ellrYzNTazFUWmk4emVVaERlVUpJUjI5TWNuZFpiMlJrY2pGbFV3cGFXR3N5VjNWVWFqRnJiRzkzVFZoUmNrUmFjWFpSU2pKMVkxWnRNalJwYkdsek9XNXNkR3QwTjBkQlQzQm1aVm80VUZKSE1Ga3ZNWHBETW1aamJVdHZDbU5vWW05NVlYcGpTQ3ROWldKYVMwSkRaRVJqYnpjclJUQXhjVkp3ZGtwV1IySkJNbmsyTlVSaGQwY3phRzVzYXpsWmJVd3JWVzVIVWtOVWVGcDVUVkFLVEZSME9FUm9SbGRUYkdGTWRqVkZXVnBzVkV0MFIwUnZPVU5qTm5ZelRWVjNPWEZaZGs1aE5FVlVkMUZKVDFoVE5HWlpNRE5YWlhkd1JsUTBablJKZUFwaVFXeHVVVTFhWmxsdVZXTkRhaTgxUTFCeWRUTmxhMkZEY2tWelVHOVlXRkJ1VTFWT2NtNUVTM0V6U0dGVVJsbDJkVGRpYWpCVVFuUjJSRFV5YUVKWENsRk9NemRHVVU5SFMwMUNZblZUTVhkaU0zRk1kRmxHVDBSbU1DdGllRXRNVUdsa2JuTmlSVTV1VUVwSE1XUkZURVpsV1VwRGFFMXhaWFY2VFd0bVJXMEtlbWxIVjJzNFp5OXRjalJYYWpVeUsyaGllWGxPTURSNlpTODNNV2RTV0d0cE4wUkVOVWcyZUhoVE56UlVRMHQ2Um5obWFVaFRjMVo1THpOaFEzbG5hQXBrVnpGNWJXWm5RMUJzSzFWQmJreHVOSGRsVFZoc1JUSlhWVFpETlROTVJqSkdLMlpuTkVOS1RVeFVObXgyTmtoSVUzZGFZekpTVmpKc2FuRkRMM0EzQ2pGa1lVeFdSV1JrTjBSRFRTdDZabHB0VUN0c1puaDNWemR3Wmt0V1prZFVjbmxWZG5ReGNqaE5NMkYwZGtvdmRqWTRNVTVpY2tFd1kydHVSSEowUlVZS2JITnpOR1ZKTVZWV0wyRmlkamRwZVdRNVNqa3lRMjFrUW5aUFFtVnlWSE13VjNaQlRFVlZlVmR2Vm5GRWVFeG5SRGRpU1hFdldEUkNNREZVVVV0aVZ3cHZZMlpxVmtOeVQzbGpSV1ZSVjFZeVdqTkVRM1JSU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbFIxVFRCaFFYWnJUakFLZDNGbFJIaFRaRlJGY2tocVZWcHRiRGRVUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZtUmpOVFlWWXhZWGdyYnpOUlpuWmtPVTB6VXdwblF6ZFBjbm93WkZCTVNqUkdaVWxoTkhsdFVXMUJZM012Tm1KNWRXOXJNa04yUzB3clFtcFNaMmRSVW04ME1YaGtiMnA0ZGtwWWVtbzFNVE0xYjJFMkNsbHVOREprVW5WbU1VTnlhREV6ZFc1MVN6UkljRGhxTVU5QlF6VnlOekpEUmxaNVdEWnlORWRpYVdKT0wyWjBla3hzYkVOM1JXaFNVMHQyUVZRMlVua0tSVlF6ZHpoclpVSkthRXRJYTFKaE4wOVdZa2hMWkRrM2VVdE9lRUk1YWtGeU1sUmthVXd6Y0ZwaVV5OUNTMmRhV0VsbVRUVjRVVkJJVUZWUmFFWlNNZ280WXpNMVdHSTBOVWhXYjBKYVlVUXZOVUkySzNGM09IQjNNa0l5WTBscVpsRkhiR3RNWVZFdkwxY3diVmw2UkdnMWRqVXlabFoxTW10cVNrSlpjVkZTQ2xGNGF6TmFZMnBKVVZaM2NucGtTMVFyWmpBMVQwYzFiVlEzUjBGdVdsTm1kM0pSVUhCS2VXaFJhWFZrU2s1V1RUbE5VMlp3UW1GVVkwdENablZ4UmtNS2RubHVUVXR4T1M5TWMxcEJhVTF3V1ZwdmJXSXdSR1pqZG1wUFZsbEZUbmR5ZEZaTllXSldSMVJaVFhKQlJETk1VbTVVZDBOVU1qSXpiRVF2WW1WblJBcE9WVEZwUTJOblFsUjJVRVIyVUdNeWJHcG1VMlpFUjI5WlJYRmpOMEZqUTNwS1JWVkpURmN5Tm5OUFZYazFhM28xWVVOcWJqZEhjRGd2YVVkdFZtZFpDa2MyU2xGNlVVSTNjR3Q0ZW5aM01rSnVUbFV6WlROa1RVWmxlRWRTWVV3eFYwbDNhWE0yZVRaMVMwdHdjMUppYmxCS1JYZFROMDV3VDBGR2VIZEpXREVLWVcxWGFEWnpkMHRZZWpNdlRHWkJaa3BMUzBGak9VSTBlV05IWlU1cWNVUkViMnRZZHpSdVNETk1jR2gxTWtKNWQxWTVPWE54TVhKUFozZEpjbG8wTWdwVWVUaGpUV1JqY0UxV1JtWlZWVmhZTml0aFpXeEZVVll4TjFJemJsUnlRVVZRUzNWMVRsY3dWbFZUWVhsd1Zpc3ljblV6VW5WMGRYSnZhMDU1U0hCUkNuWnlabEpNZGt3cmMzRTFVbTlqZWxFdmVtTk1iRkpaUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMmRKUWtGQlMwTkJaMFZCTWlzMWQzUjNhMFpvTWsxeVFubE9NRE16U1ZVd1YxVkpSRkFyWm1selFrbFBSMEkwU2pGalZFeDJWRmRsZWxwNENuZElSMkZoYlc1d04wZDRkWGxVUlc0dk9UaG9kM05uVW5oeFF6WTRSMHRJV0dFNVdHdHRWalZPYkhKck5EbGFTbUZOUkVZd1MzY3lZWEl3UTJSeWJrWUtXblIxU1hCWmNsQmFOV0phVEdWNFowUnhXRE50WmtRd1VuUkhVRGxqZDNSdU0wcHBjVWhKVnpaTmJYTXpRaTlxU0cweVUyZFJibEV6UzA4dmFFNU9ZUXByWVdKNVZsSnRkMDV6ZFhWUk1uTkNkRFJhTlZwUVYwcHBMMnhLZUd0UmF6aFhZMnBFZVRBM1prRTBVbFpyY0ZkcE55dFNSMGRhVlhseVVtYzJVRkZ1Q2s5eU9YcEdUVkJoYlV4NlYzVkNSVGhGUTBSc01IVklNazVPTVc1elMxSlZLMGczVTAxWGQwcGFNRVJIV0RKS01VaEJieThyVVdvMk4zUXpjRWRuY1hnS1RFUTJSakY2TlRCc1JHRTFkM2x4ZEhneWEzaFhURGQxTWpRNVJYZGlZbmNyWkc5UlZtdEVaQ3Q0VlVSb2FXcEJWemRyZEdOSE9UWnBOMWRDVkdjek9RcFFiVGhUYVhvMGJsbzNSM2hFV25wNVVuUllVa040V0cxRFVXOVVTMjV5YzNwS1NIaEtjelJvYkhCUVNWQTFjU3RHYnl0a2RtOVhPSE5xWkU5Tk0zWXJDamxaUlZZMVNYVjNkeXRTSzNOalZYVXJSWGRwYzNoaldEUm9NSEpHWTNZNU1tZHpiMGxZVm5SamNHNDBRV28xWm14QlNuazFLMDFJYWtZMVVrNXNiRThLWjNWa2VYaGthR1p1TkU5QmFWUkRNQ3R3WWl0b2VEQnpSMWhPYTFaa2NGazJaM1kyWlRsWVYya3hVa2hZWlhkM2FsQnpNekphYWk5d1dEaGpSblUyV0FwNWJGaDRhelk0YkV3M1pHRXZSRTR5Y21KNVpqY3JkazVVVnpaM1RraEtTbmMyTjFKQ1dtSk1UMGhwVGxaR1pqSnROeXMwYzI1bVUyWmtaM0J1VVdKNkNtZFljVEEzVGtaeWQwTjRSazFzY1VaaFp6aFRORUVyTW5sTGRqRXJRV1JPVlRCRGJURnhTRWcwTVZGeGVuTnVRa2hyUm14a2JXUjNkM0pWUTBGM1JVRUtRVkZMUTBGblFVaFhMelF6YTJKNU1tOUNTR3BvYTAweE5uVndXbUV5YTA5cWEzTXpZVWRJUTFOVVFXTkhUMVJUWTBkNmR6WkplRGMxVWtaSGRVVTJWUXByTjJoT1ZWUkVSMlJvTHpaR1dtNUxja3gzTUhGUlpHZHJhWEEzUVhCNFFYWnNMMnRaT1hCSVFVSlNaV1pFVkVJNE5YTjFaamszYTBwNmNESldObEJFQ2tWeFFXNHdhalJSYmpKelpXOXdjRFVyUXpnMlExZEJTbU4wYkhOVE5EQkxjM2g2ZFhKTU5UY3lVM3BMTVhCdkwydzVZMnA1WWt4Q1NuWllOamxSV1ZvS1pqQXhVV2RxWTI1bVpqa3pObTFPTURWS01tTllaRVpwY0hCSVkzZDVWek5oTHpCWGFIaDRTVkowZGtSR2EwZEhSM1V3V0ZCdWVFWnJabmd5TWtkeWNncExNelV2TkVWMlJFOXRZVmRZVDNSU1REUjBNWFJNYjBoTGNUZzNObWxMVTJGMU9UUmFOa2xHYTNrME5qRm9jMWhtVTA0NGRFcHFha2w1UWpGaFIybGpDbEZSZVUxU1JsSlhWazlZU3pBelJFbDBaekpXT0dSdk1HTnBRMVIzYlhoc1RHUk1OM0poYW1OclZtdzNVVnB4V1ZsNVZUTTNlbmt5TDJrdmVIZHVlR3dLUzBSWFozbHhVR2xVTW5sVldUWmtjV3cxUkhCMVN6ZHRha1V5VkROemFWcE5jRVZKY1VSMVZsYzNZbnBOZDJWMFZuZHNkRTFXUm1VM2VVbDRNVXcyVlFwVlNGbHNkRnB4UkRrdksxWnVibGt3YUhGdFZuUk5kRUl4SzFCeFRVSTNMMFF4WTJ4T1FpdGtOVVJLTUVWc1ZITXJlazlzU2t3M1EwRndaV1ZpYkV4bENqUk1keXRRYWtkblJrZFhabkY2YlZKVGRrOVZPVXBhVWpsa1dFbHlUMUZtYm1KblpERmtTbUZGWkVONVRXaEliWGhZUTB4cE1GZzBTbTh6VWpCc1NYQUtjVVpLYUhoRFEwVkxTQzhyTHpSTFkyOWxkMnQwYnpGNUwwOTBOVmhqTjBKbVMySlViVEJGUmpWM01XTklTR2hxUm1Zelp6QjZUbEJwZFhGUldWTktaUW95UW1ReU1qQlZhMmxPVUZOQlJXSkxaVWRYU0RkM2RWZ3djeTlVZEVGUkwweHlVMnhzWnpaTlQweEtUVlZtYkhWRVVVdERRVkZGUVRaemNFMXJaR2t3Q210S2VqVXJWMVJ2Y1UxWE0xRXJOMDlWY1U5RGVrUkdkM2szV0RsM2JqRXdkRkpWYzBaWU1FRTBXaXRuT1UwNVVqbEJOVlJxUTJNMk1FRm1TVWRxZFRRS2VtWlpOMEYxY1dsaE5scE1TR1JKU2tFemQyTXdNazRyZFcxc1MwVkRNbVZDZVd0WFluQk5RMFZSWlRodWVubFBkM1ZUWm5WT1NHaGxVbWhSUzB4T1pBcFROblo0U0VVeWJHRlRSSHBoTkdVNWEwTm5hMk4xUld3eFJtZE5ibXRrVHpWalFUTklUblZsYjJoQ2NuVXlhVzlSZVhKSFptZG1aRXhtVVZoMGRsSXpDako2VkhCQmMxUlFTR1YyVTBScmJ6ZzVjaTlGUW5ZeFYwSldaV28zTWtsdlZFbHpTVE5qUVRWTUwzZFFkWFpPZG1ZMWJHVXlhR2RtTmxCb1dsTlpjVWtLTUdwU04xSnhPVXhFZEcxdlZpdEtSWGt5U2xoTWNITnJiemxzUVVOSEswSjNXSFZ1WldGa09Gb3lUVGx1TWtSSU5IUnhObEZuWlZORWFVc3lURWx5WlFweFZFNUphMlJJTkc4clQyTlNkMHREUVZGRlFUYzRlVVpETjNBeEx6ZDRiRWhDTVhoWGJWUkJTMWh1WW5sR2JHSkhOV016VjA1M2JYWmljMmRhTWtKVENrUkVaMHhySzJSaVFYTk5Ubk5FZWtWb2MxRjFabFZ0VG5GMVlXVnplRWx0UnpobWJVUnJMMHhFZFU5MU5FMDFNa2RIUTNZNE5EQnZOMVo0YUZwdVNVZ0tXazlxVDBaa1prUjZUbFJ5V1dsMmVXOVJkSEEwTmpSUmVISkhObHBXZEVWSlkwaEdTVXhqY1c1dE5XZDZlblJNUTFaVmJsVlpSMjUxUjBsWFdqTlNkd3BzTjFJMFJsTjFObEV2WVU1a0wzSlZRMms0U0ZvM1VYRlZjMHh0VkhCcWJFNU1Xa2hqV25oUGVXcFBkRnBaVUZCS1puWkpObGQ2YTFVMVZXZE1MMkY2Q2xkQlltYzNjMHB0U2xwVFNucElPWEpPVmsxM1FXRkJUM2MxVURkMVdWQnFhSG81ZFRWeFRYcDRNUzlvV1hndldXTkpTakZqY2xadlNqaFRTa3hDTDFrS2FVbHRSelZ1VVd0VVQyUlZkWFIxVDNsd2JHVXJhVlEyV1ZjeU1VNWxZV3BQYkVFdkszRXpla2wzUzBOQlVVVkJiVk53U210NVpHTmxOalU0UVVNM1RRb3ZSRk51U0cxRWRVcGphbGhNWkM5bE5XNVhaSGxxTDFCWU9GbHNSVkYxVVVKS0x5c3ZNVlY2T0VaT1kwOHlWRzlKUVdaRWFWTkhSM0ZKTTBZMU1YZHlDbWR5UW1vNWJITnlWME5QYVVwdFExVnliMU0zVGxKNVpFbzJlWFJJYjNNeVdVOWxPRXNyUkRCbVRERnhWMDFhUzBsYVdYcDZTMnhrTld4NVVHMU9aM0VLV0ZFclN6TkpOR0p2Y1hka1VYWm5VR3h3ZFhRNU5UaHlTVUZSY0hJclEzaGtjVmhvYzJOMFVGbFRia3BtVkZGcFNFeFdUWFI1VWpVdkx6Rm1UMFpuZEFwcFUxcHhla3h0ZGxaWlV6WkhOV3QxWjJGUGRuQlNNVk5xYzFKM2FqQkRlbnBrVEZGaVJGRmpaVFZCVVRaYVQzUldWM2xXZVhKNlpVUnpjaTh4U21aTkNrUnBOemxsTHpreWR6TnpkWGh2SzJNNGJYQnhUa1poVW5acFpYUnNSbGx1WlUxaGNubzBibmxQT1VwWGFWaGhiekpEU0dFeEsyNXlORlpOT0U1NWVGUUtNa2sxUjFKM1MwTkJVVVZCY0ZsYWVGZEVWWFpsYjFoaE4xWjBUbWRYTkVkVWVISXdiMUZyT1VsSlFucEVaakUxUzBsS1ozcGljbkJLT1VsUUt6bHZOUXBOYlVSa2RFRmtaVk5SUW0xaWMyc3dOWGRGYlVSemJUWlZTR0prTUVsak0zcFhSbEYwTlVWTldqWjBiVU5UU1hCWVFqZHRhRTFoTVZncmVISlNVbmxaQ2pWWE1HSjRZbTg0VlhadlJEYzRkVnBtVHpNeGEyb3dOMlpIYlRZemRXaFJiazltYjBneVVEUlhZM0pVZUhsc1QxVnlTWGxqVG5Od1ZsTTJXSEpXVm5ZS2VqZFpRekZSZW5CRVRtRkdjMEZ1YmtwU1YzWXdRbFYxVFdkTFdYTnJNa2t2V0RWTFpFMWFWbGRSZWtOR1NUWTNNVkUwWkVZM05tTTRWMmhsU0RkR1JRcDJWRUZhU201WVZqRlJkRVpIWm05WU9YUjZVbG8yT0c5bldsWkNkMmxhY0dWWVozWndha3N6VUc5S2RTc3JNVWx3YUhFNU4xSXhWMXBJYXpaRGVESnJDbUZSYkU1eVYxbGpNMHhEWkhCUFIyUnBNVGhzVGt3eWRHTnVWWFZzUzFVMlRGRkxRMEZSUlVGMVdXWm9aekF5YlRKVmQwMDBNV1ZKTmt0U2NYUjNkSFFLZDNkRFpIaDFhM0V6YmxNMFZsWlNlbk0xUmxSeU5uSm1VWEp2YVZaRlkyZElhVmxyY1hsWGVFRktWV3BQSzBKRU1qUm1OVXMwVjFKVlExbEJXbFl4THdwNmIyTTJOWGhDTWxVd1FqUXpjak5UZFhWVU1sbHBkMFZqUnpoT2NtSTNNbWx0YjBWalVqRmFOMnhwV0dVclJUVXlhVlIyYlZScFdHSXZlbWRhZWpCdkNubFRSV2wyV21aMGJreFBZekZUZG01dWFFUlNNbEE1VHl0VFUzUXliMlJ3VDFNdk1HdGplbE15V1d0SlN5dDZRbm8xV0V4a1FsQnFTVmhRY1RBMEwzQUtPV2g1YzJwNmVGRXJOak1yZGpFNVVqQjZRVnBNTkZwWVdYUmxWVTlhUjBGd1pHRmthbEU0U1dzd2JHMTZlSGNyS3prMWNGaEZlbG80VlVWS1UzTkpOQXB5TVdSSmFXeGhWQzlDUVZod05IVkNTM1Y2SzFwRk9USm1NM2hJTTFwQk5TODFiM0ZqVlZoTk5rUm1MeTkwVUVFMVdYcFJWemRtVEdKUmJrODFkejA5Q2kwdExTMHRSVTVFSUZKVFFTQlFVa2xXUVZSRklFdEZXUzB0TFMwdENnPT0KICAgIHRva2VuOiBpNXFlbzV2bGhoYXZmb25kbmwzaDhma2tqaHBqNzcyMGJocWY2ZDNvbm5udmxiOGNxZnFhZHJlbTEzaGZ4dHFyODc3MTNtMnl0Nm9ieG8zcTcxbGZubTc5bGtmbmdpdTU3aW0wdDlzY3c3ZHZidHp1MzRwZDJsdWh6eDV4MDF1OAo=\"\ + \n }\n ]\n }" headers: cache-control: - no-cache @@ -1102,7 +1121,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:38:13 GMT + - Thu, 15 Jun 2023 03:29:25 GMT expires: - '-1' pragma: @@ -1118,7 +1137,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1136,59 +1155,60 @@ interactions: ParameterSetName: - -g -n --load-balancer-managed-outbound-ip-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8uf4up3p.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-8uf4up3p.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e3b0a43f-bf74-4952-bad6-1a647ab8f6a3\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-lve7m84r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-lve7m84r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9511ca2e-62ac-4261-b4b5-a962dba4af44\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3314' + - '3642' content-type: - application/json date: - - Wed, 15 Mar 2023 10:38:13 GMT + - Thu, 15 Jun 2023 03:29:26 GMT expires: - '-1' pragma: @@ -1207,23 +1227,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "properties": - {"kubernetesVersion": "1.24.9", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "properties": + {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": - "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": + "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 2, "countIPv6": - 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e3b0a43f-bf74-4952-bad6-1a647ab8f6a3"}]}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 2, "countIPv6": 0}, + "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9511ca2e-62ac-4261-b4b5-a962dba4af44"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, "workloadAutoScalerProfile": {}}}' @@ -1237,67 +1257,68 @@ interactions: Connection: - keep-alive Content-Length: - - '2085' + - '2413' Content-Type: - application/json ParameterSetName: - -g -n --load-balancer-managed-outbound-ip-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8uf4up3p.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-8uf4up3p.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e3b0a43f-bf74-4952-bad6-1a647ab8f6a3\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-lve7m84r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-lve7m84r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9511ca2e-62ac-4261-b4b5-a962dba4af44\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1064172a-4fff-4463-a774-fdfb8c6c24fd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f79d69ce-42d1-443e-a8ff-c186971ab754?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3312' + - '3640' content-type: - application/json date: - - Wed, 15 Mar 2023 10:38:16 GMT + - Thu, 15 Jun 2023 03:29:32 GMT expires: - '-1' pragma: @@ -1313,7 +1334,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - -g -n --load-balancer-managed-outbound-ip-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f79d69ce-42d1-443e-a8ff-c186971ab754?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ce699df7-d142-3e44-a8ff-c186971ab754\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:29:31.6323733Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 03:29:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -1331,14 +1400,14 @@ interactions: ParameterSetName: - -g -n --load-balancer-managed-outbound-ip-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1064172a-4fff-4463-a774-fdfb8c6c24fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f79d69ce-42d1-443e-a8ff-c186971ab754?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2a176410-ff4f-6344-a774-fdfb8c6c24fd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:38:16.6411831Z\"\n }" + string: "{\n \"name\": \"ce699df7-d142-3e44-a8ff-c186971ab754\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:29:31.6323733Z\"\n }" headers: cache-control: - no-cache @@ -1347,7 +1416,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:38:46 GMT + - Thu, 15 Jun 2023 03:30:02 GMT expires: - '-1' pragma: @@ -1379,14 +1448,14 @@ interactions: ParameterSetName: - -g -n --load-balancer-managed-outbound-ip-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1064172a-4fff-4463-a774-fdfb8c6c24fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f79d69ce-42d1-443e-a8ff-c186971ab754?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2a176410-ff4f-6344-a774-fdfb8c6c24fd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:38:16.6411831Z\"\n }" + string: "{\n \"name\": \"ce699df7-d142-3e44-a8ff-c186971ab754\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:29:31.6323733Z\"\n }" headers: cache-control: - no-cache @@ -1395,7 +1464,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:39:16 GMT + - Thu, 15 Jun 2023 03:30:32 GMT expires: - '-1' pragma: @@ -1427,14 +1496,14 @@ interactions: ParameterSetName: - -g -n --load-balancer-managed-outbound-ip-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1064172a-4fff-4463-a774-fdfb8c6c24fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f79d69ce-42d1-443e-a8ff-c186971ab754?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2a176410-ff4f-6344-a774-fdfb8c6c24fd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:38:16.6411831Z\"\n }" + string: "{\n \"name\": \"ce699df7-d142-3e44-a8ff-c186971ab754\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:29:31.6323733Z\"\n }" headers: cache-control: - no-cache @@ -1443,7 +1512,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:39:46 GMT + - Thu, 15 Jun 2023 03:31:03 GMT expires: - '-1' pragma: @@ -1475,15 +1544,15 @@ interactions: ParameterSetName: - -g -n --load-balancer-managed-outbound-ip-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1064172a-4fff-4463-a774-fdfb8c6c24fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f79d69ce-42d1-443e-a8ff-c186971ab754?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2a176410-ff4f-6344-a774-fdfb8c6c24fd\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:38:16.6411831Z\",\n \"endTime\": - \"2023-03-15T10:39:47.9043419Z\"\n }" + string: "{\n \"name\": \"ce699df7-d142-3e44-a8ff-c186971ab754\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T03:29:31.6323733Z\",\n \"\ + endTime\": \"2023-06-15T03:31:08.8410835Z\"\n }" headers: cache-control: - no-cache @@ -1492,7 +1561,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:40:17 GMT + - Thu, 15 Jun 2023 03:31:33 GMT expires: - '-1' pragma: @@ -1524,60 +1593,61 @@ interactions: ParameterSetName: - -g -n --load-balancer-managed-outbound-ip-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8uf4up3p.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-8uf4up3p.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e3b0a43f-bf74-4952-bad6-1a647ab8f6a3\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cff2a017-7639-49df-8195-3a0173d2545a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-lve7m84r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-lve7m84r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9511ca2e-62ac-4261-b4b5-a962dba4af44\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cd319351-f609-4ffa-85dc-c6cf8f9f1c19\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3538' + - '3866' content-type: - application/json date: - - Wed, 15 Mar 2023 10:40:17 GMT + - Thu, 15 Jun 2023 03:31:33 GMT expires: - '-1' pragma: @@ -1609,60 +1679,61 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8uf4up3p.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-8uf4up3p.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e3b0a43f-bf74-4952-bad6-1a647ab8f6a3\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cff2a017-7639-49df-8195-3a0173d2545a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-lve7m84r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-lve7m84r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9511ca2e-62ac-4261-b4b5-a962dba4af44\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cd319351-f609-4ffa-85dc-c6cf8f9f1c19\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3538' + - '3866' content-type: - application/json date: - - Wed, 15 Mar 2023 10:40:18 GMT + - Thu, 15 Jun 2023 03:31:36 GMT expires: - '-1' pragma: @@ -1694,60 +1765,61 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8uf4up3p.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-8uf4up3p.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e3b0a43f-bf74-4952-bad6-1a647ab8f6a3\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cff2a017-7639-49df-8195-3a0173d2545a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-lve7m84r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-lve7m84r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9511ca2e-62ac-4261-b4b5-a962dba4af44\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cd319351-f609-4ffa-85dc-c6cf8f9f1c19\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3538' + - '3866' content-type: - application/json date: - - Wed, 15 Mar 2023 10:40:18 GMT + - Thu, 15 Jun 2023 03:31:37 GMT expires: - '-1' pragma: @@ -1766,24 +1838,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "properties": - {"kubernetesVersion": "1.24.9", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "properties": + {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": - "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": + "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, - "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", - "loadBalancerProfile": {"managedOutboundIPs": {"count": 2}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e3b0a43f-bf74-4952-bad6-1a647ab8f6a3"}, - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cff2a017-7639-49df-8195-3a0173d2545a"}]}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": + "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": true, "supportPlan": + "KubernetesOfficial", "networkProfile": {"networkPlugin": "kubenet", "podCidr": + "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": + {"managedOutboundIPs": {"count": 2}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9511ca2e-62ac-4261-b4b5-a962dba4af44"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cd319351-f609-4ffa-85dc-c6cf8f9f1c19"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": @@ -1798,68 +1869,69 @@ interactions: Connection: - keep-alive Content-Length: - - '2303' + - '2631' Content-Type: - application/json ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8uf4up3p.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-8uf4up3p.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e3b0a43f-bf74-4952-bad6-1a647ab8f6a3\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cff2a017-7639-49df-8195-3a0173d2545a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-lve7m84r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-lve7m84r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9511ca2e-62ac-4261-b4b5-a962dba4af44\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cd319351-f609-4ffa-85dc-c6cf8f9f1c19\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5da531a9-46c9-49ce-9207-eed51f97cfc7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2af28cc8-1451-4589-9e23-332555afe499?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3536' + - '3864' content-type: - application/json date: - - Wed, 15 Mar 2023 10:40:22 GMT + - Thu, 15 Jun 2023 03:31:45 GMT expires: - '-1' pragma: @@ -1875,7 +1947,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1893,23 +1965,23 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5da531a9-46c9-49ce-9207-eed51f97cfc7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2af28cc8-1451-4589-9e23-332555afe499?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a931a55d-c946-ce49-9207-eed51f97cfc7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:40:22.7201449Z\"\n }" + string: "{\n \"name\": \"c88cf22a-5114-8945-9e23-332555afe499\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:31:45.445156Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 10:40:52 GMT + - Thu, 15 Jun 2023 03:31:46 GMT expires: - '-1' pragma: @@ -1941,23 +2013,23 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5da531a9-46c9-49ce-9207-eed51f97cfc7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2af28cc8-1451-4589-9e23-332555afe499?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a931a55d-c946-ce49-9207-eed51f97cfc7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:40:22.7201449Z\"\n }" + string: "{\n \"name\": \"c88cf22a-5114-8945-9e23-332555afe499\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:31:45.445156Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 10:41:22 GMT + - Thu, 15 Jun 2023 03:32:16 GMT expires: - '-1' pragma: @@ -1989,23 +2061,23 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5da531a9-46c9-49ce-9207-eed51f97cfc7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2af28cc8-1451-4589-9e23-332555afe499?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a931a55d-c946-ce49-9207-eed51f97cfc7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:40:22.7201449Z\"\n }" + string: "{\n \"name\": \"c88cf22a-5114-8945-9e23-332555afe499\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:31:45.445156Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 10:41:52 GMT + - Thu, 15 Jun 2023 03:32:47 GMT expires: - '-1' pragma: @@ -2037,23 +2109,23 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5da531a9-46c9-49ce-9207-eed51f97cfc7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2af28cc8-1451-4589-9e23-332555afe499?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a931a55d-c946-ce49-9207-eed51f97cfc7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:40:22.7201449Z\"\n }" + string: "{\n \"name\": \"c88cf22a-5114-8945-9e23-332555afe499\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:31:45.445156Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 10:42:22 GMT + - Thu, 15 Jun 2023 03:33:17 GMT expires: - '-1' pragma: @@ -2085,23 +2157,23 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5da531a9-46c9-49ce-9207-eed51f97cfc7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2af28cc8-1451-4589-9e23-332555afe499?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a931a55d-c946-ce49-9207-eed51f97cfc7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:40:22.7201449Z\"\n }" + string: "{\n \"name\": \"c88cf22a-5114-8945-9e23-332555afe499\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:31:45.445156Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 10:42:53 GMT + - Thu, 15 Jun 2023 03:33:47 GMT expires: - '-1' pragma: @@ -2133,24 +2205,72 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5da531a9-46c9-49ce-9207-eed51f97cfc7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2af28cc8-1451-4589-9e23-332555afe499?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a931a55d-c946-ce49-9207-eed51f97cfc7\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:40:22.7201449Z\",\n \"endTime\": - \"2023-03-15T10:43:03.4519526Z\"\n }" + string: "{\n \"name\": \"c88cf22a-5114-8945-9e23-332555afe499\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T03:31:45.445156Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '125' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 03:34:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2af28cc8-1451-4589-9e23-332555afe499?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c88cf22a-5114-8945-9e23-332555afe499\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T03:31:45.445156Z\",\n \"\ + endTime\": \"2023-06-15T03:34:32.2737443Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' content-type: - application/json date: - - Wed, 15 Mar 2023 10:43:23 GMT + - Thu, 15 Jun 2023 03:34:47 GMT expires: - '-1' pragma: @@ -2182,60 +2302,61 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8uf4up3p.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-8uf4up3p.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e3b0a43f-bf74-4952-bad6-1a647ab8f6a3\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cff2a017-7639-49df-8195-3a0173d2545a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-lve7m84r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-lve7m84r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9511ca2e-62ac-4261-b4b5-a962dba4af44\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cd319351-f609-4ffa-85dc-c6cf8f9f1c19\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3538' + - '3866' content-type: - application/json date: - - Wed, 15 Mar 2023 10:43:23 GMT + - Thu, 15 Jun 2023 03:50:02 GMT expires: - '-1' pragma: @@ -2267,60 +2388,61 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8uf4up3p.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-8uf4up3p.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e3b0a43f-bf74-4952-bad6-1a647ab8f6a3\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cff2a017-7639-49df-8195-3a0173d2545a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-lve7m84r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-lve7m84r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9511ca2e-62ac-4261-b4b5-a962dba4af44\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cd319351-f609-4ffa-85dc-c6cf8f9f1c19\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3538' + - '3866' content-type: - application/json date: - - Wed, 15 Mar 2023 10:43:23 GMT + - Thu, 15 Jun 2023 03:50:03 GMT expires: - '-1' pragma: @@ -2354,8 +2476,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -2363,17 +2485,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/92075cea-d1ff-4eb2-982b-7c072f24e887?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5330400a-a2ec-4dce-8406-ba3656ef7ded?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:43:25 GMT + - Thu, 15 Jun 2023 03:50:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/92075cea-d1ff-4eb2-982b-7c072f24e887?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/5330400a-a2ec-4dce-8406-ba3656ef7ded?api-version=2016-03-30 pragma: - no-cache server: @@ -2383,7 +2505,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14994' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_default_mgd_outbound_ip_then_update_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_default_mgd_outbound_ip_then_update_msi.yaml old mode 100755 new mode 100644 index b9e20c5ed3a..8f76993b447 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_default_mgd_outbound_ip_then_update_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_default_mgd_outbound_ip_then_update_msi.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:17:08 GMT + - Thu, 15 Jun 2023 22:41:41 GMT expires: - '-1' pragma: @@ -54,12 +54,11 @@ interactions: "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -70,68 +69,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1440' + - '1732' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-22eg034d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-22eg034d.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-pypxs2q1.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-pypxs2q1.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57d4db18-1e18-4aa7-8439-1e6736545f00?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c8a03c56-13d4-44e2-a06e-84e5918326d6?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3211' + - '3539' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:11 GMT + - Thu, 15 Jun 2023 22:41:49 GMT expires: - '-1' pragma: @@ -143,7 +143,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -161,59 +161,60 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-22eg034d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-22eg034d.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-pypxs2q1.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-pypxs2q1.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3211' + - '3539' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:11 GMT + - Thu, 15 Jun 2023 22:41:51 GMT expires: - '-1' pragma: @@ -245,59 +246,62 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-22eg034d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-22eg034d.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-pypxs2q1.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-pypxs2q1.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/09e747d1-bc71-4426-ba22-10691413c3dc\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3211' + - '3801' content-type: - application/json date: - - Wed, 15 Mar 2023 10:17:42 GMT + - Thu, 15 Jun 2023 22:42:21 GMT expires: - '-1' pragma: @@ -329,61 +333,62 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-22eg034d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-22eg034d.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/bc5ba7d0-a4b7-4e9f-8af2-07cc8d032cd2\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-pypxs2q1.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-pypxs2q1.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/09e747d1-bc71-4426-ba22-10691413c3dc\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3473' + - '3801' content-type: - application/json date: - - Wed, 15 Mar 2023 10:18:13 GMT + - Thu, 15 Jun 2023 22:42:52 GMT expires: - '-1' pragma: @@ -415,64 +420,65 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-22eg034d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-22eg034d.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/bc5ba7d0-a4b7-4e9f-8af2-07cc8d032cd2\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-pypxs2q1.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-pypxs2q1.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/09e747d1-bc71-4426-ba22-10691413c3dc\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3862' + - '4190' content-type: - application/json date: - - Wed, 15 Mar 2023 10:18:43 GMT + - Thu, 15 Jun 2023 22:43:22 GMT expires: - '-1' pragma: @@ -504,64 +510,65 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-22eg034d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-22eg034d.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/bc5ba7d0-a4b7-4e9f-8af2-07cc8d032cd2\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-pypxs2q1.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-pypxs2q1.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/09e747d1-bc71-4426-ba22-10691413c3dc\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3862' + - '4190' content-type: - application/json date: - - Wed, 15 Mar 2023 10:19:13 GMT + - Thu, 15 Jun 2023 22:43:53 GMT expires: - '-1' pragma: @@ -593,64 +600,65 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-22eg034d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-22eg034d.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/bc5ba7d0-a4b7-4e9f-8af2-07cc8d032cd2\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-pypxs2q1.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-pypxs2q1.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/09e747d1-bc71-4426-ba22-10691413c3dc\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3862' + - '4190' content-type: - application/json date: - - Wed, 15 Mar 2023 10:19:44 GMT + - Thu, 15 Jun 2023 22:44:23 GMT expires: - '-1' pragma: @@ -682,64 +690,65 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-22eg034d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-22eg034d.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/bc5ba7d0-a4b7-4e9f-8af2-07cc8d032cd2\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-pypxs2q1.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-pypxs2q1.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/09e747d1-bc71-4426-ba22-10691413c3dc\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3862' + - '4190' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:14 GMT + - Thu, 15 Jun 2023 22:44:55 GMT expires: - '-1' pragma: @@ -771,64 +780,65 @@ interactions: ParameterSetName: - -g -n --created User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-22eg034d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-22eg034d.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/bc5ba7d0-a4b7-4e9f-8af2-07cc8d032cd2\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-pypxs2q1.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-pypxs2q1.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/09e747d1-bc71-4426-ba22-10691413c3dc\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3862' + - '4192' content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:44 GMT + - Thu, 15 Jun 2023 22:45:25 GMT expires: - '-1' pragma: @@ -854,70 +864,77 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks wait + - aks list Connection: - keep-alive ParameterSetName: - - -g -n --created + - -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-22eg034d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-22eg034d.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/bc5ba7d0-a4b7-4e9f-8af2-07cc8d032cd2\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-pypxs2q1.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-pypxs2q1.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/09e747d1-bc71-4426-ba22-10691413c3dc\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ + : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \ + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \ + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n\ + \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n \ + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '3864' + - '4459' content-type: - application/json date: - - Wed, 15 Mar 2023 10:21:15 GMT + - Thu, 15 Jun 2023 22:45:27 GMT expires: - '-1' pragma: @@ -947,67 +964,73 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g + - -g -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.24.9\",\n \"currentKubernetesVersion\": - \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-22eg034d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-22eg034d.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/bc5ba7d0-a4b7-4e9f-8af2-07cc8d032cd2\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-pypxs2q1.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-pypxs2q1.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/09e747d1-bc71-4426-ba22-10691413c3dc\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ + : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \ + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \ + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n\ + \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n \ + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '4131' + - '4459' content-type: - application/json date: - - Wed, 15 Mar 2023 10:21:15 GMT + - Thu, 15 Jun 2023 22:45:28 GMT expires: - '-1' pragma: @@ -1033,71 +1056,71 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks list + - aks show Connection: - keep-alive ParameterSetName: - - -g -o + - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.24.9\",\n \"currentKubernetesVersion\": - \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-22eg034d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-22eg034d.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/bc5ba7d0-a4b7-4e9f-8af2-07cc8d032cd2\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }\n ]\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-pypxs2q1.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-pypxs2q1.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/09e747d1-bc71-4426-ba22-10691413c3dc\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4131' + - '4192' content-type: - application/json date: - - Wed, 15 Mar 2023 10:21:16 GMT + - Thu, 15 Jun 2023 22:45:30 GMT expires: - '-1' pragma: @@ -1123,70 +1146,124 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks show + - aks get-credentials Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -n + - -g -n --file User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 + response: + body: + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVV0elVGRlRXR2MwYVRoeFpHOVhiWFJuVTBoalN6UjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJURk5ha2w2VFdwTmVWZG9aMUJOYWtFeFRYcEJNazFVVlhsTmFsRjVUWHBLWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuUllUbVIyUW1weGR6QlJVMUZEWlVGV2VubGlZbFl5YjNSNFZuUkdRblJ1UkhWb1dUaEVibVJoZWtWWVdFSlNUMmszYlM5SGNsazVlVWx4TkhSUmFpOEtOR3RsTWpGR2QyMXJhRFpTVm10RU1GWmtUSEV5YlRGQmEyOXVNbmRCTkdjemRsaEhlVEpNZG1ad2FHczBXVFEyVmxWR2NuQkRUV1JHVW0xelVqSnZhd3BST0hSM1RXODRMME1yUWpOcFZua3pURVJLUVVRNUt6QlVjQ3RyTXpSUlRHMUpSR3RPVkZwV2RrRkVWMnBhV2xZMGNrOU1ORlZYUmtkQlNVOWxaamt6Q2toWVVubDBlazh3YWxCV1ptbFdTRmxOZVRRcksyVTFUMEZKYkVwb1UweEhlRWh3UVV4dVRTdFJhbE5HVjJ0TWRrTXZiSFpEUkU4ME5VdzNWVU00VVZvS1VISXpiamN5ZG5aMlNHcGpUM1pKUzFCcWEwbEtkbUZyVUZVd2FtSk1ZWEpsS3pOTVZHZHNPREJZZGtkM1ozVllRMU1yVEZKcFpuQkNTa2N3VlV0elF3cHRjVGRyYTFkSFduVnJaVkJoVWxRMFZ6VjZRamRFZURORlZFMHJaVGxyZVhVclRFNVVja1UzUkZKTWFUaHVVamRpTVRsYU5rMWtZVVZGY1ZOdlNrWmpDbHBLZVc4MVZqaExabk5TTmxwWlVrWnVORlY0YkU0eVFWcEhhV2w2TkRGb05qTjNOSFpYV0hGalIxbzRZM1pLWm1wNVFqZHhXWGwzV1hBMVYyMDBXVklLTkV0RU5WQlBTQ3RMVVdWblNXdEpjVFJUT0hsd2JHWmxVRUZQVEVKTGJIZEdURkpGWjBwcWFIRnlUMm8zV1VkR2MzcFRUMHN4ZDIweFJXOVJWMHBFZHdwREsyOUJRemR2UVhkVldXNDFPRUpvTnpNNGVETlBhR3RtU1VoTVQyY3lia1JOUlN0dVRFSlJPV051Ym05eWNtUnBXbE0wTUVsVlVUQkhaVGhOZEVkSENtMUlUa3N4V1VobllrOTRMM2RFVjNSQ09IaEhTRGhoYm1VMGFXaElSbkZVU21OS1EzbFNaMGhEZG1ab2NtMXZiazFpV1RZeVNWSXpVMmR2THpZdmFVc0tUMHRUYTJ0TVJ6bDJkRVppWkhBeFFYVXJTVmR2YmxVNFdGRm1jMjFSWWtOclN6aG5RalZFWnpGMU9FTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1JXdG5lVzU1TW1kNFRHUTVlREZPQ204ME4yeHVabWd2YjBWTVVVMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFYY3piMU5yTjNKR2JFWkVaSFp3VXpCT1YyTXhkWE5RSzNrS2NsZ3JTQ3RCY21GVlVHcEZXR3NyTWxKNFREaFlXRUpSWW5KSFRHNDFSUzgzWmtZd2JtaHhXVGN6THpOUmRGaDZhVzlTZDNSRGRWbFNMMjl6VFU5eGVRb3JSM1U1U2paVWRXeHFjRWhyVTBkUFpXSlRjV1JyWlZwemEyMWpkalJaYW1oM0swTXdSekJXTkRKQ2JubHVNMkZwV1ZoemFrRldlVUZYYVdaUmRVaG5DblpRTDFrNFNIWXZNa1pMYkdzMllreDBNR1JTYm5Sdk5rZEZWbnBWZVN0NVFsUnNVazVOYnpjNWIyMXdRbXhSTXk5eVMzQTJMM2hIVUZnek5uSmFjRm9LTVdkdFNsSTNhVUkzV0dnMk1UWkxkRVowWTNwS00ybEhlRk5EVDJkQ2FFMUpka1J4VDNWNGVYSjNRMmxXWWk5Mk5HMVdZamcwVUdRNVNqa3ljbXR6VndweFluWnhXR1k0U2xWRGNuQjRTbFJGVTNBeVUybFJNR0prTDJOSlEwbHJSM2QyZDJwemNtZERTMDlKYWpaTFFVWTNjemhQUTFWRE4ydDRTRzEzUjBSYUNsTlJiM2gzZDJoT1dWWlliM294V25sYVVYbFFia3hVVm1ac1ZXZE5XSEp2TDFwcU5ISm9NRzVNZEc1R2VscFZheTlsTkhSa2VFTnFTVGN6V0RGdlJ6TUtkVnBqY1M4eE5HOUdkakp2TDBrelNrSlFTQ3R1VldSdGEyVjNXRXhzUVNzMk9FMHJUWFp4Y2xvelFVdFJjblZMWkVscVozaGlRV015T0hkWFFqVk9ZZ3BEVVZwc2RWUlpSbWMwTkM4NFkydFBVVkpXVW1wNVpGQlViWFpoVVZaaWNHZ3JVR0pJVmpCb2RFeEZNalk1UjI0eVRTOTJWQ3R0U0hkdlFUUjRhV0V3Q2k4elpFOXFVSE4wYjA4M1NEUTJTWFZ4T1V0VVFXZzFkRTFVVmxvclQxaDBOVU5PVTJvMU1qSnlRVEI1WVVvdlkzSmplRzEyWVdWRk5IQlpjRlZQYVhVS2NubHBRelpTVVZRM2MwZ3pMME53TTJ3d1RVWXphSEZ0VTA5M2RVcHNUelJRVGpKWGRWQmphekJxV0RWbmJrSlZjRlpaTkRadFlsRmxhMFpsU2sxVE1ncDZOMFoyVUdZemJGZGtWVTk0TDJKVVNVRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zM3h5cWVuNi1weXB4czJxMS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHZ0NXA1bwpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHZ0NXA1bwogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGQ0djN6ZG1xcnhfY2xpYWtzdGVzdHZ0NXA1bwogIG5hbWU6IGNsaWFrc3Rlc3R2dDVwNW8KY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0dnQ1cDVvCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGQ0djN6ZG1xcnhfY2xpYWtzdGVzdHZ0NXA1bwogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FWQmplV2xDT1hCRVVVVlJhMUZCYUdkVFYwcDFhRWwzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFSVEZOYWtsNlRXcE5lVmRvWTA1TmFsVjNUbXBGTVUxcVNUQk5hazE1VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJPR1F4U0c1R2VFZEdVVmRTTTBodk1FazVVek1LV2pNMmRIWmphalZhUW5RNVVtRlFia2s1VWxnM1lqbDNVV2RNUXpObVRqVjRLMDlSZEdFM1lUZHpVelZGZWxNME4zTlpXazlDZWpoWlUwZFZhRE5yYmdwV1EwdHROMFJNY2xCVlVYUnhiRzh5UXpncmFEVmlRV0pRZGxGMGMzcHVjV0pCVkRkdGVGTTBTRmRYZFcxUEswWlZiREEzWXpGaVpYUnNTVTVzZVVabUNtaFROR1ZGU1hOMFREWTVlR3hRVDJOdEwzZ3ZTVVIxV0UwM2VHVnJZalZWTnpKVGJrbHpWbVZQZG14cU5rWjJPRll4TVdsd2N6WnZOR3gxVUN0VGJrc0tlbk5tV2tKd1VEYzBLM0YxVEU1RlFTOUtaVTlRTkVkVVoyVnpiRFJzY0VWdlZubEliMk5TWTNOb2FEUlBTMnM1VVhVMFYyWk1VVEozTDA1M1pEUkRPUXBLU25oWVNucERPRWxGYms5eGNXSkxTWGRCVFVkME1rbEhkbmxTY0U0cmNtbDRaVzltV1ZwSlRWcGhkM0ZwWWl0amFISTJSbk55VDIxaWQwUTRWR0ZqQ21NNE9HTlFMMnhEUjJoUlZ6ZFFjazFFUkhkWk5HZzBNMWMyZVRGV0swUmxTbXRuY21OR2MyMDNRVzVSWTJvMkswVlhlR1JSWVdaRk9URlpWRFppTkVJS1lsbGhaa3BYVGtWMVFWWkVkRFpRUldScll5dEdRM2xLYXpneFMyaENWV1ZsWVUxSE9FOU1kMHRxVDJ4cVVXb3JSMlI0ZERoaFZEYzFPV0ZOZUZwdmNBcEdNR1JoYlVrMGJtSm1ZbVEwWkVGUVRGaHphVTh3U2s5T2QwZE1hVzVRUjI1WmFFcFFObnBJYTFOU1ZEbEdSalo1UkZaTFlXWjJNakpYZVdsQ1JFWkxDbmxVWVZKWGFUYzVUbXRpUVdvclFVMWtaVXgzVW1WcWFFaGtSbU0yUlZGR2RtWk9XV2RUYnl0SGNuWmlURVl6U0daNVFYRjVSVFpMY2tJd2FrWXdLM0VLUlZGVWRWSjFZVmd4Y1M5QmJ6VlNWVkJ1WjFwdE5tMW9NSE5aY1RWTFl6aGFNbkoyWkZKVFNtbHZTMGsyTVRJd1FtNWxNek13Y214cGVGYzBLMEUzWmdwcmVrczVkbWxOZUdGdU9HSktSbUY0YnpGNFVITXdPRU5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZVMU5FUzJaTVlVUUtSWFF6TTBoVk1tcHFkVmRrSzBncloxRjBRWGRFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJTMHR5ZEc5WE5Ya3ZUM1ZMV2tOeFdYaFpWUXAwYW1kTE1pOVROMEV4YjFvMGNHOHJSVlo1TUVGbWVsaGxZM0IxU0hZMlJtSk1Za2x0ZDBsclVYWkZNRkpoYVhad2JVWnBSRVk1WmtOdFlreFBUblp4Q2xCSmFtSm1NM0oxZHpsaWVtVllWVEIyV1c1SGNXcGxNWFJqVnpOTUt6RkhkRVZqY21NM2FtZGtja3RCTTNGSVVrSnJiRVpQT1dGNkswOWtWRm8wVlc4S2VXMHpSRGt5VG1Wc2NFcEZkR1JvTjJWWVdHZzFNRkZRVlRsWVVYSXZPREZCYkhsRGFEaGxlRXd6YmxZelJ6aEpWbkpTYVZSd2VHVnFWRU5pYnpRNVVBcGhjSGhaWTJ4c1l6VlRhVEZUYXpCbFJsbEdZWHBzZUdScFZuQkhjRlJ0TlRVMWRrbE5RbFZSTTFKRmNGVlFlWEI0YTB0S2R6RXJjRnBWYUdSbVREZHJDa0ZsWVhRM1ZVUkpTV1kzVmpKVVJEWnpPV3h3VFZSMmFGRkRjWGRMV0hFd2FXOXNhR1ptYXpGeWVrTjNaMUIzVVdWMk9VcHhhbGRLZURGUWFXRkZkallLZWtOMlpsRldVV1Y1VFRWVVpWVTFaekk1WW5CME1VOWFOVWh0UTBVNVVWcDJSVWhaWmpoYWVuQlpSbUZ4YjFncmFtNDFZVlpXZVhVdmVEZHhRV2h2UXdwSVdEbDJZbXR2WW1STVkwczVNRGwyTjFWUk5qTklTRWhEVEdWSFMwOXRibXRrV0VwelNUQlhLMU5QYjJKdlJtVnNTbVl2UVdKNE1UaERjMVpCVGpWeENtWmlRVk41VWtwUVF5OXRUV0ZWV213d2JUWjJjRUptYUVwVFpXeHFVMmhSUjJkeGIxaG1VVmx3VkZsTWJrUlpNWGxpT1VKRU4wNUhRMnhMY25CdlF6UUtZMlJtWTJwTWFrTkZUbGxqUmxRMVV6TldVekpaTms1bWRVVXZZMmx1VUZsVE9WTTBTRXBhY2t4cFoyeEhiV2ROWWpoR2N6Z3ZaM0pRZWtKVmRIUTJkUXBTTjI5U2NrTk5LekJFUTNSa1FUUmpaMGRpVkNzM1FreE5PV1JoYWxoNmRGUllNU3QyTDFwelNHSklkbTVVWW5wVWNtTTVhMVJRU0dwWkx6Y3ZZVGxGQ21sSldYbEVPWGR4UTBaMk1FY3lORUpNVlV3NFEzSmtNd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJPR1F4U0c1R2VFZEdVVmRTTTBodk1FazVVek5hTXpaMGRtTnFOVnBDZERsU1lWQnVTVGxTV0RkaU9YZFJaMHhEQ2pObVRqVjRLMDlSZEdFM1lUZHpVelZGZWxNME4zTlpXazlDZWpoWlUwZFZhRE5yYmxaRFMyMDNSRXh5VUZWUmRIRnNiekpET0N0b05XSkJZbEIyVVhRS2MzcHVjV0pCVkRkdGVGTTBTRmRYZFcxUEswWlZiREEzWXpGaVpYUnNTVTVzZVVabWFGTTBaVVZKYzNSTU5qbDRiRkJQWTIwdmVDOUpSSFZZVFRkNFpRcHJZalZWTnpKVGJrbHpWbVZQZG14cU5rWjJPRll4TVdsd2N6WnZOR3gxVUN0VGJrdDZjMlphUW5CUU56UXJjWFZNVGtWQkwwcGxUMUEwUjFSblpYTnNDalJzY0VWdlZubEliMk5TWTNOb2FEUlBTMnM1VVhVMFYyWk1VVEozTDA1M1pEUkRPVXBLZUZoS2VrTTRTVVZ1VDNGeFlrdEpkMEZOUjNReVNVZDJlVklLY0U0cmNtbDRaVzltV1ZwSlRWcGhkM0ZwWWl0amFISTJSbk55VDIxaWQwUTRWR0ZqWXpnNFkxQXZiRU5IYUZGWE4xQnlUVVJFZDFrMGFEUXpWelo1TVFwV0swUmxTbXRuY21OR2MyMDNRVzVSWTJvMkswVlhlR1JSWVdaRk9URlpWRFppTkVKaVdXRm1TbGRPUlhWQlZrUjBObEJGWkd0akswWkRlVXByT0RGTENtaENWV1ZsWVUxSE9FOU1kMHRxVDJ4cVVXb3JSMlI0ZERoaFZEYzFPV0ZOZUZwdmNFWXdaR0Z0U1RSdVltWmlaRFJrUVZCTVdITnBUekJLVDA1M1Iwd0thVzVRUjI1WmFFcFFObnBJYTFOU1ZEbEdSalo1UkZaTFlXWjJNakpYZVdsQ1JFWkxlVlJoVWxkcE56bE9hMkpCYWl0QlRXUmxUSGRTWldwb1NHUkdZd28yUlZGR2RtWk9XV2RUYnl0SGNuWmlURVl6U0daNVFYRjVSVFpMY2tJd2FrWXdLM0ZGVVZSMVVuVmhXREZ4TDBGdk5WSlZVRzVuV20wMmJXZ3djMWx4Q2pWTFl6aGFNbkoyWkZKVFNtbHZTMGsyTVRJd1FtNWxNek13Y214cGVGYzBLMEUzWm10NlN6bDJhVTE0WVc0NFlrcEdZWGh2TVhoUWN6QTRRMEYzUlVFS1FWRkxRMEZuUVVSMVJrOVNjRUp0ZGpKU1dWWlFaM1oyVVZOYVVrRlVTRXMyV0hoelptSXJMMmR1V0dKd2VtaDVMelkzUzFaVFEwdExWMU5IU0c5dWNncFJXRlU0YkhWdlFqQmFNMGRxYlZZd05UTXdObEZVYmpOdE0xWjJXbVJyVEdGUU1GWlNRMk4yY0RWUFRrOTJVbE5vUWt4dVRsQnZLemt6VlZSc1JVRkxDbU53WTJsWVNqUkRNME40UVhsQk5WTkNPVkZHUjJRek4zQlNaa1JDUzB0U2RuQktSRmRZT1RGMWQydzVia3hUV0RKc1RFcERUM2x5WTFSSU9WQktPRllLWldSUGNFNUpla1V4YVZaaVkzRlNRbnBKZG5OaU1YZFlhVkF3Um10VE1WWllTa1pVVVVKcVRuUTJhemhQVm1sSGQxbGtlbE5DY1dSRlMxcGtiRkEzUWdwRWFsRmxlVk5IVVZCWmIycHlWMWhNU2xSd2VXRlNkMmgxYld0MVZuWnNRVTFSSzNweU1qZDFWVkZLY1RVeVZrbFNTVUZFWVdvNFZFOW9NVFZXYWxCU0NrOXRLMEl3Tnl0RU0yNVhjbUUxTjA1SGRrWjVhU3RJUkhCQlRtb3ZVRkJPYkZnek9UTm1RVE50Wm1JelUwZEdOVTR6TTFGeU5ETXJXVTh6YjBnMWExSUtkMGxrUWxaTGEycHFUbHBwWTNGakwybHNibVUwVTFaNVFsWTVNR2h4TkZJNWFIWllUR2c1ZFM4NGRESkhjME5GZG5aRGJHWktVMEY0TUhKR2FGUjBLd3BKU1VoVmVuQXpRa2w2YWk4MlJWSkpVVk5zUjJwdFFreG5WemsxV1hBdllUaHhVbXBVV1RaQ1VWWktaV3hTU0RSbWJrbHRWV0pLV1c1dlFrTjNWSFUzQ2xkRWNYUkJOalpTV0ZWc1RtOXlTMjR3UTI5d1NIQkpaVEp1WkM5R2NETk9LMmdyY2xSSVdqZ3ZLMGhoUlVaSWJDdHVhRkZpWmtrNFJuZ3lPRzluVFVVS2MzWjBObUkzUjJwdGQyMVZOMnBXY0RRelIxRjFUemxGSzBKb2MyWm1PVkZaV0hkWU5XWXlSamxHYUV0aU5HTk1VRWx2Y2xsb01tOWtka3hLY2tSWGRncElLemhCTVcwek0zZFVjMlJhZFZGNFVXUjBkVEJ4U205bFVrcGFTSE5rUmxWdU5WQXdhVUZ6VEZkQmVsZERVV3RuVVV0RFFWRkZRVGxpYUVodFRVNDVDbXcwUW1SdU4yeHZNa2RtTjB0MVZsSnRTVlZCTHpWbVpIZG1Ubk5VYjA1eWEyOTJlRFZvVkhOS1NVdEphVFZTZEU5R1lUbHBSMjVxUlhCc05tSkVlV0lLZERCaGNrUkhUbmRNWm1GSE9EWnZNRFJPYm1GTE5sVlNTREp2VTJaaVdXTkNaMWh1ZDBoUmMzQlpSV1pvU1RoMlowMHpVbW9yUVU4MU5IRjZhRTVTWlFwdGNIZE9iWGhyTkZaalVqZzNObk53U0hOVU9YaFJiSGhITWpjck5GUjFOMUZ6UVV0TlIzcEtiVkF2WWt0aWRrMDBWeTkwVERkc1ZYUlZVRGsyTnpGRENuaG1jR0Z1UjI4M1EzVXZOalpJWml0NlJXeFBSa0p1V1Vwc2JHdDZaekp2ZVdSUGMzVTFhMFo0V214YWNpODJRVWxQVTFKNlpIUmFVVGx6ZG5Jck1YSUtjbkJCU1RremMxcFFhRTV4YVZWd1dHdG9kVVJEUW1wa1RHeDNhSHBOU1dGVEwxUkJLM1p3TVROMWJqRlFjak4wTmtwM01UaFpZemcxVGpobFJVMUpZUXAxZFVGcGQyNUhSRzlRVVdsTGQwdERRVkZGUVNzdmRURkJRbWR5ZG1oamRsUjZPRVpHUlV4SlQzRXhjMUpWYXl0NFkxbEZSa05PWWtGcWJHY3ZjMUo1Q204eFowOXhkbkZ6WnpOT1IxUlhZMGs1UkU5QmVFdElla01yYUV0cFZVeGpRbTlCU1d4YVJGTmpSMUpZWjBWRFUyMVdWMnhrZVc4NE0zbFNhbHBrZVhBS1IxVlJUbHB3T1RkaFV6TlBlR05wYVZaTVVDOTBkSGw2Ynl0bWJVOHdjRUk1ZUZvNVlXczBZbkpYVkd0U2FXMUZWbmxoUWxsUmRtbFdRekJNU0RaaWVncFVlSFExYUN0YVpGWTVUV0ZzU1dkVWVucEhVbUpqV1ZwUE4yZzJiRXRPVFVKMmExcDVUVmhPT1V0a1pXTm9NQ3RoYlVSS1lUUXJlRXd6U1dReGNGUnBDa0ZHYzNWUE16aG1TMlI0YVU1VFMyTkNTVUpaY1dOSk4yeFJWaXQ1ZG5wUE9YSkVVaXRMU0haTk1HeElWV3RYVmxKMlMyVjZkMXBLZFdkb1EwbHdRMUVLVEZOMWQyMUhXa0kyUjNsR1UxUTJRMUI1YzFaQlNrSm5iemgzZGtwalIwbFVRV05PVnk4M01XSlJTME5CVVVWQk9VUkRjbUpyVVhkb2NWQTFOWFZoVXdwTVExaENkRTVLY1UxWFJsVkxZVEZhYjNkd2RsRjFUbFoyZWtFeVQwVnViMng1ZG13eVNtbHljR2RoUm0xd1FtOUxhVFlyVHpsNFRHWXlja3RTTm1neUNtSnBZMFl6UW1JeFREbE5kaTl3YlhaR05FbEtWMFZpYms5S1JXSjVLMVp2UkZJemVVaFpSbE5YZGxkMldXZFVkbkYxYW5KSFNVVlpaSGgyU1ZwaE9Ea0thbVpoVkd4dVlVcHBaSFZKZFdkNE1VUkRaRlpSY1RWcGJtRmFUazlsZVZOMEszSnJaVmRtTlRWeWRXUm5aMVI2UTNGVVJVeHJaRXR0V1dOQlJERjBLd3A1TlV4TWVtTlRZVkZhYUVRNFRGQjVWemhKVVRkTWEydFhWbHA2TTFsaWJqbHZVVGhZYVhSVlZqbDJkV3BvTmtSaGJYcHFlV3BxZFM4eU5rTnBjbU5hQ2pCa1ptNHdkMGt2V0hGTVlYQXJlRloxYlVkNU9GWkxaMWxaVjJSV2J6UmlTREpzZGpSSFpFNXFRa2hhYUdWeE5DdEdXa2hCWVRVd1l5dDVWV1p3Ym1rS2FuTjVkazkzUzBOQlVVVkJkMHhRWVRGUGNXNU5VMVUzTm1WbGR6ZzNRM0YyWVhvMGJYWm5USGxIV0VwdmNtcDZSbGd4V2k5NGRYVTJPVzluZUZsTlZRcDNVMWs0UVd3cmEybHNVMFY1YkhSeWNYQlRTSGN2WW1OdGVDODBPRXREYWxCdk5rOUhRMlpLZEZCbE5YQmhjMjlwUTBkck0ycGFiRWd3ZUdGNmVuUjRDblp3Y205bldITlNTV0ZRVTBWRU9IbEthM1p1Vm5wd1VIWnBNVEV4WjBaTWVUQjJXVUYzZDI1RFFuTk1XVWhOWkV3dlEwOXFSRTAxTmxOeFEzY3pjRm9LYzJoMFoxQlhlbVpqVm14bU9WVndSVFk1V1VZNFNIWTVXRmQyVFRKNWVtbGtOVWw2WlZOUFEwbDNjRWh1ZW14NFkwYzFaVUZWWXpCdGNqaG5WMU5ITndwaVIwUTRkbVJRY3paemFGbG9aVXBxWmtoRFMyRmhVSGxvZEdaemFUWTRWRnBsTlVwWE9VdFpLMWgyT0VaVGFXazBNa1ZFWVhKdFVtVlBibkpyU0VSTUNsRkljMVphTVVWc1prUmtkbEpXU1d0b1lqbFdOSGhNYUV3dmRFbHlVekJMT1ZGTFEwRlJRbU55SzFRd1lVMVhPSGg0WWxGc2RFWjFhVTEzZVRKMVJYSUtNRkUxWTBoMk9FRXpka1o0VVZGc1UyY3JXVWhUYzJoblEwSkpSVzl2Y2xkd1ZVTnVTM0o0VFdSU1FqZEtZMlZJTkdaWWRtWm5SbUZUZG5GRE55dDJOd3BVYlRKa1dYWlpjV3RwVnpBNGNWWjRUakZWYTNsc1RuTXZiSEJCWW1sd2NtcE5RMVJpUW5sTGNqWlRUMEYwVldwNGJXSXJUa0l5Ym05d01tbEdRV295Q2tkNU1IbE1hemxDUVVKNFJWVlpOMGRWUkcxR05YQXZlVWhVT0VwYU1uZHVSRE5RTTNWWWJGUkdWbFE1YUhaVmVtbDJlRFZ1U3pKRk1VWnRTVlZOVG04S1ZGVjROVVpoTkVvNVpFZDJZVGRJY0RjeVZFZE5Xa1ppVlRkV1ZFWklTbXhIU3pCS1EwSktNRWhHV0haWGREYzBSWFJSY25JNWMwcHNjRVF6WVdvd1Z3cEtRM1Z2ZFhaTmNuZGhVbkF5Ynl0blNsaFhNR2xCU1NzclYzTnhRakE1SzNwUWFuaGhZa1JZYTBsR00xQnNiVFowV0M5Qk16SlRjbWMxUWtJS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBqNXczODBlNnh6ODRsMm93OHptaDE2aHJ1dnRvbGRmMnpidGl6M3Jub2J2MThwdDQyY2ZzaGJlZ2ppc2djY2JwMzNoNHkyajNiOTdyYmE1OW9xNGZjcmM3ZHRxbnlobHFubGN6a3Vsd2Z5dW1iYnVxNXFjNGpzMzJvNGlvZnNrMAo=\"\ + \n }\n ]\n }" + headers: + cache-control: + - no-cache + content-length: + - '13084' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 22:45:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - -g -n --load-balancer-managed-outbound-ip-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-22eg034d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-22eg034d.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/bc5ba7d0-a4b7-4e9f-8af2-07cc8d032cd2\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-pypxs2q1.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-pypxs2q1.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/09e747d1-bc71-4426-ba22-10691413c3dc\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3864' + - '4192' content-type: - application/json date: - - Wed, 15 Mar 2023 10:21:17 GMT + - Thu, 15 Jun 2023 22:45:32 GMT expires: - '-1' pragma: @@ -1205,39 +1282,105 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": + 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": + "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.25.6", + "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 2, "countIPv6": 0}, + "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/09e747d1-bc71-4426-ba22-10691413c3dc"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, + "workloadAutoScalerProfile": {}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks get-credentials + - aks update Connection: - keep-alive Content-Length: - - '0' + - '2809' + Content-Type: + - application/json ParameterSetName: - - -g -n --file + - -g -n --load-balancer-managed-outbound-ip-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVVwT09EUm1iVFkzV0RRNFZpczFkVFpITWsxWE5FbDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDAxNlJURk5WRUYzVDBSRmVGZG9aMUJOYWtFeFRYcEJlazFVVlhoTlJFVTBUVlJHWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuUjZjalpXWW5KaldTdDVNVkpzVFhkMlRIbDRiSE5PUzBsSlRVeHdSVE00S3pacVozRkZVa050YTBrNFNXTnpWR1Z4TmxKWmExZ3pTRmw2VWtkcWFrZ0tlREI0Tkc5ak1tSktiM0F2ZDNkaFNITlNValF4YVc5dFpqbFVUMkpOU1RCVVYzWjBTV0kyTUhaSWJUUkNaMHhFVTI5NVZGQnZhREozZG10cFdFUlpOQW95UjI4d1kwMHhla3RwVkVVdmVXY3lPRzVSVTBNMldHeHFaWEJVZUhJMlZXSmljWFJrYTAxQlowSjVZUzh4UVRjeE1USklRMjh3TTFsQmJWQXhUUzlzQ21VMVUzcFVWVnB2SzJGWVRrUlFkMUpEWkV0d1dtcFJZbFk1UzNWblpsbElaVWN5Tm10TFRXSklXazlCY21GdWNsQXZhbFJJWVhWaWFtbFNTek5PVGxjS0wyeEpNamwyYUdoQldUZEROa1JQVVUxU1lWRkhlVnBMWVVVMU5FZGhWakZEYzFKV2NFOUNWVmN4Y2tacGNTOHpaemRFZFRCbVEwdzBPRWhoYzFsemJBcHlhV1ZaVDBSWE5tdzNWVGRpV2tZelJXd3lXVmxaVlZkTFJtOVFLMEZXZVhNeVlWVXdXbU5wYVhwS1ZWSlJTVVpVVTNsS1oyMUdlV1kyVWtSYVZsZE5DbGxvWWl0Rk0yRXpORW80Ym1GdFZHdGxhSFpSYVRKRFZXTkpjVTFVT0V4WlVsaG5OWEJyWVRReGR6ZEpOWFk0WlZwc0szTmxZblJ4YmxKT1JsZzFlVm9LV1hSeEwyeFhjMjF4T0N0cWRtSjROMGh1Y1hSWU9VaHdkemxOT0d0dmRuTTRkR2QwUTJOV1pVZEthRVYxYTBKdmVqRnlaMmw2V0ZoRmRVeDFhMUpGYVFwNFJVTm9SWEpRWmtJdmIzTlNNVEpXV1RWemRWVkJaMXAwUVRSeE9FdHVZbk5tTDFkR1NqZFlVSGQ0ZEVKUVdsWTFheTlLV1dseVRsZ3dTM0ptVlhScUNqQkROVGhJVEcxNGIwY3lTMGhqYkZGUmJWVkdkMUYyYVM5bk5XdzBia3RaYzJ4UVIyTkVVemxZUlhWMWJFWk5jR3RSYUVoNk0xbHBTbFp5YVhacWJYVUtkRXBDVUZKNWR6aEhTemx2VGs1dldHMHpSR2RJSzI5TGEySlBka2hIT0U0d05GTXZNemd3VTNOS09FTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1EyaHhkSHBaZFRCWVpFdDBjMnR0Q2tOS2VtNWFVM1ppTkZSSllVMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlEyMUthSHAyWlVjMlpIQm1NeTl4WkUxdlQxQnhWVkpUT1VRS1F6TkJOMUpFVWpSTmEyWllkek5QYTBsYVJHcHVTVUZWTkdVNFRtbGpjakYxTDFVeGRtdDFRbTFNSzB0amVGcGxlVzlZZDBOTVpXZFdXbTl6YVcxNGF3cDNOR2N4YTI5d2EzaGhSR3R1TWxSRlYyUjRVR054V0RWeldHWlhiRlJaZFcxMWRYWTNjREJ1ZFdKMWIydFFlRWxWVURkT1dVY3ZObGR4UlRORmVWSjVDbE00YzI0Mk5tUnVZU3N2V1drMlJpc3ZRbWN4TkRkcmN6UklObFZoUTFGdWVIazRibnAzZDBsUlRqWklla2wwU0ZjNFdVZFJXVnBIUWxGbWNVOXBVVXNLVEc0MFluTkpjVTVqYlhJMGVuVTRNMEpwVGpSYWRtaFVPRXQwTldRME5YQmFXVnBZVmpCemVrVkxMMk5EVkdFeFpsaDNUREZETjBKaVJIUjZRM0Y0TVFwQlJHMXNVSGxEVFUxUFkyUkVlWHA2ZFZKalJHNUJRMUp3UW5oVmNHRnhaV1ZIVmpReUszQXlibmxzVURWVVdXWm1RMVkyYTJWS1owczRZakYzYlV0dENrbDBSMXBRTVVOTGJqRldWR1k1ZUdoQlNuVjJZazA0Y2tveU5IWk1iWGN4T1ZaRmJ6aEpUUzlIY1hoeFoxQXllVk5XVDI1d2VIRkRObmQyT0Rsb1ZEUUtkM05LV0RSV1R6Wm1lakphYkd3M1kwYzVZVlpIYlRWWlEwMTNlbkZ6VjFNMGNpODFZVmxETVRCbllrRXhlR1Z0VlhGQmJFUmlWbUV5UTI5c1RWSllTQW8zU210TU5rVjVhVzFyU1ZCTksxSkRibE53UlZVNVRHdDRORXhuTmpVdlEzSnhUMVlyYkZCcGJFSnBOa3hZUjNCa2VsQklkREJQTkRWTFdsaExZWGhJQ25aaWFrOWpNRXBtYVdWR1VWZFhPSEpUUnpOblMxaEdWM2RzZWpjMWF6RndiVFpKTm1GTlExQTFWMEZtV2xwTlVXMWFUMU12T1c1ME4yVTBVa2hvTlhFS2RsTmtLelpDS3pSTGN6aHZUbUkxVVZneWJURlRTWHBEYkhKUmEydHFjMEpSWmtOcFQydEhNRlpwWWtKalowTnNiV05ITTFwUGFrMTZUa0pXYzBsa01BcHpPREIyTm1JMWJFc3pOM2xQU0c1bVRuYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zc21nc2t4eS0yMmVnMDM0ZC5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdGFtZ2g2dApjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdGFtZ2g2dAogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGJlNG9senY3bzZfY2xpYWtzdGVzdGFtZ2g2dAogIG5hbWU6IGNsaWFrc3Rlc3RhbWdoNnQKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0YW1naDZ0CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGJlNG9senY3bzZfY2xpYWtzdGVzdGFtZ2g2dAogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlVFSm5UMDlUV25GeGNsUXlSRVZwZEhWcVlVODRWRUZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQmVrMVVWWGhOUkVFMFRWUkdZVVozTUhsT1ZFRjZUVlJWZUUxRVJUUk5WRVpoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTm5ZelJFVEZoV1YydEdkMmR2YkRndmIyNUJjVm9LY0hvNE5rUkdRamd6ZW5jd1NUZHNUV1pIV25aQlZXSXZWREppVGt0cWVISkhOblI0VmtReVRYTXlUMlZLVjI1M1NGWnZSVFZzUVdwSVRGbHlURzl6TUFwNWVIaFVSRll4UTJaTk1sWjRlbTU1V1VWM2RUQjFiMWg2U1dOR1ZubHFlSGd2YkhvemJIRldSa0pHUVRGS1RERnFUSEJSWkZOb1VFTldOMmxKUTFKQ0NraHpjVXBZUkhORldFVnRkVFJVYmtGS2NrVlRZalJhVDJ4dlEycDVNM2xSUTI0d2RFZ3dNa1ZCY2s5S1dteEZVbWx5UlU1cFNYRklhbVpOZGs1eFVUTUtORzUxT0c5TFlXWmhhMjFJYVRneGExSlVVR0o1TkVsNWVFOUJOWGh3WVd0cWIxVmtVamRQVDBGU1VWZDZZV1JGZEc1bGVuZERZa2QxZUc1TFZDdG5ZZ3B2ZW5reldXdEtVelJEVVVKV1FXUjJPR0ZZVEhaNmVVTnNaMkpXTm0xa2VreHBSV05pYmpaM09HdEdVbk5hTlU1c1RWUkJUSGxQVlVkNGEySjFhRGxTQ21obFlVSk1iME5zV21sTlIwMVhNVUpZWkRkUk5rTkVTRFZaY2taSGRIWkVXbUZYTVZKalRXc3JURUpPZVdoVmQwSjRPRVkyZDBVMWFrZHZUMHhRUldRS1dURjNiVVpSUm5kc2JrTjZVemxuTkhkSmFFTlVUbkJUTW1SU2JHdGlNVFZPWWxFMVJtUlljSEZhTlhOYUsxVlVaR2hpVHpVcmJWQm1hV2d5TlRkNk1ncEVRa2RoTUZSRlpFTmxiVGg2UlVaTVl5OVFOMEp0U2twWVFXMXlZMll6Y1ZGUFIyVjVTekJTVG5wRmRuVnNOVUl2Y3pCRGJFTndSRkp2UkdodVNXWkZDaXRoV1hOS1lscEpVMnN5ZUV3NFdIaDVibXc0TXpNMU0xQkhWelZ1TUVab2QycFRlR1prTTJOaVprRTBaVTk2UjNGUWNtWmxVVVZUWWpWUmREVktOMDRLU0VsM1JrNVNhamhyZDNwaGJFdzNVMVZ0YW14VmJVVlVjamxrUjA1cWNHMHdVWGgyUzNGNGNXTnhVRVJOUmxCYWFXNDNNRFJxUlZKbE1VNHlla2QxZHdwb0sxQXhXbEZ0UmxwT1ZESTJVVUkzU1cxaVIyaFJTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsRnZZWEpqTWt4MFJqTUtVM0ppU2twbmFXTTFNbFZ5TWl0RmVVZHFRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRmlWRzgxTkdwcFNVbzNWRmRUVG05VmRURkVUZ3BtU0hObldtazJWRzFrTkhad05FMW5hRWQzWXpsdGJtbDZiVXhxV2pSMGQwRjBiM1ZuUmxkV05DOHlkWGRrV2pSU1ZXMXFlRnB4WjFKRVlteFBXbmg1Q2xoQ1kyUTNSR2xPT0U1WVYzVTFWVTkzU0daWlNHVkVXV05FTTNCWWJGSTNjVUp6TlRCdU1pdDRaRmQyV0hkQ2RtWTRaV05rVmtVclNucHRNelYxVXlzS1UxWTVjVTFwWWxKVFQxUjRjMVpEU3k4eFJuRjZiVUpTZEd4TlptNHljbUYxYUdOaVdXZ3pkekV3WkhOdGVIaHhMME54WVhkU1ZsTnpaMFZzVTNsSWJ3cHRhRU53VUd4bGExRnFOSFZPWlRKek9XSkhhMDF5V0ZFMmIwTkRjV3BZTmpWbFlWVm1WbXg2Y1ZWRkwxcFFhbTR4UWxreWVYSjFTMDlKVm01d1RsTkNDbWhFU3pWRWQzbFlUVEpaU1U5SFRXUTVVM1ZXYVZSSE5rTndlRmhqU2xGbGFYTjNTM1J0ZEVSVFNHNXpSbmx4YTJWQmFISkxTekpDYURsdU5EWlFXallLZGs1VlJFRk5TV1JXUkhrNFRDOWhabVZyVlhCUWEzSjNaRmwxTm1SR2VFRjNkbmRQV2taNWNWVTNSVkF2UWpOeWJqVktVVlUyY0hGemRISnRZbmN4VGdwU01HUm5VR1Z6YUdacmNqUlNPSGx6T1docU4yNVhSMjAwVVdrellUSXliVWRpTkdWVVVXaEdVRkpVWlVzMVVrb3liRUlyVWl0WWNVUkRSbVZIY0RaRUNrZGxUMjg1UkhKb1lUQnFUMWN3YVVkUVFYVmhTQzgzVWxVNFNVcHZja05HYlRWdU9VSkxXbTlPUjA1UU9TOTBOMGhvZVN0RldYZ3ZRbmhhYUZSb1dGRUtUSGgyTkRRMldHSm1VR0l4TjFGdFZXOXJaazF3YlZRMFZFNWxUREJZUXpKVlRVTnlOR1ZMVjNCamRHazJWRmR2TkRWNVVqTnNlRVkwUldaNU5VeEljQXBoVkVsVlkwMTRWVmhRWXpaa1ZYbHZhbmRZWlhrM2R6RXdWWE52YkVWUGVXSlVURTVNY21wYVVtSXdlak5RU0ZJMWFHa3pjVGxTSzFKNE1sZFVNSEJZQ25kcFdGaDFPVTVtYlZGRlMyVm5OMGxpVTI1RE16QTRQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJiMGhQUVhreE1WWndRbU5KUzBwbVVEWktkMHR0WVdNdlQyZDRVV1pPT0RoT1EwODFWRWg0YldKM1JrY3ZNRGx0Q25wVGJ6aGhlSFZ5WTFaUk9XcE1UbXB1YVZad09FSXhZVUpQV2xGSmVIa3lTM2syVEU1TmMyTlZkekZrVVc1NlRteGpZelU0YlVKTlRIUk1jVVk0ZVVnS1FsWmpiemhqWmpWak9UVmhiRkpSVWxGT1UxTTVXWGsyVlVoVmIxUjNiR1UwYVVGclVWSTNTMmxXZHpkQ1JuaEtjblZGTlhkRFlYaEZiU3RIVkhCaFFRcHZPSFE0YTBGd09VeFNPVTVvUVV0NmFWZGFVa1ZaY1hoRVdXbExhRFF6ZWt4NllXdE9LMG8zZGt0RGJXNHljRXBvTkhaT1drVlZlakk0ZFVOTmMxUm5DazlqWVZkd1NUWkdTRlZsZW1wblJWVkdjekp1VWt4YU0zTTRRVzE0Y25OYWVXc3ZiMGMyVFRoME1rcERWWFZCYTBGV1VVaGlMMGRzZVRjNE9HZHdXVWNLTVdWd2JtTjVOR2hJUnpVcmMxQktRbFZpUjJWVVdsUkZkME00YW14Q2MxcEhOMjltVlZsWWJXZFROa0Z3VjFscVFtcEdkRkZXTTJVd1QyZG5lQ3RYU3dwNFVuSmlkekpYYkhSVldFUktVR2wzVkdOdlZrMUJZMlpDWlhOQ1QxbDRjVVJwZW5oSVYwNWpTbWhWUW1OS1duZHpNSFpaVDAxRFNWRnJlbUZWZEc1VkNscGFSemxsVkZjd1QxSllWalpoYldWaVIyWnNSVE5aVjNwMVpuQnFNelJ2WkhWbE9EbG5kMUp0ZEVWNFNGRnVjSFpOZUVKVE0xQjZLM2RhYVZOV2Qwb0tjVE5JT1RaclJHaHVjMmwwUlZSamVFdzNjR1ZSWmpkT1FYQlJjVkV3WVVFMFdubEllRkJ0YlV4RFZ6SlRSWEJPYzFNdlJqaGpjRFZtVGprclpIcDRiQXAxV2psQ1dXTkpNSE5ZTTJRelJ6TjNUMGhxYzNoeGFqWXpNMnRDUlcwclZVeGxVMlY2VW5sTlFsUlZXUzlLVFUweWNGTXJNR3hLYnpWV1NtaEZOaTlZQ2xKcVdUWmFkRVZOWW5seGMyRnVTMnAzZWtKVU1sbHdLemxQU1hoRldIUlVaSE40Y25OSlptbzVWMVZLYUZkVVZUbDFhMEZsZVVwdGVHOVZRMEYzUlVFS1FWRkxRMEZuUVUwMVNITkxNMFJ6VUdKc1NsaG5TM1JUUlRSbEsyaFFVRTV3UlU5eVdsQjVabUVyWkhSMksydDZUR3BWV1U5eVkxWTRWR3BrYlcxSFV3cFFObE5oWXpabGFtY3piMXB6ZVVsVGJISmpSblY2TjJkQ1YwNXRTVXBRYzBWSWVsZzFUazVaU0RaUlIxWTNjVWhaUzJONWRHeHdOMFZXTDFjellYbHlDbkJOWnl0b2JHaEZhakZCYm5KMVJXaHhaV2hPVVZsSFFWSm1hbXA1Y1dWWWJHWlBaMFJDU2xodVVERlpPVlZNZUV0cmFuVmpObFoxWnl0R1JXRmlUbG9LVG5SVGVITk5NMmRWYm5Ca1NVaHVUbXB3VldwQk1FeDRTR3RFWm5oTVJWRnVVa0ZIWVhwSWVGWkZhSGx6UTFSVmJXMTFhSHBNVUM5elNHUlhWR0ZXWndwcWRYaGphM0pYWTJneldGUlVXalJqYzFkdWMwOW5hQ3RsZVVVMVdqQndkbkZrVDA5bFZHZHlZWGxqVmpGaFRIVXhhbFF3WjFReVdGaHlhR3hTZFZkbENrNVVjVEF5VTBweFowRXdjVk55VUhOb1ZqQnJaak5FY2tNeUswMXhkRlJOV0hjek9YUnJUWGx2WTFaQmJXTm5NRTlMTVUxNE1tNDBVMEZGVUcwM2QwRUtjM2huUTJsclFXSlFSbVJSZEZSdWNsWXpVMFZGWVVSdGRVUkVaa3QwV1N0bk0wVXpaMU5QY2pkV1kyRlhTRXRXTlVGWk16VXZVWGxEYkM5TVYwMXpRZ293WkcxV1EybHVTRmhwV1RGek9VbDNjM3BOVEhWbmNsSlNOa0ZpWnpsRE1FUnNSbTl0UVV0bWNrRTBNRWhhYUcxbFRtOW5WVzl5TjJ4Q1MzcFJaMDlpQ2xWMVltcExNVXhJV1VJek16ZFBSMjFaY0ZZMmNtbDFUbVpYVWpkNE1WbEpRMEppT0N0NU9WcG5ibUZRTkVaM2RXNWFielF2T0Zkdk16bEhPRE5tTHpnS0x6RmFUbTVVY0NzclJuZHFTWEJ2UjJKcWFtVjJURFF4VkdoS2NHTnZaRWs1Y1daM2JUTTRaVVpYTDNGSVUwOU9kMU1yUWxCVEwyVlFOeTh6VGtsTFpRcHdLMk5YVERSMlNIRXhSRk5MVFdScVpYWTBkVGhDZDFWV016WXlMMDVGZEVaclQyWllRMkozWWxkb1pXRXphRFJ0VVV0RFFWRkZRWHBoZEZkV2FWaDBDblpETUdveVpqaE9OMEpLVG5GTWF6Rk5WMjR4YlRKMllYWjZMMVV5ZVUxd1JqZHBlbVJWV0ZOYVdHSjFiMGczU0dRd2JXTllVRFpwTVVsRFdVVldjRW9LYlRKU2JscDNVMUZ1TlRGNksyZEJiblpvZDBneGNrTjFNWGxzY0d4Uk5EbGFOelJvTlNzM1VEazNhVVpIYzFkTVZucDBOV3B1ZDB3M09VVnpURlk0YlFveVMwdHZPRFpKWTB4SmFpOXFVMGR4ZFhkNVQwUjRSa2c0VFVkMkwyVXdNMlZyVEM5NFZUZzJTbkYxY1hKUUsydE1iMWN4YW5JM1ZGWklLemxMZURGNkNsaEdhRTlTWms0NGFuVlpabFZ6WVdkamIxbElibVp5TlVKRFRrOVdjbWh3WmxwS01WVjJVVTB3ZDFodlRsQk9OMUZSUzFWNk5IaGpkVVp3Yms5dFNXRUtNV05ZVkhkNWMzTTJTSGdyUzNWUFQyazJPVzFvUjBkeFRpODJhMUZxTjFRNFVEWnpObXRQYlhSVmF6WjZhMGQyVlZBeVRHOXRXVEZ3UWxoME9UZHJZZ3ByWW1WbFdIaElTM0pNU0dFMWQwdERRVkZGUVhnM1pHUnRkVTlVYkVsaE1YRnpTMVJxVmpsVVpERldja0ZCWWtWMFVFYzFPRk01VUd3eWJVNDFkRE5qQ2pCRGJ6UTRNSGRYUkhKcE5IZHZhVTgzVnpGUE5uTlJibXBVTkhsdldFaEJRMEpJSzNKMFREUkJVekJEWkZoVVRFWllja1Z6Tld4a1lXUXdSa05rVmxRS2RsYzBia0ZUVkNzNU1FTnVVSHBVUjNsR1JYaGxjVmxxWW5aU1ZpOVhWblJxWkhkcVZrZDJZWEJoWjBSUFp6Y3ZjbXROWVVWQlMwSlRaMHRNYW04MGR3cHRRMUZuWmpaNVF6bHhTR0p5ZG1KUlQyRk1SMGRLUjBSQlNIQjRNa3RhVDJkVVQzSlFlRXQyYm5OTU9YSm5hbXBpUVVKSFZta3ZNMHR1ZUhJelZGVkVDbkZ1UWxoSVUzTlRVMGhhWVRZeUsxRTFjelF4WWxGSFJHOXFSMFptTTFKRFFVNVNWRUZ6Wmk5R1luWlRaME13YlhsV01rRjROa3BzYTJ0M1MxSm5kazBLU1doRE1UQldaU3RpZWl0QmJGWldjRWRETVhGNFpHNU5WbmRQTkVkdkwzazJNVVJOTWpabGVITjNTME5CVVVWQmJsQTNZMWxrYVVWSFF5OTNMMUpvYndwSVZIUXZhMjV6UjJOMGFuRm9hVU5ZYXpSUU4xUlBaMVJHZVhWRWRXUktOVzQ0UW1kMVducDBWVVUyWkd0S1RrUTBjV3BwTml0UllUWm5ZVVIwUTNwVkNqVlVURUU1UTJGdlREaFBaamRET1dzeE5VOXBTMEZxT1hOTVNpOXRWbU12TkRFME1FcE9TMFUwYVhKb1UwaFlRMlYxWTFkTVVFSkZZUzkzUjNOcGRXVUtSRUpVY2pGdFZFeDFaM05GWVdSWlRVd3lhalp0WjBFMVlVSmxOblpJWjFVNFN6TTRSa05FTUhsQ2NVUkdRbkozYjAxRU9YVjFjVFZST1ZkWmMyMWpRd3BRZFdKR1NrWXZRVE5KYzFwU01uWnpTMFU1TTBoc1YxcEhVMVI1WTBWamFHWjJaekJaUXpnMFpEbERjbTVhT0UxeVEwVXJVMVl2V1VWcVZETjVSRk4xQ2tSRE0zbzVXRTVPVUdFeUwzVlFRVUZwYzNaVWQxVnVTMkZXTVU5NU1tbHRNbWd5ZWxOUWVqRkJaMHcxVlhoa2IyWlFMMDFpYkhkalFXMXFReXRPYkZFS09TOURkMGwzUzBOQlVVVkJhVXRZVFhSU1MzSlJiaXRrVVhwWldUQlRlamxLWmxKaE0zTjZRM2RIT1RSWmVUWlZlbUYxWVZCUVJtMXBWVTl4WW1OWFRRcG1aM2RxTVcwMmNrcEpZV0UzV1ZSRE4zbEJNR05yVVhKUFVuQmxORTh4VjFwVEsxQjBRaTk1WVVWTU1ETldSemxIV21KNFVVcFpiVEJ6UkZGcVZHSnpDa0ZQTjB0M1JFNTZTVEZLZVdkV1J6Rm5kRUpLUjJKVVVtSmlVRWQwU21WTVNtSmpPRnBtWjI1T2RYVlJjRWt5YVU5eGNHUktSeTlxYW1WWFEwZDJiRVlLVEd0Nk1uazVUSGxET0RFd2NuaEROSGx3V0RneVZtbEpPVVozVHl0dWRteHFPRWx2Tkc1QlVXTjZRVWs0UTFkdVpuWnNZM05EUkRZemFEUTFZa3R4ZHdwMWMxaEpWbUpwYWsweGFUWk5NV2hMTkdGdWVXaHZPV05NWTJOWksxSnJkMVJ2VjFKa1RWQjJLM1V3ZDBaUFptNXBWamRtTVV0a2VuZzBZMXBqUTBGVENrY3piMlZzTkRZeE9YRllNRzVYVkRGTVJVSlBUV3hhTVhock5HeHlUa1ZxWjNkTFEwRlJRWFE0V2pWalZXVkVNVUZPTjBoVE1rbDZTRk5rYjJrMlVpOEtOazlVWjBGT1VVcDVTMVIwWm1WdFRtWmlORklyUlhGd1pWRllObFZ5UWtWRGJrRnNWV0pEVWpKS1JFMVJORFJtV1RORVdXNURObEJ0YURaek1uTlhXZ3A1UjBkcVdTOTNSRGR5VmtwYVREUkdjakJRYUhaTk1Xa3dUalI0ZURKVFRIb3pTVEEyU21Jd05YRXhkbHB3VDA4eldtMXVTR0pPZVd4dmRERnpTWEZoQ2tSS1RHWjFNa1JGTjBRMWNUWmhaM0JZVHpBeFQxQkVhR3hvYUdkM0wwRlpSRXhJYTJKdFlYcDBLM0JGZVhGemRteFdjeXQzTVVGR09VWnhNRmgyVVVVS05tWnJjMkV2TmxsRlJGUlVkM3BvWldwR1FtcGhUMkZqZVV0c2RrNUdUWEJOZDBkdmNEZEZWWHAzWjJOdE9EbG9kVWcwT1RCaFNFVkNhM1ZwWkhSa1VRcERZbGR1YVdONWRuWnFaREJDZVZZd0t6bFpVM0ZuTVRsNllYbzNVa050VkdKaWJGTk9iVTVIVjFaRmNrRnRZa2d3T0hoSFNVRkpNMUZ5UTFJS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiA2YmMzd2NuZ2JoaTlvM2doc3Fpc2wxcnJrbnNvaTYwbmU2YWYwNjM5dDlsNmJhNjMycWhwYmtjMHB2YzV3bHpwOTJ2N282eXdtNGh5djR1N3NzdGE5YW81OG9oOHg2YTNpMnRyYW9hOG1hajQ1aTRyMmE1aXc5cWx3dDg1bmR5aQo=\"\n - \ }\n ]\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-pypxs2q1.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-pypxs2q1.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/09e747d1-bc71-4426-ba22-10691413c3dc\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3adee62d-4dbd-4c5c-83f7-c293c2f21851?api-version=2016-03-30 cache-control: - no-cache content-length: - - '13084' + - '4190' content-type: - application/json date: - - Wed, 15 Mar 2023 10:21:17 GMT + - Thu, 15 Jun 2023 22:45:38 GMT expires: - '-1' pragma: @@ -1253,7 +1396,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1261,7 +1404,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1271,64 +1414,23 @@ interactions: ParameterSetName: - -g -n --load-balancer-managed-outbound-ip-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3adee62d-4dbd-4c5c-83f7-c293c2f21851?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-22eg034d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-22eg034d.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/bc5ba7d0-a4b7-4e9f-8af2-07cc8d032cd2\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"2de6de3a-bd4d-5c4c-83f7-c293c2f21851\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:45:38.2537417Z\"\n }" headers: cache-control: - no-cache content-length: - - '3864' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:21:17 GMT + - Thu, 15 Jun 2023 22:45:39 GMT expires: - '-1' pragma: @@ -1347,104 +1449,36 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", - "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": - 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": - "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.24.9", - "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": - false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, - "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 2, "countIPv6": - 0}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/bc5ba7d0-a4b7-4e9f-8af2-07cc8d032cd2"}]}, - "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": - ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", - "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, - "workloadAutoScalerProfile": {}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks update Connection: - keep-alive - Content-Length: - - '2481' - Content-Type: - - application/json ParameterSetName: - -g -n --load-balancer-managed-outbound-ip-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3adee62d-4dbd-4c5c-83f7-c293c2f21851?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-22eg034d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-22eg034d.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/bc5ba7d0-a4b7-4e9f-8af2-07cc8d032cd2\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"2de6de3a-bd4d-5c4c-83f7-c293c2f21851\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:45:38.2537417Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f99be566-ea01-4305-aeae-0bc786f612ac?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3862' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:21:23 GMT + - Thu, 15 Jun 2023 22:46:10 GMT expires: - '-1' pragma: @@ -1459,8 +1493,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' status: code: 200 message: OK @@ -1478,14 +1510,14 @@ interactions: ParameterSetName: - -g -n --load-balancer-managed-outbound-ip-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f99be566-ea01-4305-aeae-0bc786f612ac?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3adee62d-4dbd-4c5c-83f7-c293c2f21851?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"66e59bf9-01ea-0543-aeae-0bc786f612ac\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:21:23.3871987Z\"\n }" + string: "{\n \"name\": \"2de6de3a-bd4d-5c4c-83f7-c293c2f21851\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:45:38.2537417Z\"\n }" headers: cache-control: - no-cache @@ -1494,7 +1526,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:21:53 GMT + - Thu, 15 Jun 2023 22:46:40 GMT expires: - '-1' pragma: @@ -1526,14 +1558,14 @@ interactions: ParameterSetName: - -g -n --load-balancer-managed-outbound-ip-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f99be566-ea01-4305-aeae-0bc786f612ac?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3adee62d-4dbd-4c5c-83f7-c293c2f21851?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"66e59bf9-01ea-0543-aeae-0bc786f612ac\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:21:23.3871987Z\"\n }" + string: "{\n \"name\": \"2de6de3a-bd4d-5c4c-83f7-c293c2f21851\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:45:38.2537417Z\"\n }" headers: cache-control: - no-cache @@ -1542,7 +1574,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:23 GMT + - Thu, 15 Jun 2023 22:47:10 GMT expires: - '-1' pragma: @@ -1574,15 +1606,15 @@ interactions: ParameterSetName: - -g -n --load-balancer-managed-outbound-ip-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f99be566-ea01-4305-aeae-0bc786f612ac?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3adee62d-4dbd-4c5c-83f7-c293c2f21851?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"66e59bf9-01ea-0543-aeae-0bc786f612ac\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:21:23.3871987Z\",\n \"endTime\": - \"2023-03-15T10:22:46.9193034Z\"\n }" + string: "{\n \"name\": \"2de6de3a-bd4d-5c4c-83f7-c293c2f21851\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T22:45:38.2537417Z\",\n \"\ + endTime\": \"2023-06-15T22:47:29.0351199Z\"\n }" headers: cache-control: - no-cache @@ -1591,7 +1623,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:53 GMT + - Thu, 15 Jun 2023 22:47:39 GMT expires: - '-1' pragma: @@ -1623,65 +1655,66 @@ interactions: ParameterSetName: - -g -n --load-balancer-managed-outbound-ip-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-22eg034d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-22eg034d.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/bc5ba7d0-a4b7-4e9f-8af2-07cc8d032cd2\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/fd3b98ee-3674-41c1-af65-6211984a91af\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-pypxs2q1.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-pypxs2q1.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/09e747d1-bc71-4426-ba22-10691413c3dc\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7be67190-b1fc-4d48-8dab-d72a7b4167da\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4088' + - '4416' content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:53 GMT + - Thu, 15 Jun 2023 22:47:40 GMT expires: - '-1' pragma: @@ -1713,65 +1746,66 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-22eg034d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-22eg034d.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/bc5ba7d0-a4b7-4e9f-8af2-07cc8d032cd2\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/fd3b98ee-3674-41c1-af65-6211984a91af\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-pypxs2q1.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-pypxs2q1.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/09e747d1-bc71-4426-ba22-10691413c3dc\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7be67190-b1fc-4d48-8dab-d72a7b4167da\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4088' + - '4416' content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:54 GMT + - Thu, 15 Jun 2023 22:47:42 GMT expires: - '-1' pragma: @@ -1803,65 +1837,66 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-22eg034d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-22eg034d.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/bc5ba7d0-a4b7-4e9f-8af2-07cc8d032cd2\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/fd3b98ee-3674-41c1-af65-6211984a91af\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-pypxs2q1.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-pypxs2q1.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/09e747d1-bc71-4426-ba22-10691413c3dc\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7be67190-b1fc-4d48-8dab-d72a7b4167da\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4088' + - '4416' content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:55 GMT + - Thu, 15 Jun 2023 22:47:43 GMT expires: - '-1' pragma: @@ -1880,24 +1915,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": - "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.24.9", + "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, - "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", - "loadBalancerProfile": {"managedOutboundIPs": {"count": 2}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/bc5ba7d0-a4b7-4e9f-8af2-07cc8d032cd2"}, - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/fd3b98ee-3674-41c1-af65-6211984a91af"}]}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": + "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": true, "supportPlan": + "KubernetesOfficial", "networkProfile": {"networkPlugin": "kubenet", "podCidr": + "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": + {"managedOutboundIPs": {"count": 2}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/09e747d1-bc71-4426-ba22-10691413c3dc"}, + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7be67190-b1fc-4d48-8dab-d72a7b4167da"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -1914,73 +1948,74 @@ interactions: Connection: - keep-alive Content-Length: - - '2699' + - '3027' Content-Type: - application/json ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-22eg034d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-22eg034d.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/bc5ba7d0-a4b7-4e9f-8af2-07cc8d032cd2\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/fd3b98ee-3674-41c1-af65-6211984a91af\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-pypxs2q1.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-pypxs2q1.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/09e747d1-bc71-4426-ba22-10691413c3dc\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7be67190-b1fc-4d48-8dab-d72a7b4167da\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f2cfc70-3f0a-40a7-b39b-19226f3d660a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a24ea88c-b26d-49b0-b34b-ccb1f3aa5eb2?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4086' + - '4414' content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:59 GMT + - Thu, 15 Jun 2023 22:47:49 GMT expires: - '-1' pragma: @@ -2014,14 +2049,62 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a24ea88c-b26d-49b0-b34b-ccb1f3aa5eb2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8ca84ea2-6db2-b049-b34b-ccb1f3aa5eb2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:47:48.8946775Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 22:47:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f2cfc70-3f0a-40a7-b39b-19226f3d660a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a24ea88c-b26d-49b0-b34b-ccb1f3aa5eb2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"70fc2c4f-0a3f-a740-b39b-19226f3d660a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:22:59.4659675Z\"\n }" + string: "{\n \"name\": \"8ca84ea2-6db2-b049-b34b-ccb1f3aa5eb2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:47:48.8946775Z\"\n }" headers: cache-control: - no-cache @@ -2030,7 +2113,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:23:29 GMT + - Thu, 15 Jun 2023 22:48:20 GMT expires: - '-1' pragma: @@ -2062,14 +2145,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f2cfc70-3f0a-40a7-b39b-19226f3d660a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a24ea88c-b26d-49b0-b34b-ccb1f3aa5eb2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"70fc2c4f-0a3f-a740-b39b-19226f3d660a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:22:59.4659675Z\"\n }" + string: "{\n \"name\": \"8ca84ea2-6db2-b049-b34b-ccb1f3aa5eb2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:47:48.8946775Z\"\n }" headers: cache-control: - no-cache @@ -2078,7 +2161,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:23:59 GMT + - Thu, 15 Jun 2023 22:48:50 GMT expires: - '-1' pragma: @@ -2110,14 +2193,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f2cfc70-3f0a-40a7-b39b-19226f3d660a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a24ea88c-b26d-49b0-b34b-ccb1f3aa5eb2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"70fc2c4f-0a3f-a740-b39b-19226f3d660a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:22:59.4659675Z\"\n }" + string: "{\n \"name\": \"8ca84ea2-6db2-b049-b34b-ccb1f3aa5eb2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:47:48.8946775Z\"\n }" headers: cache-control: - no-cache @@ -2126,7 +2209,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:24:29 GMT + - Thu, 15 Jun 2023 22:49:20 GMT expires: - '-1' pragma: @@ -2158,14 +2241,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f2cfc70-3f0a-40a7-b39b-19226f3d660a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a24ea88c-b26d-49b0-b34b-ccb1f3aa5eb2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"70fc2c4f-0a3f-a740-b39b-19226f3d660a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:22:59.4659675Z\"\n }" + string: "{\n \"name\": \"8ca84ea2-6db2-b049-b34b-ccb1f3aa5eb2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:47:48.8946775Z\"\n }" headers: cache-control: - no-cache @@ -2174,7 +2257,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:25:00 GMT + - Thu, 15 Jun 2023 22:49:50 GMT expires: - '-1' pragma: @@ -2206,14 +2289,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f2cfc70-3f0a-40a7-b39b-19226f3d660a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a24ea88c-b26d-49b0-b34b-ccb1f3aa5eb2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"70fc2c4f-0a3f-a740-b39b-19226f3d660a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:22:59.4659675Z\"\n }" + string: "{\n \"name\": \"8ca84ea2-6db2-b049-b34b-ccb1f3aa5eb2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:47:48.8946775Z\"\n }" headers: cache-control: - no-cache @@ -2222,7 +2305,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:25:29 GMT + - Thu, 15 Jun 2023 22:50:21 GMT expires: - '-1' pragma: @@ -2254,15 +2337,15 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f2cfc70-3f0a-40a7-b39b-19226f3d660a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a24ea88c-b26d-49b0-b34b-ccb1f3aa5eb2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"70fc2c4f-0a3f-a740-b39b-19226f3d660a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:22:59.4659675Z\",\n \"endTime\": - \"2023-03-15T10:25:34.8690024Z\"\n }" + string: "{\n \"name\": \"8ca84ea2-6db2-b049-b34b-ccb1f3aa5eb2\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T22:47:48.8946775Z\",\n \"\ + endTime\": \"2023-06-15T22:50:50.2822325Z\"\n }" headers: cache-control: - no-cache @@ -2271,7 +2354,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:25:59 GMT + - Thu, 15 Jun 2023 22:50:50 GMT expires: - '-1' pragma: @@ -2303,65 +2386,66 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-22eg034d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-22eg034d.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/bc5ba7d0-a4b7-4e9f-8af2-07cc8d032cd2\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/fd3b98ee-3674-41c1-af65-6211984a91af\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-pypxs2q1.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-pypxs2q1.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/09e747d1-bc71-4426-ba22-10691413c3dc\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7be67190-b1fc-4d48-8dab-d72a7b4167da\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4088' + - '4416' content-type: - application/json date: - - Wed, 15 Mar 2023 10:25:59 GMT + - Thu, 15 Jun 2023 22:50:51 GMT expires: - '-1' pragma: @@ -2393,65 +2477,66 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-22eg034d.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-22eg034d.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/bc5ba7d0-a4b7-4e9f-8af2-07cc8d032cd2\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/fd3b98ee-3674-41c1-af65-6211984a91af\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-pypxs2q1.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-pypxs2q1.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 2\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/09e747d1-bc71-4426-ba22-10691413c3dc\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7be67190-b1fc-4d48-8dab-d72a7b4167da\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4088' + - '4416' content-type: - application/json date: - - Wed, 15 Mar 2023 10:26:01 GMT + - Thu, 15 Jun 2023 22:50:53 GMT expires: - '-1' pragma: @@ -2485,8 +2570,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -2494,17 +2579,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4036f621-7300-4b3a-8856-d59bcfe08a86?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8d9a03f6-7fbf-45b8-af2c-061fa67948cc?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:26:01 GMT + - Thu, 15 Jun 2023 22:50:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/4036f621-7300-4b3a-8856-d59bcfe08a86?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/8d9a03f6-7fbf-45b8-af2c-061fa67948cc?api-version=2016-03-30 pragma: - no-cache server: @@ -2514,7 +2599,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_prefixes_then_update.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_prefixes_then_update.yaml old mode 100755 new mode 100644 index a598f43290b..7c03c60aac5 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_prefixes_then_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_prefixes_then_update.yaml @@ -18,24 +18,24 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.47.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.1 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002?api-version=2022-09-01 response: body: - string: "{\r\n \"name\": \"cliaksslbipp1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\",\r\n - \ \"etag\": \"W/\\\"86460e61-bc44-413f-9f53-ca55c211a13e\\\"\",\r\n \"type\": - \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"westus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"12b0eb61-1d0f-4672-9071-3d5be44470e9\",\r\n \"prefixLength\": 29,\r\n - \ \"publicIPAddressVersion\": \"IPv4\",\r\n \"ipTags\": []\r\n },\r\n - \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n - \ }\r\n}" + string: "{\r\n \"name\": \"cliaksslbipp1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\ + ,\r\n \"etag\": \"W/\\\"a84ad2ea-1987-45b7-9c8c-539140231f91\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"\ + westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"resourceGuid\": \"0ac17623-25ef-4aad-8853-11d348b45a3b\",\r\n \ + \ \"prefixLength\": 29,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n\ + \ \"ipTags\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\"\ + ,\r\n \"tier\": \"Regional\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/71008e21-3707-4d85-a5de-b55e87216f5d?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d14c723a-4eff-4375-9078-7b1963678bb6?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -43,7 +43,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Apr 2023 02:52:34 GMT + - Thu, 15 Jun 2023 11:50:41 GMT expires: - '-1' pragma: @@ -56,9 +56,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ed798888-15dd-47e4-81a2-f59dd0cb654b + - 41efb662-0f44-4630-a001-45382763a16d x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -76,9 +76,9 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.47.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.1 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/71008e21-3707-4d85-a5de-b55e87216f5d?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d14c723a-4eff-4375-9078-7b1963678bb6?api-version=2022-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -90,7 +90,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Apr 2023 02:52:37 GMT + - Thu, 15 Jun 2023 11:50:42 GMT expires: - '-1' pragma: @@ -107,7 +107,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 04395567-206e-409b-a36f-9fbe9268bcf9 + - 583d69d1-08fb-4e11-a7bc-6d60ccc07f30 status: code: 200 message: OK @@ -125,30 +125,31 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.47.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.1 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002?api-version=2022-09-01 response: body: - string: "{\r\n \"name\": \"cliaksslbipp1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\",\r\n - \ \"etag\": \"W/\\\"f3d3d368-eaab-43e6-9bf8-d994e66a7a5f\\\"\",\r\n \"type\": - \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"westus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"12b0eb61-1d0f-4672-9071-3d5be44470e9\",\r\n \"prefixLength\": 29,\r\n - \ \"publicIPAddressVersion\": \"IPv4\",\r\n \"ipPrefix\": \"4.154.24.16/29\",\r\n - \ \"ipTags\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n - \ \"tier\": \"Regional\"\r\n }\r\n}" + string: "{\r\n \"name\": \"cliaksslbipp1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\ + ,\r\n \"etag\": \"W/\\\"e0f8c280-02bf-44c5-87c9-5214a2bbb479\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"\ + westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"resourceGuid\": \"0ac17623-25ef-4aad-8853-11d348b45a3b\",\r\n \ + \ \"prefixLength\": 29,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n\ + \ \"ipPrefix\": \"20.3.203.208/29\",\r\n \"ipTags\": []\r\n },\r\n\ + \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ + \r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Apr 2023 02:52:38 GMT + - Thu, 15 Jun 2023 11:50:42 GMT etag: - - W/"f3d3d368-eaab-43e6-9bf8-d994e66a7a5f" + - W/"e0f8c280-02bf-44c5-87c9-5214a2bbb479" expires: - '-1' pragma: @@ -165,7 +166,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7030b31e-4c25-4ca4-8201-fce01f75c851 + - 478f164f-d2b5-4779-bd21-5ca6eaad19cc status: code: 200 message: OK @@ -188,24 +189,24 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.47.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.1 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003?api-version=2022-09-01 response: body: - string: "{\r\n \"name\": \"cliaksslbipp2000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003\",\r\n - \ \"etag\": \"W/\\\"7f99090a-d329-4168-8e60-cd4e99fe7a64\\\"\",\r\n \"type\": - \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"westus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"699656b9-4f23-4bcb-94e5-054ae4dd5945\",\r\n \"prefixLength\": 29,\r\n - \ \"publicIPAddressVersion\": \"IPv4\",\r\n \"ipTags\": []\r\n },\r\n - \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n - \ }\r\n}" + string: "{\r\n \"name\": \"cliaksslbipp2000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003\"\ + ,\r\n \"etag\": \"W/\\\"fc0aa084-4bec-43f9-924e-08703feed83c\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"\ + westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"resourceGuid\": \"a8f9cd2d-178a-4b92-8d40-96db1dcb8883\",\r\n \ + \ \"prefixLength\": 29,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n\ + \ \"ipTags\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\"\ + ,\r\n \"tier\": \"Regional\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4ecc8fed-51a2-4125-a370-8894cb13f8a6?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2add75ae-b763-4e71-8e9f-e1cbee065c77?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -213,7 +214,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Apr 2023 02:52:44 GMT + - Thu, 15 Jun 2023 11:50:46 GMT expires: - '-1' pragma: @@ -226,9 +227,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4a8e6e98-3b63-40e7-ab6d-290cc93c8770 + - 94dec611-337d-4f59-9173-17ca8208fb37 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -246,9 +247,9 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.47.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.1 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4ecc8fed-51a2-4125-a370-8894cb13f8a6?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2add75ae-b763-4e71-8e9f-e1cbee065c77?api-version=2022-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -260,7 +261,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Apr 2023 02:52:47 GMT + - Thu, 15 Jun 2023 11:50:46 GMT expires: - '-1' pragma: @@ -277,7 +278,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8c95ed4e-5a7b-413d-b87b-4e973802bde2 + - 0e145122-a931-4e21-b327-85fb9c2307c5 status: code: 200 message: OK @@ -295,19 +296,20 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.47.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.1 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003?api-version=2022-09-01 response: body: - string: "{\r\n \"name\": \"cliaksslbipp2000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003\",\r\n - \ \"etag\": \"W/\\\"e1dada2c-1ea1-4e78-bf00-cf3974b8a245\\\"\",\r\n \"type\": - \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"westus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"699656b9-4f23-4bcb-94e5-054ae4dd5945\",\r\n \"prefixLength\": 29,\r\n - \ \"publicIPAddressVersion\": \"IPv4\",\r\n \"ipPrefix\": \"4.154.25.72/29\",\r\n - \ \"ipTags\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n - \ \"tier\": \"Regional\"\r\n }\r\n}" + string: "{\r\n \"name\": \"cliaksslbipp2000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003\"\ + ,\r\n \"etag\": \"W/\\\"df2ed3c9-92d0-4830-89c9-72fd2f331545\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"\ + westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"resourceGuid\": \"a8f9cd2d-178a-4b92-8d40-96db1dcb8883\",\r\n \ + \ \"prefixLength\": 29,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n\ + \ \"ipPrefix\": \"20.3.205.56/29\",\r\n \"ipTags\": []\r\n },\r\n \ + \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\ + \n }\r\n}" headers: cache-control: - no-cache @@ -316,9 +318,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Apr 2023 02:52:48 GMT + - Thu, 15 Jun 2023 11:50:46 GMT etag: - - W/"e1dada2c-1ea1-4e78-bf00-cf3974b8a245" + - W/"df2ed3c9-92d0-4830-89c9-72fd2f331545" expires: - '-1' pragma: @@ -335,7 +337,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 862976c4-0068-4129-b5b0-f4a0eeb29bff + - cea8cc8c-b7c7-4a0e-8876-1b8a3d54f18e status: code: 200 message: OK @@ -354,8 +356,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -371,7 +373,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Apr 2023 02:52:49 GMT + - Thu, 15 Jun 2023 11:50:48 GMT expires: - '-1' pragma: @@ -397,9 +399,9 @@ interactions: test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPPrefixes": - {"publicIPPrefixes": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002"}]}, + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard", "loadBalancerProfile": {"outboundIPPrefixes": {"publicIPPrefixes": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002"}]}, "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30}}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: @@ -412,68 +414,69 @@ interactions: Connection: - keep-alive Content-Length: - - '2118' + - '2081' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.10\",\n \"currentKubernetesVersion\": \"1.24.10\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-er49d7c1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-er49d7c1.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.10\",\n \"currentOrchestratorVersion\": - \"1.24.10\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.22.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\": - {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ }\n ]\n },\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-4xnbewan.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-4xnbewan.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\"\ + : {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\ + \n }\n ]\n },\n \"allocatedOutboundPorts\": 0,\n \"\ + idleTimeoutInMinutes\": 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n\ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2d986344-7191-48c3-871c-2c1d4a8b64a4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69a4d5ba-11f9-42b7-a6f1-470bc45294aa?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3649' + - '3644' content-type: - application/json date: - - Mon, 10 Apr 2023 02:52:57 GMT + - Thu, 15 Jun 2023 11:50:55 GMT expires: - '-1' pragma: @@ -504,112 +507,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2d986344-7191-48c3-871c-2c1d4a8b64a4?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"4463982d-9171-c348-871c-2c1d4a8b64a4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:52:56.8757215Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Mon, 10 Apr 2023 02:53:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes - User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2d986344-7191-48c3-871c-2c1d4a8b64a4?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"4463982d-9171-c348-871c-2c1d4a8b64a4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:52:56.8757215Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Mon, 10 Apr 2023 02:53:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes - User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2d986344-7191-48c3-871c-2c1d4a8b64a4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69a4d5ba-11f9-42b7-a6f1-470bc45294aa?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4463982d-9171-c348-871c-2c1d4a8b64a4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:52:56.8757215Z\"\n }" + string: "{\n \"name\": \"bad5a469-f911-b742-a6f1-470bc45294aa\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T11:50:55.1899851Z\"\n }" headers: cache-control: - no-cache @@ -618,7 +523,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:54:28 GMT + - Thu, 15 Jun 2023 11:50:55 GMT expires: - '-1' pragma: @@ -651,14 +556,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2d986344-7191-48c3-871c-2c1d4a8b64a4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69a4d5ba-11f9-42b7-a6f1-470bc45294aa?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4463982d-9171-c348-871c-2c1d4a8b64a4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:52:56.8757215Z\"\n }" + string: "{\n \"name\": \"bad5a469-f911-b742-a6f1-470bc45294aa\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T11:50:55.1899851Z\"\n }" headers: cache-control: - no-cache @@ -667,7 +572,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:54:59 GMT + - Thu, 15 Jun 2023 11:51:25 GMT expires: - '-1' pragma: @@ -700,14 +605,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2d986344-7191-48c3-871c-2c1d4a8b64a4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69a4d5ba-11f9-42b7-a6f1-470bc45294aa?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4463982d-9171-c348-871c-2c1d4a8b64a4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:52:56.8757215Z\"\n }" + string: "{\n \"name\": \"bad5a469-f911-b742-a6f1-470bc45294aa\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T11:50:55.1899851Z\"\n }" headers: cache-control: - no-cache @@ -716,7 +621,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:55:28 GMT + - Thu, 15 Jun 2023 11:51:56 GMT expires: - '-1' pragma: @@ -749,14 +654,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2d986344-7191-48c3-871c-2c1d4a8b64a4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69a4d5ba-11f9-42b7-a6f1-470bc45294aa?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4463982d-9171-c348-871c-2c1d4a8b64a4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:52:56.8757215Z\"\n }" + string: "{\n \"name\": \"bad5a469-f911-b742-a6f1-470bc45294aa\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T11:50:55.1899851Z\"\n }" headers: cache-control: - no-cache @@ -765,7 +670,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:55:59 GMT + - Thu, 15 Jun 2023 11:52:26 GMT expires: - '-1' pragma: @@ -798,24 +703,24 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2d986344-7191-48c3-871c-2c1d4a8b64a4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69a4d5ba-11f9-42b7-a6f1-470bc45294aa?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4463982d-9171-c348-871c-2c1d4a8b64a4\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-04-10T02:52:56.8757215Z\",\n \"endTime\": - \"2023-04-10T02:56:14.105322Z\"\n }" + string: "{\n \"name\": \"bad5a469-f911-b742-a6f1-470bc45294aa\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T11:50:55.1899851Z\",\n \"\ + endTime\": \"2023-06-15T11:54:35.3912514Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Mon, 10 Apr 2023 02:56:29 GMT + - Thu, 15 Jun 2023 12:20:58 GMT expires: - '-1' pragma: @@ -848,61 +753,62 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.10\",\n \"currentKubernetesVersion\": \"1.24.10\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-er49d7c1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-er49d7c1.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.10\",\n \"currentOrchestratorVersion\": - \"1.24.10\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.22.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\": - {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-4xnbewan.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-4xnbewan.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\"\ + : {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.network/publicipprefixes/cliaksslbipp1000002\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3867' + - '3862' content-type: - application/json date: - - Mon, 10 Apr 2023 02:56:30 GMT + - Thu, 15 Jun 2023 12:20:59 GMT expires: - '-1' pragma: @@ -934,63 +840,67 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.24.10\",\n \"currentKubernetesVersion\": - \"1.24.10\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-er49d7c1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-er49d7c1.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.10\",\n \"currentOrchestratorVersion\": \"1.24.10\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-202303.22.0\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"outboundIPPrefixes\": {\n \"publicIPPrefixes\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n - \ }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-4xnbewan.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-4xnbewan.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"outboundIPPrefixes\": {\n \"publicIPPrefixes\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.network/publicipprefixes/cliaksslbipp1000002\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n \ + \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \ + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ + : 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n\ + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n \ + \ },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n \ + \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n\ + \ \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '4122' + - '4117' content-type: - application/json date: - - Mon, 10 Apr 2023 02:56:32 GMT + - Thu, 15 Jun 2023 12:21:00 GMT expires: - '-1' pragma: @@ -1022,63 +932,67 @@ interactions: ParameterSetName: - -g -o User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.24.10\",\n \"currentKubernetesVersion\": - \"1.24.10\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-er49d7c1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-er49d7c1.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.10\",\n \"currentOrchestratorVersion\": \"1.24.10\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-202303.22.0\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"outboundIPPrefixes\": {\n \"publicIPPrefixes\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n - \ }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-4xnbewan.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-4xnbewan.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"outboundIPPrefixes\": {\n \"publicIPPrefixes\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.network/publicipprefixes/cliaksslbipp1000002\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n \ + \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \ + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ + : 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n\ + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n \ + \ },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n \ + \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n\ + \ \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '4122' + - '4117' content-type: - application/json date: - - Mon, 10 Apr 2023 02:56:34 GMT + - Thu, 15 Jun 2023 12:21:02 GMT expires: - '-1' pragma: @@ -1110,61 +1024,62 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.10\",\n \"currentKubernetesVersion\": \"1.24.10\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-er49d7c1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-er49d7c1.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.10\",\n \"currentOrchestratorVersion\": - \"1.24.10\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.22.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\": - {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-4xnbewan.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-4xnbewan.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\"\ + : {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.network/publicipprefixes/cliaksslbipp1000002\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3867' + - '3862' content-type: - application/json date: - - Mon, 10 Apr 2023 02:56:37 GMT + - Thu, 15 Jun 2023 12:21:04 GMT expires: - '-1' pragma: @@ -1198,15 +1113,15 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUkhCUFpYcHVkVXQyYTJwS2MwcG5ia3RoUzBsS2FrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTUUxVVFYZE5hbEY2VFdwQ1lVZEJPSGxOUkZWNlRVUlJlRTFFUVhsT1ZFMTVUVVp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVNMUNrdzBjbWg0Y0VSNVIwZHhka0k1UmsxR1UzTkhORkpUZUVKQlJ6UmxNMlJhUjAxbU9VSXdXWEJsU0ZaWE1HODFXWGt6Ymxoak0waGtjRkEzVVZsRVJFSUtUa2RGUnpCUFYybzNhV3hoU0VsVk5qRTJOR1pOVUdKNlltdzNTWEJQWlRWSk5URmFiMjFGY0VSR1RqUjNMMWt3WTNsSmIxcFpTbGhETUVKWFpHcFdjZ3BLVmxWUVNqUklTR0Z4Y2sxc04zaFJTbEZSTTFwNGRFTTBWR2RoVGpFcllWSkRObXRVWTA1Q2VrOUlaRGx4TVZKeVNWWkZiazVGWkhKMFRXa3JRVzVoQ25CS1kyODBVVVZHZEhOclMzbEVTSEpWU0UweWQwdGxaekZYUlhoUlUybHZNRVJNTm5aelUxQklkMlJYTTFGRlNsZERRV3RXSzNaWWFESlVabVZVTWpJS05tRnpPVEJhVnpkd1VrMXljMGxqUTJGT0wwdzNXbVZTTVdOb1MzQjNUMEZIT1doVFFWVTBhRGhyUzNCUmNFNWlSemN3THl0WlNYcEVjelZRWmpaaWJBcEROSGxVYVRsdVZGVlBZbmMyTkhsSmRVNXJNekZhYlRjeFl6QlBia3gwY1d4aE1VRktMM1ZDT1haQmQyYzJVM2hUTTJvdk0xYzNNM0U1YjNNNGNraHNDbUZHWjNOd09XUkpUR1ZDVVdwdFF6ZElaWFZNTjFsd00xbEpPVWw0YTJkQmMzbzNNWGs0VEZSVUsyMDNlbTEzVGpoT1puZE9iMUV5UVdWc05VbFlaV2NLSzFNdlZqQmFlR1o1U1doc0wyWlRSbFJtWmpWNGRuZFVWR1ZNUVhad1YwZFhXVmxEYjBwSlFWWlVWMkpWYWtGNWVGUm5laTkwZVZWNVdXbEdNV3MyS3dwa1YyaG9iVkpPWkVWYVNVSjJUM3BuVTAxalEwcFNNbXRWUzFCVmNsZEpSbHBSYzNkYVZtaHFUWGRJUlZRcmNGSXhTVTVPYmtKcFpIQndRMnR4U2poMENraGlTbWhhYkZaTEt6WnZia0ZvU0VSc0x6QlhhMVZpYm5oNVJVbENWQzlDWW1WSVYxVmlSMEZuUlc1c1ZuZHFRVzlDTlVwUk5rVnJRUzk1ZEdGQmFXMEtTbGxhYmtWdE5tbHlRVTVPUld0Q01XYzVOVzByUVd0VVVDOVZOME54V2sweGFVSnFPWGR6VGpWM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWNmVuVndUekJPVlhCclJHZE1aa1UxQ2tJemJUVm9UMHB0V1VkRmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRksySlRhbFJHVGpOTlIwc3JVa1oxYVd0SVNHMDFURmxMYVVRS1prWTRZVzFIZFZkS00wSnNNSFJUY0ZwMVYwNHhZbmg0VHpoaVdtbHRlVGMyYVVjd05GVXlNbU16YTFsMVkyMHlaVGxsTldkVllteHRZVzV5SzJ0T1F3bzVXbTlXY1U0NFNDOU1RazUyUm5kaVoydHFjV0pxTmpOeFVXTnhWM1pyUmtnM1pqSTRWMlF5VUdoU1VIbDVXV2RzZDBaWk5rWlROV3R4Tm01TUwycGFDbkpMWXpoS2MyaEViVmxhVm5ob1RtdERWR2RYYVM4eVoxWXJOMkozWkVwdGNFa3ZXbkpOU0ZZM1pFTlNSMFk0UlVSUlYzbGpjVlJHVTBNdll6bElhRWtLU2xGVFdrVk9OM0ZqU0RoQ2MxRlJZVzh3U1RrMFNHUkVTbk40YzJGc1JuUkVVemROVUhRM1duRlNVMDFWYm5kS1RFcHZUbGROZURoQ01IaHRkM1JGVEFwcVZFaFBkMVo0TTAxdFVGWllNbWhvYkdsdFptOVpkakptYm5CbmFVZFVSSE42WlZsaGNETkdSMnRhVkVab1dXOTFORmN5VWpGR1ZreGxOR3gzTWxKeENucEZURlZLUm1RNWQxaFFTR2RMTlRGaVVtdFRSWHBwVDJKTFRHRnlSbEF6YkZjelQwZEJVR2hpU3pWVWRYZFhkbkE1UjJsblpWbFNjVlIwTWxKbUwzWUtaakZtYlVRdlowMW5XRE5GYjFKaE1uVkNaSFpXYTBKak4wUnNVVmN5WmpWMFNsaGlhME42Y2tFM1dGVTRTU3QxVGtwb2ExWlhaemd3TUVoU01ESm5PUXB6Vm5GV2FqbFJNMFo2TWtkRGNEVXJTMUp5ZFhaaU4xQjFRMUl6WTNwUWFHSkJNR1p5ZFc4NWRUSjJZblJZYUdka1Yxb3JaRUpaZVVOR1dFOWlNVmxKQ21Ga01UUllla05pUjJNd05IQlRZMGhNY20xaU1XWlVaMDF6V0hZMU1YZzFOamcwU0hsNmVXcDZUakZ2ZW1KRlFrNURWbGRqZVVWbVYwTkxVSGhqWW5BS2JIZHlNMVF3T1hveldVUlZlbUZOTjJkU2NFcDBSR2c0ZWpVeWJHaFlVa1pPYlhSS1REa3plR2NyY1V4ME1HTmxaMk0zWjFVelQwOXRiMUJJTURkR1J3cEhjbXB6ZERoTlMxRlVSMWgyS3poWkNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3F2Zm54Y2gtZXI0OWQ3YzEuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3Q2Z2dsbjMKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3Q2Z2dsbjMKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3Q1d2JvMnl2ZTRtX2NsaWFrc3Rlc3Q2Z2dsbjMKICBuYW1lOiBjbGlha3N0ZXN0NmdnbG4zCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdDZnZ2xuMwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3Q1d2JvMnl2ZTRtX2NsaWFrc3Rlc3Q2Z2dsbjMKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVXRhVkhWblRtWkdWRmRuTnpab1pVdGFNR1phZG1kM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVFUlhkTlJFa3dUWHBKZDFkb1kwNU5hbFYzVGtSRmQwMUVTVEZOZWtsM1YycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCZWxwaVoyc3lPRGRoWjNCS1YxUmxTbXRCZDFJS2J6UmpUQ3RHY0VSME5ta3JaMlJqYlVKME9HRktSSEJ4UWxOdE9YQXZNMmhSYTJGbU5ISlJZMmcyT0hCcVMzRnpXSFY1ZEVOeVFVcGFkbkYyUkdRdlJRcG1abE00UkZkWWNtMTFWVkIwVVM5aGVrZ3ZjQ3N3TTBaRVVWVllSV3hpUTNsWVdsWlpXRXgxWmxKRU9ESXdTMUZrVEdoRGN5OUZUbUZDTTNwSlNYTnlDblp0WkdKU1kwUjNjakpqTXpOVWFsSm9lVlY2ZEZOd1JTdHpUV0ZLUTBkQlVtaFJORWx5WmxKR2EyRldjekJyVWtocE16TnBiRWtyUlZWTUx5dHBTMWtLYlhOUGJFUk5SMlEyWkV0NFlreEVMMUJLUWsxMGQydExlbGxDWjJ3MloxUldiVkZPV2xKMWIyWlRNRmxUVkhsNE0wVTBjeXQzVkcxMFIwbExheTlMTlFvNVF6TjZPVFpvWWxOT0wxWklaV2tyWkdVeWVIVlRlVEo2TVdKMmRFZG1PWGM0TVVwNlNGbGlRMUJKVEZjMGIwd3lWbUpFYjBaWWVGUmxRekJISzBWeENqTnJiR0ZEUzIxcmFHTkRTa3B0UjBsbU5WVlJXamxrZUU1M1RUSTFVWEp1YlZwS1duRnBSeXRKZEZCeWJUaFJhVGxpUlVwUGQyUk9jMFIzTlV0U01YWUtOMmxJZEVSMlF6SkRlVmRvTWtFMlYxUkZXa0ZHYmpSbmRVbG1jblZRT1RsNlVGRmhTbkJCVjBkVlVYQjFRa3h1VkhOQlVIVjRValZrVUZZeFlpOU9NQXBQY1dKVWIyczFNMmRJTDNKQ1JFZE1iR0psZDJGaVZXcFVVMVJUUXpOSlQwSkhlRlJIVUZwS09GWk1SV1o2V1VKcGJVWk1XUzh4U0VOM1pWSXdRa2hWQ2taUE5uYzBhM2g1VG5ncmEwSndhWGR5T0c5SGF6QkhjVU5LUlVzelJEZExjMVpoTlVFMmF6VmpjSGRNWVRsVk0zWjBkRzFzWjI5bmFtMXhVbkZMV2xjS1VFZE9hVzFYVUhSa2JUZDBZVFF6WjNneldIQkpiVWwzUjBoV2RHbFRZMDVKVlZoc04xY3daMmxWU2xCbk9FZ3dVSEphWnpOVGJHbG9VVlF3YldJMlFRcEZPVVE0ZG5ONGVsTkhhWGh6U2pSRWRHSjBlbEZNVFVOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWZW5wMWNFOHdUbFVLY0d0RVoweG1SVFZDTTIwMWFFOUtiVmxIUlhkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCU0M5S05FdE9RVTFxVnpJNE4yWkhhVTl4WXdwSVYzTTVlR2wzVkdkemEwMXliR0V3TDJKUlFWWkZjblJqT0ROaEt6VjVaMEozUTNGdGF5c3Zibmd4Y0RrdlJHSnFTaXRuWVN0WVIwZHNjelY1ZWl0dUNtUnVXSGx6V0hNclRHeHdOVUZHUm5KYVJuaHRaSEk1WVM5MWFGUlViMWwxY1cwMGRVUjRkRmswUmpWTEsxWktSVFpUWlRCR1owcFNWR0U0VjJkR1ZXRUtaVTkwT0d0UWVtWXlWVGhWTUhnMVdUSk9ORzVCWkhGeFkyWlFRa1Y2VEVoYWNsTjNSbGxpTkZveFREVjBSWFZoV0dWT2FHTkRjM054YzBaeE0yOTNjQXA0VjNGWFZURkpTMDVDWTNSd01FUkxTMHAxWm5CT01HcHJkM0pOSzFoRFJHSkNNSGtyTWpadldGbHJiWG80YmpOU1FuQlpiM0JVV21OM0wwMW1la1pTQ2sxbVoxZEJkVlpXZUVrMk5rNU5abHBzZGxGaVNqSm9URkZ5YTFwSlNtNXhSbEZTV25kSFJ6aDRVblp1VkhCV2RVNHhRMFpYVW5kMWVURTVTMDR4WVRJS1kweGpSbll3V21kc09VVm1aMjB3VVZWbU1rTTJPV2hXYTBaM09XdDZjR3BhZWxWc2FHWjRiRmRpTW5STmVITjVkRzB5Tkc4MWIyOTNNR0pyYTB4U1dBcDZTVzFJWVdZNE1WRjVVa0pSWVZWcVExQldUbGt4TVhRME9IQkRaRVZLWlhGelJVTTFXSGh0VmtSWVpuSmtZVWhJYmpCVGVVVXhSa29yT1dobk1VczNDamxIU1hoMWJXTk1ZbEZUZFRSelpsWlZlbXRKUVhocVVGbFROblpQZFdoWWJuSnhkbGxPYkV4R2VXTnNlV3BEZDNGeWNqTkhabFJUYWxOSlNGSXJXa2NLV0ZBMlpVZGllR2wzVlU1VlYyWlJSVTR4YWpsemNFbHZXVk50TUdsNFZtMDJZVEJKVDFwRWVtZFlZMDF4TVhoRFoxRTNjVXd3WmxoUmNGQkNlazFaYmdveGMwMUNXV1JYTWtWb1RsWklObVUxZUhCVVdFSlBRalJOYjA1emQwVnlNRGhGTldRM1MwcDZkbkpuZW5NNFNFUTRSRXR1V2s5TFlpOWhRVUpuTDIxUkNubFVLMHQxZDNsb1pYcEJkVEJXVWpkNFNFTlJSRWhTYkFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTbmRKUWtGQlMwTkJaMFZCZWxwaVoyc3lPRGRoWjNCS1YxUmxTbXRCZDFKdk5HTk1LMFp3UkhRMmFTdG5aR050UW5RNFlVcEVjSEZDVTIwNUNuQXZNMmhSYTJGbU5ISlJZMmcyT0hCcVMzRnpXSFY1ZEVOeVFVcGFkbkYyUkdRdlJXWm1VemhFVjFoeWJYVlZVSFJSTDJGNlNDOXdLekF6UmtSUlZWZ0tSV3hpUTNsWVdsWlpXRXgxWmxKRU9ESXdTMUZrVEdoRGN5OUZUbUZDTTNwSlNYTnlkbTFrWWxKalJIZHlNbU16TTFScVVtaDVWWHAwVTNCRkszTk5ZUXBLUTBkQlVtaFJORWx5WmxKR2EyRldjekJyVWtocE16TnBiRWtyUlZWTUx5dHBTMWx0YzA5c1JFMUhaRFprUzNoaVRFUXZVRXBDVFhSM2EwdDZXVUpuQ213MloxUldiVkZPV2xKMWIyWlRNRmxUVkhsNE0wVTBjeXQzVkcxMFIwbExheTlMTlRsRE0zbzVObWhpVTA0dlZraGxhU3RrWlRKNGRWTjVNbm94WW5ZS2RFZG1PWGM0TVVwNlNGbGlRMUJKVEZjMGIwd3lWbUpFYjBaWWVGUmxRekJISzBWeE0ydHNZVU5MYld0b1kwTktTbTFIU1dZMVZWRmFPV1I0VG5kTk1nbzFVWEp1YlZwS1duRnBSeXRKZEZCeWJUaFJhVGxpUlVwUGQyUk9jMFIzTlV0U01YWTNhVWgwUkhaRE1rTjVWMmd5UVRaWFZFVmFRVVp1TkdkMVNXWnlDblZRT1RsNlVGRmhTbkJCVjBkVlVYQjFRa3h1VkhOQlVIVjRValZrVUZZeFlpOU9NRTl4WWxSdmF6VXpaMGd2Y2tKRVIweHNZbVYzWVdKVmFsUlRWRk1LUXpOSlQwSkhlRlJIVUZwS09GWk1SV1o2V1VKcGJVWk1XUzh4U0VOM1pWSXdRa2hWUms4MmR6UnJlSGxPZUN0clFuQnBkM0k0YjBkck1FZHhRMHBGU3dvelJEZExjMVpoTlVFMmF6VmpjSGRNWVRsVk0zWjBkRzFzWjI5bmFtMXhVbkZMV2xkUVIwNXBiVmRRZEdSdE4zUmhORE5uZUROWWNFbHRTWGRIU0ZaMENtbFRZMDVKVlZoc04xY3daMmxWU2xCbk9FZ3dVSEphWnpOVGJHbG9VVlF3YldJMlFVVTVSRGgyYzNoNlUwZHBlSE5LTkVSMFluUjZVVXhOUTBGM1JVRUtRVkZMUTBGblFVTjBaSEZCUm5oa1VtSndSa2tyT1Vvd1l6ZFNTREExTHpCNGFuWmxWQzl6ZVN0M1RXeFdRWFZyVEhGRU0wMUlWM1p2VldzeU9XNWtiQXBLWW5FMmFucFRaRUpwVEM5dVZqaHhjRTlrTmpGQ1RUWjFOV2czYTBvMWNVUnpNM05ZVG1rMFMyd3hXVVpPWldjeVNWZG5hR3hEYm1wVU1VVkxjWE14Q21aaE5XNU9OMGxrYzJWTU1YQjJaelpLZUU1dFN5ODNiMnAxTUd0MFdHZGxhekI1V2tFeVRscEtNR0ZpTkZsSGRFRmpSMjVFUzNSeWFtOVhRMXAzU0ZjS1l6RllkVlpVTDJvdlZFdGphM28yVVU1RlZtUk9UMVJ5UWpCdE4zZEthVTFqYjBWRFpFTlRhWEZxUzNwUFlsQktUbVpXVDJkRlRFWjJVa2RGVFdjeE53cEtPRWwzTlVWa1RuSTVPRzloUmpsMllqaEZZVE0zUVVWQk1EaDNVMDl5VDJWUmJUZEVSR2hxUkVrMU1sQTBkalJTVURacUwxTkdjak16VFZwQlluWllDbFpxWkVaQ2RYWm1ZVkpLS3paM1dIQk9lbXBZVEdZNGVETjFXVkozYUZSblJXUjBlRGxKUmxnelR6bHpVVFZ1UVhWSVNtMU5TSFZyUTNGblNWcFNTRkVLVnpZNGFYTnVZMWRGUXpGc1kxaHJRM2Q2YzJkM01IZG5lbWg2TTNjM00wdFdaMXBwY3pjNU9VcDVTR0UyV2tKU0wwbGxiVU5IVmpreE5WQktUVTVwTXdwNE9XWnFhVlZ2Y1hCdlVrUlhaMmQ0UjB0cFMzVnVkak5ZTlZSS2NVeElTRTAzTDA1aVdXOHpaVkJrTVM5elpEZElRa3BoU21GRWVWSlViM055YzB0TUNteEdWMWxGYUUxSWVqUkxOQzlwU1VrNFZTOVFVSFJWWmxaRU16ZHZTMEpoVVRaRGJIUnJhRUk1TTNaVWQzWjJRWGxGVmt4RVIwdFBVbGh0T1VsbmVVZ0tNVkkxZWtFMFVUZG1TMGRYZEVSeE16RTNPVWwxU0Zwd2JHbHZZbGhzUkZVdmJteGxSVXRQYW1aTVJYbHZZbmhDZGtNMWRsbHFTVVV3V201TU9EVk9NUXAyYUZOMU9HaDJNekZXZFZCcldrbHFjak5YWmtkSFVVZHZVWElyYjJWTmNsRk1hRVpZTDBSTGJEUkhhVWhNU0VsQlVVdERRVkZGUVRreFdETk9UR1EzQ2s5dE1tVkpWbGxWY21aRFNURjRPVGw2Y25ZeFZqWlJSV012TVVOVmRrSlJkblU1ZVhBMGVGbGtSSFJLTTNWS1ZFWmtUMjlXYVU0d2IydHBNV05yYXpRS1N5OUdhbkkxYUV4WlJIRXhRM2haZWtkUk1sQkthR2RzTVhONmJFWjFLMmxoUTFCU1JFVlJTV3RMVTI1bVJDOTRZVlUwYWtWUFVUTTJSM1V4Y0ZCd013cFFjekF2YzBka0syMXhVM2hDS3l0TmVqVjNPVXBCZDNWS04zUnNXV2g2V1dONFYyUnZiRlI0SzFFeVIwNVZNekoxTlZVemVXYzRSMGhTZWxGeWIxQlZDbkJ5VUhoaFdWaExRMnB3TmtSRVJIQk9TVk5KVVdGcVVtUlFXaXN4VFc5Q1VWRjNPR3MyVlVzd0wyVk5URWc1VDFSYWNWVkhia1JZV1dWNmJqUjJRVE1LZDJsVFRqaG1MMHMyVVdoNVdVOTFhbnB2V2xwMFZURlpPR2hZZDB4dmVFdzVkVkJyTTBGblZVdDNZbXRIYW5aVVptVXpNM1pUVVhGNk9URkRUM1JyYUFvMVIwNWxNMEZhVlhwNGRsSnJkMHREUVZGRlFURk5jVXQxUzBGUVVqUkJjRGhwSzNoSWFuTktRa05MTkZka01HMTFVM0kxYVVZclNuVXZNakZMWTI4MUNqZERabkJpUzNWQlptMURlVGg1ZEcxRGJGRXlObmRvTldwSE56WnZOMVIwY1hsT1V6SlVXV0pTV1ZWR1lUTlJSWGx5UmtjM1ZsRjFWMEpCYUV4VmRsa0tiV1YzZW5WcWFHWk5aRUV5ZWtsd1QwNUZjbTVETlhkaFltOVpjazlvZUVsVVZUaFJhR2hqUkdWak5XRmhZVU5CYmpaamVXSXplblpMTkdjNGFIY3JRd3BCYkZNclJrZEhlVWd6VVhOYWVVMVJkemxPVW0xbFJuWlJTaTlFSzFsdlZsRnpha0ZNVUhCcU0yeGlNRTF3Um10cmJscDJWMmxtYWtvcmFFc3lUbTFPQ2pCTGJISk5ZVE5WTDB4UlZFcHlVV0ZVVTNkT1RGVkRVV2hxWTI5MmVqUndXRTU0ZVUxNVNVaHNRelJSTms1MVowcHJOalkwYWxkSFVsQnBkRVF3ZHpZS09IbFBXV0p0WVdwUlNYRjBXVU42V2xwSE56UktiMUJxZEc1MmJXUkZSek50U0VWTlJtUnlTVmxSUzBOQlVVSm5kR3hMVmxsSVJtczFWbmRDZFZGRldncERiMkpZV2pBM2QwOVljWHB5UlZNMVptWjNha3BwYWsxdlEwSTJPVEYyV0VKNEwxcGpWRWd2ZUU5V056SlNNVkZJTlVscVowSklaM3BQUTI0eGNYTlRDbXMyU1dKR1lrVm9VMHhaUTNSVmNVZGtWbEJYTldocWFFVTNRVFJXV201eWVGSmFaMlJVYUZkaWRVVjZValp0T0hwbVJWYzRORVZTU1RONVZqUTRTVlFLWjJaYVpraG5TVE5aSzFwaldrRTNaMHBzZURoUmNqZzBUVTl0Vldkb1lXcDRaa0ZIWnpsbVNXWlpOVEZEWlRkblJERmFhVUowV25RMFRYRjVPR3RsVVFwUVJrWm5NWFpqTlU4clJucHRlV3hpZWswM1NFMWlNMUI1TlUxalVVWnhPV2t6ZUdGSlpWWnBXSFZGZFdaYVZXRnBNa2xaTUUxc1kzUnhTbmxWUVhwMENteG5ibnBpTDBJM1dIWnNVVGxWSzJ0VFdWQkVSRGhVWTFsNmQyNDVWbWs1WjJ4S1RFWTNNbGszYVZsRE5WWlBRVTlCYjJaeVMzVmtMMGRWY0V3MmFWWUtNakZFVmtGdlNVSkJSRU5VYjBWR2RtZExNWGMyTmtvelJYSmlNVUZUVkhCcVF6UjJiSHBTTUZKQmVrZDVjRzFaTTBjclV6QTVRU3RsUlVsMmEwdEVTZ3BGU0VWRmRXdEhibGxtV1dKMFEzWkVPV2RJUkZCMlNuWnRUekIyVG1WRFZEaHNNMHRYV1VkM1NVdEllazF5VlRFd1Z6QlhkMGhoTmk5clFVaDFSM1ZXQ25aaWVrbzBabkE0UlhWNVMydFdiMm94VDBKeFRHNU5MMnh0VlZkQlpIZG1jVWhKZFdsek5XNXBPVXcxYzFaMU9YVlNkVmxDWWxScmFGcFFMMnBZYzNrS2RWTlJLMVpCYUhkVFJrOWFja0l3VkcwNWFIVnNiRmgwYjBSc2ExYzRTVnBHV25kd2NITjZjM0p3Vkd4UlF6QlFSVmM0V210M09VMWlZMVZyYVhSbE5RcG5RbTAwZVdKNFQxUjRMME5sYm5VMVVXUnpUM0JOUTI1TWIySlFkMDh3Y0RaM1FrNXBkWHBVTUd0UWNuUnBRWFZ4VFhONVQzTTNaMnhHTmpOdVdrMVNDbFpYZWpoTlFrTkhZVXN6WVUwdlUyNXhhamxzT1ZSVFpYTm5VMWhOYlVWRFoyZEZRVmd4YkRrek1XcEpVR05PVEV0a2IwVTBXWEpVT1RSWE1Dc3JNSFlLZURaS1ZrSnJUVXB3UjFvMFRtVk9URVZ1UWpSNVZrZzNPR1pqYzFkWk5rOW9kMHBTT1ZJMmJWbzFTbmsyU25sNGEwUmlTQ3MxUzFrMVkwWnNkazFYVFFwRlVreE5Tamt3ZDJaR1MxcFZkamRUY2pZdloxSnZTelZvU2xwcFRFdFhaekEwYnpCelkzRm5WRThyTWtWd1UxUkRRbEl2TkU5WlJtTndOV0kyYUhKbENtbGxaRWs0ZUhaVGJuWlZObGRCZUhGTE1EVnRlVzk2VTBSRFpUWllSV3hhVEhORmFUbHpjRFpMWms0MWEwcFhaa2hEVGpJMUswUk9XbEJQYTJSYWR6Z0tOWEpwVW0xM1JqTXZhaXRWYUVKbWIweFBTbkVyTm1SRE5IQjVjU3RETWk5TU1rZFBiRkp2Um5GbVUxaEVRVmg1VDFOTlZWTlhjMkl2ZWtGaE4xZDRaZ3BvTTBGV1kyOXJZbTVzVG5GSlVsWmxNMHRrTlZCa1VWRjJhME5UWmpKRmJVd3ZXa1JLY1haSU9WQXhWemxsVEZFeVUyWTJXWFJCWjBkblBUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogbXo4Nmxua284bHJudmlnczYzMGR5aTlweXJtcXV4aGk2djliY2cyamJ4bDJnZ3M2cWd6MXVrY3Jod2NwZTEwcmpuNzM1anEwamZya3kyaG02N21wbmJxNXZrZHRxYzU4YjM0NGlnNzgxcGpzeThoc3JhMXloYXRmZWg4amF5dngK\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUTFSelRHVXdRVkJrU1dSSlRGUlRUVXRJZWsxVlJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVZYaE5WRkY0VFZSc1lVZEJPSGxOUkZWNlRVUlplRTVVUlhoT1ZFVjRUMVp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVNMkNsZG5SRTlEUVdVcmVtZDZkbmcwV25CeVExRmxZMlpIVUVaVU1FMVVaMVl6UXpKc1dUSnVjVmRMUWtKclYwOVVSME5SVVRSUlNsZHRTbFE1WmpJelVEa0tXbmhyVFRKaFJFYzBlamxQU21wbVNIRnViMDV1VkZGRE1HdFlSVUpqZFdWVVluRTVPRWRzVlcxMlIyNVNZelZFYVhkSVFVUlJSMjkwTVRNd1FTc3pVZ293TVRaTlVIWTVhM2R1UTNkdGJGSjJPVmt6ZUZNM1dtTm5UVXhTZVdGSWRIUk9USEJHY2toR1NtSkxSSEEwY0VKWGVHZ3ZVWGhGVTJrelVESXJNelJKQ2pGak9UVTBla0ZDVDBSRFlWVnpjVlFyYkRaTVVFUkhRUzlUYjJ0Nk5tdDRNMmt5UmtGdFJUSnBkRk5pUVVNMlptSTViMDVCYzBaQlZGVlJkSEF5YVZnS2JIZHVTSFpXY1RNM1NEUldXazFxVDFwWlkyaEZZMWh6TWtWQkwySm1ha2RMY3pSeldWUnFkMkl6Y2tWTlJtTnJiekZhYTBWeVUwMXBZekl6UW5rM2NBcElXazFrY2l0dGVIRm5iMkpRTWpVM05WaEtjUzgxTVhCeGF5dG9kME5TUlVaVmFqUm5aMWRzZERGUk9GQnphM0pYUWxjNFlVVk9TMWt6VFRkeFJXdFZDamhDSzFNMWRVSktOWFV4UlRORlJtMUpjRmhTWWpoamFqSXliVk0zY0U5UVJtRnRRbUZ4SzA5SFFURjJZVTFhUlRCdWFubDZXVmx2WkRGaWNYUkRNRTBLUjNOVGRYVlFTUzg0ZFRsMloxSnBiV2RYZEZsdWVrWnNkMmhYU0ZkTlRWaHRkM1Y0T1d4VVMydDJPVTlOUmxCR2NrdFVOSGRZWTJocFVuTkRWRGs0Y2dweWVETnRWVVZ5TlVwblpUQlFNSE5DTW1kMVpubHZTWGhoZWtKbVkyZFNhRUYwTldKd2NFUk9TbTVoVm1GV1kyUjBaa3MxWkhoTVFWSlRibWgyVjNkeUNuaEZMMjFxU1VoeE56UXZiVGRIU0VabGVWcFRha1ZWTjJKTldtMVlUR1F2VDBrdk9Hc3hZamhDUWtKV1pFeDBOSEY2V2xvM1pHeEJZMDAxUW05bU5FRUtjVmxUTTI5RmJEZEpiRXRQWm01a2VXdENXVWgyT0ZGSVZGbDVOVmQyVlZoNlR6QnlTa1JQUTJWUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWQmJUTklXRGhoZEcwME1GRkxiMFJFQ21oNmVqTXJaRmhNTkVOSmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRlExTTVLM1pDTDJnNWJYRndSV0pJVVVkbFNEUkZlSFJ0YzNrS05rY3hTekE1YW5WM01TOUJhWEJKZDA0NWRXUmhVVTVJV0hWWFpYcE5aekp0Y0ZKMFp6SllVVEpvWnl0Uk1FOUtkemd2T0RkM2NtSm9XRXhyUkdrMFJBcDVibGhNWVVka1EySlZibTRySzNsdE5ubFFiVU54VnpkNWIwVlZURTlUVEZSck5rWTBPRXhWVGxSb2FEQkRiekZGYjFWcGRFb3dRMkZOWVZSUmRERXlDamczWmpjd04ybEtNMDAwWldSbVRsaDVhRWxxWlhkV1lWb3JMM0JNYUd0SkwzZExUMkZQV0hOeFJ6azBhSFUxWlVad1kycFJjQzlUUkRGSVFsaFJVelFLTlhCM1RuTk9hbXhKVXpoRlppOUpkMGRWVUVrMWFXd3dTREpQVm5sM2JVSXJPRWd4UWl0TFJrbDZPRUpKZW5WdVQxVk5LME5GTUM5bmVEQjROMk5aUkFvdmFsZEhSMUUxYzFaMlduQTBjMmhUVjNsR2FXVnVhMVpGVDNkNlFXdFBaMHhxZW5vMVpVODNUemNyV1RNMGJrUTRVSFJTYkhac2NsTlpLM2RpUlhFMkNsSXJkalZPWjA5M2VITkxZVGh1ZFUxblJsVk1TSFZ3YTNWM2NHOTNZemx4V1dsTE9FRndTRXRJTlRGNk5VWjNaelkxT0Vvd1NqazJOMGhtWVZwVkwySUtTbGxLWldKSlZUbEhSREZUVWpaNmVrOUhUbWhTVVc5V05uTjFjSEZvZEhsYU1tdGFPR2xNY0hWUGNuVXpUbmhtVVRsNFMyNDRjWFJPVjFOVVoyRkJjd3BXY21Gd1FuVjNibko0YTNsVlNrVTNZazg1YVU5WmJUUTVVa1pGZVZob2NEaDNZbTl0YlU5SFZFaE1WM3B5TW1kcWEzaEhMMVpEYW5SSVMyWnFhbkp6Q25wNVUxa3llRWhMVW1jeWJubHFTV2N4TkhOUWVESlZTa1I2Y0U5V2FFdzRNa1JPWWtGalVtd3lNV1ZHWVdKYU9XaHNja3N3U2tGaU9GRkdNMWwyYm1jS01GVndibmRMVVhWMlJEQjFURXAzWjFWWk5WSlhhelUyZFc5dmIwdzFTRzlCTW1wSk9XcGhTRVJUUVRoSFVqUmhPVmxoTmt4MmRYTlhTRkY2WlhCeE13cHJPVUkxVjBobFZIbHlNMmRMUzNFekNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2RuczdlenR6cXAtNHhuYmV3YW4uaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3R2NG1jb3IKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3R2NG1jb3IKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RrdTRnMjZ6dGphX2NsaWFrc3Rlc3R2NG1jb3IKICBuYW1lOiBjbGlha3N0ZXN0djRtY29yCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdHY0bWNvcgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RrdTRnMjZ6dGphX2NsaWFrc3Rlc3R2NG1jb3IKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJZMmg2ZUVVeVVqZEhVRWxDZEcxRFVESTNWV2N6UkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVlhoTlZGRjRUVlJzWVVaM01IbE9WRUV5VFZSVmVFMVVWWGhOVkd4aFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJMY1ZwME5ITnNia0pxYUhaRGFtMW9Sa3RrWTBNS1kzbG1aMk5CWkhVd1dsQXlXSEl2VDBSVFpVRklTek54ZVUxMlJEZ3JZVFpsU0ZKdldXUnROek54T0ZSb0szWXdXRlZ1YVRNMmMyaG1ZelZhYURaM1V3cDJlak55ZEdaVVUweFNSa2hqUWt4UFZrdGlSWGRyZUVwRWRFazRUbk40YWtkVVNWSjRhbmRIY0VFelkwc3pkbEZ3VFVSWmVXUkxMekZOV0dSMlJWSkZDbXB1TXpsUE9EVm9ZWGQ2WWpGbmJtMUZVRzFKVlVKQ04yWndOMWhCUVd4MlpFMTZSR2RZT0hwU1ltbEVOVzFqT0cxeFJGTnBhVGRQUmpsbFkwTkxRMm9LUW1kdFRUSllSbTFaVVdWWFRqUm5PVGxYUVc5TlRUVkxVMWxHS3pBeE5reExSM0pKTUcxc1NuaFBkMmMxVjJWMVVYTlFNa1oxWjJ4cVQwVTJkVGRpVGdwNWIybzFiRlJUWjNWVVMzVldhamx5ZVhoM2NXaHlOMWhTZDNrck4ycEJTMnd6UWpsTU9HOWlTa2c0YnpoaU5XSXphWFZSY21kTFYwaDZlRkJtZG0xcENpOUNkRWRwU2xvdlYzRnRZa3M1UjI0clRuSkZhemswVFc1UlRVdzJiMVZhTldKcFZGQnFPWGhrVkRCcWQyNVRRbXRuTHpWM0wzaDFaV05FVDFaclVFZ0tkSG80VDJkYVpHbEVVSEpTVWlzemQyODRSRE5QWlhrNGRrVlVObE4wUkRoYVREUXJSMGR6YkdOeE1rWnhkVGhQV1d4U1NucHZTMGhhVTBSa1ptSTBVUXBPU3pZNVIwVkplVEZPTVZwUGN6Sk1VV2RQYldGT2RWUm5Nbkp3Uldwck5XZFdiV0YzU214R01GaFdNVmRIZDI1d1IwNXdZMXA1ZDJwUmREZHRUMGxYQ210VmVrczFWWEJrUW1aQ01HcFlNaXM1TkRob1IyNUxNbm94UzJseVVETnRaV1JFZVZOemFYRldNVXRyYzBWVFoySmFkMmxzZFU5RllWb3dURGxHUXk4S1luWkJUR2s0TkhjNU1VaEtaSEZtU1V4dk1VTlBkR2RUTVZCdk1WZDVOR2RRVjBkaGFFZHNRa3N6TTFObmMyWnJlR0ZRY0UwdksyMUtSR1pYV0dkV05BcGlkMUk0U2l0SksyVmFOV05vWjI5aVRXbE1WamRSU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEZEWW1Oa1puaHhNbUlLYWxKQmNXZE5UMGhRVUdZMU1XTjJaMGxxUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZpZVhkNFNHRk9NR0pSUTIxWVIwdDFiVzEzYmdwbFRtOWhVMFk1UTBoSFlVVnJNVFp3VTJ4NFMwTXlhV1pOWTFWcVluRlFRM3B5U1hkQ1ZrMUJha0ZVWkZwRFlURlNiVzU1TWl0V2FVVmtOMW96ZWtGM0NqWXphVUo1Um1oM01YUktRblpOV1ZoVFExQTBaRFJOY2xKT2JVZHZOMVpTZVdONGRrdHBXRmRrTnpWM2RWZFpSakZsUTNZMVZuTnpOVE5ITTJkaGQySUtWSFl5U2pWWlRERnBkRGM0YW5ncmJrUktkM05PVUVNNGFsQnBiVTgzUTJSVWRrdzJXVzkyZDFJNFZqUlBRM05rT1ZabmJFNVFPRTl6YTBGWmNFcFVlZ3BhVTBwa2NDdHNaemxhZVVwRlRtOUhRbTlVZWtvNU5ITmpjRWxTTlhsUE1WZHFPVGhHZWs1WVIzTlhiM0ZETkVGUmQxQkhaV3N6T1RKMlRUTkZjV1pTQ2xSaVFUSTBXVWxGUzJOME5UUnRlRzFMV1d0eVpIUnNhVWN5Tm1KVk1EQk1jelZuTmpRMlUzcFlXbEJDVERCblNFRk9PV2c1TkV0M1FWUTRNazl1VEdvS2NIQlRLMnRsVjFGbVRqTkNaV015UXk5b1JIcFhaRXA2UmtwSE4wTmtWWGQ0U1VndmRHRmlabFlyVHpBeVV6TnlNekpEUjIxSlFVbFJjVTh4WTA5V01ncG5XSGxpWlc0M2NUTm5VbWxCUTFKdWNuUTRjM3BTZW10MlYyODJTMVpZWmtNeVYxbFpUR2M0YTFabFZqQkhNamgxWjJGSlNIUkVVRmtyWTJGSWJqRjJDazQzY2t0RllWZENaR3BCZFRFdk4wOUNVa1Z4TTNwQmRreE5jVTkzWWxrMVVFa3JTSGhMTDBaT2JqSkJjVFJPWVhKRlZXeG1VRzR3YWtGUmNVdFZVaklLWjBOd1YyNHlkSEY1YkhSS1VVWm5iSEp0ZFhCMk5sZHRSWGRKUlVGdWJqVm1TbmhtU0dSMWJFRnlaRmQyV1hSRGJVSklUWFV2UnpGMWIzVnlLM0oxU0FwcUwwOUhNRzkzSzFsWE0yTkhZMk42WWxSNWMzZDFSakpUZG5sbll6ZGpiVzlrUWtocGEySkZNRzltY1VOUGEzUkpZVUpCYkZacEwzWTRVRXRRV2xaeENucEpabTkwVTJwUE9YaHhWMlY0YUc5RVVrUlBkR2RqUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTbmRKUWtGQlMwTkJaMFZCZVhGdFltVk1TbHAzV1RSaWQyODFiMUpUYmxoQmJrMXVORWhCU0dKMFIxUTViRFl2ZW1jd2JtZENlWFEyYzJwTUNuY3ZVRzExYm1nd1lVZElXblU1Tm5aRk5HWnlPVVl4U2pSMEszSkpXRE5QVjFsbGMwVnlPRGsyTjFnd01Ha3dVbEl6UVZONmJGTnRlRTFLVFZOUk4xTUtVRVJpVFZsNGEzbEZZMWs0UW5GUlRqTkRkRGN3UzFSQk1rMXVVM1k1VkVZelluaEZVa2sxT1M5VWRrOVpWM05OTWpsWlNqVm9SRFZwUmtGUlpUTTJaUW94ZDBGS1lqTlVUWGMwUmk5Tk1GYzBaeXRhYmxCS2NXY3diMjkxZW1obVdHNUJhV2R2ZDFsS2FrNXNlRnB0UlVoc2FtVkpVR1pXWjB0RVJFOVRhMjFDQ21aMFRtVnBlV2h4ZVU1S2NGTmpWSE5KVDFadWNtdE1SRGxvWW05S1dYcG9UM0oxTW5wamNVa3JXbFV3YjB4cmVYSnNXUzloT0hOalMyOWhLekV3WTAwS2RuVTBkME53WkhkbVV5OUxSM2xTTDB0UVJ5dFhPVFJ5YTBzMFEyeG9PRGhVTXpjMWIzWjNZbEp2YVZkbU1YRndiWGwyVW5BdmFtRjRTbEJsUkVvd1JBcERLM0ZHUjJWWE5HdDZOQzlqV0ZVNVNUaEtNR2RhU1ZBclkxQTRZbTV1UVhwc1drUjROMk12Ukc5SFdGbG5lall3VldaME9FdFFRVGw2Ym5OMlRIaEZDaXRyY2xFdlIxTXJVR2hvY2twWVMzUm9ZWEoyUkcxS1ZWTmpOa05vTWxWbk0xZ3lLMFZFVTNWMlVtaERUWFJVWkZkVWNrNXBNRWxFY0cxcVltczBUbkVLTmxKSk5VOVpSbHB0YzBOYVVtUkdNV1JXYUhOS05sSnFZVmhIWTNOSk1FeGxOV3BwUm5CR1RYbDFWa3RZVVZoM1pFa3hPWFoyWlZCSlVuQjVkSE01VXdwdmNYbzVOVzV1VVRocmNrbHhiR1JUY0V4Q1JXOUhNbU5KY0dKcWFFZHRaRU12VWxGMk1qZDNRelIyVDAxUVpGSjVXR0Z1ZVVNMlRsRnFjbGxGZEZRMkNrNVdjM1ZKUkRGb2JXOVNjRkZUZERrd2IweElOVTFYYWpaVVVDOXdhVkV6TVd3MFJtVkhPRVZtUTJacFVHNXRaVmhKV1V0SGVrbHBNV1V3UTBGM1JVRUtRVkZMUTBGblFrVTVXV3gwWmtkTFIwNW1SRVZPZFdwTUx5OTViRmhOU0VrMFRsaHRiek5IVW1RMVVWVmlUekYyTjJ4S1VHWmFkVFJTV201U1FWbFBOZ3B6VUVWQ2RVUm5hV3RVUmpoeFVFZHVVRk40YURkUmFqRTVaa0ppVVVzck1VMVBhbkJUTWxOQ2VHMVVabmxJV1cxd1YyRkllRmc1VERsbGJDdElkV2x0Q20wMmJEVkxVVVlyVmxZeVFVWlZPVFZrVGswNVlYY3dXVGhwVEZsdlVsQkdkM292Y1dKb05td3ZlVXhJU1dsbFIyUndabXhNWVZOdGVTdENjVU5JYUZVS1dHaEJSMUpyWTA5MWNYVlBUalU1V21oTFQwRm9VMUpqWkRaTlVsWmtRMU5IVEhNMVpIWkxOVGR3VG5oWlltdHBZemxxT1Rsb01GZEtjRFJhUVRsMWVRcEZZMkUxZWpCUU5YWmFWMVlyYVc1eU5YTmtMMWd6ZVZWSE5rOU5VM053Y0VGd1ozaDVSa3Q1WkRZMlJUUXdkbTFRU1hSaVpsWlhZemhxWkhWdmVrVnVDbkE0WkVKcVVqSnVkRkJ3ZEVWRFFVdDZkWE5oV1dVMlNISnNSVXQ0U3paNE5IZFhhRGhpSzNVNWExUkdhWGxVZWtkUFFrVjJWbkpyVldZMFlYRXlZbE1LVFRKRGVIZHlRV3B4WkZsVmNsaEtjVzF2VWtoRVVHUjNkRlZMVDJOS2JteFVXRTB3V21Rd2JVTkxla0ZhTURKNk1TdFBhelZWYWtrclNXbGhlRmh0UndwbmVrWlJhekJhVEdobmJURnBkMjE0ZEVKNE9IRjRjMk5oTUZjMmF6QmpkR2xUTVVkblNIRldUVFJtU1hWdFZFZFBTVGhMTlZSMWQwbDBSemM1TkRoekNqRk9ibmRpTURobE1WTmpPVlJhYzIwMmNVeHpjMlZ3TmxBeFJqVlBXbmN3YzBaU1pXUXpTVlUyZGxvd1NtOVNOa05YZFZGaFpESkpWR1pWTkVrMFZEQUtPSHBVV1hVMlFWcHpaVTFpTkc1R1QxQnNNWEozTUVrcmRWZFdjbEp5V25OMVRsQnJVVGhUV1VwUlRtcGlZVXBrUWtwd1dUbHBXSE4xVGxSUmFrZzBZZ3BtVURBek5WcHBUekpVY1dNM1FYVnFWaTlUTVUwd015OU1ORVpJVG5GUVQySm1UMWxHVVhCblpuZGpkRWszZUVKRlVVdERRVkZGUVhwcVRrSjZSVU5aQ21wWVZWQlpSWFYxUzNkS04wSllSSEZ3UjI5RmRFUTFXVXhDU0doWWNHWjRVRzFRZEdsTFYwWldNSFZLYUhSRlNrdDJjRGhPUWk4NE5EQmtSbGRJWmxvS1FYRmpiMkZ5YVhOV1JtNXBTRm94UldjdlpFOXViRTFQVjNWVlJXUnRZekJpU0RJeGRrUnBVMk0xVkhkMU9VUmtNMFpzTHpGSk1tZHhhV3RHTkdRdlRRbzJkbEZsWkV4MlRFSkpkRVVyWmlzek1EVkhUbU14WTI5NGVVZExSR1puTnpNNE9ESXlUME5IU0RscWRDOTFUR1kzY2xoTU5sTXdlVVZCTTJaNlR6aDZDbU5QU0RNNFkyUmliRGRzU21KS09XaERNVmxuVlZJeFprMWlMM0Z2YTFOeWVHazJOMkZCTWxsMmVXaGFWbk5UVTJOM01HeDNZV1V2TTBKemRDOHZhamdLTm05V1pIbFVORXhWUmpsb2JEVlZOWGxLWjFjMFJ6QjBWRmQyV0hSMFkzcGhiMnN4YTFwS01VRk5WalZhTVhBeFpXbFRlbnBDYjJwVlVtWXJReTh4YUFwMGEwUnFURFpET0RrcldtSjNkMHREUVZGRlFTczFkV2RFTldVNVNGTXlUelZUV1RobGRHTlNWa2xsUldsdmFWSTBUWEo2V2tndmNuRlRhM0E0UjB4NENsVjJLMG92VDBSdldtbFNlSEJWTTFCT1dqUXpZamxDY0ZCcFdEbElTekF2TURKVmVIUnNVbUpqVFRkTVpHWXZibEYzYzAxUGNpOUtUblJrSzJsdFlTc0tNa3d2VUdZd1QybENTalJZWlVWQldERm9URmh5UzNGSmJXRjZkSGhOZFRZMlVVTnhabk4yVUVWeE9IWlhWVXd3TTNSUVFXOVNlSEV4YTJKTE4yRnFWd3BSYVVOdlNIUk5WRWRXYVVaQ2NGTTNVMGxrTkRSWE5HdHNTR0UyVlcxMmFEVlBiemwzVm5oV1ltZ3pObXBoTHpkc00xbzJSRVoyWm1Wb00xUkllbEkxQ2taQ1dtTmlhalZWUW1KamEzQnVVM2hPWnpVME5VRnpUMmRVWm5Fd1FXMVhRM1F3TkZCalRUUTRPQ3RUYW01NFEyeG9jV1JFWVU5dlZWZFhUVTl4VEhFS05VbFRja3RJV1dSbFNWWkVWSEpTWmk5cFZrMUlhRFZzUWtaQ2RHbG9UbGgwVjBKa2MwWTNZMnAzUzBOQlVVSjZUbmR4T1RSU05HTmtSbk54UjBRNWVRcFJjMjFSYVdJMWFVeGxZMEVyTlVSNU1YVTNVbXg0Tm5sSFRUTm9kVE5NWkVONFZVZEpiMm96TTJONFIzQTVWRFl2V21wUGVsQkRVak5sY210aWRHNUVDbkpDUmk5TlNpOVlRMUJ0UWpFM1F5dHplR0ZwVUdod05YZEhaM0ZwYjFkNVZsaGxTbmxxVVdSaGJHcFdORWRxTUdrd1YwSktlbUowTVZsbGNTOUVPVGtLUVRSRFFVaENWMUF2ZEZaR2NrWTNXbTVZUkhoVE1VaFNVbGw0UlRsSVpXUkdaVFIwY2tsRmNHUmhWa0pZWjB0TFJ5dGhRVTFQZGxOWFJVUmtaRTlLUmdwNllqaHpSbGxZTkN0d0wwZEZlRFZqZDNaeFRYWnpaMjlVV0ZwcWRIRXdlSEZ2TnpSMk5DdEJMemhwYjBFeE5XUXdNRmxLYzBGMFNqQXdiRXhMUVV4VkNsaDFZems1Y1VNMU5UbHNiMlo2YUM4clVrVnZWbVZwYUhvMVkwTkNkelptV25KbWJVOTRTa2hPU0dwUFVUVkRWMUZGZVhkVlJqQnVieXQzVG1OalowVUtNRVU1V0VGdlNVSkJRVEkzYXpoUWJVY3dkRkphYTBFMWEzZHNPVmhhVUVsb1kwcDBOamxDYVVreVEzb3pjUzkyT0VSelVHMHlOVlpTYW01SlMwMWpVd3BpUTFkRGJISkhkR1puWTJKVUwwMHhZbHBuTkVkSmFUUlBSSFJyV2xVeFJqZEVURE5yWVRkSFJuQm1TMU5tWnpGVlRraE1RVGxYWlhWdWRVOTJTRkZYQ2tWT0wyVldOall5Wm5CRlRrTmpSMmhtTmxSRVNHVlBSSGh6Y0NzME1FWTBNRVpRUmpWTmJWbHplVmhaUVVScVRIbHNNbTlZYmtacWFVOXRUbmxpWjFRS1ltTmtURXhQUjNKcGVuZzJialJLS3pkSVNqbE5kVzlyYjNSUkx6ZDFXRUYxZVVWeGJuTm1TV3B4WWtsRFR6SkpXRlJMVWpCYU16UkVibXg0TmpOSldRcGhaV0YyTjJSQmRXZEJhWEZXWkU1V2MzWndRakkySzJsSVYxTTFiVUV3ZFc5cFoyMTJhR1ZzVVdwamVGaEpiRGg1YldWVk5YTTRjMDF2T1ZaNWQzWTVDamhuZFVWeGMzbGlVMjlzUjFSWGMzSXpTalo0Y1ZwTVluWkxSbGwyUWpoRFoyZEZRVnB4YUdGWEsxcDFla3R3Y3psb01FVTJVMlZzZFdndlRtVnBMMllLUkdScmVYZEZZWEZ4Y1ZkTWIxcFZNR05VVGpOR2NXbFpPRGxsTlZoYVduUlhlSEoyV21kUmJrWmxkM1pOYVdad1EwZzJPRXB4TTNJeE5IZENRa3RRWWdveWVYTnRjaTl5VmxKVU1EZEVSRkV3UkUxQmNFSmFVRmx2TTFweFZXWlNiMmc1Um5wVFVUbFhTM281WmtFck5WTjVSVUZSTmxOd05VRjFNMUI2TVZWNENrNVRRV2hDVURSTUsxaGxWME5RZWxrMEsxYzJjblJQUm1kcGEwOWplbWh4VUhOeVFYUjZlREU1VmpGNFZURm1LM0ZYZFhWTE9IbHZLMkkyVEZadUszZ0tjVmxHTlRCaE5FSXpZbll3VVV4QlRXUkJRMWR1Uld4aU0yMXFVMWRIWkZsT1JHbHhSRlYxY214Q1ZtdHZSRVp6WjNWRFdIcHpPSGRrV0RJdmJHbERWUXBMVGxacFFXZzNUbHBLZGxwblFTdGxiVFE1VUZvM2VrNXlTRVF5ZUhReldWcGhPRFZCTUhZelZtaDBZa1JYUWxsSlYzZzJXVnBaTmtwQlBUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogeHhjNzF6bmFmbGZxZTVqODJ4bDc5ZjZmNnVuNXNhdXc3dWZwdGVieWxpZHB1bnd3ZWwxcWd6M2ZlOGpjZHVlY2psMWRiNjRleWpyazRpamxnNnp5OTYxdWRxanFwMXU3dGt6dGQyYzNvdXdpdGZocjFkOGNwNmc5Mjgybmc4OHAK\"\ + \n }\n ]\n }" headers: cache-control: - no-cache @@ -1215,7 +1130,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:56:38 GMT + - Thu, 15 Jun 2023 12:21:06 GMT expires: - '-1' pragma: @@ -1249,61 +1164,62 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.10\",\n \"currentKubernetesVersion\": \"1.24.10\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-er49d7c1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-er49d7c1.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.10\",\n \"currentOrchestratorVersion\": - \"1.24.10\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.22.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\": - {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-4xnbewan.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-4xnbewan.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\"\ + : {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.network/publicipprefixes/cliaksslbipp1000002\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3867' + - '3862' content-type: - application/json date: - - Mon, 10 Apr 2023 02:56:40 GMT + - Thu, 15 Jun 2023 12:21:08 GMT expires: - '-1' pragma: @@ -1323,24 +1239,23 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "properties": - {"kubernetesVersion": "1.24.10", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": + {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": - "System", "orchestratorVersion": "1.24.10", "upgradeSettings": {}, "powerState": + "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"outboundIPPrefixes": {"publicIPPrefixes": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002"}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"outboundIPPrefixes": {"publicIPPrefixes": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003"}]}, - "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002"}], + "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.network/publicipprefixes/cliaksslbipp1000002"}], "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, "workloadAutoScalerProfile": @@ -1355,70 +1270,71 @@ interactions: Connection: - keep-alive Content-Length: - - '2734' + - '2732' Content-Type: - application/json ParameterSetName: - -g -n --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.10\",\n \"currentKubernetesVersion\": \"1.24.10\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-er49d7c1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-er49d7c1.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.10\",\n \"currentOrchestratorVersion\": - \"1.24.10\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.22.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\": - {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-4xnbewan.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-4xnbewan.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\"\ + : {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.network/publicipprefixes/cliaksslbipp1000002\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/541122a7-d4d6-4ded-a7b2-5188e90280e1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae6c6767-2b19-4941-85b7-15f5dde973d7?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4046' + - '4041' content-type: - application/json date: - - Mon, 10 Apr 2023 02:56:47 GMT + - Thu, 15 Jun 2023 12:21:15 GMT expires: - '-1' pragma: @@ -1452,14 +1368,62 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae6c6767-2b19-4941-85b7-15f5dde973d7?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"67676cae-192b-4149-85b7-15f5dde973d7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:21:15.0852552Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 12:21:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - -g -n --load-balancer-outbound-ip-prefixes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/541122a7-d4d6-4ded-a7b2-5188e90280e1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae6c6767-2b19-4941-85b7-15f5dde973d7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a7221154-d6d4-ed4d-a7b2-5188e90280e1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:56:45.5807187Z\"\n }" + string: "{\n \"name\": \"67676cae-192b-4149-85b7-15f5dde973d7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:21:15.0852552Z\"\n }" headers: cache-control: - no-cache @@ -1468,7 +1432,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:57:17 GMT + - Thu, 15 Jun 2023 12:21:46 GMT expires: - '-1' pragma: @@ -1500,14 +1464,14 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/541122a7-d4d6-4ded-a7b2-5188e90280e1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae6c6767-2b19-4941-85b7-15f5dde973d7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a7221154-d6d4-ed4d-a7b2-5188e90280e1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:56:45.5807187Z\"\n }" + string: "{\n \"name\": \"67676cae-192b-4149-85b7-15f5dde973d7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:21:15.0852552Z\"\n }" headers: cache-control: - no-cache @@ -1516,7 +1480,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:57:48 GMT + - Thu, 15 Jun 2023 12:22:15 GMT expires: - '-1' pragma: @@ -1548,15 +1512,15 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/541122a7-d4d6-4ded-a7b2-5188e90280e1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ae6c6767-2b19-4941-85b7-15f5dde973d7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a7221154-d6d4-ed4d-a7b2-5188e90280e1\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-04-10T02:56:45.5807187Z\",\n \"endTime\": - \"2023-04-10T02:58:09.3600135Z\"\n }" + string: "{\n \"name\": \"67676cae-192b-4149-85b7-15f5dde973d7\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T12:21:15.0852552Z\",\n \"\ + endTime\": \"2023-06-15T12:22:44.1385495Z\"\n }" headers: cache-control: - no-cache @@ -1565,7 +1529,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:58:18 GMT + - Thu, 15 Jun 2023 12:22:46 GMT expires: - '-1' pragma: @@ -1597,63 +1561,64 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.10\",\n \"currentKubernetesVersion\": \"1.24.10\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-er49d7c1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-er49d7c1.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.10\",\n \"currentOrchestratorVersion\": - \"1.24.10\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.22.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\": - {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-4xnbewan.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-4xnbewan.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\"\ + : {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.network/publicipprefixes/cliaksslbipp1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.network/publicipprefixes/cliaksslbipp2000003\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4226' + - '4221' content-type: - application/json date: - - Mon, 10 Apr 2023 02:58:19 GMT + - Thu, 15 Jun 2023 12:22:47 GMT expires: - '-1' pragma: @@ -1685,63 +1650,64 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.10\",\n \"currentKubernetesVersion\": \"1.24.10\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-er49d7c1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-er49d7c1.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.10\",\n \"currentOrchestratorVersion\": - \"1.24.10\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.22.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\": - {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-4xnbewan.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-4xnbewan.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\"\ + : {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.network/publicipprefixes/cliaksslbipp1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.network/publicipprefixes/cliaksslbipp2000003\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4226' + - '4221' content-type: - application/json date: - - Mon, 10 Apr 2023 02:58:22 GMT + - Thu, 15 Jun 2023 12:22:49 GMT expires: - '-1' pragma: @@ -1775,8 +1741,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -1784,17 +1750,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bbe08e5c-e765-4696-934c-49cc3d908edd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9f31bacb-cea3-48e3-95a7-6cec01e43122?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Mon, 10 Apr 2023 02:58:23 GMT + - Thu, 15 Jun 2023 12:22:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/bbe08e5c-e765-4696-934c-49cc3d908edd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/9f31bacb-cea3-48e3-95a7-6cec01e43122?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_prefixes_then_update_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_prefixes_then_update_msi.yaml old mode 100755 new mode 100644 index b5b53752f04..18933844d85 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_prefixes_then_update_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_prefixes_then_update_msi.yaml @@ -18,24 +18,24 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.47.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.1 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002?api-version=2022-09-01 response: body: - string: "{\r\n \"name\": \"cliaksslbipp1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\",\r\n - \ \"etag\": \"W/\\\"ae20e7e9-5f4f-4944-a154-ac80de97de8b\\\"\",\r\n \"type\": - \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"westus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"89c4089d-a57f-4c65-8f3f-3c3b31e3f12a\",\r\n \"prefixLength\": 29,\r\n - \ \"publicIPAddressVersion\": \"IPv4\",\r\n \"ipTags\": []\r\n },\r\n - \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n - \ }\r\n}" + string: "{\r\n \"name\": \"cliaksslbipp1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\ + ,\r\n \"etag\": \"W/\\\"fa951d84-1042-4156-a061-d320bc2a8b6d\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"\ + westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"resourceGuid\": \"2757f292-e359-4b83-bbd5-79b512df6f3e\",\r\n \ + \ \"prefixLength\": 29,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n\ + \ \"ipTags\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\"\ + ,\r\n \"tier\": \"Regional\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fd152af7-790e-4319-9c7d-fef2cd10cfd0?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5d460f13-f530-4344-86cb-b1fd7f428f68?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -43,7 +43,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Apr 2023 02:52:17 GMT + - Thu, 15 Jun 2023 12:22:59 GMT expires: - '-1' pragma: @@ -56,7 +56,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ceafade4-4b35-45a5-9a58-868db61d317f + - 05411ae5-e9e2-4ef4-bca0-20ad036b9f5b x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -76,9 +76,9 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.47.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.1 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fd152af7-790e-4319-9c7d-fef2cd10cfd0?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5d460f13-f530-4344-86cb-b1fd7f428f68?api-version=2022-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -90,7 +90,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Apr 2023 02:52:21 GMT + - Thu, 15 Jun 2023 12:22:59 GMT expires: - '-1' pragma: @@ -107,7 +107,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fb37dd20-3d85-45d8-9a72-f6a43360512b + - c4919099-d5a8-45b1-9504-f683d8c8f3e1 status: code: 200 message: OK @@ -125,30 +125,31 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.47.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.1 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002?api-version=2022-09-01 response: body: - string: "{\r\n \"name\": \"cliaksslbipp1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\",\r\n - \ \"etag\": \"W/\\\"d0cad1d8-02b5-4d02-b74e-26662e8a4af4\\\"\",\r\n \"type\": - \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"westus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"89c4089d-a57f-4c65-8f3f-3c3b31e3f12a\",\r\n \"prefixLength\": 29,\r\n - \ \"publicIPAddressVersion\": \"IPv4\",\r\n \"ipPrefix\": \"4.155.217.112/29\",\r\n - \ \"ipTags\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n - \ \"tier\": \"Regional\"\r\n }\r\n}" + string: "{\r\n \"name\": \"cliaksslbipp1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\ + ,\r\n \"etag\": \"W/\\\"2a6f769b-7368-480a-a3ed-604900a17318\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"\ + westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"resourceGuid\": \"2757f292-e359-4b83-bbd5-79b512df6f3e\",\r\n \ + \ \"prefixLength\": 29,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n\ + \ \"ipPrefix\": \"4.154.108.80/29\",\r\n \"ipTags\": []\r\n },\r\n\ + \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ + \r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '638' + - '637' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Apr 2023 02:52:21 GMT + - Thu, 15 Jun 2023 12:22:59 GMT etag: - - W/"d0cad1d8-02b5-4d02-b74e-26662e8a4af4" + - W/"2a6f769b-7368-480a-a3ed-604900a17318" expires: - '-1' pragma: @@ -165,7 +166,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2115d6a4-2a54-4d10-b910-e76cdd4e1ed5 + - 24d6b522-2668-4990-83ca-4ef378f7a875 status: code: 200 message: OK @@ -188,24 +189,24 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.47.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.1 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003?api-version=2022-09-01 response: body: - string: "{\r\n \"name\": \"cliaksslbipp2000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003\",\r\n - \ \"etag\": \"W/\\\"36530d3d-4aae-4a50-8883-f7e27864cbc8\\\"\",\r\n \"type\": - \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"westus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"d21f0621-cf6d-4037-906f-17e62b6d89cd\",\r\n \"prefixLength\": 29,\r\n - \ \"publicIPAddressVersion\": \"IPv4\",\r\n \"ipTags\": []\r\n },\r\n - \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n - \ }\r\n}" + string: "{\r\n \"name\": \"cliaksslbipp2000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003\"\ + ,\r\n \"etag\": \"W/\\\"caf16298-502a-4e93-b700-bc5fae4e05b5\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"\ + westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ + ,\r\n \"resourceGuid\": \"53b75440-cc68-45de-bd65-09f3edfdcec5\",\r\n \ + \ \"prefixLength\": 29,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n\ + \ \"ipTags\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\"\ + ,\r\n \"tier\": \"Regional\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/922a1532-b983-44ef-bd5c-e3037e2f10a9?api-version=2022-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d793245e-9126-44f3-be20-701955df793f?api-version=2022-09-01 cache-control: - no-cache content-length: @@ -213,7 +214,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Apr 2023 02:52:28 GMT + - Thu, 15 Jun 2023 12:23:05 GMT expires: - '-1' pragma: @@ -226,9 +227,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fedfba8c-e720-4583-9207-242dbfafc28f + - 106c6c9a-92dd-4cad-8353-9db5d43fd266 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -246,9 +247,9 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.47.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.1 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/922a1532-b983-44ef-bd5c-e3037e2f10a9?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d793245e-9126-44f3-be20-701955df793f?api-version=2022-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -260,7 +261,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Apr 2023 02:52:31 GMT + - Thu, 15 Jun 2023 12:23:05 GMT expires: - '-1' pragma: @@ -277,7 +278,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e7e5ff39-efa1-4d79-ad32-1f5259432317 + - a37fab36-0d67-4856-bebf-955fda0f5e73 status: code: 200 message: OK @@ -295,30 +296,31 @@ interactions: ParameterSetName: - -g -n --location --length User-Agent: - - AZURECLI/2.47.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.1 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003?api-version=2022-09-01 response: body: - string: "{\r\n \"name\": \"cliaksslbipp2000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003\",\r\n - \ \"etag\": \"W/\\\"88e46554-68a4-461d-b66c-c2f663f25f52\\\"\",\r\n \"type\": - \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"westus2\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"d21f0621-cf6d-4037-906f-17e62b6d89cd\",\r\n \"prefixLength\": 29,\r\n - \ \"publicIPAddressVersion\": \"IPv4\",\r\n \"ipPrefix\": \"20.3.95.152/29\",\r\n - \ \"ipTags\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n - \ \"tier\": \"Regional\"\r\n }\r\n}" + string: "{\r\n \"name\": \"cliaksslbipp2000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003\"\ + ,\r\n \"etag\": \"W/\\\"7ebc644f-42b0-4a6a-a205-215f8d7acc54\\\"\",\r\n \ + \ \"type\": \"Microsoft.Network/publicIPPrefixes\",\r\n \"location\": \"\ + westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ + ,\r\n \"resourceGuid\": \"53b75440-cc68-45de-bd65-09f3edfdcec5\",\r\n \ + \ \"prefixLength\": 29,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n\ + \ \"ipPrefix\": \"4.154.109.16/29\",\r\n \"ipTags\": []\r\n },\r\n\ + \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ + \r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '636' + - '637' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Apr 2023 02:52:32 GMT + - Thu, 15 Jun 2023 12:23:05 GMT etag: - - W/"88e46554-68a4-461d-b66c-c2f663f25f52" + - W/"7ebc644f-42b0-4a6a-a205-215f8d7acc54" expires: - '-1' pragma: @@ -335,7 +337,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c5c2a018-cc83-46ac-94e2-1652dfdbd7d1 + - 063e4af2-079d-4ba3-acae-dfbeed66fd85 status: code: 200 message: OK @@ -354,8 +356,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -371,7 +373,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Apr 2023 02:52:32 GMT + - Thu, 15 Jun 2023 12:23:05 GMT expires: - '-1' pragma: @@ -397,9 +399,9 @@ interactions: "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPPrefixes": - {"publicIPPrefixes": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002"}]}, + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard", "loadBalancerProfile": {"outboundIPPrefixes": {"publicIPPrefixes": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002"}]}, "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30}}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: @@ -412,69 +414,71 @@ interactions: Connection: - keep-alive Content-Length: - - '2054' + - '2017' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.10\",\n \"currentKubernetesVersion\": \"1.24.10\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-jz2791nb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-jz2791nb.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.10\",\n \"currentOrchestratorVersion\": - \"1.24.10\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.22.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\": - {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ }\n ]\n },\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-p1gj29ir.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-p1gj29ir.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\"\ + : {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\ + \n }\n ]\n },\n \"allocatedOutboundPorts\": 0,\n \"\ + idleTimeoutInMinutes\": 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n\ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/893b6f55-a101-4cda-9d11-e4b7edae42cc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07765cee-87a2-42a6-87d2-242f8646ebcb?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3810' + - '3805' content-type: - application/json date: - - Mon, 10 Apr 2023 02:52:46 GMT + - Thu, 15 Jun 2023 12:23:14 GMT expires: - '-1' pragma: @@ -486,7 +490,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -505,63 +509,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/893b6f55-a101-4cda-9d11-e4b7edae42cc?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"556f3b89-01a1-da4c-9d11-e4b7edae42cc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:52:45.4850019Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Mon, 10 Apr 2023 02:53:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes - User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/893b6f55-a101-4cda-9d11-e4b7edae42cc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07765cee-87a2-42a6-87d2-242f8646ebcb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"556f3b89-01a1-da4c-9d11-e4b7edae42cc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:52:45.4850019Z\"\n }" + string: "{\n \"name\": \"ee5c7607-a287-a642-87d2-242f8646ebcb\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:23:13.5698704Z\"\n }" headers: cache-control: - no-cache @@ -570,7 +525,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:53:47 GMT + - Thu, 15 Jun 2023 12:23:14 GMT expires: - '-1' pragma: @@ -603,14 +558,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/893b6f55-a101-4cda-9d11-e4b7edae42cc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07765cee-87a2-42a6-87d2-242f8646ebcb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"556f3b89-01a1-da4c-9d11-e4b7edae42cc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:52:45.4850019Z\"\n }" + string: "{\n \"name\": \"ee5c7607-a287-a642-87d2-242f8646ebcb\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:23:13.5698704Z\"\n }" headers: cache-control: - no-cache @@ -619,7 +574,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:54:17 GMT + - Thu, 15 Jun 2023 12:23:44 GMT expires: - '-1' pragma: @@ -652,14 +607,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/893b6f55-a101-4cda-9d11-e4b7edae42cc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07765cee-87a2-42a6-87d2-242f8646ebcb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"556f3b89-01a1-da4c-9d11-e4b7edae42cc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:52:45.4850019Z\"\n }" + string: "{\n \"name\": \"ee5c7607-a287-a642-87d2-242f8646ebcb\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:23:13.5698704Z\"\n }" headers: cache-control: - no-cache @@ -668,7 +623,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:54:47 GMT + - Thu, 15 Jun 2023 12:24:14 GMT expires: - '-1' pragma: @@ -701,14 +656,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/893b6f55-a101-4cda-9d11-e4b7edae42cc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07765cee-87a2-42a6-87d2-242f8646ebcb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"556f3b89-01a1-da4c-9d11-e4b7edae42cc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:52:45.4850019Z\"\n }" + string: "{\n \"name\": \"ee5c7607-a287-a642-87d2-242f8646ebcb\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:23:13.5698704Z\"\n }" headers: cache-control: - no-cache @@ -717,7 +672,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:55:18 GMT + - Thu, 15 Jun 2023 12:24:45 GMT expires: - '-1' pragma: @@ -750,14 +705,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/893b6f55-a101-4cda-9d11-e4b7edae42cc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07765cee-87a2-42a6-87d2-242f8646ebcb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"556f3b89-01a1-da4c-9d11-e4b7edae42cc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:52:45.4850019Z\"\n }" + string: "{\n \"name\": \"ee5c7607-a287-a642-87d2-242f8646ebcb\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:23:13.5698704Z\"\n }" headers: cache-control: - no-cache @@ -766,7 +721,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:55:48 GMT + - Thu, 15 Jun 2023 12:25:15 GMT expires: - '-1' pragma: @@ -799,14 +754,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/893b6f55-a101-4cda-9d11-e4b7edae42cc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07765cee-87a2-42a6-87d2-242f8646ebcb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"556f3b89-01a1-da4c-9d11-e4b7edae42cc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:52:45.4850019Z\"\n }" + string: "{\n \"name\": \"ee5c7607-a287-a642-87d2-242f8646ebcb\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:23:13.5698704Z\"\n }" headers: cache-control: - no-cache @@ -815,7 +770,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:56:19 GMT + - Thu, 15 Jun 2023 12:25:44 GMT expires: - '-1' pragma: @@ -848,14 +803,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/893b6f55-a101-4cda-9d11-e4b7edae42cc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07765cee-87a2-42a6-87d2-242f8646ebcb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"556f3b89-01a1-da4c-9d11-e4b7edae42cc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:52:45.4850019Z\"\n }" + string: "{\n \"name\": \"ee5c7607-a287-a642-87d2-242f8646ebcb\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:23:13.5698704Z\"\n }" headers: cache-control: - no-cache @@ -864,7 +819,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:56:48 GMT + - Thu, 15 Jun 2023 12:26:14 GMT expires: - '-1' pragma: @@ -897,15 +852,15 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/893b6f55-a101-4cda-9d11-e4b7edae42cc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/07765cee-87a2-42a6-87d2-242f8646ebcb?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"556f3b89-01a1-da4c-9d11-e4b7edae42cc\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-04-10T02:52:45.4850019Z\",\n \"endTime\": - \"2023-04-10T02:56:55.6689916Z\"\n }" + string: "{\n \"name\": \"ee5c7607-a287-a642-87d2-242f8646ebcb\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T12:23:13.5698704Z\",\n \"\ + endTime\": \"2023-06-15T12:26:15.6960307Z\"\n }" headers: cache-control: - no-cache @@ -914,7 +869,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:57:19 GMT + - Thu, 15 Jun 2023 12:26:45 GMT expires: - '-1' pragma: @@ -947,65 +902,67 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.10\",\n \"currentKubernetesVersion\": \"1.24.10\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-jz2791nb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-jz2791nb.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.10\",\n \"currentOrchestratorVersion\": - \"1.24.10\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.22.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\": - {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-p1gj29ir.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-p1gj29ir.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\"\ + : {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.network/publicipprefixes/cliaksslbipp1000002\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4417' + - '4412' content-type: - application/json date: - - Mon, 10 Apr 2023 02:57:21 GMT + - Thu, 15 Jun 2023 12:26:46 GMT expires: - '-1' pragma: @@ -1037,67 +994,74 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.24.10\",\n \"currentKubernetesVersion\": - \"1.24.10\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-jz2791nb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-jz2791nb.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.10\",\n \"currentOrchestratorVersion\": \"1.24.10\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-202303.22.0\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"outboundIPPrefixes\": {\n \"publicIPPrefixes\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-p1gj29ir.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-p1gj29ir.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"outboundIPPrefixes\": {\n \"publicIPPrefixes\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.network/publicipprefixes/cliaksslbipp1000002\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n \ + \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \ + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ + : 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \ + \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \ + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \ + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n\ + \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n \ + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '4696' + - '4691' content-type: - application/json date: - - Mon, 10 Apr 2023 02:57:23 GMT + - Thu, 15 Jun 2023 12:26:47 GMT expires: - '-1' pragma: @@ -1129,67 +1093,74 @@ interactions: ParameterSetName: - -g -o User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.24.10\",\n \"currentKubernetesVersion\": - \"1.24.10\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-jz2791nb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-jz2791nb.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.10\",\n \"currentOrchestratorVersion\": \"1.24.10\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-202303.22.0\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n - \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"outboundIPPrefixes\": {\n \"publicIPPrefixes\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-p1gj29ir.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-p1gj29ir.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"outboundIPPrefixes\": {\n \"publicIPPrefixes\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.network/publicipprefixes/cliaksslbipp1000002\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n \ + \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \ + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ + : 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \ + \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \ + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \ + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n\ + \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n \ + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '4696' + - '4691' content-type: - application/json date: - - Mon, 10 Apr 2023 02:57:26 GMT + - Thu, 15 Jun 2023 12:26:49 GMT expires: - '-1' pragma: @@ -1221,65 +1192,67 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.10\",\n \"currentKubernetesVersion\": \"1.24.10\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-jz2791nb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-jz2791nb.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.10\",\n \"currentOrchestratorVersion\": - \"1.24.10\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.22.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\": - {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-p1gj29ir.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-p1gj29ir.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\"\ + : {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.network/publicipprefixes/cliaksslbipp1000002\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4417' + - '4412' content-type: - application/json date: - - Mon, 10 Apr 2023 02:57:28 GMT + - Thu, 15 Jun 2023 12:26:51 GMT expires: - '-1' pragma: @@ -1313,24 +1286,24 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVZCTGNGSXpiVzV4WlN0MlpUaFljRXcwTVRSTGVrRjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1RVJYZE5SRWt3VFhwSk1WZG9aMUJOYWtFeFRYcEJNRTFVUVhkTmFsVjZUV3BXWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNubENPVU5hYldvM1pTc3JWQ3RDYUV0blpFUnlVVkUzUVZKMFJURXlTVmhvWkRJMFUxSjBNSEJTZGxoS2JVTmthbmc1TTI5d2RWVlRlRXRDVGpKeU0wb0tlRlF5UzB4RGQydHdUWHBTSzNwelZXVTBWRUp3U25jd2FYUkRiRWhpUms1amR6ZHNjbVJKZVc5RFRFOVRXalo2V1hCU05tZHhVa28xZUdOc2VYUlNUUXBDZFhSMlJWUkRZVE5FVEd3MmJtcGhkVmwzYVc1MFJtOVZNMmQyUjNGamMxRmxkRU5NVTB4dlJWVlJkVUZ5VWxsd2J6Tm1ORXR5VUM5cFlsZFJhVWsyQ2k5Q1RGRnJUSEJ1YVZKeFRHWlNieTlWYjJWME5sQkxWbUpuVkRFd0sxUklZbGhzT1dSWlpWWk5NM2RFUzI1eWFISllaWEozUVd4dlptWjRTa2htVFRjS1ZFSldNVU5KY0hKdWVteENORUl4TW1Sd2RFZDRVRzFoTDJod1NFbEdlbk40ZUVrd1NVWmFjRkpsU1c5eE55dDFaR3RVY0hSa0t6RkpiRGhtUTBWd1NRcDBSemwyYUhoc1JraFhWbkpNV2tkQ1NrTlNRVkZ0T1dobE9WZzNkRzlDY1c4M1JtTTVaa1pxYTJZNWMxcGpSWGd4ZDFGSEsycENWSEZ0TUROUWFHOXNDbXRCZVdZeGFsbHpRVlo1TDJWWlJWTnVSMHBTYldkNGNtUkpXRVZ6UjFOQ00zQnpMMmx0U21kS0t6WXZWbTFLY2podVFVNDVkbXMxVDAxUFJqZGtTemdLVXprNWMyeG9OSEp3VFRWaFNtMDFXVkp2V1ZJNWIyWjNZeTlqYUVwNE9HdExZbTlTYUhGSVNtMWhjV1ZKWldwak5tVTNPV1ZxVW1kYU0xaEVUR0prTkFweFpTdHRlalExYkZOcFV6QmxPVGx0VlVSSWRFRlJORTVRWkRRMUwxWlRkekpDUzJ4dlFYVlRSV0kzWm1sblRXSTRLME5pWkRaeFJsUnZlVzF3Wlc1VUNsVXJXbWR1TmpOQmJEQnhiM05QU0hsUmRtUXJTbTlUVjBoaksyODJNelpSTlM5dllWSkxVV2dyWjJSMVFqWTFSek01WW0xNU16WklaVVZFZDNCTFlrWUtPRTVNZG5SV05sZFhSVkZKVEM5MFVFVnBZM2xtSzNScE4zTldZMFJpYzA1bGVYQjZPV0ZKTlZWaU1FTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1JXbHVabVJhU1RoT0x6ZHdUbEJ4Q2taUVUxcHFNRUpCVG1kUGJFMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFrZEZjVTVUVjFKeU9WbDVPVGRISzI5NWMwOUtUbEZwV2pZS2VIVXhSVmROT0hSdk5tdHZXV1U1TkZoR2JHdEtWRlkzVlZkU2JVbFhNRVI2T1hSYWJqaGtOMVZYTkRCcmFGY3JaMEV5UTAwemNIa3dja0kxWWpSREx3cFRhelYyYUdaaGF6Qk9kR1ZaWTBGWU5IcDRUUzlsZDBrMVJqVjVaazFLY1djNFEwSmFaSFp3UjI1Q1FYSnRNRkJoWW5aRWFrOUlZV05EVjJWNk1HbFdDazF0WVVsdVJuZG9aa3RoWjJwNE5pOVVkMnc1T1hST01GWlFjemt2YkdWb1drVk9NSEZ2WkhscFpqQkVWM1prYWs1b1NuWnFjbWxJTm1jeFNFZ3lVVm9LUm5ZNE0xRTJVSGx6ZURNNGNHc3pTVTFwY2tKYVQxUkljMW80ZGpCUVNITjFZVUpEVXpoSU5VSnZPWFJEYUZGNlZXVktTa2swTm1RMGIwNTJlRlJtZUFwRk5VTTNOVmhsTUc1b2RFcEJTV1Y2VFc1dmRDOWxjR1Y1YTB4TFFYVTVjMEpHWVc1bmJ6RlpaMjV4U0c5dlJXeHpVREJWT1hCRlJEVnNVbXh1WWsxMUNtaEZVMDlGTTFaTmExaHZNV29yTVRscVVEUkVOWGMyVnpncmRFOWljMUJtUTJrcmFTODFLM2QwTUZKUVozSnJhVGhMT1VzM1NrMXJkVEJsYlc1ek1GUUtOMmx0YTNWTWFUSmxXVzk0VkdSU1RHdExVbGhITVVwalJFZG9ibkp2UjI1R1lrbHhSVlYzZERJeWRXTkVNalZHZW0xRGMyODRWRU56V1VGQ1pqSmpad28zWkhCYWRFNHplVmcxWXpVNFExa3pNakIwYkZaMmFFMW5VMWh4Wm5kdmMwZE5hRmRLTjB3dmVsZEhWbUptUVU1UlUxcEpLMGQwUzBsSlYwVlVTRnBaQ21aYVdYSnBMM0pGY3psWVZrOVFUVlJHZEdaMFUxQjNNVmR4ZG5nelRrbFJTMlV4U21oVFVtOW5ZekZRWVdGYU1VUnRWRzByY21GWFIxRlJNa0ZhZGxVS2EyeGxkM0ZTT1ZOTmFDOVNSRU5SV25aTWQwMU1jRW8yZDJwRk5qTlhMMUUxV1daUU4yZDNiRU5sUVVZemMwRlVlbTlaYjJSUFNVUnViRlF4VG5GSU5BcE9XUzg0TDJaTGVXTkZkV0o2ZWtKUU1sRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zbGF0bGZ4Ny1qejI3OTFuYi5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdGtnYWU2cQpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdGtnYWU2cQogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdDJsZnk2bHJweHNfY2xpYWtzdGVzdGtnYWU2cQogIG5hbWU6IGNsaWFrc3Rlc3RrZ2FlNnEKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0a2dhZTZxCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdDJsZnk2bHJweHNfY2xpYWtzdGVzdGtnYWU2cQogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlZHMTNVMUppU0V0YWJFUkhVMnA2Y1RJNWFVNDFha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQk1FMVVRWGROYWxGNlRXcFdZVVozTUhsT1ZFRXdUVlJCZDAxcVZYcE5hbFpoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTnplSHBUVUVsclVFOTRObE5MWkc0emVrbEZiWEVLYVRKQ09HVkNSbHBvSzFSalVXdHBjME5tVUM5RmFrcHNRMUk0WnpWYWFqaHBjSHBKZFVSeWRHMHdOMDlHY2lzd00xcHRaV0oyT0dWMVFuQmFRakZuY1Fwa2NFVkthekJNVG1aT05IcFlhVzVNVEVsV1RFdENkazVXWm5kc2FsWXZMMmc0V1dGdUwyVTFNWEpGVWxaR1dXdHRUelZuY0RCUloybHlWVUV2YmxOdUNqUXZjbEJoTUVSa1lTOW1WVXRaVG1rNVNETkNORTlKTjAxTFF6bG1WMWxVYWxCb2FrTlhVMkV2VW5ZcmJYWXlOVGcwWTFGU0szZHFkM3B0YTJaSFNGa0thV3N4UVdnelVUTXplR3hFVDNOWVFrMUxOM0JJVlhoNGEwSlpNVlZFTWtFME1VaGxUbVZ5T0VzclJrOWthelZKU1ZSRmNGRkdVekZzUTNVcldIcEpWUXBXYkdoUFdtUllaMUV6UmtSMVRGVkRRa2hEVFZoM2RIa3dRVmd4T1ZSTVdXcGlPR0o2WTNkUGFWcHNSVEJzTlZKWFNqaHVkMFZPUkdkNFprMVRWVTkxQ25ObGVVaHNXRFVyYmpJeGJHZE5URFZZVWtGbVpUTjNka1JRTWpKR01VODRUa2gxV21WYVRXNWxjMVp4WjJoa1owSlVRV0ZhTTNVMWMwTTBTV3MyUW1FS0wxa3pXVEJLUW1scGNYSlZiR1JOTlZKQlREVmhSbE41TXk5T2F6UTNkRFZwYUZKb1oxSTFRVk5hYVRVNE5rSjFhVzAzUzBsUVYyOHhXbUpCYkRoT1dBcG5VMmxuVkhwblUzaFZjSEZ4Y0RGdWVXTnBjV3hNWWt0NWVGcHNWR0V4VFZGRllVcElXbUpGWVc1NFJtOU1hMk12YTJOcEswMVBlVVpOY0VzeFptaHNDa041Y2sxNlVWcFRia0YyVlRsdVVVUlVPVXROSzFVMVZtdHdXa3g0YjNGT2NqVjRVM3BwYXpkbE1tWkRia0ZsVmpKQmRHaHZOUzlLV0hGb09ESkphM0lLVlhRMlluRjFNMlY2V2taNVUzWTRVRFJNZUdOT1VsbGtRMlpKVnpSRVNEZE5ObXhhTWtKMFNFMWpLMHd3TDA5TWMzUnJPV2cyVmpBclZERndaVlZqWndwWmJGUlhRWGhLSzB0WWFtVlROWGh3VTBsak0wZDNTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsSkpjRE16VjFOUVJHWUtLelpVVkRab1ZEQnRXVGxCVVVSWlJIQlVRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRkhZak5TU1dOQmVGQlJWa2htYnpGd09IcGFUQXBJTURobVRETnBVekp6UWxnNVVEWlpSbkIxTkdab1MzRkNha015U1V4YU5WaFlOWE5hT0VGMFZFTkVPWEZKTTAwNWJ6Um1RVmR3ZGtSMU4waDJhV2syQ2t3emFVVmhVRzl4U21WSlZVOUpOVzVpUmpWa2RuQk1hemgxUWtObFVHZGlkWEozWkhoeGNtVkVRVzQxUmt4SU4wbDBURnBLV1RCVlUzWlBha3BKZURRS1UyWlFhMUZZTjNWUlpTOXZiMUpLUlhoNmFGTlJXRWR3VEhSQ1lYaFdVREJDTkZoRlowUktVRU5QYWxSSVZWRm5TWE5sTkVwSmFWUktTbGs0T1VvMVJBcExOMnc0VVZoWlVHVkVkbTB6TnpWUU1rdFRNRzFUZFdaRmFGSlRVa0pHVlVFMWRscFpNMkpwVEUxelUwNTZSRkJpUm1sRk1sbFJaRUo0V0dkbFpISkhDamxIVlZoR2RFcDZWbUl2U2tzNE1WWktiM28xVm1nemR6TXplVVpZZW5CSVdqbEtUWGswVUVkMlJtcGhSVXhqY1RRclIyaFZhRFo1YTNNdlZHTXlNVkVLWlRaTWVFd3hTazA0Um5adlkxbHZXSE01VVc1ck1sb3dLemxGYmtOaFMwOTJlRlp3WjBSbVlVTlJUVlV5UzB4WE1FTjFiVnAyTlRscFdGbzJZV0p0ZFFvelJ6aDROMUo1VVVkcEwySkVPVkpNV2tGYU9VdFhORzVUZUcwM1REQTBRVFZTVkZkc1JVUlhja0ZxV0VoUWVtWldRMjlITUVkTmVIRkVNRTR6ZVhBMUNsWjFOalpYYUdoeGJGb3hXR3RwUW1nMWJFVmtNblZoTUV4bVJWZGFSbUpNUTFWa2FqQm9Xa3BoWWxoeVVtWnZaa0ozS3l0b2RVcHNkVlJSYVdKSlRIQUtZV3g1TjNkSFNUVlRPV1EzVDNaU04weG5hM050ZFZWUlRWcFVNbUpDTjFOeldsTnFNbWxQWWs5SFMyRmlNbXBuYmsxa1JXSkxSRzVzYkVVMFdFNHllQXBxVDFsek5VNDNXVTVMVkd0MlRuUklhamRVZFVKM05FZ3laM2RhYWpKaWFIZFRjSEJ4Wm1wa1RrMDRPSFpxU1dOeE5GWk9RMlYzUzFFeFJFSnJSRTF1Q214MlEyUjZWM2cxT0ZaSFkzVjRhbFZGZHpOdk5VRnpQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MyZEpRa0ZCUzBOQlowVkJjazFqTUdwNVNrUjZjMlZyYVc1YU9UaDVRa3B4YjNSblpraG5VbGRaWm1zelJVcEpja0Z1ZWk5NFNYbGFVV3RtQ2tsUFYxa3ZTWEZqZVV4bk5qZGFkRTk2YUdFdmRFNHlXbTV0Tnk5SWNtZGhWMUZrV1V0dVlWSkRXazVEZWxoNlpVMHhOSEI1ZVhsR1UzbG5ZbnBXV0RnS1Nsa3haaTgwWmtkSGNDOHpkV1JoZUVWV1VsZEtTbXAxV1V0a1JVbEpjVEZCVURVd2NDdFFObm95ZEVFelYzWXpNVU50UkZsMlVqbDNaVVJwVDNwRFp3cDJXREZ0UlRSNk5GbDNiR3R0ZGpCaUwzQnlPWFZtVDBoRlJXWnpTVGhOTlhCSWVHZ3lTWEJPVVVsa01FNDVPRnBSZW5KR2QxUkRkVFpTTVUxaldrRlhDazVXUVRsblQwNVNNMnBZY1M5RGRtaFVibHBQVTBORmVFdFZRbFYwV2xGeWRtdzRlVVpHV2xsVWJWaFdORVZPZUZFM2FURkJaMUozYWtZNFRHTjBRVVlLT1daVmVUSkpNaTlIT0ROTlJHOXRXbEpPU21WVlZtbG1TamhDUkZFMFRWaDZSV3hFY25KSWMyZzFWaXRtY0RsMFdsbEVReXRXTUZGSU0zUTRUSGQ2T1FwMGFHUlVka1JTTjIxWWJWUktNM0pHWVc5SldGbEJWWGRIYldRM2RXSkJkVU5LVDJkWGRqSk9NazVEVVZsdmNYRXhTbGhVVDFWUlF5dFhhRlZ6ZEM5NkNscFBUemRsV1c5VldWbEZaVkZGYlZsMVprOW5ZbTl3ZFhscFJERnhUbGRYZDBwbVJGWTBSVzl2UlRnMFJYTldTMkZ4Y1dSYU9HNUpjWEJUTW5semMxY0tXbFV5ZEZSRlFrZHBVakpYZUVkd09GSmhRelZJVURWSVNYWnFSSE5vVkV0VGRGZzBXbEZ6Y1hwTk1FZFZjSGRNTVZCYU1FRXdMMU5xVUd4UFZscExWd3BUT0dGTGFtRXJZMVZ6TkhCUE0zUnVkM0IzU0d4a1oweFpZVTltZVZZMmIyWk9hVXBMTVV4bGJUWnlkRE56TWxKamEzSXZSQ3RET0ZoRVZWZElVVzU1Q2taMVFYZ3Jlazl3VjJSbllsSjZTRkJwT1ZCNmFUZE1XbEJaWld4a1VHczVZVmhzU0VsSFNsVXhaMDFUWm1sc05ETnJkV05oVldsSVRuaHpRMEYzUlVFS1FWRkxRMEZuUlVGdFEwbElhVFJxVjFBdmNsZFVVREJ6ZUdGc1IyUkNObkJhU3l0elVucE5OMDU0TkN0TmR6TkphRWMwV0ZwYVRqQnFNV3BpVEc1Tk1ncDJhRFZLT1ZCSWRHNDVWekJGTms5VlNXdGpSalpLZVdWNGIyMUxMMnRxVFZOTGQyTkNRMlpSTVRGWmQxbHhMMlUxYlVJMGNXOU1kSFJJYzFwaWFua3hDa2RNYVVkUWJVcHRTWGxaY0dVMmQxWkxXa2hsYTFCRVVteEJRalUwTWsxQlkzbGhlbEpOVWs5M1kyVlVOSE4yTkRrekx6SmpOM1pNY2xVekwxWllUM0FLVDJwelNrWk9aVTVyVGtGVldGZHRja2xhUkZOM2JVdHBTRTB4VVhOdlUwVndVemhuUkVKdmNtVnRSVVIzTm05RlQxVnpUa0p0YldsNFIzSlZNMDl3VFFwTFpXTTNPRGROU0dacWFqVnJUbFkxU0dsUFFUaDViREp2ZG1aaVpITkVXVzVLT1dGb1ZTdGtTMk0wTTNjMFJEVlJVVUp1WVdvM01VbExPRFJwUTIwekNtWjBibXQwVjBFdlZISlJWbFJJWkVkSVNrSlZTMlIzUTFadFUydGlTRzFJVG14b1ZWRmtRV3BEWjBKd05HbFpla2x0VVdoclNFSXlZVzk0VUdwNWNqa0tUbFJSVGt4cVlqWTBiRU5oVVdwbmExazJXRW93U0dabWVIa3ZRM2NyYUVad1lsVlhhMDU0YVRGR1R6SkNTSHBZYkVGTk0wVnliQzlZVjNjM1NXeFRTUXBXY1dodVdUWkNUMnBDVGxvNU0zcFpiV3BZTjNCTWNUSlpZVkJaTkhacEszQnViblpKVmxGaFVFd3ZORWhwYkROamVXZGlVMEkyVkdrMWRWRm5ZelE1Q21WTlYwOUNWRnBDZDNZNE5VcE9lbHBXV1RSUVlTdHBhRFUxWWtoaWRqQkRaVVExU2pGRE1VcEROemxaUnlzMU5scFRSRVZuVkhWcmNuaEpUbXRRV0RrS1FtRlFia2h4U1RSRUsxRkJUMU5yTDB4bmNHczNZVWRxUW5kQk1uWndORVJWWm5aU2IwSnZSek5HZDFWVlYzUkRXRFVyVldvMlVHeHNOVFZWYzNoWmJRcDRhM050WTBjM1UzSjVTbFJrUVROVmVXOXRZa3Q0VVhoQk1rSlJUREZKYmxCVFVVRjBPVk14YlM5QlJtZHBUako0T1VWRFoyZEZRa0ZOYW1Ob1ZWWTJDa1p1ZGxkc1JFWllUMEpZYTFSa1pEaFdORUptVjI5NVprMXdMMDl4T0RkVU5WZFdlV04yV25BeFJHcHRRV05sU2t0MFQwTkNXR0pCZFdkbVFrMVVOMDBLVTBOU1ZFMDBObTVzVjJZMFJtMUxhSEZUYTJacFJtUkthelpVWlZVMFp5czFha05TZFhZNVdFNDVabXR4TW1GVmRUVTRPREZUZUZOa2VsUTJlbGN5VndwclQyOUlVR3BPVEVGM1VuWjFObFZ2YTJkc1R5dG9aMGwwVGxwS2QwOXdabEF3Y1ZGRWEwZEZSbXczWjFjNFNGSjVXa3BhWTFkRmVtRlRPWGh1U0ZGSENuRlRiWGN5UjFWcloxSnBUM0ZzVWpSb1FXWlNOamhoYVdobU5GTnRUU3RaVkZCYU1VOUNObk5IYmxkV2NUSjNOMWNyTUhkSVZpczNjR2QxWW5oSlNWRUtWRk5MVTNka00yaGxTbFZWUW1kWE9YaDRiM0JtTjBaS2MyeGhSVFE1VlZWd2EwSmxURk51UXpsRFVEaE1WMDFPZFU1elNXRTVPWGgyYlM4d2FVNUJSd3B6VTNoR2NtNHdWMnhGTVhndlFUQkRaMmRGUWtGT2R6RktRMjVXTDIxc2RVaHNjR3hyT0V4eVoyZHZUbEZVYVhJMWMycGFTVlpPYW5WR1VWVkNiMFJoQ25sd1Fta3ZjMUpTZEdKUmREVTRNVXhqUlVkWGIzSnliR1l6U0VaT2JVVjFRMnRtYVhGYVNGWkNjekZDYkdKUWVHdENSMnhpVjJoUVNrSkpSM0JtZUhrS2MzSXJUMWxYVGpWNWFrcFNha0ozUkU1NVRWcDNUSE5NUmpGVGFGRk9USHBaTUc1eGVETTVjVnBGZFV4WFNrMVlNR3BVU1Vrd1MxQnVRWFYyY0Vkb05ncGhORFZTTTNOU2FqWXhPVGd2Um5SNVdGcDNhRFp2UzNWU01tUjRXVk5QYldaNFMwZ3ZSbWRXVmxNM05WTkVja3RUYWtwTmRVZEpNM0JsZFhGRFpXTndDalJQT1UxWE5sRlZZWGczZWpsWVZVVk1Ua0ZqU2xWUVdXSnZOVlJOVjBwelFTdERZbFZWU0cxRWVWSXJUemt6TWxKTldqRlRhbTR6ZDBGME5FcFhWbWNLUzI5UmNrWktiM05ITW1wS00wcDVNa3ROWTJOMFprNW5WazVETDFwQ1pHZFpXRmRRV1UxNVYweGpZME5uWjBWQlIySlZMM2xZYVhFd1FXSlRlVTB6YXdvck9HaFJkbXBtU0RZd1NrcEZTalV2YlVSNVdHVk5NV1ZIZGtobVJGQk1WMjF6UnpGclNtaGFlSFZDY0Zkd01tOU5Zak5yVlRac1NuZHVlSHB4VG5GRENrbFBRamN6VUhaaU4zTjBLMWs0TW1rdlFVMUpjR1pQUnl0emFITkxjVzgzUmpSTVNTOVZVV3RFTW13eGVqQndkWFl6VlhGUVpFSTNhemRwUW0xWlkwMEtVamxGVmt4NmNGZEdjVXh3UmpWS2JITjBaVloyVjIxaVlrTjFjalV5TjBWbWFtZDRRbXR0V0doM1pYcHVNRVUxVVZReFJsUlJVbVJQYkhwTlJsbFljUXBxTHpSVGFIVlZNVFJPY0ZwV2RqaFBUREJ4Y1VSRlpuUTRZekZ0T1ZkWlNuSlBjMUJIWW1OMlQwNW9hbkZvUlZkWE16UkJWa3hXU21Gb1pHMW5UVTlQQ2pjeVZ6QnlOVGwxYTBWaGJtUlZWamxqWkRGdlZ6WnNZemRtWjJaNE5ubFJSM1J5TXpWRGJYQmplamxOY25wcFluRjZRMlJKYVV3MVNXcFdORGc0UjJzS1JWcFdOVTFSUzBOQlVVVkJNSE5yTTJoaGFHMXpSM05PVDFGRFZXdFlaVE00V1VaQmJHdDJUMVJUUjNsNVkzcG9jUzlJUkZNclMycEdaRlE1UVRsVmJncE9iMHhsY1ZZdk1UUTBTMkUwU1ZwQlIxSndjVGxHYTBzeFJXRXJhRWMzUXpWUlZreHNTVk01YjBoaFYzQk5kR3QyY2tOSlowZzRWMXBXUTFsSWJ6RTVDa2tyT1RGVE0yTXdaSGt2TW10a1UweEVOa3RRYkRVMFRYYzNkWFZJVjFGekwzcGplVzlTUzJwVU5IcHZWelZXTWtSTFYycHVZa3hhWXpsRloybFRUVkVLVFd0YVJXeG9RME5XUzNOUFprOXlkMUpMT1N0RFdUaGtaMmhMVkZaWmJVOUZZbTVxUkhkMVIxQkhSemtyV2pWRkx6ZEhlbUYzYUcxWVVXNWthWFJHVlFwMlRIUlFhMU5TWlRsU1MwMUNWV0ZQYUZWU1ZFOUhRVzB3WjBFMmNIWmlaVTVrVG5vMFVVMVZWVVpuUkhCcWRHMUtSbEp6YWpNMlprWkJZbU0wVEhOd0NuWlpVRVV6Yld4eU0xUlROVmx0T0hGdlQzTnFiREZFVmpKYU9WZFVSaTlTUkhkTFEwRlJSVUZwTDJzM1FXc3ZNa2hKY2tkQ1FWQmxUM1ZQVUdkcEsyY0tVM0JvTm1ScVdHcFNWV2xOWjFOMWJVUXhWSGRrVWt0SFVrdExNVTh2Tld4QldEQTNTRTg0T1haU1YwTTBlbUZZUkVkQlNFMTRUbk5vWldGTU1UZ3lad3B0TTB4SGJYazVjVEl4YjB0d1kwRmhUMWx1TmxKR1YxSnliR3hKV21WYWVWaE9PVkZaTTI4MEsyNVdUMFpJUldwNlRrMU5kRzQxZDBoaGRXTlZUVEJ4Q21STFRFWlpNVVJaU1hCNFJGVlJVa2RxVUZGQlVVVnhjMmxWY0RsVVQyWkJUVEY0V1hwWEwyVnVSSEJ5UkVGTVlVdFdXWGxDVFVoTGVsRTJabVZrT0M4S2NuWmtOMUpzVW1SeFRYbDNjVFZSVG1JM2VXRkNkbk5FYlN0SGF6UTVVR014U3k5a09YaHphMFpQZDJGdVlqTnBhV3RPWVdKNUsyOUpNbVpWVERCaGFRb3JWMGwxY2twcVVEWTJTbGh2U1c5Sk1ITmFOSGR0VjFaRVIzaEpVMmMwV2trM1ZFaERUVlU0VGpGb2N6UlBReTlEY1hwVGFFTlVOa1o1YUhWVFp6MDlDaTB0TFMwdFJVNUVJRkpUUVNCUVVrbFdRVlJGSUV0RldTMHRMUzB0Q2c9PQogICAgdG9rZW46IHpxcGs5eDNjbXZ6YmJmdXNrNnJlNzV3ZWFzeWplMjY3ZXByOW5ubjdtcndmZGJ5dGpjZWdveG05YXA1aWU1azUwY2k3dHpyYzMwN3dncnNraDZzZnl0eWNhcW1rOXBodWFvYWEyNzJkdDc3eGJ2MTdsM2JtaDlqZjhmeDBpNGswCg==\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSVUZWd1JHdEdlVkpoTWtSV1VYUnZaRkpMVEhaa2VrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVZYaE5ha1Y2VGxSb1lVZEJPSGxOUkZWNlRVUlplRTVVUlhsTmFrMHhUMFp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVNdkNrUTNMMW95ZFZjeFdsa3hNbE5ITTJoVU5YZFZWRWRFUmpkMlFtWkJSRTVQUW1aVFZWQjZRM052ZEc5Q00ydHplbU55YjBJek1GZDJlSEFyY0hwM1ZtTUtTRGRYU1U5UlZqUm5OVk0zWWtobmNrczJNRFJZWmpBNE1XdzJZVnBCVGxCS1oyWnNNRlZ4ZFRoUVJsaG1VMGRFZEZGUWExcFJSbHB5ZWpCVlJpdG9jQXBGVlVOaWEybGhZazg1WjFRNWNXOVZNWEZUT1hGbU5Fd3pOVWxxUjFZMVkySTNlVkp3V1U5T2NtVjNaM2d6Y1ZOUGVrdE1ObTQ0UmpsR2FuWXlVbHAzQ2tWMGQzaGtNRzQwUVVoRWNEWjRhekJoVVV4bVpUZHJSRTFhYVZwQ05taElVVU41ZG05c1JuTk5WMUpXVlhCdllUaHBTM05PVG1SeU16UlhVSFpOV2prS1JEbHBWa2hvTTB0emVqRldXRU55VEdOMlFua3pTblZtVjNaMU1FSTJVek00ZVVWTmFqWjNjSEZLTkVaUmVtdFNjR2xaZUdaMWNUVkRRVGtyT1VwNlN3cEdlRUpaTlRreGNUSTJiM0ZTVTNCSE1YWnBWa28xV2tkbE4ydDVRaXRGUkdkVU5tODJaM2xYUjBSb01VNWxiemhXTUM5UVlYWnFWRnBCWTFGak9VVjVDakUxVG1KWEswVlZSSFZLYzFOTFVIZHlPSFZEZFVObVJFRXdkR2RJZGpGc2FXTXdiR3AzTlhneUwydHVRbVpZWmpKQ2JERXlTekJKY0ZkWVNWUlNNVkFLYWpKcmFubzFVMVZ5WkVvMmNHMHJhRE54T0hkWVpXeEdXRE00T0ZsdmJtRjJiemR3U1dzd0wwc3ZjamRtVm05WFlVTlZTbWhLWkd4cFIwSmhWMDFpUlFwUE9ISnlUMDl0WmtOb2RDdHlXSGRaU1ZaT1MzSkVSRlpOUjNNeWRXSkZhRXhxWlZKd2VGTXlhRXhCT1ZkUVVITkdiMDFNTDFaMlNGSlhaVmMwZW5Od0NtWnhVMVIxTTNBMk0zSmpWelJ0T0RSQ2FVbHZUVXBGWkVwSGNUQnhUR2tyUTFaWk9YRndNREJzUkdSbWQwYzNZbnBuZG14c09VVlRZM1ZLZEU5NU9GTUtSbG96WTJOTVpuVkdMMjlzWkc0eVpEQTNRa05tU0VwUlRuTnZlamRXV0UwNVNscFdaakU1ZG5SM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWUFUwSlZjR3R4YlhJcldHMTNaVGRsQ25jM1NEWnNRamhsYzJ0UmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGQ1JsVlhWVE5rVEV0NFdWa3pVV29yZEZkc2FURnRNM05vU1VzS1VqQlZNM2h1UmtZeVJWTXhkbXQ2V0hWU1dXUm5UWFl5VG5GcVEzUkpNMjh3VVdVMVlXWTFUVEZ6WjBaSVdFbFBRa05PWWxjMmVtWjRSWFZaWWpsTGJncEhUMjRyZUZSQ1UxQTJLMnBuTUhseVJYUm5MMWQzTW14UFdXdEZVRWxJVUdGWWQwTm5TV2RvWkM4MGJVTnJSa3B3TWt4WEwwdEpjak5RZUhseWFsTXZDa0pzZVZSTmVrbHNSRUZWYWtWT1dXZDNXR0V4UVdRemVtOWtUMnBhYVdaT1ZtVlJSVTFhU3poT1IxUXhUMnhzVjFaM1ZVTm9lRmxWVG5OME5VcHZLMVlLTmt4cGJHaGxkV2t3YVRoTFVIYzRXbUZXYXl0S1FtNWpORXRTSzNBeWJTOUxVRFJsU0cxU2MwRnpTbTF6Y1ZSM1VDODVaSGhtUkhkVlNqRjZVRWxJZWdveFRsSnJlRkJuYlV4dE9XVTNOelpCVDJGa2NuWktaVnBQZWtwYVVrZEZSMDlPU21rNWJteFVjVkZWTjBnMFRHOU1ZMHR1ZWxGUVIxbFhPVTFaTUhCWUNteHFPREp0VlVNdk1VdHlUV2xNWTFGSU9GbDRNbGhqYTJ4RlpYcGFUWFExUlZCTVZFMVRWalZoWTFsUGNVeE9ZMnQxY1RWa05ERnJUMWRQWVhsR1EwRUtNamt3ZUc1YWRrdFpPVUp4V0VNM1FWcDZVVFJVT0UxR01IVlZjRm94VEVvM2JuZzFUWGxPTlVsdVRDOWpWR1ZEUmk4MmJEUnZkRXRyTkZsSFNuWjZUUXBzT1N0blJXMVJTVEV5U21kM2NXRTJTMVo0WVdaV01FeDVjVGw1YVRsdE5ESkJUV2hWY0c0d1pGbHhaamd4Yml0cUwyRm9NSFp5V0VKRlRVTXlZVXQ1Q2xOQ1dIVnNVM2x2U0ZOc05qaE9hRVZDYjBsVlVVVnhNRzFFU0RsRVdIbDJaakZDV1dsSmIzSjBZMGx6YW1sT1NubHJOeXRPYUhKYVZ6bEpXVGRzV0hnS2NqSlBhRlJVYjNoUlFsZHZlbFZuVjIxVlYxaFVNakZ2WVVWTlVsY3lkVGR2YkZGNGNtTlpSV2RWTjAxMlFXVkxSMUVyYWk5eU5tNHJObkZCYlcxc2FRcEhiaTl3ZGtWa1QzRXhUaXRLUlhwaUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3pwYmY1dDYtcDFnajI5aXIuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3R0Nmt5cmsKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3R0Nmt5cmsKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RxNW82bHNoM2RjX2NsaWFrc3Rlc3R0Nmt5cmsKICBuYW1lOiBjbGlha3N0ZXN0dDZreXJrCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdHQ2a3lyawpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RxNW82bHNoM2RjX2NsaWFrc3Rlc3R0Nmt5cmsKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJSVEp5UWtkeUx6QjRZM0JrSzB0VVkzRmFkSE14YWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVlhoTmFrVjZUbFJvWVVaM01IbE9WRUV5VFZSVmVFMXFTWHBPVkdoaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJ2VjBoTE9FSlRWRU01UWxsalZGZzBSVk5RVkVVS2FHOTBRbUZsYURVck5rZGFRbVZrZDFnM09FOVBMM05SVVVFeGJWVkNUVUpyUkdST2JuUTRSMUZIWXpScWNWcHlaR2RTYXpsbVlqbGpWRkpyTDFSdGRBb3hSU3RUWW5aYVRVbDVRVXBrU21KUFFYZzBOV2RsV1ZoS2FWaFFWVzVtT0dGcGJ6aGthRlpWY0VoaVVGWkxWRGh6UVN0emVUQlBiVkpzWkhkWVlWWmpDbWh5VUd0U2RIVlpVREExVUZwVGVXSlRPV0lyYldwTU9VRTFhRlJOVDFKQ2JYVnBVbTVtVDB0UlJuVXhNRGhCZVV4NVdFTXZWbGMxUjA5dlQyNUNaalVLWXpGVmEzbDVaVXg2YVdveE5YWnhNMjVKZWpkaFpIRnlOa2MyTjBkdE9XZEVVMHcxTVdjNFJIRXljR2xhTmxsalkwUkdRUzlXVlc1SFZEUmlRWGRRU1FvNFNVaENXWEExY0VoVU1VVlhXbUpNVVVKbWFHTTRWV1ZEUkhvd1QwWmxTVzVpY1dkQ1NYVkVNREphYTB0Q1NIWlFjbFJLWldGd1pXcHliWEV2Y1V3NUNpOU9aWFF5VEZWcEsyZ3ZUR05qUm1OeVJIWldTSGxqUzA1NVUyVXlhRW95YVVadGRsZGpVV1ZuTDBkR2VuVTJkalZuVEV3dlNsVjNUa1JDUjBGS1Iyb0tNMnc1Y3k5bFYzaGplREZRYms1TmFHVkVaMEUxYVM5MEt6WTRlVlpIV2xsTlJIQkRNRE00U1RWVmFGbEdlbk56VWxwWmMwSm5VWFJ4VkVSRGMxSjNPUXBUZEdKQ1dVazVlWFZMWkZrME1WZFpZVGs1Ym1rMGFrNDViMHN2TVRWUU5GUkdiVE5HZFVweldWbFdUMGhHWkZScWVrZDBkVXhsVm1OSFdIbEZLMVV6Q2xWSFVsbExSRzV6WVhCTVNEQTNNV3RLUTJJMUsxaDFUVmw0V0V3M1JsVlFUM3BFWVZwNVJ6VlpkREV6V25aSFYwcGpjVWhZTmsxdVVETXlZeloxYTJjS05WaDVTbWhrY0ROdmFHbEVSREp2TldSME5VWmhNM2gyUjJwSE1rSnhkMjB4V0ZwSE4yMVdWbGhSWlhkbldFOW9hVTEyUjJGaVNuSnBjVkZSUTBwM1dBcFNSSEExYlVOcVdYSnhVRGRqWW5Kb1V6WjVORWRSU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEUxU1VaVGJWTnhZWFlLTldWaVFqZDBOMFJ6Wm5GVlNIZzJlVkpFUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZtYzFKTFZsbFJOM2hsYVhkMU5IaFFSREpCWXdwSWIwY3dSMEZWUVU1aU5GWkNURE5HZUdoTE9VVkpURUZ5Y3pVeVVtOXhWV1p4YkhwQ09WcHpXVmx1U1hFemFVZEVWbk5KV1RGWU9YUlRjSFIxYjJVMENsSTRPVWRNVnpKclJGVmFSSHBOT1hVMFRWSmlSa1F4Ulc1Q2NGWTBWMU5DTlVwNk1YWkNXRlpwTXpFM1RUWmhhR2xGWVRKalJsTkpOamxtY2xsM1JXWUtjRWhRVm1OM1RtOVFhRUZHTVcxTWIybEplRkl6VTNCc1FsQXpja1EyUzBKa01ISklZa1JNSzI1aWNIUnBPRWRqSzNSeFJWQjNOM0JPWTFGNFNXdGtXUXBNTVdkWWVtZ3lVazFrVEhNdmIzbDBiMlpIY21WNGVTczNXVGg0VlhWQ2QyaHdiV1JoZGxwMlJrVkNkWGh2U1RSMVFXdDVUVFprUW05aWNtMVhaMmR6Q21vemVuUk1TbTFJZGpGTWVtbFZaR1JNTlhOSmJEaHhjMmwwV0U0dldrOUtPSEpuYURaTFFVNXVaVkZ4TVUxQk5rbzVVSEZCWlRCMVpFUk5ZVFprZG5JS1ZrWnJkM0pXVWxSaWJqQkpSRXRWVEM4MU5GTkpiMVozUW5KVVpUQjZSalEzUjJwWFFtOUtVVzlCVWxwM1NUWlVNbFpEVGxrM1JYcFpjUzl3YkVwaU1BcFdRbUp2UTJSRFRrazJaRkpXYkRZMFRTdG9hRVZ0ZEdaSlowWk9aRUl6Y0RNd1NsTXZOVFJIVEdscWRHNXlTRnBXZG1rNFVtVlVOV3BEWmtwNldFRkdDa1l4VkdVeU1FMHdWa0V4WjJOVWNIaERURE0zT1hwbUwxUkhWVmxTYjA5U2RESlpSakJETjBOcllqQTBaeTlEUW1KcFJrSlBWbkZTYkZGNGFHOU1hR1FLWTJkTWFFZFNVSGRKWVdJeGQwWTFRVTFTUzFkaldFZEVZVFJ3TVc1WWRHVkRkVTEyYW1aemNYVTFZbWhSYUhOclZWZHVla3czTUZoQ2FucGxkVFZrTkFwMVZUVTBMM0J1Um01RU4zaEphemRxYldGWFVrMVpabXgwWW1GWFlsWTRURGx3Wm5SNGRtZExabE14Ums1a1VucExSblJWVkV0ME0ybFFVMkpzY1daNkNuRkhkVGhLWjFST2VGUmtSRTFIYmxOTWFXSjRTVzAwUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCTmtab2VYWkJWV3QzZGxGWFNFVXhLMEpGYWpCNFNXRk1VVmR1YjJWbWRXaHRVVmh1WTBZckwwUnFkamRGUlVGT0NscHNRVlJCV2tFelZGbzNaa0pyUW01UFNUWnRZVE5aUlZwUVdESXZXRVV3V2xBd05YSmtVbEJyYlRjeVZFTk5aME5ZVTFkNlowMWxUMWxJYlVaNVdXd0tlakZLTXk5SGIzRlFTRmxXVmt0U01ub3hVMnN2VEVGUWNrMTBSSEJyV2xoalJqSnNXRWxoZWpWRlltSnRSRGxQVkRKVmMyMHdkbGN2Y0c5NUwxRlBXUXBWZWtSclVWcHliMnRhTTNwcGEwSmlkR1JRUVUxcE9HeDNkakZXZFZKcWNVUndkMWdyV0U1V1NrMXpibWs0Tkc4NVpXSTJkRFY1VFNzeWJtRnhLMmgxQ25WNGNIWlpRVEJwSzJSWlVFRTJkSEZaYldWdFNFaEJlRkZRTVZaS2VHc3JSM2ROUkhsUVEwSjNWMHRsWVZJd09WSkdiVmQ1TUVGWU5GaFFSa2huWnpnS09VUm9XR2xLTWpadlFWTk1aemxPYlZwRFoxSTNlall3ZVZodGNWaHZOalZ4ZGpacEwyWjZXSEprYVRGSmRtOW1lVE5JUWxoTGR6Y3hVamh1UTJwamF3cHVkRzlUWkc5b1duSXhia1ZJYjFCNGFHTTNkWElyV1VONUwzbFdUVVJSZDFKblExSnZPVFZtWWxBemJITllUV1JVTlhwVVNWaG5ORUZQV1hZM1puVjJDazFzVW0xWFJFRTJVWFJPTDBOUFZrbFhRbU0zVEVWWFYweEJXVVZNWVd0M2QzSkZZMUJWY2xkM1YwTlFZM0pwYmxkUFRsWnRSM1ptV2pSMVNYcG1ZVU1LZGpsbFZDdEZlRnAwZUdKcFlrZEhSbFJvZUZoVk5EaDRjbUpwTTJ4WVFtdzRhRkJzVGpGQ2ExZERaelUzUjNGVGVEbFBPVnBEVVcwclptdzNha2ROVmdwNUszaFdSSHB6ZHpKdFkyaDFWMHhrWkRKaWVHeHBXRXRvTVN0cVNubzVPVzVQY25CSlQxWTRhVmxZWVdRMlNWbG5kemx4VDFoaVpWSlhkRGhpZUc5NENuUm5ZWE5LZEZZeVVuVTFiRlpXTUVoelNVWjZiMWxxVEhodGJYbGhOSEZyUlVGcFkwWXdVVFpsV21kdk1rczJhaXN6UnpZMFZYVnpkVUpyUTBGM1JVRUtRVkZMUTBGblJVRnhhRk5GSzBsdGVsaFdjV05FVGk5V1JGbEllVmQ1U1RaTloyODJLMWxDZG5wTWNEZHlkRVZJTlVneVdIcFZPVEV2TlRGRFRFaFVUQXBhZGtOVVVtUndSRTVUTWtoUFZXSk5PVXhNZDNWS2JucDRja1oyVmxsWlJFMWhaekJrTkhWSE1tbFZWV1F6TTJzeFEyWTBja294Y1U1Q1pXdGhXWFV4Q20wd2FUbFhTbUZFZFd0WE1TdEtkRkV2YVZwV1VWSlNaekJaY0dKclFqSjVPV0p1UVRabVVEbGxWRlZSYzBOWFYwaG5Nekp2VTNaUGFEWmtWV28wYlRnS1JWVjRWV2xNUjFBNFRYZDFPWGN4TkZWUlNuUnBLemx0T1c5aWFFeGxUakZSYkdaTlpsSlVUeXQ1U3pSRFZYZzJSREZvZG10RlR6TlBlRTluZWl0clRnb3pNa1ZKTkV0RVRWbFlhVXRMYlhObFVYWnhka3ROTTJKdWNEVlpWMUJHYkhGd1FuTmpXRzVNTjFseEwxUmpNUzlNWWxFellWVkxVMnBDZG5GU09FWmxDbUZsUTNBeVJHZGFlbVIwWms1WmFuSm5hMmxxY0VaQ1MweGFaakEyZURkalMydHlXRVVyWW05WGNFbE1VWGQ2V1cxck1uRTNhMFJSYmtwRVVXVk1ZWFFLV1dGeVl6UTBkMkZvU1hSQmJuSkdSR0Z4TkVKcGRISnJiRVozTWxZMkwyWm9SMlJYSzFab1dGSXZjQzl6V21Kc05raHpaV2hhY1RoU1VuaDBlbUk0TUFwUGRrMWFOM0ZsV2tWVFRrMHpieTl1YVZwMlYwcFRXbVpwWXpaMVdXcDBWV1ZxWmpCM0wyOVRWbTR3U1haMEwySllkSEZHUlVSWk0wRnRVbTA0TDBGWENuVnpkMVZrVVV0VVpXVk5kRmRHSzJKWVkydzFWR3hTZUUxWVJEWjVNMHQwU0ZWbGQwOUxaa2hPWkhKaVFrbGhjV3hVZDBacFkyWXdaMjFJUkN0MFJtZ0tNa296TWpOVWFqSjRPVWxZTmxKa1JITnRNRGR0VFZJM2RGa3JUMFpHV1ZaRGNtRTFVMFpZVW1SdlQzQlhWVE5vVjB0a01YTlJNMko2VmpkRGJEQlpSQXBVWjJaVFpXUlpURXhPVFhaTWRWQldUbXd4T1VVNGNVVnRWWGRQTlhWUlVXaEphQ3N3ZGt4TVZWbDNNREZqUjBwSGQwVkRaMmRGUWtGUEwwWkxjU3RrQ2xSNFVGTkhiM05XTjFKd1UwVmpMemhpVUcxaVZrVjRXRWc0YW1obWVUZFFRbkphTW0wd1dUZ3Zka3hLVkVWVGFVd3liMFV5Um5oVVJVWXZXVmRwY0hBS2FHTkpiRVZTTUhoUlNHSjBRV2xYV0RCRWNGTXJLMUpOY0N0Nk1VSldNR0ZpZDFwYWNsVTNLMDVGY0VwSWFHMXpWMm8yTXpjdllYVm9hbXhtWlVFeVR3cDBOWEptTWpSQlNIZENXSEl3YWt3eVNqQjNiVEJxZDBWbFIxQmlObWd2TDJkNk56ZENTSE5GUkRoNU1WTnZMMWhFVVVwU2F6TnFWMFEzUTA5aWVXWlVDa05vU1dsWFRrWktUemRxUTBNNVJqRmpNalJsUm5nMUsycElVbWMzU0ZWUmVEQm5UR1U1UlVsaWNtOXBObWROVTJnNVZXaFNaWEJsVW5aWFNVRTVhRzhLV21OeFQxcDNPSGc1UjBNNFNXaG1lWE5HVEdNNGNFVTNUbVYwTjJSV2NWSllOM0JJVmpkQ1NIVlRWSGhIVkhaNkszcEthRk5RUlVnMWRXZEdUWEZzU2dwSU4yMU1lakIxUlc1Q2VYQldOVVZEWjJkRlFrRlFaMU51TmxCU2NFVnZNM054YW5WTmJVcGxhR2xsV1ROSGQzaEVaMDFOWVUxak5sWkRlbWt5WjBRckNqVm9jM0V3UTJkMVVYUnBVek41ZEZGTmRXZHZMM3AwUVhSWFpsWXlOMk41T1d4VmIxbHBRelV5YldjM1ZHZFZhMUF3Vm1NM1NYWkxUbEpGWWxVd2EyOEtSMnBEWkZkcE9UQTJlV1prVmk5U1N6QjFORXRJVnpObUsxcEZWVk5KUVdSRWRteG1iWE5EYTJoTFNYVlpVMWxyWWxveU4wSlRUWFp6WldaS09GTmxlZ29yTXpWcVVUbDVRblF4VVhKWE9HTm1WV1pLTDFSNWMzQlZUV3gxVWpCRWFYaFFPVVY1VlZGQ2VUSklaRkp6VVVsaGRVdGtaMXBYZFRnMU1GbFVZVzlxQ2l0YWFVcHZVbVJCZFZOcFNsbEZiV0YxZUVsdVdXNXlVbFpNVUhnNE4xVjJiWFpIVWs5RVZqaFRPRlpHZDJzeVRucFNjVWxyWkdONFl6SkNZekl4YWtRS2RXSnBVMVJKUXpkMVlUZGpkR0pLVGxoaFNsaFRWemwxY214V1EwWlRORmxOSzBSMldXeEdSVnBCYTBOblowVkJVME5JUlhsaWFFWm9aWG8zVmpCU2RBcGFSRWN3WTJsSE5teDNNRWgxZWl0eGNrVkNTMmh6V2pWbGIwMU5RelJHYlVsYWR6RmxZVUpvUzNvdmVEVjZVMGRDU1N0T09FcDRNbEpSV0hCMFEwdFNDa0pxV1daSmVtZGplVXM0VjFsSlVTOU5TMWt4ZVhWRFl6ZG5aMnRtTVUxNVdDOWlTRTh5YjBOaVJWQm9lVkpEVVVOTmNWUjZNa0pWUmtJcmMxcFZVSFlLYjJGcGExQXZhVlp6WlRoeU5rTndaMGhaY1ZoVlRFVktlSFpUTVZWR2VsVmpMekZIVWxObGNFaHFNVEJhUkVob00yNWxOMDFRZG05V04xSkdha0pFUVFwRGMwVXhNVkJ1Uld4RFozaFNSbVJHTkdVd1YzUmtSWEZaY0RSNGVscDZMekJ5WlZkT2RqVnZTblJKZG5WdFdrdGhjWFJWYms1SmNtSldhVkkwU25ocENuSkpaSE54YXlzd1p5OXJPR05FZVdvMlFXWnZUV2x5ZURWYVVqUTJUM1J4TkRWWk1IaFVhVTVLV1dKdE4zSjNNVEY1T1ZwSmJIbENWWE41WjNaR1RsVUtjemR4ZFZGUlMwTkJVVVZCZEdaVVJFUXhMMGg0TkVKUVJsVlhVbmN3Um1ReVZrWjJOMEpQV0VkWWJGTnhWRGhLVjNSelVqSkZWV1U1Y2twVFpVRmFiUXBzV1VFeFNGRnVORXhRTVZaTFJuSjNUa1JrVTNJeU9EYzJNelY0WVRGMWJUZFhhME5qZUdOQ1MxcHNaRVEzVUVSa1RXRTRUV2cyZFVKNFlVUm1aV1ZsQ2xSSFJUUkZSVWRLYzFoMlRqRnFaa0ZWUkNzeVdtWkljV1E1VFN0TFUzTkRPV2R3WVhrMlZsRnRZVGhDZERaMFYweEtUMk40VDJod1FWY3hRall3TVdnS09FOVVWWEp3Y3pCbGJFRlRLellyVlZOQmMxSlVTRU5KTW10MlZEZEpVRGhpT0ROclEwRnRPR3BJWmtoQmMyMVBaWEF6UnpaYVRERnJiMHgzYlRaUGJncHlRMjlJWWtSWFNVaFhjWGdyZVM5eWJIZHNWRWh2VkV0bE5FWjFNM2g0UzFneWIzQmxUVlZZZFdWNVQxQkhPVlJHTURGRmRtcHFhREJ3V0Uxak1tY3JDbUpDYjB4Vk4zTllaMDl1VWxCWFJFeHJiRWRyVVRKclVrNUdNbWh0WTFreVRWRkxRMEZSUWtzMGVUUnROalpFZG1KaFNXaFRXV3N6UkVGRE1qSlpjVTBLYkdaS1pGQXhkV2xYZWxseFFYZFdSVXhuUzBVeWJ6RkZMMUZwUjBSbVMycGtVR0ZTZGt4blNuQlhTazUxY2lzNVdHWlVNSGxwVEhoUlQybG9kVEkwU1FveWRFOXBUM0JDVnpCMVNXRTJkWEJ0Y1RadE1IWk9lbGQwV25vMWFrNWlTblpyTkROVmRtTjZaVWQxSzNweU9EVnpTaTlpZGpKcWVFWkVjbEZKZUd3eENuUnlhU3RZTVVwUkswd3ZVemM1T0M5QmEwVjZNbVpWUVZwaWVUSjBTVmhZYVRFMmNXVmpLMVpVU0RGelZrUjJVVWxvUmxkU1EwcEJWamR5Y1Znckx6RUtiMmhZYjFkNWEzbFJNRmRuY0VkeGRHcEpMM1p2TDFWMlJtOVFWbkJrZVhRM1NIWk1TekpJU20xTlpsVm5Oa3ByYjBWR2EwNDRabWRGYzAxMVMwVkNjZ3B2U21sTU9WcGlWeXRQWmtSb1ZWRXdlRGR0VEhsMmNVWjNjVEpHZEdReVoza3hTSEZYTVV4cmVWRnBialpSY214Qk9EVmljR1JFU0UxNk0xVUtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogMGdoemZvYXUxcDRsZDlrcTRvNHJuazg1NnFvcmtjZWV2NTd3bDg4Y25hMjd2djIzeDZ4emlvYzlucW82dnR3c2ZuYzJ3bjZieHAwcndqemxtbWM0amIxNmJlZnVqMGFmejZhcG0xZzF5Mnc2Z29od3loaXF5OHQ1enk1cTI5Z2oK\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13096' + - '13072' content-type: - application/json date: - - Mon, 10 Apr 2023 02:57:29 GMT + - Thu, 15 Jun 2023 12:26:52 GMT expires: - '-1' pragma: @@ -1364,65 +1337,67 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.10\",\n \"currentKubernetesVersion\": \"1.24.10\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-jz2791nb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-jz2791nb.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.10\",\n \"currentOrchestratorVersion\": - \"1.24.10\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.22.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\": - {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-p1gj29ir.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-p1gj29ir.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\"\ + : {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.network/publicipprefixes/cliaksslbipp1000002\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4417' + - '4412' content-type: - application/json date: - - Mon, 10 Apr 2023 02:57:30 GMT + - Thu, 15 Jun 2023 12:26:54 GMT expires: - '-1' pragma: @@ -1442,24 +1417,23 @@ interactions: message: OK - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.10", "dnsPrefix": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": - "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.24.10", + "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"outboundIPPrefixes": {"publicIPPrefixes": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002"}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"outboundIPPrefixes": {"publicIPPrefixes": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003"}]}, - "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002"}], + "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.network/publicipprefixes/cliaksslbipp1000002"}], "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", @@ -1476,74 +1450,76 @@ interactions: Connection: - keep-alive Content-Length: - - '3130' + - '3128' Content-Type: - application/json ParameterSetName: - -g -n --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.10\",\n \"currentKubernetesVersion\": \"1.24.10\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-jz2791nb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-jz2791nb.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.10\",\n \"currentOrchestratorVersion\": - \"1.24.10\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.22.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\": - {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-p1gj29ir.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-p1gj29ir.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\"\ + : {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.network/publicipprefixes/cliaksslbipp1000002\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5f8cac28-7d11-4860-b8a2-ed55edd9159c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1b379fd4-2f6d-47df-8cb4-c6a17b5f9bbc?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4596' + - '4591' content-type: - application/json date: - - Mon, 10 Apr 2023 02:57:39 GMT + - Thu, 15 Jun 2023 12:27:00 GMT expires: - '-1' pragma: @@ -1559,7 +1535,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - -g -n --load-balancer-outbound-ip-prefixes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1b379fd4-2f6d-47df-8cb4-c6a17b5f9bbc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d49f371b-6d2f-df47-8cb4-c6a17b5f9bbc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:26:59.8204262Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 12:27:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -1577,14 +1601,14 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5f8cac28-7d11-4860-b8a2-ed55edd9159c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1b379fd4-2f6d-47df-8cb4-c6a17b5f9bbc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28ac8c5f-117d-6048-b8a2-ed55edd9159c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:57:37.1123867Z\"\n }" + string: "{\n \"name\": \"d49f371b-6d2f-df47-8cb4-c6a17b5f9bbc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:26:59.8204262Z\"\n }" headers: cache-control: - no-cache @@ -1593,7 +1617,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:58:09 GMT + - Thu, 15 Jun 2023 12:27:31 GMT expires: - '-1' pragma: @@ -1625,14 +1649,14 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5f8cac28-7d11-4860-b8a2-ed55edd9159c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1b379fd4-2f6d-47df-8cb4-c6a17b5f9bbc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28ac8c5f-117d-6048-b8a2-ed55edd9159c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:57:37.1123867Z\"\n }" + string: "{\n \"name\": \"d49f371b-6d2f-df47-8cb4-c6a17b5f9bbc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:26:59.8204262Z\"\n }" headers: cache-control: - no-cache @@ -1641,7 +1665,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:58:39 GMT + - Thu, 15 Jun 2023 12:28:01 GMT expires: - '-1' pragma: @@ -1673,14 +1697,14 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5f8cac28-7d11-4860-b8a2-ed55edd9159c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1b379fd4-2f6d-47df-8cb4-c6a17b5f9bbc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28ac8c5f-117d-6048-b8a2-ed55edd9159c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-10T02:57:37.1123867Z\"\n }" + string: "{\n \"name\": \"d49f371b-6d2f-df47-8cb4-c6a17b5f9bbc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:26:59.8204262Z\"\n }" headers: cache-control: - no-cache @@ -1689,7 +1713,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:59:09 GMT + - Thu, 15 Jun 2023 12:28:31 GMT expires: - '-1' pragma: @@ -1721,15 +1745,15 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5f8cac28-7d11-4860-b8a2-ed55edd9159c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1b379fd4-2f6d-47df-8cb4-c6a17b5f9bbc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"28ac8c5f-117d-6048-b8a2-ed55edd9159c\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-04-10T02:57:37.1123867Z\",\n \"endTime\": - \"2023-04-10T02:59:17.1961994Z\"\n }" + string: "{\n \"name\": \"d49f371b-6d2f-df47-8cb4-c6a17b5f9bbc\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T12:26:59.8204262Z\",\n \"\ + endTime\": \"2023-06-15T12:28:51.6253658Z\"\n }" headers: cache-control: - no-cache @@ -1738,7 +1762,7 @@ interactions: content-type: - application/json date: - - Mon, 10 Apr 2023 02:59:40 GMT + - Thu, 15 Jun 2023 12:29:01 GMT expires: - '-1' pragma: @@ -1770,67 +1794,69 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ip-prefixes User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.10\",\n \"currentKubernetesVersion\": \"1.24.10\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-jz2791nb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-jz2791nb.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.10\",\n \"currentOrchestratorVersion\": - \"1.24.10\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.22.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\": - {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-p1gj29ir.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-p1gj29ir.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\"\ + : {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.network/publicipprefixes/cliaksslbipp1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.network/publicipprefixes/cliaksslbipp2000003\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4776' + - '4771' content-type: - application/json date: - - Mon, 10 Apr 2023 02:59:41 GMT + - Thu, 15 Jun 2023 12:29:01 GMT expires: - '-1' pragma: @@ -1862,67 +1888,69 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.10\",\n \"currentKubernetesVersion\": \"1.24.10\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-jz2791nb.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-jz2791nb.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.10\",\n \"currentOrchestratorVersion\": - \"1.24.10\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.22.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\": - {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-p1gj29ir.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-p1gj29ir.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPPrefixes\"\ + : {\n \"publicIPPrefixes\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPPrefixes/cliaksslbipp2000003\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.network/publicipprefixes/cliaksslbipp1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.network/publicipprefixes/cliaksslbipp2000003\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4776' + - '4771' content-type: - application/json date: - - Mon, 10 Apr 2023 02:59:44 GMT + - Thu, 15 Jun 2023 12:29:04 GMT expires: - '-1' pragma: @@ -1956,8 +1984,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.1 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -1965,17 +1993,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08e4d571-04b7-434e-a1d0-9b8946d87300?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c68f3de0-caac-42cb-88fc-b659ba27bc06?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Mon, 10 Apr 2023 02:59:46 GMT + - Thu, 15 Jun 2023 12:29:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/08e4d571-04b7-434e-a1d0-9b8946d87300?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/c68f3de0-caac-42cb-88fc-b659ba27bc06?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_then_update.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_then_update.yaml old mode 100755 new mode 100644 index c63f36f36df..54771733e99 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_then_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_then_update.yaml @@ -18,25 +18,26 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002?api-version=2022-05-01 response: body: - string: "{\r\n \"name\": \"cliaksslbip1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\",\r\n - \ \"etag\": \"W/\\\"1eb73444-eebf-4dcb-a494-cc40edba073a\\\"\",\r\n \"location\": - \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"2957f59c-a319-423b-8924-f5c04e8b11ff\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": - 4,\r\n \"ipTags\": [],\r\n \"ddosSettings\": {\r\n \"protectionMode\": - \"VirtualNetworkInherited\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n - \ }\r\n}" + string: "{\r\n \"name\": \"cliaksslbip1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + ,\r\n \"etag\": \"W/\\\"af4a23af-ae84-444e-a4ed-0840e370ca76\\\"\",\r\n \ + \ \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Updating\",\r\n \"resourceGuid\": \"bbeb3a14-e388-40ba-af5c-5123a19cd87a\"\ + ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\ + : \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\ + \n \"ddosSettings\": {\r\n \"protectionMode\": \"VirtualNetworkInherited\"\ + \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\ + \n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ + \r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fcf95d38-7860-4c7d-a444-cf1e9ebfb937?api-version=2022-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/3bee0820-62ef-4375-8ab8-2a9f219e4ebc?api-version=2022-05-01 cache-control: - no-cache content-length: @@ -44,7 +45,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:19:36 GMT + - Thu, 15 Jun 2023 12:29:19 GMT expires: - '-1' pragma: @@ -57,9 +58,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 026b1e73-adaa-4321-8f86-7316bc43a7f4 + - a45a757b-73c5-42e6-ab53-71a18d17f90e x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -77,9 +78,9 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fcf95d38-7860-4c7d-a444-cf1e9ebfb937?api-version=2022-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/3bee0820-62ef-4375-8ab8-2a9f219e4ebc?api-version=2022-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:19:37 GMT + - Thu, 15 Jun 2023 12:29:19 GMT expires: - '-1' pragma: @@ -108,7 +109,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2b3ff111-6e69-4e05-8cfd-9dd7eb067f69 + - e0184ec0-81d1-4815-a30b-e6c549b7cf8b status: code: 200 message: OK @@ -126,21 +127,21 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002?api-version=2022-05-01 response: body: - string: "{\r\n \"name\": \"cliaksslbip1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\",\r\n - \ \"etag\": \"W/\\\"a1d00dbd-49ed-464c-bfff-5c19ab3bcbcf\\\"\",\r\n \"location\": - \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"2957f59c-a319-423b-8924-f5c04e8b11ff\",\r\n \"ipAddress\": - \"20.29.210.222\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": - \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n - \ \"ddosSettings\": {\r\n \"protectionMode\": \"VirtualNetworkInherited\"\r\n - \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n - \ }\r\n}" + string: "{\r\n \"name\": \"cliaksslbip1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + ,\r\n \"etag\": \"W/\\\"f4dae6fe-3366-4515-9c88-1fc1e61bd9d7\\\"\",\r\n \ + \ \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"bbeb3a14-e388-40ba-af5c-5123a19cd87a\"\ + ,\r\n \"ipAddress\": \"20.109.170.83\",\r\n \"publicIPAddressVersion\"\ + : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\ + : 4,\r\n \"ipTags\": [],\r\n \"ddosSettings\": {\r\n \"protectionMode\"\ + : \"VirtualNetworkInherited\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\ + ,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ + \r\n }\r\n}" headers: cache-control: - no-cache @@ -149,9 +150,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:19:37 GMT + - Thu, 15 Jun 2023 12:29:20 GMT etag: - - W/"a1d00dbd-49ed-464c-bfff-5c19ab3bcbcf" + - W/"f4dae6fe-3366-4515-9c88-1fc1e61bd9d7" expires: - '-1' pragma: @@ -168,7 +169,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ceb3370f-2c4e-40d1-adc3-409b59e2bdf1 + - 22702f89-84f1-40a9-a15f-5a49d6f44a41 status: code: 200 message: OK @@ -191,25 +192,26 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003?api-version=2022-05-01 response: body: - string: "{\r\n \"name\": \"cliaksslbip2000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\",\r\n - \ \"etag\": \"W/\\\"829ad1d2-9619-4b2d-9dd5-d60219ff6a9f\\\"\",\r\n \"location\": - \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"7e576738-0d9a-4147-99e4-b2dc72779c7e\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": - 4,\r\n \"ipTags\": [],\r\n \"ddosSettings\": {\r\n \"protectionMode\": - \"VirtualNetworkInherited\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n - \ }\r\n}" + string: "{\r\n \"name\": \"cliaksslbip2000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ + ,\r\n \"etag\": \"W/\\\"794125b8-9903-4c5f-9e47-59d861732021\\\"\",\r\n \ + \ \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Updating\",\r\n \"resourceGuid\": \"26167e99-f88a-4fe1-9048-2582d3078296\"\ + ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\ + : \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\ + \n \"ddosSettings\": {\r\n \"protectionMode\": \"VirtualNetworkInherited\"\ + \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\ + \n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ + \r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8a029661-3686-49ef-9b74-b34fd9fdd7d2?api-version=2022-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/cdc3ac84-de69-43b5-9aad-8c6daa09dbbb?api-version=2022-05-01 cache-control: - no-cache content-length: @@ -217,7 +219,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:19:38 GMT + - Thu, 15 Jun 2023 12:29:22 GMT expires: - '-1' pragma: @@ -230,9 +232,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 37f63d77-dee5-4d16-b0a2-8980be4faae1 + - 52eb34ce-2866-4a20-9eb1-530c1e0cf29b x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -250,9 +252,9 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8a029661-3686-49ef-9b74-b34fd9fdd7d2?api-version=2022-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/cdc3ac84-de69-43b5-9aad-8c6daa09dbbb?api-version=2022-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -264,7 +266,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:19:39 GMT + - Thu, 15 Jun 2023 12:29:22 GMT expires: - '-1' pragma: @@ -281,7 +283,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f4440178-c9f7-4ebd-8ef7-2937c8bc27c6 + - 0e862abd-39b7-4b00-bf80-c4594b38887b status: code: 200 message: OK @@ -299,32 +301,32 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003?api-version=2022-05-01 response: body: - string: "{\r\n \"name\": \"cliaksslbip2000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\",\r\n - \ \"etag\": \"W/\\\"23d086c6-52ad-41ee-ace5-675e21d56c37\\\"\",\r\n \"location\": - \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"7e576738-0d9a-4147-99e4-b2dc72779c7e\",\r\n \"ipAddress\": - \"20.29.210.238\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": - \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n - \ \"ddosSettings\": {\r\n \"protectionMode\": \"VirtualNetworkInherited\"\r\n - \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n - \ }\r\n}" + string: "{\r\n \"name\": \"cliaksslbip2000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ + ,\r\n \"etag\": \"W/\\\"ab076aaa-bdda-4b82-b134-28a9b3e27a9c\\\"\",\r\n \ + \ \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"26167e99-f88a-4fe1-9048-2582d3078296\"\ + ,\r\n \"ipAddress\": \"20.83.121.81\",\r\n \"publicIPAddressVersion\"\ + : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\ + : 4,\r\n \"ipTags\": [],\r\n \"ddosSettings\": {\r\n \"protectionMode\"\ + : \"VirtualNetworkInherited\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\ + ,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ + \r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '768' + - '767' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:19:39 GMT + - Thu, 15 Jun 2023 12:29:23 GMT etag: - - W/"23d086c6-52ad-41ee-ace5-675e21d56c37" + - W/"ab076aaa-bdda-4b82-b134-28a9b3e27a9c" expires: - '-1' pragma: @@ -341,7 +343,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2546c142-a8e9-4b5c-b2d7-7f11d5f779e4 + - e155cc56-bf35-4309-9d5b-25e307a1381f status: code: 200 message: OK @@ -360,8 +362,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -377,7 +379,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:19:39 GMT + - Thu, 15 Jun 2023 12:29:23 GMT expires: - '-1' pragma: @@ -399,13 +401,12 @@ interactions: false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard", "loadBalancerProfile": {"outboundIPs": - {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}, + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard", "loadBalancerProfile": {"outboundIPs": {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}, "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30}}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: @@ -418,68 +419,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1775' + - '2067' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-3ix8wizy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-3ix8wizy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n \"publicIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ }\n ]\n },\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-549vpxgp.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-549vpxgp.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n\ + \ \"publicIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ]\n },\n \"allocatedOutboundPorts\": 0,\n \"\ + idleTimeoutInMinutes\": 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n\ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54cf6cd4-42b9-4adc-93ee-9d2a8cbbff91?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1ddb9d92-0e36-4a30-886a-42eb32f6a4ef?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3302' + - '3630' content-type: - application/json date: - - Wed, 15 Mar 2023 10:19:43 GMT + - Thu, 15 Jun 2023 12:29:31 GMT expires: - '-1' pragma: @@ -491,7 +493,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -510,14 +512,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54cf6cd4-42b9-4adc-93ee-9d2a8cbbff91?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1ddb9d92-0e36-4a30-886a-42eb32f6a4ef?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d46ccf54-b942-dc4a-93ee-9d2a8cbbff91\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:19:43.5585524Z\"\n }" + string: "{\n \"name\": \"929ddb1d-360e-304a-886a-42eb32f6a4ef\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:29:31.2583483Z\"\n }" headers: cache-control: - no-cache @@ -526,7 +528,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:13 GMT + - Thu, 15 Jun 2023 12:29:31 GMT expires: - '-1' pragma: @@ -559,14 +561,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54cf6cd4-42b9-4adc-93ee-9d2a8cbbff91?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1ddb9d92-0e36-4a30-886a-42eb32f6a4ef?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d46ccf54-b942-dc4a-93ee-9d2a8cbbff91\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:19:43.5585524Z\"\n }" + string: "{\n \"name\": \"929ddb1d-360e-304a-886a-42eb32f6a4ef\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:29:31.2583483Z\"\n }" headers: cache-control: - no-cache @@ -575,7 +577,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:20:43 GMT + - Thu, 15 Jun 2023 12:30:01 GMT expires: - '-1' pragma: @@ -608,14 +610,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54cf6cd4-42b9-4adc-93ee-9d2a8cbbff91?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1ddb9d92-0e36-4a30-886a-42eb32f6a4ef?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d46ccf54-b942-dc4a-93ee-9d2a8cbbff91\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:19:43.5585524Z\"\n }" + string: "{\n \"name\": \"929ddb1d-360e-304a-886a-42eb32f6a4ef\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:29:31.2583483Z\"\n }" headers: cache-control: - no-cache @@ -624,7 +626,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:21:13 GMT + - Thu, 15 Jun 2023 12:30:32 GMT expires: - '-1' pragma: @@ -657,14 +659,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54cf6cd4-42b9-4adc-93ee-9d2a8cbbff91?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1ddb9d92-0e36-4a30-886a-42eb32f6a4ef?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d46ccf54-b942-dc4a-93ee-9d2a8cbbff91\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:19:43.5585524Z\"\n }" + string: "{\n \"name\": \"929ddb1d-360e-304a-886a-42eb32f6a4ef\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:29:31.2583483Z\"\n }" headers: cache-control: - no-cache @@ -673,7 +675,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:21:43 GMT + - Thu, 15 Jun 2023 12:31:02 GMT expires: - '-1' pragma: @@ -706,14 +708,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54cf6cd4-42b9-4adc-93ee-9d2a8cbbff91?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1ddb9d92-0e36-4a30-886a-42eb32f6a4ef?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d46ccf54-b942-dc4a-93ee-9d2a8cbbff91\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:19:43.5585524Z\"\n }" + string: "{\n \"name\": \"929ddb1d-360e-304a-886a-42eb32f6a4ef\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:29:31.2583483Z\"\n }" headers: cache-control: - no-cache @@ -722,7 +724,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:13 GMT + - Thu, 15 Jun 2023 12:31:32 GMT expires: - '-1' pragma: @@ -755,24 +757,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54cf6cd4-42b9-4adc-93ee-9d2a8cbbff91?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1ddb9d92-0e36-4a30-886a-42eb32f6a4ef?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d46ccf54-b942-dc4a-93ee-9d2a8cbbff91\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:19:43.5585524Z\",\n \"endTime\": - \"2023-03-15T10:22:24.0774349Z\"\n }" + string: "{\n \"name\": \"929ddb1d-360e-304a-886a-42eb32f6a4ef\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:29:31.2583483Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:43 GMT + - Thu, 15 Jun 2023 12:32:01 GMT expires: - '-1' pragma: @@ -805,61 +806,161 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1ddb9d92-0e36-4a30-886a-42eb32f6a4ef?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"929ddb1d-360e-304a-886a-42eb32f6a4ef\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:29:31.2583483Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 12:32:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1ddb9d92-0e36-4a30-886a-42eb32f6a4ef?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"929ddb1d-360e-304a-886a-42eb32f6a4ef\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T12:29:31.2583483Z\",\n \"\ + endTime\": \"2023-06-15T12:32:36.241386Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 12:33:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --load-balancer-sku --vm-set-type --load-balancer-outbound-ips + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-3ix8wizy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-3ix8wizy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n \"publicIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-549vpxgp.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-549vpxgp.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n\ + \ \"publicIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3520' + - '3848' content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:43 GMT + - Thu, 15 Jun 2023 12:33:03 GMT expires: - '-1' pragma: @@ -891,63 +992,67 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.24.9\",\n \"currentKubernetesVersion\": - \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-3ix8wizy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-3ix8wizy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n - \ }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-549vpxgp.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-549vpxgp.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"outboundIPs\": {\n \"publicIPs\": [\n {\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n \ + \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \ + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ + : 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n\ + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n \ + \ },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n \ + \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n\ + \ \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '3775' + - '4103' content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:44 GMT + - Thu, 15 Jun 2023 12:33:04 GMT expires: - '-1' pragma: @@ -979,63 +1084,67 @@ interactions: ParameterSetName: - -g -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.24.9\",\n \"currentKubernetesVersion\": - \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-3ix8wizy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-3ix8wizy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n - \ }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-549vpxgp.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-549vpxgp.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"outboundIPs\": {\n \"publicIPs\": [\n {\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n \ + \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \ + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ + : 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n\ + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n \ + \ },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n \ + \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n\ + \ \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '3775' + - '4103' content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:45 GMT + - Thu, 15 Jun 2023 12:33:06 GMT expires: - '-1' pragma: @@ -1067,61 +1176,62 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-3ix8wizy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-3ix8wizy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n \"publicIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-549vpxgp.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-549vpxgp.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n\ + \ \"publicIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3520' + - '3848' content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:45 GMT + - Thu, 15 Jun 2023 12:33:07 GMT expires: - '-1' pragma: @@ -1155,15 +1265,15 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUTBKS1FqUTFabW8yYjNObWFtSnRNMGhPWlZWeWVrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCZWsxVVZYaE5SRVYzVFVSYVlVZEJPSGxOUkZWNlRVUk5lRTVVUlhkTmFrRjNUbXh2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSSENtdEhlRTVGZWtkRE9VUldORUphZDJoRE1WaG5VMnBxVG1NMVdUVnFTREYxWjBWYVFrMXBSbU4yYmxCMFZWQTRSa2t5YzFSak1tZENSSEZ2VjI4clJYUUtWVE1yTlVwT2N6SndjamRVSzFGSU1tUTFibkpGZVV0UVRVeE9SVzVOWWt0VUwySlBORGhPZWtKcWVqSlpWMlppWTJGdVVXNUxZVGR4Tm01NWJVWTFXUXByWTFNeUszWlRTR2hwZDBWME5sTXlOV1JSTTFGdlYyMVRaMDByUTNoaVduQkhkemROVDBwVGVHTjRibVY0TWtGbVJrZGFjSGh6VlhwbldFODBUVFZoQ2pWSmJqbDRTVVJNWVZsM1VYa3dTV2RTVmtveVJXdHJVSFE1WjJoUVUxTmhia1psUmtWWlR6bGhhVEJ4YUhJeVFrbzJMMGhVYW0xYVJVSlNOM2M1V20wS1YxcDBlRUUwZUhabVdXcExjVlEyYUZsdFQweFZWVVJsUm5CUGNXSmFaMlZITWpGME1IQkJUekJzUkhoUFRFeG1Za2RoUTJSTVNXOUVRa1JCY1dKU1l3cEtOMnBaUmtGclJqZ3libVI1YXpkTVNqWldWamcwZEU4MVYwVmxUR2hPZW1OclNtOUlTMmRUUjFoUmFtbHJiVUpRWkVkdksyUktVRTR2ZUVwV2JtUk1DakZWVURVNVR5c3hVVkJOTHpsUWNISXhOblJCWW5WNVpsWm1SVlJvY21WTk16ZDNORkpIT1ZGb1NYaFdOMlJzVGs5b1VYQnRTVUpSUjJwRFUwZEllREFLU0RGV2VUSTJhV05yUkZSSloyaHRSU3RNV205NVZYUkVTRUZuYTNsbmFrWkdNSEo1WTJsTFJtZE9kbVpVU25oRUwyaFZNR1pXZVdGeEswaGFNR1ExUXdwRGEwTkhRVFJTY1hkYVNEUnlabnBMVkd0c1p6UnRkRVo2U0M5T0x6ZHJVRkZDTVVoR1RWbFZSRWxIV0d4clkySktNRWRKTDJkeGJIbG9ZekZGTTBvd0NtMDFjMnRtTW1WT2VVNUpSMUp5YnpGb2QwNXRkSFZ3WkZjME5VVnlhamxHV0RCbVVVVjNSVmRZTVVSVlIwMXhiWGd6VjBvME1VbFVjRE16WjJGeU9Ib0tWVnBTV0dwdFdFZ3pWMHRxYUdsS1JrZElWVTVWZUZOYVQxbFBibmhHYjFCQk1IcHhSbFZ3SzFsM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWWGJqUXplVWM0UkVOMmNVSXdLMVpKQ2xVclNsaDJRelJYV1hSUmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGTU9VNWtPV2xSWldVMlNqbG9hRWxKUjNrMGNYSXdVRFJpWTAwS1JsaFhUak5hSzA5cGJHUnFVRXcyUm1ocGQyTm5aekpEU1hNMVlUQnRTVzUzZFRnNU4xSXlZVGxSVjJodU1FWmxSV3MxYlZoMGVXZFpVWGhyVEhaMFRncDNWWEpuY1hCSFkxSjZRVXRoUWpKVmRESkdTV3haUmxSWFZHMXhWWFZWYkZoeWIzVjBTRVZUWTJGbGFqSkhlRmRNYVZadmVVUlVURXA0UXpOdVlqa3ZDbmxZYlhaMFNHeHJha0Z0WWxSc0x6Sk1TMk0zWm1ZeVMydEZNRVpHYjFBMFRFWlplamN4TWpJeVNFNDFURlJsVDJORmVFaElVWFY2U0ROcWVpODVhbEVLVnpoYVNWTTFXa2RsZDBGWlRqTnlNWHAwYXl0bVVsRkRXa3hRZEd0WWEzbFNkbWM1TTBKb1lUQk1hU3MzVVhReGRrUnBkMHhLUVdkYVRYSklUMVZHTmdwNFpqbHNTMlI1UmtGSVkyRlJXRkZCU1hOeVN6SlRSVmcwYlUwNGFIWkRWbHBqVTBablJHSnBOemhPTml0WVdGVnlZbGQzVDBaVGJXczFOSEpuWjJaR0NuazFObVpST0ZaMFFtSnhhM0Z6UkVKcVNXNUpLeXR1YVRCSVFYWk5SbEpMYWxoQ00zVTJhMnRQUmtaSGJrNW5SMWw1WWpocmVIcFVZbHBGWmt4NVdWb0thamw1THpKVlFVdDFXR0pwVVVoSGNHTjBablJIU1VkM01EWXlUelJ3VUVKc05XTlVRa0ZvVlU5TmQyUmlWVEUyWkVWQ2VUazBNVUZyYlRKUGEycFJZZ3BvU2xkRlluaDFjV3cwVGtGcFIySlhZMlpTV1hGbVkzSTBLMnQ1UzFCc1VteEtSbE5hWXpkdFQya3JNemx4VGtKd1QyUkZlRGxrTWxOUlpHNVJlSHBSQ2pnMlZFeGtiM0Z2WVZVMk5tOVVRVEJ6Um10cVNsUk5ZWFozZVVGUGFqRXphMlZSWmtGbGREbGlkMHRaWTNvMVlURjBObTloTVhCVlFYVllaWHA1VFVnS1ZUVlhTVmhTV21KNmJuTndNMFZIVEVkWGNISXZVbTVhVkdoYVREWjBhRWhxVDNsSFJHWkJNa2RTY0dsd2JXWnNhakZ1VWtWQmVGZzNRa0U0VDBadmNncHZZbmd2ZUc1aWNFSTRTVFozYVV0T0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3R2aWlzd24tM2l4OHdpenkuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3Q3NGpsc2oKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3Q3NGpsc2oKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RldGdqaHFoeDZoX2NsaWFrc3Rlc3Q3NGpsc2oKICBuYW1lOiBjbGlha3N0ZXN0NzRqbHNqCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdDc0amxzagpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RldGdqaHFoeDZoX2NsaWFrc3Rlc3Q3NGpsc2oKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVTVyTmxKREwyUXZjRTFoYzJaa1RubEpZbWhuU1RoM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDE2UlRGTlZFRjRUVVJCTWxkb1kwNU5hbFYzVFhwRk1VMVVRWGxOUkVFeVYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCZUVaMFZDOVFWbWtyVms0eU5YbzFTelYyV0hZS1VscG1kbEY0VFZvek4zQjNjV2hrWWtKSVltZHlNREpOU1V4dk5UWkhVSGRHZUVwVEwza3llbFZYYlhwVGJFSTVOVk54V1NzM1VHMXNTa3QyUlhSSlZBcDJlVmg2UzNKdlZFOU1Sbm92ZG05RlVGWmpjVFZCWlVWWWVERnpNa1J0Vmk4eWJFeHdVV1ZrYUVOTFNIRTFkbGhuUjJkTVpUaGtWSFpXT1VrNWJpOUdDa1IzVFd4aVEzVmlTblJ4VXk4M1ZWWmFSVEYzYm5CUGNtdFJhV3hMVlNzemRXTjROVzlMU0ZreGNrMUxaVEY1VWtsVGJEUldjRnBvYjBSUWIzWkpaMUFLVUU1bk15OVZlakpMUVRWSlZEZG1jMlpuVUROUE1tTlJiMmxHYVVNNU5HOUJPR0p6WlRKaFVFd3lXVVJEY0VobVIxTTNOV0puYWsxVk0yRk1NamxZZGdwWU5sRnNkVW9yVmxKV1dIZHZaa1J4TWxOaFQydHZPRWR6SzBGU1JuaDZNR1ZyV1VnelJpdFZPSFJRWWtwMFQyZExUVmxLYnpWUGJuWnBWRkpLU0VSMkNrUmpUVWh2UWtkRE0wNVhRVms0ZFdzM1pFRndWbnA0WmtjNVpIbFdNV1ZGT1dKYVNsaGpNaXRTYWpOTGRuVkxUVzltWlNzdmFGWnhWelV6TkRSd1ozRUtWbm8zVjNoMU56Rm1VSEJVV25GMVdrVnRaV2xhZVhWUFlVUTVTMGx5VEdaRk1reE5OVlJaWkdOQk1XODFjbGhJUVdzeWEySldhSGxRT1VabVMyOHlkQXB6YTFJcmIzaEdiRkZWTTBGQlIzUlhhbk52VkZoalRtVkNPRXhIWTBaeFJYQnNhVTVWUVhSaVZVOUtVbHBFWTBsbWJsZzBhRUpxTldGd09VZFNNbUp4Q25aVEsyZ3hjSGhMVVd0QmRXeHZabmRDU0dzMmVXeFBiV3BwZG1Rek9IRXllVEJCYjJSRE5VaE1hVXMwVVhJeFZVMDRhRFFyTlRaTWRqWjFlbEJpWnpRS1EyZEtSREIxTkhWYVdIWllTVWt2ZWtWaEswdHVXa3MwWjJSVmRXbEVabXB5WmxvMlVHcHNMMnhQVFZGT1ZVZFhUSHBrT0Zkek9VYzVjemx4ZVRCcllRcHpiVWxpZUhsblEyNXNOblp4ZVZjck0ySkVibUYzVlVOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWVjI0ME0zbEhPRVFLUTNaeFFqQXJWa2xWSzBwWWRrTTBWMWwwVVhkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCU1V0eVdrSjBaR3BpYTAxaFYwTlFkR3A1TkFvNVVERXdOblJwZUN0ek1HVk9jR2czT0ZWU1pVWlJSbHBKYjJwWWNHbEphMlZNTVhSUVFuWXlVVFF3UWpOcGJuZHRkRkpKUzJsUU5HWnBLM0ZETjNKR0NuWjRWWEF4TVUxVVoxZHplRGRyT1dwTFRsUXJaWGhMTDI1aWMwazNSSGN3VkU0MllrUjFMMHR2WkdrNGExQnBVekl6WXl0QmMxZG9aMlZIUjNWWWFHY0tXVFIyYlVaalMyTjVPUzlWT0UxcmJEQXZUakl2VkV0NVUxTTNNMGwyU0daelVrY3hibkI2WVZoc0wwaEtRMlFyYm1sUmFsQmpNR1ZTV0Vka2FpOVdid3ByZG5kSWJrRkNZbUptWjBodEszRTNTRXM0U1RoUlVHaFRUVk5aTm1SNFYzSndNbnBJYVhORk0wTm9WM1JwUTNwTmIzWm1jVEl2T1V4NVRESlhaWE1yQ210VVR6Sk9UME5JU1dOclpIWm1hMlZEWXpkQksweHpORk5HTDBkcVVrRjBjRzUxVW1WeVJUaEVkVEJOUm5WWVlXTkRNbVExY1d4RWFIUllTMWx2U0hjS05UZG5SWEl2YWpKRVJYcGpXak5aZGxkdE55ODVlSGR0WmtoUU9YWXpUWFJ4YkdKNFZqWXJjRk5UTDB4SVFVRkVZM3BNTkhkVlIya3laVzFQTW5kWVZncEtTVlZGYm1OdlZWbEJTSEZ0TlRsRllWVkVVbVJEYTFCaWN6ZERhemcwY0ZGUk1XdERNbkUxYkd4UU0wODFXVEl4VTBsNVpFTkJLMW93U1RoU1YwRnZDalZDT1V0TmRGWXlka2hQZW1VMmIyZGpjalowWWpCTE4zbHFaaTlzWm1sdmJHRmpZazA0TW5SUWRHZ3dMekozYUd4NlJ6QTJORTg0ZW0xTmNWUXlWSFVLVmxodVRUbDJja1Z5VUhsdlYyVjVNV3BZWlZoQ1lqbFVRM2RTWVhGS2REQllhM2xMWWpOT05YVk9WRTFsVkZkR1MxRlNkWEZWY0RoTGVtaEpaVmhRTndwT2RtZEdTbU5oTDBFNFJ5c3dlR2d6TUZwSVkybHZOMlJPZWpKVGVXczRZMGg2VjBreFRtWnhNRGRrZGxCclMxaE9TbnA2VURob1QxZExTVkIxTUVNeUNsaHVSMkYwVERCYU5IQXhURTFyVjBsQ1luQnJaMHBhYndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMmRKUWtGQlMwTkJaMFZCZUVaMFZDOVFWbWtyVms0eU5YbzFTelYyV0haU1dtWjJVWGhOV2pNM2NIZHhhR1JpUWtoaVozSXdNazFKVEc4MUNqWkhVSGRHZUVwVEwza3llbFZYYlhwVGJFSTVOVk54V1NzM1VHMXNTa3QyUlhSSlZIWjVXSHBMY205VVQweEdlaTkyYjBWUVZtTnhOVUZsUlZoNE1YTUtNa1J0Vmk4eWJFeHdVV1ZrYUVOTFNIRTFkbGhuUjJkTVpUaGtWSFpXT1VrNWJpOUdSSGROYkdKRGRXSktkSEZUTHpkVlZscEZNWGR1Y0U5eWExRnBiQXBMVlNzemRXTjROVzlMU0ZreGNrMUxaVEY1VWtsVGJEUldjRnBvYjBSUWIzWkpaMUJRVG1jekwxVjZNa3RCTlVsVU4yWnpabWRRTTA4eVkxRnZhVVpwQ2tNNU5HOUJPR0p6WlRKaFVFd3lXVVJEY0VobVIxTTNOV0puYWsxVk0yRk1NamxZZGxnMlVXeDFTaXRXVWxaWWQyOW1SSEV5VTJGUGEyODRSM01yUVZJS1JuaDZNR1ZyV1VnelJpdFZPSFJRWWtwMFQyZExUVmxLYnpWUGJuWnBWRkpLU0VSMlJHTk5TRzlDUjBNelRsZEJXVGgxYXpka1FYQldlbmhtUnpsa2VRcFdNV1ZGT1dKYVNsaGpNaXRTYWpOTGRuVkxUVzltWlNzdmFGWnhWelV6TkRSd1ozRldlamRYZUhVM01XWlFjRlJhY1hWYVJXMWxhVnA1ZFU5aFJEbExDa2x5VEdaRk1reE5OVlJaWkdOQk1XODFjbGhJUVdzeWEySldhSGxRT1VabVMyOHlkSE5yVWl0dmVFWnNVVlV6UVVGSGRGZHFjMjlVV0dOT1pVSTRURWNLWTBaeFJYQnNhVTVWUVhSaVZVOUtVbHBFWTBsbWJsZzBhRUpxTldGd09VZFNNbUp4ZGxNcmFERndlRXRSYTBGMWJHOW1kMEpJYXpaNWJFOXRhbWwyWkFvek9IRXllVEJCYjJSRE5VaE1hVXMwVVhJeFZVMDRhRFFyTlRaTWRqWjFlbEJpWnpSRFowcEVNSFUwZFZwWWRsaEpTUzk2UldFclMyNWFTelJuWkZWMUNtbEVabXB5WmxvMlVHcHNMMnhQVFZGT1ZVZFhUSHBrT0Zkek9VYzVjemx4ZVRCcllYTnRTV0o0ZVdkRGJtdzJkbkY1VnlzellrUnVZWGRWUTBGM1JVRUtRVkZMUTBGblJVRjNZbGxRYmpSbkswRm9XbnBSVTBwV1NuQkZUbGxwZWtodUwxcHBSMnBQUjBodFl6UktZV3hhWXpsblprYzVTbU5sYjFST1VWSlhWUXA0TmxoQlRqbHlPVkUxTUhjNWFtOVdMMjl4TWs5WVExVlJkemMwTmtOU05sSnVZVmh4SzBJd2RrOUVUaXRsTTJGd1IyTXJSV01yYm5BMVJEUkNObVJNQ2s1NE0xTkxXamhtUmxFclJHaEhkMmR0UWxwSE5rcFlkVVo2UW5CeFlYWkRObGh2UkdORmRFWndabkI0YUdsb1dIRkViWEZyYTFKcVJ5dFNTRXh2WTI4S2JtMHpUWGs1UzBwNmNsYzVaakpsTkVSclVVSlFPV2t5UXk5b01tWXJTVmhMYXpoWmMwNHJWMDkyT0Vvd2FTODNXV0ZGUmpaamVtaFBla0ZLWW1WQ053cFJRMjl1Y1Nzd1NuQjNNMDVsVEhrNE1tVTNXVVpMWW05NGVFaENUM2wwYmtFd1NqaE5jRVJpSzJkalFYbFJWMlYwWW5SblRUSm5hblJDWldWdlJtOXBDazk1WjFsbE5EZENjbmRaYzBKTk1rdHBUazlOVFhGMVJHOUdNMEpzY1doRVYzSlVTVWw0VDFaVFVFWjNTVGRvVEc5eVVXaDRSa2R3TUdaT05IWkROMk1LY0hsSVdXaDVkemQ1V2xocVJUTlZSRTVFYkRkWVpUSlJhMUo0U1VFeVlsZzBZbEJETUdwdmRsa3hkWHB0VUdKNlZtRnlUVVZrZWxOUVRYUnNZVlk1V2dweE1XbElkUzlqUjA1WWFtUmhTMEZZYlRWM2NVd3JRMmhVV0RWMmJIVjFSREpSWVZGaVIyVmtiR00wWm1WdFlqaEVOV3h2Wm1SbGVqVm5SMkZpUVZwQkNtaEVNMnd6UWtoWVJreHRUbTFITjFCU09WaHBkMmhyY0RSdVpYTTNaeThyZDJ0Vk0xbFdVa1EwZEhaU05EWlZTSGRIWWxaMWVHMHZka1JEWWpneWEyZ0tSM2h4T1VNemVHTlJXR3BoUjFkQmNWbFRjVUZ3ZUVKMVJWSnNjVkl3Y0c4M2VuUkZPR2MxTmtaQ2FubzJWelJsTUM5M1ZUTXdRbkIwTmswdlFYSnBRUXA2Y0VnMFptSjNZbVp0V0ZaR1EzaHFiVFF5U1RSNlMyZE5WWEZaZWxSc1pUbHdRVVZvYjBkVFRXeGhlVE4xUmxWaE5tdERaMmRGUWtGTk9HTm5lbmRtQ2pCaldEZ3ZZbVFyYUVSVlR6QlhlRlIwVldSWUwzcE9jWFZQVTNOUFFVTjJVRFIxTTFkek0zUjNSbWxSTDBaNVRrRlNhbEpyZVZwVVlTdDBNR2MxU21FS2FEa3pTVWc1YXpaaU5tODBlVFpKYVdabmFUTklaaXRvU21WVVltUmhWVk5yVnpKcVpUSXdNVlYxVGxOSVJHcEZjMDk0VGpWWmRXOVdjbkZ2VTJONFFncGhXVTQxYzBsd1NETndjMkZzV2xWd1VtdG9OM0I0UlRGalZURnFSazVSU1ZrNVMyVlNaM0ZRVTBoYWQwUnpabTR5VFdreEwxY3JlRXRFU0ZOMFkwNWpDblZTU0hVdlNHWjRjbGxsYld4S1FYQmFXRVZFTXpJd1VtZHVTV3hQTldOMVFtNWpTbmgzY0VwTWIzVkdVWFIwTDFKcUsxWnplVnB0UkVKQlprZHRPRUVLWm5OaU5WQnFURlkxWVN0TGNUa3ZkVUozUVhSNU1sTkVWR2R2U1VaWk1EUlJiM0J1ZUdGM01UQkVhRFJvTTJGdVQwNWhiaTloZGk5T1UzUjVSVUZrVXdwYU0yUXdkREZJVmswdk5YbENaRGhEWjJkRlFrRlFTekEzVXpCUFVIZDZjVVpXVlRkcU1EWlFZeloyUmpsMVNHMUNSREl2Tm1acFZXdEVjeXN2ZGt0bENucHdabkZyZUVKMmFrVjFZbFpoWkRGQlNFUk5Ua3gwZG1WR1JuQTBRVlJsUm5CalltZE5abVJWV2xJNFV5ODJVamt6V0N0MFQyYzJiRTlHYlhCc1kxa0tNMFZVUkhOcWNVUlliWFV6ZG1aQ1ZUVmxTMDR6U0hJMldYVlFabEp3V0RKR1p6Um5jalp4Tm5NM1dUTlJkSFppVEhoS09UWnNZMlJZUjBWeEwxbERiQXBIVlRoVlNHSldlR1UwVFM4elZuSlNLMHRHZDI5UFpuVTRRekZGWkdnM2RtOVhiV05YWlVSRk5XaFNaSEpHUXpWb2IyMVJaRkZrVFVWV1dVTjNhMm8wQ25BeWFVZDBlVEl2YkdNeU5XSTRVRU5ZZFRNNFNtNHdhbGxFYWxoWk1VUkRNbkZ0VFdkVVJqaE1XalZVU0VSMlREZE9TRVZNWkVKS2JtVjBlalpyWlVVS1NtYzJOaTk2YlZZeGJsa3pVVlFyU2xGWE1WVjVkRWhsVVdwcWRYQTBSVlZVYzFwaWQxUk5OM2MxYzBOblowVkNRVXRRU1RWYVRpOXBiRWh5VUhVeVJRcFdTMHh6TkM5eGNIVXZjaXRuVDJVeFdubEJXR1pZV1RGSlMybHdlVVp3TDNkU1QwcElUR3hKU0U5Nk1td3dja0YySzBORk1VdFFRbWxvTlN0aE5HeE1Da3RDUmxOT2REaDVUR0k1VVhGS01rZFlPRkUzVGxNM2EyNTZUVFJFU25sU2FHTnZWa2hvU21GdlduUlBRWFJDVG5kTlFqazBNVnAyUTBSVllqTTVkVXNLSzBkU2NWRnZObWxDUmpJdmR6VXZaRkp2ZFhaYWEwcEVia1ZXYzA5MlIxRXlMMjlzY0dSeE5qUXpibVZUWkhsNFIxcDBSa05qTjBWSVpYTnlkRzFhV1FwTWFWaFFUM281UTB4WFIxSmpXR1k0VmpnNVV6Skhkeko2Y0VGSGIwZDJiVGhpVFU5SlNrRmhaRFJDUkV3eGFWaGlUVk16UWtJeGVVazRMMUZRVkhKUkNsbHZTazk0U25OcGVteENOalZ3VkVoTVkycE1SMlJuUXk5TlVXUlRibkJyVjBKVVFWcEZaMVk1SzBoNFIyRXJVamxCWXpKbVlYZzRiM2wzV214bWRGY0tRVzVqWlhweWMwTm5aMFZDUVVwelVFOUdRVWQzUVZaNVRDOXljVTlHTlV0cEt6TTRXbWRTWjNabGFuUnBXQ3RGSzNKcEwxRkpZV3hMZG5kdWJ6VnNiUXBwY3pGeVEydG5XVWRvV0RKblQwbFlSREZ0UlU5T2EycFJiVGszTlUxVVRVRjFha2x0U1hsc2JVOUlUSFp4ZUROalRrdHZhMFJGYnpoMVJVUXpaMUpCQ2taaWVtZEJVSFJuV1doYWFEVTNRM2c0ZVdZcldqaDNOMFZzUVc5V1pFeFFkMU42ZWtaVldEbFFTU3RzTTIxbFZtNUpWaTkyT0VoSGRVOXhjWGRYYUVFS1pteGhWMGxOWkRkVGEzUndPVFJNTWxKdUwwWk5NbTlGVlhFeE1HUklLMFJxUkUxTGRtRkpPVkpXVkhnNE4wdGllVW9yV1RFMlRtcExVMFpCYjBKell3cFJXWEpVY0VSSUwwcHJUVXBUTVZjM2JXbG1NbWMzTnk5SWJFRm5UV2hJTldObVQzRjVWMnA1YldaU1UxUTJjVFIyWVc1R2RuSkhLMGhqY0daalpIWkxDbVpPS3prMFdGQkZUSGRoTkcwelQwWmxaVEpDYlRSYUswRlBNemxvVDNSRmFsY3dRMmRuUlVGV1NXVk9lbVEyYTJsVWQxUnZUVzVyUVdkek5HNXVTMnNLVDFoVk9YSmFSbWhUUVZaWFoyOHJWRlo2ZVhwNlNYSnRTRUpDVHpBMWJHRkZPR3hCUjJ4eE4wRXlMMG93UW5WdFQyOTRUWHBzYkZNNGFVMVRWekYyTVFvd09FRkVjSFJqVUVVeE1qSTJja3BJZURaNFVHUklURFEzVUhNM2FteHVNVVpKVlRaWk1rNVZjelJMVWtScVNXbzFRVlpxTTJGWWNrUkpTRU5IWXlzekNrcHpZbVF3VG1WYVZtaHBkRE53TTNSb2NVaFVaMDlhTkhOTldYRmFObkUyUlhGMFRWTTFVRUYyV1ZWNFdWWnFNVWg2TUhKUmFWcDZWM2c1T1dkbVlYa0tRVUV4WVRaaFdHVnFOMkYyYkRoTFZIWjFUMFYxYlZWNWFIRjBhM2RhZVZsVVkwdFdRbkZUVTJaUmFscEtPRVV3U1U1S1dYQTBPVk0wVldKbE5UZG9WQXA0VTNvNE1VOW5PRmx0UlRsV1NVc3paVTFVVDNOWWVXcG5jWGxhVWxOUVZscENTeTlhUmsxblJIQkZaMnMwV2tGNVoyWjFlSFJvYkc5UVFTOTVaejA5Q2kwdExTMHRSVTVFSUZKVFFTQlFVa2xXUVZSRklFdEZXUzB0TFMwdENnPT0KICAgIHRva2VuOiBibnozdXRkZ28wYXU1OTA4OGFtZnd0ZG5jeGF5aXE5NDZlcDhlbWZ4eXVybzYycHc1ZjFtOHAxd2h2ZHFlNnNzbmFtZDN3NGU0YnpvMmhtb2FlYmg0cG90cmRzb212MWRsc3ZqOTVzbHJsbDcyN2h3czBsdWxzazdud21tdm8xdQo=\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSVDFCWVZVWk1RVGRET1ZOdVpqRkplazE0YUVGaGFrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVZYaE5ha1UxVGxSV1lVZEJPSGxOUkZWNlRVUlplRTVVUlhsTmFtc3hUbFp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVST0NqVjZiRGRtZUc0M1lVUXJXWFYxT1hGMllYWjBibk4wVUVoVE4zVkZjM1pSYkRkSGJXRk9abmNyVkZkdWFEZHBURmREUzJGSkszTjZOMlpIT0ZGTGN6a0tUM1ZOZGxkdU5YY3hVWHBUTldKdFlWaGlSbVJ5VVc4M04xVkpNR2t6ZHpoYU1HTkRTbEJFTmk5bFdIcDRRMUpRZFVjeU5reDJkbVJ6YURCamVIZFlVQXB3UmtSck9FWlRWaXRZU2pkMWVXZzRjamRMVFRSdlpHcE5Vak4yTDI5dFNEaHBhMnRJU2twTmFsUk1ZMUZuZFRaSVdURjZZVFJvUVdwRlZVeDBRa2xJQ2xkTloyMXZXRFJNTlRKRE1sQXhOWGczWTBrdmJGcGhXWFZMY0U1aWRFMUdiM1pqTld0SlpIQmtURXRWVjFCU04xRkNNVFpSVVUwdmFYWnZORUpIYVhFS2QwcG5aMDlOTW5kbFpVTnhiV2czVEZOSmFVSkpSMVpTVmxKUlpHWmxTVmN3V0dsV0sxTlJUMHMzSzB0S2RUZGtibU5tV2k5c0t6SllTbWRTUzB0VGN3bzBZak4yTUVseVFWaHBRWFpHWWs1WFdYbFZNRFprTWtWb1dVNXVWbVpYT1VvNWFUVTBVRGRyUkcxd2QyOWhXbmRWTVVoVVMwTjVSR2xtVkVwelRrcE1DbWxITkZkVVlYUlhOMUpqVWtrNGN6WmlOMUppVEZCbVUwSlVNRTVrVmtSVFdXNXNhWEJGZDNWNWQwaFFTM0JRVDBVNGVXdHNVVEUwTkZKRmJVUjFaRVFLUzFCcmIxVmFSVGs1VWs4d2VWb3pZVlJRUTBRcldXMTRVR0pUTHpGTVR6Y3lTM0I0WTJscFdHRTVjVmRDZFVoWWEyZDVLMmRET0ZkblltVnVkak5xUWdwSFZqRktXRk42UWpOcEwzcHZVMUJ6Ym5wMWJTdHdWRVVyVkU1NVlTOVBNa2hOTTJ4aFNVczFWRzkyZDFjMmFrWnBiak5KVnpodlQxVm5hR0ZJVlhWSUNrdGhlVmhVU0U5clRuSnJRa2x2TW1jek9XVk5XRk5ZU1hORmRuVjJhMDVhU3k5NmFUWnBNWHBZWVd4RVZrTmpUblJQT0ZCb1JWSTNieko1UjBGS2JUQUtUazU0WTI4MlFtaElUMHRpV1ZwM2VHY3lhMHM1VDBSV2NHRTRXVFZCWTFwRmQxcFdWRGhNUmxkM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWVFoyMUpWV3NySzFoNGRuQTFRbTFGQ2xseWQzSXljbTFaYlZKcmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRWNIWjNPVzk1U21kd2VGWkZRWHA2VEhGalFsQjViMW93ZVdrS2QzUXplbnBrY2t4WWJYcHpSbkZpVEVoVmFWUXlZM0pUZURSaFNqbHhiRlIzUkRBNVVWQk1lVTl4UzAxbmRpOTJTME5ZUjJOTGIydHdhRzVvVDNwT1dRcFZUVXAwZERKNmRWUjFlakY0YXpjNGJYUlRaWEp6TVhwaU5tdE1LM0I0VnpZNE9YWjRUVmcxWjJJNE4zRXJNR3RVU21GaE4zbHhWbkpwYjNCaFRYb3hDalJuZUZsNVduVkZhMlZ0ZWtoWU5qTmtOR0ZtUXpSMFJYSXhVeTh6TldGaWVrcG9Wa2RWTUVrM2VrSnhiekpRVXpkV1RqSkVSM2x0U2pKbVZuVk1ZME1LUVRoQmR6UmFhRlU0UzNWVWFERTNhbUZNTmk5VVowNXlkVnBRTTBob2QySjBRbVJUWTNneU0wOVFWa0ZpWVZSSFNWbFZTa1pQVnpCaGEyTmFPV0ZpU1FwMlZWVllXbnA2T0ZsQ2FGQlhUMEp3TlZsU2JtdHZhREF4VG0xUE9GUnJkalZxWTNoWUwyNUJWVlUyWTJsaWIzaHJWa0ozYm5kdWNHOXhaMVI0UjA1ckNqYzVjRkoxSzNSUWNIbE1TM0JQTHprelVXbGpUVGhUYW5WNGNGSjZLMFp0YTBaQlp5OUxPRmg0ZFV0RGRDOWpjbnBEUlVWTUx5OW5Ra1JqYVcxWVJtRUtjVUZQTmxoaFRYZHBRbXhTYXpadmNXY3dTbHBaYVZObkswa3dNM0ZVWm5OblVsaHJWalZVWmtoR1ZrVm5SV3BtWWpWclJERnVXWFJGU0VWNEx6aDZkZ296V1V4Vk9EWjFXWE5GUW04MVRtUnViME5HUW1Od1RHTkxNU3RNZVUxR2NWWlJRMDl4V2pOVWVDOUJiMjFZZUdkWlYwSkdhRFZVYWtwM2JWazRXR2hMQ2pJMGFEWlRWMko1YkVKMVJVWnplV2R3V2pod1NFSjZka055Ums1NlIwNTZhRUpGUVRKbVYzVXlWVGxNV0dVMFJFSkRVbXhaVUdRMlZsVkdUMHBRVTNVS05GRmxUblpCWjFadlYwcDFMMlZIVFhNMU1qZEtOMDlxUm1SSFQyaG5UMmQ0VFZSVFpIWm5RVWhzV0cxMFdDdEVVa2xST0U5M2FXZHVWMlJqVW13MFRBb3piVEkwY1ZaUVpIUkZWRmRSY2tsVUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2w0dGllemUtNTQ5dnB4Z3AuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3QzNTdlaWEKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3QzNTdlaWEKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RjZDd5bDRremVnX2NsaWFrc3Rlc3QzNTdlaWEKICBuYW1lOiBjbGlha3N0ZXN0MzU3ZWlhCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdDM1N2VpYQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RjZDd5bDRremVnX2NsaWFrc3Rlc3QzNTdlaWEKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVXB4WTI1VFZsWTFNMnhTYlVsVVNVdHJjRkU0ZVUxM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxUlRGTlZFbDRUMVJWTVZkb1kwNU5hbFYzVG1wRk1VMVVTWGxQVkZVeFYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCZDIxNFNTc3pTVmxpVVVsdk5uQkxOVzF1VUZjS2RubDFSa1ZSVTJSUFUzaENVRlJ4U21WeVUxWkRkMjVsTWpNeFV5OU1XRWRRTWk5YWIwdG5NVXhtWlM5MmVHaEtiakk1Ym01SFYycEpOMlo1UkdrMWVBcGtTamhZVkZReGIxSmFOMnBWTUVsQlEzaFpha3BzTm5GdWJtdzJaRWx2TW01UFpIRnJjV3QyZFZjM2MxSTFTbEJ4V2tSV1ZYbEZiV1phZHpKS01YbGtDbWRwUzNWaFMwRTJhR2h6WW14UFlWUnZlVzFvWWxsdFNGUjNMMHRtUTNSSk9DOWFkMWczTlhaSkswOVNWVXRRYUVKV1kxSXhNMEpWTmtwcVMzaHBNU3NLY0dFNFNrRk9XQ3RYVW1aaVJVMUJXRkZaVldsTVMxaFFZMVJ4ZVU1dlZqTkRZMUZIUkVzeFZVRmlWRUpTY25vNVdTOUlXRlJ2YkZOSFJEUmtMMnBKZGdwUE5VOUVNVWRQU0RkTFkybDNNWHBTWjBaNGFtSnNkMHRNUVV4UGNFUkNSemhoVlRORGQzTlliWEoyZWpKMGVEVlVUVlJhTDFWR1VsbEplbFV2UzBSM0NsbFJSVWRSUVZKTlNVWXdUbEZ3UjJJdk4wOURNVFJHVVROQ2FHOWtka2RSTUhvcllsWlNaRVZtTnpKclUwRkhNRGxMTlVOemNUZEZTVzUzYUUxck9WZ0tXV2xYYTBOUFRWSTJiazl6UzNWSE9GUm1iWEF2WTBOQ09FZENSM1V2UWpKMmRGUlNVV2R1U3pSeFFrUk1RbXg2S3pBeE9HZE9PRWhZTldkNVpsSklkd3BST0hWNFdVcDFVMjF4YW05WFpuRjNaelZHZFVGTGIzWjVMekZ6Uld0ME4yODJkamRSWlRFd2RtbFJPR1l2WW1VemN6ZG5aMWg1YlhGWVVFcDRTekJCQ2sxMWRteDRZbVp5UWpaRFdHODNPWE5SZVVobloxWkhVbEV5VDA5eE0ybFhORXdyZVZZMkwydElNek5xY1VwTFpGcFVSVEprWlhKWFFVMURSMDB4Y2xZS1dscFpjbTh2TUROV00yWjRaVU0xVGtoWGJYSklhVEE0UjNGUlNEQkpXRkpLWW1FNGJGUllLMVZEYzI5UE5ISnZSbGc1TDJGUmRGWnpjbVpYYTFsTGRBcE1XR0Z1UzBkSmNqaHVjekJIYzFCVmJXcEhLMVZuYzBOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWVTJkdFNWVnJLeXNLV0hoMmNEVkNiVVZaY25keU1uSnRXVzFTYTNkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCUzJwWk5tVmFjM0pUTjJGUVZFdFplRzFpUkFwcE1VcHJhMnhEVlhBMlZpdGtlRkpxV0hwbllrRm5OM0ZZVW5FNFQwOVhjVk5rTUhCM1FuVk9OWE5QZDFVdk1uQTFkV0ptUTJaVmJISTFZakJNWlVjMUNpOU9aM2R1WTBKYVlVeEdRak4yVjFSRFIwZFJUM0ZqWWtRclNYcFdlVWs0UzJOTk1UaFdUamxOYlN0dU5IcEdLMmsyTlUxd1pHa3dUVGxLYkVKUGVGQUtlR2RyT0dOU1prWnlXRVV4T0U4MFJHZFlLMmxoU1hCWFNUQXJhSGcyYkdzdk9Fd3hiRXB4UW01Q1QxUldPVmc1VG5ac1pWbzBlR2hHVldoSldHbDFUUXAyVUZjM1QzTndOVk4xVWxGaVptRXlOa1V5Vm5FMVdXNHZaek5GUW00d1IzWkVVMmRvY0dzMmNuWlhhV2x3U1d0eU9UUkRjWEV5YkVOWlRIQm5aRFJEQ2pKV1UwRjVOblZ2TkV4TmJFOUVSMFJUT1Rrd1dXZGxka3RTWWxKWGRqVk5jVFpGTVhKVVEwUm9VSEZwYmtoMk0xWm5LMUV6YTBGTFIycFRRamw0UVZRS09GUm1kMnA0TjFSSloxaHFkRzFYVlV0RVYxTlpaemhKVkZCd2EwSndaV1YwTW1GSlR6UjRPVVJCY1hkalIwZzNiSFpRVjNsRWFHWjJZVUpSZDJ0dVpncGFNRmxXZVVkRU0yMU9TVzlJYUVsWmVXZFJUalE1YTFaR00zQjROR05NVDNkUWRHOWtUekp3V1VaQ00wdHNOREJDZG5nNVFrOVZielUyV25Ga1dIQjZDa1lyU0RnMFRIUlBPRlkyTUdkME9YTkhWWGxvVEZoV1ZtVlJabWhVTVRBMmNqZDFlSFV5UkU5Qk1URXpTRVZyWW5ZclRGVjFVeXQzU0hkeFNrRklablFLWTBvd1NFMTZSMkl6Y2xCbVdDdE5lamRvTm5WV1ZHUlZWVEk1YjFKa1ExSlZjMUY1TVVSM2VVTmxXbmhtZUUxNllrUm1LMHhFZVZKSU1HRjFRa3hVWVFwbGIxcHlUalpXYXpNNVR5OUxSMDl5U1c1SWRVWlZVa0owUlc1YWNqTk9XamdyTTB4Q00waE9OVkJOYm1scFRFeFliVXBVVWs1dWRFWXpSREJtVkRadkNrMWlOa2RFUkN0Q1FWVlZUMUpOY0RodWRITjFjVEZSYVFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMmRKUWtGQlMwTkJaMFZCZDIxNFNTc3pTVmxpVVVsdk5uQkxOVzF1VUZkMmVYVkdSVkZUWkU5VGVFSlFWSEZLWlhKVFZrTjNibVV5TXpGVENpOU1XRWRRTWk5YWIwdG5NVXhtWlM5MmVHaEtiakk1Ym01SFYycEpOMlo1UkdrMWVHUktPRmhVVkRGdlVsbzNhbFV3U1VGRGVGbHFTbXcyY1c1dWJEWUtaRWx2TW01UFpIRnJjV3QyZFZjM2MxSTFTbEJ4V2tSV1ZYbEZiV1phZHpKS01YbGtaMmxMZFdGTFFUWm9hSE5pYkU5aFZHOTViV2hpV1cxSVZIY3ZTd3BtUTNSSk9DOWFkMWczTlhaSkswOVNWVXRRYUVKV1kxSXhNMEpWTmtwcVMzaHBNU3R3WVRoS1FVNVlLMWRTWm1KRlRVRllVVmxWYVV4TFdGQmpWSEY1Q2s1dlZqTkRZMUZIUkVzeFZVRmlWRUpTY25vNVdTOUlXRlJ2YkZOSFJEUmtMMnBKZGs4MVQwUXhSMDlJTjB0amFYY3hlbEpuUm5ocVlteDNTMHhCVEU4S2NFUkNSemhoVlRORGQzTlliWEoyZWpKMGVEVlVUVlJhTDFWR1VsbEplbFV2UzBSM1dWRkZSMUZCVWsxSlJqQk9VWEJIWWk4M1QwTXhORVpSTTBKb2J3cGtka2RSTUhvcllsWlNaRVZtTnpKclUwRkhNRGxMTlVOemNUZEZTVzUzYUUxck9WaFphVmRyUTA5TlVqWnVUM05MZFVjNFZHWnRjQzlqUTBJNFIwSkhDblV2UWpKMmRGUlNVV2R1U3pSeFFrUk1RbXg2S3pBeE9HZE9PRWhZTldkNVpsSklkMUU0ZFhoWlNuVlRiWEZxYjFkbWNYZG5OVVoxUVV0dmRua3ZNWE1LUld0ME4yODJkamRSWlRFd2RtbFJPR1l2WW1VemN6ZG5aMWg1YlhGWVVFcDRTekJCVFhWMmJIaGlabkpDTmtOWWJ6YzVjMUY1U0dkblZrZFNVVEpQVHdweE0ybFhORXdyZVZZMkwydElNek5xY1VwTFpGcFVSVEprWlhKWFFVMURSMDB4Y2xaYVdsbHlieTh3TTFZelpuaGxRelZPU0ZkdGNraHBNRGhIY1ZGSUNqQkpXRkpLWW1FNGJGUllLMVZEYzI5UE5ISnZSbGc1TDJGUmRGWnpjbVpYYTFsTGRFeFlZVzVMUjBseU9HNXpNRWR6VUZWdGFrY3JWV2R6UTBGM1JVRUtRVkZMUTBGblFVSmxURUpWZEhSb1dXVjBkVEJoYzJaak1ESlBZM0p6WldwRFZsaHVVMDQxTVdsRGRtbE5aSFYxTm1KUk1rWlJlVGQyVDFKNlRtNVdMd3BOWTJFeFVXeHlRa296TTI1S2QwTjRkbXhOZEhkbllXazVUbU5ISzNVeFEwOUhWRUp2YVVreVZIaHRVU3NyYm05TlJ6ZzJTVGxGTldOS1NscFFZV05uQ2pGUllqTmpSVGsxWlhwSUwwcHZiREo0Tld4NUsyVjFka0ZLVW5kc04wdGhUMEozTlZJMWN6a3hWVVJ2ZVhwbVpHcEdlbkI2UlZSTlF6aG1VbXRPZG04S00xcG5XblpYT0hOSVVrWnRObEJJU200MlFVVTBjVTF0VUU1SWIycDRjVk5XZDNoR2QwWm9ORVl2ZDFaRmRIcG1WMkZJYjFOWWJIWXdSRXhIWTBOV1lncHJlbEV2YW5jMmJtRnRZa0ZwZFZGSFVrTlFTelo1TVhVM2VFcE5ZMU5HWlZOcFMwNU9MMkZpV1N0b2VVRkZSVUZhVGtoMU5ERmhUa0kxUTBJME5qUXlDamw1TmtkcVZWZGlUVzB2Tkd4TlZGSnNaSG96ZW1oclQydEhiRUpVTURWMmFXWkpNMkpIVEV4eGEzaE5kVVp4YkV0eGNXNVNRekJKWXpJd1FsWlNhV2tLVVhsaGN5dHplbWQ1T1U0M2MzUmFWaTlqWlhkdmFEVmthblJHWm5sUmFqbGxSWGxVWWxWM05IbG9VMmN3TVVaQk5rRnlORWszVTJOSWJ6TkhNazkyUXdwWFREWm5iSE5MZGtWWmFGcE1jQ3RvUTFOSk16QnFZalJVT1RKaGRWbFBkVGhzYjJ4M1JtNXRVMWR5V0c1U1dFRlVNVE5zYjBGM2RtcHBiRU5yV1ZSQkNuUkZlbkZpU2pGNmNHRk1aV3BGV2xSUE5IQlllRWt4ZUZKUFYwMVZUek5ITUd4UlRpOHlNWFJyYlRKYVlpODRUa041WlRGdWJDc3llSFpSYXpaNVZsWUtZMEkxYjFkVWNuWXJjamRWTjFOVVlXTnVabFJYWW5OcE5HMUVUbFpwV1c5T1EwdHBPVEZGY2tOaVRqVnBjbWRJYkZkV1pVVlhRVXQ1TVVKTlNHeE5XZ294U1RCblNHZFZNMGxKV21wUVRteFJlRUkxZGpsdFNVRlhRVWhUTm1sVloxSnVjRFF4WjI5a2RsRnpVMmRUYTNKblVVdERRVkZGUVRCWFVVSXJOWGRsQ2s0eVpsRlpLM1ozTkZGMmFWVm9XR3hzU1V4SlJISjBkMkV5UWpWcU9VRXdkRWRwYURCTmFHbFVMMnBhU1M5c1MzZFhjSFE1T0dkVmNsYzVjazV1TmpZS1pFWjFVVk40U210VWNubGFkbkJMWkRGaGRGTlBTbmh2VUVoM1JrWlZXbTlwYlU5S0syVnhhalJSWkhOa1RrZGthRXN4WVU4MlJYcGxOelJXVDNGV1NBb3pSR3BIV25aRk5XOXFOWFphWlcwMk5rYzFjM042TlVGVE5IRlhUR0ZWVkhaS1ZUWmxWVVJNYjJrMFYxTjFSM1JNTjBOVVozcEVTSEpOUkhCM1ZrTXlDbmQwVkVsb05HcHZLemxUY21zMVRteGhhbHBHUjJJNFdUaG1VMmRuYm5BeVJDdHdUVlkwYmtsM2NIQkRSRkYwVDFGaU5UZGFTbXQwYjFweFNVOHZRbFlLZDJabE1XOWFaeTl3TW5reVpqZEZVVzFJUms4NVVYaFBTblk0UjFWdFVITkVaWEpVYTBsalRsTldMMDExWkVocWJYbFZVR0UzZVZSTVYxRk1SVEp2VndwM1ptRktWbmxRVWs5eldsbFdkMHREUVZGRlFUZGlUbUYyV0ZZcmRsVmFlbkppVTNoc1RuUldhV2xzZVM5WmVWWTBRVkkyYUUxT2VWZFplaTg0TmtWRkNuazFOV1JxYzJ4elJVSTBLMEpaTW10M00yTXZNWE5ZYmxaTk9IcExUV3hXVWxkd05rNXFNMHRyU0U1aVpUaFVURXh3TWl0bWFtRnNMMFZZWVZwelVGb0tkMDQyYlZvcmFtVlhRVTh6YURoSVJXVkhjV2hUU1U5VGJHZHZjMWRWUkV4eEwwSlBSMlJaVTNkU1NIaElSa0oxZEV4cWFEaFZOVGw1VlhkNE16TlhWd3BsYTBWVWJtTjBlV1pXWm5OVlpYcHNiMmx0YUhSak5VaFJOVWhxZEhSVWNucDNZVVZ5WnpGak0wcEpZelZvVDNSUlJ6WlBXRkpvUVhkQ1N6SkJUM2hhQ2xSRVZGRkVjbXhTU0hFM2NtWTBLMjkxYjJGM1VGSlpWMk5XZDJSdGVFWlNiR0owZWxab1VIUkpjbkpOZDJveWF5OXhaemRZY0doU1NXaFFZVTgwVlZNS1lqQmFVVE5TUWxSVlpUQlBjMFpOZVcxbVRUVlNVbmt3VDB4SGVVc3hVbXRqUjJGNVNXNHpWR0pSUzBOQlVVVkJja3BEY1VoaE1teE1WelZQVkZCek1nbzRjRVo2ZGsxcE1VRjZZbWhJTVhOVmNFUnVTRVpYUnpJdlprODFXVVJMTURZd2JXWXdjMnA0T1dkTU4ycENhVWREWjFadlN6SnZNM2xuZEc5SFMyRlpDbkZzWXl0elpFNTBXbkJ0YURCdGRqaGlPVk5hTnpsWGREbEdaR2xpSzJkVWJGUkphMFJSV25aMFpHVlZTazAyVDJWdE0wZFhlVmMxTW0xSGEwTldWRWNLWkdSTVZYaG1NMmhtZDNJMldrdEtjVXBLWldKbGVGTjJPV3g0V2pZelNXVkpTazkzTlZwbGJIWnJZbU15TWt4S1VFeE9hMDF0UTA1eWJsaHJjV1ZoU1Fwa1NISndlVVkzVTFaeU1WSktORE5hVW1oaFoySmpaakZKZEhGeFptWTFZM2xTZVU5VlQyVXZXQ3RzV0VWcGJ6TmtRbUpEVEdaMU9VRllWbVpoUlZSekNrOU9VV05rTlVnMmNHeG1SR2hoY2xablkyWjBZM1IwVFhkSkswZFBibVJETWxCVGREWlljREJDVUd3dlFYZENVRzU2Ym5rNGRGbGpNbFVyVVVWd1R5OEtURXAzYjFWM1MwTkJVVVZCYTJ4a1JtMXFZbTlJUjJSMlpVcFplV0pyTjB0NmVFUk9kSE5SUXpCaVVuZExZVk5oYkdZNU1EVlBNVkpKYm5OU1dtOU5hZ3BuU21wa00yeFdhVUoxVlRNM1IxcFVSV0ZsZFNzMFJsbGxha0ZtY0ZveFRsSk1iVUZ5VTFwMldWQm1SU3MzWkhoWlYzTjNSblY1YXpreFZXTmFaMU00Q2xCeWRYSkdiVEUxU2tKdGFIbG9PRmM1UlVNelNsRjJOMWRLVUU1M1lVcEhWVms1VjFCbVVsYzRMMU5RVW1oNmJ6TkVSMGt3ZFZveVEycGFaV1ZXZEhvS01WTTVORlZ6Wm1saFNDOTRRM2hzUVZSd01WYzRTVEJPTUVwMFYzWkZSMFl4YkZsMVlrbG1XWFJxTldGaU16UnhMM2hYUmpjdlQxTXhjRkE1VFRsT2Nnb3laRkZtVFVveWJGbzFSR05zTHpoMFQyZFdXVkpOZGxsNWNrcHdVVFpzYnpaWFZGRkJlRmx2Y1c4cmQxaFpRM2hGY1ZobFUxbzJXSGgxU1c1cWNrbHhDbGRrYmpCdVUwaGliVmRTWnpobFprZElUa1p3ZFRkMGRGTnlXWFpJV1ZWU01GRkxRMEZSUlVGMVVUTktRbHBWVEc1Sll6UjFTazFXZDNGaE9WTnliRm9LT0doSlZrWjNkMlZXZG1sVWJVVnFUV2h1Y3pBclpFWm5UMGRuUzBSM1EwVk5jbEZrVlZGQ2NYaDJVbVpXWlVaRlJqSkxSRWhEWnpsWFNrNDJiVVJWWndwVlZqZG1OMnByUTJjMGVYRllSVnBVYkhoWWQweHpkalZHVldWTGRHdHNLell5ZGpOcllUaG1jVEZ5UlU1NmVXNHhSMGxqYlZWVVlWSlBTa2hHYWtFMUNtNUdhbmxDTW5KTlpuTXdSRk5pVUhFMWRXcFBaMmRQV0doR2IzRmFXRGMxYWtSTWRFcElSWFVyVjFkR2FESlNOVFJ4Y21aeFpGZFBlR04yYVd0d01rTUtUbThyUjJKcllWRm9jRWhhVnpOeWR5OXVkbFZIU2xCaWMwUTJhQzlxZWt0WVRFRXhXa0ZGTW1GWVNHbEpSM05EVEUxVFJWbFFNazAwUzIxdlZFVmljZ3A2TmpKU1pGQXhZbVZUWVVwQmNHZGxiMEZGT0VKR1MyRTBOMWN6YVZKcVlXMUxUbEpCWm5WMloxb3pZV1JGUlRsTFNsVTRjazVYTkRKa2VHTnNVVDA5Q2kwdExTMHRSVTVFSUZKVFFTQlFVa2xXUVZSRklFdEZXUzB0TFMwdENnPT0KICAgIHRva2VuOiBmOWs4c3UxbnFxZjdwN3ZranE1bmJ1ejZxMXRudXZzYXhjcTR2ajE2eWMwb3hxdmVoaWd1eXY0Y2I4NjJ1dXpzNTg4aXMzdzRmbjBnano2M21td3M5M2w5eGlia251ZnUxMnJhZHR0a3Fqc3BpYTRmYThmdW91czl6NWxtemFoZwo=\"\ + \n }\n ]\n }" headers: cache-control: - no-cache @@ -1172,7 +1282,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:46 GMT + - Thu, 15 Jun 2023 12:33:08 GMT expires: - '-1' pragma: @@ -1206,61 +1316,62 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-3ix8wizy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-3ix8wizy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n \"publicIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-549vpxgp.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-549vpxgp.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n\ + \ \"publicIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3520' + - '3848' content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:46 GMT + - Thu, 15 Jun 2023 12:33:10 GMT expires: - '-1' pragma: @@ -1279,22 +1390,22 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "properties": - {"kubernetesVersion": "1.24.9", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "properties": + {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": - "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": + "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"outboundIPs": {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"outboundIPs": {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003"}]}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}], "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30}, "podCidrs": ["10.244.0.0/16"], @@ -1311,70 +1422,71 @@ interactions: Connection: - keep-alive Content-Length: - - '2390' + - '2718' Content-Type: - application/json ParameterSetName: - -g -n --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-3ix8wizy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-3ix8wizy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n \"publicIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-549vpxgp.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-549vpxgp.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n\ + \ \"publicIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/00f86548-d5d5-48f3-bf2a-ebfb3e475845?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a66acad1-ec86-413c-9949-19439e1c4592?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3699' + - '4027' content-type: - application/json date: - - Wed, 15 Mar 2023 10:22:49 GMT + - Thu, 15 Jun 2023 12:33:17 GMT expires: - '-1' pragma: @@ -1390,7 +1502,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1408,14 +1520,14 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/00f86548-d5d5-48f3-bf2a-ebfb3e475845?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a66acad1-ec86-413c-9949-19439e1c4592?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4865f800-d5d5-f348-bf2a-ebfb3e475845\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:22:50.2627816Z\"\n }" + string: "{\n \"name\": \"d1ca6aa6-86ec-3c41-9949-19439e1c4592\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:33:16.1026588Z\"\n }" headers: cache-control: - no-cache @@ -1424,7 +1536,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:23:19 GMT + - Thu, 15 Jun 2023 12:33:17 GMT expires: - '-1' pragma: @@ -1456,14 +1568,14 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/00f86548-d5d5-48f3-bf2a-ebfb3e475845?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a66acad1-ec86-413c-9949-19439e1c4592?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4865f800-d5d5-f348-bf2a-ebfb3e475845\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:22:50.2627816Z\"\n }" + string: "{\n \"name\": \"d1ca6aa6-86ec-3c41-9949-19439e1c4592\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:33:16.1026588Z\"\n }" headers: cache-control: - no-cache @@ -1472,7 +1584,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:23:50 GMT + - Thu, 15 Jun 2023 12:33:47 GMT expires: - '-1' pragma: @@ -1504,14 +1616,14 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/00f86548-d5d5-48f3-bf2a-ebfb3e475845?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a66acad1-ec86-413c-9949-19439e1c4592?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4865f800-d5d5-f348-bf2a-ebfb3e475845\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:22:50.2627816Z\"\n }" + string: "{\n \"name\": \"d1ca6aa6-86ec-3c41-9949-19439e1c4592\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:33:16.1026588Z\"\n }" headers: cache-control: - no-cache @@ -1520,7 +1632,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:24:20 GMT + - Thu, 15 Jun 2023 12:34:17 GMT expires: - '-1' pragma: @@ -1552,24 +1664,24 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/00f86548-d5d5-48f3-bf2a-ebfb3e475845?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a66acad1-ec86-413c-9949-19439e1c4592?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4865f800-d5d5-f348-bf2a-ebfb3e475845\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:22:50.2627816Z\",\n \"endTime\": - \"2023-03-15T10:24:33.848157Z\"\n }" + string: "{\n \"name\": \"d1ca6aa6-86ec-3c41-9949-19439e1c4592\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T12:33:16.1026588Z\",\n \"\ + endTime\": \"2023-06-15T12:34:47.9445393Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 10:24:50 GMT + - Thu, 15 Jun 2023 12:34:48 GMT expires: - '-1' pragma: @@ -1601,63 +1713,64 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-3ix8wizy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-3ix8wizy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n \"publicIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-549vpxgp.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-549vpxgp.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n\ + \ \"publicIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3879' + - '4207' content-type: - application/json date: - - Wed, 15 Mar 2023 10:24:50 GMT + - Thu, 15 Jun 2023 12:34:49 GMT expires: - '-1' pragma: @@ -1689,63 +1802,64 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-3ix8wizy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-3ix8wizy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n \"publicIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-549vpxgp.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-549vpxgp.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n\ + \ \"publicIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3879' + - '4207' content-type: - application/json date: - - Wed, 15 Mar 2023 10:24:51 GMT + - Thu, 15 Jun 2023 12:34:51 GMT expires: - '-1' pragma: @@ -1779,8 +1893,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -1788,17 +1902,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3771f0bf-6144-4d50-834d-955d83c79d89?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0d628f6-5c0d-4cda-8e15-c14233620b6a?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:24:51 GMT + - Thu, 15 Jun 2023 12:34:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/3771f0bf-6144-4d50-834d-955d83c79d89?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/b0d628f6-5c0d-4cda-8e15-c14233620b6a?api-version=2016-03-30 pragma: - no-cache server: @@ -1808,7 +1922,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_then_update_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_then_update_msi.yaml old mode 100755 new mode 100644 index cff01a18d3e..9f09f30c896 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_then_update_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_slb_vmss_with_outbound_ip_then_update_msi.yaml @@ -18,25 +18,26 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002?api-version=2022-05-01 response: body: - string: "{\r\n \"name\": \"cliaksslbip1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\",\r\n - \ \"etag\": \"W/\\\"e191d54d-8544-4d59-81d2-c9a0fe2fabf6\\\"\",\r\n \"location\": - \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"37e1a7e5-df08-4e3b-9982-fd2f81c695fb\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": - 4,\r\n \"ipTags\": [],\r\n \"ddosSettings\": {\r\n \"protectionMode\": - \"VirtualNetworkInherited\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n - \ }\r\n}" + string: "{\r\n \"name\": \"cliaksslbip1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + ,\r\n \"etag\": \"W/\\\"1b5a48a2-c749-4780-bf44-746f20490a6c\\\"\",\r\n \ + \ \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Updating\",\r\n \"resourceGuid\": \"62ab451b-7664-4eed-8374-f6de27b1be76\"\ + ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\ + : \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\ + \n \"ddosSettings\": {\r\n \"protectionMode\": \"VirtualNetworkInherited\"\ + \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\ + \n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ + \r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/18bcd927-cfde-4206-a1dc-617936ecb88b?api-version=2022-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0f62fae3-b28d-4949-903c-258c2bafa828?api-version=2022-05-01 cache-control: - no-cache content-length: @@ -44,7 +45,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:24:53 GMT + - Thu, 15 Jun 2023 12:35:00 GMT expires: - '-1' pragma: @@ -57,7 +58,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3f6c9347-0101-4bb3-a389-55bdc3f4edb5 + - 07bac6b1-8bcd-48ca-809c-8360c91b8c7c x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -77,9 +78,9 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/18bcd927-cfde-4206-a1dc-617936ecb88b?api-version=2022-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0f62fae3-b28d-4949-903c-258c2bafa828?api-version=2022-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:24:54 GMT + - Thu, 15 Jun 2023 12:35:00 GMT expires: - '-1' pragma: @@ -108,7 +109,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 19b02240-3e04-4c60-94cb-48364a106b84 + - 7ad46d00-3fe0-4be1-9dd7-c66db14e9314 status: code: 200 message: OK @@ -126,21 +127,21 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002?api-version=2022-05-01 response: body: - string: "{\r\n \"name\": \"cliaksslbip1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\",\r\n - \ \"etag\": \"W/\\\"33f30bdb-4ab2-40c4-916a-9316632a8bce\\\"\",\r\n \"location\": - \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"37e1a7e5-df08-4e3b-9982-fd2f81c695fb\",\r\n \"ipAddress\": - \"20.69.102.223\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": - \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n - \ \"ddosSettings\": {\r\n \"protectionMode\": \"VirtualNetworkInherited\"\r\n - \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n - \ }\r\n}" + string: "{\r\n \"name\": \"cliaksslbip1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + ,\r\n \"etag\": \"W/\\\"bcd6fb00-f870-4474-a06d-e75889870192\\\"\",\r\n \ + \ \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"62ab451b-7664-4eed-8374-f6de27b1be76\"\ + ,\r\n \"ipAddress\": \"20.83.123.232\",\r\n \"publicIPAddressVersion\"\ + : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\ + : 4,\r\n \"ipTags\": [],\r\n \"ddosSettings\": {\r\n \"protectionMode\"\ + : \"VirtualNetworkInherited\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\ + ,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ + \r\n }\r\n}" headers: cache-control: - no-cache @@ -149,9 +150,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:24:54 GMT + - Thu, 15 Jun 2023 12:35:00 GMT etag: - - W/"33f30bdb-4ab2-40c4-916a-9316632a8bce" + - W/"bcd6fb00-f870-4474-a06d-e75889870192" expires: - '-1' pragma: @@ -168,7 +169,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 61f3aee2-b411-4192-b41b-6e4e1af8b2b0 + - dc341beb-9cfd-4f1b-8145-10a13c174a85 status: code: 200 message: OK @@ -191,25 +192,26 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003?api-version=2022-05-01 response: body: - string: "{\r\n \"name\": \"cliaksslbip2000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\",\r\n - \ \"etag\": \"W/\\\"551a9d49-9027-48b8-bb4b-3ab633cc1652\\\"\",\r\n \"location\": - \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"2e0a49fd-ae9c-4554-9205-3275f6e900ec\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": - 4,\r\n \"ipTags\": [],\r\n \"ddosSettings\": {\r\n \"protectionMode\": - \"VirtualNetworkInherited\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n - \ }\r\n}" + string: "{\r\n \"name\": \"cliaksslbip2000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ + ,\r\n \"etag\": \"W/\\\"d939a7e6-321c-4898-a125-ca676cb3898f\\\"\",\r\n \ + \ \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Updating\",\r\n \"resourceGuid\": \"72dc2ef7-6d23-4440-abe1-ceabc9a6c116\"\ + ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\ + : \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\ + \n \"ddosSettings\": {\r\n \"protectionMode\": \"VirtualNetworkInherited\"\ + \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\ + \n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ + \r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/3b543dc0-02e3-4e23-bd0a-7468018c0cba?api-version=2022-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6a32d9ec-1366-42ef-af53-dbe2a068fcf5?api-version=2022-05-01 cache-control: - no-cache content-length: @@ -217,7 +219,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:24:54 GMT + - Thu, 15 Jun 2023 12:35:04 GMT expires: - '-1' pragma: @@ -230,7 +232,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b459d986-a8fc-4d56-925b-598e0992c82d + - fe0ea4c1-cade-41b6-ac88-32aac56639f7 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -250,9 +252,9 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/3b543dc0-02e3-4e23-bd0a-7468018c0cba?api-version=2022-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6a32d9ec-1366-42ef-af53-dbe2a068fcf5?api-version=2022-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -264,7 +266,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:24:55 GMT + - Thu, 15 Jun 2023 12:35:04 GMT expires: - '-1' pragma: @@ -281,7 +283,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 390b90e8-ce17-4bc5-9b22-aa2b33f3c9f4 + - 4ca7eb83-159f-4245-ad9a-22dff1ca0502 status: code: 200 message: OK @@ -299,21 +301,21 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003?api-version=2022-05-01 response: body: - string: "{\r\n \"name\": \"cliaksslbip2000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\",\r\n - \ \"etag\": \"W/\\\"b17eb22e-7b8e-41e1-8a72-96d59013cecf\\\"\",\r\n \"location\": - \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"2e0a49fd-ae9c-4554-9205-3275f6e900ec\",\r\n \"ipAddress\": - \"20.69.102.240\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": - \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": [],\r\n - \ \"ddosSettings\": {\r\n \"protectionMode\": \"VirtualNetworkInherited\"\r\n - \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n - \ }\r\n}" + string: "{\r\n \"name\": \"cliaksslbip2000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ + ,\r\n \"etag\": \"W/\\\"ef4a10c2-51d2-4879-be81-1bad7a5fd3ec\\\"\",\r\n \ + \ \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"72dc2ef7-6d23-4440-abe1-ceabc9a6c116\"\ + ,\r\n \"ipAddress\": \"20.115.140.29\",\r\n \"publicIPAddressVersion\"\ + : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\ + : 4,\r\n \"ipTags\": [],\r\n \"ddosSettings\": {\r\n \"protectionMode\"\ + : \"VirtualNetworkInherited\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\ + ,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ + \r\n }\r\n}" headers: cache-control: - no-cache @@ -322,9 +324,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:24:55 GMT + - Thu, 15 Jun 2023 12:35:05 GMT etag: - - W/"b17eb22e-7b8e-41e1-8a72-96d59013cecf" + - W/"ef4a10c2-51d2-4879-be81-1bad7a5fd3ec" expires: - '-1' pragma: @@ -341,7 +343,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 01582571-d03a-4df0-af0e-9b42effb9ca1 + - 092bc2d1-bcea-4de5-9fe1-819b5fb6cee0 status: code: 200 message: OK @@ -360,8 +362,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -377,7 +379,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:24:56 GMT + - Thu, 15 Jun 2023 12:35:05 GMT expires: - '-1' pragma: @@ -400,12 +402,11 @@ interactions: "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard", "loadBalancerProfile": - {"outboundIPs": {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}, + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard", "loadBalancerProfile": {"outboundIPs": {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}]}, "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30}}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: @@ -418,69 +419,71 @@ interactions: Connection: - keep-alive Content-Length: - - '1711' + - '2003' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-xquf4rse.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-xquf4rse.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n \"publicIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ }\n ]\n },\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-rodnmzio.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-rodnmzio.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n\ + \ \"publicIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ]\n },\n \"allocatedOutboundPorts\": 0,\n \"\ + idleTimeoutInMinutes\": 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n\ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4c4b67b3-3295-4f8e-a980-341f26f12d00?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01714d43-1a4a-420a-a3ab-0adf029dd196?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3463' + - '3791' content-type: - application/json date: - - Wed, 15 Mar 2023 10:24:59 GMT + - Thu, 15 Jun 2023 12:35:13 GMT expires: - '-1' pragma: @@ -492,7 +495,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -511,14 +514,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4c4b67b3-3295-4f8e-a980-341f26f12d00?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01714d43-1a4a-420a-a3ab-0adf029dd196?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b3674b4c-9532-8e4f-a980-341f26f12d00\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:24:59.9978571Z\"\n }" + string: "{\n \"name\": \"434d7101-4a1a-0a42-a3ab-0adf029dd196\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:35:13.5716063Z\"\n }" headers: cache-control: - no-cache @@ -527,7 +530,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:25:29 GMT + - Thu, 15 Jun 2023 12:35:13 GMT expires: - '-1' pragma: @@ -560,14 +563,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4c4b67b3-3295-4f8e-a980-341f26f12d00?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01714d43-1a4a-420a-a3ab-0adf029dd196?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b3674b4c-9532-8e4f-a980-341f26f12d00\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:24:59.9978571Z\"\n }" + string: "{\n \"name\": \"434d7101-4a1a-0a42-a3ab-0adf029dd196\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:35:13.5716063Z\"\n }" headers: cache-control: - no-cache @@ -576,7 +579,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:26:00 GMT + - Thu, 15 Jun 2023 12:35:43 GMT expires: - '-1' pragma: @@ -609,14 +612,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4c4b67b3-3295-4f8e-a980-341f26f12d00?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01714d43-1a4a-420a-a3ab-0adf029dd196?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b3674b4c-9532-8e4f-a980-341f26f12d00\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:24:59.9978571Z\"\n }" + string: "{\n \"name\": \"434d7101-4a1a-0a42-a3ab-0adf029dd196\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:35:13.5716063Z\"\n }" headers: cache-control: - no-cache @@ -625,7 +628,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:26:30 GMT + - Thu, 15 Jun 2023 12:36:14 GMT expires: - '-1' pragma: @@ -658,14 +661,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4c4b67b3-3295-4f8e-a980-341f26f12d00?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01714d43-1a4a-420a-a3ab-0adf029dd196?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b3674b4c-9532-8e4f-a980-341f26f12d00\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:24:59.9978571Z\"\n }" + string: "{\n \"name\": \"434d7101-4a1a-0a42-a3ab-0adf029dd196\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:35:13.5716063Z\"\n }" headers: cache-control: - no-cache @@ -674,7 +677,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:26:59 GMT + - Thu, 15 Jun 2023 12:36:44 GMT expires: - '-1' pragma: @@ -707,14 +710,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4c4b67b3-3295-4f8e-a980-341f26f12d00?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01714d43-1a4a-420a-a3ab-0adf029dd196?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b3674b4c-9532-8e4f-a980-341f26f12d00\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:24:59.9978571Z\"\n }" + string: "{\n \"name\": \"434d7101-4a1a-0a42-a3ab-0adf029dd196\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:35:13.5716063Z\"\n }" headers: cache-control: - no-cache @@ -723,7 +726,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:27:30 GMT + - Thu, 15 Jun 2023 12:37:14 GMT expires: - '-1' pragma: @@ -756,14 +759,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4c4b67b3-3295-4f8e-a980-341f26f12d00?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01714d43-1a4a-420a-a3ab-0adf029dd196?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b3674b4c-9532-8e4f-a980-341f26f12d00\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:24:59.9978571Z\"\n }" + string: "{\n \"name\": \"434d7101-4a1a-0a42-a3ab-0adf029dd196\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:35:13.5716063Z\"\n }" headers: cache-control: - no-cache @@ -772,7 +775,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:28:00 GMT + - Thu, 15 Jun 2023 12:37:44 GMT expires: - '-1' pragma: @@ -805,15 +808,15 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4c4b67b3-3295-4f8e-a980-341f26f12d00?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01714d43-1a4a-420a-a3ab-0adf029dd196?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b3674b4c-9532-8e4f-a980-341f26f12d00\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:24:59.9978571Z\",\n \"endTime\": - \"2023-03-15T10:28:25.0312605Z\"\n }" + string: "{\n \"name\": \"434d7101-4a1a-0a42-a3ab-0adf029dd196\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T12:35:13.5716063Z\",\n \"\ + endTime\": \"2023-06-15T12:38:11.7779046Z\"\n }" headers: cache-control: - no-cache @@ -822,7 +825,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:28:30 GMT + - Thu, 15 Jun 2023 12:38:14 GMT expires: - '-1' pragma: @@ -855,65 +858,67 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --vm-set-type --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-xquf4rse.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-xquf4rse.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n \"publicIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-rodnmzio.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-rodnmzio.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n\ + \ \"publicIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4070' + - '4398' content-type: - application/json date: - - Wed, 15 Mar 2023 10:28:30 GMT + - Thu, 15 Jun 2023 12:38:15 GMT expires: - '-1' pragma: @@ -945,68 +950,74 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.24.9\",\n \"currentKubernetesVersion\": - \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-xquf4rse.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-xquf4rse.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-rodnmzio.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-rodnmzio.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"outboundIPs\": {\n \"publicIPs\": [\n {\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n \ + \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \ + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ + : 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \ + \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \ + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \ + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n\ + \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n \ + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '4349' + - '4677' content-type: - application/json date: - - Wed, 15 Mar 2023 10:28:31 GMT + - Thu, 15 Jun 2023 12:38:17 GMT expires: - '-1' pragma: @@ -1038,68 +1049,74 @@ interactions: ParameterSetName: - -g -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.24.9\",\n \"currentKubernetesVersion\": - \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-xquf4rse.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-xquf4rse.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"outboundIPs\": {\n \"publicIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-rodnmzio.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-rodnmzio.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"outboundIPs\": {\n \"publicIPs\": [\n {\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n \ + \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \ + \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ + : 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \ + \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \ + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \ + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n\ + \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n \ + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '4349' + - '4677' content-type: - application/json date: - - Wed, 15 Mar 2023 10:28:31 GMT + - Thu, 15 Jun 2023 12:38:19 GMT expires: - '-1' pragma: @@ -1131,65 +1148,67 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-xquf4rse.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-xquf4rse.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n \"publicIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-rodnmzio.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-rodnmzio.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n\ + \ \"publicIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4070' + - '4398' content-type: - application/json date: - - Wed, 15 Mar 2023 10:28:32 GMT + - Thu, 15 Jun 2023 12:38:21 GMT expires: - '-1' pragma: @@ -1223,15 +1242,15 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSVFhsSmVuTnZSSGc0WVZWcE4yUm5TekZrV1dRM1JFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCZWsxVVZYaE5SRVV4VGtSQ1lVZEJPSGxOUkZWNlRVUk5lRTVVUlhkTmFsVXdUVVp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVNM0NsaHJlWFJPTmtGVE1YRkdWRmRyYlhoUU1TdGFjMGMzYVVaNWEwbE5LMmxzVTIwNFJUTm5kVzFxTlc5SGJIVkljek5NVFc5YWJGRklaVmcyYVZsQ1RWb0tXRU5RV0Uwdk9ESnRNQ3RvVWtkSFIwaEVXbmczT0dWblpVMTRTVTVwVGtGTVFXeExTa2hCWVU1cVlsQmxhMVpoY0RWUVdGaHhiVVExTnpKT2QzaFhTUW94V2pGTVJTdG9lWFZFZWpoc1NrcHpOVTlyTmtoaGFteERhVWN3V0RKQmJqSlBOV1ZZYzFoT2JXRnNLMjVHY0RFdlRXNXlWVTF5Y3pkMlNYRm1abmxqQ2pCbEwycERSamczUkVZMVl6WlFjSHBrZVZobGJGTlliRWRWTW1wMVdsSTVXbmczUVZodU4wdFhVbTA1T1ZFNWRFSkdaR1JLWjJKWGExWnlSaTl4TjNFS1VrMDBRaTlQWm1GdVIyazNSbmxwUTFkNksyVlpOakJFV25KT1JtZElhVkpITm5oa1RDczBZMHRLUjNSc1ltcHZaR2RSZW1KTVFqQnhhVXhsYTBwSWNRcFRXR1Z4U20xdGFrRTFkWGhaVTFCa09VcHFWbXR1Tms1QmQyTnNiMGxhYUZkblJGaENXVUZNWm5oSmVYWk1ZVXMwZDI1S1NVRXlSV1I1ZFdab05EQjFDbXhzU1RKVmN6WjNkVzVyVEZZeU5VeGljaXN4TWxwM2RHeE1kbEEyTlZRdlVuVXJabHBuUm5kV2MwaEdaMHN4U210MEsyVllXbk5ZY0dGdldHSldjVTRLVlZCcWNVMDJVM3BUUXpoMWFWRlZUM0o2UWpkQlRXeHljVTF6Wnk5QlVtRm1TamMyY1ROcGEzbHhTelZTVm5VeFZIaE1TbU4zVHpOTU5IbHhTRlpITXdwT1NFSTJTRTVuVFZFM05XTjVRV3hDWWs0NFoxQXJjVzlUVEdZclUxTjBNMnhDUXpKTVpUSlNRWFZHUlc5bGEycEtRbmRpWW5CT00yMDVhVTEwUzBoVENuZzViRFJCU3pnMGQwRlFRWFJ2TW5oMVoyazJNbVZYUVZWQ1ZHcHpWVmRGUWxoRlRVMU5NMDR3T1d0dmNTOTZUVEk0WldneVdqRTVkWFpGUmxveGMwRUtiMUZvT1hvellpdGtZVWhRWmxKcE1YRlVjWGdyYjFKcFlURjVjbGRtV1dKTFNscEZZMjk0ZVZsUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWemVqSlhXazU1VlV4Q0t6Rm5NWEoyQ2pVdk5sUTFNMWRPZG5wSmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGQmJYcGpVMDh5YzJsTFNFTk5XblJZVW5kdVoycDRSMUo0VlVRS1pHZGxZelEwU25waE1YRk9PV2xqTkVoSVRYSlFiRmhHYnl0aGFsRjBUbTkxT1hsRlJTOXdNM3AyVkVKcVluVnhNREptTmpONU9XTmlTWFJ6UlZsNU5ncHdlRkppTW5oMmJESjZUVlZOVUZOVk1IbEdSVGd2ZFhSbVdIVnJhREF4ZWt4WWVYcHZORUoyVlhwYWNrSlVNV1p0V0ZsTFdtOHhVM1pKVXl0V2RXUlJDamxTZDBKVGJscFdabkVyTTA5S1IyRkVlR2hQT1hwV1pIRkdiemR3VDI1cFdXSnRhWFkzZUZCVU5WcENWMUZOZHpsTVpXSk9jRWhpWTJsSVdXWnFjMFlLUm5sYWJURkdRMUZLVW0xelZESkdhVmREY25kVlNHRkRVRVJuV1RaWlNFcGtVRFZJZUVkUmVFZFdSRkk1VkdsTlVTc3hVeTlpVmtKYVNWUldNVFp4Wndwb0t6Ukxibmh4UzJZMFdGTkNLeTh5ZEN0SWVHcHBkbHBvTjFGU1oxaG5VRW80WVVGa2IybDBjazlCU0RaRmRrVXZUMGh5ZFdadFZWVlJNR2cyTVRGbENrbEVVVloxZEVVeVZucFdlR1l6ZERCSVF6WXhlRVJRYUV0MldFRjRaV05pUWpkUmJHSnNjekJyVVVNdlRXb3dXVzVGWjNwRVNESkVNVTlwTHpnd2VrMEtWM0ZZVDB0MmRFZ3ZhMUkxZVhrd1JrTnlaVVYwWlhWT2NEWjNkelpWWjIxQ2NFcHlhMU5sUWpOVlVYaGlOazQzYmpsNWIwTjNPREIwZEZKTVptSXlNQW8xZVRKb1pGRkthWFV3WlVGUmFUQlhSakpuYTBnNU9XUkJLMVZCYVRoQ1ZrWkVlSGR4WWpBeGVXNTVSbFZWTTBvMFNtTXpSRnBWWW5ac1JrWlNjVVJVQ25KTmEwaFlVVlUyY0hwM1FrRjZTRnBVTUdGcGFVNU9MelJ5T1RJdk5rbHFXa2RVTTFoSU5FZFFhbTEzVFd4SlFsb3ZhakJsUXpGVlNVaENjbk53U1VRS2FWbGtNRTlDWWpReFYzRkthWGRHZDJoMWFsQlZXRVpLTVVwWlpqZG5iblZLVld0SmFXVllURTVFVDFOYUwxWnRRbVIxVWtONWMxbzFlVTlFV1UwclJRcFNkVkJtZVhsRVptRjZNMHRLVUZRMUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2dkcG0yc2UteHF1ZjRyc2UuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RlNHBreHgKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RlNHBreHgKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RlYXVqcmZpZ3poX2NsaWFrc3Rlc3RlNHBreHgKICBuYW1lOiBjbGlha3N0ZXN0ZTRwa3h4CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGU0cGt4eApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RlYXVqcmZpZ3poX2NsaWFrc3Rlc3RlNHBreHgKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJZVGxTU1dWWFZUWm5jMGhCWW01S2RVaHVabWszZWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJlazFVVlhoTlJFVXhUa1JDWVVaM01IbE9WRUY2VFZSVmVFMUVTVEZPUkVKaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJLZDJkb1VqWktSMjlOUW5wcGExUkNabUZ5TkdFS1R5OTNlVEoxVGtOVFMyOHZWWEZpYm1wRmVXZG5aMlV5VTFsRGQxVk1ibGxNV0hKeWVUTldkakZKVWtwNFRsTlZXV0V5VVVSWU5XWlpjbEV6Y1dGalRBcG1UWGc0VUV4TmJESm1SRkJXWlZkcWNHVk9OR295SzJWTFVYWmthblZwUmxKcVVpdEdXVFZRTVhGSVZVY3ZSVEpEU1UxbEsyRXJRMW96TUdReWVrbG5Damh6VW1oMWEySjBRVGsxSzJoVWNUaFhkWEpTTWxsSVlVTTBWVzFzVFROSlpucGlhWHBRVTJKNlJ6WkxPWGxZTUcxUVpUVkhVelpoT1hwQk0xUjRZWE1LUmxSWmJIcG5ZM0o2YVhVM2RWYzBNREpsY1U5M1dHdDRaMVp2Vm1SMVQzaDVkVEUwUWpZNVMweERkbTlwYjFvMWNXc3JkMG8xYUROclYxZE5ORTVEUVFvM2EyMWpNbEExZVd0UWJuTkRZWEZOWmk5NFoycHJORWxVUlc5RGVHRkJWUzlyU25KaVQwZEVkRmx3Y1ZaTWIwMXJkakpYUW1ONGRWVklZMnhQZGxGcUNqWkpkRmwxYVdwNWN6VkNNMFZ5TkVwVmN6TTFUVGxXVEZsM1pWQmFPQ3RoUlV0RmRGUm9jMUJuYzBjelZqRmtjbkJuZDBkRlVGUkhhMHBQVTNJMlFWY0thRU5DZVhrd1RsSnBVbGR4THpGYVMyMDJObWR3WkVNNWFteHBVRGh1Y2s1MFRIVTVVM1pwVEdneVJsZEtUVGhqVTB0MlpTdFNTaXRMWkZwQ1RuY3dNUXBLUVV0c2IzVnhiRTFoZFRCaFRWZzJOWGR5VjNaUGNtRjRjRFZzWmxWSFpXOURVQ3R4WVdoc1lqZDZVSGxaYVhkRmNrcG9hRlJsUXpaSGJVSTNRMUJRQ25RclZHRjRSMWQ1Vm5vMmNtZG5jekpxSzA1b09TOUxZemd2YldaQ2VucDZkMkl2TVRSTVoxRm9TRnBXTmtGMk0yVnNXRTF6Tld0U1VrNXhVRzlMZFZJS1JGRTNLMHBYZFdkTWJHNUVRVm8xWVdwclR6QkhVbVZuYWtad1dsa3JhbWgzZFc5bGVsa3dVa0ppVVVzd2RGVm5ka1pUT0VwNFMyOUhUbG80TmtSQ1V3b3djREZQVXpCdWJXMXhlbG96TkM5V1psY3dVMjVSU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbE42VUZwYWF6TktVWE1LU0RkWFJGZDFMMjR2Y0ZCdVpGa3lMMDFxUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZFTVRKNWFUUnJaMHhhVUdjMVJHRnRUamwyYlFwb1ZYWmpVR05oZUVsbGQyeE1Oa0kyZEVGUlozUnRNMVpwY0ZaeWRqQjNhbmRSTTJoSU5UZFpOSFZxVFdaWk9EbHpVa0ZhYlVsTFNXOWxOR1p6WnprckNrdFBSVVZrZWxvMGMyRktUek5hV2xSMGFHcEtZV2hvZFdaNFZWQnJaRFJ3ZUd4dFV6QkRRMWRSYnprelpqWm9WRWRXT1VkaVVuQktiVmd3TUZNMGR6Z0tiM1JSZUZvME9FbzBTRmt4YlVKV1VWRlJMM1ZETVVGa2JtWlNWVzEzVFVaRGVHcFBVbEUxYm5JM1RsRndhRmswVkdWd2EyODVaMDlFV1VsR1VIWlVhd3BQYUhsaVYwaG1NbVUwYVU1Q2RHTm1aSFUxTWtsSVExVnhTRTVOYkRab2RtRjZZbTVCTlRWUVdYZzNibVZ6V1ZOYVNtRkpRM0o2VUVWclMzRTBjRGs0Q25WR2QzZHNXbkEwU1haaGQzVnFiM1JpUm1ac1VsSkthWFpyVUZKM1lWVnVNa2ROTVU0eVNpOXRaRWRITlRsVk5XNTJVSE54VEhacmRpOXRSbVZPS3pjS1ZXTm5VRWxqWWpSemNsQldWWGx1YzNSbFMwTllWekEwU1RaQmQyaEtkakJNYUVSVmNXRTVTVkoxZUZwalZrRlpha1ZtU2tRM2JtbE9jM0ZSTHpreldBcElhRzlUTUdsSFdISllNMVJCWjFseU9HcFZiR051TDA5clYwUnFVVTVJTW5CNFlsTlBPVGhWU1M5RU1sWjBUblprVUhKQmEwNU5RbWcxZVhScFNrc3lDbmxMVGtjeFN6TkJkVUpNVFUxUldIaHNlRlpuVWpoV1VYUlBWR0poYzNZM09FUllRMEZFY1ZOcFYxb3dSRE5uVDBKUmEyRk9hV3RhWVdoRFNVRmtMMDRLYnpKclYxYzJZMDlxVEhKcFJtUm5MMnRGVDBrd09FZHlNVVZrTTFsWE4xUm5la3BSV1d3ck4xRlhUWEJqZEhsWlkzcFVTbXA2TTA1bmFHWkxNMmQzVHdwWVluVXlRVkJIWlZWeWJWQkpPVWRZZFZsUWFHZGpjME5USzNaVWJrdHdObU13U21saU5VZ3JZVmh4VUhsSlZIbGhWR2xJUVhsWVl6WnhRMjFUUzBOYUNsWk5jVkpyUW1sSmNXdHlObmxaZDFKMmVsa3djemR6UFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTbmRKUWtGQlMwTkJaMFZCZVdOSlNWVmxhVkp4UkVGak5IQkZkMWd5Y1N0SGFuWTRUWFJ5YWxGcmFYRlFNVXR0TlRSNFRXOUpTVWgwYTIxQkNuTkdRelV5UXpFMk5qaDBNV0k1VTBWVFkxUlZiRWRIZEd0Qk1TdFlNa3N3VGpadGJrTXplazFtUkhsNlNtUnVkM294V0d4dk5saHFaVWs1ZG01cGEwd0tNMWszYjJoVldUQm1hRmRQVkRsaGFERkNkbmhPWjJsRVNIWnRkbWR0WkRsSVpITjVTVkJNUlZsaWNFYzNVVkJsWm05Vk5uWkdjbkV3WkcxQ01tZDFSZ3BLY0ZST2VVZzRNalJ6ZWpCdE9IaDFhWFpqYkRsS2FqTjFVbXQxYlhaamQwNHdPRmR5UWxVeVNtTTBTRXM0TkhKMU4yeDFUazV1Y1dwelJqVk5XVVpoQ2taWVltcHpZM0owWlVGbGRsTnBkM0kyU1hGSFpXRndVSE5EWlZsa05VWnNhazlFVVdkUE5VcHVUbW9yWTNCRU5UZEJiWEZxU0M4NFdVazFUME5GZUVzS1FYTlhaMFpRTlVOaE1ucG9aemRYUzJGc1V6WkVTa3c1YkdkWVRXSnNRak5LVkhJd1NTdHBURmRNYjI4NGNrOVJaSGhMSzBOV1RFNHJWRkJXVXpKTlNBcHFNbVpRYldoRGFFeFZOR0pFTkV4Q2RERmtXR0UyV1UxQ2FFUXdlSEJEVkd0eEsyZEdiMUZuWTNOMFJGVlphMVp4ZGpsWFUzQjFkVzlMV0ZGMldUVlpDbW92U2paNllsTTNkbFZ5TkdrMFpHaFdhVlJRU0VWcGNqTjJhMU5tYVc1WFVWUmpUazVUVVVOd1lVeHhjRlJIY25SSGFrWXJkV05MTVhKNmNUSnpZV1VLV2xneFFtNXhRV292Y1cxdldsY3JPSG80YlVselFrdDVXVmxWTTJkMWFIQm5aWGRxZWpkbWF6SnpVbXh6YkdNcmNUUkpURTV2TDJwWlptWjVibEJRTlFwdWQyTTRPRGhITHpsbFF6UkZTVkl5Vm1WblREa3pjRlo2VEU5YVJWVlVZV28yUTNKclVUQlBMMmxXY205RE5WcDNkMGRsVjI4MVJIUkNhMWh2U1hoaENsZFhVRzgwWTB4eFNITXlUa1ZSVnpCRGRFeFdTVXg0VlhaRFkxTnhRbXBYWms5bmQxVjBTMlJVYTNSS05YQnhjekprSzFBeFdERjBSWEF3UTBGM1JVRUtRVkZMUTBGblFVVXdkbGhrT1RSRFkwVXJTbk0zUjI1TGNtdFBlbGgxU0U0eVdIWTNiSEk0ZWxkdFpWSlBPRXRPVWlzMmJGSnBZV3RyU20xUkswc3hjUXAxSzJWdU56a3piRFJoV0hacmJFcFVSVzByUjBkc1kxTjVZVk55TW5GVlRrSXljVVpMYVhabE1sUXZkbHBOVlVkdFpUbHBVMkp5TVRWcVptSkVLekp5Q2xsb2NWRkJRMHhKWW04MllUWjVUWFprTW5Kb05VWlhVMmhETkhweFdIQlhiRGw1WjFORGNHMTJaM0pGWmtOM1NFeHVjM3BYYm10d2FtWTVTbTUyYTFJS0wxUkxVVVY0YUVacVJteEZLM1U1V2xweFpUbHVkRVo0VlZKMlMzRTBjM0UxYWpBemNDdDBWbmh5TlVNeGVqaE1aMDFpUlVRd1N6TktjWFZXUldKUlVnb3pZVlZ6VldSblR6ZEdhMEY1WW1rd1JHODFVSFJhVGtoQ1p6QlhUMEo0WTJWeVprTjRORXRwVTFONmFIaFRSMnR6VjBwbFVXMTVNbTFyUlZWdU1uVTFDa2s1V2xWcWRDdHlXVlJGT1c5aWIyTm1la1F2U21vNWFrUlpSRTh6UW1RellXdHJPVVJ0WW1WcVltcEdRVGRLZHl0aFNVcHhTa1paZWtjdmVqRm1SR2dLVnpsYVJrZ3hhMGxsYUdKS1VEQjZkbkJEVTBWaFNUZGhMM2xwYkhZeFJrdzVZbUZtTms5TlYzZFpSR1pYUzFCdmQwOTNObFZUYVVwSU9FbDVabEpDVndwTVJUUlZRamRVTDFWYVpHSXpha1UzZUZsT1NqRXpkRkF4WjFoRkx6Y3ZjazVpYWxONFNqZ3pVbFJvYWxkTlN6VktiVXQxZEU1c1pHSmtUbWx1VVVob0NsZHpSV2ROZDAxYWRFOXhabk5oWjFWWVRXc3hRM1kxV0hFeVpUUnRkMVJGVldkQ1NWaDZialI0U1dwWE5GUXdaMk5LVDFKTmRIcEhkVU01VFhOVFZtMEtNMnc1WkV3clQxcEVPR3RZTm5sRmRHdElhRzlZTVhwRVJqRkJSV3REZFZkSlVubHRZVEZUU25aME0xZHZWR05OTVZSVk5ubGhjVEZCS3paVGVIZFpjZ3A2YTFKT05FRktRVzVOYzBVMVZXRXhMM00xUVd4bFVEZFJWVkphU200eVNEY3dSWGd2VDFwb1JXOXpjRkY2U25VMFVVdERRVkZGUVRsUlJUaFFkamh3Q2pkVWQwRlZkVE4zYm13NWVGcHJjSEpTYnpCc1QxaE1lbkJ2YUhsaFRETk5UVUZZVnk5clpsaERPWFkzVHpGTWN6Sk9Ta3BsWkRSRWJVdEVhV1JyWVRVS1ZIRlJNWGsxSzNwdlptNVRWV0k1ZW1ZMVExTkRRMmxGWWs1Nk9XVlFUVE50VkdsWGNUbDRlazh5VVdOcFQwTkdlSEpFV2s5U05ubHhRME52WjNkS2VRcDJiR2t6VjNGRFlVOWFNVWQ1YzB3NEsyOXRTVEZtYjJ4cU5YWmxWRGR1VDNwd2NHUmpabVUyVW5KVGJVWTVSemhwWlRSMFdrZDVOMmx3U205MldYcGxDbVpWVDJSRWEwRXpTbEozVUhrdlIzUTFOVmMxVUZBelJHSm9SV0ptZHpSMWJXOUdMM1JHYmtadE1rTnBjbUlyVkhkWE1USlZjVzVhVW5Wc2NFWXJOa01LYzBKSmVsZHRkMDFNZDI5UmVFSm9Sa3hTVHlzMWRHWjNaVTAxSzBSM1kyUlhhWHBtTm5aaFRVVlZLMFZQYjFodlZUZG5OVGt5WTA5elNXd3ZTRkUzV1FwNVFuSm1ObE5rTUhZM1RVbExVVXREUVZGRlFUQnpMM3BYYW1kaE1rWkJVRnA2WVRoVmVXTklUMEUyY1hkUU1rdGFia0V4ZEZCa1lXcGtkbWhvZG5sYUNtSlFUSFpzWWpod00wdEhXVEpSYjA4MGJqbDJUM0p0ZEd0ek4zQnhiMUJSVVM5TFUwb3lhSGwwU2pnek0wWk1OVWxUYXpsbFltNTZNVXBtTm0xcE4wb0tNVkJ3UkdkdFdsRjRhMll6YlRaWFdtTkVSQzlaU0UwM1IySkhUazVvUVhkSWJVRmFSMDl1YlhKWFpWRjNNbXhJVkZoVVVsbHBURWhPYUU1aGNHNXZVQXBCY21zeVkyZE1NRGxLVFU5WlpHdzRZbloxU0ZwVFNYbE1LM0p0YW10cVUxQXJabGx5TkRWaWFVVTFiMWhLZGxkdGJVSm1aRGhYTkRkWWFFdFNRVWxVQ2pWS2JWUkRhRXBNVUc5eldsQm1hbVZsYzBOT2QyUXZkMGRWYlZKTFdEbHllbmxDY1RndlIxWnJVblF4UTJORGVGRlpSR3cyTVhsMFVVbDNhUzkyTUhVS2NDdFBTVmhtYkhCV2VrTk1aQ3R3U2xKWWJqSjFUM1JxVDI1YVVsSXhTRWN4ZVhBclJuUkJWbFpSUzBOQlVVRmhObUpNVkdaTVdDOVZSWEk0TUZKU1VRcFpWVEpWYm1aSlozZDBjRzA0UTBOb2JETldlREptT1RJcmRqQTVNakpvWXpkcFNYWjRlRVZ5VmtKWmMwazVOR3BSZGtRNVlYaEdjQ3RTU0V4ME1WSkdDa2syYzJSMlltdFVUbms1UkZwRFppOTVWbkY1YTFsNk1qaE5aR3RSTkdkSk5uaDBWRlZqTmtGSUsyTk5jR3B0WW5wR1MxZGhXWFIyU3pGSFoza3JiVVlLUlV0cE5VWjVaM2MwVkVNNWVVbGxaSFZrU2pJd1dVNU9TVXB1U2t4b2QzaE1hVVJqYkhaYWREbEdUR0ZMUkU5R2NXdFhSa3BPWXk5NlZrTlJVWGtyVEFwcVVWTlVUVFEwVmpGV1YwOTRTbFpYU0hSNk1WaFFjSHByUjNkV2VFcExNMWRoYzJ4RFRteFVUWGhJTDFSS1kwbGxhRlpKVVhKUWNWbFhWbmQwYkU4d0NsTjRaa05aY1ZGbGNXNHJZVE5tWlZaWVlVWjBVbmwyVEZCM2FYUjROekZzU0ZkWU5rRTRSMk5wU3pCa1duZ3lkU3RNZFZVeGJ5dHlhelJCY2toWFJuVUtkVlo2V2tGdlNVSkJSMmhYU3paa1dGcFdTSGxNWlRGNmJHSnVRamg2ZVROYVlVOXRNa3g2YVdoSVNsRnBhWHA2ZVhGak5HeGxZbkZTWkVocWFubENNd3BwYlV4Q1N6WlVSMVphVEVoSGVsVjRNakI0WkdWT1NtOVhRbGhTUTBKVFJsTlBlSFV4U1dGd1JuQm5UV2hNVjFCcmNWTkZlVGRtZUU1VlFuZDVNRWRZQ214UFJXZEZUbFZMUzNoeVpHSlVOMGRPV2tkM1lWZENabEkwZVdoR01UVjZhRFUxZG0xTE5uQlNiMmN2Ykd0RldsTjVRbWxCVGxCclVIbEpiV1pJTkdZS01teHdjbVppTm1kR2REZHFSV1IyVG1OMFlYaERMelE1UkZjeU1rVXlPV1V2ZUM4eWMxUjNkWFp3UmxVNWNsaDRaSHBCTlhCM1lscFRORVZOYkU1cllncHNlRFp2T0dSUWJsRlZTRmhTT0c0NFRYcENTM1JHTUV4UGJWRkxRMWhEVFVkc2VqbFdZakpLZDJ0SEt6Sk1Remx4ZDFKM05HOXhUbVp2ZVd0VFNrdDVDbTlDVWpGcVJsbHhhWGRZZVRKdFYzYzRXVVpQTlVFM1UwcFNNamxXZUVWRFoyZEZRVnBZZDBGWk4yNUJiMlJxYlRSSk9WbDBNM2RaVEZKYVMwSXJjMG9LTVhwM1kyRjJVbTlqWTAxVGJGSkxkVFpOU0RneVoxUjRNVk5UY1ZCS2QxVjVlVnBLTUdKbGRtVmpUMGhPWkN0V1NYUjNSM1pHTW10b2FWWnRUSFpWYWdwelEyaFJTMGRIYmxSa1JrRjBVbFJ4V1hkTVIwUmFhbko0U0ZaaVFreElRMVZwZERGcVUzVXZha2M0WmpOMU9VeGxWSGswZDJ4TlYwMTVaekkxWlVkb0NtbDZNVVJqVkhaQ1prTkZSMDFNUTJreFZWWjJVREZVZVVseU1FeDNXR1JTV1c1MFdHMU5abE5SWldRd04zWTJhMVpIVW5Gc2N5OU9abVJVTUU1MlUxY0tRV2xOT0hSaVprd3hNV1JsU0hNNWFGa3JVSGxwVVhGTVYzY3hSMFIyT0ZCT1VtdG9hR2RDYjIxclpIbG5SVnA1WkRjNFUzbFJSa05WVURacmNtSXZLd3A0V21SMFFqUnRaWEY1TUdWMVVVNVhlU3N6ZGxSbFZVUnRUMnAwY21SbFRuUjJNMko2YTI1VmN6ZFljMHg1Wm5FMlV5dEpjV3d4VjNkM1BUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjoga3R1NHFiZzlkdDlmM25xOG9jNnU1MjF5azFkNGhyamVja20zdWp6am9ic2psMW5nNGZxb3Rid2w5Mzg5azdqaGt3eGJiMzhncG5sank4cWIyeG02YTh6ZjRlZmw4NnlhZnlrdXBhYjFkYTFhaTk4eWh6cHY1dng3MmR1ejhlMTIK\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSWlRKUVFraEdiRVYxWm1GaUszbHFkek5KZUdScFJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVZYaE5ha2t4VGxSV1lVZEJPSGxOUkZWNlRVUlplRTVVUlhsTmVsVXhUbFp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOekNsSnFORTh3TXpJeWVXc3hVWEVyWW05U2NXazVXVVZqVFhKUk5GUTRSRUUzWlcwMlFsSndiR2xhYW0wNVVrbFlWRW80TTJ4V1JHbzNUR3BEVVZGWE9EVUtRamxyVkc5YVVFeEVlSGhDWW0xelduaEJjRVY0YUV4RVdqZ3hNR041ZGs1TFZUZHhkbFJyWVhoWUwwUkdMeTkzVnpsWFJGQjRMMlpKVG1kWmVERjBhQXBRYUU1bloyNVpiVmxCWjBwMlMwdEVLMGR4YW1SV1NuSm1TVUZTVDBSVlltdEhObGRSV1hOQlNUaGhWalZ3ZGs1WUwyOWtUMUJ0WWtORlJuRjZaamt3Q201UWVsZ3JWMk5LVkVVeU1rcHFObFpXV21SU1RYSnlXV0psYm00eU0xVnlRamt5ZVhKM2FERjBOVGsxVUZsNVp6ZFdhV1p2WWxWeWVXVkNVbVJ0UW1NS1p6TlRkRGxFYzNsRFJYbGhPVmhFU0ZSYWN6WlplVUZUTjJkRFJGTjFlV0Z0Y0ZaalFrUnRTMmhtZW1jM1owcFZZa3QzWldORVFYTTBVakJEZEVGRVZBb3ZURU5YUVVkeWQyUkNUVWRWUjNKemJWUnpPRE5tV0VVNU1GSllWVzlTWnpabFlWRjNORlpLVGtzck0wNDJTVkUyWWtkYVRETlJkM0ZxUjFSbFFWcHNDazVOWWs0d1dtUjJUa2xIVUZKcVQzZHNjbmxyVUU4ck1FVjJhVEJyYjNSaWMyaExXR3BMTVZOTk1XbFFWMVE1VFN0blJqaEljMmxtY1ZWMGIyUlJLMGtLUW5kMk1GaENWVzQzTUd4MFRUZERZelV4YjNWcFNEbGhaMmsyVEdONE9WRTBPSFZDVWxCTU5GVjROVXBZYlVsdFVESmtUVkZyVmtGTVYwTjVXR2RwVFFwT1pWUlVSalphY0dJcmRITlJlQzlhVTFaaFZtSnJOakZxTUVjd2NuZFljVXhHTVRsUGJsWlBlV0o0Ym1WYVNHTmlVM04wVWtock56TjFTazFTV2xnM0NsRXZlbE5QV0dGVWR6UkpNakprTDJKQk9WWkZkMVV5UmxaRlQxTkhWemRGUW5RNFMyazViVk0zTmtOcmNWcEpZVUpSUmtwNmQybzFSVU56WVhSNGJXb0tjVmd4ZGxwRVZuZExZMnB3VGtGV1dYQkZSVTg0UjFVNU9GQXpZbGRSUzNoR1RXMTJUM014WkVaUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZVMVNtdENjalJtU0RoMlJHVTVaVFp6Q2xGNmNIcHVZWGx2YkRCQmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGSllVWnROVWRqU0daMlowbEVaREJrWmtoaFprMVZlVXh1ZWtvS09URlpZMWwzTmxkb05YcGlNM0JOWnpoMkwxcEtSVFEyTlZkVVkwbFJia3hqVVZkeFdqaEpUR1ZET1d4SWFUSjZSREpMWkdabWJHTkNWbFJsUzFWek5BcG1WbEpoVmtZNGVGcERZVmQxVTFSbWQwZ3ZRblpIYmtrek1WQldiQzlyUjNOYU9WZHFjbkEwWkdGT1IwcEhjQzlzVWtGbmNrcHpValE1U0RoNlJXMTBDbTE2WVdSMmNXbEhWSFJOYlM5SFJtSnNVMU5yYUVob2IxUjNZV1Z2YWxjMFZtaHhWR3N2VVZNdlFqRXdaekJtUlVkSGEwbGFPRGhoZUhabWJVbzRPSGdLVVVkc1UzVjVTR0ZLUlRrMFJFOXhlR2RpVTBaWVJsa3ZTRk4zVjFoblIzVkpWVkZtV1VSaFozQmhWWHBOUkZKSFZXbDBURFF4TW1jMVZYbEphRUpsZHdwd09HaFhOVmxKYlhGTGJXNHJkMVV6ZEdobVFUbEVTSEV4T1c1S0wybGhXREJ3WTJNNWVscDJkRGt6UzJSbE5EQkVNV0pDTkVSNloyVTJTSGxSYVRSeENuTm1iVXhhYjJRd1EwaDRTM3BPVmxkMlVtaEVSM1o2V21GemNGbEVTSGxwZEN0eloyTmFaR2xQTVdoVlRHWmtZbFExY0VKb2VscG1iMVZRYUV4alZEQUtka3RrYkhsVVIzVmhjblZsUmtwT1RrdG5jRXBZVDB0WWRtdHVhREkwTHpKS01HNUZlRU51TUVwMFNXTnVVRFJPWlc1a1F6RlBVME5VYjBoRmExbDBlZ3A0ZERKaVJYVkVZak5YZWtaWEsxVXJUemw1VkcxclowVTRVVmxoZUcxcWEweFFkMUl6TnpaWWVqTm1RbFZ6V0U0MFRuVTBTekp0ZVZabVJsZEZOMmhaQ2pVeU1XVnhUMUV3U0RkdVJHWkZOMngzYWt4dmFqRjNjRVZuWjFScEwwRk1RV2QwUW0xT1lrdFhTVUZQZUVwTlZqWlNUVFpaUmt0V04xTk5hV2xEWkVZS1JXSnlWV0o2YWxka2NFSllRVk5rYkVnMVNVOXdTakJ2Y1VaYWR6bDJjMjFSV1dwVVN6RkNPV3hsVW0wd2IzTmphVXhpTm05VFpXbzJLMHBqWmpZMmNRcFBkVlpDVGxkSVIxbFRZamhhYURWa0NpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3FndzVoYnctcm9kbm16aW8uaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3R5cXdpNWkKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3R5cXdpNWkKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RhenBudzM3emJzX2NsaWFrc3Rlc3R5cXdpNWkKICBuYW1lOiBjbGlha3N0ZXN0eXF3aTVpCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdHlxd2k1aQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RhenBudzM3emJzX2NsaWFrc3Rlc3R5cXdpNWkKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJZMjB2TjJaaVl6TjNRbVZYVjNoamQxTjFZMFExZWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVVlhoTmFra3hUbFJXWVVaM01IbE9WRUV5VFZSVmVFMXFUVEZPVkZaaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVU0xUjA0NVprbFdjekJvZVdOSlZHdDVNVkl6WlRnS1owdEljWEJNZDBGRVVUWlZhekZVTlcwclRERXJNVVZGVVVFd2EyOHdRMlkxVURaUWFYa3lXVlJuUld4d09FbG5kek5ZUm1NME1tVnVTbTVLTjFab1RBcDZTSFpzZFdGVGIxTkRkMjFrVmxSQ1l6QXdZbGxaZFRORFdYQm1kMWhaWjB3MllVbDVNekV5SzI0MlJIQkRWbmxYWmk5RWNHRnRNSGgzVGpadVZHaHdDbHBHYVRNMU9DOVlNaTl2U210TFNYUjZNMVl2YkVsWE1tdFZUWGx2VEc0eFJuZExVbkpKZWxZNVpqaHJlaXR3UTFWaVpsUXhaR05wWVRjek1YSm9iWElLUVZwcmNFVmlSamRJU2pJMllrazNhMUJtV0c5UFdXRmhRbmg1WWxaRU0yc3pUSFJIZUhObWJWUnlZMU5sVkdkTVZFcFNkbE50UkdGbk0wUkNZMnA0ZWdvNWJUVjNabEl6T1ZSUFMxWTJPWHA1U1RSek9EZ3ZhVUpyTUVkRGVHaFpVamxVWVU5b1pGWkJNMjlwTWpZclYwY3lNR2RyV0RFeVFWaFlSeXMxTjJGUUNqTnFSRVZvU0dsNk1FVnpNRFZqVmxwbmJXUnJkMWhsYjFjM2FGZDBaMjlQWlRremJGaFpkWGxNTWtsWWJtRkdOM28yUTFwbmRTc3hNV0ZyWVdJd2JYZ0thVGh5VTBzd2NHWk5abnByTm1WelFYaHBaVlYyVnpGbVVFcFRSREpaYkhCQ1QzaHlkbEpCVWs5a1YybG5WMWR1WTJRclJHeFVZM3BpTVM5T1lXdE1TUXBpVDBGQmMzSXdVSGRrWnpCc01tMTFNbmN5Y0RjcmJ6UkRXRU5TYlZkNk1FWXJURkk1S3pOV1pXMXNRV1pKVFdGdWJUbFlVV0owUTNWRksxTnJjV2xOQ2poa09EZENVRGR5VFhCNlRWQkphalk0VGtKNWRtMXlVbnBJVlc4dlNrYzJhUzlCYm5SNU4yTmhSV3d6TWk5TVZERndZME16Tld4UU5ua3pWMk5WU0dJS1dGTTBNVXBaVDBSbVVGUkpOVk5hY1VoSFRFOXNabVJyTVVaWGFtUTJRVmRwUjNkWWVGbHNXbTFYVERCM1kyZG9Uamh1V0M5WlVGUXhWMUZSZEdKWGVBbzFkSEZ0UWtWc1RHTnRkVXhoY0drMlJGTmpVRUozU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbFJyYlZGSGRtZzRabmtLT0U0M01UZHhlRVJQYms5a2NrdHBXRkZFUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZaVkN0elVXdFVNbmdyWXpoa2RYVnlhbmw1ZEFwYWRFbzFVMk5XZUM5TlVXRkRha3RHVG1oemQwMXZOVzEzV1ZWdGEwSjZLMFpOUjBaMGVUaHVVR1ZSUldwMFNrNVJXSEpUZFRKQmEwTkJVMVZMYkZaTUNsRktkSGhQWlcxSU5YWnphMEpCYzNCeFFXRldabEJrY2xOdmFtWk9OVTVpUlVablR6ZEtPVEJ6VmtOYWJqTmpXVU0zUVZSb2MwZ3dXRGt6U0ZwdWJETUtWMWM1VTI4MlNEbFNkMjU2VFd4T1NXZFBhSFY2WnpZeFowbHRhVUUyU2t0Q1RFeEZSbWM1WmtJcmVXWkxTRU5SZEhKbGJIRkNPVloyYmt0aGVrdEVWZ3B1U0hKYVJFdDZjWE5CTkRsaVMyZG5NRmxHSzFnMlFYWk1UelJtVVdwaFExWTBOVmhhZEhGVlZWcHViMkpESzFwWFJXSlZNVXh2T0VweFVEVk1OMnd5Q2sxM1EwVmhNbXBNUmpGc1dVSklXbVJoYWs5SFFuVkpkRk1yUkVsUVVVaEllSEZDUmtvMlNqRkplVTlNVUc1V1JrdHZhSE41YkUxUGFVbHVhM0JFUW1rS1lUQkhTekp4VjNOR2N6bENXalpGYzA1Wk1ETXhSM2hGVkZWSGRWZ3ZSazU2ZDFOa1REVkVOR0pSWkhsaVdVcDVLMDVyZGpoVk5qWnljMUJITVhGalJ3b3JURm92UVVoblQwcG1SSEZwT1cxbmJVSlBabGRCZEdweFkzUTRiMUJuVjFkV2RWcG9OVGRGWWs5eWJWTjNkSEkxYTJ4RFdUQkZPVU52TmpaNlRURmlDalZuYW1WRVVDOW9jWEJxZEdGblUybHZTM2RJVUVGRFdVeHpXSGQyVFZwdlIwNVBkV054ZWpOdlIyRjBTMEozWnpGTldHNWpaVTE1T1Vkd1kwcFFlVVFLWkVWTE9WWXlkRnBWVTB4d2VEQXlWVlJ0TDFSblRGVjZkbWxzV21Nd1IzTkhPRk0wVTNOUloxQjROVE53V2xOT01FWkVURzAzYlhkR1kybzROMU5TWlFwb1pYQXdla3hqYkdsSWFreHJaMk0wTm5NMFpIWXZhbkZVYjI1U2RsUmlhbXBuVlZWS05FUmxUelppVVVaalZUVklOa3B3ZFVObk4ydHpXaTluWkhsT0NsWllNblJVVlZwdVVUTlJjMmcyZUhWR2IwaEhUVFZKUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTbmRKUWtGQlMwTkJaMFZCZFZKcVpsaDVSbUpPU1dOdVEwVTFUWFJWWkROMlNVTm9ObkZUT0VGQk1FOXNTazVWSzFwMmFUbG1kRkpDUlVGT0NrcExUa0Z1SzFRcmFqUnpkRzFGTkVKS1lXWkRTVTFPTVhoWVQwNXVjSGxhZVdVeFdWTTRlRGMxWW0xcmNVVm5jMHB1VmxWM1dFNU9SekpIVEhSM2JVc0tXRGhHTWtsREsyMXBUWFE1Wkhad0syYzJVV3hqYkc0dmR6WlhjSFJOWTBSbGNEQTBZVmRTV1hRclpsQXhPWFkyUTFwRGFVeGpPVEZtTlZOR2RIQkdSQXBOY1VNMU9WSmpRMnRoZVUweFpsZ3ZTazB2Y1ZGc1J6TXdPVmhZU1cxMU9UbGhORnB4ZDBkYVMxSkhlR1Y0ZVdSMWJYbFBOVVF6TVRaRWJVZHRaMk5qQ20weFVUazFUbmszVW5OaVNEVnJOak5GYm1zMFF6QjVWV0l3Y0djeWIwNTNkMWhKT0dNdlduVmpTREJrTDFWNmFXeGxkbU00YVU5TVVGQlFOR2RhVGtJS1ozTlpWMFZtVlRKcWIxaFdVVTQyU1hSMWRteG9kSFJKU2tZNVpHZEdNWGgyZFdVeWFqazBkM2hKVWpSek9VSk1UazlZUmxkWlNtNWFUVVl6Y1VaMU5BcFdjbGxMUkc1MlpEVldNa3h6YVRscFJqVXlhR1U0SzJkdFdVeDJkR1JYY0VkdE9VcHpXWFpMTUdsMFMxaDZTRGcxVDI1eVFVMVpibXhNTVhSWWVubFZDbWM1YlVwaFVWUnpZVGN3VVVWVWJsWnZiMFpzY0ROSVptYzFWVE5OTWpsbWVsZHdRM2xIZW1kQlRFczVSRGhJV1U1S1pIQnlkSE5PY1dVdmNVOUJiSGNLYTFwc2N6bENabWt3Wm1aME1WaHdjRkZJZVVSSGNEVjJWakJITjFGeWFGQnJjRXR2YWxCSVprOTNWQ3MyZWt0amVrUjVTU3QyUkZGamNqVnhNR040TVFwTFVIbFNkVzkyZDBvM1kzVXpSMmhLWkRsMmVUQTVZVmhCZEN0YVZDdHpkREZ1UmtJeU1UQjFUbE5YUkdjemVqQjVUMVZ0WVdoNGFYcHdXRE5hVGxKV0NtOHpaV2RHYjJoelJqaFhTbGRhYkdrNVRVaEpTVlJtU2pFdk1rUXdPVlpyUlV4WE1YTmxZbUZ3WjFKS1V6TktjbWt5Y1ZsMVp6QnVSSGRqUTBGM1JVRUtRVkZMUTBGblFsbEhNM0paWTJGNFZXbE1SVkI0ZUZoRmFFMTRLMDFyZW1kM1MwZHpPVWx2YjA1NWJWQXhOa0pzY25ObFZqSnNaRzVTVkRaU00yaE5Ld3BwVDFkbVVtbEtUbkJzYkVZNU1GTnpVa3RFTlVNeGJ6VlJTREY2VGpGalUzUjRaV3c0ZUZSNFExcEVZWFJQVUZSVlRTdE5lRlZJVlRaMVdYSXhRVXhXQ25kMVpIRktlbkp3ZEhNd1RXSmpURTVuY1VsU2NERnZSV3cyYjNWdlRrZExWMUpKWVd0c0syNUNaVE4wUjBnck5YaDRNRkJHYmpaRFRIWm1Wbkp4Y0U4S1dsaENNSFZNUWtjcllVWjBRMFJGVlRaUmJVeElVRnBFWVVOb1dIVnNPRXB4V2pWMVJpdFZUWGhJWjFGT1ZqVkZkVWd4Vmk5SFUyeHRObWRMZEZCbFFRcGlWV0pwV0dvelR6QldlbGxLUVM5VlIyWmxXV3BHUXpCQ1NXazJUMjFsTDNKQk9FZGlMelkzYkhCaFNuWkdiV1pJYUUxQmRYWlFTVXRFY1VKUFpGSkxDbUV6U21wbGIzQm9ZVVpFVG5KTWRtVmtTR0Y0YWpodFFrMW9UVFJCVkVwMFpVcFZiemhqUW1salNHVTRNbE5sVVRGYVoxbHRSVkJ3TTBSQlVUQlBXazhLVlZaYU1rUnZlamh3Y0ZVdmVYQTRiV0ZuWTJaUk1XOW1WelpHZDJ4bE9EVldPRWx6VEc4NWJqRmhUREZPWjFNMWFsWTBibFprYkhsYVUwTldNVkpHVHdwQ1VHNHlVbkJFZEZZMk4yUnlaWEp0YW13elJWSXpXRXhPYTJ0V05VOWlNbVJ5V0ZaU1YwWTFMMjA0YVdaaVNGY3liVWRRYUZKRldVZzJZa3hoUzFoTENrWjFlWGN2VnpKamNEQXdjMncyV1VkSk9HNVNZbXcxVVV4U056Y3dXVzkyTUVWUlFtVnRaMHBpV0RsWlYzYzRWbEZ0VFRGV1pYTTJXSEJHWjBaeVVVSUtRazFTWmtaemNtUkllRlUzYmsxcGRYUkVhRE5tU2tSUVFuRnBTVFpDY21rNGRrNUNjbTV6WVhRd05IQmtVaTh5V25nM1RVbHZURlZIYjFoSlZWTkxXZ3AwYkhkV1ZIZGxha1V4WVVZNGNrTnFjRE5sTVhWdlJuTjZaUzlEUjNaT1p6bHZNVUpRV21wVU1YTlJWRll6YUdodlVVdERRVkZGUVRKek0ybEJiWGxTQ2tkSllUSk5SRWx3Ukd0MFQxSlBSMGxLZEdKTFowbDVRMlo0VmpGYU0zWkZabUU1WjNOeVlXdFJRek00ZVhGbFkxSkVZMFU0TlVWNUx6QndjVFJoV1dNS2NWbzNaelprZGxaNFJtYzVZbEJaTTJsUlMwTnpNMU4zZGtkaVRUVjBabVZ0UWxOSFdrb3hWRkpMWVhSTlVsaHRSSGQ0UnpkSlpEWnJWVEpJVVhOd2RBcElhV2hUY2xWWVVHWkhOVmhGZWtGQ09FVkpORlpRV0RoRlZWVnJSRkpGU0dKYVIyVm9jMnRSZUc5S1QxSmhWVzlxY0VoQ1VqaExhMHhzWTNob1dubElDa3RoZFdGaWRVWldSRWxpY2xST09WUlJVa2QyV1U1WWJYTmFjMnhTVFcwM2JYWm1aR2QxTWpGc0sxaHFWa0ZuYTNWUUszVk5UMXBKY0VGRk1ERjBSbG9LYVZkdVUzaElSMk5SV2xkU1ozQlBZMGhCVlZGQmQwVlBLM2RqYmpoTksxSndTR05uV25aUE0wdFRWbFJIYUdWTWVuTXdNRGRCZVc5M1JYSTVOR1o0VmdwV1NXZElWSFpzYUVKTVFtVTNVVXREUVZGRlFUSktRVmxoYUVKVVNFVlJWbEpQT1RkVFZqVlpUMW96U2poTVRYVm9jaXRzZURVd01uSXhiakJDVjBKTkNsWjBlVGx2VkRsVk1qRjJVa2wyU1N0QlpXSlBOa3Q2U2pGbWFXNUhaMDlSVjJGWVdIbGtVSGR3TTNnemFDOXJRbkI0SzFCblJqQnVjMjVyTm5wUldXSUtjbXRMVDJ0TU0yNXlaWEppWW00eFUyUndjM3BQU0ZkSVRtSTVSSGxGZDBGblozTjFVbWRDU1dwaE5tSjZVRlFyWjBRNVYzTnRhMnBMVm1GR1FqbFVhd3BKU1ZCbk5UTTRSMWRCWkdGdFRFUjBOalV4YTFJeVpWbFlVVEJhUTNsRlJtZHdlRFEzTVhGUUx6WjNVRUkxWlRaNVNrMUtiR2hoTVRWTE0yMHhlVnAzQ21GcFMyRXZjamd4YTBOMFdsUnRaelpRYlZKUE0zQkRXbGwzWkRSWGRtVlNhMDU0ZWs4d1RVMDFXVmxZYW1WSFEweGllVEpoZVVwWlZHUXpNRFZ4Y21rS2FYbEtNUzkwVlhSNllrc3ZRall6ZDI5MmVqTXpUazFqZG04cldUVXljR2hwTDNSMmVVMXJlbEYzUzBOQlVVRjJPV0ZNVG1aNmFVdHNURk5KWldWWmRnbzBUMlpIUWpFeFRtcG9WVk1yYW13NFZ6VnlRbFpSY1hKMFpUVlFTR1ZQUVhka1VFRkpPVGhJZDB4MVVVYzRjQ3N4VEZBMmR5dDBVMkp4V0VRdlRrTjBDbGRrTkZVM1VqaGtTUzlUT0VkNE4wZElVVFZoY0hkU0syUjZiRU5CYnpSSE5WUllaa3BZY1c4ek4zTkpRekpaWkZKVk5GcHZURGh6VG1oQ2VFNUlWVmdLVWtOU1NEWXlWSGhaWTBwNFRsQXpUVll3YUdkeFRsQnJLekU0ZUVWbk9XZFJOVEpsWmtkWldWbG1RbTl3TUhoUVkwRk9SakI0Y0RWVmMycHNPWFpSY1FwaE9GSldkRVJ1VDJOSE4zUnVaRlZWU25aeFZGTnNhVnA2YVhrMmFuaHZXSE50WTFOMWVtODFXbkZ0Y1hoRU9ERXlOa2hYVjBWeU1EWk5TWFpHZFhZeUNrbERLMnd6UnpoRFdWVlhlVTExUVhsMU9ETlJXbVEzTlcxeVlqWmxaamg1ZDB0RGJtWnVVRUp1TkRoNlJXczVSek4xYTNCVFMwd3phRll4T0haUlN6Z0tRVmRET1VGdlNVSkJRMWhPWjFoWFExRXZLemRKY25SV01HNHJUVXRJY0cxUlRXNTZabFIxYjFkS1puWnhXWGRUWkRkWk5HbFNjbWRxV0cxSlVrcG1SZ292TUhaTFdGZHBXR3RoWVhOQmN5dElRME5TVTFkMlFreE5jeTlaV0hwdVpGVkZRVGhDZWpOV1JrbGxhblY2YnpoVWVtUmhlVnB2ZUhCQ1JrRkdVMFZYQ25wb1kweGhWVzF4TjJSWU9VeG5NRVI0YVVaQmIzaFpVVkJhVDJGdFVTdHBWM2t2TnpGRVJYVXpWVTV1WkhWMlVWaHZhSFpqVTB3M05HeGhSM0JsVkZnS05EaHBhbTFsVWpOS1VHOVNOakZpVXpSdWR5c3hNbVJzVTFCaUwwdEJVRXBXVWxwUFRtaDVkRVJuT1ZaQ05IUlVhaXRuWlc1aFJIQlRXVlZQWlRWelpRbzVaMlp3ZVdORU5sbFpiMWxWTmpSc2NqWjVlR0Z2WlU4NE9EVXdaR1IyWVM5SFIxZzJPVVozUkRabVJEVjNXWGR4U0RsaVpGSkJNR2M0VW05RloySkhDa2hRUzB0UGJXTTFTVlZ6Tm5wMGJUQXhNSGRQUm1SclNtMTNia0pzVjBWRFoyZEZRVUphVHpKRFJHaENkVTVtYjFGTU5FczNPV0ptYVdGWGNtbE5UVWdLYWpkSGFpOHZSM1pXV1VaNmRFeHBjazQzVG1OQlpFTXlRWFIxWmpWUWRYbEJhUzlUTUdWRU4yRXZkMjQzTmxGS1VYUjVZbmgyWm5KdE4wMHZNMEZRTVFwcFVWWlFZWE5QVlRkNVNtUjVUbXRCTW5ZdmMwSXhiak4zVUdKWlYyUTVlalpKVTFJMFIwSldjalJRT0N0YVZGQm9WV3RXZDBWeE0wdFZXalZ3UldjekNqUlhjM2t4YW05dU1Fd3pZbTFvUXpsUlluWlBaakZaYWsxWVprRjFZVE55ZVROaGN6ZGtVRzFxU21wMmIzUTVlR2RsZFRSSldXa3lkR2s0T0hGRGRrOEtNMk5WZDBaS0syZ3pTV3gwUTNOb0swVjVjSGxMYUVGSlNtZGhSMVZsY3psSlZYSmFaV1ZKVlVGaE1XRk5lQ3RxYWtKdFlUaHJTMXBJWkRsUWNuaDRRd294ZGxkeFoyeHVZVTVzVFdsMGVXTkNhRFpDV1dWR2VUTldRbVZ4UTA1bGNDczNTMGxLT1RsaVpsQjBNR1ZPTHk4eE1rSnVhMHRzUlhaM1BUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjoganFybDVsbmVxNmZ5YmlieG05Zndkbm53NGlneGl4d2xtM3lza2ozYnRjZnNqZ2xiZnh1OGl5NGdnbHBndGd4aXpzZzd4eWY4dXl4bGV1cTB3bGIwNndxNTB5NGY0MnZyc3RpN2F4ZnVwaXRvZzE3YWcyZ2wzcmpzemphdnBvaDEK\"\ + \n }\n ]\n }" headers: cache-control: - no-cache @@ -1240,7 +1259,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:28:32 GMT + - Thu, 15 Jun 2023 12:38:21 GMT expires: - '-1' pragma: @@ -1274,65 +1293,67 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-xquf4rse.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-xquf4rse.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n \"publicIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-rodnmzio.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-rodnmzio.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n\ + \ \"publicIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4070' + - '4398' content-type: - application/json date: - - Wed, 15 Mar 2023 10:28:32 GMT + - Thu, 15 Jun 2023 12:38:22 GMT expires: - '-1' pragma: @@ -1351,22 +1372,22 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000004", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": - "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.24.9", + "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"outboundIPs": {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"outboundIPs": {"publicIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003"}]}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002"}], "allocatedOutboundPorts": 0, "idleTimeoutInMinutes": 30}, "podCidrs": ["10.244.0.0/16"], @@ -1385,74 +1406,76 @@ interactions: Connection: - keep-alive Content-Length: - - '2786' + - '3114' Content-Type: - application/json ParameterSetName: - -g -n --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-xquf4rse.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-xquf4rse.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n \"publicIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-rodnmzio.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-rodnmzio.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n\ + \ \"publicIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bde27c71-5024-467a-bf91-6bd5a01cdff6?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d329ca4b-6ff6-46d3-bc2e-6020aff0b077?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4249' + - '4577' content-type: - application/json date: - - Wed, 15 Mar 2023 10:28:35 GMT + - Thu, 15 Jun 2023 12:38:29 GMT expires: - '-1' pragma: @@ -1468,7 +1491,103 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - -g -n --load-balancer-outbound-ips + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d329ca4b-6ff6-46d3-bc2e-6020aff0b077?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4bca29d3-f66f-d346-bc2e-6020aff0b077\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:38:28.6814909Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 12:38:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - -g -n --load-balancer-outbound-ips + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d329ca4b-6ff6-46d3-bc2e-6020aff0b077?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4bca29d3-f66f-d346-bc2e-6020aff0b077\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:38:28.6814909Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 12:38:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -1486,14 +1605,14 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bde27c71-5024-467a-bf91-6bd5a01cdff6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d329ca4b-6ff6-46d3-bc2e-6020aff0b077?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"717ce2bd-2450-7a46-bf91-6bd5a01cdff6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:28:36.4206128Z\"\n }" + string: "{\n \"name\": \"4bca29d3-f66f-d346-bc2e-6020aff0b077\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:38:28.6814909Z\"\n }" headers: cache-control: - no-cache @@ -1502,7 +1621,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:29:05 GMT + - Thu, 15 Jun 2023 12:39:29 GMT expires: - '-1' pragma: @@ -1534,14 +1653,14 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bde27c71-5024-467a-bf91-6bd5a01cdff6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d329ca4b-6ff6-46d3-bc2e-6020aff0b077?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"717ce2bd-2450-7a46-bf91-6bd5a01cdff6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:28:36.4206128Z\"\n }" + string: "{\n \"name\": \"4bca29d3-f66f-d346-bc2e-6020aff0b077\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:38:28.6814909Z\"\n }" headers: cache-control: - no-cache @@ -1550,7 +1669,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:29:36 GMT + - Thu, 15 Jun 2023 12:39:59 GMT expires: - '-1' pragma: @@ -1582,15 +1701,15 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bde27c71-5024-467a-bf91-6bd5a01cdff6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d329ca4b-6ff6-46d3-bc2e-6020aff0b077?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"717ce2bd-2450-7a46-bf91-6bd5a01cdff6\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:28:36.4206128Z\",\n \"endTime\": - \"2023-03-15T10:30:01.8028404Z\"\n }" + string: "{\n \"name\": \"4bca29d3-f66f-d346-bc2e-6020aff0b077\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T12:38:28.6814909Z\",\n \"\ + endTime\": \"2023-06-15T12:40:16.0601421Z\"\n }" headers: cache-control: - no-cache @@ -1599,7 +1718,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:30:06 GMT + - Thu, 15 Jun 2023 12:40:30 GMT expires: - '-1' pragma: @@ -1631,67 +1750,69 @@ interactions: ParameterSetName: - -g -n --load-balancer-outbound-ips User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-xquf4rse.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-xquf4rse.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n \"publicIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-rodnmzio.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-rodnmzio.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n\ + \ \"publicIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4429' + - '4757' content-type: - application/json date: - - Wed, 15 Mar 2023 10:30:06 GMT + - Thu, 15 Jun 2023 12:40:31 GMT expires: - '-1' pragma: @@ -1723,67 +1844,69 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-xquf4rse.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000004-xquf4rse.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n \"publicIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\n - \ }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\n - \ },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\n - \ }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\": - 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n - \ ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": - [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000004\",\n \"fqdn\": \"cliaksdns000004-rodnmzio.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000004-rodnmzio.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"outboundIPs\": {\n\ + \ \"publicIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ + \n }\n ]\n },\n \"effectiveOutboundIPs\": [\n {\n\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip1000002\"\ + \n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/publicIPAddresses/cliaksslbip2000003\"\ + \n }\n ],\n \"allocatedOutboundPorts\": 0,\n \"idleTimeoutInMinutes\"\ + : 30\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"\ + 10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4429' + - '4757' content-type: - application/json date: - - Wed, 15 Mar 2023 10:30:08 GMT + - Thu, 15 Jun 2023 12:40:33 GMT expires: - '-1' pragma: @@ -1817,8 +1940,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -1826,17 +1949,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74a36830-bb2b-4591-a7b9-ab950566b3ed?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6079ada3-1ab3-4a18-b138-484f3fbd4d63?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:30:08 GMT + - Thu, 15 Jun 2023 12:40:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/74a36830-bb2b-4591-a7b9-ab950566b3ed?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/6079ada3-1ab3-4a18-b138-484f3fbd4d63?api-version=2016-03-30 pragma: - no-cache server: @@ -1846,7 +1969,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_spot_node_pool.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_spot_node_pool.yaml index 3bd56158bdd..8ad563e45e1 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_spot_node_pool.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_spot_node_pool.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:30:09 GMT + - Thu, 15 Jun 2023 12:40:40 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:30:09Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_spot_node_pool","date":"2023-06-15T12:40:38Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '360' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:30:08 GMT + - Thu, 15 Jun 2023 12:40:40 GMT expires: - '-1' pragma: @@ -88,19 +88,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestes7ttxkv7-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestnezs3nufw-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -111,67 +110,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1459' + - '1751' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestes7ttxkv7-79a739\",\n \"fqdn\": \"cliakstest-clitestes7ttxkv7-79a739-nn4h4h8i.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestes7ttxkv7-79a739-nn4h4h8i.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestnezs3nufw-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestnezs3nufw-8ecadf-exmdhcn5.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestnezs3nufw-8ecadf-exmdhcn5.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c309253b-dc3b-4999-b386-345c22c32bf3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3772c478-9596-43b3-8376-f052eed6c63e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3268' + - '3596' content-type: - application/json date: - - Wed, 15 Mar 2023 10:30:12 GMT + - Thu, 15 Jun 2023 12:40:48 GMT expires: - '-1' pragma: @@ -183,7 +184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -201,14 +202,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c309253b-dc3b-4999-b386-345c22c32bf3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3772c478-9596-43b3-8376-f052eed6c63e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3b2509c3-3bdc-9949-b386-345c22c32bf3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:30:12.7178032Z\"\n }" + string: "{\n \"name\": \"78c47237-9695-b343-8376-f052eed6c63e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:40:48.7286092Z\"\n }" headers: cache-control: - no-cache @@ -217,7 +218,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:30:42 GMT + - Thu, 15 Jun 2023 12:40:49 GMT expires: - '-1' pragma: @@ -249,14 +250,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c309253b-dc3b-4999-b386-345c22c32bf3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3772c478-9596-43b3-8376-f052eed6c63e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3b2509c3-3bdc-9949-b386-345c22c32bf3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:30:12.7178032Z\"\n }" + string: "{\n \"name\": \"78c47237-9695-b343-8376-f052eed6c63e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:40:48.7286092Z\"\n }" headers: cache-control: - no-cache @@ -265,7 +266,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:31:12 GMT + - Thu, 15 Jun 2023 12:41:19 GMT expires: - '-1' pragma: @@ -297,14 +298,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c309253b-dc3b-4999-b386-345c22c32bf3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3772c478-9596-43b3-8376-f052eed6c63e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3b2509c3-3bdc-9949-b386-345c22c32bf3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:30:12.7178032Z\"\n }" + string: "{\n \"name\": \"78c47237-9695-b343-8376-f052eed6c63e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:40:48.7286092Z\"\n }" headers: cache-control: - no-cache @@ -313,7 +314,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:31:42 GMT + - Thu, 15 Jun 2023 12:41:49 GMT expires: - '-1' pragma: @@ -345,14 +346,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c309253b-dc3b-4999-b386-345c22c32bf3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3772c478-9596-43b3-8376-f052eed6c63e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3b2509c3-3bdc-9949-b386-345c22c32bf3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:30:12.7178032Z\"\n }" + string: "{\n \"name\": \"78c47237-9695-b343-8376-f052eed6c63e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:40:48.7286092Z\"\n }" headers: cache-control: - no-cache @@ -361,7 +362,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:32:12 GMT + - Thu, 15 Jun 2023 12:42:19 GMT expires: - '-1' pragma: @@ -393,14 +394,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c309253b-dc3b-4999-b386-345c22c32bf3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3772c478-9596-43b3-8376-f052eed6c63e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3b2509c3-3bdc-9949-b386-345c22c32bf3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:30:12.7178032Z\"\n }" + string: "{\n \"name\": \"78c47237-9695-b343-8376-f052eed6c63e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:40:48.7286092Z\"\n }" headers: cache-control: - no-cache @@ -409,7 +410,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:32:43 GMT + - Thu, 15 Jun 2023 12:42:49 GMT expires: - '-1' pragma: @@ -441,14 +442,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c309253b-dc3b-4999-b386-345c22c32bf3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3772c478-9596-43b3-8376-f052eed6c63e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3b2509c3-3bdc-9949-b386-345c22c32bf3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:30:12.7178032Z\"\n }" + string: "{\n \"name\": \"78c47237-9695-b343-8376-f052eed6c63e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:40:48.7286092Z\"\n }" headers: cache-control: - no-cache @@ -457,7 +458,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:33:13 GMT + - Thu, 15 Jun 2023 12:43:19 GMT expires: - '-1' pragma: @@ -489,14 +490,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c309253b-dc3b-4999-b386-345c22c32bf3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3772c478-9596-43b3-8376-f052eed6c63e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3b2509c3-3bdc-9949-b386-345c22c32bf3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:30:12.7178032Z\"\n }" + string: "{\n \"name\": \"78c47237-9695-b343-8376-f052eed6c63e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:40:48.7286092Z\"\n }" headers: cache-control: - no-cache @@ -505,7 +506,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:33:42 GMT + - Thu, 15 Jun 2023 12:43:49 GMT expires: - '-1' pragma: @@ -537,72 +538,24 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c309253b-dc3b-4999-b386-345c22c32bf3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3772c478-9596-43b3-8376-f052eed6c63e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3b2509c3-3bdc-9949-b386-345c22c32bf3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:30:12.7178032Z\"\n }" + string: "{\n \"name\": \"78c47237-9695-b343-8376-f052eed6c63e\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T12:40:48.7286092Z\",\n \"\ + endTime\": \"2023-06-15T12:44:18.7099276Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:34:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --vm-set-type --node-count --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c309253b-dc3b-4999-b386-345c22c32bf3?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"3b2509c3-3bdc-9949-b386-345c22c32bf3\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:30:12.7178032Z\",\n \"endTime\": - \"2023-03-15T10:34:18.993228Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '169' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 10:34:42 GMT + - Thu, 15 Jun 2023 12:44:20 GMT expires: - '-1' pragma: @@ -634,64 +587,66 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestes7ttxkv7-79a739\",\n \"fqdn\": \"cliakstest-clitestes7ttxkv7-79a739-nn4h4h8i.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestes7ttxkv7-79a739-nn4h4h8i.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/57f693ed-4086-4197-b3d5-2c3a03918d88\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestnezs3nufw-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestnezs3nufw-8ecadf-exmdhcn5.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestnezs3nufw-8ecadf-exmdhcn5.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7bf458ee-d0f1-49ad-bbbb-c0a464573270\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4249' content-type: - application/json date: - - Wed, 15 Mar 2023 10:34:43 GMT + - Thu, 15 Jun 2023 12:44:21 GMT expires: - '-1' pragma: @@ -723,34 +678,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '1036' + - '1037' content-type: - application/json date: - - Wed, 15 Mar 2023 10:34:44 GMT + - Thu, 15 Jun 2023 12:44:23 GMT expires: - '-1' pragma: @@ -791,38 +746,39 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/s000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/s000002\",\n - \ \"name\": \"s000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"scaleSetPriority\": \"Spot\",\n \"scaleSetEvictionPolicy\": - \"Delete\",\n \"spotMaxPrice\": 88.88888,\n \"nodeLabels\": {\n \"kubernetes.azure.com/scalesetpriority\": - \"spot\"\n },\n \"nodeTaints\": [\n \"kubernetes.azure.com/scalesetpriority=spot:NoSchedule\"\n - \ ],\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/s000002\"\ + ,\n \"name\": \"s000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"scaleSetPriority\"\ + : \"Spot\",\n \"scaleSetEvictionPolicy\": \"Delete\",\n \"spotMaxPrice\"\ + : 88.88888,\n \"nodeLabels\": {\n \"kubernetes.azure.com/scalesetpriority\"\ + : \"spot\"\n },\n \"nodeTaints\": [\n \"kubernetes.azure.com/scalesetpriority=spot:NoSchedule\"\ + \n ],\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/df5367f2-4f50-4312-bd52-f6fd58c272af?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/549fb866-853d-41de-82e0-b84f3a87cbf8?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1237' + - '1238' content-type: - application/json date: - - Wed, 15 Mar 2023 10:34:47 GMT + - Thu, 15 Jun 2023 12:44:27 GMT expires: - '-1' pragma: @@ -834,7 +790,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -852,14 +808,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/df5367f2-4f50-4312-bd52-f6fd58c272af?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/549fb866-853d-41de-82e0-b84f3a87cbf8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f26753df-504f-1243-bd52-f6fd58c272af\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:34:47.8592347Z\"\n }" + string: "{\n \"name\": \"66b89f54-3d85-de41-82e0-b84f3a87cbf8\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:44:28.7916341Z\"\n }" headers: cache-control: - no-cache @@ -868,7 +824,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:35:17 GMT + - Thu, 15 Jun 2023 12:44:28 GMT expires: - '-1' pragma: @@ -900,14 +856,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/df5367f2-4f50-4312-bd52-f6fd58c272af?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/549fb866-853d-41de-82e0-b84f3a87cbf8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f26753df-504f-1243-bd52-f6fd58c272af\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:34:47.8592347Z\"\n }" + string: "{\n \"name\": \"66b89f54-3d85-de41-82e0-b84f3a87cbf8\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:44:28.7916341Z\"\n }" headers: cache-control: - no-cache @@ -916,7 +872,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:35:47 GMT + - Thu, 15 Jun 2023 12:44:59 GMT expires: - '-1' pragma: @@ -948,14 +904,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/df5367f2-4f50-4312-bd52-f6fd58c272af?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/549fb866-853d-41de-82e0-b84f3a87cbf8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f26753df-504f-1243-bd52-f6fd58c272af\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:34:47.8592347Z\"\n }" + string: "{\n \"name\": \"66b89f54-3d85-de41-82e0-b84f3a87cbf8\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:44:28.7916341Z\"\n }" headers: cache-control: - no-cache @@ -964,7 +920,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:36:17 GMT + - Thu, 15 Jun 2023 12:45:29 GMT expires: - '-1' pragma: @@ -996,14 +952,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/df5367f2-4f50-4312-bd52-f6fd58c272af?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/549fb866-853d-41de-82e0-b84f3a87cbf8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f26753df-504f-1243-bd52-f6fd58c272af\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:34:47.8592347Z\"\n }" + string: "{\n \"name\": \"66b89f54-3d85-de41-82e0-b84f3a87cbf8\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:44:28.7916341Z\"\n }" headers: cache-control: - no-cache @@ -1012,7 +968,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:36:47 GMT + - Thu, 15 Jun 2023 12:45:58 GMT expires: - '-1' pragma: @@ -1044,15 +1000,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/df5367f2-4f50-4312-bd52-f6fd58c272af?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/549fb866-853d-41de-82e0-b84f3a87cbf8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f26753df-504f-1243-bd52-f6fd58c272af\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:34:47.8592347Z\",\n \"endTime\": - \"2023-03-15T10:37:16.1365285Z\"\n }" + string: "{\n \"name\": \"66b89f54-3d85-de41-82e0-b84f3a87cbf8\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T12:44:28.7916341Z\",\n \"\ + endTime\": \"2023-06-15T12:46:02.5389183Z\"\n }" headers: cache-control: - no-cache @@ -1061,7 +1017,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:37:17 GMT + - Thu, 15 Jun 2023 12:46:28 GMT expires: - '-1' pragma: @@ -1093,36 +1049,37 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/s000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/s000002\",\n - \ \"name\": \"s000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"scaleSetPriority\": \"Spot\",\n \"scaleSetEvictionPolicy\": - \"Delete\",\n \"spotMaxPrice\": 88.88888,\n \"nodeLabels\": {\n \"kubernetes.azure.com/scalesetpriority\": - \"spot\"\n },\n \"nodeTaints\": [\n \"kubernetes.azure.com/scalesetpriority=spot:NoSchedule\"\n - \ ],\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/s000002\"\ + ,\n \"name\": \"s000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"scaleSetPriority\"\ + : \"Spot\",\n \"scaleSetEvictionPolicy\": \"Delete\",\n \"spotMaxPrice\"\ + : 88.88888,\n \"nodeLabels\": {\n \"kubernetes.azure.com/scalesetpriority\"\ + : \"spot\"\n },\n \"nodeTaints\": [\n \"kubernetes.azure.com/scalesetpriority=spot:NoSchedule\"\ + \n ],\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1238' + - '1239' content-type: - application/json date: - - Wed, 15 Mar 2023 10:37:17 GMT + - Thu, 15 Jun 2023 12:46:29 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_spot_node_pool_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_spot_node_pool_msi.yaml index baf74545e07..22c3a300e9e 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_spot_node_pool_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_spot_node_pool_msi.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:33:04 GMT + - Thu, 15 Jun 2023 12:46:35 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:33:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_spot_node_pool_msi","date":"2023-06-15T12:46:32Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '364' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:33:04 GMT + - Thu, 15 Jun 2023 12:46:35 GMT expires: - '-1' pragma: @@ -88,19 +88,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestbkqoqtzbm-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestmfmnebwiv-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -111,67 +110,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1459' + - '1751' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestbkqoqtzbm-79a739\",\n \"fqdn\": \"cliakstest-clitestbkqoqtzbm-79a739-nt9qvbqk.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbkqoqtzbm-79a739-nt9qvbqk.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestmfmnebwiv-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestmfmnebwiv-8ecadf-z9t26fdr.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestmfmnebwiv-8ecadf-z9t26fdr.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34ba844d-9218-4718-bfd5-891abb7b9404?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5fd9f130-6d15-4d33-a332-6550564f8c91?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3268' + - '3596' content-type: - application/json date: - - Wed, 15 Mar 2023 10:33:08 GMT + - Thu, 15 Jun 2023 12:46:42 GMT expires: - '-1' pragma: @@ -183,7 +184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -201,62 +202,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34ba844d-9218-4718-bfd5-891abb7b9404?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"4d84ba34-1892-1847-bfd5-891abb7b9404\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:33:09.4370849Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:33:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --vm-set-type --node-count --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34ba844d-9218-4718-bfd5-891abb7b9404?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5fd9f130-6d15-4d33-a332-6550564f8c91?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d84ba34-1892-1847-bfd5-891abb7b9404\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:33:09.4370849Z\"\n }" + string: "{\n \"name\": \"30f1d95f-156d-334d-a332-6550564f8c91\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:46:42.4014415Z\"\n }" headers: cache-control: - no-cache @@ -265,7 +218,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:34:09 GMT + - Thu, 15 Jun 2023 12:46:42 GMT expires: - '-1' pragma: @@ -297,14 +250,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34ba844d-9218-4718-bfd5-891abb7b9404?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5fd9f130-6d15-4d33-a332-6550564f8c91?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d84ba34-1892-1847-bfd5-891abb7b9404\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:33:09.4370849Z\"\n }" + string: "{\n \"name\": \"30f1d95f-156d-334d-a332-6550564f8c91\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:46:42.4014415Z\"\n }" headers: cache-control: - no-cache @@ -313,7 +266,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:34:39 GMT + - Thu, 15 Jun 2023 12:47:13 GMT expires: - '-1' pragma: @@ -345,14 +298,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34ba844d-9218-4718-bfd5-891abb7b9404?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5fd9f130-6d15-4d33-a332-6550564f8c91?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d84ba34-1892-1847-bfd5-891abb7b9404\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:33:09.4370849Z\"\n }" + string: "{\n \"name\": \"30f1d95f-156d-334d-a332-6550564f8c91\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:46:42.4014415Z\"\n }" headers: cache-control: - no-cache @@ -361,7 +314,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:35:09 GMT + - Thu, 15 Jun 2023 12:47:43 GMT expires: - '-1' pragma: @@ -393,14 +346,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34ba844d-9218-4718-bfd5-891abb7b9404?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5fd9f130-6d15-4d33-a332-6550564f8c91?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d84ba34-1892-1847-bfd5-891abb7b9404\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:33:09.4370849Z\"\n }" + string: "{\n \"name\": \"30f1d95f-156d-334d-a332-6550564f8c91\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:46:42.4014415Z\"\n }" headers: cache-control: - no-cache @@ -409,7 +362,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:35:39 GMT + - Thu, 15 Jun 2023 12:48:13 GMT expires: - '-1' pragma: @@ -441,63 +394,15 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34ba844d-9218-4718-bfd5-891abb7b9404?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5fd9f130-6d15-4d33-a332-6550564f8c91?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4d84ba34-1892-1847-bfd5-891abb7b9404\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:33:09.4370849Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:36:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --vm-set-type --node-count --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/34ba844d-9218-4718-bfd5-891abb7b9404?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"4d84ba34-1892-1847-bfd5-891abb7b9404\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:33:09.4370849Z\",\n \"endTime\": - \"2023-03-15T10:36:31.2746856Z\"\n }" + string: "{\n \"name\": \"30f1d95f-156d-334d-a332-6550564f8c91\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T12:46:42.4014415Z\",\n \"\ + endTime\": \"2023-06-15T12:50:10.8524742Z\"\n }" headers: cache-control: - no-cache @@ -506,7 +411,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:36:39 GMT + - Thu, 15 Jun 2023 12:52:16 GMT expires: - '-1' pragma: @@ -538,64 +443,66 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestbkqoqtzbm-79a739\",\n \"fqdn\": \"cliakstest-clitestbkqoqtzbm-79a739-nt9qvbqk.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbkqoqtzbm-79a739-nt9qvbqk.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3d578a51-5500-4868-a1ab-982dc3e64fae\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestmfmnebwiv-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestmfmnebwiv-8ecadf-z9t26fdr.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestmfmnebwiv-8ecadf-z9t26fdr.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/149279fd-9664-4aab-bd48-992148b4c1e7\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4249' content-type: - application/json date: - - Wed, 15 Mar 2023 10:36:39 GMT + - Thu, 15 Jun 2023 12:52:18 GMT expires: - '-1' pragma: @@ -627,34 +534,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '1036' + - '1037' content-type: - application/json date: - - Wed, 15 Mar 2023 10:36:41 GMT + - Thu, 15 Jun 2023 12:52:20 GMT expires: - '-1' pragma: @@ -695,38 +602,39 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/s000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/s000002\",\n - \ \"name\": \"s000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"scaleSetPriority\": \"Spot\",\n \"scaleSetEvictionPolicy\": - \"Delete\",\n \"spotMaxPrice\": 88.88888,\n \"nodeLabels\": {\n \"kubernetes.azure.com/scalesetpriority\": - \"spot\"\n },\n \"nodeTaints\": [\n \"kubernetes.azure.com/scalesetpriority=spot:NoSchedule\"\n - \ ],\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/s000002\"\ + ,\n \"name\": \"s000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"scaleSetPriority\"\ + : \"Spot\",\n \"scaleSetEvictionPolicy\": \"Delete\",\n \"spotMaxPrice\"\ + : 88.88888,\n \"nodeLabels\": {\n \"kubernetes.azure.com/scalesetpriority\"\ + : \"spot\"\n },\n \"nodeTaints\": [\n \"kubernetes.azure.com/scalesetpriority=spot:NoSchedule\"\ + \n ],\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bde7b4ab-c7ec-476d-ac29-d6853144ae93?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55d098d9-db5e-4a5c-9d01-59a88699ea3b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1237' + - '1238' content-type: - application/json date: - - Wed, 15 Mar 2023 10:36:44 GMT + - Thu, 15 Jun 2023 12:52:25 GMT expires: - '-1' pragma: @@ -756,14 +664,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bde7b4ab-c7ec-476d-ac29-d6853144ae93?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55d098d9-db5e-4a5c-9d01-59a88699ea3b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"abb4e7bd-ecc7-6d47-ac29-d6853144ae93\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:36:44.9220488Z\"\n }" + string: "{\n \"name\": \"d998d055-5edb-5c4a-9d01-59a88699ea3b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:52:25.8708301Z\"\n }" headers: cache-control: - no-cache @@ -772,7 +680,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:37:15 GMT + - Thu, 15 Jun 2023 12:52:25 GMT expires: - '-1' pragma: @@ -804,14 +712,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bde7b4ab-c7ec-476d-ac29-d6853144ae93?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55d098d9-db5e-4a5c-9d01-59a88699ea3b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"abb4e7bd-ecc7-6d47-ac29-d6853144ae93\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:36:44.9220488Z\"\n }" + string: "{\n \"name\": \"d998d055-5edb-5c4a-9d01-59a88699ea3b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:52:25.8708301Z\"\n }" headers: cache-control: - no-cache @@ -820,7 +728,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:37:44 GMT + - Thu, 15 Jun 2023 12:54:10 GMT expires: - '-1' pragma: @@ -852,14 +760,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bde7b4ab-c7ec-476d-ac29-d6853144ae93?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55d098d9-db5e-4a5c-9d01-59a88699ea3b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"abb4e7bd-ecc7-6d47-ac29-d6853144ae93\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:36:44.9220488Z\"\n }" + string: "{\n \"name\": \"d998d055-5edb-5c4a-9d01-59a88699ea3b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:52:25.8708301Z\"\n }" headers: cache-control: - no-cache @@ -868,7 +776,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:38:15 GMT + - Thu, 15 Jun 2023 12:55:25 GMT expires: - '-1' pragma: @@ -900,159 +808,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bde7b4ab-c7ec-476d-ac29-d6853144ae93?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55d098d9-db5e-4a5c-9d01-59a88699ea3b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"abb4e7bd-ecc7-6d47-ac29-d6853144ae93\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:36:44.9220488Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:38:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name -n --priority --spot-max-price -c - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bde7b4ab-c7ec-476d-ac29-d6853144ae93?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"abb4e7bd-ecc7-6d47-ac29-d6853144ae93\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:36:44.9220488Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:39:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name -n --priority --spot-max-price -c - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bde7b4ab-c7ec-476d-ac29-d6853144ae93?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"abb4e7bd-ecc7-6d47-ac29-d6853144ae93\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:36:44.9220488Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:39:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name -n --priority --spot-max-price -c - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bde7b4ab-c7ec-476d-ac29-d6853144ae93?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"abb4e7bd-ecc7-6d47-ac29-d6853144ae93\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:36:44.9220488Z\",\n \"endTime\": - \"2023-03-15T10:39:56.0806954Z\"\n }" + string: "{\n \"name\": \"d998d055-5edb-5c4a-9d01-59a88699ea3b\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T12:52:25.8708301Z\",\n \"\ + endTime\": \"2023-06-15T12:55:39.0758263Z\"\n }" headers: cache-control: - no-cache @@ -1061,7 +825,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:40:15 GMT + - Thu, 15 Jun 2023 12:55:57 GMT expires: - '-1' pragma: @@ -1093,36 +857,37 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --priority --spot-max-price -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/s000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/s000002\",\n - \ \"name\": \"s000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"scaleSetPriority\": \"Spot\",\n \"scaleSetEvictionPolicy\": - \"Delete\",\n \"spotMaxPrice\": 88.88888,\n \"nodeLabels\": {\n \"kubernetes.azure.com/scalesetpriority\": - \"spot\"\n },\n \"nodeTaints\": [\n \"kubernetes.azure.com/scalesetpriority=spot:NoSchedule\"\n - \ ],\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/s000002\"\ + ,\n \"name\": \"s000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"scaleSetPriority\"\ + : \"Spot\",\n \"scaleSetEvictionPolicy\": \"Delete\",\n \"spotMaxPrice\"\ + : 88.88888,\n \"nodeLabels\": {\n \"kubernetes.azure.com/scalesetpriority\"\ + : \"spot\"\n },\n \"nodeTaints\": [\n \"kubernetes.azure.com/scalesetpriority=spot:NoSchedule\"\ + \n ],\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1238' + - '1239' content-type: - application/json date: - - Wed, 15 Mar 2023 10:40:15 GMT + - Thu, 15 Jun 2023 12:55:58 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_SP_then_update_to_user_assigned_identity.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_SP_then_update_to_user_assigned_identity.yaml index 0ae7b83f92b..4092f16752d 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_SP_then_update_to_user_assigned_identity.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_SP_then_update_to_user_assigned_identity.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:40:17 GMT + - Thu, 15 Jun 2023 12:56:07 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:40:16Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_with_SP_then_update_to_user_assigned_identity","date":"2023-06-15T12:56:01Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '390' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:40:16 GMT + - Thu, 15 Jun 2023 12:56:07 GMT expires: - '-1' pragma: @@ -87,21 +87,20 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliakstest-clitesthatdm4opn-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + body: '{"location": "westus", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliakstest-clitestvs6fp4nfo-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, - "storageProfile": {}}}' + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -112,65 +111,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1523' + - '1814' Content-Type: - application/json ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthatdm4opn-79a739\",\n \"fqdn\": \"cliakstest-clitesthatdm4opn-79a739-8jkjnzdg.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthatdm4opn-79a739-8jkjnzdg.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus\",\n \"name\": \"cliakstest000003\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestvs6fp4nfo-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestvs6fp4nfo-8ecadf-obet1icj.hcp.westus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestvs6fp4nfo-8ecadf-obet1icj.portal.hcp.westus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f0b121bf-543c-48b7-9f5c-39807e7601fd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus/operations/bafa9233-0dfd-4a83-8be8-cabe1a640792?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3107' + - '3431' content-type: - application/json date: - - Wed, 15 Mar 2023 10:40:21 GMT + - Thu, 15 Jun 2023 12:56:17 GMT expires: - '-1' pragma: @@ -182,7 +183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -200,14 +201,14 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f0b121bf-543c-48b7-9f5c-39807e7601fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus/operations/bafa9233-0dfd-4a83-8be8-cabe1a640792?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"bf21b1f0-3c54-b748-9f5c-39807e7601fd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:40:20.9701291Z\"\n }" + string: "{\n \"name\": \"3392faba-fd0d-834a-8be8-cabe1a640792\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:56:17.3980314Z\"\n }" headers: cache-control: - no-cache @@ -216,7 +217,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:40:50 GMT + - Thu, 15 Jun 2023 12:56:17 GMT expires: - '-1' pragma: @@ -248,14 +249,14 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f0b121bf-543c-48b7-9f5c-39807e7601fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus/operations/bafa9233-0dfd-4a83-8be8-cabe1a640792?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"bf21b1f0-3c54-b748-9f5c-39807e7601fd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:40:20.9701291Z\"\n }" + string: "{\n \"name\": \"3392faba-fd0d-834a-8be8-cabe1a640792\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:56:17.3980314Z\"\n }" headers: cache-control: - no-cache @@ -264,7 +265,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:41:20 GMT + - Thu, 15 Jun 2023 12:56:47 GMT expires: - '-1' pragma: @@ -296,14 +297,14 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f0b121bf-543c-48b7-9f5c-39807e7601fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus/operations/bafa9233-0dfd-4a83-8be8-cabe1a640792?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"bf21b1f0-3c54-b748-9f5c-39807e7601fd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:40:20.9701291Z\"\n }" + string: "{\n \"name\": \"3392faba-fd0d-834a-8be8-cabe1a640792\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:56:17.3980314Z\"\n }" headers: cache-control: - no-cache @@ -312,7 +313,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:41:51 GMT + - Thu, 15 Jun 2023 12:57:18 GMT expires: - '-1' pragma: @@ -344,14 +345,14 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f0b121bf-543c-48b7-9f5c-39807e7601fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus/operations/bafa9233-0dfd-4a83-8be8-cabe1a640792?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"bf21b1f0-3c54-b748-9f5c-39807e7601fd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:40:20.9701291Z\"\n }" + string: "{\n \"name\": \"3392faba-fd0d-834a-8be8-cabe1a640792\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:56:17.3980314Z\"\n }" headers: cache-control: - no-cache @@ -360,7 +361,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:42:21 GMT + - Thu, 15 Jun 2023 12:57:48 GMT expires: - '-1' pragma: @@ -392,14 +393,14 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f0b121bf-543c-48b7-9f5c-39807e7601fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus/operations/bafa9233-0dfd-4a83-8be8-cabe1a640792?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"bf21b1f0-3c54-b748-9f5c-39807e7601fd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:40:20.9701291Z\"\n }" + string: "{\n \"name\": \"3392faba-fd0d-834a-8be8-cabe1a640792\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:56:17.3980314Z\"\n }" headers: cache-control: - no-cache @@ -408,7 +409,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:42:50 GMT + - Thu, 15 Jun 2023 12:58:18 GMT expires: - '-1' pragma: @@ -440,14 +441,14 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f0b121bf-543c-48b7-9f5c-39807e7601fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus/operations/bafa9233-0dfd-4a83-8be8-cabe1a640792?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"bf21b1f0-3c54-b748-9f5c-39807e7601fd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:40:20.9701291Z\"\n }" + string: "{\n \"name\": \"3392faba-fd0d-834a-8be8-cabe1a640792\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:56:17.3980314Z\"\n }" headers: cache-control: - no-cache @@ -456,7 +457,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:43:21 GMT + - Thu, 15 Jun 2023 12:58:48 GMT expires: - '-1' pragma: @@ -488,24 +489,23 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f0b121bf-543c-48b7-9f5c-39807e7601fd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus/operations/bafa9233-0dfd-4a83-8be8-cabe1a640792?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"bf21b1f0-3c54-b748-9f5c-39807e7601fd\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:40:20.9701291Z\",\n \"endTime\": - \"2023-03-15T10:43:26.3523919Z\"\n }" + string: "{\n \"name\": \"3392faba-fd0d-834a-8be8-cabe1a640792\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T12:56:17.3980314Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:43:51 GMT + - Thu, 15 Jun 2023 12:59:19 GMT expires: - '-1' pragma: @@ -537,59 +537,24 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus/operations/bafa9233-0dfd-4a83-8be8-cabe1a640792?api-version=2017-08-31 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthatdm4opn-79a739\",\n \"fqdn\": \"cliakstest-clitesthatdm4opn-79a739-8jkjnzdg.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthatdm4opn-79a739-8jkjnzdg.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/5a84650b-8b19-4399-968e-68de2c898e3d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"3392faba-fd0d-834a-8be8-cabe1a640792\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T12:56:17.3980314Z\",\n \"\ + endTime\": \"2023-06-15T12:59:30.2235231Z\"\n }" headers: cache-control: - no-cache content-length: - - '3371' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 10:43:51 GMT + - Thu, 15 Jun 2023 12:59:49 GMT expires: - '-1' pragma: @@ -611,37 +576,81 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - identity create + - aks create Connection: - keep-alive ParameterSetName: - - -g -n + - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:40:16Z"},"properties":{"provisioningState":"Succeeded"}}' + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus\",\n \"name\": \"cliakstest000003\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestvs6fp4nfo-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestvs6fp4nfo-8ecadf-obet1icj.hcp.westus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestvs6fp4nfo-8ecadf-obet1icj.portal.hcp.westus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus/providers/Microsoft.Network/publicIPAddresses/ae13f8e4-a8a4-4e36-81be-2b67dd7d5de6\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '305' + - '3694' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 15 Mar 2023 10:43:51 GMT + - Thu, 15 Jun 2023 12:59:49 GMT expires: - '-1' pragma: - no-cache + server: + - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -650,7 +659,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2"}' + body: null headers: Accept: - application/json @@ -660,120 +669,30 @@ interactions: - identity create Connection: - keep-alive - Content-Length: - - '23' - Content-Type: - - application/json ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000004?api-version=2023-01-31 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000004","name":"cli000004","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001"}}' - headers: - cache-control: - - no-cache - content-length: - - '434' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 15 Mar 2023 10:43:53 GMT - expires: - - '-1' - location: - - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000004 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1195' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --assign-identity --yes - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthatdm4opn-79a739\",\n \"fqdn\": \"cliakstest-clitesthatdm4opn-79a739-8jkjnzdg.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthatdm4opn-79a739-8jkjnzdg.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/5a84650b-8b19-4399-968e-68de2c898e3d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_with_SP_then_update_to_user_assigned_identity","date":"2023-06-15T12:56:01Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '3371' + - '390' content-type: - - application/json + - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:43:53 GMT + - Thu, 15 Jun 2023 12:59:50 GMT expires: - '-1' pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: @@ -782,172 +701,58 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000004": - {}}}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": "cliakstest-clitesthatdm4opn-79a739", - "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": - 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": - "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": - {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, - "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000003_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/5a84650b-8b19-4399-968e-68de2c898e3d"}]}, - "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": - ["IPv4"]}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": - {}, "workloadAutoScalerProfile": {}}}' + body: '{"location": "westus"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks update + - identity create Connection: - keep-alive Content-Length: - - '2311' + - '22' Content-Type: - application/json ParameterSetName: - - --resource-group --name --enable-managed-identity --assign-identity --yes + - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000004?api-version=2023-01-31 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthatdm4opn-79a739\",\n \"fqdn\": \"cliakstest-clitesthatdm4opn-79a739-8jkjnzdg.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthatdm4opn-79a739-8jkjnzdg.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/5a84650b-8b19-4399-968e-68de2c898e3d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000004\": - {}\n }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n - \ }\n }" + string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000004","name":"cli000004","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001"}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84d94f6-d38d-453d-9208-f8900e152362?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3613' + - '433' content-type: - - application/json + - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:43:56 GMT + - Thu, 15 Jun 2023 12:59:53 GMT expires: - '-1' + location: + - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000004 pragma: - no-cache - server: - - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --assign-identity --yes - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84d94f6-d38d-453d-9208-f8900e152362?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"f6944dd8-8dd3-3d45-9208-f8900e152362\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:56.8305295Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - application/json - date: - - Wed, 15 Mar 2023 10:44:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -957,23 +762,61 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --assign-identity --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84d94f6-d38d-453d-9208-f8900e152362?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"f6944dd8-8dd3-3d45-9208-f8900e152362\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:56.8305295Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus\",\n \"name\": \"cliakstest000003\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestvs6fp4nfo-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestvs6fp4nfo-8ecadf-obet1icj.hcp.westus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestvs6fp4nfo-8ecadf-obet1icj.portal.hcp.westus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus/providers/Microsoft.Network/publicIPAddresses/ae13f8e4-a8a4-4e36-81be-2b67dd7d5de6\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '3694' content-type: - application/json date: - - Wed, 15 Mar 2023 10:44:57 GMT + - Thu, 15 Jun 2023 12:59:55 GMT expires: - '-1' pragma: @@ -992,132 +835,102 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000004": + {}}}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliakstest-clitestvs6fp4nfo-8ecadf", + "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": + 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": + "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": + {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000003_westus", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus/providers/Microsoft.Network/publicIPAddresses/ae13f8e4-a8a4-4e36-81be-2b67dd7d5de6"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": + {}, "workloadAutoScalerProfile": {}}}' headers: Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --assign-identity --yes - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84d94f6-d38d-453d-9208-f8900e152362?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"f6944dd8-8dd3-3d45-9208-f8900e152362\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:56.8305295Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - application/json - date: - - Wed, 15 Mar 2023 10:45:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks update Connection: - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --assign-identity --yes - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84d94f6-d38d-453d-9208-f8900e152362?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"f6944dd8-8dd3-3d45-9208-f8900e152362\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:56.8305295Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: + Content-Length: + - '2636' + Content-Type: - application/json - date: - - Wed, 15 Mar 2023 10:45:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive ParameterSetName: - --resource-group --name --enable-managed-identity --assign-identity --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84d94f6-d38d-453d-9208-f8900e152362?api-version=2016-03-30 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"f6944dd8-8dd3-3d45-9208-f8900e152362\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:56.8305295Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus\",\n \"name\": \"cliakstest000003\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestvs6fp4nfo-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestvs6fp4nfo-8ecadf-obet1icj.hcp.westus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestvs6fp4nfo-8ecadf-obet1icj.portal.hcp.westus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus/providers/Microsoft.Network/publicIPAddresses/ae13f8e4-a8a4-4e36-81be-2b67dd7d5de6\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000004\"\ + : {}\n }\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\ + \n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus/operations/0fcddb84-7d39-4182-b0e1-cd9c84a930ee?api-version=2017-08-31 cache-control: - no-cache content-length: - - '126' + - '3936' content-type: - application/json date: - - Wed, 15 Mar 2023 10:46:26 GMT + - Thu, 15 Jun 2023 13:00:01 GMT expires: - '-1' pragma: @@ -1132,6 +945,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -1149,14 +964,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --assign-identity --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84d94f6-d38d-453d-9208-f8900e152362?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus/operations/0fcddb84-7d39-4182-b0e1-cd9c84a930ee?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f6944dd8-8dd3-3d45-9208-f8900e152362\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:56.8305295Z\"\n }" + string: "{\n \"name\": \"84dbcd0f-397d-8241-b0e1-cd9c84a930ee\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:00:00.1645471Z\"\n }" headers: cache-control: - no-cache @@ -1165,7 +980,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:46:56 GMT + - Thu, 15 Jun 2023 13:00:01 GMT expires: - '-1' pragma: @@ -1197,14 +1012,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --assign-identity --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84d94f6-d38d-453d-9208-f8900e152362?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus/operations/0fcddb84-7d39-4182-b0e1-cd9c84a930ee?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f6944dd8-8dd3-3d45-9208-f8900e152362\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:56.8305295Z\"\n }" + string: "{\n \"name\": \"84dbcd0f-397d-8241-b0e1-cd9c84a930ee\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:00:00.1645471Z\"\n }" headers: cache-control: - no-cache @@ -1213,7 +1028,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:47:26 GMT + - Thu, 15 Jun 2023 13:00:31 GMT expires: - '-1' pragma: @@ -1245,14 +1060,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --assign-identity --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84d94f6-d38d-453d-9208-f8900e152362?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus/operations/0fcddb84-7d39-4182-b0e1-cd9c84a930ee?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f6944dd8-8dd3-3d45-9208-f8900e152362\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:56.8305295Z\"\n }" + string: "{\n \"name\": \"84dbcd0f-397d-8241-b0e1-cd9c84a930ee\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:00:00.1645471Z\"\n }" headers: cache-control: - no-cache @@ -1261,7 +1076,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:47:57 GMT + - Thu, 15 Jun 2023 13:01:01 GMT expires: - '-1' pragma: @@ -1293,14 +1108,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --assign-identity --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84d94f6-d38d-453d-9208-f8900e152362?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus/operations/0fcddb84-7d39-4182-b0e1-cd9c84a930ee?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f6944dd8-8dd3-3d45-9208-f8900e152362\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:56.8305295Z\"\n }" + string: "{\n \"name\": \"84dbcd0f-397d-8241-b0e1-cd9c84a930ee\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:00:00.1645471Z\"\n }" headers: cache-control: - no-cache @@ -1309,7 +1124,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:48:27 GMT + - Thu, 15 Jun 2023 13:01:31 GMT expires: - '-1' pragma: @@ -1341,14 +1156,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --assign-identity --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84d94f6-d38d-453d-9208-f8900e152362?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus/operations/0fcddb84-7d39-4182-b0e1-cd9c84a930ee?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f6944dd8-8dd3-3d45-9208-f8900e152362\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:56.8305295Z\"\n }" + string: "{\n \"name\": \"84dbcd0f-397d-8241-b0e1-cd9c84a930ee\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:00:00.1645471Z\"\n }" headers: cache-control: - no-cache @@ -1357,7 +1172,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:48:57 GMT + - Thu, 15 Jun 2023 13:02:01 GMT expires: - '-1' pragma: @@ -1389,408 +1204,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --assign-identity --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84d94f6-d38d-453d-9208-f8900e152362?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus/operations/0fcddb84-7d39-4182-b0e1-cd9c84a930ee?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f6944dd8-8dd3-3d45-9208-f8900e152362\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:56.8305295Z\"\n }" + string: "{\n \"name\": \"84dbcd0f-397d-8241-b0e1-cd9c84a930ee\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T13:00:00.1645471Z\",\n \"\ + endTime\": \"2023-06-15T13:02:16.213729Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:49:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --assign-identity --yes - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84d94f6-d38d-453d-9208-f8900e152362?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"f6944dd8-8dd3-3d45-9208-f8900e152362\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:56.8305295Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:49:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --assign-identity --yes - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84d94f6-d38d-453d-9208-f8900e152362?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"f6944dd8-8dd3-3d45-9208-f8900e152362\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:56.8305295Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:50:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --assign-identity --yes - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84d94f6-d38d-453d-9208-f8900e152362?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"f6944dd8-8dd3-3d45-9208-f8900e152362\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:56.8305295Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:50:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --assign-identity --yes - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84d94f6-d38d-453d-9208-f8900e152362?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"f6944dd8-8dd3-3d45-9208-f8900e152362\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:56.8305295Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:51:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --assign-identity --yes - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84d94f6-d38d-453d-9208-f8900e152362?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"f6944dd8-8dd3-3d45-9208-f8900e152362\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:56.8305295Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:51:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --assign-identity --yes - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84d94f6-d38d-453d-9208-f8900e152362?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"f6944dd8-8dd3-3d45-9208-f8900e152362\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:56.8305295Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:52:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --assign-identity --yes - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84d94f6-d38d-453d-9208-f8900e152362?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"f6944dd8-8dd3-3d45-9208-f8900e152362\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:56.8305295Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:52:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity --assign-identity --yes - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d84d94f6-d38d-453d-9208-f8900e152362?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"f6944dd8-8dd3-3d45-9208-f8900e152362\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:43:56.8305295Z\",\n \"endTime\": - \"2023-03-15T10:53:04.2564561Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '170' + - '169' content-type: - application/json date: - - Wed, 15 Mar 2023 10:53:28 GMT + - Thu, 15 Jun 2023 13:02:32 GMT expires: - '-1' pragma: @@ -1822,65 +1253,67 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --assign-identity --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthatdm4opn-79a739\",\n \"fqdn\": \"cliakstest-clitesthatdm4opn-79a739-8jkjnzdg.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthatdm4opn-79a739-8jkjnzdg.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/5a84650b-8b19-4399-968e-68de2c898e3d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000004\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n - \ }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus\",\n \"name\": \"cliakstest000003\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestvs6fp4nfo-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestvs6fp4nfo-8ecadf-obet1icj.hcp.westus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestvs6fp4nfo-8ecadf-obet1icj.portal.hcp.westus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus/providers/Microsoft.Network/publicIPAddresses/ae13f8e4-a8a4-4e36-81be-2b67dd7d5de6\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000003_westus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cli000004\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + principalId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4123' + - '4445' content-type: - application/json date: - - Wed, 15 Mar 2023 10:53:28 GMT + - Thu, 15 Jun 2023 13:02:33 GMT expires: - '-1' pragma: @@ -1914,8 +1347,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: @@ -1923,17 +1356,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7810b781-d590-4064-88a6-06cd521aaa5b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus/operations/8bccb6bb-f5e1-4de3-9ceb-c6543cd5329e?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:53:30 GMT + - Thu, 15 Jun 2023 13:02:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/7810b781-d590-4064-88a6-06cd521aaa5b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus/operationresults/8bccb6bb-f5e1-4de3-9ceb-c6543cd5329e?api-version=2017-08-31 pragma: - no-cache server: @@ -1943,7 +1376,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14993' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ahub.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ahub.yaml old mode 100755 new mode 100644 index 576dd87a68c..d8d0e238a09 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ahub.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ahub.yaml @@ -15,8 +15,8 @@ interactions: --service-principal --client-secret --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:53:30 GMT + - Thu, 15 Jun 2023 13:02:49 GMT expires: - '-1' pragma: @@ -54,13 +54,13 @@ interactions: false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser1", "adminPassword": "replacePassword1234$", "licenseType": "Windows_Server"}, - "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", - "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": - {"networkPlugin": "azure", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "adminPassword": + "replacePassword1234$", "licenseType": "Windows_Server"}, "servicePrincipalProfile": + {"clientId":"00000000-0000-0000-0000-000000000001", "secret":"fake-secret"}, + "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": + "azure", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": + false, "storageProfile": {}}}' headers: Accept: - application/json @@ -71,7 +71,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1503' + - '1832' Content-Type: - application/json ParameterSetName: @@ -79,59 +79,62 @@ interactions: --service-principal --client-secret --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-h9ka4yjz.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-h9ka4yjz.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"Windows_Server\",\n - \ \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-1symxy75.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-1symxy75.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"Windows_Server\"\ + ,\n \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n\ + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\"\ + : \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n\ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"azure\",\n \"networkDataplane\": \"azure\",\n\ + \ \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"\ + serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \ + \ \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\"\ + : 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n\ + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n\ + \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"\ + snapshotController\": {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\"\ + : {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": {}\n\ + \ },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/508ba402-fdfc-4541-9a2c-fcbdf6be1109?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48bfadb9-79fe-4419-9636-a0a144787349?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3097' + - '3458' content-type: - application/json date: - - Wed, 15 Mar 2023 10:53:34 GMT + - Thu, 15 Jun 2023 13:02:56 GMT expires: - '-1' pragma: @@ -143,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -163,14 +166,14 @@ interactions: --service-principal --client-secret --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/508ba402-fdfc-4541-9a2c-fcbdf6be1109?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48bfadb9-79fe-4419-9636-a0a144787349?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"02a48b50-fcfd-4145-9a2c-fcbdf6be1109\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:53:35.0510832Z\"\n }" + string: "{\n \"name\": \"b9adbf48-fe79-1944-9636-a0a144787349\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:02:56.5912349Z\"\n }" headers: cache-control: - no-cache @@ -179,7 +182,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:54:05 GMT + - Thu, 15 Jun 2023 13:02:57 GMT expires: - '-1' pragma: @@ -213,14 +216,14 @@ interactions: --service-principal --client-secret --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/508ba402-fdfc-4541-9a2c-fcbdf6be1109?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48bfadb9-79fe-4419-9636-a0a144787349?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"02a48b50-fcfd-4145-9a2c-fcbdf6be1109\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:53:35.0510832Z\"\n }" + string: "{\n \"name\": \"b9adbf48-fe79-1944-9636-a0a144787349\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:02:56.5912349Z\"\n }" headers: cache-control: - no-cache @@ -229,7 +232,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:54:34 GMT + - Thu, 15 Jun 2023 13:03:27 GMT expires: - '-1' pragma: @@ -263,14 +266,14 @@ interactions: --service-principal --client-secret --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/508ba402-fdfc-4541-9a2c-fcbdf6be1109?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48bfadb9-79fe-4419-9636-a0a144787349?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"02a48b50-fcfd-4145-9a2c-fcbdf6be1109\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:53:35.0510832Z\"\n }" + string: "{\n \"name\": \"b9adbf48-fe79-1944-9636-a0a144787349\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:02:56.5912349Z\"\n }" headers: cache-control: - no-cache @@ -279,7 +282,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:55:05 GMT + - Thu, 15 Jun 2023 13:03:57 GMT expires: - '-1' pragma: @@ -313,14 +316,14 @@ interactions: --service-principal --client-secret --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/508ba402-fdfc-4541-9a2c-fcbdf6be1109?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48bfadb9-79fe-4419-9636-a0a144787349?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"02a48b50-fcfd-4145-9a2c-fcbdf6be1109\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:53:35.0510832Z\"\n }" + string: "{\n \"name\": \"b9adbf48-fe79-1944-9636-a0a144787349\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:02:56.5912349Z\"\n }" headers: cache-control: - no-cache @@ -329,7 +332,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:55:35 GMT + - Thu, 15 Jun 2023 13:04:27 GMT expires: - '-1' pragma: @@ -363,14 +366,14 @@ interactions: --service-principal --client-secret --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/508ba402-fdfc-4541-9a2c-fcbdf6be1109?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48bfadb9-79fe-4419-9636-a0a144787349?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"02a48b50-fcfd-4145-9a2c-fcbdf6be1109\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:53:35.0510832Z\"\n }" + string: "{\n \"name\": \"b9adbf48-fe79-1944-9636-a0a144787349\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:02:56.5912349Z\"\n }" headers: cache-control: - no-cache @@ -379,7 +382,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:04 GMT + - Thu, 15 Jun 2023 13:04:58 GMT expires: - '-1' pragma: @@ -413,15 +416,65 @@ interactions: --service-principal --client-secret --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/508ba402-fdfc-4541-9a2c-fcbdf6be1109?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48bfadb9-79fe-4419-9636-a0a144787349?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"02a48b50-fcfd-4145-9a2c-fcbdf6be1109\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:53:35.0510832Z\",\n \"endTime\": - \"2023-03-15T10:56:34.6712882Z\"\n }" + string: "{\n \"name\": \"b9adbf48-fe79-1944-9636-a0a144787349\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:02:56.5912349Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 13:05:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --windows-admin-username --windows-admin-password + --load-balancer-sku --vm-set-type --network-plugin --enable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/48bfadb9-79fe-4419-9636-a0a144787349?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b9adbf48-fe79-1944-9636-a0a144787349\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T13:02:56.5912349Z\",\n \"\ + endTime\": \"2023-06-15T13:05:47.5601557Z\"\n }" headers: cache-control: - no-cache @@ -430,7 +483,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:35 GMT + - Thu, 15 Jun 2023 13:05:57 GMT expires: - '-1' pragma: @@ -464,59 +517,61 @@ interactions: --service-principal --client-secret --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-h9ka4yjz.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-h9ka4yjz.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"Windows_Server\",\n - \ \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9482b2cb-5175-437f-857d-641858239bb1\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '3361' + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-1symxy75.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-1symxy75.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"Windows_Server\"\ + ,\n \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n\ + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\"\ + : \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n\ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"azure\",\n \"networkDataplane\": \"azure\",\n\ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/04ed49bf-2c41-4697-8fd2-6728ef0a649c\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n\ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '3722' content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:35 GMT + - Thu, 15 Jun 2023 13:05:58 GMT expires: - '-1' pragma: @@ -548,34 +603,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '1035' + - '1036' content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:36 GMT + - Thu, 15 Jun 2023 13:06:01 GMT expires: - '-1' pragma: @@ -616,35 +671,36 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n - \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"osSKU\": \"Windows2019\",\n \"nodeImageVersion\": - \"AKSWindows-2019-containerd-17763.4010.230223\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ + ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n\ + \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"\ + provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"\ + Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Windows\",\n \"osSKU\": \"Windows2022\",\n \"nodeImageVersion\"\ + : \"AKSWindows-2022-containerd-gen2-20348.1726.230510\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/96f94996-e517-4df8-a52c-96849bc44cc0?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8de301-d7ba-4014-ad88-527ad5241e71?api-version=2016-03-30 cache-control: - no-cache content-length: - - '983' + - '988' content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:39 GMT + - Thu, 15 Jun 2023 13:06:08 GMT expires: - '-1' pragma: @@ -656,7 +712,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 201 message: Created @@ -674,14 +730,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/96f94996-e517-4df8-a52c-96849bc44cc0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8de301-d7ba-4014-ad88-527ad5241e71?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9649f996-17e5-f84d-a52c-96849bc44cc0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:40.2864027Z\"\n }" + string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" headers: cache-control: - no-cache @@ -690,7 +746,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:57:09 GMT + - Thu, 15 Jun 2023 13:06:08 GMT expires: - '-1' pragma: @@ -722,14 +778,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/96f94996-e517-4df8-a52c-96849bc44cc0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8de301-d7ba-4014-ad88-527ad5241e71?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9649f996-17e5-f84d-a52c-96849bc44cc0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:40.2864027Z\"\n }" + string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" headers: cache-control: - no-cache @@ -738,7 +794,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:57:39 GMT + - Thu, 15 Jun 2023 13:06:38 GMT expires: - '-1' pragma: @@ -770,14 +826,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/96f94996-e517-4df8-a52c-96849bc44cc0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8de301-d7ba-4014-ad88-527ad5241e71?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9649f996-17e5-f84d-a52c-96849bc44cc0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:40.2864027Z\"\n }" + string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" headers: cache-control: - no-cache @@ -786,7 +842,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:58:09 GMT + - Thu, 15 Jun 2023 13:07:08 GMT expires: - '-1' pragma: @@ -818,14 +874,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/96f94996-e517-4df8-a52c-96849bc44cc0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8de301-d7ba-4014-ad88-527ad5241e71?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9649f996-17e5-f84d-a52c-96849bc44cc0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:40.2864027Z\"\n }" + string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" headers: cache-control: - no-cache @@ -834,7 +890,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:58:40 GMT + - Thu, 15 Jun 2023 13:07:38 GMT expires: - '-1' pragma: @@ -866,14 +922,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/96f94996-e517-4df8-a52c-96849bc44cc0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8de301-d7ba-4014-ad88-527ad5241e71?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9649f996-17e5-f84d-a52c-96849bc44cc0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:40.2864027Z\"\n }" + string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" headers: cache-control: - no-cache @@ -882,7 +938,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:59:10 GMT + - Thu, 15 Jun 2023 13:08:08 GMT expires: - '-1' pragma: @@ -914,14 +970,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/96f94996-e517-4df8-a52c-96849bc44cc0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8de301-d7ba-4014-ad88-527ad5241e71?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9649f996-17e5-f84d-a52c-96849bc44cc0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:40.2864027Z\"\n }" + string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" headers: cache-control: - no-cache @@ -930,7 +986,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:59:40 GMT + - Thu, 15 Jun 2023 13:08:39 GMT expires: - '-1' pragma: @@ -962,14 +1018,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/96f94996-e517-4df8-a52c-96849bc44cc0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8de301-d7ba-4014-ad88-527ad5241e71?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9649f996-17e5-f84d-a52c-96849bc44cc0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:40.2864027Z\"\n }" + string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" headers: cache-control: - no-cache @@ -978,7 +1034,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:10 GMT + - Thu, 15 Jun 2023 13:09:09 GMT expires: - '-1' pragma: @@ -1010,24 +1066,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/96f94996-e517-4df8-a52c-96849bc44cc0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8de301-d7ba-4014-ad88-527ad5241e71?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9649f996-17e5-f84d-a52c-96849bc44cc0\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:56:40.2864027Z\",\n \"endTime\": - \"2023-03-15T11:00:34.7499197Z\"\n }" + string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:40 GMT + - Thu, 15 Jun 2023 13:09:39 GMT expires: - '-1' pragma: @@ -1059,33 +1114,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8de301-d7ba-4014-ad88-527ad5241e71?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n - \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"osSKU\": \"Windows2019\",\n \"nodeImageVersion\": - \"AKSWindows-2019-containerd-17763.4010.230223\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" headers: cache-control: - no-cache content-length: - - '984' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:41 GMT + - Thu, 15 Jun 2023 13:10:09 GMT expires: - '-1' pragma: @@ -1107,79 +1152,33 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks update + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --disable-ahub + - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8de301-d7ba-4014-ad88-527ad5241e71?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-h9ka4yjz.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-h9ka4yjz.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"scaleDownMode\": - \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\": - \"Windows2019\",\n \"nodeImageVersion\": \"AKSWindows-2019-containerd-17763.4010.230223\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"Windows_Server\",\n - \ \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9482b2cb-5175-437f-857d-641858239bb1\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '4137' + string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:41 GMT + - Thu, 15 Jun 2023 13:10:40 GMT expires: - '-1' pragma: @@ -1198,113 +1197,36 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "properties": - {"kubernetesVersion": "1.24.9", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": - [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": - "Managed", "kubeletDiskType": "OS", "maxPods": 30, "osType": "Linux", "osSKU": - "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": - "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": - {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}, {"count": - 1, "vmSize": "Standard_D2s_v3", "osDiskSizeGB": 128, "osDiskType": "Managed", - "kubeletDiskType": "OS", "maxPods": 30, "osType": "Windows", "osSKU": "Windows2019", - "enableAutoScaling": false, "scaleDownMode": "Delete", "type": "VirtualMachineScaleSets", - "mode": "User", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": - {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "npwin"}], "linuxProfile": - {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser1", "licenseType": "None", "enableCSIProxy": true}, "servicePrincipalProfile": - {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": - false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": - true, "networkProfile": {"networkPlugin": "azure", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9482b2cb-5175-437f-857d-641858239bb1"}]}, - "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": - false, "securityProfile": {}, "storageProfile": {}, "workloadAutoScalerProfile": - {}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks update + - aks nodepool add Connection: - keep-alive - Content-Length: - - '2601' - Content-Type: - - application/json ParameterSetName: - - --resource-group --name --disable-ahub + - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8de301-d7ba-4014-ad88-527ad5241e71?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-h9ka4yjz.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-h9ka4yjz.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"scaleDownMode\": - \"Delete\",\n \"provisioningState\": \"Updating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\": - \"Windows2019\",\n \"nodeImageVersion\": \"AKSWindows-2019-containerd-17763.4010.230223\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"None\",\n - \ \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9482b2cb-5175-437f-857d-641858239bb1\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7d56145-90e1-4c07-b4d5-2226f64225ae?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4124' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:45 GMT + - Thu, 15 Jun 2023 13:11:10 GMT expires: - '-1' pragma: @@ -1319,8 +1241,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1191' status: code: 200 message: OK @@ -1332,20 +1252,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks update + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --disable-ahub + - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7d56145-90e1-4c07-b4d5-2226f64225ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8de301-d7ba-4014-ad88-527ad5241e71?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4561d5a7-e190-074c-b4d5-2226f64225ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:45.5376357Z\"\n }" + string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" headers: cache-control: - no-cache @@ -1354,7 +1274,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:01:15 GMT + - Thu, 15 Jun 2023 13:11:41 GMT expires: - '-1' pragma: @@ -1380,20 +1300,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks update + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --disable-ahub + - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7d56145-90e1-4c07-b4d5-2226f64225ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8de301-d7ba-4014-ad88-527ad5241e71?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4561d5a7-e190-074c-b4d5-2226f64225ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:45.5376357Z\"\n }" + string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" headers: cache-control: - no-cache @@ -1402,7 +1322,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:01:45 GMT + - Thu, 15 Jun 2023 13:12:11 GMT expires: - '-1' pragma: @@ -1428,20 +1348,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks update + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --disable-ahub + - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7d56145-90e1-4c07-b4d5-2226f64225ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8de301-d7ba-4014-ad88-527ad5241e71?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4561d5a7-e190-074c-b4d5-2226f64225ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:45.5376357Z\"\n }" + string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\"\n }" headers: cache-control: - no-cache @@ -1450,7 +1370,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:02:15 GMT + - Thu, 15 Jun 2023 13:12:40 GMT expires: - '-1' pragma: @@ -1476,29 +1396,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks update + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --disable-ahub + - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7d56145-90e1-4c07-b4d5-2226f64225ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4f8de301-d7ba-4014-ad88-527ad5241e71?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4561d5a7-e190-074c-b4d5-2226f64225ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:45.5376357Z\"\n }" + string: "{\n \"name\": \"01e38d4f-bad7-1440-ad88-527ad5241e71\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T13:06:08.5291895Z\",\n \"\ + endTime\": \"2023-06-15T13:13:03.1482649Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 11:02:45 GMT + - Thu, 15 Jun 2023 13:13:10 GMT expires: - '-1' pragma: @@ -1524,29 +1445,265 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-04-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ + ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n\ + \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"\ + provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"\ + Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Windows\",\n \"osSKU\": \"Windows2022\",\n \"nodeImageVersion\"\ + : \"AKSWindows-2022-containerd-gen2-20348.1726.230510\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '989' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 13:13:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: - aks update Connection: - keep-alive ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7d56145-90e1-4c07-b4d5-2226f64225ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"4561d5a7-e190-074c-b4d5-2226f64225ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:45.5376357Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-1symxy75.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-1symxy75.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n },\n \ + \ {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\"\ + : \"Windows2022\",\n \"nodeImageVersion\": \"AKSWindows-2022-containerd-gen2-20348.1726.230510\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"Windows_Server\"\ + ,\n \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n\ + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\"\ + : \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n\ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"azure\",\n \"networkDataplane\": \"azure\",\n\ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/04ed49bf-2c41-4697-8fd2-6728ef0a649c\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n\ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '4503' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 13:13:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "properties": + {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": + [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": + "Managed", "kubeletDiskType": "OS", "maxPods": 30, "osType": "Linux", "osSKU": + "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": + "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": + {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}, {"count": + 1, "vmSize": "Standard_D2s_v3", "osDiskSizeGB": 128, "osDiskType": "Managed", + "kubeletDiskType": "OS", "maxPods": 30, "osType": "Windows", "osSKU": "Windows2022", + "enableAutoScaling": false, "scaleDownMode": "Delete", "type": "VirtualMachineScaleSets", + "mode": "User", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": + {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "npwin"}], "linuxProfile": + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "licenseType": + "None", "enableCSIProxy": true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "azure", "networkDataplane": "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/04ed49bf-2c41-4697-8fd2-6728ef0a649c"}]}, + "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": + false, "securityProfile": {}, "storageProfile": {}, "workloadAutoScalerProfile": + {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + Content-Length: + - '2958' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --disable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-1symxy75.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-1symxy75.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n },\n \ + \ {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\"\ + : \"Windows2022\",\n \"nodeImageVersion\": \"AKSWindows-2022-containerd-gen2-20348.1726.230510\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"None\"\ + ,\n \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n\ + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\"\ + : \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n\ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"azure\",\n \"networkDataplane\": \"azure\",\n\ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/04ed49bf-2c41-4697-8fd2-6728ef0a649c\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n\ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '4490' content-type: - application/json date: - - Wed, 15 Mar 2023 11:03:15 GMT + - Thu, 15 Jun 2023 13:13:21 GMT expires: - '-1' pragma: @@ -1561,6 +1718,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -1578,14 +1737,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7d56145-90e1-4c07-b4d5-2226f64225ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4561d5a7-e190-074c-b4d5-2226f64225ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:45.5376357Z\"\n }" + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" headers: cache-control: - no-cache @@ -1594,7 +1753,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:03:45 GMT + - Thu, 15 Jun 2023 13:13:21 GMT expires: - '-1' pragma: @@ -1626,14 +1785,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7d56145-90e1-4c07-b4d5-2226f64225ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4561d5a7-e190-074c-b4d5-2226f64225ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:45.5376357Z\"\n }" + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" headers: cache-control: - no-cache @@ -1642,7 +1801,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:04:15 GMT + - Thu, 15 Jun 2023 13:13:51 GMT expires: - '-1' pragma: @@ -1674,14 +1833,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7d56145-90e1-4c07-b4d5-2226f64225ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4561d5a7-e190-074c-b4d5-2226f64225ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:45.5376357Z\"\n }" + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" headers: cache-control: - no-cache @@ -1690,7 +1849,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:04:45 GMT + - Thu, 15 Jun 2023 13:14:21 GMT expires: - '-1' pragma: @@ -1722,14 +1881,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7d56145-90e1-4c07-b4d5-2226f64225ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4561d5a7-e190-074c-b4d5-2226f64225ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:45.5376357Z\"\n }" + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" headers: cache-control: - no-cache @@ -1738,7 +1897,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:05:16 GMT + - Thu, 15 Jun 2023 13:14:51 GMT expires: - '-1' pragma: @@ -1770,14 +1929,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7d56145-90e1-4c07-b4d5-2226f64225ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4561d5a7-e190-074c-b4d5-2226f64225ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:45.5376357Z\"\n }" + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" headers: cache-control: - no-cache @@ -1786,7 +1945,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:05:46 GMT + - Thu, 15 Jun 2023 13:15:22 GMT expires: - '-1' pragma: @@ -1818,14 +1977,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7d56145-90e1-4c07-b4d5-2226f64225ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4561d5a7-e190-074c-b4d5-2226f64225ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:45.5376357Z\"\n }" + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" headers: cache-control: - no-cache @@ -1834,7 +1993,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:06:16 GMT + - Thu, 15 Jun 2023 13:15:52 GMT expires: - '-1' pragma: @@ -1866,14 +2025,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7d56145-90e1-4c07-b4d5-2226f64225ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4561d5a7-e190-074c-b4d5-2226f64225ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:45.5376357Z\"\n }" + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" headers: cache-control: - no-cache @@ -1882,7 +2041,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:06:46 GMT + - Thu, 15 Jun 2023 13:16:22 GMT expires: - '-1' pragma: @@ -1914,14 +2073,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7d56145-90e1-4c07-b4d5-2226f64225ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4561d5a7-e190-074c-b4d5-2226f64225ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:45.5376357Z\"\n }" + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" headers: cache-control: - no-cache @@ -1930,7 +2089,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:07:16 GMT + - Thu, 15 Jun 2023 13:16:52 GMT expires: - '-1' pragma: @@ -1962,14 +2121,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7d56145-90e1-4c07-b4d5-2226f64225ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4561d5a7-e190-074c-b4d5-2226f64225ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:45.5376357Z\"\n }" + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" headers: cache-control: - no-cache @@ -1978,7 +2137,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:07:46 GMT + - Thu, 15 Jun 2023 13:17:22 GMT expires: - '-1' pragma: @@ -2010,14 +2169,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7d56145-90e1-4c07-b4d5-2226f64225ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4561d5a7-e190-074c-b4d5-2226f64225ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:45.5376357Z\"\n }" + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" headers: cache-control: - no-cache @@ -2026,7 +2185,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:16 GMT + - Thu, 15 Jun 2023 13:17:52 GMT expires: - '-1' pragma: @@ -2058,14 +2217,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7d56145-90e1-4c07-b4d5-2226f64225ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4561d5a7-e190-074c-b4d5-2226f64225ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:45.5376357Z\"\n }" + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" headers: cache-control: - no-cache @@ -2074,7 +2233,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:46 GMT + - Thu, 15 Jun 2023 13:18:23 GMT expires: - '-1' pragma: @@ -2106,14 +2265,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7d56145-90e1-4c07-b4d5-2226f64225ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4561d5a7-e190-074c-b4d5-2226f64225ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:45.5376357Z\"\n }" + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" headers: cache-control: - no-cache @@ -2122,7 +2281,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:09:16 GMT + - Thu, 15 Jun 2023 13:18:53 GMT expires: - '-1' pragma: @@ -2154,14 +2313,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7d56145-90e1-4c07-b4d5-2226f64225ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4561d5a7-e190-074c-b4d5-2226f64225ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:45.5376357Z\"\n }" + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" headers: cache-control: - no-cache @@ -2170,7 +2329,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:09:46 GMT + - Thu, 15 Jun 2023 13:19:23 GMT expires: - '-1' pragma: @@ -2202,14 +2361,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7d56145-90e1-4c07-b4d5-2226f64225ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4561d5a7-e190-074c-b4d5-2226f64225ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:45.5376357Z\"\n }" + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" headers: cache-control: - no-cache @@ -2218,7 +2377,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:10:16 GMT + - Thu, 15 Jun 2023 13:19:54 GMT expires: - '-1' pragma: @@ -2250,14 +2409,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7d56145-90e1-4c07-b4d5-2226f64225ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4561d5a7-e190-074c-b4d5-2226f64225ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:45.5376357Z\"\n }" + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" headers: cache-control: - no-cache @@ -2266,7 +2425,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:10:46 GMT + - Thu, 15 Jun 2023 13:20:24 GMT expires: - '-1' pragma: @@ -2298,14 +2457,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7d56145-90e1-4c07-b4d5-2226f64225ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4561d5a7-e190-074c-b4d5-2226f64225ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:45.5376357Z\"\n }" + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" headers: cache-control: - no-cache @@ -2314,7 +2473,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:11:17 GMT + - Thu, 15 Jun 2023 13:20:54 GMT expires: - '-1' pragma: @@ -2346,14 +2505,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7d56145-90e1-4c07-b4d5-2226f64225ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4561d5a7-e190-074c-b4d5-2226f64225ae\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:45.5376357Z\"\n }" + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" headers: cache-control: - no-cache @@ -2362,7 +2521,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:11:47 GMT + - Thu, 15 Jun 2023 13:21:25 GMT expires: - '-1' pragma: @@ -2394,24 +2553,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7d56145-90e1-4c07-b4d5-2226f64225ae?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4561d5a7-e190-074c-b4d5-2226f64225ae\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:00:45.5376357Z\",\n \"endTime\": - \"2023-03-15T11:11:53.0246176Z\"\n }" + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:12:17 GMT + - Thu, 15 Jun 2023 13:21:55 GMT expires: - '-1' pragma: @@ -2443,69 +2601,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-h9ka4yjz.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-h9ka4yjz.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"scaleDownMode\": - \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\": - \"Windows2019\",\n \"nodeImageVersion\": \"AKSWindows-2019-containerd-17763.4010.230223\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"None\",\n - \ \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9482b2cb-5175-437f-857d-641858239bb1\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '4127' + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:12:17 GMT + - Thu, 15 Jun 2023 13:22:25 GMT expires: - '-1' pragma: @@ -2527,56 +2639,683 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks nodepool delete + - aks update Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --no-wait + - --resource-group --name --disable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n - \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"osSKU\": \"Windows2019\",\n \"nodeImageVersion\": - \"AKSWindows-2019-containerd-17763.4010.230223\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }\n ]\n }" - headers: - cache-control: - - no-cache - content-length: - - '2084' + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 13:22:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --disable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 13:23:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --disable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 13:23:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --disable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 13:24:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --disable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 13:24:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --disable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 13:25:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --disable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 13:25:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --disable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 13:26:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --disable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 13:26:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --disable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 13:27:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --disable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0bd2c6c-6428-4e4d-a7ab-7fe25f08485d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"6c2cbdc0-2864-4d4e-a7ab-7fe25f08485d\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T13:13:20.6394399Z\",\n \"\ + endTime\": \"2023-06-15T13:27:58.0786686Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 13:27:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --disable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-1symxy75.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-1symxy75.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n },\n \ + \ {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\"\ + : \"Windows2022\",\n \"nodeImageVersion\": \"AKSWindows-2022-containerd-gen2-20348.1726.230510\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"None\"\ + ,\n \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n\ + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\"\ + : \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n\ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"azure\",\n \"networkDataplane\": \"azure\",\n\ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/04ed49bf-2c41-4697-8fd2-6728ef0a649c\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n\ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '4493' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 13:27:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool delete + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --no-wait + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 + response: + body: + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ + ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\"\ + : \"Windows2022\",\n \"nodeImageVersion\": \"AKSWindows-2022-containerd-gen2-20348.1726.230510\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" + headers: + cache-control: + - no-cache + content-length: + - '2090' content-type: - application/json date: - - Wed, 15 Mar 2023 11:12:17 GMT + - Thu, 15 Jun 2023 13:28:00 GMT expires: - '-1' pragma: @@ -2610,8 +3349,8 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-04-01 response: @@ -2619,17 +3358,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16d5cc3b-8709-469e-8a6b-35602d511f89?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/242eeb44-a8dc-4f47-8b2f-e8bc390b6ea8?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:12:18 GMT + - Thu, 15 Jun 2023 13:28:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/16d5cc3b-8709-469e-8a6b-35602d511f89?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/242eeb44-a8dc-4f47-8b2f-e8bc390b6ea8?api-version=2016-03-30 pragma: - no-cache server: @@ -2639,7 +3378,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14991' + - '14999' status: code: 202 message: Accepted @@ -2659,8 +3398,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -2668,17 +3407,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8c5166fa-9717-47ce-b355-1415e40ab3c8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40243f91-e3e4-4df0-956f-534abc77f025?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:12:19 GMT + - Thu, 15 Jun 2023 13:28:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/8c5166fa-9717-47ce-b355-1415e40ab3c8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/40243f91-e3e4-4df0-956f-534abc77f025?api-version=2016-03-30 pragma: - no-cache server: @@ -2688,7 +3427,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_auto_upgrade_channel.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_auto_upgrade_channel.yaml old mode 100755 new mode 100644 index 56b393c400b..6bfc2409b6e --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_auto_upgrade_channel.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_auto_upgrade_channel.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:29:22 GMT + - Thu, 15 Jun 2023 13:28:14 GMT expires: - '-1' pragma: @@ -47,20 +47,19 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest7wtrw46y6-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestensgwgwcp-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "autoUpgradeProfile": - {"upgradeChannel": "rapid"}, "disableLocalAccounts": false, "storageProfile": - {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "autoUpgradeProfile": {"upgradeChannel": "rapid"}, "disableLocalAccounts": + false, "storageProfile": {}}}' headers: Accept: - application/json @@ -71,69 +70,71 @@ interactions: Connection: - keep-alive Content-Length: - - '1510' + - '1802' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest7wtrw46y6-79a739\",\n \"fqdn\": \"cliakstest-clitest7wtrw46y6-79a739-sv2vqpfu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest7wtrw46y6-79a739-sv2vqpfu.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"autoUpgradeProfile\": {\n \"upgradeChannel\": - \"rapid\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestensgwgwcp-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestensgwgwcp-8ecadf-w9opl332.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestensgwgwcp-8ecadf-w9opl332.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"autoUpgradeProfile\"\ + : {\n \"upgradeChannel\": \"rapid\"\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c8f72c9d-8934-4912-8714-33e557e05dfc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c71022e1-1efc-46e4-8eaf-483c90d3535d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3331' + - '3659' content-type: - application/json date: - - Wed, 15 Mar 2023 10:29:25 GMT + - Thu, 15 Jun 2023 13:28:21 GMT expires: - '-1' pragma: @@ -145,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -164,14 +165,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c8f72c9d-8934-4912-8714-33e557e05dfc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c71022e1-1efc-46e4-8eaf-483c90d3535d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9d2cf7c8-3489-1249-8714-33e557e05dfc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:29:26.0614087Z\"\n }" + string: "{\n \"name\": \"e12210c7-fc1e-e446-8eaf-483c90d3535d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:28:21.3917728Z\"\n }" headers: cache-control: - no-cache @@ -180,7 +181,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:29:56 GMT + - Thu, 15 Jun 2023 13:28:21 GMT expires: - '-1' pragma: @@ -213,14 +214,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c8f72c9d-8934-4912-8714-33e557e05dfc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c71022e1-1efc-46e4-8eaf-483c90d3535d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9d2cf7c8-3489-1249-8714-33e557e05dfc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:29:26.0614087Z\"\n }" + string: "{\n \"name\": \"e12210c7-fc1e-e446-8eaf-483c90d3535d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:28:21.3917728Z\"\n }" headers: cache-control: - no-cache @@ -229,7 +230,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:30:26 GMT + - Thu, 15 Jun 2023 13:28:51 GMT expires: - '-1' pragma: @@ -262,14 +263,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c8f72c9d-8934-4912-8714-33e557e05dfc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c71022e1-1efc-46e4-8eaf-483c90d3535d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9d2cf7c8-3489-1249-8714-33e557e05dfc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:29:26.0614087Z\"\n }" + string: "{\n \"name\": \"e12210c7-fc1e-e446-8eaf-483c90d3535d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:28:21.3917728Z\"\n }" headers: cache-control: - no-cache @@ -278,7 +279,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:30:55 GMT + - Thu, 15 Jun 2023 13:29:21 GMT expires: - '-1' pragma: @@ -311,14 +312,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c8f72c9d-8934-4912-8714-33e557e05dfc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c71022e1-1efc-46e4-8eaf-483c90d3535d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9d2cf7c8-3489-1249-8714-33e557e05dfc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:29:26.0614087Z\"\n }" + string: "{\n \"name\": \"e12210c7-fc1e-e446-8eaf-483c90d3535d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:28:21.3917728Z\"\n }" headers: cache-control: - no-cache @@ -327,7 +328,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:31:25 GMT + - Thu, 15 Jun 2023 13:29:52 GMT expires: - '-1' pragma: @@ -360,14 +361,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c8f72c9d-8934-4912-8714-33e557e05dfc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c71022e1-1efc-46e4-8eaf-483c90d3535d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9d2cf7c8-3489-1249-8714-33e557e05dfc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:29:26.0614087Z\"\n }" + string: "{\n \"name\": \"e12210c7-fc1e-e446-8eaf-483c90d3535d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:28:21.3917728Z\"\n }" headers: cache-control: - no-cache @@ -376,7 +377,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:31:55 GMT + - Thu, 15 Jun 2023 13:30:22 GMT expires: - '-1' pragma: @@ -409,14 +410,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c8f72c9d-8934-4912-8714-33e557e05dfc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c71022e1-1efc-46e4-8eaf-483c90d3535d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9d2cf7c8-3489-1249-8714-33e557e05dfc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:29:26.0614087Z\"\n }" + string: "{\n \"name\": \"e12210c7-fc1e-e446-8eaf-483c90d3535d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:28:21.3917728Z\"\n }" headers: cache-control: - no-cache @@ -425,7 +426,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:32:25 GMT + - Thu, 15 Jun 2023 13:30:52 GMT expires: - '-1' pragma: @@ -458,15 +459,64 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c8f72c9d-8934-4912-8714-33e557e05dfc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c71022e1-1efc-46e4-8eaf-483c90d3535d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9d2cf7c8-3489-1249-8714-33e557e05dfc\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:29:26.0614087Z\",\n \"endTime\": - \"2023-03-15T10:32:50.1969942Z\"\n }" + string: "{\n \"name\": \"e12210c7-fc1e-e446-8eaf-483c90d3535d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T13:28:21.3917728Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 13:31:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel + --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c71022e1-1efc-46e4-8eaf-483c90d3535d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e12210c7-fc1e-e446-8eaf-483c90d3535d\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T13:28:21.3917728Z\",\n \"\ + endTime\": \"2023-06-15T13:31:38.3875816Z\"\n }" headers: cache-control: - no-cache @@ -475,7 +525,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:32:56 GMT + - Thu, 15 Jun 2023 13:47:49 GMT expires: - '-1' pragma: @@ -508,65 +558,67 @@ interactions: - --resource-group --name --location --enable-managed-identity --auto-upgrade-channel --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest7wtrw46y6-79a739\",\n \"fqdn\": \"cliakstest-clitest7wtrw46y6-79a739-sv2vqpfu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest7wtrw46y6-79a739-sv2vqpfu.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/01a38934-ba78-4c77-a4eb-5a6a331b6dff\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"autoUpgradeProfile\": {\n \"upgradeChannel\": \"rapid\"\n - \ },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n - \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestensgwgwcp-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestensgwgwcp-8ecadf-w9opl332.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestensgwgwcp-8ecadf-w9opl332.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/51c8da99-5e34-4ed7-a60f-604e3b575b4b\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"autoUpgradeProfile\"\ + : {\n \"upgradeChannel\": \"rapid\"\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3984' + - '4312' content-type: - application/json date: - - Wed, 15 Mar 2023 10:32:57 GMT + - Thu, 15 Jun 2023 13:47:50 GMT expires: - '-1' pragma: @@ -598,65 +650,67 @@ interactions: ParameterSetName: - --resource-group --name --auto-upgrade-channel User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest7wtrw46y6-79a739\",\n \"fqdn\": \"cliakstest-clitest7wtrw46y6-79a739-sv2vqpfu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest7wtrw46y6-79a739-sv2vqpfu.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/01a38934-ba78-4c77-a4eb-5a6a331b6dff\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"autoUpgradeProfile\": {\n \"upgradeChannel\": \"rapid\"\n - \ },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n - \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestensgwgwcp-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestensgwgwcp-8ecadf-w9opl332.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestensgwgwcp-8ecadf-w9opl332.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/51c8da99-5e34-4ed7-a60f-604e3b575b4b\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"autoUpgradeProfile\"\ + : {\n \"upgradeChannel\": \"rapid\"\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3984' + - '4312' content-type: - application/json date: - - Wed, 15 Mar 2023 10:32:57 GMT + - Thu, 15 Jun 2023 13:47:52 GMT expires: - '-1' pragma: @@ -675,23 +729,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitest7wtrw46y6-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestensgwgwcp-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/01a38934-ba78-4c77-a4eb-5a6a331b6dff"}]}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/51c8da99-5e34-4ed7-a60f-604e3b575b4b"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "autoUpgradeProfile": {"upgradeChannel": "stable"}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", @@ -708,73 +762,78 @@ interactions: Connection: - keep-alive Content-Length: - - '2536' + - '2864' Content-Type: - application/json ParameterSetName: - --resource-group --name --auto-upgrade-channel User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest7wtrw46y6-79a739\",\n \"fqdn\": \"cliakstest-clitest7wtrw46y6-79a739-sv2vqpfu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest7wtrw46y6-79a739-sv2vqpfu.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/01a38934-ba78-4c77-a4eb-5a6a331b6dff\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"autoUpgradeProfile\": {\n \"upgradeChannel\": \"stable\"\n - \ },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n - \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestensgwgwcp-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestensgwgwcp-8ecadf-w9opl332.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestensgwgwcp-8ecadf-w9opl332.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/51c8da99-5e34-4ed7-a60f-604e3b575b4b\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"autoUpgradeProfile\"\ + : {\n \"upgradeChannel\": \"stable\"\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"defender\": {\n \"logAnalyticsWorkspaceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n }\n\ + \ },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"\ + oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/09e2d1f5-1a81-4684-a3b9-cb4326fffc54?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/568f0675-09a1-47e6-94d7-ba6da66ec845?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3983' + - '4643' content-type: - application/json date: - - Wed, 15 Mar 2023 10:33:00 GMT + - Thu, 15 Jun 2023 14:25:24 GMT expires: - '-1' pragma: @@ -790,7 +849,103 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --auto-upgrade-channel + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/568f0675-09a1-47e6-94d7-ba6da66ec845?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"75068f56-a109-e647-94d7-ba6da66ec845\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:25:24.0717283Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 14:25:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --auto-upgrade-channel + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/568f0675-09a1-47e6-94d7-ba6da66ec845?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"75068f56-a109-e647-94d7-ba6da66ec845\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:25:24.0717283Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 14:25:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -808,14 +963,14 @@ interactions: ParameterSetName: - --resource-group --name --auto-upgrade-channel User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/09e2d1f5-1a81-4684-a3b9-cb4326fffc54?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/568f0675-09a1-47e6-94d7-ba6da66ec845?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f5d1e209-811a-8446-a3b9-cb4326fffc54\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:33:00.8589376Z\"\n }" + string: "{\n \"name\": \"75068f56-a109-e647-94d7-ba6da66ec845\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:25:24.0717283Z\"\n }" headers: cache-control: - no-cache @@ -824,7 +979,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:33:30 GMT + - Thu, 15 Jun 2023 14:26:24 GMT expires: - '-1' pragma: @@ -856,14 +1011,14 @@ interactions: ParameterSetName: - --resource-group --name --auto-upgrade-channel User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/09e2d1f5-1a81-4684-a3b9-cb4326fffc54?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/568f0675-09a1-47e6-94d7-ba6da66ec845?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f5d1e209-811a-8446-a3b9-cb4326fffc54\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:33:00.8589376Z\"\n }" + string: "{\n \"name\": \"75068f56-a109-e647-94d7-ba6da66ec845\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:25:24.0717283Z\"\n }" headers: cache-control: - no-cache @@ -872,7 +1027,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:34:00 GMT + - Thu, 15 Jun 2023 14:26:55 GMT expires: - '-1' pragma: @@ -904,15 +1059,15 @@ interactions: ParameterSetName: - --resource-group --name --auto-upgrade-channel User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/09e2d1f5-1a81-4684-a3b9-cb4326fffc54?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/568f0675-09a1-47e6-94d7-ba6da66ec845?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f5d1e209-811a-8446-a3b9-cb4326fffc54\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:33:00.8589376Z\",\n \"endTime\": - \"2023-03-15T10:34:21.4426275Z\"\n }" + string: "{\n \"name\": \"75068f56-a109-e647-94d7-ba6da66ec845\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T14:25:24.0717283Z\",\n \"\ + endTime\": \"2023-06-15T14:27:14.0162473Z\"\n }" headers: cache-control: - no-cache @@ -921,7 +1076,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:34:30 GMT + - Thu, 15 Jun 2023 14:27:25 GMT expires: - '-1' pragma: @@ -953,65 +1108,70 @@ interactions: ParameterSetName: - --resource-group --name --auto-upgrade-channel User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest7wtrw46y6-79a739\",\n \"fqdn\": \"cliakstest-clitest7wtrw46y6-79a739-sv2vqpfu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest7wtrw46y6-79a739-sv2vqpfu.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/01a38934-ba78-4c77-a4eb-5a6a331b6dff\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"autoUpgradeProfile\": {\n \"upgradeChannel\": \"stable\"\n - \ },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n - \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestensgwgwcp-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestensgwgwcp-8ecadf-w9opl332.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestensgwgwcp-8ecadf-w9opl332.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/51c8da99-5e34-4ed7-a60f-604e3b575b4b\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"autoUpgradeProfile\"\ + : {\n \"upgradeChannel\": \"stable\"\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"defender\": {\n \"logAnalyticsWorkspaceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n }\n\ + \ },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"\ + oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '3985' + - '4645' content-type: - application/json date: - - Wed, 15 Mar 2023 10:34:30 GMT + - Thu, 15 Jun 2023 14:27:26 GMT expires: - '-1' pragma: @@ -1045,8 +1205,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -1054,17 +1214,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729a6ad2-0ab3-4bec-832b-58439a0697cf?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/956a7366-49a4-4d7f-a274-ef65bd515732?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:34:32 GMT + - Thu, 15 Jun 2023 14:27:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/729a6ad2-0ab3-4bec-832b-58439a0697cf?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/956a7366-49a4-4d7f-a274-ef65bd515732?api-version=2016-03-30 pragma: - no-cache server: @@ -1074,7 +1234,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_azurekeyvaultsecretsprovider_addon.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_azurekeyvaultsecretsprovider_addon.yaml index a6100e9c025..079e9943281 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_azurekeyvaultsecretsprovider_addon.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_azurekeyvaultsecretsprovider_addon.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:34:32 GMT + - Thu, 15 Jun 2023 14:27:33 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:34:33Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_with_azurekeyvaultsecretsprovider_addon","date":"2023-06-15T14:27:32Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '385' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:34:32 GMT + - Thu, 15 Jun 2023 14:27:33 GMT expires: - '-1' pragma: @@ -88,20 +88,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest2xguebjg6-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesty4a7me2bw-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": - {"enabled": true, "config": {"enableSecretRotation": "false", "rotationPollInterval": - "2m"}}}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": + true, "config": {"enableSecretRotation": "false", "rotationPollInterval": "2m"}}}, + "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": + "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": + false, "storageProfile": {}}}' headers: Accept: - application/json @@ -112,69 +112,72 @@ interactions: Connection: - keep-alive Content-Length: - - '1583' + - '1875' Content-Type: - application/json ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest2xguebjg6-79a739\",\n \"fqdn\": \"cliakstest-clitest2xguebjg6-79a739-gho9jmlx.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest2xguebjg6-79a739-gho9jmlx.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"false\",\n \"rotationPollInterval\": - \"2m\"\n }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": - \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitesty4a7me2bw-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesty4a7me2bw-8ecadf-x9q921do.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesty4a7me2bw-8ecadf-x9q921do.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"enableSecretRotation\": \"false\",\n\ + \ \"rotationPollInterval\": \"2m\"\n }\n }\n },\n \"nodeResourceGroup\"\ + : \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n\ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9a0972fd-bedf-42ee-b3bf-4c7082274ec9?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebf5a5eb-0e6a-425b-af44-b581f5c5b54c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3460' + - '3788' content-type: - application/json date: - - Wed, 15 Mar 2023 10:34:36 GMT + - Thu, 15 Jun 2023 14:27:40 GMT expires: - '-1' pragma: @@ -186,7 +189,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -204,23 +207,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9a0972fd-bedf-42ee-b3bf-4c7082274ec9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebf5a5eb-0e6a-425b-af44-b581f5c5b54c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fd72099a-dfbe-ee42-b3bf-4c7082274ec9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:34:37.171704Z\"\n }" + string: "{\n \"name\": \"eba5f5eb-6a0e-5b42-af44-b581f5c5b54c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:27:40.4627567Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:35:06 GMT + - Thu, 15 Jun 2023 14:27:40 GMT expires: - '-1' pragma: @@ -252,23 +255,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9a0972fd-bedf-42ee-b3bf-4c7082274ec9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebf5a5eb-0e6a-425b-af44-b581f5c5b54c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fd72099a-dfbe-ee42-b3bf-4c7082274ec9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:34:37.171704Z\"\n }" + string: "{\n \"name\": \"eba5f5eb-6a0e-5b42-af44-b581f5c5b54c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:27:40.4627567Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:35:37 GMT + - Thu, 15 Jun 2023 14:28:10 GMT expires: - '-1' pragma: @@ -300,23 +303,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9a0972fd-bedf-42ee-b3bf-4c7082274ec9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebf5a5eb-0e6a-425b-af44-b581f5c5b54c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fd72099a-dfbe-ee42-b3bf-4c7082274ec9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:34:37.171704Z\"\n }" + string: "{\n \"name\": \"eba5f5eb-6a0e-5b42-af44-b581f5c5b54c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:27:40.4627567Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:36:07 GMT + - Thu, 15 Jun 2023 14:28:41 GMT expires: - '-1' pragma: @@ -348,23 +351,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9a0972fd-bedf-42ee-b3bf-4c7082274ec9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebf5a5eb-0e6a-425b-af44-b581f5c5b54c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fd72099a-dfbe-ee42-b3bf-4c7082274ec9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:34:37.171704Z\"\n }" + string: "{\n \"name\": \"eba5f5eb-6a0e-5b42-af44-b581f5c5b54c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:27:40.4627567Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:36:37 GMT + - Thu, 15 Jun 2023 14:29:11 GMT expires: - '-1' pragma: @@ -396,23 +399,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9a0972fd-bedf-42ee-b3bf-4c7082274ec9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebf5a5eb-0e6a-425b-af44-b581f5c5b54c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fd72099a-dfbe-ee42-b3bf-4c7082274ec9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:34:37.171704Z\"\n }" + string: "{\n \"name\": \"eba5f5eb-6a0e-5b42-af44-b581f5c5b54c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:27:40.4627567Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:37:07 GMT + - Thu, 15 Jun 2023 14:29:41 GMT expires: - '-1' pragma: @@ -444,23 +447,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9a0972fd-bedf-42ee-b3bf-4c7082274ec9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebf5a5eb-0e6a-425b-af44-b581f5c5b54c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fd72099a-dfbe-ee42-b3bf-4c7082274ec9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:34:37.171704Z\"\n }" + string: "{\n \"name\": \"eba5f5eb-6a0e-5b42-af44-b581f5c5b54c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:27:40.4627567Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:37:38 GMT + - Thu, 15 Jun 2023 14:30:11 GMT expires: - '-1' pragma: @@ -492,24 +495,23 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9a0972fd-bedf-42ee-b3bf-4c7082274ec9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebf5a5eb-0e6a-425b-af44-b581f5c5b54c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"fd72099a-dfbe-ee42-b3bf-4c7082274ec9\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:34:37.171704Z\",\n \"endTime\": - \"2023-03-15T10:37:48.9434659Z\"\n }" + string: "{\n \"name\": \"eba5f5eb-6a0e-5b42-af44-b581f5c5b54c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:27:40.4627567Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:38:07 GMT + - Thu, 15 Jun 2023 14:30:41 GMT expires: - '-1' pragma: @@ -541,68 +543,169 @@ interactions: ParameterSetName: - --resource-group --name -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebf5a5eb-0e6a-425b-af44-b581f5c5b54c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"eba5f5eb-6a0e-5b42-af44-b581f5c5b54c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:27:40.4627567Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 14:31:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebf5a5eb-0e6a-425b-af44-b581f5c5b54c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"eba5f5eb-6a0e-5b42-af44-b581f5c5b54c\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T14:27:40.4627567Z\",\n \"\ + endTime\": \"2023-06-15T14:31:22.6665665Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 14:31:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest2xguebjg6-79a739\",\n \"fqdn\": \"cliakstest-clitest2xguebjg6-79a739-gho9jmlx.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest2xguebjg6-79a739-gho9jmlx.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"false\",\n \"rotationPollInterval\": - \"2m\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/cae76cc9-9eb3-4b40-b5e0-3d345d17b4ec\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitesty4a7me2bw-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesty4a7me2bw-8ecadf-x9q921do.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesty4a7me2bw-8ecadf-x9q921do.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"enableSecretRotation\": \"false\",\n\ + \ \"rotationPollInterval\": \"2m\"\n },\n \"identity\": {\n \ + \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/be3e645e-920e-48b4-b4d4-bb0c9007da23\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4490' + - '4818' content-type: - application/json date: - - Wed, 15 Mar 2023 10:38:08 GMT + - Thu, 15 Jun 2023 14:31:43 GMT expires: - '-1' pragma: @@ -636,8 +739,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -645,17 +748,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ebc1814-83af-424d-b55c-7f89999085aa?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ef683104-f8b0-455c-9905-289e23eb7384?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:38:09 GMT + - Thu, 15 Jun 2023 14:31:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/9ebc1814-83af-424d-b55c-7f89999085aa?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/ef683104-f8b0-455c-9905-289e23eb7384?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_confcom_addon.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_confcom_addon.yaml index a7ea0b3b058..546007f4ae4 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_confcom_addon.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_confcom_addon.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:36:08 GMT + - Thu, 15 Jun 2023 14:31:51 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:36:08Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_with_confcom_addon","date":"2023-06-15T14:31:49Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '364' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:36:07 GMT + - Thu, 15 Jun 2023 14:31:51 GMT expires: - '-1' pragma: @@ -88,20 +88,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestlxffajgp7-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest65cmo2zlb-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": - {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, - "disableLocalAccounts": false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": + true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "enableRBAC": true, + "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": + "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -112,69 +112,71 @@ interactions: Connection: - keep-alive Content-Length: - - '1547' + - '1839' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestlxffajgp7-79a739\",\n \"fqdn\": \"cliakstest-clitestlxffajgp7-79a739-0epxo00q.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestlxffajgp7-79a739-0epxo00q.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": - {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n }\n }\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest65cmo2zlb-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest65cmo2zlb-8ecadf-wt5txvlp.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest65cmo2zlb-8ecadf-wt5txvlp.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n\ + \ \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n }\n\ + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0141d500-4b76-4b51-aa80-e16d355ae8bf?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2b95b93-ea2a-4726-8d94-9ab7d9fa9775?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3418' + - '3746' content-type: - application/json date: - - Wed, 15 Mar 2023 10:36:12 GMT + - Thu, 15 Jun 2023 14:31:59 GMT expires: - '-1' pragma: @@ -186,7 +188,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -204,23 +206,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0141d500-4b76-4b51-aa80-e16d355ae8bf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2b95b93-ea2a-4726-8d94-9ab7d9fa9775?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"00d54101-764b-514b-aa80-e16d355ae8bf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:36:12.390718Z\"\n }" + string: "{\n \"name\": \"935bb9b2-2aea-2647-8d94-9ab7d9fa9775\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:31:58.7134189Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:36:42 GMT + - Thu, 15 Jun 2023 14:31:59 GMT expires: - '-1' pragma: @@ -252,23 +254,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0141d500-4b76-4b51-aa80-e16d355ae8bf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2b95b93-ea2a-4726-8d94-9ab7d9fa9775?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"00d54101-764b-514b-aa80-e16d355ae8bf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:36:12.390718Z\"\n }" + string: "{\n \"name\": \"935bb9b2-2aea-2647-8d94-9ab7d9fa9775\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:31:58.7134189Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:37:11 GMT + - Thu, 15 Jun 2023 14:32:29 GMT expires: - '-1' pragma: @@ -300,23 +302,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0141d500-4b76-4b51-aa80-e16d355ae8bf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2b95b93-ea2a-4726-8d94-9ab7d9fa9775?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"00d54101-764b-514b-aa80-e16d355ae8bf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:36:12.390718Z\"\n }" + string: "{\n \"name\": \"935bb9b2-2aea-2647-8d94-9ab7d9fa9775\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:31:58.7134189Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:37:42 GMT + - Thu, 15 Jun 2023 14:32:59 GMT expires: - '-1' pragma: @@ -348,23 +350,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0141d500-4b76-4b51-aa80-e16d355ae8bf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2b95b93-ea2a-4726-8d94-9ab7d9fa9775?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"00d54101-764b-514b-aa80-e16d355ae8bf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:36:12.390718Z\"\n }" + string: "{\n \"name\": \"935bb9b2-2aea-2647-8d94-9ab7d9fa9775\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:31:58.7134189Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:38:12 GMT + - Thu, 15 Jun 2023 14:33:29 GMT expires: - '-1' pragma: @@ -396,23 +398,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0141d500-4b76-4b51-aa80-e16d355ae8bf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2b95b93-ea2a-4726-8d94-9ab7d9fa9775?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"00d54101-764b-514b-aa80-e16d355ae8bf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:36:12.390718Z\"\n }" + string: "{\n \"name\": \"935bb9b2-2aea-2647-8d94-9ab7d9fa9775\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:31:58.7134189Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:38:42 GMT + - Thu, 15 Jun 2023 14:33:59 GMT expires: - '-1' pragma: @@ -444,23 +446,23 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0141d500-4b76-4b51-aa80-e16d355ae8bf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2b95b93-ea2a-4726-8d94-9ab7d9fa9775?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"00d54101-764b-514b-aa80-e16d355ae8bf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:36:12.390718Z\"\n }" + string: "{\n \"name\": \"935bb9b2-2aea-2647-8d94-9ab7d9fa9775\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:31:58.7134189Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:39:12 GMT + - Thu, 15 Jun 2023 14:34:29 GMT expires: - '-1' pragma: @@ -492,15 +494,111 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0141d500-4b76-4b51-aa80-e16d355ae8bf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2b95b93-ea2a-4726-8d94-9ab7d9fa9775?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"00d54101-764b-514b-aa80-e16d355ae8bf\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:36:12.390718Z\",\n \"endTime\": - \"2023-03-15T10:39:29.0715479Z\"\n }" + string: "{\n \"name\": \"935bb9b2-2aea-2647-8d94-9ab7d9fa9775\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:31:58.7134189Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 14:35:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2b95b93-ea2a-4726-8d94-9ab7d9fa9775?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"935bb9b2-2aea-2647-8d94-9ab7d9fa9775\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:31:58.7134189Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 14:35:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b2b95b93-ea2a-4726-8d94-9ab7d9fa9775?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"935bb9b2-2aea-2647-8d94-9ab7d9fa9775\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T14:31:58.7134189Z\",\n \"\ + endTime\": \"2023-06-15T14:35:43.404627Z\"\n }" headers: cache-control: - no-cache @@ -509,7 +607,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:39:42 GMT + - Thu, 15 Jun 2023 14:36:00 GMT expires: - '-1' pragma: @@ -541,66 +639,68 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestlxffajgp7-79a739\",\n \"fqdn\": \"cliakstest-clitestlxffajgp7-79a739-0epxo00q.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestlxffajgp7-79a739-0epxo00q.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": - {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n }\n }\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/0f66fe0b-8c86-4213-9753-48713a3c0a6a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest65cmo2zlb-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest65cmo2zlb-8ecadf-wt5txvlp.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest65cmo2zlb-8ecadf-wt5txvlp.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n\ + \ \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n }\n\ + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/28ea9c53-058f-4d5c-b1ce-124ed3153a0d\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4071' + - '4399' content-type: - application/json date: - - Wed, 15 Mar 2023 10:39:42 GMT + - Thu, 15 Jun 2023 14:36:01 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_confcom_addon_helper_enabled.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_confcom_addon_helper_enabled.yaml index d82c98a58fe..0b9dbaeda3c 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_confcom_addon_helper_enabled.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_confcom_addon_helper_enabled.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:39:43 GMT + - Thu, 15 Jun 2023 14:36:05 GMT expires: - '-1' pragma: @@ -60,21 +60,21 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:39:44Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_with_confcom_addon_helper_enabled","date":"2023-06-15T14:36:04Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '379' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:39:43 GMT + - Thu, 15 Jun 2023 14:36:06 GMT expires: - '-1' pragma: @@ -90,20 +90,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestbolcvxggs-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestuogh6ynkf-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": - {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "true"}}}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, - "disableLocalAccounts": false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": + true, "config": {"ACCSGXQuoteHelperEnabled": "true"}}}, "enableRBAC": true, + "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": + "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -114,70 +114,72 @@ interactions: Connection: - keep-alive Content-Length: - - '1546' + - '1838' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestbolcvxggs-79a739\",\n \"fqdn\": \"cliakstest-clitestbolcvxggs-79a739-4bf43tnm.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbolcvxggs-79a739-4bf43tnm.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": - {\n \"ACCSGXQuoteHelperEnabled\": \"true\"\n }\n }\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestuogh6ynkf-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestuogh6ynkf-8ecadf-golozxee.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestuogh6ynkf-8ecadf-golozxee.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n\ + \ \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"true\"\n }\n\ + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5779b4a-4976-4d17-9a30-b5c616ce31f1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8cee035-e079-4785-962f-667a8a691018?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3417' + - '3745' content-type: - application/json date: - - Wed, 15 Mar 2023 10:39:47 GMT + - Thu, 15 Jun 2023 14:36:14 GMT expires: - '-1' pragma: @@ -189,7 +191,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -208,14 +210,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5779b4a-4976-4d17-9a30-b5c616ce31f1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8cee035-e079-4785-962f-667a8a691018?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a9b77b5-7649-174d-9a30-b5c616ce31f1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:39:47.9386751Z\"\n }" + string: "{\n \"name\": \"35e0cee8-79e0-8547-962f-667a8a691018\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:36:13.9796047Z\"\n }" headers: cache-control: - no-cache @@ -224,7 +226,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:40:18 GMT + - Thu, 15 Jun 2023 14:36:14 GMT expires: - '-1' pragma: @@ -257,14 +259,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5779b4a-4976-4d17-9a30-b5c616ce31f1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8cee035-e079-4785-962f-667a8a691018?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a9b77b5-7649-174d-9a30-b5c616ce31f1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:39:47.9386751Z\"\n }" + string: "{\n \"name\": \"35e0cee8-79e0-8547-962f-667a8a691018\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:36:13.9796047Z\"\n }" headers: cache-control: - no-cache @@ -273,7 +275,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:40:48 GMT + - Thu, 15 Jun 2023 14:36:44 GMT expires: - '-1' pragma: @@ -306,14 +308,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5779b4a-4976-4d17-9a30-b5c616ce31f1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8cee035-e079-4785-962f-667a8a691018?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a9b77b5-7649-174d-9a30-b5c616ce31f1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:39:47.9386751Z\"\n }" + string: "{\n \"name\": \"35e0cee8-79e0-8547-962f-667a8a691018\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:36:13.9796047Z\"\n }" headers: cache-control: - no-cache @@ -322,7 +324,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:41:17 GMT + - Thu, 15 Jun 2023 14:37:14 GMT expires: - '-1' pragma: @@ -355,14 +357,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5779b4a-4976-4d17-9a30-b5c616ce31f1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8cee035-e079-4785-962f-667a8a691018?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a9b77b5-7649-174d-9a30-b5c616ce31f1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:39:47.9386751Z\"\n }" + string: "{\n \"name\": \"35e0cee8-79e0-8547-962f-667a8a691018\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:36:13.9796047Z\"\n }" headers: cache-control: - no-cache @@ -371,7 +373,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:41:47 GMT + - Thu, 15 Jun 2023 14:37:44 GMT expires: - '-1' pragma: @@ -404,14 +406,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5779b4a-4976-4d17-9a30-b5c616ce31f1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8cee035-e079-4785-962f-667a8a691018?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a9b77b5-7649-174d-9a30-b5c616ce31f1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:39:47.9386751Z\"\n }" + string: "{\n \"name\": \"35e0cee8-79e0-8547-962f-667a8a691018\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:36:13.9796047Z\"\n }" headers: cache-control: - no-cache @@ -420,7 +422,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:42:17 GMT + - Thu, 15 Jun 2023 14:38:14 GMT expires: - '-1' pragma: @@ -453,14 +455,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5779b4a-4976-4d17-9a30-b5c616ce31f1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8cee035-e079-4785-962f-667a8a691018?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a9b77b5-7649-174d-9a30-b5c616ce31f1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:39:47.9386751Z\"\n }" + string: "{\n \"name\": \"35e0cee8-79e0-8547-962f-667a8a691018\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:36:13.9796047Z\"\n }" headers: cache-control: - no-cache @@ -469,7 +471,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:42:48 GMT + - Thu, 15 Jun 2023 14:38:45 GMT expires: - '-1' pragma: @@ -502,14 +504,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5779b4a-4976-4d17-9a30-b5c616ce31f1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8cee035-e079-4785-962f-667a8a691018?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a9b77b5-7649-174d-9a30-b5c616ce31f1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:39:47.9386751Z\"\n }" + string: "{\n \"name\": \"35e0cee8-79e0-8547-962f-667a8a691018\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:36:13.9796047Z\"\n }" headers: cache-control: - no-cache @@ -518,7 +520,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:43:18 GMT + - Thu, 15 Jun 2023 14:39:15 GMT expires: - '-1' pragma: @@ -551,15 +553,15 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5779b4a-4976-4d17-9a30-b5c616ce31f1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8cee035-e079-4785-962f-667a8a691018?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a9b77b5-7649-174d-9a30-b5c616ce31f1\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:39:47.9386751Z\",\n \"endTime\": - \"2023-03-15T10:43:32.4005234Z\"\n }" + string: "{\n \"name\": \"35e0cee8-79e0-8547-962f-667a8a691018\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T14:36:13.9796047Z\",\n \"\ + endTime\": \"2023-06-15T14:39:31.9447933Z\"\n }" headers: cache-control: - no-cache @@ -568,7 +570,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:43:48 GMT + - Thu, 15 Jun 2023 14:39:45 GMT expires: - '-1' pragma: @@ -601,66 +603,68 @@ interactions: - --resource-group --name --enable-managed-identity -a --enable-sgxquotehelper --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestbolcvxggs-79a739\",\n \"fqdn\": \"cliakstest-clitestbolcvxggs-79a739-4bf43tnm.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestbolcvxggs-79a739-4bf43tnm.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": - {\n \"ACCSGXQuoteHelperEnabled\": \"true\"\n }\n }\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/f27bcb74-7456-41c1-b8e3-76414aae90c1\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestuogh6ynkf-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestuogh6ynkf-8ecadf-golozxee.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestuogh6ynkf-8ecadf-golozxee.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n\ + \ \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"true\"\n }\n\ + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/aa8f68b9-2801-4df7-a790-ab013f9a1472\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4070' + - '4398' content-type: - application/json date: - - Wed, 15 Mar 2023 10:43:48 GMT + - Thu, 15 Jun 2023 14:39:46 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_custom_monitoring_workspace.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_custom_monitoring_workspace.yaml old mode 100755 new mode 100644 index 9db9c96385a..1d57fda8ddb --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_custom_monitoring_workspace.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_custom_monitoring_workspace.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_with_custom_monitoring_workspace","date":"2023-04-23T12:01:26Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_with_custom_monitoring_workspace","date":"2023-04-29T09:40:21Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 23 Apr 2023 12:01:26 GMT + - Sat, 29 Apr 2023 09:40:21 GMT expires: - '-1' pragma: @@ -60,12 +60,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.48.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.OperationalInsights/workspaces/cliaksworkspace000003?api-version=2021-12-01-preview response: body: - string: '{"properties":{"customerId":"b8b82b24-700b-43b1-9271-9d69e1957ffa","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-04-23T12:01:27.5035264Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-04-24T08:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-04-23T12:01:27.5035264Z","modifiedDate":"2023-04-23T12:01:27.5035264Z"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.OperationalInsights/workspaces/cliaksworkspace000003","name":"cliaksworkspace000003","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"4014df72-6d78-42c0-b08d-100473b4d28a","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-04-29T09:40:22.5283419Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-04-29T12:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-04-29T09:40:22.5283419Z","modifiedDate":"2023-04-29T09:40:22.5283419Z"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.OperationalInsights/workspaces/cliaksworkspace000003","name":"cliaksworkspace000003","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' @@ -78,7 +78,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 23 Apr 2023 12:01:27 GMT + - Sat, 29 Apr 2023 09:40:22 GMT expires: - '-1' location: @@ -92,7 +92,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' x-powered-by: - ASP.NET status: @@ -112,12 +112,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.48.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.OperationalInsights/workspaces/cliaksworkspace000003?api-version=2021-12-01-preview response: body: - string: '{"properties":{"customerId":"b8b82b24-700b-43b1-9271-9d69e1957ffa","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-04-23T12:01:27.5035264Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-04-24T08:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-04-23T12:01:27.5035264Z","modifiedDate":"2023-04-23T12:01:27.5035264Z"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.OperationalInsights/workspaces/cliaksworkspace000003","name":"cliaksworkspace000003","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"4014df72-6d78-42c0-b08d-100473b4d28a","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-04-29T09:40:22.5283419Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-04-29T12:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-04-29T09:40:22.5283419Z","modifiedDate":"2023-04-29T09:40:22.5283419Z"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.OperationalInsights/workspaces/cliaksworkspace000003","name":"cliaksworkspace000003","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' @@ -130,7 +130,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 23 Apr 2023 12:01:27 GMT + - Sat, 29 Apr 2023 09:40:22 GMT expires: - '-1' pragma: @@ -164,7 +164,7 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -a --workspace-resource-id User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 @@ -181,7 +181,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 23 Apr 2023 12:01:28 GMT + - Sat, 29 Apr 2023 09:40:22 GMT expires: - '-1' pragma: @@ -209,12 +209,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -a --workspace-resource-id User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_with_custom_monitoring_workspace","date":"2023-04-23T12:01:26Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_with_custom_monitoring_workspace","date":"2023-04-29T09:40:21Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -223,7 +223,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 23 Apr 2023 12:01:27 GMT + - Sat, 29 Apr 2023 09:40:22 GMT expires: - '-1' pragma: @@ -251,12 +251,12 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -a --workspace-resource-id User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.operationalinsights/workspaces/cliaksworkspace000003?api-version=2015-11-01-preview response: body: - string: '{"properties":{"customerId":"b8b82b24-700b-43b1-9271-9d69e1957ffa","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-04-23T12:01:27.5035264Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-04-24T08:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-04-23T12:01:27.5035264Z","modifiedDate":"2023-04-23T12:01:27.5035264Z"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.OperationalInsights/workspaces/cliaksworkspace000003","name":"cliaksworkspace000003","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"4014df72-6d78-42c0-b08d-100473b4d28a","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2023-04-29T09:40:22.5283419Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2023-04-29T12:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2023-04-29T09:40:22.5283419Z","modifiedDate":"2023-04-29T09:40:22.5283419Z"},"location":"westus2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.OperationalInsights/workspaces/cliaksworkspace000003","name":"cliaksworkspace000003","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' @@ -269,7 +269,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 23 Apr 2023 12:01:27 GMT + - Sat, 29 Apr 2023 09:40:22 GMT expires: - '-1' pragma: @@ -291,14 +291,14 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest2xx6o2r7j-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestoedt4ep2h-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDTAAK31PbLN4NRXNE+fQ9l2XTqagn2x/9R6SEGuHSEwqjSX6nxydSJNCRMtZ0390/A/ZngWTw4rRC5zTTmy6aqecbjs3e/tgsd3IJECvTBqdLOQKNjQMEI4fMMhKsK2HDracFpeuyTIQ/wchtTQ2IyEh0WFN2SPt0X6/CRtCQjJzXMpeGbUWNau3dwesrADYBuhW9P7hEb2bDOwUaHNVHatNlrtTk8ujiMyVMZ44oV8o4NOd7ODq8hWkf0YMDypSQkRHx6YGdPeYPifye7MLWHAxdVOppW1zkLX0ne9QUgMQ+kUNofY2Td3Ojzu3vGwsiwRCpbZYIGKF3e4T/TnIMr + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"omsagent": {"enabled": true, "config": {"logAnalyticsWorkspaceResourceID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/microsoft.operationalinsights/workspaces/cliaksworkspace000003", "useAADAuth": "False"}}}, "enableRBAC": true, "networkProfile": {"networkPlugin": @@ -322,7 +322,7 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -a --workspace-resource-id User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 @@ -333,8 +333,8 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliakstest-clitest2xx6o2r7j-79a739\",\n \"fqdn\": \"cliakstest-clitest2xx6o2r7j-79a739-jgy5s31u.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest2xx6o2r7j-79a739-jgy5s31u.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestoedt4ep2h-79a739\",\n \"fqdn\": \"cliakstest-clitestoedt4ep2h-79a739-qjxlu3kx.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestoedt4ep2h-79a739-qjxlu3kx.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -347,7 +347,7 @@ interactions: \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDTAAK31PbLN4NRXNE+fQ9l2XTqagn2x/9R6SEGuHSEwqjSX6nxydSJNCRMtZ0390/A/ZngWTw4rRC5zTTmy6aqecbjs3e/tgsd3IJECvTBqdLOQKNjQMEI4fMMhKsK2HDracFpeuyTIQ/wchtTQ2IyEh0WFN2SPt0X6/CRtCQjJzXMpeGbUWNau3dwesrADYBuhW9P7hEb2bDOwUaHNVHatNlrtTk8ujiMyVMZ44oV8o4NOd7ODq8hWkf0YMDypSQkRHx6YGdPeYPifye7MLWHAxdVOppW1zkLX0ne9QUgMQ+kUNofY2Td3Ojzu3vGwsiwRCpbZYIGKF3e4T/TnIMr + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": @@ -371,7 +371,7 @@ interactions: {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66eb2986-c3ad-4501-8489-ace5738a9dd6?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0e1ee1a-c409-46bb-b57e-008223b20c45?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -379,7 +379,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:01:32 GMT + - Sat, 29 Apr 2023 09:40:27 GMT expires: - '-1' pragma: @@ -391,7 +391,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1192' status: code: 201 message: Created @@ -409,14 +409,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -a --workspace-resource-id User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66eb2986-c3ad-4501-8489-ace5738a9dd6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0e1ee1a-c409-46bb-b57e-008223b20c45?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8629eb66-adc3-0145-8489-ace5738a9dd6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:32.0793444Z\"\n }" + string: "{\n \"name\": \"1aeee1b0-09c4-bb46-b57e-008223b20c45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:40:27.6291238Z\"\n }" headers: cache-control: - no-cache @@ -425,7 +425,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:01:32 GMT + - Sat, 29 Apr 2023 09:40:27 GMT expires: - '-1' pragma: @@ -457,14 +457,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -a --workspace-resource-id User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66eb2986-c3ad-4501-8489-ace5738a9dd6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0e1ee1a-c409-46bb-b57e-008223b20c45?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8629eb66-adc3-0145-8489-ace5738a9dd6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:32.0793444Z\"\n }" + string: "{\n \"name\": \"1aeee1b0-09c4-bb46-b57e-008223b20c45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:40:27.6291238Z\"\n }" headers: cache-control: - no-cache @@ -473,7 +473,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:02:02 GMT + - Sat, 29 Apr 2023 09:40:57 GMT expires: - '-1' pragma: @@ -505,14 +505,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -a --workspace-resource-id User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66eb2986-c3ad-4501-8489-ace5738a9dd6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0e1ee1a-c409-46bb-b57e-008223b20c45?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8629eb66-adc3-0145-8489-ace5738a9dd6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:32.0793444Z\"\n }" + string: "{\n \"name\": \"1aeee1b0-09c4-bb46-b57e-008223b20c45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:40:27.6291238Z\"\n }" headers: cache-control: - no-cache @@ -521,7 +521,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:02:32 GMT + - Sat, 29 Apr 2023 09:41:27 GMT expires: - '-1' pragma: @@ -553,14 +553,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -a --workspace-resource-id User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66eb2986-c3ad-4501-8489-ace5738a9dd6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0e1ee1a-c409-46bb-b57e-008223b20c45?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8629eb66-adc3-0145-8489-ace5738a9dd6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:32.0793444Z\"\n }" + string: "{\n \"name\": \"1aeee1b0-09c4-bb46-b57e-008223b20c45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:40:27.6291238Z\"\n }" headers: cache-control: - no-cache @@ -569,7 +569,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:03:02 GMT + - Sat, 29 Apr 2023 09:41:57 GMT expires: - '-1' pragma: @@ -601,14 +601,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -a --workspace-resource-id User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66eb2986-c3ad-4501-8489-ace5738a9dd6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0e1ee1a-c409-46bb-b57e-008223b20c45?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8629eb66-adc3-0145-8489-ace5738a9dd6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:32.0793444Z\"\n }" + string: "{\n \"name\": \"1aeee1b0-09c4-bb46-b57e-008223b20c45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:40:27.6291238Z\"\n }" headers: cache-control: - no-cache @@ -617,7 +617,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:03:31 GMT + - Sat, 29 Apr 2023 09:42:27 GMT expires: - '-1' pragma: @@ -649,14 +649,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -a --workspace-resource-id User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66eb2986-c3ad-4501-8489-ace5738a9dd6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0e1ee1a-c409-46bb-b57e-008223b20c45?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8629eb66-adc3-0145-8489-ace5738a9dd6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:32.0793444Z\"\n }" + string: "{\n \"name\": \"1aeee1b0-09c4-bb46-b57e-008223b20c45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:40:27.6291238Z\"\n }" headers: cache-control: - no-cache @@ -665,7 +665,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:04:02 GMT + - Sat, 29 Apr 2023 09:42:58 GMT expires: - '-1' pragma: @@ -697,14 +697,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -a --workspace-resource-id User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66eb2986-c3ad-4501-8489-ace5738a9dd6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0e1ee1a-c409-46bb-b57e-008223b20c45?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8629eb66-adc3-0145-8489-ace5738a9dd6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:32.0793444Z\"\n }" + string: "{\n \"name\": \"1aeee1b0-09c4-bb46-b57e-008223b20c45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:40:27.6291238Z\"\n }" headers: cache-control: - no-cache @@ -713,7 +713,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:04:32 GMT + - Sat, 29 Apr 2023 09:43:28 GMT expires: - '-1' pragma: @@ -745,14 +745,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -a --workspace-resource-id User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66eb2986-c3ad-4501-8489-ace5738a9dd6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0e1ee1a-c409-46bb-b57e-008223b20c45?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8629eb66-adc3-0145-8489-ace5738a9dd6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:32.0793444Z\"\n }" + string: "{\n \"name\": \"1aeee1b0-09c4-bb46-b57e-008223b20c45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:40:27.6291238Z\"\n }" headers: cache-control: - no-cache @@ -761,7 +761,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:05:02 GMT + - Sat, 29 Apr 2023 09:43:58 GMT expires: - '-1' pragma: @@ -793,14 +793,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -a --workspace-resource-id User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66eb2986-c3ad-4501-8489-ace5738a9dd6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0e1ee1a-c409-46bb-b57e-008223b20c45?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8629eb66-adc3-0145-8489-ace5738a9dd6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:32.0793444Z\"\n }" + string: "{\n \"name\": \"1aeee1b0-09c4-bb46-b57e-008223b20c45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:40:27.6291238Z\"\n }" headers: cache-control: - no-cache @@ -809,7 +809,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:05:32 GMT + - Sat, 29 Apr 2023 09:44:27 GMT expires: - '-1' pragma: @@ -841,14 +841,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -a --workspace-resource-id User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66eb2986-c3ad-4501-8489-ace5738a9dd6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0e1ee1a-c409-46bb-b57e-008223b20c45?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8629eb66-adc3-0145-8489-ace5738a9dd6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:32.0793444Z\"\n }" + string: "{\n \"name\": \"1aeee1b0-09c4-bb46-b57e-008223b20c45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:40:27.6291238Z\"\n }" headers: cache-control: - no-cache @@ -857,7 +857,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:06:02 GMT + - Sat, 29 Apr 2023 09:44:57 GMT expires: - '-1' pragma: @@ -889,14 +889,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -a --workspace-resource-id User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66eb2986-c3ad-4501-8489-ace5738a9dd6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0e1ee1a-c409-46bb-b57e-008223b20c45?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8629eb66-adc3-0145-8489-ace5738a9dd6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:32.0793444Z\"\n }" + string: "{\n \"name\": \"1aeee1b0-09c4-bb46-b57e-008223b20c45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:40:27.6291238Z\"\n }" headers: cache-control: - no-cache @@ -905,7 +905,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:06:32 GMT + - Sat, 29 Apr 2023 09:45:27 GMT expires: - '-1' pragma: @@ -937,14 +937,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -a --workspace-resource-id User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66eb2986-c3ad-4501-8489-ace5738a9dd6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0e1ee1a-c409-46bb-b57e-008223b20c45?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8629eb66-adc3-0145-8489-ace5738a9dd6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:32.0793444Z\"\n }" + string: "{\n \"name\": \"1aeee1b0-09c4-bb46-b57e-008223b20c45\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T09:40:27.6291238Z\"\n }" headers: cache-control: - no-cache @@ -953,7 +953,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:07:02 GMT + - Sat, 29 Apr 2023 09:45:58 GMT expires: - '-1' pragma: @@ -985,63 +985,15 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -a --workspace-resource-id User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66eb2986-c3ad-4501-8489-ace5738a9dd6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0e1ee1a-c409-46bb-b57e-008223b20c45?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8629eb66-adc3-0145-8489-ace5738a9dd6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:32.0793444Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Sun, 23 Apr 2023 12:07:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --ssh-key-value -a --workspace-resource-id - User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66eb2986-c3ad-4501-8489-ace5738a9dd6?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"8629eb66-adc3-0145-8489-ace5738a9dd6\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-04-23T12:01:32.0793444Z\",\n \"endTime\": - \"2023-04-23T12:08:03.3616861Z\"\n }" + string: "{\n \"name\": \"1aeee1b0-09c4-bb46-b57e-008223b20c45\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-04-29T09:40:27.6291238Z\",\n \"endTime\": + \"2023-04-29T09:46:10.8861451Z\"\n }" headers: cache-control: - no-cache @@ -1050,7 +1002,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:08:03 GMT + - Sat, 29 Apr 2023 09:46:28 GMT expires: - '-1' pragma: @@ -1082,7 +1034,7 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -a --workspace-resource-id User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 @@ -1093,8 +1045,8 @@ interactions: \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliakstest-clitest2xx6o2r7j-79a739\",\n \"fqdn\": \"cliakstest-clitest2xx6o2r7j-79a739-jgy5s31u.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest2xx6o2r7j-79a739-jgy5s31u.portal.hcp.westus2.azmk8s.io\",\n + \"cliakstest-clitestoedt4ep2h-79a739\",\n \"fqdn\": \"cliakstest-clitestoedt4ep2h-79a739-qjxlu3kx.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestoedt4ep2h-79a739-qjxlu3kx.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n @@ -1107,7 +1059,7 @@ interactions: \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDTAAK31PbLN4NRXNE+fQ9l2XTqagn2x/9R6SEGuHSEwqjSX6nxydSJNCRMtZ0390/A/ZngWTw4rRC5zTTmy6aqecbjs3e/tgsd3IJECvTBqdLOQKNjQMEI4fMMhKsK2HDracFpeuyTIQ/wchtTQ2IyEh0WFN2SPt0X6/CRtCQjJzXMpeGbUWNau3dwesrADYBuhW9P7hEb2bDOwUaHNVHatNlrtTk8ujiMyVMZ44oV8o4NOd7ODq8hWkf0YMDypSQkRHx6YGdPeYPifye7MLWHAxdVOppW1zkLX0ne9QUgMQ+kUNofY2Td3Ojzu3vGwsiwRCpbZYIGKF3e4T/TnIMr + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": {\n \"omsagent\": {\n \"enabled\": true,\n \"config\": {\n \"logAnalyticsWorkspaceResourceID\": @@ -1119,7 +1071,7 @@ interactions: \ \"enableRBAC\": true,\n \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \ \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"count\": - 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fe7f834c-0b9e-4899-be99-6da841851480\"\n + 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/29ae9aef-bef7-4243-a0bd-77d390ab39af\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1144,7 +1096,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:08:04 GMT + - Sat, 29 Apr 2023 09:46:28 GMT expires: - '-1' pragma: @@ -1176,7 +1128,7 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -a --workspace-resource-id User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Monitoring%20Metrics%20Publisher%27&api-version=2022-04-01 @@ -1192,7 +1144,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 23 Apr 2023 12:08:03 GMT + - Sat, 29 Apr 2023 09:46:29 GMT expires: - '-1' pragma: @@ -1231,13 +1183,13 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -a --workspace-resource-id User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/f20e7142-3dfd-4f61-aea7-31f41b0cdd3d?api-version=2022-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/6f9f8876-976f-42a6-bc81-34878be33f8c?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002","condition":null,"conditionVersion":null,"createdOn":"2023-04-23T12:08:04.7025482Z","updatedOn":"2023-04-23T12:08:05.0496736Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/f20e7142-3dfd-4f61-aea7-31f41b0cdd3d","type":"Microsoft.Authorization/roleAssignments","name":"f20e7142-3dfd-4f61-aea7-31f41b0cdd3d"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/3913510d-42f4-4e42-8a64-420c390055eb","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002","condition":null,"conditionVersion":null,"createdOn":"2023-04-29T09:46:30.0135791Z","updatedOn":"2023-04-29T09:46:30.3945899Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/providers/Microsoft.Authorization/roleAssignments/6f9f8876-976f-42a6-bc81-34878be33f8c","type":"Microsoft.Authorization/roleAssignments","name":"6f9f8876-976f-42a6-bc81-34878be33f8c"}' headers: cache-control: - no-cache @@ -1246,7 +1198,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 23 Apr 2023 12:08:04 GMT + - Sat, 29 Apr 2023 09:46:31 GMT expires: - '-1' pragma: @@ -1256,7 +1208,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1187' status: code: 201 message: Created @@ -1276,7 +1228,7 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 @@ -1285,17 +1237,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/92382936-ddb6-44ce-b17f-be9de8f93c6a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1ce08291-12b6-414e-9cf3-a2c614fb70d3?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Sun, 23 Apr 2023 12:08:06 GMT + - Sat, 29 Apr 2023 09:46:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/92382936-ddb6-44ce-b17f-be9de8f93c6a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/1ce08291-12b6-414e-9cf3-a2c614fb70d3?api-version=2016-03-30 pragma: - no-cache server: @@ -1305,7 +1257,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ephemeral_disk.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ephemeral_disk.yaml index fb80d3de922..cbb64945395 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ephemeral_disk.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ephemeral_disk.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:36:14 GMT + - Thu, 15 Jun 2023 14:39:51 GMT expires: - '-1' pragma: @@ -60,21 +60,21 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:36:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_with_ephemeral_disk","date":"2023-06-15T14:39:49Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '365' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:36:13 GMT + - Thu, 15 Jun 2023 14:39:52 GMT expires: - '-1' pragma: @@ -90,7 +90,7 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest7d6r4o6gn-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesttjonqgto5-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 60, "osDiskType": "Ephemeral", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": @@ -98,12 +98,11 @@ interactions: "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -114,68 +113,70 @@ interactions: Connection: - keep-alive Content-Length: - - '1487' + - '1779' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest7d6r4o6gn-79a739\",\n \"fqdn\": \"cliakstest-clitest7d6r4o6gn-79a739-l7bi3kze.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest7d6r4o6gn-79a739-l7bi3kze.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 60,\n \"osDiskType\": - \"Ephemeral\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitesttjonqgto5-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesttjonqgto5-8ecadf-nkog25ip.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesttjonqgto5-8ecadf-nkog25ip.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 60,\n \"osDiskType\": \"Ephemeral\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57316fff-f206-43d0-8bda-2f6d0130f129?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54780828-1af2-41a0-8302-b01981a80265?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3269' + - '3597' content-type: - application/json date: - - Wed, 15 Mar 2023 10:36:17 GMT + - Thu, 15 Jun 2023 14:39:58 GMT expires: - '-1' pragma: @@ -206,14 +207,14 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57316fff-f206-43d0-8bda-2f6d0130f129?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54780828-1af2-41a0-8302-b01981a80265?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ff6f3157-06f2-d043-8bda-2f6d0130f129\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:36:18.1407313Z\"\n }" + string: "{\n \"name\": \"28087854-f21a-a041-8302-b01981a80265\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:39:58.6050542Z\"\n }" headers: cache-control: - no-cache @@ -222,7 +223,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:36:47 GMT + - Thu, 15 Jun 2023 14:39:58 GMT expires: - '-1' pragma: @@ -255,14 +256,14 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57316fff-f206-43d0-8bda-2f6d0130f129?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54780828-1af2-41a0-8302-b01981a80265?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ff6f3157-06f2-d043-8bda-2f6d0130f129\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:36:18.1407313Z\"\n }" + string: "{\n \"name\": \"28087854-f21a-a041-8302-b01981a80265\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:39:58.6050542Z\"\n }" headers: cache-control: - no-cache @@ -271,7 +272,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:37:17 GMT + - Thu, 15 Jun 2023 14:40:28 GMT expires: - '-1' pragma: @@ -304,14 +305,14 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57316fff-f206-43d0-8bda-2f6d0130f129?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54780828-1af2-41a0-8302-b01981a80265?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ff6f3157-06f2-d043-8bda-2f6d0130f129\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:36:18.1407313Z\"\n }" + string: "{\n \"name\": \"28087854-f21a-a041-8302-b01981a80265\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:39:58.6050542Z\"\n }" headers: cache-control: - no-cache @@ -320,7 +321,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:37:48 GMT + - Thu, 15 Jun 2023 14:40:58 GMT expires: - '-1' pragma: @@ -353,14 +354,14 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57316fff-f206-43d0-8bda-2f6d0130f129?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54780828-1af2-41a0-8302-b01981a80265?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ff6f3157-06f2-d043-8bda-2f6d0130f129\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:36:18.1407313Z\"\n }" + string: "{\n \"name\": \"28087854-f21a-a041-8302-b01981a80265\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:39:58.6050542Z\"\n }" headers: cache-control: - no-cache @@ -369,7 +370,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:38:18 GMT + - Thu, 15 Jun 2023 14:41:29 GMT expires: - '-1' pragma: @@ -402,14 +403,14 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57316fff-f206-43d0-8bda-2f6d0130f129?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54780828-1af2-41a0-8302-b01981a80265?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ff6f3157-06f2-d043-8bda-2f6d0130f129\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:36:18.1407313Z\"\n }" + string: "{\n \"name\": \"28087854-f21a-a041-8302-b01981a80265\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:39:58.6050542Z\"\n }" headers: cache-control: - no-cache @@ -418,7 +419,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:38:48 GMT + - Thu, 15 Jun 2023 14:41:59 GMT expires: - '-1' pragma: @@ -451,14 +452,14 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57316fff-f206-43d0-8bda-2f6d0130f129?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54780828-1af2-41a0-8302-b01981a80265?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ff6f3157-06f2-d043-8bda-2f6d0130f129\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:36:18.1407313Z\"\n }" + string: "{\n \"name\": \"28087854-f21a-a041-8302-b01981a80265\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:39:58.6050542Z\"\n }" headers: cache-control: - no-cache @@ -467,7 +468,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:39:18 GMT + - Thu, 15 Jun 2023 14:42:29 GMT expires: - '-1' pragma: @@ -500,14 +501,14 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57316fff-f206-43d0-8bda-2f6d0130f129?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54780828-1af2-41a0-8302-b01981a80265?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ff6f3157-06f2-d043-8bda-2f6d0130f129\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:36:18.1407313Z\"\n }" + string: "{\n \"name\": \"28087854-f21a-a041-8302-b01981a80265\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:39:58.6050542Z\"\n }" headers: cache-control: - no-cache @@ -516,7 +517,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:39:48 GMT + - Thu, 15 Jun 2023 14:42:59 GMT expires: - '-1' pragma: @@ -549,15 +550,15 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57316fff-f206-43d0-8bda-2f6d0130f129?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/54780828-1af2-41a0-8302-b01981a80265?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ff6f3157-06f2-d043-8bda-2f6d0130f129\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:36:18.1407313Z\",\n \"endTime\": - \"2023-03-15T10:40:08.7395495Z\"\n }" + string: "{\n \"name\": \"28087854-f21a-a041-8302-b01981a80265\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T14:39:58.6050542Z\",\n \"\ + endTime\": \"2023-06-15T14:43:24.3224197Z\"\n }" headers: cache-control: - no-cache @@ -566,7 +567,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:40:18 GMT + - Thu, 15 Jun 2023 14:43:29 GMT expires: - '-1' pragma: @@ -599,64 +600,66 @@ interactions: - --resource-group --name --vm-set-type -c --node-osdisk-type --node-osdisk-size --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest7d6r4o6gn-79a739\",\n \"fqdn\": \"cliakstest-clitest7d6r4o6gn-79a739-l7bi3kze.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest7d6r4o6gn-79a739-l7bi3kze.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 60,\n \"osDiskType\": - \"Ephemeral\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/dafe86ab-e3c2-46b0-b377-5589c1e3a25a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitesttjonqgto5-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesttjonqgto5-8ecadf-nkog25ip.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesttjonqgto5-8ecadf-nkog25ip.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 60,\n \"osDiskType\": \"Ephemeral\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8e7a31c0-f0db-41a0-b6a7-983ebf5d6011\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3922' + - '4250' content-type: - application/json date: - - Wed, 15 Mar 2023 10:40:18 GMT + - Thu, 15 Jun 2023 14:43:30 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_fips.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_fips.yaml index d7274daca5c..99d88d2ad2c 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_fips.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_fips.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --generate-ssh-keys User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:37:19 GMT + - Thu, 15 Jun 2023 14:43:35 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --generate-ssh-keys User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:37:19Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_with_fips","date":"2023-06-15T14:43:34Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '354' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:37:19 GMT + - Thu, 15 Jun 2023 14:43:35 GMT expires: - '-1' pragma: @@ -87,20 +87,19 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestszqjqlx76-79a739", + body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestuyd53r6hx-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": true, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsUNxyxr64cgmW2DeA1l9gyK/y7ju7yByewyVXKzMCyus691v155Wlojgjf55QrjZEeh3CyY0sOMiUZeTTFNs9AeJuFeaOBn1uWTSbFB/cyoaVwyGCxt3BGxc4g8viIllhVgAo4ZCo9sVLm3t+89irXsvWmQnKUl3eKY5tmp47q8XjWowWtANK/26rpawOXwJlVxoL9dZaKmp6WBF8uL2LwULpZr+vOurWd1qSyJprcxFMjnK+3wFEfQuaSuEHfXIPuVBv34wHFMALj4hz5xZ0fiZAUrFNhUo4pfNFtcdV+rfV7mCYcPReLm9pUTv+Lqkk0sdRc4XBI5iUVxrtQtuL"}]}}, - "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": - "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": - "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": - {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDpX1rdEYwy8z3kRUtRfwnjcaa5sVBDlUyteEiAVG60B6vO74sUT/s0cmvOGRY56u17SQxCQdf7Y8rapBYnkCybdcP8Vh6SoQszHc2N5LbcfHLoeA9wrFvW74ZZHmld34yo1OeU3xKZVlGB+xP54En93j1zYZa7WFQz20r/R4JR2koF6h1W4jxneKXzRTs/KoZyBAHhM1YuqQiEohJHxccmFlAm1pvzwaEtBMeGQdu3wjSL9CGOGsBTcnSo06LkZ1EXdd9zgSO5Vma/qBA4ZcP7rG6ght3ajBs5b7TqabuISOeWiu9y8GxY+lxiolSmE/MyKAaoJJ8nxHrbjom+gLtsGhW79FqoqySDkN+qK1h/L5YEIjgfx0L4bJkeKGXWNXmGGJE1tEkV0ob9EBpJAMEza46N+LImo/q465+vUG2nOS/cgFkMG4yclVe6f7kyOWWbijFMTcInThhtMoJUBfikOTguGlAIIjMphhaWyAXIjmbpiyDppctW0OrF4ljGx9E= + henrychen@microsoft.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -111,66 +110,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1424' + - '1584' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-fips-image --generate-ssh-keys User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestszqjqlx76-79a739\",\n \"fqdn\": \"cliakstest-clitestszqjqlx76-79a739-zzfh9q57.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestszqjqlx76-79a739-zzfh9q57.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2fipscontainerd-2023.02.15\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": true\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsUNxyxr64cgmW2DeA1l9gyK/y7ju7yByewyVXKzMCyus691v155Wlojgjf55QrjZEeh3CyY0sOMiUZeTTFNs9AeJuFeaOBn1uWTSbFB/cyoaVwyGCxt3BGxc4g8viIllhVgAo4ZCo9sVLm3t+89irXsvWmQnKUl3eKY5tmp47q8XjWowWtANK/26rpawOXwJlVxoL9dZaKmp6WBF8uL2LwULpZr+vOurWd1qSyJprcxFMjnK+3wFEfQuaSuEHfXIPuVBv34wHFMALj4hz5xZ0fiZAUrFNhUo4pfNFtcdV+rfV7mCYcPReLm9pUTv+Lqkk0sdRc4XBI5iUVxrtQtuL\"\n - \ }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": - \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestuyd53r6hx-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestuyd53r6hx-8ecadf-ycqq1dwz.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestuyd53r6hx-8ecadf-ycqq1dwz.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2fipscontainerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": true\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDpX1rdEYwy8z3kRUtRfwnjcaa5sVBDlUyteEiAVG60B6vO74sUT/s0cmvOGRY56u17SQxCQdf7Y8rapBYnkCybdcP8Vh6SoQszHc2N5LbcfHLoeA9wrFvW74ZZHmld34yo1OeU3xKZVlGB+xP54En93j1zYZa7WFQz20r/R4JR2koF6h1W4jxneKXzRTs/KoZyBAHhM1YuqQiEohJHxccmFlAm1pvzwaEtBMeGQdu3wjSL9CGOGsBTcnSo06LkZ1EXdd9zgSO5Vma/qBA4ZcP7rG6ght3ajBs5b7TqabuISOeWiu9y8GxY+lxiolSmE/MyKAaoJJ8nxHrbjom+gLtsGhW79FqoqySDkN+qK1h/L5YEIjgfx0L4bJkeKGXWNXmGGJE1tEkV0ob9EBpJAMEza46N+LImo/q465+vUG2nOS/cgFkMG4yclVe6f7kyOWWbijFMTcInThhtMoJUBfikOTguGlAIIjMphhaWyAXIjmbpiyDppctW0OrF4ljGx9E=\ + \ henrychen@microsoft.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/398a2fdc-c84f-4ef8-99cd-adb36a04c55a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/922e7ef4-0056-4324-ae0a-213fddf48800?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3237' + - '3430' content-type: - application/json date: - - Wed, 15 Mar 2023 10:37:22 GMT + - Thu, 15 Jun 2023 14:43:41 GMT expires: - '-1' pragma: @@ -182,7 +184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 201 message: Created @@ -200,14 +202,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --generate-ssh-keys User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/398a2fdc-c84f-4ef8-99cd-adb36a04c55a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/922e7ef4-0056-4324-ae0a-213fddf48800?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"dc2f8a39-4fc8-f84e-99cd-adb36a04c55a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:37:23.2659012Z\"\n }" + string: "{\n \"name\": \"f47e2e92-5600-2443-ae0a-213fddf48800\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:43:41.6010934Z\"\n }" headers: cache-control: - no-cache @@ -216,7 +218,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:37:52 GMT + - Thu, 15 Jun 2023 14:43:41 GMT expires: - '-1' pragma: @@ -248,14 +250,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --generate-ssh-keys User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/398a2fdc-c84f-4ef8-99cd-adb36a04c55a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/922e7ef4-0056-4324-ae0a-213fddf48800?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"dc2f8a39-4fc8-f84e-99cd-adb36a04c55a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:37:23.2659012Z\"\n }" + string: "{\n \"name\": \"f47e2e92-5600-2443-ae0a-213fddf48800\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:43:41.6010934Z\"\n }" headers: cache-control: - no-cache @@ -264,7 +266,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:38:22 GMT + - Thu, 15 Jun 2023 14:44:11 GMT expires: - '-1' pragma: @@ -296,14 +298,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --generate-ssh-keys User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/398a2fdc-c84f-4ef8-99cd-adb36a04c55a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/922e7ef4-0056-4324-ae0a-213fddf48800?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"dc2f8a39-4fc8-f84e-99cd-adb36a04c55a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:37:23.2659012Z\"\n }" + string: "{\n \"name\": \"f47e2e92-5600-2443-ae0a-213fddf48800\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:43:41.6010934Z\"\n }" headers: cache-control: - no-cache @@ -312,7 +314,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:38:53 GMT + - Thu, 15 Jun 2023 14:44:42 GMT expires: - '-1' pragma: @@ -344,14 +346,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --generate-ssh-keys User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/398a2fdc-c84f-4ef8-99cd-adb36a04c55a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/922e7ef4-0056-4324-ae0a-213fddf48800?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"dc2f8a39-4fc8-f84e-99cd-adb36a04c55a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:37:23.2659012Z\"\n }" + string: "{\n \"name\": \"f47e2e92-5600-2443-ae0a-213fddf48800\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:43:41.6010934Z\"\n }" headers: cache-control: - no-cache @@ -360,7 +362,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:39:23 GMT + - Thu, 15 Jun 2023 14:45:12 GMT expires: - '-1' pragma: @@ -392,14 +394,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --generate-ssh-keys User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/398a2fdc-c84f-4ef8-99cd-adb36a04c55a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/922e7ef4-0056-4324-ae0a-213fddf48800?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"dc2f8a39-4fc8-f84e-99cd-adb36a04c55a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:37:23.2659012Z\"\n }" + string: "{\n \"name\": \"f47e2e92-5600-2443-ae0a-213fddf48800\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:43:41.6010934Z\"\n }" headers: cache-control: - no-cache @@ -408,7 +410,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:39:53 GMT + - Thu, 15 Jun 2023 14:45:42 GMT expires: - '-1' pragma: @@ -440,14 +442,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --generate-ssh-keys User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/398a2fdc-c84f-4ef8-99cd-adb36a04c55a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/922e7ef4-0056-4324-ae0a-213fddf48800?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"dc2f8a39-4fc8-f84e-99cd-adb36a04c55a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:37:23.2659012Z\"\n }" + string: "{\n \"name\": \"f47e2e92-5600-2443-ae0a-213fddf48800\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:43:41.6010934Z\"\n }" headers: cache-control: - no-cache @@ -456,7 +458,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:40:23 GMT + - Thu, 15 Jun 2023 14:46:11 GMT expires: - '-1' pragma: @@ -488,14 +490,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --generate-ssh-keys User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/398a2fdc-c84f-4ef8-99cd-adb36a04c55a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/922e7ef4-0056-4324-ae0a-213fddf48800?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"dc2f8a39-4fc8-f84e-99cd-adb36a04c55a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:37:23.2659012Z\"\n }" + string: "{\n \"name\": \"f47e2e92-5600-2443-ae0a-213fddf48800\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:43:41.6010934Z\"\n }" headers: cache-control: - no-cache @@ -504,7 +506,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:40:53 GMT + - Thu, 15 Jun 2023 14:46:42 GMT expires: - '-1' pragma: @@ -536,15 +538,63 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --generate-ssh-keys User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/398a2fdc-c84f-4ef8-99cd-adb36a04c55a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/922e7ef4-0056-4324-ae0a-213fddf48800?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"dc2f8a39-4fc8-f84e-99cd-adb36a04c55a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:37:23.2659012Z\",\n \"endTime\": - \"2023-03-15T10:41:21.0338728Z\"\n }" + string: "{\n \"name\": \"f47e2e92-5600-2443-ae0a-213fddf48800\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:43:41.6010934Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 14:47:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-fips-image --generate-ssh-keys + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/922e7ef4-0056-4324-ae0a-213fddf48800?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"f47e2e92-5600-2443-ae0a-213fddf48800\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T14:43:41.6010934Z\",\n \"\ + endTime\": \"2023-06-15T14:47:16.6122818Z\"\n }" headers: cache-control: - no-cache @@ -553,7 +603,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:41:23 GMT + - Thu, 15 Jun 2023 14:47:42 GMT expires: - '-1' pragma: @@ -585,63 +635,66 @@ interactions: ParameterSetName: - --resource-group --name --enable-fips-image --generate-ssh-keys User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestszqjqlx76-79a739\",\n \"fqdn\": \"cliakstest-clitestszqjqlx76-79a739-zzfh9q57.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestszqjqlx76-79a739-zzfh9q57.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2fipscontainerd-2023.02.15\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": true\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsUNxyxr64cgmW2DeA1l9gyK/y7ju7yByewyVXKzMCyus691v155Wlojgjf55QrjZEeh3CyY0sOMiUZeTTFNs9AeJuFeaOBn1uWTSbFB/cyoaVwyGCxt3BGxc4g8viIllhVgAo4ZCo9sVLm3t+89irXsvWmQnKUl3eKY5tmp47q8XjWowWtANK/26rpawOXwJlVxoL9dZaKmp6WBF8uL2LwULpZr+vOurWd1qSyJprcxFMjnK+3wFEfQuaSuEHfXIPuVBv34wHFMALj4hz5xZ0fiZAUrFNhUo4pfNFtcdV+rfV7mCYcPReLm9pUTv+Lqkk0sdRc4XBI5iUVxrtQtuL\"\n - \ }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/50bdde58-bd8b-438a-b672-b56eae1328c2\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestuyd53r6hx-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestuyd53r6hx-8ecadf-ycqq1dwz.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestuyd53r6hx-8ecadf-ycqq1dwz.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2fipscontainerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": true\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDpX1rdEYwy8z3kRUtRfwnjcaa5sVBDlUyteEiAVG60B6vO74sUT/s0cmvOGRY56u17SQxCQdf7Y8rapBYnkCybdcP8Vh6SoQszHc2N5LbcfHLoeA9wrFvW74ZZHmld34yo1OeU3xKZVlGB+xP54En93j1zYZa7WFQz20r/R4JR2koF6h1W4jxneKXzRTs/KoZyBAHhM1YuqQiEohJHxccmFlAm1pvzwaEtBMeGQdu3wjSL9CGOGsBTcnSo06LkZ1EXdd9zgSO5Vma/qBA4ZcP7rG6ght3ajBs5b7TqabuISOeWiu9y8GxY+lxiolSmE/MyKAaoJJ8nxHrbjom+gLtsGhW79FqoqySDkN+qK1h/L5YEIjgfx0L4bJkeKGXWNXmGGJE1tEkV0ob9EBpJAMEza46N+LImo/q465+vUG2nOS/cgFkMG4yclVe6f7kyOWWbijFMTcInThhtMoJUBfikOTguGlAIIjMphhaWyAXIjmbpiyDppctW0OrF4ljGx9E=\ + \ henrychen@microsoft.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.Network/publicIPAddresses/f9a707d0-f1ab-4bd0-80ac-282d9566e5c4\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3890' + - '4081' content-type: - application/json date: - - Wed, 15 Mar 2023 10:41:24 GMT + - Thu, 15 Jun 2023 14:47:43 GMT expires: - '-1' pragma: @@ -673,34 +726,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2fipscontainerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": true\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2fipscontainerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": true\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '1039' + - '1040' content-type: - application/json date: - - Wed, 15 Mar 2023 10:41:24 GMT + - Thu, 15 Jun 2023 14:47:44 GMT expires: - '-1' pragma: @@ -741,35 +794,36 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/np2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/np2\",\n - \ \"name\": \"np2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2fipscontainerd-2023.02.15\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": true\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/np2\"\ + ,\n \"name\": \"np2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-1804gen2fipscontainerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": true\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/664a22e5-eb42-41a5-9f96-c5c2d643cd1c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/f6f4d389-a1dc-4a87-8c05-bb44b5522987?api-version=2017-08-31 cache-control: - no-cache content-length: - - '971' + - '972' content-type: - application/json date: - - Wed, 15 Mar 2023 10:41:28 GMT + - Thu, 15 Jun 2023 14:47:49 GMT expires: - '-1' pragma: @@ -781,7 +835,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -799,23 +853,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/664a22e5-eb42-41a5-9f96-c5c2d643cd1c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/f6f4d389-a1dc-4a87-8c05-bb44b5522987?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"e5224a66-42eb-a541-9f96-c5c2d643cd1c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:28.8923751Z\"\n }" + string: "{\n \"name\": \"89d3f4f6-dca1-874a-8c05-bb44b5522987\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:47:50.135231Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 10:41:59 GMT + - Thu, 15 Jun 2023 14:47:49 GMT expires: - '-1' pragma: @@ -847,23 +901,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/664a22e5-eb42-41a5-9f96-c5c2d643cd1c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/f6f4d389-a1dc-4a87-8c05-bb44b5522987?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"e5224a66-42eb-a541-9f96-c5c2d643cd1c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:28.8923751Z\"\n }" + string: "{\n \"name\": \"89d3f4f6-dca1-874a-8c05-bb44b5522987\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:47:50.135231Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 10:42:28 GMT + - Thu, 15 Jun 2023 14:48:19 GMT expires: - '-1' pragma: @@ -895,23 +949,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/664a22e5-eb42-41a5-9f96-c5c2d643cd1c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/f6f4d389-a1dc-4a87-8c05-bb44b5522987?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"e5224a66-42eb-a541-9f96-c5c2d643cd1c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:28.8923751Z\"\n }" + string: "{\n \"name\": \"89d3f4f6-dca1-874a-8c05-bb44b5522987\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:47:50.135231Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 10:42:59 GMT + - Thu, 15 Jun 2023 14:48:50 GMT expires: - '-1' pragma: @@ -943,23 +997,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/664a22e5-eb42-41a5-9f96-c5c2d643cd1c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/f6f4d389-a1dc-4a87-8c05-bb44b5522987?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"e5224a66-42eb-a541-9f96-c5c2d643cd1c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:28.8923751Z\"\n }" + string: "{\n \"name\": \"89d3f4f6-dca1-874a-8c05-bb44b5522987\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:47:50.135231Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 10:43:28 GMT + - Thu, 15 Jun 2023 14:49:20 GMT expires: - '-1' pragma: @@ -991,15 +1045,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/664a22e5-eb42-41a5-9f96-c5c2d643cd1c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/f6f4d389-a1dc-4a87-8c05-bb44b5522987?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"e5224a66-42eb-a541-9f96-c5c2d643cd1c\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:41:28.8923751Z\",\n \"endTime\": - \"2023-03-15T10:43:30.660567Z\"\n }" + string: "{\n \"name\": \"89d3f4f6-dca1-874a-8c05-bb44b5522987\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T14:47:50.135231Z\",\n \"\ + endTime\": \"2023-06-15T14:49:26.2783561Z\"\n }" headers: cache-control: - no-cache @@ -1008,7 +1062,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:43:58 GMT + - Thu, 15 Jun 2023 14:49:50 GMT expires: - '-1' pragma: @@ -1040,33 +1094,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --enable-fips-image User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/np2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/np2\",\n - \ \"name\": \"np2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2fipscontainerd-2023.02.15\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": true\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/np2\"\ + ,\n \"name\": \"np2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-1804gen2fipscontainerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": true\n }\n }" headers: cache-control: - no-cache content-length: - - '972' + - '973' content-type: - application/json date: - - Wed, 15 Mar 2023 10:43:58 GMT + - Thu, 15 Jun 2023 14:49:50 GMT expires: - '-1' pragma: @@ -1100,8 +1155,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -1109,17 +1164,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/88f74b67-29df-4945-a756-1d2158d84d96?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/c90fa146-d9f5-4f7a-8095-e774ab3e3a4c?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:44:00 GMT + - Thu, 15 Jun 2023 14:49:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/88f74b67-29df-4945-a756-1d2158d84d96?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/c90fa146-d9f5-4f7a-8095-e774ab3e3a4c?api-version=2017-08-31 pragma: - no-cache server: @@ -1129,7 +1184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14994' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_image_cleaner_enabled_with_default_interval_hours.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_image_cleaner_enabled_with_default_interval_hours.yaml index 68423a3f829..763ff714b0d 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_image_cleaner_enabled_with_default_interval_hours.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_image_cleaner_enabled_with_default_interval_hours.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 28 Mar 2023 09:19:42 GMT + - Thu, 15 Jun 2023 14:49:55 GMT expires: - '-1' pragma: @@ -47,20 +47,19 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestpjg76xyop-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestwrp6qxoep-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_D4s_v3", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCaFda/2VPKhr6ttdQKHEWxlOuN62Ffyl7UF461XFdh2FAnRbE/lDaCXtNsRQFlYoYkc1TAMmmoBBdwnLL8GyL7y/wza45x75x9Sl/1YsEFfQFiS/SyZzzPPLXVvYdHQNhO7tsIokl7Ozjs8dY44Qwu02Vo9dZKfroaItc57zUi4s6i5gtxGw+FoDiPx0c8Fkwn+a/yJ4fdYNUDg2qHMSwYxnwWbsy8TXgna+7Ld6MazcNmIxAkZ4GmfrMdbJdKx9JDoqU1NdetxV6SvxbFkb9UZrUZd9GvvmrQC08soMPjMZr+TJ3rDaqLfdEoOdMZmrcFYWeOBVQX4aPNboPnOffh - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "securityProfile": {"imageCleaner": {"enabled": true, "intervalHours": - 168}}, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "securityProfile": {"imageCleaner": + {"enabled": true, "intervalHours": 168}}, "storageProfile": {}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/EnableImageCleanerPreview @@ -73,69 +72,71 @@ interactions: Connection: - keep-alive Content-Length: - - '1537' + - '1829' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestpjg76xyop-79a739\",\n \"fqdn\": \"cliakstest-clitestpjg76xyop-79a739-7w63y67n.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestpjg76xyop-79a739-7w63y67n.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCaFda/2VPKhr6ttdQKHEWxlOuN62Ffyl7UF461XFdh2FAnRbE/lDaCXtNsRQFlYoYkc1TAMmmoBBdwnLL8GyL7y/wza45x75x9Sl/1YsEFfQFiS/SyZzzPPLXVvYdHQNhO7tsIokl7Ozjs8dY44Qwu02Vo9dZKfroaItc57zUi4s6i5gtxGw+FoDiPx0c8Fkwn+a/yJ4fdYNUDg2qHMSwYxnwWbsy8TXgna+7Ld6MazcNmIxAkZ4GmfrMdbJdKx9JDoqU1NdetxV6SvxbFkb9UZrUZd9GvvmrQC08soMPjMZr+TJ3rDaqLfdEoOdMZmrcFYWeOBVQX4aPNboPnOffh - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"imageCleaner\": {\n \"enabled\": true,\n \"intervalHours\": - 168\n }\n },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestwrp6qxoep-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestwrp6qxoep-8ecadf-mz961g0y.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestwrp6qxoep-8ecadf-mz961g0y.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"imageCleaner\": {\n \"enabled\"\ + : true,\n \"intervalHours\": 168\n }\n },\n \"storageProfile\"\ + : {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e104e8b1-aaea-44a0-bd45-79ba00bb9326?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d757de8b-b6c1-4a33-9fea-49b7eeaa5879?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3348' + - '3676' content-type: - application/json date: - - Tue, 28 Mar 2023 09:19:46 GMT + - Thu, 15 Jun 2023 14:50:02 GMT expires: - '-1' pragma: @@ -166,14 +167,14 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e104e8b1-aaea-44a0-bd45-79ba00bb9326?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d757de8b-b6c1-4a33-9fea-49b7eeaa5879?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1e804e1-eaaa-a044-bd45-79ba00bb9326\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.5779272Z\"\n }" + string: "{\n \"name\": \"8bde57d7-c1b6-334a-9fea-49b7eeaa5879\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:50:01.9192066Z\"\n }" headers: cache-control: - no-cache @@ -182,7 +183,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 09:20:16 GMT + - Thu, 15 Jun 2023 14:50:02 GMT expires: - '-1' pragma: @@ -215,14 +216,14 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e104e8b1-aaea-44a0-bd45-79ba00bb9326?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d757de8b-b6c1-4a33-9fea-49b7eeaa5879?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1e804e1-eaaa-a044-bd45-79ba00bb9326\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.5779272Z\"\n }" + string: "{\n \"name\": \"8bde57d7-c1b6-334a-9fea-49b7eeaa5879\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:50:01.9192066Z\"\n }" headers: cache-control: - no-cache @@ -231,7 +232,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 09:20:46 GMT + - Thu, 15 Jun 2023 14:50:32 GMT expires: - '-1' pragma: @@ -264,14 +265,14 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e104e8b1-aaea-44a0-bd45-79ba00bb9326?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d757de8b-b6c1-4a33-9fea-49b7eeaa5879?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1e804e1-eaaa-a044-bd45-79ba00bb9326\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.5779272Z\"\n }" + string: "{\n \"name\": \"8bde57d7-c1b6-334a-9fea-49b7eeaa5879\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:50:01.9192066Z\"\n }" headers: cache-control: - no-cache @@ -280,7 +281,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 09:21:16 GMT + - Thu, 15 Jun 2023 14:51:02 GMT expires: - '-1' pragma: @@ -313,14 +314,14 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e104e8b1-aaea-44a0-bd45-79ba00bb9326?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d757de8b-b6c1-4a33-9fea-49b7eeaa5879?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1e804e1-eaaa-a044-bd45-79ba00bb9326\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.5779272Z\"\n }" + string: "{\n \"name\": \"8bde57d7-c1b6-334a-9fea-49b7eeaa5879\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:50:01.9192066Z\"\n }" headers: cache-control: - no-cache @@ -329,7 +330,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 09:21:46 GMT + - Thu, 15 Jun 2023 14:51:32 GMT expires: - '-1' pragma: @@ -362,14 +363,14 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e104e8b1-aaea-44a0-bd45-79ba00bb9326?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d757de8b-b6c1-4a33-9fea-49b7eeaa5879?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1e804e1-eaaa-a044-bd45-79ba00bb9326\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.5779272Z\"\n }" + string: "{\n \"name\": \"8bde57d7-c1b6-334a-9fea-49b7eeaa5879\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:50:01.9192066Z\"\n }" headers: cache-control: - no-cache @@ -378,7 +379,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 09:22:17 GMT + - Thu, 15 Jun 2023 14:52:02 GMT expires: - '-1' pragma: @@ -411,14 +412,14 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e104e8b1-aaea-44a0-bd45-79ba00bb9326?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d757de8b-b6c1-4a33-9fea-49b7eeaa5879?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1e804e1-eaaa-a044-bd45-79ba00bb9326\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.5779272Z\"\n }" + string: "{\n \"name\": \"8bde57d7-c1b6-334a-9fea-49b7eeaa5879\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:50:01.9192066Z\"\n }" headers: cache-control: - no-cache @@ -427,7 +428,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 09:22:46 GMT + - Thu, 15 Jun 2023 14:52:32 GMT expires: - '-1' pragma: @@ -460,14 +461,14 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e104e8b1-aaea-44a0-bd45-79ba00bb9326?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d757de8b-b6c1-4a33-9fea-49b7eeaa5879?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1e804e1-eaaa-a044-bd45-79ba00bb9326\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.5779272Z\"\n }" + string: "{\n \"name\": \"8bde57d7-c1b6-334a-9fea-49b7eeaa5879\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:50:01.9192066Z\"\n }" headers: cache-control: - no-cache @@ -476,7 +477,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 09:23:17 GMT + - Thu, 15 Jun 2023 14:53:03 GMT expires: - '-1' pragma: @@ -509,14 +510,14 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e104e8b1-aaea-44a0-bd45-79ba00bb9326?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d757de8b-b6c1-4a33-9fea-49b7eeaa5879?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1e804e1-eaaa-a044-bd45-79ba00bb9326\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.5779272Z\"\n }" + string: "{\n \"name\": \"8bde57d7-c1b6-334a-9fea-49b7eeaa5879\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:50:01.9192066Z\"\n }" headers: cache-control: - no-cache @@ -525,7 +526,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 09:23:46 GMT + - Thu, 15 Jun 2023 14:53:33 GMT expires: - '-1' pragma: @@ -558,367 +559,24 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e104e8b1-aaea-44a0-bd45-79ba00bb9326?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d757de8b-b6c1-4a33-9fea-49b7eeaa5879?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b1e804e1-eaaa-a044-bd45-79ba00bb9326\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.5779272Z\"\n }" + string: "{\n \"name\": \"8bde57d7-c1b6-334a-9fea-49b7eeaa5879\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T14:50:01.9192066Z\",\n \"\ + endTime\": \"2023-06-15T14:53:48.477372Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:24:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e104e8b1-aaea-44a0-bd45-79ba00bb9326?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"b1e804e1-eaaa-a044-bd45-79ba00bb9326\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.5779272Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:24:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e104e8b1-aaea-44a0-bd45-79ba00bb9326?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"b1e804e1-eaaa-a044-bd45-79ba00bb9326\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.5779272Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:25:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e104e8b1-aaea-44a0-bd45-79ba00bb9326?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"b1e804e1-eaaa-a044-bd45-79ba00bb9326\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.5779272Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:25:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e104e8b1-aaea-44a0-bd45-79ba00bb9326?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"b1e804e1-eaaa-a044-bd45-79ba00bb9326\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.5779272Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:26:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e104e8b1-aaea-44a0-bd45-79ba00bb9326?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"b1e804e1-eaaa-a044-bd45-79ba00bb9326\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.5779272Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:26:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e104e8b1-aaea-44a0-bd45-79ba00bb9326?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"b1e804e1-eaaa-a044-bd45-79ba00bb9326\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.5779272Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:27:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e104e8b1-aaea-44a0-bd45-79ba00bb9326?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"b1e804e1-eaaa-a044-bd45-79ba00bb9326\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-28T09:19:46.5779272Z\",\n \"endTime\": - \"2023-03-28T09:27:19.2884159Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '170' + - '169' content-type: - application/json date: - - Tue, 28 Mar 2023 09:27:47 GMT + - Thu, 15 Jun 2023 14:54:03 GMT expires: - '-1' pragma: @@ -951,65 +609,67 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestpjg76xyop-79a739\",\n \"fqdn\": \"cliakstest-clitestpjg76xyop-79a739-7w63y67n.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestpjg76xyop-79a739-7w63y67n.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCaFda/2VPKhr6ttdQKHEWxlOuN62Ffyl7UF461XFdh2FAnRbE/lDaCXtNsRQFlYoYkc1TAMmmoBBdwnLL8GyL7y/wza45x75x9Sl/1YsEFfQFiS/SyZzzPPLXVvYdHQNhO7tsIokl7Ozjs8dY44Qwu02Vo9dZKfroaItc57zUi4s6i5gtxGw+FoDiPx0c8Fkwn+a/yJ4fdYNUDg2qHMSwYxnwWbsy8TXgna+7Ld6MazcNmIxAkZ4GmfrMdbJdKx9JDoqU1NdetxV6SvxbFkb9UZrUZd9GvvmrQC08soMPjMZr+TJ3rDaqLfdEoOdMZmrcFYWeOBVQX4aPNboPnOffh - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cfc8a390-fe28-4d4a-8b77-05bcdef0c62c\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"imageCleaner\": {\n \"enabled\": true,\n \"intervalHours\": - 168\n }\n },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestwrp6qxoep-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestwrp6qxoep-8ecadf-mz961g0y.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestwrp6qxoep-8ecadf-mz961g0y.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/b0496ba8-ca50-4c5c-a096-8ad000db474a\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"imageCleaner\": {\n \"enabled\"\ + : true,\n \"intervalHours\": 168\n }\n },\n \"storageProfile\"\ + : {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4001' + - '4329' content-type: - application/json date: - - Tue, 28 Mar 2023 09:27:48 GMT + - Thu, 15 Jun 2023 14:54:04 GMT expires: - '-1' pragma: @@ -1028,4 +688,3 @@ interactions: code: 200 message: OK version: 1 - diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_image_cleaner_enabled_with_interval_hours.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_image_cleaner_enabled_with_interval_hours.yaml index 5f83a7d2dc8..e2858ec1310 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_image_cleaner_enabled_with_interval_hours.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_image_cleaner_enabled_with_interval_hours.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 28 Mar 2023 09:19:42 GMT + - Thu, 15 Jun 2023 14:54:10 GMT expires: - '-1' pragma: @@ -47,20 +47,19 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest7aamhiuk2-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesti4dj3efrm-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_D4s_v3", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCaFda/2VPKhr6ttdQKHEWxlOuN62Ffyl7UF461XFdh2FAnRbE/lDaCXtNsRQFlYoYkc1TAMmmoBBdwnLL8GyL7y/wza45x75x9Sl/1YsEFfQFiS/SyZzzPPLXVvYdHQNhO7tsIokl7Ozjs8dY44Qwu02Vo9dZKfroaItc57zUi4s6i5gtxGw+FoDiPx0c8Fkwn+a/yJ4fdYNUDg2qHMSwYxnwWbsy8TXgna+7Ld6MazcNmIxAkZ4GmfrMdbJdKx9JDoqU1NdetxV6SvxbFkb9UZrUZd9GvvmrQC08soMPjMZr+TJ3rDaqLfdEoOdMZmrcFYWeOBVQX4aPNboPnOffh - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "securityProfile": {"imageCleaner": {"enabled": true, "intervalHours": - 24}}, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "securityProfile": {"imageCleaner": + {"enabled": true, "intervalHours": 24}}, "storageProfile": {}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/EnableImageCleanerPreview @@ -73,69 +72,71 @@ interactions: Connection: - keep-alive Content-Length: - - '1536' + - '1828' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest7aamhiuk2-79a739\",\n \"fqdn\": \"cliakstest-clitest7aamhiuk2-79a739-sxgktn3x.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest7aamhiuk2-79a739-sxgktn3x.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCaFda/2VPKhr6ttdQKHEWxlOuN62Ffyl7UF461XFdh2FAnRbE/lDaCXtNsRQFlYoYkc1TAMmmoBBdwnLL8GyL7y/wza45x75x9Sl/1YsEFfQFiS/SyZzzPPLXVvYdHQNhO7tsIokl7Ozjs8dY44Qwu02Vo9dZKfroaItc57zUi4s6i5gtxGw+FoDiPx0c8Fkwn+a/yJ4fdYNUDg2qHMSwYxnwWbsy8TXgna+7Ld6MazcNmIxAkZ4GmfrMdbJdKx9JDoqU1NdetxV6SvxbFkb9UZrUZd9GvvmrQC08soMPjMZr+TJ3rDaqLfdEoOdMZmrcFYWeOBVQX4aPNboPnOffh - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"imageCleaner\": {\n \"enabled\": true,\n \"intervalHours\": - 24\n }\n },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitesti4dj3efrm-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesti4dj3efrm-8ecadf-wmatts0y.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesti4dj3efrm-8ecadf-wmatts0y.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"imageCleaner\": {\n \"enabled\"\ + : true,\n \"intervalHours\": 24\n }\n },\n \"storageProfile\":\ + \ {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/13a05d18-4541-40b2-8924-a78a37f01617?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e1ffe3e-3ddf-496e-928d-f2801490509c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3347' + - '3675' content-type: - application/json date: - - Tue, 28 Mar 2023 09:19:46 GMT + - Thu, 15 Jun 2023 14:54:16 GMT expires: - '-1' pragma: @@ -166,14 +167,14 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/13a05d18-4541-40b2-8924-a78a37f01617?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e1ffe3e-3ddf-496e-928d-f2801490509c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"185da013-4145-b240-8924-a78a37f01617\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.8435532Z\"\n }" + string: "{\n \"name\": \"3efe1f3e-df3d-6e49-928d-f2801490509c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:54:16.6385146Z\"\n }" headers: cache-control: - no-cache @@ -182,7 +183,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 09:20:16 GMT + - Thu, 15 Jun 2023 14:54:17 GMT expires: - '-1' pragma: @@ -215,14 +216,14 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/13a05d18-4541-40b2-8924-a78a37f01617?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e1ffe3e-3ddf-496e-928d-f2801490509c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"185da013-4145-b240-8924-a78a37f01617\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.8435532Z\"\n }" + string: "{\n \"name\": \"3efe1f3e-df3d-6e49-928d-f2801490509c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:54:16.6385146Z\"\n }" headers: cache-control: - no-cache @@ -231,7 +232,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 09:20:46 GMT + - Thu, 15 Jun 2023 14:54:47 GMT expires: - '-1' pragma: @@ -264,14 +265,14 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/13a05d18-4541-40b2-8924-a78a37f01617?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e1ffe3e-3ddf-496e-928d-f2801490509c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"185da013-4145-b240-8924-a78a37f01617\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.8435532Z\"\n }" + string: "{\n \"name\": \"3efe1f3e-df3d-6e49-928d-f2801490509c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:54:16.6385146Z\"\n }" headers: cache-control: - no-cache @@ -280,7 +281,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 09:21:17 GMT + - Thu, 15 Jun 2023 14:55:17 GMT expires: - '-1' pragma: @@ -313,14 +314,14 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/13a05d18-4541-40b2-8924-a78a37f01617?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e1ffe3e-3ddf-496e-928d-f2801490509c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"185da013-4145-b240-8924-a78a37f01617\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.8435532Z\"\n }" + string: "{\n \"name\": \"3efe1f3e-df3d-6e49-928d-f2801490509c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:54:16.6385146Z\"\n }" headers: cache-control: - no-cache @@ -329,7 +330,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 09:21:46 GMT + - Thu, 15 Jun 2023 14:55:47 GMT expires: - '-1' pragma: @@ -362,14 +363,14 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/13a05d18-4541-40b2-8924-a78a37f01617?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e1ffe3e-3ddf-496e-928d-f2801490509c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"185da013-4145-b240-8924-a78a37f01617\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.8435532Z\"\n }" + string: "{\n \"name\": \"3efe1f3e-df3d-6e49-928d-f2801490509c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:54:16.6385146Z\"\n }" headers: cache-control: - no-cache @@ -378,7 +379,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 09:22:16 GMT + - Thu, 15 Jun 2023 14:56:18 GMT expires: - '-1' pragma: @@ -411,14 +412,14 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/13a05d18-4541-40b2-8924-a78a37f01617?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e1ffe3e-3ddf-496e-928d-f2801490509c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"185da013-4145-b240-8924-a78a37f01617\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.8435532Z\"\n }" + string: "{\n \"name\": \"3efe1f3e-df3d-6e49-928d-f2801490509c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:54:16.6385146Z\"\n }" headers: cache-control: - no-cache @@ -427,7 +428,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 09:22:47 GMT + - Thu, 15 Jun 2023 14:56:48 GMT expires: - '-1' pragma: @@ -460,14 +461,14 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/13a05d18-4541-40b2-8924-a78a37f01617?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e1ffe3e-3ddf-496e-928d-f2801490509c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"185da013-4145-b240-8924-a78a37f01617\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.8435532Z\"\n }" + string: "{\n \"name\": \"3efe1f3e-df3d-6e49-928d-f2801490509c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T14:54:16.6385146Z\"\n }" headers: cache-control: - no-cache @@ -476,7 +477,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 09:23:16 GMT + - Thu, 15 Jun 2023 14:57:17 GMT expires: - '-1' pragma: @@ -509,456 +510,15 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/13a05d18-4541-40b2-8924-a78a37f01617?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3e1ffe3e-3ddf-496e-928d-f2801490509c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"185da013-4145-b240-8924-a78a37f01617\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.8435532Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:23:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/13a05d18-4541-40b2-8924-a78a37f01617?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"185da013-4145-b240-8924-a78a37f01617\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.8435532Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:24:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/13a05d18-4541-40b2-8924-a78a37f01617?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"185da013-4145-b240-8924-a78a37f01617\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.8435532Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:24:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/13a05d18-4541-40b2-8924-a78a37f01617?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"185da013-4145-b240-8924-a78a37f01617\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.8435532Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:25:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/13a05d18-4541-40b2-8924-a78a37f01617?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"185da013-4145-b240-8924-a78a37f01617\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.8435532Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:25:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/13a05d18-4541-40b2-8924-a78a37f01617?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"185da013-4145-b240-8924-a78a37f01617\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.8435532Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:26:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/13a05d18-4541-40b2-8924-a78a37f01617?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"185da013-4145-b240-8924-a78a37f01617\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.8435532Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:26:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/13a05d18-4541-40b2-8924-a78a37f01617?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"185da013-4145-b240-8924-a78a37f01617\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.8435532Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:27:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/13a05d18-4541-40b2-8924-a78a37f01617?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"185da013-4145-b240-8924-a78a37f01617\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:46.8435532Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:27:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/13a05d18-4541-40b2-8924-a78a37f01617?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"185da013-4145-b240-8924-a78a37f01617\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-28T09:19:46.8435532Z\",\n \"endTime\": - \"2023-03-28T09:28:16.8368374Z\"\n }" + string: "{\n \"name\": \"3efe1f3e-df3d-6e49-928d-f2801490509c\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T14:54:16.6385146Z\",\n \"\ + endTime\": \"2023-06-15T14:57:40.5373619Z\"\n }" headers: cache-control: - no-cache @@ -967,7 +527,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 09:28:22 GMT + - Thu, 15 Jun 2023 14:57:47 GMT expires: - '-1' pragma: @@ -1000,65 +560,67 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --image-cleaner-interval-hours --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest7aamhiuk2-79a739\",\n \"fqdn\": \"cliakstest-clitest7aamhiuk2-79a739-sxgktn3x.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest7aamhiuk2-79a739-sxgktn3x.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCaFda/2VPKhr6ttdQKHEWxlOuN62Ffyl7UF461XFdh2FAnRbE/lDaCXtNsRQFlYoYkc1TAMmmoBBdwnLL8GyL7y/wza45x75x9Sl/1YsEFfQFiS/SyZzzPPLXVvYdHQNhO7tsIokl7Ozjs8dY44Qwu02Vo9dZKfroaItc57zUi4s6i5gtxGw+FoDiPx0c8Fkwn+a/yJ4fdYNUDg2qHMSwYxnwWbsy8TXgna+7Ld6MazcNmIxAkZ4GmfrMdbJdKx9JDoqU1NdetxV6SvxbFkb9UZrUZd9GvvmrQC08soMPjMZr+TJ3rDaqLfdEoOdMZmrcFYWeOBVQX4aPNboPnOffh - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/b4dd3619-5942-4ac5-a06d-b1b2a6918613\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"imageCleaner\": {\n \"enabled\": true,\n \"intervalHours\": - 24\n }\n },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitesti4dj3efrm-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesti4dj3efrm-8ecadf-wmatts0y.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesti4dj3efrm-8ecadf-wmatts0y.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6c6980bd-187c-4435-b706-529b3cd6923e\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"imageCleaner\": {\n \"enabled\"\ + : true,\n \"intervalHours\": 24\n }\n },\n \"storageProfile\":\ + \ {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4000' + - '4328' content-type: - application/json date: - - Tue, 28 Mar 2023 09:28:22 GMT + - Thu, 15 Jun 2023 14:57:48 GMT expires: - '-1' pragma: @@ -1077,4 +639,3 @@ interactions: code: 200 message: OK version: 1 - diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon.yaml index dc0cb6f7a77..987ce91ab9b 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ingress_appgw_addon.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:44:01 GMT + - Thu, 15 Jun 2023 22:51:13 GMT expires: - '-1' pragma: @@ -60,21 +60,21 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:44:01Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_with_ingress_appgw_addon","date":"2023-06-15T22:51:10Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '373' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:44:01 GMT + - Thu, 15 Jun 2023 22:51:14 GMT expires: - '-1' pragma: @@ -89,21 +89,20 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestmy74sc2ku-79a739", + body: '{"location": "westeurope", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestpbstckffg-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ingressApplicationGateway": - {"enabled": true, "config": {"subnetCIDR": "10.232.0.0/16"}}}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, - "disableLocalAccounts": false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"ingressApplicationGateway": {"enabled": + true, "config": {"subnetCIDR": "10.232.0.0/16"}}}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -114,71 +113,73 @@ interactions: Connection: - keep-alive Content-Length: - - '1548' + - '1843' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestmy74sc2ku-79a739\",\n \"fqdn\": \"cliakstest-clitestmy74sc2ku-79a739-hf3litzn.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestmy74sc2ku-79a739-hf3litzn.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"ingressApplicationGateway\": {\n \"enabled\": true,\n \"config\": - {\n \"effectiveApplicationGatewayId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/applicationGateways/applicationgateway\",\n - \ \"subnetCIDR\": \"10.232.0.0/16\"\n }\n }\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westeurope\",\n \"name\": \"cliakstest000002\",\n \"\ + type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestpbstckffg-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestpbstckffg-8ecadf-6o2bnpcm.hcp.westeurope.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestpbstckffg-8ecadf-6o2bnpcm.portal.hcp.westeurope.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"ingressApplicationGateway\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"effectiveApplicationGatewayId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.Network/applicationGateways/applicationgateway\"\ + ,\n \"subnetCIDR\": \"10.232.0.0/16\"\n }\n }\n },\n \"nodeResourceGroup\"\ + : \"MC_clitest000001_cliakstest000002_westeurope\",\n \"enableRBAC\": true,\n\ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5fdebabc-7ea1-44fd-bf80-844b54a9fb25?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/ee9abc7e-e27a-401d-831e-9de2c6e3422c?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3637' + - '3980' content-type: - application/json date: - - Wed, 15 Mar 2023 10:44:05 GMT + - Thu, 15 Jun 2023 22:51:23 GMT expires: - '-1' pragma: @@ -190,7 +191,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -209,14 +210,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5fdebabc-7ea1-44fd-bf80-844b54a9fb25?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/ee9abc7e-e27a-401d-831e-9de2c6e3422c?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"bcbade5f-a17e-fd44-bf80-844b54a9fb25\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:44:05.4555657Z\"\n }" + string: "{\n \"name\": \"7ebc9aee-7ae2-1d40-831e-9de2c6e3422c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:51:22.2969279Z\"\n }" headers: cache-control: - no-cache @@ -225,7 +226,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:44:34 GMT + - Thu, 15 Jun 2023 22:51:23 GMT expires: - '-1' pragma: @@ -258,14 +259,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5fdebabc-7ea1-44fd-bf80-844b54a9fb25?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/ee9abc7e-e27a-401d-831e-9de2c6e3422c?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"bcbade5f-a17e-fd44-bf80-844b54a9fb25\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:44:05.4555657Z\"\n }" + string: "{\n \"name\": \"7ebc9aee-7ae2-1d40-831e-9de2c6e3422c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:51:22.2969279Z\"\n }" headers: cache-control: - no-cache @@ -274,7 +275,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:45:05 GMT + - Thu, 15 Jun 2023 22:51:53 GMT expires: - '-1' pragma: @@ -307,14 +308,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5fdebabc-7ea1-44fd-bf80-844b54a9fb25?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/ee9abc7e-e27a-401d-831e-9de2c6e3422c?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"bcbade5f-a17e-fd44-bf80-844b54a9fb25\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:44:05.4555657Z\"\n }" + string: "{\n \"name\": \"7ebc9aee-7ae2-1d40-831e-9de2c6e3422c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:51:22.2969279Z\"\n }" headers: cache-control: - no-cache @@ -323,7 +324,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:45:35 GMT + - Thu, 15 Jun 2023 22:52:23 GMT expires: - '-1' pragma: @@ -356,14 +357,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5fdebabc-7ea1-44fd-bf80-844b54a9fb25?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/ee9abc7e-e27a-401d-831e-9de2c6e3422c?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"bcbade5f-a17e-fd44-bf80-844b54a9fb25\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:44:05.4555657Z\"\n }" + string: "{\n \"name\": \"7ebc9aee-7ae2-1d40-831e-9de2c6e3422c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:51:22.2969279Z\"\n }" headers: cache-control: - no-cache @@ -372,7 +373,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:46:05 GMT + - Thu, 15 Jun 2023 22:52:53 GMT expires: - '-1' pragma: @@ -405,14 +406,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5fdebabc-7ea1-44fd-bf80-844b54a9fb25?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/ee9abc7e-e27a-401d-831e-9de2c6e3422c?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"bcbade5f-a17e-fd44-bf80-844b54a9fb25\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:44:05.4555657Z\"\n }" + string: "{\n \"name\": \"7ebc9aee-7ae2-1d40-831e-9de2c6e3422c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:51:22.2969279Z\"\n }" headers: cache-control: - no-cache @@ -421,7 +422,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:46:35 GMT + - Thu, 15 Jun 2023 22:53:23 GMT expires: - '-1' pragma: @@ -454,14 +455,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5fdebabc-7ea1-44fd-bf80-844b54a9fb25?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/ee9abc7e-e27a-401d-831e-9de2c6e3422c?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"bcbade5f-a17e-fd44-bf80-844b54a9fb25\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:44:05.4555657Z\"\n }" + string: "{\n \"name\": \"7ebc9aee-7ae2-1d40-831e-9de2c6e3422c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:51:22.2969279Z\"\n }" headers: cache-control: - no-cache @@ -470,7 +471,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:47:05 GMT + - Thu, 15 Jun 2023 22:53:53 GMT expires: - '-1' pragma: @@ -503,14 +504,14 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5fdebabc-7ea1-44fd-bf80-844b54a9fb25?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/ee9abc7e-e27a-401d-831e-9de2c6e3422c?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"bcbade5f-a17e-fd44-bf80-844b54a9fb25\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:44:05.4555657Z\"\n }" + string: "{\n \"name\": \"7ebc9aee-7ae2-1d40-831e-9de2c6e3422c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T22:51:22.2969279Z\"\n }" headers: cache-control: - no-cache @@ -519,7 +520,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:47:35 GMT + - Thu, 15 Jun 2023 22:54:24 GMT expires: - '-1' pragma: @@ -552,73 +553,24 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5fdebabc-7ea1-44fd-bf80-844b54a9fb25?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/ee9abc7e-e27a-401d-831e-9de2c6e3422c?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"bcbade5f-a17e-fd44-bf80-844b54a9fb25\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:44:05.4555657Z\"\n }" + string: "{\n \"name\": \"7ebc9aee-7ae2-1d40-831e-9de2c6e3422c\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T22:51:22.2969279Z\",\n \"\ + endTime\": \"2023-06-15T22:54:43.999132Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:48:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value - -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5fdebabc-7ea1-44fd-bf80-844b54a9fb25?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"bcbade5f-a17e-fd44-bf80-844b54a9fb25\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:44:05.4555657Z\",\n \"endTime\": - \"2023-03-15T10:48:13.5006661Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '170' + - '169' content-type: - application/json date: - - Wed, 15 Mar 2023 10:48:35 GMT + - Thu, 15 Jun 2023 22:54:54 GMT expires: - '-1' pragma: @@ -651,69 +603,72 @@ interactions: - --resource-group --name --enable-managed-identity -a --appgw-subnet-cidr --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestmy74sc2ku-79a739\",\n \"fqdn\": \"cliakstest-clitestmy74sc2ku-79a739-hf3litzn.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestmy74sc2ku-79a739-hf3litzn.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"ingressApplicationGateway\": {\n \"enabled\": true,\n \"config\": - {\n \"effectiveApplicationGatewayId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/applicationGateways/applicationgateway\",\n - \ \"subnetCIDR\": \"10.232.0.0/16\"\n },\n \"identity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ingressapplicationgateway-cliakstest000002\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/9e5c4e92-4423-45c7-a69c-0103188170f2\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westeurope\",\n \"name\": \"cliakstest000002\",\n \"\ + type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestpbstckffg-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestpbstckffg-8ecadf-6o2bnpcm.hcp.westeurope.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestpbstckffg-8ecadf-6o2bnpcm.portal.hcp.westeurope.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"ingressApplicationGateway\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"effectiveApplicationGatewayId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.Network/applicationGateways/applicationgateway\"\ + ,\n \"subnetCIDR\": \"10.232.0.0/16\"\n },\n \"identity\": {\n\ + \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ingressapplicationgateway-cliakstest000002\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westeurope\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.Network/publicIPAddresses/61c712c6-ea21-44e3-abfd-406ff396573a\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westeurope/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4664' + - '5016' content-type: - application/json date: - - Wed, 15 Mar 2023 10:48:36 GMT + - Thu, 15 Jun 2023 22:54:55 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_managed_disk.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_managed_disk.yaml index d4f9ad94c77..cb5530f9f6c 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_managed_disk.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_managed_disk.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:37:13 GMT + - Thu, 15 Jun 2023 15:53:16 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:37:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_with_managed_disk","date":"2023-06-15T15:53:14Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '363' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:37:12 GMT + - Thu, 15 Jun 2023 15:53:16 GMT expires: - '-1' pragma: @@ -88,7 +88,7 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest4rtjovldr-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestbx7sxovmd-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osDiskType": "Managed", "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": @@ -96,12 +96,11 @@ interactions: "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -112,67 +111,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1484' + - '1776' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest4rtjovldr-79a739\",\n \"fqdn\": \"cliakstest-clitest4rtjovldr-79a739-po5bt95c.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest4rtjovldr-79a739-po5bt95c.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestbx7sxovmd-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestbx7sxovmd-8ecadf-bcd55bmn.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestbx7sxovmd-8ecadf-bcd55bmn.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4866c3d3-2ee9-46de-b9d9-ad80163e353a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93dde4f7-f48e-4b07-93a6-2d55525d482b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3268' + - '3596' content-type: - application/json date: - - Wed, 15 Mar 2023 10:37:16 GMT + - Thu, 15 Jun 2023 15:53:23 GMT expires: - '-1' pragma: @@ -184,7 +185,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -202,23 +203,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4866c3d3-2ee9-46de-b9d9-ad80163e353a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93dde4f7-f48e-4b07-93a6-2d55525d482b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d3c36648-e92e-de46-b9d9-ad80163e353a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:37:17.1252592Z\"\n }" + string: "{\n \"name\": \"f7e4dd93-8ef4-074b-93a6-2d55525d482b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T15:53:23.412865Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 10:37:46 GMT + - Thu, 15 Jun 2023 15:53:23 GMT expires: - '-1' pragma: @@ -250,23 +251,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4866c3d3-2ee9-46de-b9d9-ad80163e353a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93dde4f7-f48e-4b07-93a6-2d55525d482b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d3c36648-e92e-de46-b9d9-ad80163e353a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:37:17.1252592Z\"\n }" + string: "{\n \"name\": \"f7e4dd93-8ef4-074b-93a6-2d55525d482b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T15:53:23.412865Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 10:38:16 GMT + - Thu, 15 Jun 2023 15:53:53 GMT expires: - '-1' pragma: @@ -298,23 +299,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4866c3d3-2ee9-46de-b9d9-ad80163e353a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93dde4f7-f48e-4b07-93a6-2d55525d482b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d3c36648-e92e-de46-b9d9-ad80163e353a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:37:17.1252592Z\"\n }" + string: "{\n \"name\": \"f7e4dd93-8ef4-074b-93a6-2d55525d482b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T15:53:23.412865Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 10:38:47 GMT + - Thu, 15 Jun 2023 15:54:24 GMT expires: - '-1' pragma: @@ -346,23 +347,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4866c3d3-2ee9-46de-b9d9-ad80163e353a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93dde4f7-f48e-4b07-93a6-2d55525d482b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d3c36648-e92e-de46-b9d9-ad80163e353a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:37:17.1252592Z\"\n }" + string: "{\n \"name\": \"f7e4dd93-8ef4-074b-93a6-2d55525d482b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T15:53:23.412865Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 10:39:17 GMT + - Thu, 15 Jun 2023 15:54:54 GMT expires: - '-1' pragma: @@ -394,23 +395,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4866c3d3-2ee9-46de-b9d9-ad80163e353a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93dde4f7-f48e-4b07-93a6-2d55525d482b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d3c36648-e92e-de46-b9d9-ad80163e353a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:37:17.1252592Z\"\n }" + string: "{\n \"name\": \"f7e4dd93-8ef4-074b-93a6-2d55525d482b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T15:53:23.412865Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 10:39:46 GMT + - Thu, 15 Jun 2023 15:55:24 GMT expires: - '-1' pragma: @@ -442,23 +443,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4866c3d3-2ee9-46de-b9d9-ad80163e353a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93dde4f7-f48e-4b07-93a6-2d55525d482b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d3c36648-e92e-de46-b9d9-ad80163e353a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:37:17.1252592Z\"\n }" + string: "{\n \"name\": \"f7e4dd93-8ef4-074b-93a6-2d55525d482b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T15:53:23.412865Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 10:40:16 GMT + - Thu, 15 Jun 2023 15:55:54 GMT expires: - '-1' pragma: @@ -490,23 +491,23 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4866c3d3-2ee9-46de-b9d9-ad80163e353a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93dde4f7-f48e-4b07-93a6-2d55525d482b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d3c36648-e92e-de46-b9d9-ad80163e353a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:37:17.1252592Z\"\n }" + string: "{\n \"name\": \"f7e4dd93-8ef4-074b-93a6-2d55525d482b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T15:53:23.412865Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 10:40:47 GMT + - Thu, 15 Jun 2023 15:56:25 GMT expires: - '-1' pragma: @@ -538,24 +539,24 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4866c3d3-2ee9-46de-b9d9-ad80163e353a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93dde4f7-f48e-4b07-93a6-2d55525d482b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d3c36648-e92e-de46-b9d9-ad80163e353a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:37:17.1252592Z\",\n \"endTime\": - \"2023-03-15T10:41:05.4996736Z\"\n }" + string: "{\n \"name\": \"f7e4dd93-8ef4-074b-93a6-2d55525d482b\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T15:53:23.412865Z\",\n \"\ + endTime\": \"2023-06-15T15:56:28.9972773Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Wed, 15 Mar 2023 10:41:17 GMT + - Thu, 15 Jun 2023 15:56:54 GMT expires: - '-1' pragma: @@ -587,64 +588,66 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --node-osdisk-type --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest4rtjovldr-79a739\",\n \"fqdn\": \"cliakstest-clitest4rtjovldr-79a739-po5bt95c.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest4rtjovldr-79a739-po5bt95c.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/452059d4-cc5e-4e31-ba0a-cfa6c8051afa\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestbx7sxovmd-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestbx7sxovmd-8ecadf-bcd55bmn.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestbx7sxovmd-8ecadf-bcd55bmn.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/14553fe5-7abc-4708-974e-15155dbc1ca6\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4249' content-type: - application/json date: - - Wed, 15 Mar 2023 10:41:17 GMT + - Thu, 15 Jun 2023 15:56:55 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_network_dataplane_cilium.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_network_dataplane_cilium.yaml index 608985d88e5..5f1e4f9ef44 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_network_dataplane_cilium.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_network_dataplane_cilium.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --network-plugin --network-plugin-mode --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 27 Mar 2023 19:32:44 GMT + - Thu, 15 Jun 2023 15:56:59 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: message: Not Found - request: body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestxhon57n3k-feb5b1", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestylyznwqlq-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": @@ -78,64 +78,66 @@ interactions: - --resource-group --name --location --network-plugin --network-plugin-mode --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxhon57n3k-feb5b1\",\n \"fqdn\": \"cliakstest-clitestxhon57n3k-feb5b1-jzmuzyuz.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxhon57n3k-feb5b1-jzmuzyuz.portal.hcp.eastus.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 250,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"networkPluginMode\": \"overlay\",\n \"networkPolicy\": - \"cilium\",\n \"networkDataplane\": \"cilium\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestylyznwqlq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestylyznwqlq-8ecadf-mzlzum6g.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestylyznwqlq-8ecadf-mzlzum6g.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 250,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkPluginMode\"\ + : \"overlay\",\n \"networkPolicy\": \"cilium\",\n \"networkDataplane\"\ + : \"cilium\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n\ + \ \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\"\ + ,\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\"\ + ,\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n\ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/189f84f7-757a-4069-9005-9476a6ee1b94?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/5de661cc-f5b1-4046-acef-becce064337e?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3782' + - '3781' content-type: - application/json date: - - Mon, 27 Mar 2023 19:32:53 GMT + - Thu, 15 Jun 2023 15:57:04 GMT expires: - '-1' pragma: @@ -166,23 +168,23 @@ interactions: - --resource-group --name --location --network-plugin --network-plugin-mode --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/189f84f7-757a-4069-9005-9476a6ee1b94?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/5de661cc-f5b1-4046-acef-becce064337e?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f7849f18-7a75-6940-9005-9476a6ee1b94\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-27T19:32:52.092375Z\"\n }" + string: "{\n \"name\": \"cc61e65d-b1f5-4640-acef-becce064337e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T15:57:04.7386589Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Mon, 27 Mar 2023 19:33:23 GMT + - Thu, 15 Jun 2023 15:57:04 GMT expires: - '-1' pragma: @@ -215,23 +217,23 @@ interactions: - --resource-group --name --location --network-plugin --network-plugin-mode --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/189f84f7-757a-4069-9005-9476a6ee1b94?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/5de661cc-f5b1-4046-acef-becce064337e?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f7849f18-7a75-6940-9005-9476a6ee1b94\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-27T19:32:52.092375Z\"\n }" + string: "{\n \"name\": \"cc61e65d-b1f5-4640-acef-becce064337e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T15:57:04.7386589Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Mon, 27 Mar 2023 19:33:53 GMT + - Thu, 15 Jun 2023 15:57:35 GMT expires: - '-1' pragma: @@ -264,23 +266,23 @@ interactions: - --resource-group --name --location --network-plugin --network-plugin-mode --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/189f84f7-757a-4069-9005-9476a6ee1b94?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/5de661cc-f5b1-4046-acef-becce064337e?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f7849f18-7a75-6940-9005-9476a6ee1b94\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-27T19:32:52.092375Z\"\n }" + string: "{\n \"name\": \"cc61e65d-b1f5-4640-acef-becce064337e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T15:57:04.7386589Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Mon, 27 Mar 2023 19:34:23 GMT + - Thu, 15 Jun 2023 15:58:06 GMT expires: - '-1' pragma: @@ -313,23 +315,23 @@ interactions: - --resource-group --name --location --network-plugin --network-plugin-mode --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/189f84f7-757a-4069-9005-9476a6ee1b94?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/5de661cc-f5b1-4046-acef-becce064337e?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f7849f18-7a75-6940-9005-9476a6ee1b94\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-27T19:32:52.092375Z\"\n }" + string: "{\n \"name\": \"cc61e65d-b1f5-4640-acef-becce064337e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T15:57:04.7386589Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Mon, 27 Mar 2023 19:34:53 GMT + - Thu, 15 Jun 2023 15:58:36 GMT expires: - '-1' pragma: @@ -362,23 +364,23 @@ interactions: - --resource-group --name --location --network-plugin --network-plugin-mode --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/189f84f7-757a-4069-9005-9476a6ee1b94?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/5de661cc-f5b1-4046-acef-becce064337e?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f7849f18-7a75-6940-9005-9476a6ee1b94\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-27T19:32:52.092375Z\"\n }" + string: "{\n \"name\": \"cc61e65d-b1f5-4640-acef-becce064337e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T15:57:04.7386589Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Mon, 27 Mar 2023 19:35:23 GMT + - Thu, 15 Jun 2023 15:59:06 GMT expires: - '-1' pragma: @@ -411,23 +413,23 @@ interactions: - --resource-group --name --location --network-plugin --network-plugin-mode --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/189f84f7-757a-4069-9005-9476a6ee1b94?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/5de661cc-f5b1-4046-acef-becce064337e?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f7849f18-7a75-6940-9005-9476a6ee1b94\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-27T19:32:52.092375Z\"\n }" + string: "{\n \"name\": \"cc61e65d-b1f5-4640-acef-becce064337e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T15:57:04.7386589Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Mon, 27 Mar 2023 19:35:53 GMT + - Thu, 15 Jun 2023 15:59:36 GMT expires: - '-1' pragma: @@ -460,23 +462,23 @@ interactions: - --resource-group --name --location --network-plugin --network-plugin-mode --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/189f84f7-757a-4069-9005-9476a6ee1b94?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/5de661cc-f5b1-4046-acef-becce064337e?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f7849f18-7a75-6940-9005-9476a6ee1b94\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-27T19:32:52.092375Z\"\n }" + string: "{\n \"name\": \"cc61e65d-b1f5-4640-acef-becce064337e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T15:57:04.7386589Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Mon, 27 Mar 2023 19:36:23 GMT + - Thu, 15 Jun 2023 16:00:06 GMT expires: - '-1' pragma: @@ -509,23 +511,23 @@ interactions: - --resource-group --name --location --network-plugin --network-plugin-mode --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/189f84f7-757a-4069-9005-9476a6ee1b94?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/5de661cc-f5b1-4046-acef-becce064337e?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f7849f18-7a75-6940-9005-9476a6ee1b94\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-27T19:32:52.092375Z\"\n }" + string: "{\n \"name\": \"cc61e65d-b1f5-4640-acef-becce064337e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T15:57:04.7386589Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Mon, 27 Mar 2023 19:36:54 GMT + - Thu, 15 Jun 2023 16:00:36 GMT expires: - '-1' pragma: @@ -558,23 +560,23 @@ interactions: - --resource-group --name --location --network-plugin --network-plugin-mode --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/189f84f7-757a-4069-9005-9476a6ee1b94?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/5de661cc-f5b1-4046-acef-becce064337e?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f7849f18-7a75-6940-9005-9476a6ee1b94\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-27T19:32:52.092375Z\"\n }" + string: "{\n \"name\": \"cc61e65d-b1f5-4640-acef-becce064337e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T15:57:04.7386589Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Mon, 27 Mar 2023 19:37:24 GMT + - Thu, 15 Jun 2023 16:01:06 GMT expires: - '-1' pragma: @@ -607,23 +609,23 @@ interactions: - --resource-group --name --location --network-plugin --network-plugin-mode --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/189f84f7-757a-4069-9005-9476a6ee1b94?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/5de661cc-f5b1-4046-acef-becce064337e?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f7849f18-7a75-6940-9005-9476a6ee1b94\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-27T19:32:52.092375Z\"\n }" + string: "{\n \"name\": \"cc61e65d-b1f5-4640-acef-becce064337e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T15:57:04.7386589Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Mon, 27 Mar 2023 19:37:54 GMT + - Thu, 15 Jun 2023 16:01:36 GMT expires: - '-1' pragma: @@ -656,23 +658,24 @@ interactions: - --resource-group --name --location --network-plugin --network-plugin-mode --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/189f84f7-757a-4069-9005-9476a6ee1b94?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/5de661cc-f5b1-4046-acef-becce064337e?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"f7849f18-7a75-6940-9005-9476a6ee1b94\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-27T19:32:52.092375Z\"\n }" + string: "{\n \"name\": \"cc61e65d-b1f5-4640-acef-becce064337e\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T15:57:04.7386589Z\",\n \"\ + endTime\": \"2023-06-15T16:01:41.5418415Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '170' content-type: - application/json date: - - Mon, 27 Mar 2023 19:38:24 GMT + - Thu, 15 Jun 2023 16:02:06 GMT expires: - '-1' pragma: @@ -705,117 +708,68 @@ interactions: - --resource-group --name --location --network-plugin --network-plugin-mode --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/189f84f7-757a-4069-9005-9476a6ee1b94?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"f7849f18-7a75-6940-9005-9476a6ee1b94\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-27T19:32:52.092375Z\",\n \"endTime\": - \"2023-03-27T19:38:27.8736227Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '169' - content-type: - - application/json - date: - - Mon, 27 Mar 2023 19:38:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --network-plugin --network-plugin-mode - --ssh-key-value --pod-cidr --node-count --network-dataplane --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxhon57n3k-feb5b1\",\n \"fqdn\": \"cliakstest-clitestxhon57n3k-feb5b1-jzmuzyuz.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxhon57n3k-feb5b1-jzmuzyuz.portal.hcp.eastus.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 250,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"networkPluginMode\": \"overlay\",\n \"networkPolicy\": - \"cilium\",\n \"networkDataplane\": \"cilium\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.Network/publicIPAddresses/03514cb1-1e8c-4341-8829-ed454ced56ab\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestylyznwqlq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestylyznwqlq-8ecadf-mzlzum6g.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestylyznwqlq-8ecadf-mzlzum6g.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 250,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkPluginMode\"\ + : \"overlay\",\n \"networkPolicy\": \"cilium\",\n \"networkDataplane\"\ + : \"cilium\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ + effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.Network/publicIPAddresses/9dd8caa1-4144-473f-ad99-590ce06b218a\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4433' + - '4432' content-type: - application/json date: - - Mon, 27 Mar 2023 19:38:55 GMT + - Thu, 15 Jun 2023 16:02:07 GMT expires: - '-1' pragma: @@ -849,8 +803,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.90.1-microsoft-standard-WSL2-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -858,17 +812,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/66602900-8b26-4afc-8955-5a0012a9ab6b?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/be614f7b-ff8c-48d9-9fb6-f814eead6e9a?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Mon, 27 Mar 2023 19:38:57 GMT + - Thu, 15 Jun 2023 16:02:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/66602900-8b26-4afc-8955-5a0012a9ab6b?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/be614f7b-ff8c-48d9-9fb6-f814eead6e9a?api-version=2017-08-31 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_network_plugin_none.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_network_plugin_none.yaml old mode 100755 new mode 100644 index 4ec7f5c5a63..58c867ec2e4 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_network_plugin_none.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_network_plugin_none.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:41:18 GMT + - Thu, 15 Jun 2023 16:02:12 GMT expires: - '-1' pragma: @@ -46,18 +46,17 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestnjf5ekzrc-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestgwa6ue3o2-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "none", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": - {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "none", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -68,67 +67,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1332' + - '1661' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --ssh-key-value --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestnjf5ekzrc-79a739\",\n \"fqdn\": \"cliakstest-clitestnjf5ekzrc-79a739-3hid10ri.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestnjf5ekzrc-79a739-3hid10ri.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 250,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"none\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestgwa6ue3o2-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestgwa6ue3o2-8ecadf-l0s0sgld.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestgwa6ue3o2-8ecadf-l0s0sgld.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 250,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"none\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"serviceCidr\": \"10.0.0.0/16\"\ + ,\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\"\ + ,\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40f84bbd-dc66-48cc-a8af-867fd72dace6?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c24b318-319a-4304-b955-62599ec057c7?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3277' + - '3605' content-type: - application/json date: - - Wed, 15 Mar 2023 10:41:22 GMT + - Thu, 15 Jun 2023 16:02:20 GMT expires: - '-1' pragma: @@ -140,7 +141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -158,14 +159,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40f84bbd-dc66-48cc-a8af-867fd72dace6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c24b318-319a-4304-b955-62599ec057c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd4bf840-66dc-cc48-a8af-867fd72dace6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:22.7204702Z\"\n }" + string: "{\n \"name\": \"18b3246c-9a31-0443-b955-62599ec057c7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:02:20.1953505Z\"\n }" headers: cache-control: - no-cache @@ -174,7 +175,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:41:52 GMT + - Thu, 15 Jun 2023 16:02:20 GMT expires: - '-1' pragma: @@ -206,14 +207,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40f84bbd-dc66-48cc-a8af-867fd72dace6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c24b318-319a-4304-b955-62599ec057c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd4bf840-66dc-cc48-a8af-867fd72dace6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:22.7204702Z\"\n }" + string: "{\n \"name\": \"18b3246c-9a31-0443-b955-62599ec057c7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:02:20.1953505Z\"\n }" headers: cache-control: - no-cache @@ -222,7 +223,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:42:23 GMT + - Thu, 15 Jun 2023 16:02:50 GMT expires: - '-1' pragma: @@ -254,14 +255,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40f84bbd-dc66-48cc-a8af-867fd72dace6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c24b318-319a-4304-b955-62599ec057c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd4bf840-66dc-cc48-a8af-867fd72dace6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:22.7204702Z\"\n }" + string: "{\n \"name\": \"18b3246c-9a31-0443-b955-62599ec057c7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:02:20.1953505Z\"\n }" headers: cache-control: - no-cache @@ -270,7 +271,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:42:52 GMT + - Thu, 15 Jun 2023 16:03:20 GMT expires: - '-1' pragma: @@ -302,14 +303,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40f84bbd-dc66-48cc-a8af-867fd72dace6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c24b318-319a-4304-b955-62599ec057c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd4bf840-66dc-cc48-a8af-867fd72dace6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:22.7204702Z\"\n }" + string: "{\n \"name\": \"18b3246c-9a31-0443-b955-62599ec057c7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:02:20.1953505Z\"\n }" headers: cache-control: - no-cache @@ -318,7 +319,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:43:23 GMT + - Thu, 15 Jun 2023 16:03:51 GMT expires: - '-1' pragma: @@ -350,14 +351,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40f84bbd-dc66-48cc-a8af-867fd72dace6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c24b318-319a-4304-b955-62599ec057c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd4bf840-66dc-cc48-a8af-867fd72dace6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:22.7204702Z\"\n }" + string: "{\n \"name\": \"18b3246c-9a31-0443-b955-62599ec057c7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:02:20.1953505Z\"\n }" headers: cache-control: - no-cache @@ -366,7 +367,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:43:52 GMT + - Thu, 15 Jun 2023 16:04:21 GMT expires: - '-1' pragma: @@ -398,14 +399,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40f84bbd-dc66-48cc-a8af-867fd72dace6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c24b318-319a-4304-b955-62599ec057c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd4bf840-66dc-cc48-a8af-867fd72dace6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:22.7204702Z\"\n }" + string: "{\n \"name\": \"18b3246c-9a31-0443-b955-62599ec057c7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:02:20.1953505Z\"\n }" headers: cache-control: - no-cache @@ -414,7 +415,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:44:23 GMT + - Thu, 15 Jun 2023 16:04:51 GMT expires: - '-1' pragma: @@ -446,14 +447,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40f84bbd-dc66-48cc-a8af-867fd72dace6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c24b318-319a-4304-b955-62599ec057c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd4bf840-66dc-cc48-a8af-867fd72dace6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:22.7204702Z\"\n }" + string: "{\n \"name\": \"18b3246c-9a31-0443-b955-62599ec057c7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:02:20.1953505Z\"\n }" headers: cache-control: - no-cache @@ -462,7 +463,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:44:53 GMT + - Thu, 15 Jun 2023 16:05:21 GMT expires: - '-1' pragma: @@ -494,14 +495,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40f84bbd-dc66-48cc-a8af-867fd72dace6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c24b318-319a-4304-b955-62599ec057c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd4bf840-66dc-cc48-a8af-867fd72dace6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:22.7204702Z\"\n }" + string: "{\n \"name\": \"18b3246c-9a31-0443-b955-62599ec057c7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:02:20.1953505Z\"\n }" headers: cache-control: - no-cache @@ -510,7 +511,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:45:22 GMT + - Thu, 15 Jun 2023 16:05:51 GMT expires: - '-1' pragma: @@ -542,14 +543,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40f84bbd-dc66-48cc-a8af-867fd72dace6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c24b318-319a-4304-b955-62599ec057c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd4bf840-66dc-cc48-a8af-867fd72dace6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:22.7204702Z\"\n }" + string: "{\n \"name\": \"18b3246c-9a31-0443-b955-62599ec057c7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:02:20.1953505Z\"\n }" headers: cache-control: - no-cache @@ -558,7 +559,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:45:53 GMT + - Thu, 15 Jun 2023 16:06:22 GMT expires: - '-1' pragma: @@ -590,14 +591,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40f84bbd-dc66-48cc-a8af-867fd72dace6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c24b318-319a-4304-b955-62599ec057c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd4bf840-66dc-cc48-a8af-867fd72dace6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:22.7204702Z\"\n }" + string: "{\n \"name\": \"18b3246c-9a31-0443-b955-62599ec057c7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:02:20.1953505Z\"\n }" headers: cache-control: - no-cache @@ -606,7 +607,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:46:23 GMT + - Thu, 15 Jun 2023 16:06:52 GMT expires: - '-1' pragma: @@ -638,15 +639,15 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/40f84bbd-dc66-48cc-a8af-867fd72dace6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c24b318-319a-4304-b955-62599ec057c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd4bf840-66dc-cc48-a8af-867fd72dace6\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:41:22.7204702Z\",\n \"endTime\": - \"2023-03-15T10:46:43.3721095Z\"\n }" + string: "{\n \"name\": \"18b3246c-9a31-0443-b955-62599ec057c7\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T16:02:20.1953505Z\",\n \"\ + endTime\": \"2023-06-15T16:07:09.1718762Z\"\n }" headers: cache-control: - no-cache @@ -655,7 +656,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:46:53 GMT + - Thu, 15 Jun 2023 16:07:22 GMT expires: - '-1' pragma: @@ -687,64 +688,66 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestnjf5ekzrc-79a739\",\n \"fqdn\": \"cliakstest-clitestnjf5ekzrc-79a739-3hid10ri.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestnjf5ekzrc-79a739-3hid10ri.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 250,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"none\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/ac4ab025-6f7c-42f1-b3ba-ea2d8cb1a72c\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestgwa6ue3o2-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestgwa6ue3o2-8ecadf-l0s0sgld.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestgwa6ue3o2-8ecadf-l0s0sgld.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 250,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"none\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/de2a13b1-e7ef-447b-9139-b4a96f3c96a8\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \ + \ \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3930' + - '4258' content-type: - application/json date: - - Wed, 15 Mar 2023 10:46:54 GMT + - Thu, 15 Jun 2023 16:07:23 GMT expires: - '-1' pragma: @@ -778,8 +781,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -787,17 +790,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/241a4777-fe56-4ff2-abab-c286d7eb32a0?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/75059748-4a76-4c89-8ce3-7259f49754df?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:46:55 GMT + - Thu, 15 Jun 2023 16:07:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/241a4777-fe56-4ff2-abab-c286d7eb32a0?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/75059748-4a76-4c89-8ce3-7259f49754df?api-version=2016-03-30 pragma: - no-cache server: @@ -807,7 +810,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14992' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_node_config.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_node_config.yaml old mode 100755 new mode 100644 index 1893b0675e5..182a3f9c878 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_node_config.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_node_config.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:41:36 GMT + - Thu, 15 Jun 2023 16:07:32 GMT expires: - '-1' pragma: @@ -60,21 +60,21 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:41:37Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_with_node_config","date":"2023-06-15T16:07:30Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '362' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:41:37 GMT + - Thu, 15 Jun 2023 16:07:32 GMT expires: - '-1' pragma: @@ -90,7 +90,7 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestlbymlonsu-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestw2i3agoea-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": @@ -103,12 +103,11 @@ interactions: "transparentHugePageEnabled": "madvise", "transparentHugePageDefrag": "defer+madvise", "swapFileSizeMB": 1500}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/CustomNodeConfigPreview @@ -121,76 +120,79 @@ interactions: Connection: - keep-alive Content-Length: - - '1965' + - '2257' Content-Type: - application/json ParameterSetName: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestlbymlonsu-79a739\",\n \"fqdn\": \"cliakstest-clitestlbymlonsu-79a739-wf9do275.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestlbymlonsu-79a739-wf9do275.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"kubeletConfig\": {\n \"cpuManagerPolicy\": \"static\",\n \"cpuCfsQuota\": - true,\n \"cpuCfsQuotaPeriod\": \"200ms\",\n \"imageGcHighThreshold\": - 90,\n \"imageGcLowThreshold\": 70,\n \"topologyManagerPolicy\": - \"best-effort\",\n \"allowedUnsafeSysctls\": [\n \"kernel.msg*\",\n - \ \"net.*\"\n ],\n \"failSwapOn\": false\n },\n \"linuxOSConfig\": - {\n \"sysctls\": {\n \"netCoreSomaxconn\": 163849,\n \"netIpv4TcpTwReuse\": - true,\n \"netIpv4IpLocalPortRange\": \"32000 60000\"\n },\n \"transparentHugePageEnabled\": - \"madvise\",\n \"transparentHugePageDefrag\": \"defer+madvise\",\n \"swapFileSizeMB\": - 1500\n },\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestw2i3agoea-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestw2i3agoea-8ecadf-4okxtn63.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestw2i3agoea-8ecadf-4okxtn63.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"kubeletConfig\": {\n \"\ + cpuManagerPolicy\": \"static\",\n \"cpuCfsQuota\": true,\n \"cpuCfsQuotaPeriod\"\ + : \"200ms\",\n \"imageGcHighThreshold\": 90,\n \"imageGcLowThreshold\"\ + : 70,\n \"topologyManagerPolicy\": \"best-effort\",\n \"allowedUnsafeSysctls\"\ + : [\n \"kernel.msg*\",\n \"net.*\"\n ],\n \"failSwapOn\"\ + : false\n },\n \"linuxOSConfig\": {\n \"sysctls\": {\n \ + \ \"netCoreSomaxconn\": 163849,\n \"netIpv4TcpTwReuse\": true,\n \ + \ \"netIpv4IpLocalPortRange\": \"32000 60000\"\n },\n \"transparentHugePageEnabled\"\ + : \"madvise\",\n \"transparentHugePageDefrag\": \"defer+madvise\",\n\ + \ \"swapFileSizeMB\": 1500\n },\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97d74381-5309-4236-a859-8a5bda7d9d95?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd33c00b-790e-4865-9111-dca90f128d19?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3921' + - '4249' content-type: - application/json date: - - Wed, 15 Mar 2023 10:41:40 GMT + - Thu, 15 Jun 2023 16:07:39 GMT expires: - '-1' pragma: @@ -202,7 +204,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -221,14 +223,14 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97d74381-5309-4236-a859-8a5bda7d9d95?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd33c00b-790e-4865-9111-dca90f128d19?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8143d797-0953-3642-a859-8a5bda7d9d95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:40.8767008Z\"\n }" + string: "{\n \"name\": \"0bc033cd-0e79-6548-9111-dca90f128d19\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:07:39.0866423Z\"\n }" headers: cache-control: - no-cache @@ -237,7 +239,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:42:10 GMT + - Thu, 15 Jun 2023 16:07:39 GMT expires: - '-1' pragma: @@ -270,14 +272,14 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97d74381-5309-4236-a859-8a5bda7d9d95?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd33c00b-790e-4865-9111-dca90f128d19?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8143d797-0953-3642-a859-8a5bda7d9d95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:40.8767008Z\"\n }" + string: "{\n \"name\": \"0bc033cd-0e79-6548-9111-dca90f128d19\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:07:39.0866423Z\"\n }" headers: cache-control: - no-cache @@ -286,7 +288,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:42:41 GMT + - Thu, 15 Jun 2023 16:08:10 GMT expires: - '-1' pragma: @@ -319,14 +321,14 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97d74381-5309-4236-a859-8a5bda7d9d95?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd33c00b-790e-4865-9111-dca90f128d19?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8143d797-0953-3642-a859-8a5bda7d9d95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:40.8767008Z\"\n }" + string: "{\n \"name\": \"0bc033cd-0e79-6548-9111-dca90f128d19\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:07:39.0866423Z\"\n }" headers: cache-control: - no-cache @@ -335,7 +337,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:43:11 GMT + - Thu, 15 Jun 2023 16:08:40 GMT expires: - '-1' pragma: @@ -368,14 +370,14 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97d74381-5309-4236-a859-8a5bda7d9d95?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd33c00b-790e-4865-9111-dca90f128d19?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8143d797-0953-3642-a859-8a5bda7d9d95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:40.8767008Z\"\n }" + string: "{\n \"name\": \"0bc033cd-0e79-6548-9111-dca90f128d19\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:07:39.0866423Z\"\n }" headers: cache-control: - no-cache @@ -384,7 +386,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:43:40 GMT + - Thu, 15 Jun 2023 16:09:10 GMT expires: - '-1' pragma: @@ -417,14 +419,14 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97d74381-5309-4236-a859-8a5bda7d9d95?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd33c00b-790e-4865-9111-dca90f128d19?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8143d797-0953-3642-a859-8a5bda7d9d95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:40.8767008Z\"\n }" + string: "{\n \"name\": \"0bc033cd-0e79-6548-9111-dca90f128d19\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:07:39.0866423Z\"\n }" headers: cache-control: - no-cache @@ -433,7 +435,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:44:10 GMT + - Thu, 15 Jun 2023 16:09:40 GMT expires: - '-1' pragma: @@ -466,14 +468,14 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97d74381-5309-4236-a859-8a5bda7d9d95?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd33c00b-790e-4865-9111-dca90f128d19?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8143d797-0953-3642-a859-8a5bda7d9d95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:40.8767008Z\"\n }" + string: "{\n \"name\": \"0bc033cd-0e79-6548-9111-dca90f128d19\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:07:39.0866423Z\"\n }" headers: cache-control: - no-cache @@ -482,7 +484,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:44:40 GMT + - Thu, 15 Jun 2023 16:10:10 GMT expires: - '-1' pragma: @@ -515,464 +517,24 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97d74381-5309-4236-a859-8a5bda7d9d95?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cd33c00b-790e-4865-9111-dca90f128d19?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8143d797-0953-3642-a859-8a5bda7d9d95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:40.8767008Z\"\n }" + string: "{\n \"name\": \"0bc033cd-0e79-6548-9111-dca90f128d19\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T16:07:39.0866423Z\",\n \"\ + endTime\": \"2023-06-15T16:10:36.5244307Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:45:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers - --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97d74381-5309-4236-a859-8a5bda7d9d95?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"8143d797-0953-3642-a859-8a5bda7d9d95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:40.8767008Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:45:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers - --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97d74381-5309-4236-a859-8a5bda7d9d95?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"8143d797-0953-3642-a859-8a5bda7d9d95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:40.8767008Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:46:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers - --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97d74381-5309-4236-a859-8a5bda7d9d95?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"8143d797-0953-3642-a859-8a5bda7d9d95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:40.8767008Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:46:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers - --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97d74381-5309-4236-a859-8a5bda7d9d95?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"8143d797-0953-3642-a859-8a5bda7d9d95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:40.8767008Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:47:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers - --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97d74381-5309-4236-a859-8a5bda7d9d95?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"8143d797-0953-3642-a859-8a5bda7d9d95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:40.8767008Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:47:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers - --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97d74381-5309-4236-a859-8a5bda7d9d95?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"8143d797-0953-3642-a859-8a5bda7d9d95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:40.8767008Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:48:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers - --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97d74381-5309-4236-a859-8a5bda7d9d95?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"8143d797-0953-3642-a859-8a5bda7d9d95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:40.8767008Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:48:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers - --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97d74381-5309-4236-a859-8a5bda7d9d95?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"8143d797-0953-3642-a859-8a5bda7d9d95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:40.8767008Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:49:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers - --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97d74381-5309-4236-a859-8a5bda7d9d95?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"8143d797-0953-3642-a859-8a5bda7d9d95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:40.8767008Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 10:49:41 GMT + - Thu, 15 Jun 2023 16:10:40 GMT expires: - '-1' pragma: @@ -1005,23 +567,75 @@ interactions: - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97d74381-5309-4236-a859-8a5bda7d9d95?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"8143d797-0953-3642-a859-8a5bda7d9d95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:40.8767008Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestw2i3agoea-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestw2i3agoea-8ecadf-4okxtn63.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestw2i3agoea-8ecadf-4okxtn63.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"kubeletConfig\": {\n \"\ + cpuManagerPolicy\": \"static\",\n \"cpuCfsQuota\": true,\n \"cpuCfsQuotaPeriod\"\ + : \"200ms\",\n \"imageGcHighThreshold\": 90,\n \"imageGcLowThreshold\"\ + : 70,\n \"topologyManagerPolicy\": \"best-effort\",\n \"allowedUnsafeSysctls\"\ + : [\n \"kernel.msg*\",\n \"net.*\"\n ],\n \"failSwapOn\"\ + : false\n },\n \"linuxOSConfig\": {\n \"sysctls\": {\n \ + \ \"netCoreSomaxconn\": 163849,\n \"netIpv4TcpTwReuse\": true,\n \ + \ \"netIpv4IpLocalPortRange\": \"32000 60000\"\n },\n \"transparentHugePageEnabled\"\ + : \"madvise\",\n \"transparentHugePageDefrag\": \"defer+madvise\",\n\ + \ \"swapFileSizeMB\": 1500\n },\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/87deff05-c70a-40dc-9d2f-eecd59ef7cc0\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '4902' content-type: - application/json date: - - Wed, 15 Mar 2023 10:50:11 GMT + - Thu, 15 Jun 2023 16:10:41 GMT expires: - '-1' pragma: @@ -1043,83 +657,54 @@ interactions: body: null headers: Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers - --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97d74381-5309-4236-a859-8a5bda7d9d95?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"8143d797-0953-3642-a859-8a5bda7d9d95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:40.8767008Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - application/json - date: - - Wed, 15 Mar 2023 10:50:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers - --ssh-key-value -o + - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config + --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97d74381-5309-4236-a859-8a5bda7d9d95?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"8143d797-0953-3642-a859-8a5bda7d9d95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:40.8767008Z\"\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"kubeletConfig\": {\n \"\ + cpuManagerPolicy\": \"static\",\n \"cpuCfsQuota\": true,\n \"cpuCfsQuotaPeriod\"\ + : \"200ms\",\n \"imageGcHighThreshold\": 90,\n \"imageGcLowThreshold\"\ + : 70,\n \"topologyManagerPolicy\": \"best-effort\",\n \"allowedUnsafeSysctls\"\ + : [\n \"kernel.msg*\",\n \"net.*\"\n ],\n \"failSwapOn\"\ + : false\n },\n \"linuxOSConfig\": {\n \"sysctls\": {\n \ + \ \"netCoreSomaxconn\": 163849,\n \"netIpv4TcpTwReuse\": true,\n \ + \ \"netIpv4IpLocalPortRange\": \"32000 60000\"\n },\n \"transparentHugePageEnabled\"\ + : \"madvise\",\n \"transparentHugePageDefrag\": \"defer+madvise\",\n\ + \ \"swapFileSizeMB\": 1500\n },\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \ + \ \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '126' + - '1690' content-type: - application/json date: - - Wed, 15 Mar 2023 10:51:11 GMT + - Thu, 15 Jun 2023 16:10:42 GMT expires: - '-1' pragma: @@ -1138,37 +723,75 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": + 0, "osType": "Linux", "enableAutoScaling": false, "scaleDownMode": "Delete", + "type": "VirtualMachineScaleSets", "mode": "User", "upgradeSettings": {}, "enableNodePublicIP": + false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": + -1.0, "nodeTaints": [], "kubeletConfig": {"cpuManagerPolicy": "static", "cpuCfsQuota": + true, "cpuCfsQuotaPeriod": "200ms", "imageGcHighThreshold": 90, "imageGcLowThreshold": + 70, "topologyManagerPolicy": "best-effort", "allowedUnsafeSysctls": ["kernel.msg*", + "net.*"], "failSwapOn": false}, "linuxOSConfig": {"sysctls": {"netCoreSomaxconn": + 163849, "netIpv4TcpTwReuse": true, "netIpv4IpLocalPortRange": "32000 60000"}, + "transparentHugePageEnabled": "madvise", "transparentHugePageDefrag": "defer+madvise", + "swapFileSizeMB": 1500}, "enableEncryptionAtHost": false, "enableUltraSSD": + false, "enableFIPS": false}}' headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/CustomNodeConfigPreview Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks nodepool add Connection: - keep-alive + Content-Length: + - '945' + Content-Type: + - application/json ParameterSetName: - - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers - --ssh-key-value -o + - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config + --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97d74381-5309-4236-a859-8a5bda7d9d95?api-version=2016-03-30 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"8143d797-0953-3642-a859-8a5bda7d9d95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:40.8767008Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"kubeletConfig\": {\n \"cpuManagerPolicy\": \"static\",\n \"cpuCfsQuota\"\ + : true,\n \"cpuCfsQuotaPeriod\": \"200ms\",\n \"imageGcHighThreshold\"\ + : 90,\n \"imageGcLowThreshold\": 70,\n \"topologyManagerPolicy\": \"\ + best-effort\",\n \"allowedUnsafeSysctls\": [\n \"kernel.msg*\",\n \ + \ \"net.*\"\n ],\n \"failSwapOn\": false\n },\n \"linuxOSConfig\"\ + : {\n \"sysctls\": {\n \"netCoreSomaxconn\": 163849,\n \"netIpv4TcpTwReuse\"\ + : true,\n \"netIpv4IpLocalPortRange\": \"32000 60000\"\n },\n \"\ + transparentHugePageEnabled\": \"madvise\",\n \"transparentHugePageDefrag\"\ + : \"defer+madvise\",\n \"swapFileSizeMB\": 1500\n },\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"\ + osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0caef01e-8e12-4c83-9f20-90773b02fe56?api-version=2016-03-30 cache-control: - no-cache content-length: - - '126' + - '1588' content-type: - application/json date: - - Wed, 15 Mar 2023 10:51:42 GMT + - Thu, 15 Jun 2023 16:10:48 GMT expires: - '-1' pragma: @@ -1177,15 +800,13 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -1194,21 +815,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers - --ssh-key-value -o + - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config + --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97d74381-5309-4236-a859-8a5bda7d9d95?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0caef01e-8e12-4c83-9f20-90773b02fe56?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8143d797-0953-3642-a859-8a5bda7d9d95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:40.8767008Z\"\n }" + string: "{\n \"name\": \"1ef0ae0c-128e-834c-9f20-90773b02fe56\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:10:48.8528133Z\"\n }" headers: cache-control: - no-cache @@ -1217,7 +838,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:52:12 GMT + - Thu, 15 Jun 2023 16:10:48 GMT expires: - '-1' pragma: @@ -1243,21 +864,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers - --ssh-key-value -o + - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config + --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97d74381-5309-4236-a859-8a5bda7d9d95?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0caef01e-8e12-4c83-9f20-90773b02fe56?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8143d797-0953-3642-a859-8a5bda7d9d95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:40.8767008Z\"\n }" + string: "{\n \"name\": \"1ef0ae0c-128e-834c-9f20-90773b02fe56\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:10:48.8528133Z\"\n }" headers: cache-control: - no-cache @@ -1266,7 +887,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:52:42 GMT + - Thu, 15 Jun 2023 16:11:19 GMT expires: - '-1' pragma: @@ -1292,31 +913,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers - --ssh-key-value -o + - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config + --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/97d74381-5309-4236-a859-8a5bda7d9d95?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0caef01e-8e12-4c83-9f20-90773b02fe56?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8143d797-0953-3642-a859-8a5bda7d9d95\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:41:40.8767008Z\",\n \"endTime\": - \"2023-03-15T10:52:49.1066646Z\"\n }" + string: "{\n \"name\": \"1ef0ae0c-128e-834c-9f20-90773b02fe56\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:10:48.8528133Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:53:12 GMT + - Thu, 15 Jun 2023 16:11:48 GMT expires: - '-1' pragma: @@ -1342,104 +962,6 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --kubelet-config --linux-os-config --aks-custom-headers - --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestlbymlonsu-79a739\",\n \"fqdn\": \"cliakstest-clitestlbymlonsu-79a739-wf9do275.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestlbymlonsu-79a739-wf9do275.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"kubeletConfig\": {\n \"cpuManagerPolicy\": \"static\",\n \"cpuCfsQuota\": - true,\n \"cpuCfsQuotaPeriod\": \"200ms\",\n \"imageGcHighThreshold\": - 90,\n \"imageGcLowThreshold\": 70,\n \"topologyManagerPolicy\": - \"best-effort\",\n \"allowedUnsafeSysctls\": [\n \"kernel.msg*\",\n - \ \"net.*\"\n ],\n \"failSwapOn\": false\n },\n \"linuxOSConfig\": - {\n \"sysctls\": {\n \"netCoreSomaxconn\": 163849,\n \"netIpv4TcpTwReuse\": - true,\n \"netIpv4IpLocalPortRange\": \"32000 60000\"\n },\n \"transparentHugePageEnabled\": - \"madvise\",\n \"transparentHugePageDefrag\": \"defer+madvise\",\n \"swapFileSizeMB\": - 1500\n },\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/03606df0-9752-4a83-955b-64a0d709d9a6\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '4574' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:53:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - aks nodepool add Connection: - keep-alive @@ -1447,42 +969,23 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0caef01e-8e12-4c83-9f20-90773b02fe56?api-version=2016-03-30 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"kubeletConfig\": {\n \"cpuManagerPolicy\": - \"static\",\n \"cpuCfsQuota\": true,\n \"cpuCfsQuotaPeriod\": \"200ms\",\n - \ \"imageGcHighThreshold\": 90,\n \"imageGcLowThreshold\": 70,\n - \ \"topologyManagerPolicy\": \"best-effort\",\n \"allowedUnsafeSysctls\": - [\n \"kernel.msg*\",\n \"net.*\"\n ],\n \"failSwapOn\": - false\n },\n \"linuxOSConfig\": {\n \"sysctls\": {\n \"netCoreSomaxconn\": - 163849,\n \"netIpv4TcpTwReuse\": true,\n \"netIpv4IpLocalPortRange\": - \"32000 60000\"\n },\n \"transparentHugePageEnabled\": \"madvise\",\n - \ \"transparentHugePageDefrag\": \"defer+madvise\",\n \"swapFileSizeMB\": - 1500\n },\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }\n ]\n }" + string: "{\n \"name\": \"1ef0ae0c-128e-834c-9f20-90773b02fe56\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:10:48.8528133Z\"\n }" headers: cache-control: - no-cache content-length: - - '1689' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:53:14 GMT + - Thu, 15 Jun 2023 16:12:18 GMT expires: - '-1' pragma: @@ -1500,90 +1003,6 @@ interactions: status: code: 200 message: OK -- request: - body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": - 0, "osType": "Linux", "enableAutoScaling": false, "scaleDownMode": "Delete", - "type": "VirtualMachineScaleSets", "mode": "User", "upgradeSettings": {}, "enableNodePublicIP": - false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": - -1.0, "nodeTaints": [], "kubeletConfig": {"cpuManagerPolicy": "static", "cpuCfsQuota": - true, "cpuCfsQuotaPeriod": "200ms", "imageGcHighThreshold": 90, "imageGcLowThreshold": - 70, "topologyManagerPolicy": "best-effort", "allowedUnsafeSysctls": ["kernel.msg*", - "net.*"], "failSwapOn": false}, "linuxOSConfig": {"sysctls": {"netCoreSomaxconn": - 163849, "netIpv4TcpTwReuse": true, "netIpv4IpLocalPortRange": "32000 60000"}, - "transparentHugePageEnabled": "madvise", "transparentHugePageDefrag": "defer+madvise", - "swapFileSizeMB": 1500}, "enableEncryptionAtHost": false, "enableUltraSSD": - false, "enableFIPS": false}}' - headers: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/CustomNodeConfigPreview - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - Content-Length: - - '945' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config - --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"kubeletConfig\": {\n \"cpuManagerPolicy\": - \"static\",\n \"cpuCfsQuota\": true,\n \"cpuCfsQuotaPeriod\": \"200ms\",\n - \ \"imageGcHighThreshold\": 90,\n \"imageGcLowThreshold\": 70,\n \"topologyManagerPolicy\": - \"best-effort\",\n \"allowedUnsafeSysctls\": [\n \"kernel.msg*\",\n - \ \"net.*\"\n ],\n \"failSwapOn\": false\n },\n \"linuxOSConfig\": - {\n \"sysctls\": {\n \"netCoreSomaxconn\": 163849,\n \"netIpv4TcpTwReuse\": - true,\n \"netIpv4IpLocalPortRange\": \"32000 60000\"\n },\n \"transparentHugePageEnabled\": - \"madvise\",\n \"transparentHugePageDefrag\": \"defer+madvise\",\n \"swapFileSizeMB\": - 1500\n },\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c1c126c7-e7d8-4af3-a851-6576b4ab6d3f?api-version=2016-03-30 - cache-control: - - no-cache - content-length: - - '1587' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:53:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1193' - status: - code: 201 - message: Created - request: body: null headers: @@ -1599,14 +1018,14 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c1c126c7-e7d8-4af3-a851-6576b4ab6d3f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0caef01e-8e12-4c83-9f20-90773b02fe56?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c726c1c1-d8e7-f34a-a851-6576b4ab6d3f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:53:17.0041538Z\"\n }" + string: "{\n \"name\": \"1ef0ae0c-128e-834c-9f20-90773b02fe56\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:10:48.8528133Z\"\n }" headers: cache-control: - no-cache @@ -1615,7 +1034,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:53:46 GMT + - Thu, 15 Jun 2023 16:12:48 GMT expires: - '-1' pragma: @@ -1648,14 +1067,14 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c1c126c7-e7d8-4af3-a851-6576b4ab6d3f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0caef01e-8e12-4c83-9f20-90773b02fe56?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c726c1c1-d8e7-f34a-a851-6576b4ab6d3f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:53:17.0041538Z\"\n }" + string: "{\n \"name\": \"1ef0ae0c-128e-834c-9f20-90773b02fe56\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:10:48.8528133Z\"\n }" headers: cache-control: - no-cache @@ -1664,7 +1083,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:54:16 GMT + - Thu, 15 Jun 2023 16:13:19 GMT expires: - '-1' pragma: @@ -1697,14 +1116,14 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c1c126c7-e7d8-4af3-a851-6576b4ab6d3f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0caef01e-8e12-4c83-9f20-90773b02fe56?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c726c1c1-d8e7-f34a-a851-6576b4ab6d3f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:53:17.0041538Z\"\n }" + string: "{\n \"name\": \"1ef0ae0c-128e-834c-9f20-90773b02fe56\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:10:48.8528133Z\"\n }" headers: cache-control: - no-cache @@ -1713,7 +1132,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:54:46 GMT + - Thu, 15 Jun 2023 16:13:49 GMT expires: - '-1' pragma: @@ -1746,15 +1165,15 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c1c126c7-e7d8-4af3-a851-6576b4ab6d3f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0caef01e-8e12-4c83-9f20-90773b02fe56?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c726c1c1-d8e7-f34a-a851-6576b4ab6d3f\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:53:17.0041538Z\",\n \"endTime\": - \"2023-03-15T10:54:49.7561336Z\"\n }" + string: "{\n \"name\": \"1ef0ae0c-128e-834c-9f20-90773b02fe56\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T16:10:48.8528133Z\",\n \"\ + endTime\": \"2023-06-15T16:13:59.3702917Z\"\n }" headers: cache-control: - no-cache @@ -1763,7 +1182,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:55:16 GMT + - Thu, 15 Jun 2023 16:14:19 GMT expires: - '-1' pragma: @@ -1796,41 +1215,42 @@ interactions: - --resource-group --cluster-name --name --node-count --kubelet-config --linux-os-config --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"kubeletConfig\": {\n \"cpuManagerPolicy\": - \"static\",\n \"cpuCfsQuota\": true,\n \"cpuCfsQuotaPeriod\": \"200ms\",\n - \ \"imageGcHighThreshold\": 90,\n \"imageGcLowThreshold\": 70,\n \"topologyManagerPolicy\": - \"best-effort\",\n \"allowedUnsafeSysctls\": [\n \"kernel.msg*\",\n - \ \"net.*\"\n ],\n \"failSwapOn\": false\n },\n \"linuxOSConfig\": - {\n \"sysctls\": {\n \"netCoreSomaxconn\": 163849,\n \"netIpv4TcpTwReuse\": - true,\n \"netIpv4IpLocalPortRange\": \"32000 60000\"\n },\n \"transparentHugePageEnabled\": - \"madvise\",\n \"transparentHugePageDefrag\": \"defer+madvise\",\n \"swapFileSizeMB\": - 1500\n },\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"kubeletConfig\": {\n \"cpuManagerPolicy\": \"static\",\n \"cpuCfsQuota\"\ + : true,\n \"cpuCfsQuotaPeriod\": \"200ms\",\n \"imageGcHighThreshold\"\ + : 90,\n \"imageGcLowThreshold\": 70,\n \"topologyManagerPolicy\": \"\ + best-effort\",\n \"allowedUnsafeSysctls\": [\n \"kernel.msg*\",\n \ + \ \"net.*\"\n ],\n \"failSwapOn\": false\n },\n \"linuxOSConfig\"\ + : {\n \"sysctls\": {\n \"netCoreSomaxconn\": 163849,\n \"netIpv4TcpTwReuse\"\ + : true,\n \"netIpv4IpLocalPortRange\": \"32000 60000\"\n },\n \"\ + transparentHugePageEnabled\": \"madvise\",\n \"transparentHugePageDefrag\"\ + : \"defer+madvise\",\n \"swapFileSizeMB\": 1500\n },\n \"enableEncryptionAtHost\"\ + : false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"\ + osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1588' + - '1589' content-type: - application/json date: - - Wed, 15 Mar 2023 10:55:17 GMT + - Thu, 15 Jun 2023 16:14:20 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_oidc_issuer_enabled.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_oidc_issuer_enabled.yaml old mode 100755 new mode 100644 index 9f7059abb23..bf09066f956 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_oidc_issuer_enabled.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_oidc_issuer_enabled.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:55:18 GMT + - Thu, 15 Jun 2023 16:14:25 GMT expires: - '-1' pragma: @@ -46,20 +46,20 @@ interactions: code: 404 message: Not Found - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestgaaatd3ii-79a739", + body: '{"location": "centraluseuap", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestqawa27uor-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "oidcIssuerProfile": - {"enabled": true}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "oidcIssuerProfile": {"enabled": + true}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": + "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": + false, "storageProfile": {}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/EnableOIDCIssuerPreview @@ -72,69 +72,71 @@ interactions: Connection: - keep-alive Content-Length: - - '1499' + - '1797' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestgaaatd3ii-79a739\",\n \"fqdn\": \"cliakstest-clitestgaaatd3ii-79a739-pw8zurdi.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestgaaatd3ii-79a739-pw8zurdi.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - true,\n \"issuerURL\": \"https://westus2.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/e29a0143-afe3-432b-ba6e-fcaa256a5f35/\"\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestqawa27uor-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestqawa27uor-8ecadf-yc2tw6w9.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestqawa27uor-8ecadf-yc2tw6w9.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n \"issuerURL\"\ + : \"https://centraluseuap.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/676bd10d-71b2-4650-bb7c-e9562c933c82/\"\ + \n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7d29c14-9243-4fe8-b37d-83c4fae98d16?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/1335454d-29d3-473e-9691-7f4ee36be0b7?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3401' + - '3759' content-type: - application/json date: - - Wed, 15 Mar 2023 10:55:22 GMT + - Thu, 15 Jun 2023 16:14:31 GMT expires: - '-1' pragma: @@ -146,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -165,14 +167,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7d29c14-9243-4fe8-b37d-83c4fae98d16?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/1335454d-29d3-473e-9691-7f4ee36be0b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"149cd2d7-4392-e84f-b37d-83c4fae98d16\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:55:23.1452601Z\"\n }" + string: "{\n \"name\": \"4d453513-d329-3e47-9691-7f4ee36be0b7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:14:31.4713933Z\"\n }" headers: cache-control: - no-cache @@ -181,7 +183,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:55:53 GMT + - Thu, 15 Jun 2023 16:14:31 GMT expires: - '-1' pragma: @@ -214,14 +216,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7d29c14-9243-4fe8-b37d-83c4fae98d16?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/1335454d-29d3-473e-9691-7f4ee36be0b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"149cd2d7-4392-e84f-b37d-83c4fae98d16\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:55:23.1452601Z\"\n }" + string: "{\n \"name\": \"4d453513-d329-3e47-9691-7f4ee36be0b7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:14:31.4713933Z\"\n }" headers: cache-control: - no-cache @@ -230,7 +232,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:22 GMT + - Thu, 15 Jun 2023 16:15:01 GMT expires: - '-1' pragma: @@ -263,14 +265,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7d29c14-9243-4fe8-b37d-83c4fae98d16?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/1335454d-29d3-473e-9691-7f4ee36be0b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"149cd2d7-4392-e84f-b37d-83c4fae98d16\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:55:23.1452601Z\"\n }" + string: "{\n \"name\": \"4d453513-d329-3e47-9691-7f4ee36be0b7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:14:31.4713933Z\"\n }" headers: cache-control: - no-cache @@ -279,7 +281,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:53 GMT + - Thu, 15 Jun 2023 16:15:32 GMT expires: - '-1' pragma: @@ -312,14 +314,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7d29c14-9243-4fe8-b37d-83c4fae98d16?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/1335454d-29d3-473e-9691-7f4ee36be0b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"149cd2d7-4392-e84f-b37d-83c4fae98d16\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:55:23.1452601Z\"\n }" + string: "{\n \"name\": \"4d453513-d329-3e47-9691-7f4ee36be0b7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:14:31.4713933Z\"\n }" headers: cache-control: - no-cache @@ -328,7 +330,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:57:22 GMT + - Thu, 15 Jun 2023 16:16:01 GMT expires: - '-1' pragma: @@ -361,14 +363,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7d29c14-9243-4fe8-b37d-83c4fae98d16?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/1335454d-29d3-473e-9691-7f4ee36be0b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"149cd2d7-4392-e84f-b37d-83c4fae98d16\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:55:23.1452601Z\"\n }" + string: "{\n \"name\": \"4d453513-d329-3e47-9691-7f4ee36be0b7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:14:31.4713933Z\"\n }" headers: cache-control: - no-cache @@ -377,7 +379,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:57:53 GMT + - Thu, 15 Jun 2023 16:16:31 GMT expires: - '-1' pragma: @@ -410,14 +412,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7d29c14-9243-4fe8-b37d-83c4fae98d16?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/1335454d-29d3-473e-9691-7f4ee36be0b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"149cd2d7-4392-e84f-b37d-83c4fae98d16\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:55:23.1452601Z\"\n }" + string: "{\n \"name\": \"4d453513-d329-3e47-9691-7f4ee36be0b7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:14:31.4713933Z\"\n }" headers: cache-control: - no-cache @@ -426,7 +428,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:58:23 GMT + - Thu, 15 Jun 2023 16:17:02 GMT expires: - '-1' pragma: @@ -459,14 +461,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7d29c14-9243-4fe8-b37d-83c4fae98d16?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/1335454d-29d3-473e-9691-7f4ee36be0b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"149cd2d7-4392-e84f-b37d-83c4fae98d16\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:55:23.1452601Z\"\n }" + string: "{\n \"name\": \"4d453513-d329-3e47-9691-7f4ee36be0b7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:14:31.4713933Z\"\n }" headers: cache-control: - no-cache @@ -475,7 +477,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:58:53 GMT + - Thu, 15 Jun 2023 16:17:32 GMT expires: - '-1' pragma: @@ -508,14 +510,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7d29c14-9243-4fe8-b37d-83c4fae98d16?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/1335454d-29d3-473e-9691-7f4ee36be0b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"149cd2d7-4392-e84f-b37d-83c4fae98d16\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:55:23.1452601Z\"\n }" + string: "{\n \"name\": \"4d453513-d329-3e47-9691-7f4ee36be0b7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:14:31.4713933Z\"\n }" headers: cache-control: - no-cache @@ -524,7 +526,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:59:23 GMT + - Thu, 15 Jun 2023 16:18:02 GMT expires: - '-1' pragma: @@ -557,122 +559,24 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7d29c14-9243-4fe8-b37d-83c4fae98d16?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/1335454d-29d3-473e-9691-7f4ee36be0b7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"149cd2d7-4392-e84f-b37d-83c4fae98d16\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:55:23.1452601Z\"\n }" + string: "{\n \"name\": \"4d453513-d329-3e47-9691-7f4ee36be0b7\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T16:14:31.4713933Z\",\n \"\ + endTime\": \"2023-06-15T16:18:28.2292616Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:59:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer - --aks-custom-headers --ssh-key-value - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7d29c14-9243-4fe8-b37d-83c4fae98d16?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"149cd2d7-4392-e84f-b37d-83c4fae98d16\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:55:23.1452601Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:00:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer - --aks-custom-headers --ssh-key-value - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7d29c14-9243-4fe8-b37d-83c4fae98d16?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"149cd2d7-4392-e84f-b37d-83c4fae98d16\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:55:23.1452601Z\",\n \"endTime\": - \"2023-03-15T11:00:54.035387Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '169' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:54 GMT + - Thu, 15 Jun 2023 16:18:32 GMT expires: - '-1' pragma: @@ -705,65 +609,67 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --aks-custom-headers --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestgaaatd3ii-79a739\",\n \"fqdn\": \"cliakstest-clitestgaaatd3ii-79a739-pw8zurdi.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestgaaatd3ii-79a739-pw8zurdi.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e2190f3a-78bb-42c7-b8ef-5dab4ed3eb80\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - true,\n \"issuerURL\": \"https://westus2.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/e29a0143-afe3-432b-ba6e-fcaa256a5f35/\"\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestqawa27uor-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestqawa27uor-8ecadf-yc2tw6w9.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestqawa27uor-8ecadf-yc2tw6w9.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/08ce6e42-3173-49a0-b817-d9727e712f95\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n \"issuerURL\"\ + : \"https://centraluseuap.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/676bd10d-71b2-4650-bb7c-e9562c933c82/\"\ + \n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4054' + - '4424' content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:54 GMT + - Thu, 15 Jun 2023 16:18:32 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_openservicemesh_addon.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_openservicemesh_addon.yaml index c0f53e81e9b..4fa9ebc37b2 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_openservicemesh_addon.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_openservicemesh_addon.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:38:09 GMT + - Thu, 15 Jun 2023 16:18:37 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:38:10Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_with_openservicemesh_addon","date":"2023-06-15T16:18:35Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '372' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:38:09 GMT + - Thu, 15 Jun 2023 16:18:37 GMT expires: - '-1' pragma: @@ -88,20 +88,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestiw2d3ejju-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestsosqgakuw-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": - {"enabled": true, "config": {}}}, "enableRBAC": true, "networkProfile": {"networkPlugin": - "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": - "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": - {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": {"enabled": true, + "config": {}}}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", + "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": + false, "storageProfile": {}}}' headers: Accept: - application/json @@ -112,68 +111,70 @@ interactions: Connection: - keep-alive Content-Length: - - '1509' + - '1801' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestiw2d3ejju-79a739\",\n \"fqdn\": \"cliakstest-clitestiw2d3ejju-79a739-3t409fbu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestiw2d3ejju-79a739-3t409fbu.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null\n - \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": - \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestsosqgakuw-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestsosqgakuw-8ecadf-w92znmf8.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestsosqgakuw-8ecadf-w92znmf8.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"openServiceMesh\": {\n \"enabled\": true,\n\ + \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7cb0bab8-ee89-4f8f-ab3e-729164c3005c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/065c5089-6237-49af-99f7-0b6c96c76dcf?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3369' + - '3697' content-type: - application/json date: - - Wed, 15 Mar 2023 10:38:13 GMT + - Thu, 15 Jun 2023 16:18:46 GMT expires: - '-1' pragma: @@ -185,7 +186,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -203,14 +204,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7cb0bab8-ee89-4f8f-ab3e-729164c3005c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/065c5089-6237-49af-99f7-0b6c96c76dcf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b8bab07c-89ee-8f4f-ab3e-729164c3005c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:38:13.5474139Z\"\n }" + string: "{\n \"name\": \"89505c06-3762-af49-99f7-0b6c96c76dcf\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:18:44.5570173Z\"\n }" headers: cache-control: - no-cache @@ -219,7 +220,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:38:43 GMT + - Thu, 15 Jun 2023 16:18:46 GMT expires: - '-1' pragma: @@ -251,14 +252,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7cb0bab8-ee89-4f8f-ab3e-729164c3005c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/065c5089-6237-49af-99f7-0b6c96c76dcf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b8bab07c-89ee-8f4f-ab3e-729164c3005c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:38:13.5474139Z\"\n }" + string: "{\n \"name\": \"89505c06-3762-af49-99f7-0b6c96c76dcf\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:18:44.5570173Z\"\n }" headers: cache-control: - no-cache @@ -267,7 +268,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:39:13 GMT + - Thu, 15 Jun 2023 16:19:16 GMT expires: - '-1' pragma: @@ -299,14 +300,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7cb0bab8-ee89-4f8f-ab3e-729164c3005c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/065c5089-6237-49af-99f7-0b6c96c76dcf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b8bab07c-89ee-8f4f-ab3e-729164c3005c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:38:13.5474139Z\"\n }" + string: "{\n \"name\": \"89505c06-3762-af49-99f7-0b6c96c76dcf\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:18:44.5570173Z\"\n }" headers: cache-control: - no-cache @@ -315,7 +316,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:39:43 GMT + - Thu, 15 Jun 2023 16:19:46 GMT expires: - '-1' pragma: @@ -347,14 +348,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7cb0bab8-ee89-4f8f-ab3e-729164c3005c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/065c5089-6237-49af-99f7-0b6c96c76dcf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b8bab07c-89ee-8f4f-ab3e-729164c3005c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:38:13.5474139Z\"\n }" + string: "{\n \"name\": \"89505c06-3762-af49-99f7-0b6c96c76dcf\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:18:44.5570173Z\"\n }" headers: cache-control: - no-cache @@ -363,7 +364,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:40:13 GMT + - Thu, 15 Jun 2023 16:20:16 GMT expires: - '-1' pragma: @@ -395,14 +396,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7cb0bab8-ee89-4f8f-ab3e-729164c3005c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/065c5089-6237-49af-99f7-0b6c96c76dcf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b8bab07c-89ee-8f4f-ab3e-729164c3005c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:38:13.5474139Z\"\n }" + string: "{\n \"name\": \"89505c06-3762-af49-99f7-0b6c96c76dcf\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:18:44.5570173Z\"\n }" headers: cache-control: - no-cache @@ -411,7 +412,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:40:43 GMT + - Thu, 15 Jun 2023 16:20:47 GMT expires: - '-1' pragma: @@ -443,14 +444,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7cb0bab8-ee89-4f8f-ab3e-729164c3005c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/065c5089-6237-49af-99f7-0b6c96c76dcf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b8bab07c-89ee-8f4f-ab3e-729164c3005c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:38:13.5474139Z\"\n }" + string: "{\n \"name\": \"89505c06-3762-af49-99f7-0b6c96c76dcf\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:18:44.5570173Z\"\n }" headers: cache-control: - no-cache @@ -459,7 +460,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:41:13 GMT + - Thu, 15 Jun 2023 16:21:17 GMT expires: - '-1' pragma: @@ -491,15 +492,111 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7cb0bab8-ee89-4f8f-ab3e-729164c3005c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/065c5089-6237-49af-99f7-0b6c96c76dcf?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b8bab07c-89ee-8f4f-ab3e-729164c3005c\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:38:13.5474139Z\",\n \"endTime\": - \"2023-03-15T10:41:37.0629811Z\"\n }" + string: "{\n \"name\": \"89505c06-3762-af49-99f7-0b6c96c76dcf\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:18:44.5570173Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 16:21:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/065c5089-6237-49af-99f7-0b6c96c76dcf?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"89505c06-3762-af49-99f7-0b6c96c76dcf\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:18:44.5570173Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 16:22:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/065c5089-6237-49af-99f7-0b6c96c76dcf?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"89505c06-3762-af49-99f7-0b6c96c76dcf\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T16:18:44.5570173Z\",\n \"\ + endTime\": \"2023-06-15T16:22:26.3885754Z\"\n }" headers: cache-control: - no-cache @@ -508,7 +605,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:41:44 GMT + - Thu, 15 Jun 2023 16:22:47 GMT expires: - '-1' pragma: @@ -540,65 +637,67 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestiw2d3ejju-79a739\",\n \"fqdn\": \"cliakstest-clitestiw2d3ejju-79a739-3t409fbu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestiw2d3ejju-79a739-3t409fbu.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null\n - \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3ff38c90-2ec8-4640-b669-ca9cc0047361\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestsosqgakuw-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestsosqgakuw-8ecadf-w92znmf8.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestsosqgakuw-8ecadf-w92znmf8.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"openServiceMesh\": {\n \"enabled\": true,\n\ + \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c5b0405f-9a46-452e-b015-434c95c662ba\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4022' + - '4350' content-type: - application/json date: - - Wed, 15 Mar 2023 10:41:44 GMT + - Thu, 15 Jun 2023 16:22:47 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ossku.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ossku.yaml index 38bfa4e833a..87a21959745 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ossku.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ossku.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:41:45 GMT + - Thu, 15 Jun 2023 16:22:52 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:41:45Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_with_ossku","date":"2023-06-15T16:22:51Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '355' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:41:45 GMT + - Thu, 15 Jun 2023 16:22:52 GMT expires: - '-1' pragma: @@ -87,8 +87,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesth7gub7j53-79a739", + body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestnljo6pab3-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": @@ -96,12 +96,11 @@ interactions: "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -112,67 +111,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1478' + - '1769' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesth7gub7j53-79a739\",\n \"fqdn\": \"cliakstest-clitesth7gub7j53-79a739-2cj9gbrw.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesth7gub7j53-79a739-2cj9gbrw.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestnljo6pab3-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestnljo6pab3-8ecadf-9s2vl5yi.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestnljo6pab3-8ecadf-9s2vl5yi.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/61da0f8e-0c0d-4769-b238-d9be565e5505?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ea422dc1-3aa1-43e0-b3ca-17489a1bdd4b?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3268' + - '3592' content-type: - application/json date: - - Wed, 15 Mar 2023 10:41:49 GMT + - Thu, 15 Jun 2023 16:22:58 GMT expires: - '-1' pragma: @@ -184,7 +185,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 201 message: Created @@ -202,14 +203,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/61da0f8e-0c0d-4769-b238-d9be565e5505?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ea422dc1-3aa1-43e0-b3ca-17489a1bdd4b?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8e0fda61-0d0c-6947-b238-d9be565e5505\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:49.5016955Z\"\n }" + string: "{\n \"name\": \"c12d42ea-a13a-e043-b3ca-17489a1bdd4b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:22:58.4410852Z\"\n }" headers: cache-control: - no-cache @@ -218,7 +219,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:42:19 GMT + - Thu, 15 Jun 2023 16:22:58 GMT expires: - '-1' pragma: @@ -250,14 +251,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/61da0f8e-0c0d-4769-b238-d9be565e5505?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ea422dc1-3aa1-43e0-b3ca-17489a1bdd4b?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8e0fda61-0d0c-6947-b238-d9be565e5505\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:49.5016955Z\"\n }" + string: "{\n \"name\": \"c12d42ea-a13a-e043-b3ca-17489a1bdd4b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:22:58.4410852Z\"\n }" headers: cache-control: - no-cache @@ -266,7 +267,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:42:49 GMT + - Thu, 15 Jun 2023 16:23:28 GMT expires: - '-1' pragma: @@ -298,14 +299,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/61da0f8e-0c0d-4769-b238-d9be565e5505?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ea422dc1-3aa1-43e0-b3ca-17489a1bdd4b?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8e0fda61-0d0c-6947-b238-d9be565e5505\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:49.5016955Z\"\n }" + string: "{\n \"name\": \"c12d42ea-a13a-e043-b3ca-17489a1bdd4b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:22:58.4410852Z\"\n }" headers: cache-control: - no-cache @@ -314,7 +315,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:43:19 GMT + - Thu, 15 Jun 2023 16:23:58 GMT expires: - '-1' pragma: @@ -346,14 +347,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/61da0f8e-0c0d-4769-b238-d9be565e5505?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ea422dc1-3aa1-43e0-b3ca-17489a1bdd4b?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8e0fda61-0d0c-6947-b238-d9be565e5505\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:49.5016955Z\"\n }" + string: "{\n \"name\": \"c12d42ea-a13a-e043-b3ca-17489a1bdd4b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:22:58.4410852Z\"\n }" headers: cache-control: - no-cache @@ -362,7 +363,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:43:49 GMT + - Thu, 15 Jun 2023 16:24:28 GMT expires: - '-1' pragma: @@ -394,14 +395,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/61da0f8e-0c0d-4769-b238-d9be565e5505?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ea422dc1-3aa1-43e0-b3ca-17489a1bdd4b?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8e0fda61-0d0c-6947-b238-d9be565e5505\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:49.5016955Z\"\n }" + string: "{\n \"name\": \"c12d42ea-a13a-e043-b3ca-17489a1bdd4b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:22:58.4410852Z\"\n }" headers: cache-control: - no-cache @@ -410,7 +411,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:44:19 GMT + - Thu, 15 Jun 2023 16:24:58 GMT expires: - '-1' pragma: @@ -442,14 +443,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/61da0f8e-0c0d-4769-b238-d9be565e5505?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ea422dc1-3aa1-43e0-b3ca-17489a1bdd4b?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8e0fda61-0d0c-6947-b238-d9be565e5505\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:49.5016955Z\"\n }" + string: "{\n \"name\": \"c12d42ea-a13a-e043-b3ca-17489a1bdd4b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:22:58.4410852Z\"\n }" headers: cache-control: - no-cache @@ -458,7 +459,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:44:50 GMT + - Thu, 15 Jun 2023 16:25:29 GMT expires: - '-1' pragma: @@ -490,14 +491,14 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/61da0f8e-0c0d-4769-b238-d9be565e5505?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ea422dc1-3aa1-43e0-b3ca-17489a1bdd4b?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8e0fda61-0d0c-6947-b238-d9be565e5505\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:41:49.5016955Z\"\n }" + string: "{\n \"name\": \"c12d42ea-a13a-e043-b3ca-17489a1bdd4b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:22:58.4410852Z\"\n }" headers: cache-control: - no-cache @@ -506,7 +507,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:45:20 GMT + - Thu, 15 Jun 2023 16:25:59 GMT expires: - '-1' pragma: @@ -538,15 +539,111 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/61da0f8e-0c0d-4769-b238-d9be565e5505?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ea422dc1-3aa1-43e0-b3ca-17489a1bdd4b?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"8e0fda61-0d0c-6947-b238-d9be565e5505\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:41:49.5016955Z\",\n \"endTime\": - \"2023-03-15T10:45:46.6923616Z\"\n }" + string: "{\n \"name\": \"c12d42ea-a13a-e043-b3ca-17489a1bdd4b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:22:58.4410852Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 16:26:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ea422dc1-3aa1-43e0-b3ca-17489a1bdd4b?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c12d42ea-a13a-e043-b3ca-17489a1bdd4b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:22:58.4410852Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 16:27:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ea422dc1-3aa1-43e0-b3ca-17489a1bdd4b?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"c12d42ea-a13a-e043-b3ca-17489a1bdd4b\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T16:22:58.4410852Z\",\n \"\ + endTime\": \"2023-06-15T16:27:43.0103329Z\"\n }" headers: cache-control: - no-cache @@ -555,7 +652,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:45:50 GMT + - Thu, 15 Jun 2023 16:30:42 GMT expires: - '-1' pragma: @@ -587,64 +684,66 @@ interactions: ParameterSetName: - --resource-group --name --vm-set-type -c --os-sku --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesth7gub7j53-79a739\",\n \"fqdn\": \"cliakstest-clitesth7gub7j53-79a739-2cj9gbrw.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesth7gub7j53-79a739-2cj9gbrw.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/16b2be45-69ff-40fe-bbce-82af283f72da\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestnljo6pab3-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestnljo6pab3-8ecadf-9s2vl5yi.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestnljo6pab3-8ecadf-9s2vl5yi.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/5f9b19d3-ef9b-47f5-b03f-b567d5f056e0\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4243' content-type: - application/json date: - - Wed, 15 Mar 2023 10:45:50 GMT + - Thu, 15 Jun 2023 16:30:43 GMT expires: - '-1' pragma: @@ -678,8 +777,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -687,17 +786,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd8650b5-65b9-4da2-afca-310c5aaa4353?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/ce3f0fcf-ea03-4f56-beaa-0c9d8f785c9e?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:45:51 GMT + - Thu, 15 Jun 2023 16:30:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/fd8650b5-65b9-4da2-afca-310c5aaa4353?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/ce3f0fcf-ea03-4f56-beaa-0c9d8f785c9e?api-version=2017-08-31 pragma: - no-cache server: @@ -707,7 +806,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14994' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_overlay_network_plugin_mode.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_overlay_network_plugin_mode.yaml index 5e3baf76b7a..999b5ccc0e7 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_overlay_network_plugin_mode.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_overlay_network_plugin_mode.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --network-plugin --network-plugin-mode --ssh-key-value --pod-cidr --node-count --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1034-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 28 Mar 2023 14:32:17 GMT + - Thu, 15 Jun 2023 16:30:48 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestxubg6yzpk-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesthixkzwxq6-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": @@ -78,63 +78,65 @@ interactions: - --resource-group --name --location --network-plugin --network-plugin-mode --ssh-key-value --pod-cidr --node-count --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1034-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxubg6yzpk-8ecadf\",\n \"fqdn\": \"cliakstest-clitestxubg6yzpk-8ecadf-lbd4bq6g.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxubg6yzpk-8ecadf-lbd4bq6g.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 250,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"networkPluginMode\": \"overlay\",\n \"networkDataplane\": - \"azure\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": - \"100.64.0.0/10\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"podCidrs\": [\n \"100.64.0.0/10\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitesthixkzwxq6-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesthixkzwxq6-8ecadf-c6pgcvsu.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesthixkzwxq6-8ecadf-c6pgcvsu.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 250,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkPluginMode\"\ + : \"overlay\",\n \"networkDataplane\": \"azure\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"100.64.0.0/10\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"100.64.0.0/10\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e99a30d0-2cca-45de-a23b-1cbfdd6b297e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e6e6c97-3d22-49ce-91a6-ea512c9ab707?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3754' + - '3753' content-type: - application/json date: - - Tue, 28 Mar 2023 14:32:24 GMT + - Thu, 15 Jun 2023 16:30:56 GMT expires: - '-1' pragma: @@ -165,14 +167,14 @@ interactions: - --resource-group --name --location --network-plugin --network-plugin-mode --ssh-key-value --pod-cidr --node-count --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1034-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e99a30d0-2cca-45de-a23b-1cbfdd6b297e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e6e6c97-3d22-49ce-91a6-ea512c9ab707?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d0309ae9-ca2c-de45-a23b-1cbfdd6b297e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T14:32:24.4936762Z\"\n }" + string: "{\n \"name\": \"976c6e4e-223d-ce49-91a6-ea512c9ab707\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:30:56.5901753Z\"\n }" headers: cache-control: - no-cache @@ -181,7 +183,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 14:32:54 GMT + - Thu, 15 Jun 2023 16:30:57 GMT expires: - '-1' pragma: @@ -214,14 +216,14 @@ interactions: - --resource-group --name --location --network-plugin --network-plugin-mode --ssh-key-value --pod-cidr --node-count --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1034-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e99a30d0-2cca-45de-a23b-1cbfdd6b297e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e6e6c97-3d22-49ce-91a6-ea512c9ab707?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d0309ae9-ca2c-de45-a23b-1cbfdd6b297e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T14:32:24.4936762Z\"\n }" + string: "{\n \"name\": \"976c6e4e-223d-ce49-91a6-ea512c9ab707\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:30:56.5901753Z\"\n }" headers: cache-control: - no-cache @@ -230,7 +232,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 14:33:24 GMT + - Thu, 15 Jun 2023 16:31:27 GMT expires: - '-1' pragma: @@ -263,14 +265,14 @@ interactions: - --resource-group --name --location --network-plugin --network-plugin-mode --ssh-key-value --pod-cidr --node-count --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1034-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e99a30d0-2cca-45de-a23b-1cbfdd6b297e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e6e6c97-3d22-49ce-91a6-ea512c9ab707?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d0309ae9-ca2c-de45-a23b-1cbfdd6b297e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T14:32:24.4936762Z\"\n }" + string: "{\n \"name\": \"976c6e4e-223d-ce49-91a6-ea512c9ab707\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:30:56.5901753Z\"\n }" headers: cache-control: - no-cache @@ -279,7 +281,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 14:33:55 GMT + - Thu, 15 Jun 2023 16:31:56 GMT expires: - '-1' pragma: @@ -312,14 +314,14 @@ interactions: - --resource-group --name --location --network-plugin --network-plugin-mode --ssh-key-value --pod-cidr --node-count --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1034-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e99a30d0-2cca-45de-a23b-1cbfdd6b297e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e6e6c97-3d22-49ce-91a6-ea512c9ab707?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d0309ae9-ca2c-de45-a23b-1cbfdd6b297e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T14:32:24.4936762Z\"\n }" + string: "{\n \"name\": \"976c6e4e-223d-ce49-91a6-ea512c9ab707\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:30:56.5901753Z\"\n }" headers: cache-control: - no-cache @@ -328,7 +330,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 14:34:25 GMT + - Thu, 15 Jun 2023 16:32:28 GMT expires: - '-1' pragma: @@ -361,14 +363,14 @@ interactions: - --resource-group --name --location --network-plugin --network-plugin-mode --ssh-key-value --pod-cidr --node-count --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1034-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e99a30d0-2cca-45de-a23b-1cbfdd6b297e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e6e6c97-3d22-49ce-91a6-ea512c9ab707?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d0309ae9-ca2c-de45-a23b-1cbfdd6b297e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T14:32:24.4936762Z\"\n }" + string: "{\n \"name\": \"976c6e4e-223d-ce49-91a6-ea512c9ab707\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:30:56.5901753Z\"\n }" headers: cache-control: - no-cache @@ -377,7 +379,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 14:34:55 GMT + - Thu, 15 Jun 2023 16:32:58 GMT expires: - '-1' pragma: @@ -410,14 +412,14 @@ interactions: - --resource-group --name --location --network-plugin --network-plugin-mode --ssh-key-value --pod-cidr --node-count --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1034-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e99a30d0-2cca-45de-a23b-1cbfdd6b297e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e6e6c97-3d22-49ce-91a6-ea512c9ab707?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d0309ae9-ca2c-de45-a23b-1cbfdd6b297e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T14:32:24.4936762Z\"\n }" + string: "{\n \"name\": \"976c6e4e-223d-ce49-91a6-ea512c9ab707\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:30:56.5901753Z\"\n }" headers: cache-control: - no-cache @@ -426,7 +428,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 14:35:25 GMT + - Thu, 15 Jun 2023 16:33:28 GMT expires: - '-1' pragma: @@ -459,15 +461,113 @@ interactions: - --resource-group --name --location --network-plugin --network-plugin-mode --ssh-key-value --pod-cidr --node-count --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1034-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e99a30d0-2cca-45de-a23b-1cbfdd6b297e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e6e6c97-3d22-49ce-91a6-ea512c9ab707?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d0309ae9-ca2c-de45-a23b-1cbfdd6b297e\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-28T14:32:24.4936762Z\",\n \"endTime\": - \"2023-03-28T14:35:36.9407664Z\"\n }" + string: "{\n \"name\": \"976c6e4e-223d-ce49-91a6-ea512c9ab707\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:30:56.5901753Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 16:33:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --network-plugin --network-plugin-mode + --ssh-key-value --pod-cidr --node-count --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e6e6c97-3d22-49ce-91a6-ea512c9ab707?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"976c6e4e-223d-ce49-91a6-ea512c9ab707\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:30:56.5901753Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 16:34:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --network-plugin --network-plugin-mode + --ssh-key-value --pod-cidr --node-count --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e6e6c97-3d22-49ce-91a6-ea512c9ab707?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"976c6e4e-223d-ce49-91a6-ea512c9ab707\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T16:30:56.5901753Z\",\n \"\ + endTime\": \"2023-06-15T16:34:39.9786452Z\"\n }" headers: cache-control: - no-cache @@ -476,7 +576,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 14:35:55 GMT + - Thu, 15 Jun 2023 16:34:58 GMT expires: - '-1' pragma: @@ -509,66 +609,68 @@ interactions: - --resource-group --name --location --network-plugin --network-plugin-mode --ssh-key-value --pod-cidr --node-count --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1034-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestxubg6yzpk-8ecadf\",\n \"fqdn\": \"cliakstest-clitestxubg6yzpk-8ecadf-lbd4bq6g.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestxubg6yzpk-8ecadf-lbd4bq6g.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 250,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== - test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"networkPluginMode\": \"overlay\",\n \"networkDataplane\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/06fb5c48-ad05-44d3-8e7c-e0abccb1c186\"\n - \ }\n ]\n },\n \"podCidr\": \"100.64.0.0/10\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"100.64.0.0/10\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitesthixkzwxq6-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesthixkzwxq6-8ecadf-c6pgcvsu.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesthixkzwxq6-8ecadf-c6pgcvsu.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 250,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkPluginMode\"\ + : \"overlay\",\n \"networkDataplane\": \"azure\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/801e2a0b-36ad-4fd0-aa47-8e3b6791f458\"\ + \n }\n ]\n },\n \"podCidr\": \"100.64.0.0/10\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"100.64.0.0/10\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4407' + - '4406' content-type: - application/json date: - - Tue, 28 Mar 2023 14:35:56 GMT + - Thu, 15 Jun 2023 16:34:59 GMT expires: - '-1' pragma: @@ -602,8 +704,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.10.6 - (Linux-5.15.0-1034-azure-x86_64-with-glibc2.35) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -611,17 +713,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7f17f75-f060-4324-8db6-dec798e9f4f1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc55dd13-8759-498e-8c77-d969eacb74c0?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 28 Mar 2023 14:35:58 GMT + - Thu, 15 Jun 2023 16:35:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/d7f17f75-f060-4324-8db6-dec798e9f4f1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/bc55dd13-8759-498e-8c77-d969eacb74c0?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_paid_sku.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_paid_sku.yaml old mode 100755 new mode 100644 index 215b56a7f2c..6576a5fc267 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_paid_sku.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_paid_sku.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --uptime-sla User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 28 Mar 2023 02:21:49 GMT + - Thu, 15 Jun 2023 16:35:12 GMT expires: - '-1' pragma: @@ -54,13 +54,12 @@ interactions: "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDDfl/fmpx+wna7yJ5AKee2sPu1ugQf/hS9vRupCkvz0Xlrlf7LteHOkxV7rbzt9ldeFs3ERQtuGI9urNrhnJt5gmbwH0g533pKTMC2WStYnXBppPyeW6PINXS0quPC+ZeJfFqxWVn4mOh/uyZ0mHLg1LLh1fFuO86ped3k15d7409tKVnNALPO7y4Wjn7KvnS3zqZj8OfLa1TRlHwtnIvGhCia+JUnSxKqHMe/Br4ryudimn8pS6rU4mB6dqE8bC1pdS6lIKSie4Tuc1KCDmQLUioNA6w4btDWas6MsQgzDTUY+FRog6o6TCcx9V4U01cPNQbbqIcWlubr2+ikLyaF - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, - "storageProfile": {}}}' + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -71,66 +70,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1549' + - '1841' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --uptime-sla User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-j2ppkajv.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-j2ppkajv.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDDfl/fmpx+wna7yJ5AKee2sPu1ugQf/hS9vRupCkvz0Xlrlf7LteHOkxV7rbzt9ldeFs3ERQtuGI9urNrhnJt5gmbwH0g533pKTMC2WStYnXBppPyeW6PINXS0quPC+ZeJfFqxWVn4mOh/uyZ0mHLg1LLh1fFuO86ped3k15d7409tKVnNALPO7y4Wjn7KvnS3zqZj8OfLa1TRlHwtnIvGhCia+JUnSxKqHMe/Br4ryudimn8pS6rU4mB6dqE8bC1pdS6lIKSie4Tuc1KCDmQLUioNA6w4btDWas6MsQgzDTUY+FRog6o6TCcx9V4U01cPNQbbqIcWlubr2+ikLyaF - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Base\",\n \"tier\": \"Standard\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-chfyrs1c.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-chfyrs1c.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Standard\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/774e7168-cd66-493e-9ec5-c6289a2649c6?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4c6ab7ec-e0aa-4967-aa1b-7e100df386b3?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3054' + - '3382' content-type: - application/json date: - - Tue, 28 Mar 2023 02:21:53 GMT + - Thu, 15 Jun 2023 16:35:22 GMT expires: - '-1' pragma: @@ -142,7 +142,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -161,14 +161,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --uptime-sla User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/774e7168-cd66-493e-9ec5-c6289a2649c6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4c6ab7ec-e0aa-4967-aa1b-7e100df386b3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68714e77-66cd-3e49-9ec5-c6289a2649c6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T02:21:53.5581262Z\"\n }" + string: "{\n \"name\": \"ecb76a4c-aae0-6749-aa1b-7e100df386b3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:35:22.2314418Z\"\n }" headers: cache-control: - no-cache @@ -177,7 +177,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 02:22:23 GMT + - Thu, 15 Jun 2023 16:35:23 GMT expires: - '-1' pragma: @@ -210,14 +210,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --uptime-sla User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/774e7168-cd66-493e-9ec5-c6289a2649c6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4c6ab7ec-e0aa-4967-aa1b-7e100df386b3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68714e77-66cd-3e49-9ec5-c6289a2649c6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T02:21:53.5581262Z\"\n }" + string: "{\n \"name\": \"ecb76a4c-aae0-6749-aa1b-7e100df386b3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:35:22.2314418Z\"\n }" headers: cache-control: - no-cache @@ -226,7 +226,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 02:22:53 GMT + - Thu, 15 Jun 2023 16:35:52 GMT expires: - '-1' pragma: @@ -259,14 +259,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --uptime-sla User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/774e7168-cd66-493e-9ec5-c6289a2649c6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4c6ab7ec-e0aa-4967-aa1b-7e100df386b3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68714e77-66cd-3e49-9ec5-c6289a2649c6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T02:21:53.5581262Z\"\n }" + string: "{\n \"name\": \"ecb76a4c-aae0-6749-aa1b-7e100df386b3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:35:22.2314418Z\"\n }" headers: cache-control: - no-cache @@ -275,7 +275,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 02:23:23 GMT + - Thu, 15 Jun 2023 16:36:24 GMT expires: - '-1' pragma: @@ -308,14 +308,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --uptime-sla User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/774e7168-cd66-493e-9ec5-c6289a2649c6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4c6ab7ec-e0aa-4967-aa1b-7e100df386b3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68714e77-66cd-3e49-9ec5-c6289a2649c6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T02:21:53.5581262Z\"\n }" + string: "{\n \"name\": \"ecb76a4c-aae0-6749-aa1b-7e100df386b3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:35:22.2314418Z\"\n }" headers: cache-control: - no-cache @@ -324,7 +324,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 02:23:53 GMT + - Thu, 15 Jun 2023 16:36:54 GMT expires: - '-1' pragma: @@ -357,14 +357,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --uptime-sla User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/774e7168-cd66-493e-9ec5-c6289a2649c6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4c6ab7ec-e0aa-4967-aa1b-7e100df386b3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68714e77-66cd-3e49-9ec5-c6289a2649c6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T02:21:53.5581262Z\"\n }" + string: "{\n \"name\": \"ecb76a4c-aae0-6749-aa1b-7e100df386b3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:35:22.2314418Z\"\n }" headers: cache-control: - no-cache @@ -373,7 +373,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 02:24:23 GMT + - Thu, 15 Jun 2023 16:37:24 GMT expires: - '-1' pragma: @@ -406,162 +406,15 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --uptime-sla User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/774e7168-cd66-493e-9ec5-c6289a2649c6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4c6ab7ec-e0aa-4967-aa1b-7e100df386b3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68714e77-66cd-3e49-9ec5-c6289a2649c6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T02:21:53.5581262Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 02:24:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --uptime-sla - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/774e7168-cd66-493e-9ec5-c6289a2649c6?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"68714e77-66cd-3e49-9ec5-c6289a2649c6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T02:21:53.5581262Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 02:25:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --uptime-sla - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/774e7168-cd66-493e-9ec5-c6289a2649c6?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"68714e77-66cd-3e49-9ec5-c6289a2649c6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T02:21:53.5581262Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 02:25:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret --uptime-sla - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/774e7168-cd66-493e-9ec5-c6289a2649c6?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"68714e77-66cd-3e49-9ec5-c6289a2649c6\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-28T02:21:53.5581262Z\",\n \"endTime\": - \"2023-03-28T02:26:02.6767249Z\"\n }" + string: "{\n \"name\": \"ecb76a4c-aae0-6749-aa1b-7e100df386b3\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T16:35:22.2314418Z\",\n \"\ + endTime\": \"2023-06-15T16:37:52.3161377Z\"\n }" headers: cache-control: - no-cache @@ -570,7 +423,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 02:26:24 GMT + - Thu, 15 Jun 2023 16:37:53 GMT expires: - '-1' pragma: @@ -603,59 +456,60 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --uptime-sla User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-j2ppkajv.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-j2ppkajv.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDDfl/fmpx+wna7yJ5AKee2sPu1ugQf/hS9vRupCkvz0Xlrlf7LteHOkxV7rbzt9ldeFs3ERQtuGI9urNrhnJt5gmbwH0g533pKTMC2WStYnXBppPyeW6PINXS0quPC+ZeJfFqxWVn4mOh/uyZ0mHLg1LLh1fFuO86ped3k15d7409tKVnNALPO7y4Wjn7KvnS3zqZj8OfLa1TRlHwtnIvGhCia+JUnSxKqHMe/Br4ryudimn8pS6rU4mB6dqE8bC1pdS6lIKSie4Tuc1KCDmQLUioNA6w4btDWas6MsQgzDTUY+FRog6o6TCcx9V4U01cPNQbbqIcWlubr2+ikLyaF - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/94110062-ee85-44a1-8552-4dd2e59dc24b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Base\",\n \"tier\": \"Standard\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-chfyrs1c.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-chfyrs1c.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9bd7ad12-507b-4f3b-ae3c-068fc4cfe179\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Standard\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3318' + - '3646' content-type: - application/json date: - - Tue, 28 Mar 2023 02:26:24 GMT + - Thu, 15 Jun 2023 16:37:54 GMT expires: - '-1' pragma: @@ -689,8 +543,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -698,17 +552,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9c54cb1d-0848-4b13-8465-e52ea3ea1f3d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9c729647-fdc9-488e-a1ee-d74fb90f93e1?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 28 Mar 2023 02:26:25 GMT + - Thu, 15 Jun 2023 16:37:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/9c54cb1d-0848-4b13-8465-e52ea3ea1f3d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/9c729647-fdc9-488e-a1ee-d74fb90f93e1?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_paid_sku_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_paid_sku_msi.yaml old mode 100755 new mode 100644 index 9ca1611d363..6a99cf53daf --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_paid_sku_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_paid_sku_msi.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 23 Apr 2023 12:01:26 GMT + - Thu, 15 Jun 2023 16:38:00 GMT expires: - '-1' pragma: @@ -54,12 +54,11 @@ interactions: false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDTAAK31PbLN4NRXNE+fQ9l2XTqagn2x/9R6SEGuHSEwqjSX6nxydSJNCRMtZ0390/A/ZngWTw4rRC5zTTmy6aqecbjs3e/tgsd3IJECvTBqdLOQKNjQMEI4fMMhKsK2HDracFpeuyTIQ/wchtTQ2IyEh0WFN2SPt0X6/CRtCQjJzXMpeGbUWNau3dwesrADYBuhW9P7hEb2bDOwUaHNVHatNlrtTk8ujiMyVMZ44oV8o4NOd7ODq8hWkf0YMDypSQkRHx6YGdPeYPifye7MLWHAxdVOppW1zkLX0ne9QUgMQ+kUNofY2Td3Ojzu3vGwsiwRCpbZYIGKF3e4T/TnIMr - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -70,68 +69,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1485' + - '1777' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-p0a9m4ye.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-p0a9m4ye.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": - \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDTAAK31PbLN4NRXNE+fQ9l2XTqagn2x/9R6SEGuHSEwqjSX6nxydSJNCRMtZ0390/A/ZngWTw4rRC5zTTmy6aqecbjs3e/tgsd3IJECvTBqdLOQKNjQMEI4fMMhKsK2HDracFpeuyTIQ/wchtTQ2IyEh0WFN2SPt0X6/CRtCQjJzXMpeGbUWNau3dwesrADYBuhW9P7hEb2bDOwUaHNVHatNlrtTk8ujiMyVMZ44oV8o4NOd7ODq8hWkf0YMDypSQkRHx6YGdPeYPifye7MLWHAxdVOppW1zkLX0ne9QUgMQ+kUNofY2Td3Ojzu3vGwsiwRCpbZYIGKF3e4T/TnIMr - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": - \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Standard\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-buadkzsm.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-buadkzsm.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Standard\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/829d2b88-978a-41b9-8bc2-3490ffe38a9b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce540b4b-cb63-48ea-a3b8-206f3836f6d6?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3253' + - '3543' content-type: - application/json date: - - Sun, 23 Apr 2023 12:01:32 GMT + - Thu, 15 Jun 2023 16:38:07 GMT expires: - '-1' pragma: @@ -162,14 +162,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/829d2b88-978a-41b9-8bc2-3490ffe38a9b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce540b4b-cb63-48ea-a3b8-206f3836f6d6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"882b9d82-8a97-b941-8bc2-3490ffe38a9b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:31.8918424Z\"\n }" + string: "{\n \"name\": \"4b0b54ce-63cb-ea48-a3b8-206f3836f6d6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:38:07.2474049Z\"\n }" headers: cache-control: - no-cache @@ -178,7 +178,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:01:32 GMT + - Thu, 15 Jun 2023 16:38:07 GMT expires: - '-1' pragma: @@ -211,14 +211,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/829d2b88-978a-41b9-8bc2-3490ffe38a9b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce540b4b-cb63-48ea-a3b8-206f3836f6d6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"882b9d82-8a97-b941-8bc2-3490ffe38a9b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:31.8918424Z\"\n }" + string: "{\n \"name\": \"4b0b54ce-63cb-ea48-a3b8-206f3836f6d6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:38:07.2474049Z\"\n }" headers: cache-control: - no-cache @@ -227,7 +227,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:02:02 GMT + - Thu, 15 Jun 2023 16:38:37 GMT expires: - '-1' pragma: @@ -260,14 +260,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/829d2b88-978a-41b9-8bc2-3490ffe38a9b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce540b4b-cb63-48ea-a3b8-206f3836f6d6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"882b9d82-8a97-b941-8bc2-3490ffe38a9b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:31.8918424Z\"\n }" + string: "{\n \"name\": \"4b0b54ce-63cb-ea48-a3b8-206f3836f6d6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:38:07.2474049Z\"\n }" headers: cache-control: - no-cache @@ -276,7 +276,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:02:32 GMT + - Thu, 15 Jun 2023 16:39:07 GMT expires: - '-1' pragma: @@ -309,14 +309,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/829d2b88-978a-41b9-8bc2-3490ffe38a9b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce540b4b-cb63-48ea-a3b8-206f3836f6d6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"882b9d82-8a97-b941-8bc2-3490ffe38a9b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:31.8918424Z\"\n }" + string: "{\n \"name\": \"4b0b54ce-63cb-ea48-a3b8-206f3836f6d6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:38:07.2474049Z\"\n }" headers: cache-control: - no-cache @@ -325,7 +325,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:03:02 GMT + - Thu, 15 Jun 2023 16:39:38 GMT expires: - '-1' pragma: @@ -358,14 +358,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/829d2b88-978a-41b9-8bc2-3490ffe38a9b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce540b4b-cb63-48ea-a3b8-206f3836f6d6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"882b9d82-8a97-b941-8bc2-3490ffe38a9b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:31.8918424Z\"\n }" + string: "{\n \"name\": \"4b0b54ce-63cb-ea48-a3b8-206f3836f6d6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:38:07.2474049Z\"\n }" headers: cache-control: - no-cache @@ -374,7 +374,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:03:32 GMT + - Thu, 15 Jun 2023 16:40:07 GMT expires: - '-1' pragma: @@ -407,14 +407,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/829d2b88-978a-41b9-8bc2-3490ffe38a9b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce540b4b-cb63-48ea-a3b8-206f3836f6d6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"882b9d82-8a97-b941-8bc2-3490ffe38a9b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:31.8918424Z\"\n }" + string: "{\n \"name\": \"4b0b54ce-63cb-ea48-a3b8-206f3836f6d6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:38:07.2474049Z\"\n }" headers: cache-control: - no-cache @@ -423,7 +423,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:04:02 GMT + - Thu, 15 Jun 2023 16:40:38 GMT expires: - '-1' pragma: @@ -456,14 +456,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/829d2b88-978a-41b9-8bc2-3490ffe38a9b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce540b4b-cb63-48ea-a3b8-206f3836f6d6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"882b9d82-8a97-b941-8bc2-3490ffe38a9b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:31.8918424Z\"\n }" + string: "{\n \"name\": \"4b0b54ce-63cb-ea48-a3b8-206f3836f6d6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:38:07.2474049Z\"\n }" headers: cache-control: - no-cache @@ -472,7 +472,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:04:32 GMT + - Thu, 15 Jun 2023 16:41:08 GMT expires: - '-1' pragma: @@ -505,260 +505,15 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/829d2b88-978a-41b9-8bc2-3490ffe38a9b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ce540b4b-cb63-48ea-a3b8-206f3836f6d6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"882b9d82-8a97-b941-8bc2-3490ffe38a9b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:31.8918424Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Sun, 23 Apr 2023 12:05:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --uptime-sla - User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/829d2b88-978a-41b9-8bc2-3490ffe38a9b?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"882b9d82-8a97-b941-8bc2-3490ffe38a9b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:31.8918424Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Sun, 23 Apr 2023 12:05:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --uptime-sla - User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/829d2b88-978a-41b9-8bc2-3490ffe38a9b?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"882b9d82-8a97-b941-8bc2-3490ffe38a9b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:31.8918424Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Sun, 23 Apr 2023 12:06:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --uptime-sla - User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/829d2b88-978a-41b9-8bc2-3490ffe38a9b?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"882b9d82-8a97-b941-8bc2-3490ffe38a9b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:31.8918424Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Sun, 23 Apr 2023 12:06:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --uptime-sla - User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/829d2b88-978a-41b9-8bc2-3490ffe38a9b?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"882b9d82-8a97-b941-8bc2-3490ffe38a9b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:01:31.8918424Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Sun, 23 Apr 2023 12:07:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --uptime-sla - User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/829d2b88-978a-41b9-8bc2-3490ffe38a9b?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"882b9d82-8a97-b941-8bc2-3490ffe38a9b\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-04-23T12:01:31.8918424Z\",\n \"endTime\": - \"2023-04-23T12:07:23.0253878Z\"\n }" + string: "{\n \"name\": \"4b0b54ce-63cb-ea48-a3b8-206f3836f6d6\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T16:38:07.2474049Z\",\n \"\ + endTime\": \"2023-06-15T16:41:38.1801903Z\"\n }" headers: cache-control: - no-cache @@ -767,7 +522,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:07:32 GMT + - Thu, 15 Jun 2023 16:41:38 GMT expires: - '-1' pragma: @@ -800,64 +555,65 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-p0a9m4ye.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-p0a9m4ye.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": - \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDTAAK31PbLN4NRXNE+fQ9l2XTqagn2x/9R6SEGuHSEwqjSX6nxydSJNCRMtZ0390/A/ZngWTw4rRC5zTTmy6aqecbjs3e/tgsd3IJECvTBqdLOQKNjQMEI4fMMhKsK2HDracFpeuyTIQ/wchtTQ2IyEh0WFN2SPt0X6/CRtCQjJzXMpeGbUWNau3dwesrADYBuhW9P7hEb2bDOwUaHNVHatNlrtTk8ujiMyVMZ44oV8o4NOd7ODq8hWkf0YMDypSQkRHx6YGdPeYPifye7MLWHAxdVOppW1zkLX0ne9QUgMQ+kUNofY2Td3Ojzu3vGwsiwRCpbZYIGKF3e4T/TnIMr - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/764fc6e3-71ed-4bcb-9297-57ca6b4e1c5a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Standard\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-buadkzsm.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-buadkzsm.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/aeb0f275-2193-446f-bb20-0c16610dde44\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Standard\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3906' + - '4196' content-type: - application/json date: - - Sun, 23 Apr 2023 12:07:32 GMT + - Thu, 15 Jun 2023 16:41:39 GMT expires: - '-1' pragma: @@ -889,64 +645,65 @@ interactions: ParameterSetName: - --resource-group --name --no-uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-p0a9m4ye.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-p0a9m4ye.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": - \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDTAAK31PbLN4NRXNE+fQ9l2XTqagn2x/9R6SEGuHSEwqjSX6nxydSJNCRMtZ0390/A/ZngWTw4rRC5zTTmy6aqecbjs3e/tgsd3IJECvTBqdLOQKNjQMEI4fMMhKsK2HDracFpeuyTIQ/wchtTQ2IyEh0WFN2SPt0X6/CRtCQjJzXMpeGbUWNau3dwesrADYBuhW9P7hEb2bDOwUaHNVHatNlrtTk8ujiMyVMZ44oV8o4NOd7ODq8hWkf0YMDypSQkRHx6YGdPeYPifye7MLWHAxdVOppW1zkLX0ne9QUgMQ+kUNofY2Td3Ojzu3vGwsiwRCpbZYIGKF3e4T/TnIMr - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/764fc6e3-71ed-4bcb-9297-57ca6b4e1c5a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Standard\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-buadkzsm.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-buadkzsm.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/aeb0f275-2193-446f-bb20-0c16610dde44\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Standard\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3906' + - '4196' content-type: - application/json date: - - Sun, 23 Apr 2023 12:07:33 GMT + - Thu, 15 Jun 2023 16:41:41 GMT expires: - '-1' pragma: @@ -974,14 +731,14 @@ interactions: "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDTAAK31PbLN4NRXNE+fQ9l2XTqagn2x/9R6SEGuHSEwqjSX6nxydSJNCRMtZ0390/A/ZngWTw4rRC5zTTmy6aqecbjs3e/tgsd3IJECvTBqdLOQKNjQMEI4fMMhKsK2HDracFpeuyTIQ/wchtTQ2IyEh0WFN2SPt0X6/CRtCQjJzXMpeGbUWNau3dwesrADYBuhW9P7hEb2bDOwUaHNVHatNlrtTk8ujiMyVMZ44oV8o4NOd7ODq8hWkf0YMDypSQkRHx6YGdPeYPifye7MLWHAxdVOppW1zkLX0ne9QUgMQ+kUNofY2Td3Ojzu3vGwsiwRCpbZYIGKF3e4T/TnIMr - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/764fc6e3-71ed-4bcb-9297-57ca6b4e1c5a"}]}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/aeb0f275-2193-446f-bb20-0c16610dde44"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -997,72 +754,73 @@ interactions: Connection: - keep-alive Content-Length: - - '2464' + - '2793' Content-Type: - application/json ParameterSetName: - --resource-group --name --no-uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-p0a9m4ye.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-p0a9m4ye.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": - \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDTAAK31PbLN4NRXNE+fQ9l2XTqagn2x/9R6SEGuHSEwqjSX6nxydSJNCRMtZ0390/A/ZngWTw4rRC5zTTmy6aqecbjs3e/tgsd3IJECvTBqdLOQKNjQMEI4fMMhKsK2HDracFpeuyTIQ/wchtTQ2IyEh0WFN2SPt0X6/CRtCQjJzXMpeGbUWNau3dwesrADYBuhW9P7hEb2bDOwUaHNVHatNlrtTk8ujiMyVMZ44oV8o4NOd7ODq8hWkf0YMDypSQkRHx6YGdPeYPifye7MLWHAxdVOppW1zkLX0ne9QUgMQ+kUNofY2Td3Ojzu3vGwsiwRCpbZYIGKF3e4T/TnIMr - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/764fc6e3-71ed-4bcb-9297-57ca6b4e1c5a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-buadkzsm.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-buadkzsm.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/aeb0f275-2193-446f-bb20-0c16610dde44\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e674131-5fe4-4b78-a74a-9d452c5fcca9?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b511b2e-7ba4-459d-87c9-cf87a3915d25?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3900' + - '4190' content-type: - application/json date: - - Sun, 23 Apr 2023 12:07:37 GMT + - Thu, 15 Jun 2023 16:41:47 GMT expires: - '-1' pragma: @@ -1078,7 +836,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1096,23 +854,23 @@ interactions: ParameterSetName: - --resource-group --name --no-uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e674131-5fe4-4b78-a74a-9d452c5fcca9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b511b2e-7ba4-459d-87c9-cf87a3915d25?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3141671e-e45f-784b-a74a-9d452c5fcca9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:07:38.144821Z\"\n }" + string: "{\n \"name\": \"2e1b515b-a47b-9d45-87c9-cf87a3915d25\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:41:46.5759354Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Sun, 23 Apr 2023 12:07:37 GMT + - Thu, 15 Jun 2023 16:41:47 GMT expires: - '-1' pragma: @@ -1144,23 +902,23 @@ interactions: ParameterSetName: - --resource-group --name --no-uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e674131-5fe4-4b78-a74a-9d452c5fcca9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b511b2e-7ba4-459d-87c9-cf87a3915d25?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3141671e-e45f-784b-a74a-9d452c5fcca9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:07:38.144821Z\"\n }" + string: "{\n \"name\": \"2e1b515b-a47b-9d45-87c9-cf87a3915d25\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:41:46.5759354Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Sun, 23 Apr 2023 12:08:07 GMT + - Thu, 15 Jun 2023 16:42:17 GMT expires: - '-1' pragma: @@ -1192,23 +950,23 @@ interactions: ParameterSetName: - --resource-group --name --no-uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e674131-5fe4-4b78-a74a-9d452c5fcca9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b511b2e-7ba4-459d-87c9-cf87a3915d25?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3141671e-e45f-784b-a74a-9d452c5fcca9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:07:38.144821Z\"\n }" + string: "{\n \"name\": \"2e1b515b-a47b-9d45-87c9-cf87a3915d25\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:41:46.5759354Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Sun, 23 Apr 2023 12:08:38 GMT + - Thu, 15 Jun 2023 16:42:48 GMT expires: - '-1' pragma: @@ -1240,23 +998,23 @@ interactions: ParameterSetName: - --resource-group --name --no-uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e674131-5fe4-4b78-a74a-9d452c5fcca9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b511b2e-7ba4-459d-87c9-cf87a3915d25?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3141671e-e45f-784b-a74a-9d452c5fcca9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:07:38.144821Z\"\n }" + string: "{\n \"name\": \"2e1b515b-a47b-9d45-87c9-cf87a3915d25\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:41:46.5759354Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Sun, 23 Apr 2023 12:09:08 GMT + - Thu, 15 Jun 2023 16:43:18 GMT expires: - '-1' pragma: @@ -1288,23 +1046,23 @@ interactions: ParameterSetName: - --resource-group --name --no-uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e674131-5fe4-4b78-a74a-9d452c5fcca9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b511b2e-7ba4-459d-87c9-cf87a3915d25?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3141671e-e45f-784b-a74a-9d452c5fcca9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:07:38.144821Z\"\n }" + string: "{\n \"name\": \"2e1b515b-a47b-9d45-87c9-cf87a3915d25\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:41:46.5759354Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Sun, 23 Apr 2023 12:09:38 GMT + - Thu, 15 Jun 2023 16:43:48 GMT expires: - '-1' pragma: @@ -1336,15 +1094,15 @@ interactions: ParameterSetName: - --resource-group --name --no-uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1e674131-5fe4-4b78-a74a-9d452c5fcca9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5b511b2e-7ba4-459d-87c9-cf87a3915d25?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3141671e-e45f-784b-a74a-9d452c5fcca9\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-04-23T12:07:38.144821Z\",\n \"endTime\": - \"2023-04-23T12:09:49.7081223Z\"\n }" + string: "{\n \"name\": \"2e1b515b-a47b-9d45-87c9-cf87a3915d25\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T16:41:46.5759354Z\",\n \"\ + endTime\": \"2023-06-15T16:44:07.726305Z\"\n }" headers: cache-control: - no-cache @@ -1353,7 +1111,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:10:08 GMT + - Thu, 15 Jun 2023 16:44:18 GMT expires: - '-1' pragma: @@ -1385,64 +1143,65 @@ interactions: ParameterSetName: - --resource-group --name --no-uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-p0a9m4ye.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-p0a9m4ye.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": - \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDTAAK31PbLN4NRXNE+fQ9l2XTqagn2x/9R6SEGuHSEwqjSX6nxydSJNCRMtZ0390/A/ZngWTw4rRC5zTTmy6aqecbjs3e/tgsd3IJECvTBqdLOQKNjQMEI4fMMhKsK2HDracFpeuyTIQ/wchtTQ2IyEh0WFN2SPt0X6/CRtCQjJzXMpeGbUWNau3dwesrADYBuhW9P7hEb2bDOwUaHNVHatNlrtTk8ujiMyVMZ44oV8o4NOd7ODq8hWkf0YMDypSQkRHx6YGdPeYPifye7MLWHAxdVOppW1zkLX0ne9QUgMQ+kUNofY2Td3Ojzu3vGwsiwRCpbZYIGKF3e4T/TnIMr - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/764fc6e3-71ed-4bcb-9297-57ca6b4e1c5a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-buadkzsm.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-buadkzsm.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/aeb0f275-2193-446f-bb20-0c16610dde44\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3902' + - '4192' content-type: - application/json date: - - Sun, 23 Apr 2023 12:10:08 GMT + - Thu, 15 Jun 2023 16:44:18 GMT expires: - '-1' pragma: @@ -1474,64 +1233,65 @@ interactions: ParameterSetName: - --resource-group --name --uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-p0a9m4ye.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-p0a9m4ye.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": - \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDTAAK31PbLN4NRXNE+fQ9l2XTqagn2x/9R6SEGuHSEwqjSX6nxydSJNCRMtZ0390/A/ZngWTw4rRC5zTTmy6aqecbjs3e/tgsd3IJECvTBqdLOQKNjQMEI4fMMhKsK2HDracFpeuyTIQ/wchtTQ2IyEh0WFN2SPt0X6/CRtCQjJzXMpeGbUWNau3dwesrADYBuhW9P7hEb2bDOwUaHNVHatNlrtTk8ujiMyVMZ44oV8o4NOd7ODq8hWkf0YMDypSQkRHx6YGdPeYPifye7MLWHAxdVOppW1zkLX0ne9QUgMQ+kUNofY2Td3Ojzu3vGwsiwRCpbZYIGKF3e4T/TnIMr - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/764fc6e3-71ed-4bcb-9297-57ca6b4e1c5a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-buadkzsm.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-buadkzsm.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/aeb0f275-2193-446f-bb20-0c16610dde44\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3902' + - '4192' content-type: - application/json date: - - Sun, 23 Apr 2023 12:10:09 GMT + - Thu, 15 Jun 2023 16:44:21 GMT expires: - '-1' pragma: @@ -1559,14 +1319,14 @@ interactions: "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDTAAK31PbLN4NRXNE+fQ9l2XTqagn2x/9R6SEGuHSEwqjSX6nxydSJNCRMtZ0390/A/ZngWTw4rRC5zTTmy6aqecbjs3e/tgsd3IJECvTBqdLOQKNjQMEI4fMMhKsK2HDracFpeuyTIQ/wchtTQ2IyEh0WFN2SPt0X6/CRtCQjJzXMpeGbUWNau3dwesrADYBuhW9P7hEb2bDOwUaHNVHatNlrtTk8ujiMyVMZ44oV8o4NOd7ODq8hWkf0YMDypSQkRHx6YGdPeYPifye7MLWHAxdVOppW1zkLX0ne9QUgMQ+kUNofY2Td3Ojzu3vGwsiwRCpbZYIGKF3e4T/TnIMr - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/764fc6e3-71ed-4bcb-9297-57ca6b4e1c5a"}]}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/aeb0f275-2193-446f-bb20-0c16610dde44"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -1582,72 +1342,73 @@ interactions: Connection: - keep-alive Content-Length: - - '2468' + - '2797' Content-Type: - application/json ParameterSetName: - --resource-group --name --uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-p0a9m4ye.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-p0a9m4ye.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": - \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDTAAK31PbLN4NRXNE+fQ9l2XTqagn2x/9R6SEGuHSEwqjSX6nxydSJNCRMtZ0390/A/ZngWTw4rRC5zTTmy6aqecbjs3e/tgsd3IJECvTBqdLOQKNjQMEI4fMMhKsK2HDracFpeuyTIQ/wchtTQ2IyEh0WFN2SPt0X6/CRtCQjJzXMpeGbUWNau3dwesrADYBuhW9P7hEb2bDOwUaHNVHatNlrtTk8ujiMyVMZ44oV8o4NOd7ODq8hWkf0YMDypSQkRHx6YGdPeYPifye7MLWHAxdVOppW1zkLX0ne9QUgMQ+kUNofY2Td3Ojzu3vGwsiwRCpbZYIGKF3e4T/TnIMr - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/764fc6e3-71ed-4bcb-9297-57ca6b4e1c5a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Standard\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-buadkzsm.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-buadkzsm.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/aeb0f275-2193-446f-bb20-0c16610dde44\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Standard\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5721c7da-a2c8-4e79-8665-72dec8b2421b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7cc578fa-4f65-4bea-a38a-0eef2d7e9ccc?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3904' + - '4194' content-type: - application/json date: - - Sun, 23 Apr 2023 12:10:13 GMT + - Thu, 15 Jun 2023 16:44:27 GMT expires: - '-1' pragma: @@ -1663,55 +1424,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --uptime-sla - User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5721c7da-a2c8-4e79-8665-72dec8b2421b?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"dac72157-c8a2-794e-8665-72dec8b2421b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:10:14.1617031Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Sun, 23 Apr 2023 12:10:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff + - '1199' status: code: 200 message: OK @@ -1729,14 +1442,14 @@ interactions: ParameterSetName: - --resource-group --name --uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5721c7da-a2c8-4e79-8665-72dec8b2421b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7cc578fa-4f65-4bea-a38a-0eef2d7e9ccc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dac72157-c8a2-794e-8665-72dec8b2421b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:10:14.1617031Z\"\n }" + string: "{\n \"name\": \"fa78c57c-654f-ea4b-a38a-0eef2d7e9ccc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:44:26.6234416Z\"\n }" headers: cache-control: - no-cache @@ -1745,7 +1458,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:10:43 GMT + - Thu, 15 Jun 2023 16:44:27 GMT expires: - '-1' pragma: @@ -1777,14 +1490,14 @@ interactions: ParameterSetName: - --resource-group --name --uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5721c7da-a2c8-4e79-8665-72dec8b2421b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7cc578fa-4f65-4bea-a38a-0eef2d7e9ccc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dac72157-c8a2-794e-8665-72dec8b2421b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:10:14.1617031Z\"\n }" + string: "{\n \"name\": \"fa78c57c-654f-ea4b-a38a-0eef2d7e9ccc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:44:26.6234416Z\"\n }" headers: cache-control: - no-cache @@ -1793,7 +1506,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:11:13 GMT + - Thu, 15 Jun 2023 16:44:57 GMT expires: - '-1' pragma: @@ -1825,14 +1538,14 @@ interactions: ParameterSetName: - --resource-group --name --uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5721c7da-a2c8-4e79-8665-72dec8b2421b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7cc578fa-4f65-4bea-a38a-0eef2d7e9ccc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dac72157-c8a2-794e-8665-72dec8b2421b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:10:14.1617031Z\"\n }" + string: "{\n \"name\": \"fa78c57c-654f-ea4b-a38a-0eef2d7e9ccc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:44:26.6234416Z\"\n }" headers: cache-control: - no-cache @@ -1841,7 +1554,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:11:44 GMT + - Thu, 15 Jun 2023 16:45:27 GMT expires: - '-1' pragma: @@ -1873,14 +1586,14 @@ interactions: ParameterSetName: - --resource-group --name --uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5721c7da-a2c8-4e79-8665-72dec8b2421b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7cc578fa-4f65-4bea-a38a-0eef2d7e9ccc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dac72157-c8a2-794e-8665-72dec8b2421b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:10:14.1617031Z\"\n }" + string: "{\n \"name\": \"fa78c57c-654f-ea4b-a38a-0eef2d7e9ccc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:44:26.6234416Z\"\n }" headers: cache-control: - no-cache @@ -1889,7 +1602,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:12:14 GMT + - Thu, 15 Jun 2023 16:45:58 GMT expires: - '-1' pragma: @@ -1921,14 +1634,14 @@ interactions: ParameterSetName: - --resource-group --name --uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5721c7da-a2c8-4e79-8665-72dec8b2421b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7cc578fa-4f65-4bea-a38a-0eef2d7e9ccc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dac72157-c8a2-794e-8665-72dec8b2421b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-23T12:10:14.1617031Z\"\n }" + string: "{\n \"name\": \"fa78c57c-654f-ea4b-a38a-0eef2d7e9ccc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:44:26.6234416Z\"\n }" headers: cache-control: - no-cache @@ -1937,7 +1650,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:12:44 GMT + - Thu, 15 Jun 2023 16:46:28 GMT expires: - '-1' pragma: @@ -1969,15 +1682,15 @@ interactions: ParameterSetName: - --resource-group --name --uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5721c7da-a2c8-4e79-8665-72dec8b2421b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7cc578fa-4f65-4bea-a38a-0eef2d7e9ccc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"dac72157-c8a2-794e-8665-72dec8b2421b\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-04-23T12:10:14.1617031Z\",\n \"endTime\": - \"2023-04-23T12:12:49.2335055Z\"\n }" + string: "{\n \"name\": \"fa78c57c-654f-ea4b-a38a-0eef2d7e9ccc\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T16:44:26.6234416Z\",\n \"\ + endTime\": \"2023-06-15T16:46:56.1021678Z\"\n }" headers: cache-control: - no-cache @@ -1986,7 +1699,7 @@ interactions: content-type: - application/json date: - - Sun, 23 Apr 2023 12:13:14 GMT + - Thu, 15 Jun 2023 16:46:58 GMT expires: - '-1' pragma: @@ -2018,64 +1731,65 @@ interactions: ParameterSetName: - --resource-group --name --uptime-sla User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-p0a9m4ye.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-p0a9m4ye.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": - \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDTAAK31PbLN4NRXNE+fQ9l2XTqagn2x/9R6SEGuHSEwqjSX6nxydSJNCRMtZ0390/A/ZngWTw4rRC5zTTmy6aqecbjs3e/tgsd3IJECvTBqdLOQKNjQMEI4fMMhKsK2HDracFpeuyTIQ/wchtTQ2IyEh0WFN2SPt0X6/CRtCQjJzXMpeGbUWNau3dwesrADYBuhW9P7hEb2bDOwUaHNVHatNlrtTk8ujiMyVMZ44oV8o4NOd7ODq8hWkf0YMDypSQkRHx6YGdPeYPifye7MLWHAxdVOppW1zkLX0ne9QUgMQ+kUNofY2Td3Ojzu3vGwsiwRCpbZYIGKF3e4T/TnIMr - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/764fc6e3-71ed-4bcb-9297-57ca6b4e1c5a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Standard\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-buadkzsm.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-buadkzsm.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/aeb0f275-2193-446f-bb20-0c16610dde44\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Standard\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3906' + - '4196' content-type: - application/json date: - - Sun, 23 Apr 2023 12:13:15 GMT + - Thu, 15 Jun 2023 16:46:59 GMT expires: - '-1' pragma: @@ -2109,8 +1823,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.48.0 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -2118,17 +1832,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5148565d-74d1-4922-884c-10eece86d1c0?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebdf556c-9e4e-4ab0-93b7-f7192b6e1721?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Sun, 23 Apr 2023 12:13:15 GMT + - Thu, 15 Jun 2023 16:47:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/5148565d-74d1-4922-884c-10eece86d1c0?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/ebdf556c-9e4e-4ab0-93b7-f7192b6e1721?api-version=2016-03-30 pragma: - no-cache server: @@ -2138,7 +1852,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ppg.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ppg.yaml old mode 100755 new mode 100644 index 14febdc8224..9268e13fc72 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ppg.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ppg.yaml @@ -17,15 +17,15 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004?api-version=2022-11-01 response: body: - string: "{\r\n \"name\": \"clippg000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004\",\r\n - \ \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": - \"Standard\"\r\n }\r\n}" + string: "{\r\n \"name\": \"clippg000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004\"\ + ,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\ + : \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\ + : \"Standard\"\r\n }\r\n}" headers: cache-control: - no-cache @@ -34,7 +34,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:43:50 GMT + - Thu, 15 Jun 2023 16:47:13 GMT expires: - '-1' pragma: @@ -49,7 +49,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/PutDeletePPG3Min;99,Microsoft.Compute/PutDeletePPG30Min;499 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -68,8 +68,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -85,7 +85,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:43:50 GMT + - Thu, 15 Jun 2023 16:47:14 GMT expires: - '-1' pragma: @@ -108,13 +108,12 @@ interactions: -1.0, "nodeTaints": [], "proximityPlacementGroupID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004", "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": - {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, - "storageProfile": {}}}' + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -125,67 +124,136 @@ interactions: Connection: - keep-alive Content-Length: - - '1683' + - '1975' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-34abu2rn.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000003-34abu2rn.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"proximityPlacementGroupID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"details\": null,\n\ + \ \"message\": \"Service principal clientID: 4cbeba56-99ee-4f79-bccb-62c0f1de1679\ + \ not found in Active Directory tenant 72f988bf-86f1-41af-91ab-2d7cd011db47,\ + \ Please see https://aka.ms/aks-sp-help for more details.\",\n \"subcode\"\ + : \"ServicePrincipalNotFound\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '313' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 16:47:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000003", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": + false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": + -1.0, "nodeTaints": [], "proximityPlacementGroupID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004", + "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, + "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": + {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1975' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --ppg + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-533ffwgm.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000003-533ffwgm.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"proximityPlacementGroupID\":\ + \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004\"\ + ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n\ + \ \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ + : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e45e79b0-ccaf-4191-96ae-cd8e64bda44b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7d757d1-3a77-437b-8b26-8429c1f17781?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3234' + - '3562' content-type: - application/json date: - - Wed, 15 Mar 2023 10:43:54 GMT + - Thu, 15 Jun 2023 16:47:28 GMT expires: - '-1' pragma: @@ -197,7 +265,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' status: code: 201 message: Created @@ -216,14 +284,63 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7d757d1-3a77-437b-8b26-8429c1f17781?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d157d7f7-773a-7b43-8b26-8429c1f17781\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:47:28.3739435Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 16:47:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --ppg + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e45e79b0-ccaf-4191-96ae-cd8e64bda44b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7d757d1-3a77-437b-8b26-8429c1f17781?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b0795ee4-afcc-9141-96ae-cd8e64bda44b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:54.2523947Z\"\n }" + string: "{\n \"name\": \"d157d7f7-773a-7b43-8b26-8429c1f17781\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:47:28.3739435Z\"\n }" headers: cache-control: - no-cache @@ -232,7 +349,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:44:24 GMT + - Thu, 15 Jun 2023 16:47:59 GMT expires: - '-1' pragma: @@ -265,14 +382,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e45e79b0-ccaf-4191-96ae-cd8e64bda44b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7d757d1-3a77-437b-8b26-8429c1f17781?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b0795ee4-afcc-9141-96ae-cd8e64bda44b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:54.2523947Z\"\n }" + string: "{\n \"name\": \"d157d7f7-773a-7b43-8b26-8429c1f17781\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:47:28.3739435Z\"\n }" headers: cache-control: - no-cache @@ -281,7 +398,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:44:53 GMT + - Thu, 15 Jun 2023 16:48:29 GMT expires: - '-1' pragma: @@ -314,14 +431,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e45e79b0-ccaf-4191-96ae-cd8e64bda44b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7d757d1-3a77-437b-8b26-8429c1f17781?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b0795ee4-afcc-9141-96ae-cd8e64bda44b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:54.2523947Z\"\n }" + string: "{\n \"name\": \"d157d7f7-773a-7b43-8b26-8429c1f17781\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:47:28.3739435Z\"\n }" headers: cache-control: - no-cache @@ -330,7 +447,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:45:24 GMT + - Thu, 15 Jun 2023 16:48:59 GMT expires: - '-1' pragma: @@ -363,14 +480,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e45e79b0-ccaf-4191-96ae-cd8e64bda44b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7d757d1-3a77-437b-8b26-8429c1f17781?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b0795ee4-afcc-9141-96ae-cd8e64bda44b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:54.2523947Z\"\n }" + string: "{\n \"name\": \"d157d7f7-773a-7b43-8b26-8429c1f17781\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:47:28.3739435Z\"\n }" headers: cache-control: - no-cache @@ -379,7 +496,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:45:54 GMT + - Thu, 15 Jun 2023 16:49:29 GMT expires: - '-1' pragma: @@ -412,14 +529,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e45e79b0-ccaf-4191-96ae-cd8e64bda44b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7d757d1-3a77-437b-8b26-8429c1f17781?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b0795ee4-afcc-9141-96ae-cd8e64bda44b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:54.2523947Z\"\n }" + string: "{\n \"name\": \"d157d7f7-773a-7b43-8b26-8429c1f17781\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:47:28.3739435Z\"\n }" headers: cache-control: - no-cache @@ -428,7 +545,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:46:24 GMT + - Thu, 15 Jun 2023 16:50:00 GMT expires: - '-1' pragma: @@ -461,14 +578,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e45e79b0-ccaf-4191-96ae-cd8e64bda44b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7d757d1-3a77-437b-8b26-8429c1f17781?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b0795ee4-afcc-9141-96ae-cd8e64bda44b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:54.2523947Z\"\n }" + string: "{\n \"name\": \"d157d7f7-773a-7b43-8b26-8429c1f17781\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:47:28.3739435Z\"\n }" headers: cache-control: - no-cache @@ -477,7 +594,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:46:54 GMT + - Thu, 15 Jun 2023 16:50:30 GMT expires: - '-1' pragma: @@ -510,14 +627,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e45e79b0-ccaf-4191-96ae-cd8e64bda44b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7d757d1-3a77-437b-8b26-8429c1f17781?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b0795ee4-afcc-9141-96ae-cd8e64bda44b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:54.2523947Z\"\n }" + string: "{\n \"name\": \"d157d7f7-773a-7b43-8b26-8429c1f17781\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:47:28.3739435Z\"\n }" headers: cache-control: - no-cache @@ -526,7 +643,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:47:24 GMT + - Thu, 15 Jun 2023 16:51:00 GMT expires: - '-1' pragma: @@ -559,14 +676,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e45e79b0-ccaf-4191-96ae-cd8e64bda44b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7d757d1-3a77-437b-8b26-8429c1f17781?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b0795ee4-afcc-9141-96ae-cd8e64bda44b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:54.2523947Z\"\n }" + string: "{\n \"name\": \"d157d7f7-773a-7b43-8b26-8429c1f17781\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:47:28.3739435Z\"\n }" headers: cache-control: - no-cache @@ -575,7 +692,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:47:54 GMT + - Thu, 15 Jun 2023 16:51:30 GMT expires: - '-1' pragma: @@ -608,14 +725,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e45e79b0-ccaf-4191-96ae-cd8e64bda44b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7d757d1-3a77-437b-8b26-8429c1f17781?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b0795ee4-afcc-9141-96ae-cd8e64bda44b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:54.2523947Z\"\n }" + string: "{\n \"name\": \"d157d7f7-773a-7b43-8b26-8429c1f17781\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:47:28.3739435Z\"\n }" headers: cache-control: - no-cache @@ -624,7 +741,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:48:25 GMT + - Thu, 15 Jun 2023 16:52:00 GMT expires: - '-1' pragma: @@ -657,14 +774,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e45e79b0-ccaf-4191-96ae-cd8e64bda44b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7d757d1-3a77-437b-8b26-8429c1f17781?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b0795ee4-afcc-9141-96ae-cd8e64bda44b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:43:54.2523947Z\"\n }" + string: "{\n \"name\": \"d157d7f7-773a-7b43-8b26-8429c1f17781\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:47:28.3739435Z\"\n }" headers: cache-control: - no-cache @@ -673,7 +790,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:48:55 GMT + - Thu, 15 Jun 2023 16:52:30 GMT expires: - '-1' pragma: @@ -706,15 +823,15 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e45e79b0-ccaf-4191-96ae-cd8e64bda44b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7d757d1-3a77-437b-8b26-8429c1f17781?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b0795ee4-afcc-9141-96ae-cd8e64bda44b\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:43:54.2523947Z\",\n \"endTime\": - \"2023-03-15T10:49:06.6867444Z\"\n }" + string: "{\n \"name\": \"d157d7f7-773a-7b43-8b26-8429c1f17781\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T16:47:28.3739435Z\",\n \"\ + endTime\": \"2023-06-15T16:52:35.5869708Z\"\n }" headers: cache-control: - no-cache @@ -723,7 +840,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:49:24 GMT + - Thu, 15 Jun 2023 16:53:00 GMT expires: - '-1' pragma: @@ -756,60 +873,62 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-34abu2rn.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000003-34abu2rn.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"proximityPlacementGroupID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/263c0b19-f54d-4111-b27d-4de803ebe28b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-533ffwgm.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000003-533ffwgm.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"proximityPlacementGroupID\":\ + \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004\"\ + ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n\ + \ \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ + : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8a2d36d4-814e-4ec7-b5db-d8126e85d0bf\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3498' + - '3826' content-type: - application/json date: - - Wed, 15 Mar 2023 10:49:25 GMT + - Thu, 15 Jun 2023 16:53:01 GMT expires: - '-1' pragma: @@ -841,34 +960,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"proximityPlacementGroupID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"proximityPlacementGroupID\":\ + \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004\"\ + ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1220' + - '1221' content-type: - application/json date: - - Wed, 15 Mar 2023 10:49:26 GMT + - Thu, 15 Jun 2023 16:53:04 GMT expires: - '-1' pragma: @@ -909,35 +1029,37 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/p000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/p000002\",\n - \ \"name\": \"p000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"proximityPlacementGroupID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": - \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/p000002\"\ + ,\n \"name\": \"p000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"proximityPlacementGroupID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004\"\ + ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1575159e-6f6f-4b98-92d1-8a2c157beead?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/37c76f3b-f833-4b92-869b-b39765f5e5fd?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Wed, 15 Mar 2023 10:49:29 GMT + - Thu, 15 Jun 2023 16:53:10 GMT expires: - '-1' pragma: @@ -949,7 +1071,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 201 message: Created @@ -967,14 +1089,62 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/37c76f3b-f833-4b92-869b-b39765f5e5fd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"3b6fc737-33f8-924b-869b-b39765f5e5fd\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:53:10.4215908Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 16:53:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name -n --ppg + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1575159e-6f6f-4b98-92d1-8a2c157beead?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/37c76f3b-f833-4b92-869b-b39765f5e5fd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9e157515-6f6f-984b-92d1-8a2c157beead\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:49:30.3941491Z\"\n }" + string: "{\n \"name\": \"3b6fc737-33f8-924b-869b-b39765f5e5fd\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:53:10.4215908Z\"\n }" headers: cache-control: - no-cache @@ -983,7 +1153,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:49:59 GMT + - Thu, 15 Jun 2023 16:53:40 GMT expires: - '-1' pragma: @@ -1015,14 +1185,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1575159e-6f6f-4b98-92d1-8a2c157beead?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/37c76f3b-f833-4b92-869b-b39765f5e5fd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9e157515-6f6f-984b-92d1-8a2c157beead\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:49:30.3941491Z\"\n }" + string: "{\n \"name\": \"3b6fc737-33f8-924b-869b-b39765f5e5fd\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:53:10.4215908Z\"\n }" headers: cache-control: - no-cache @@ -1031,7 +1201,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:50:30 GMT + - Thu, 15 Jun 2023 16:54:10 GMT expires: - '-1' pragma: @@ -1063,14 +1233,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1575159e-6f6f-4b98-92d1-8a2c157beead?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/37c76f3b-f833-4b92-869b-b39765f5e5fd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9e157515-6f6f-984b-92d1-8a2c157beead\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:49:30.3941491Z\"\n }" + string: "{\n \"name\": \"3b6fc737-33f8-924b-869b-b39765f5e5fd\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:53:10.4215908Z\"\n }" headers: cache-control: - no-cache @@ -1079,7 +1249,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:51:00 GMT + - Thu, 15 Jun 2023 16:54:40 GMT expires: - '-1' pragma: @@ -1111,14 +1281,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1575159e-6f6f-4b98-92d1-8a2c157beead?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/37c76f3b-f833-4b92-869b-b39765f5e5fd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9e157515-6f6f-984b-92d1-8a2c157beead\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:49:30.3941491Z\"\n }" + string: "{\n \"name\": \"3b6fc737-33f8-924b-869b-b39765f5e5fd\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:53:10.4215908Z\"\n }" headers: cache-control: - no-cache @@ -1127,7 +1297,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:51:30 GMT + - Thu, 15 Jun 2023 16:55:10 GMT expires: - '-1' pragma: @@ -1159,14 +1329,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1575159e-6f6f-4b98-92d1-8a2c157beead?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/37c76f3b-f833-4b92-869b-b39765f5e5fd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9e157515-6f6f-984b-92d1-8a2c157beead\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:49:30.3941491Z\"\n }" + string: "{\n \"name\": \"3b6fc737-33f8-924b-869b-b39765f5e5fd\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:53:10.4215908Z\"\n }" headers: cache-control: - no-cache @@ -1175,7 +1345,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:52:00 GMT + - Thu, 15 Jun 2023 16:55:41 GMT expires: - '-1' pragma: @@ -1207,14 +1377,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1575159e-6f6f-4b98-92d1-8a2c157beead?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/37c76f3b-f833-4b92-869b-b39765f5e5fd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9e157515-6f6f-984b-92d1-8a2c157beead\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:49:30.3941491Z\"\n }" + string: "{\n \"name\": \"3b6fc737-33f8-924b-869b-b39765f5e5fd\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:53:10.4215908Z\"\n }" headers: cache-control: - no-cache @@ -1223,7 +1393,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:52:30 GMT + - Thu, 15 Jun 2023 16:56:11 GMT expires: - '-1' pragma: @@ -1255,24 +1425,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1575159e-6f6f-4b98-92d1-8a2c157beead?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/37c76f3b-f833-4b92-869b-b39765f5e5fd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9e157515-6f6f-984b-92d1-8a2c157beead\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:49:30.3941491Z\",\n \"endTime\": - \"2023-03-15T10:52:48.609554Z\"\n }" + string: "{\n \"name\": \"3b6fc737-33f8-924b-869b-b39765f5e5fd\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T16:53:10.4215908Z\",\n \"\ + endTime\": \"2023-06-15T16:56:28.6552815Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 10:52:59 GMT + - Thu, 15 Jun 2023 16:56:41 GMT expires: - '-1' pragma: @@ -1304,33 +1474,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/p000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/p000002\",\n - \ \"name\": \"p000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"proximityPlacementGroupID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": - \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/p000002\"\ + ,\n \"name\": \"p000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"proximityPlacementGroupID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004\"\ + ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json date: - - Wed, 15 Mar 2023 10:53:00 GMT + - Thu, 15 Jun 2023 16:56:41 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ppg_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ppg_msi.yaml old mode 100755 new mode 100644 index 434d53eeba0..97f8f0a070a --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ppg_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_ppg_msi.yaml @@ -17,15 +17,15 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-compute/29.1.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004?api-version=2022-11-01 response: body: - string: "{\r\n \"name\": \"clippg000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004\",\r\n - \ \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": - \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": - \"Standard\"\r\n }\r\n}" + string: "{\r\n \"name\": \"clippg000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004\"\ + ,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\ + : \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\ + : \"Standard\"\r\n }\r\n}" headers: cache-control: - no-cache @@ -34,7 +34,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:47:34 GMT + - Thu, 15 Jun 2023 16:56:50 GMT expires: - '-1' pragma: @@ -49,7 +49,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/PutDeletePPG3Min;99,Microsoft.Compute/PutDeletePPG30Min;498 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -68,8 +68,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -85,7 +85,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:47:34 GMT + - Thu, 15 Jun 2023 16:56:50 GMT expires: - '-1' pragma: @@ -109,12 +109,11 @@ interactions: -1.0, "nodeTaints": [], "proximityPlacementGroupID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004", "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": - {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -125,69 +124,71 @@ interactions: Connection: - keep-alive Content-Length: - - '1619' + - '1911' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-u5pg9qsy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000003-u5pg9qsy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"proximityPlacementGroupID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-qf1ex9fh.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000003-qf1ex9fh.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"proximityPlacementGroupID\":\ + \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004\"\ + ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n\ + \ \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ + : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08b24d45-0616-4ad4-bf56-655fb307759b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f42c692a-e519-489c-b7cb-80206dad3102?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3395' + - '3723' content-type: - application/json date: - - Wed, 15 Mar 2023 10:47:39 GMT + - Thu, 15 Jun 2023 16:56:57 GMT expires: - '-1' pragma: @@ -199,7 +200,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1198' status: code: 201 message: Created @@ -218,23 +219,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08b24d45-0616-4ad4-bf56-655fb307759b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f42c692a-e519-489c-b7cb-80206dad3102?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"454db208-1606-d44a-bf56-655fb307759b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:39.440689Z\"\n }" + string: "{\n \"name\": \"2a692cf4-19e5-9c48-b7cb-80206dad3102\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:56:56.9220619Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:48:08 GMT + - Thu, 15 Jun 2023 16:56:57 GMT expires: - '-1' pragma: @@ -267,23 +268,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08b24d45-0616-4ad4-bf56-655fb307759b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f42c692a-e519-489c-b7cb-80206dad3102?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"454db208-1606-d44a-bf56-655fb307759b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:39.440689Z\"\n }" + string: "{\n \"name\": \"2a692cf4-19e5-9c48-b7cb-80206dad3102\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:56:56.9220619Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:48:39 GMT + - Thu, 15 Jun 2023 16:57:27 GMT expires: - '-1' pragma: @@ -316,23 +317,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08b24d45-0616-4ad4-bf56-655fb307759b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f42c692a-e519-489c-b7cb-80206dad3102?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"454db208-1606-d44a-bf56-655fb307759b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:39.440689Z\"\n }" + string: "{\n \"name\": \"2a692cf4-19e5-9c48-b7cb-80206dad3102\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:56:56.9220619Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:49:09 GMT + - Thu, 15 Jun 2023 16:57:57 GMT expires: - '-1' pragma: @@ -365,23 +366,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08b24d45-0616-4ad4-bf56-655fb307759b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f42c692a-e519-489c-b7cb-80206dad3102?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"454db208-1606-d44a-bf56-655fb307759b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:39.440689Z\"\n }" + string: "{\n \"name\": \"2a692cf4-19e5-9c48-b7cb-80206dad3102\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:56:56.9220619Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:49:39 GMT + - Thu, 15 Jun 2023 16:58:27 GMT expires: - '-1' pragma: @@ -414,23 +415,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08b24d45-0616-4ad4-bf56-655fb307759b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f42c692a-e519-489c-b7cb-80206dad3102?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"454db208-1606-d44a-bf56-655fb307759b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:39.440689Z\"\n }" + string: "{\n \"name\": \"2a692cf4-19e5-9c48-b7cb-80206dad3102\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:56:56.9220619Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:50:09 GMT + - Thu, 15 Jun 2023 16:58:58 GMT expires: - '-1' pragma: @@ -463,23 +464,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08b24d45-0616-4ad4-bf56-655fb307759b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f42c692a-e519-489c-b7cb-80206dad3102?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"454db208-1606-d44a-bf56-655fb307759b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:39.440689Z\"\n }" + string: "{\n \"name\": \"2a692cf4-19e5-9c48-b7cb-80206dad3102\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:56:56.9220619Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:50:39 GMT + - Thu, 15 Jun 2023 16:59:28 GMT expires: - '-1' pragma: @@ -512,23 +513,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08b24d45-0616-4ad4-bf56-655fb307759b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f42c692a-e519-489c-b7cb-80206dad3102?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"454db208-1606-d44a-bf56-655fb307759b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:39.440689Z\"\n }" + string: "{\n \"name\": \"2a692cf4-19e5-9c48-b7cb-80206dad3102\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:56:56.9220619Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:51:10 GMT + - Thu, 15 Jun 2023 16:59:58 GMT expires: - '-1' pragma: @@ -561,23 +562,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08b24d45-0616-4ad4-bf56-655fb307759b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f42c692a-e519-489c-b7cb-80206dad3102?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"454db208-1606-d44a-bf56-655fb307759b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:39.440689Z\"\n }" + string: "{\n \"name\": \"2a692cf4-19e5-9c48-b7cb-80206dad3102\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:56:56.9220619Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:51:40 GMT + - Thu, 15 Jun 2023 17:00:28 GMT expires: - '-1' pragma: @@ -610,23 +611,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08b24d45-0616-4ad4-bf56-655fb307759b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f42c692a-e519-489c-b7cb-80206dad3102?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"454db208-1606-d44a-bf56-655fb307759b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:39.440689Z\"\n }" + string: "{\n \"name\": \"2a692cf4-19e5-9c48-b7cb-80206dad3102\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:56:56.9220619Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:52:10 GMT + - Thu, 15 Jun 2023 17:00:58 GMT expires: - '-1' pragma: @@ -659,23 +660,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08b24d45-0616-4ad4-bf56-655fb307759b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f42c692a-e519-489c-b7cb-80206dad3102?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"454db208-1606-d44a-bf56-655fb307759b\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:39.440689Z\"\n }" + string: "{\n \"name\": \"2a692cf4-19e5-9c48-b7cb-80206dad3102\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:56:56.9220619Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:52:40 GMT + - Thu, 15 Jun 2023 17:01:29 GMT expires: - '-1' pragma: @@ -708,24 +709,72 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/08b24d45-0616-4ad4-bf56-655fb307759b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f42c692a-e519-489c-b7cb-80206dad3102?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"454db208-1606-d44a-bf56-655fb307759b\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:47:39.440689Z\",\n \"endTime\": - \"2023-03-15T10:53:09.3712278Z\"\n }" + string: "{\n \"name\": \"2a692cf4-19e5-9c48-b7cb-80206dad3102\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:56:56.9220619Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 17:01:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --ppg + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f42c692a-e519-489c-b7cb-80206dad3102?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2a692cf4-19e5-9c48-b7cb-80206dad3102\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T16:56:56.9220619Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 10:53:10 GMT + - Thu, 15 Jun 2023 17:02:29 GMT expires: - '-1' pragma: @@ -758,65 +807,117 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f42c692a-e519-489c-b7cb-80206dad3102?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"2a692cf4-19e5-9c48-b7cb-80206dad3102\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T16:56:56.9220619Z\",\n \"\ + endTime\": \"2023-06-15T17:02:33.6358904Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 17:02:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --ppg + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-u5pg9qsy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000003-u5pg9qsy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"proximityPlacementGroupID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/ef97eb64-7080-45f3-80d0-516419a53523\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-qf1ex9fh.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000003-qf1ex9fh.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"proximityPlacementGroupID\":\ + \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004\"\ + ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n\ + \ \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ + : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/82d931ff-bd68-4d47-b320-3f269bd350d0\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4048' + - '4376' content-type: - application/json date: - - Wed, 15 Mar 2023 10:53:11 GMT + - Thu, 15 Jun 2023 17:03:00 GMT expires: - '-1' pragma: @@ -848,34 +949,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"proximityPlacementGroupID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"proximityPlacementGroupID\":\ + \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004\"\ + ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1220' + - '1221' content-type: - application/json date: - - Wed, 15 Mar 2023 10:53:11 GMT + - Thu, 15 Jun 2023 17:03:01 GMT expires: - '-1' pragma: @@ -916,35 +1018,37 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/p000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/p000002\",\n - \ \"name\": \"p000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"proximityPlacementGroupID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": - \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/p000002\"\ + ,\n \"name\": \"p000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"proximityPlacementGroupID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004\"\ + ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be3f8676-f3c0-46ad-9e86-83d1cabb934e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6b3009da-4b46-4e10-8146-52ba0725d20d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1158' + - '1159' content-type: - application/json date: - - Wed, 15 Mar 2023 10:53:15 GMT + - Thu, 15 Jun 2023 17:03:08 GMT expires: - '-1' pragma: @@ -956,7 +1060,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -974,14 +1078,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be3f8676-f3c0-46ad-9e86-83d1cabb934e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6b3009da-4b46-4e10-8146-52ba0725d20d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"76863fbe-c0f3-ad46-9e86-83d1cabb934e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:53:16.1135269Z\"\n }" + string: "{\n \"name\": \"da09306b-464b-104e-8146-52ba0725d20d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:03:08.3449906Z\"\n }" headers: cache-control: - no-cache @@ -990,7 +1094,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:53:46 GMT + - Thu, 15 Jun 2023 17:03:08 GMT expires: - '-1' pragma: @@ -1022,14 +1126,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be3f8676-f3c0-46ad-9e86-83d1cabb934e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6b3009da-4b46-4e10-8146-52ba0725d20d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"76863fbe-c0f3-ad46-9e86-83d1cabb934e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:53:16.1135269Z\"\n }" + string: "{\n \"name\": \"da09306b-464b-104e-8146-52ba0725d20d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:03:08.3449906Z\"\n }" headers: cache-control: - no-cache @@ -1038,7 +1142,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:54:15 GMT + - Thu, 15 Jun 2023 17:03:38 GMT expires: - '-1' pragma: @@ -1070,14 +1174,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be3f8676-f3c0-46ad-9e86-83d1cabb934e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6b3009da-4b46-4e10-8146-52ba0725d20d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"76863fbe-c0f3-ad46-9e86-83d1cabb934e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:53:16.1135269Z\"\n }" + string: "{\n \"name\": \"da09306b-464b-104e-8146-52ba0725d20d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:03:08.3449906Z\"\n }" headers: cache-control: - no-cache @@ -1086,7 +1190,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:54:45 GMT + - Thu, 15 Jun 2023 17:04:08 GMT expires: - '-1' pragma: @@ -1118,14 +1222,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be3f8676-f3c0-46ad-9e86-83d1cabb934e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6b3009da-4b46-4e10-8146-52ba0725d20d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"76863fbe-c0f3-ad46-9e86-83d1cabb934e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:53:16.1135269Z\"\n }" + string: "{\n \"name\": \"da09306b-464b-104e-8146-52ba0725d20d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:03:08.3449906Z\"\n }" headers: cache-control: - no-cache @@ -1134,7 +1238,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:55:16 GMT + - Thu, 15 Jun 2023 17:04:38 GMT expires: - '-1' pragma: @@ -1166,14 +1270,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be3f8676-f3c0-46ad-9e86-83d1cabb934e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6b3009da-4b46-4e10-8146-52ba0725d20d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"76863fbe-c0f3-ad46-9e86-83d1cabb934e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:53:16.1135269Z\"\n }" + string: "{\n \"name\": \"da09306b-464b-104e-8146-52ba0725d20d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:03:08.3449906Z\"\n }" headers: cache-control: - no-cache @@ -1182,7 +1286,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:55:45 GMT + - Thu, 15 Jun 2023 17:05:08 GMT expires: - '-1' pragma: @@ -1214,14 +1318,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be3f8676-f3c0-46ad-9e86-83d1cabb934e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6b3009da-4b46-4e10-8146-52ba0725d20d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"76863fbe-c0f3-ad46-9e86-83d1cabb934e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:53:16.1135269Z\"\n }" + string: "{\n \"name\": \"da09306b-464b-104e-8146-52ba0725d20d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:03:08.3449906Z\"\n }" headers: cache-control: - no-cache @@ -1230,7 +1334,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:16 GMT + - Thu, 15 Jun 2023 17:05:38 GMT expires: - '-1' pragma: @@ -1262,14 +1366,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be3f8676-f3c0-46ad-9e86-83d1cabb934e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6b3009da-4b46-4e10-8146-52ba0725d20d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"76863fbe-c0f3-ad46-9e86-83d1cabb934e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:53:16.1135269Z\"\n }" + string: "{\n \"name\": \"da09306b-464b-104e-8146-52ba0725d20d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:03:08.3449906Z\"\n }" headers: cache-control: - no-cache @@ -1278,7 +1382,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:46 GMT + - Thu, 15 Jun 2023 17:06:09 GMT expires: - '-1' pragma: @@ -1310,24 +1414,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be3f8676-f3c0-46ad-9e86-83d1cabb934e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6b3009da-4b46-4e10-8146-52ba0725d20d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"76863fbe-c0f3-ad46-9e86-83d1cabb934e\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:53:16.1135269Z\",\n \"endTime\": - \"2023-03-15T10:56:48.1754224Z\"\n }" + string: "{\n \"name\": \"da09306b-464b-104e-8146-52ba0725d20d\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T17:03:08.3449906Z\",\n \"\ + endTime\": \"2023-06-15T17:06:40.026949Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Wed, 15 Mar 2023 10:57:16 GMT + - Thu, 15 Jun 2023 17:06:39 GMT expires: - '-1' pragma: @@ -1359,33 +1463,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --ppg User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/p000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/p000002\",\n - \ \"name\": \"p000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"proximityPlacementGroupID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": - \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/p000002\"\ + ,\n \"name\": \"p000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"proximityPlacementGroupID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Compute/proximityPlacementGroups/clippg000004\"\ + ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1159' + - '1160' content-type: - application/json date: - - Wed, 15 Mar 2023 10:57:17 GMT + - Thu, 15 Jun 2023 17:06:40 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_standard_blob_csi_driver.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_standard_blob_csi_driver.yaml old mode 100755 new mode 100644 index d6b5f51138e..53abf7e1918 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_standard_blob_csi_driver.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_standard_blob_csi_driver.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:46:57 GMT + - Thu, 15 Jun 2023 17:06:45 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:46:56Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_with_standard_blob_csi_driver","date":"2023-06-15T17:06:44Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '311' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:46:56 GMT + - Thu, 15 Jun 2023 17:06:45 GMT expires: - '-1' pragma: @@ -88,19 +88,18 @@ interactions: message: OK - request: body: '{"location": "centraluseuap", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest2fpuhdkxo-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest3tplpyjiq-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -111,67 +110,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1465' + - '1757' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest2fpuhdkxo-79a739\",\n \"fqdn\": \"cliakstest-clitest2fpuhdkxo-79a739-h2fnadna.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest2fpuhdkxo-79a739-h2fnadna.portal.hcp.centraluseuap.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest3tplpyjiq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest3tplpyjiq-8ecadf-w1r5l8bp.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest3tplpyjiq-8ecadf-w1r5l8bp.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/51c0cdbf-dff8-4791-ab07-02e9edb5c969?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/db65f5ba-8a0c-4972-93e8-705d349cb3f5?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3293' + - '3620' content-type: - application/json date: - - Wed, 15 Mar 2023 10:47:02 GMT + - Thu, 15 Jun 2023 17:06:51 GMT expires: - '-1' pragma: @@ -183,7 +184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 201 message: Created @@ -201,14 +202,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/51c0cdbf-dff8-4791-ab07-02e9edb5c969?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/db65f5ba-8a0c-4972-93e8-705d349cb3f5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bfcdc051-f8df-9147-ab07-02e9edb5c969\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:02.5911413Z\"\n }" + string: "{\n \"name\": \"baf565db-0c8a-7249-93e8-705d349cb3f5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:06:51.0930993Z\"\n }" headers: cache-control: - no-cache @@ -217,7 +218,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:47:32 GMT + - Thu, 15 Jun 2023 17:06:51 GMT expires: - '-1' pragma: @@ -249,14 +250,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/51c0cdbf-dff8-4791-ab07-02e9edb5c969?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/db65f5ba-8a0c-4972-93e8-705d349cb3f5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bfcdc051-f8df-9147-ab07-02e9edb5c969\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:02.5911413Z\"\n }" + string: "{\n \"name\": \"baf565db-0c8a-7249-93e8-705d349cb3f5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:06:51.0930993Z\"\n }" headers: cache-control: - no-cache @@ -265,7 +266,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:48:03 GMT + - Thu, 15 Jun 2023 17:07:21 GMT expires: - '-1' pragma: @@ -297,14 +298,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/51c0cdbf-dff8-4791-ab07-02e9edb5c969?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/db65f5ba-8a0c-4972-93e8-705d349cb3f5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bfcdc051-f8df-9147-ab07-02e9edb5c969\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:02.5911413Z\"\n }" + string: "{\n \"name\": \"baf565db-0c8a-7249-93e8-705d349cb3f5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:06:51.0930993Z\"\n }" headers: cache-control: - no-cache @@ -313,7 +314,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:48:32 GMT + - Thu, 15 Jun 2023 17:07:51 GMT expires: - '-1' pragma: @@ -345,14 +346,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/51c0cdbf-dff8-4791-ab07-02e9edb5c969?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/db65f5ba-8a0c-4972-93e8-705d349cb3f5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bfcdc051-f8df-9147-ab07-02e9edb5c969\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:02.5911413Z\"\n }" + string: "{\n \"name\": \"baf565db-0c8a-7249-93e8-705d349cb3f5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:06:51.0930993Z\"\n }" headers: cache-control: - no-cache @@ -361,7 +362,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:49:02 GMT + - Thu, 15 Jun 2023 17:08:21 GMT expires: - '-1' pragma: @@ -393,14 +394,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/51c0cdbf-dff8-4791-ab07-02e9edb5c969?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/db65f5ba-8a0c-4972-93e8-705d349cb3f5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bfcdc051-f8df-9147-ab07-02e9edb5c969\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:02.5911413Z\"\n }" + string: "{\n \"name\": \"baf565db-0c8a-7249-93e8-705d349cb3f5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:06:51.0930993Z\"\n }" headers: cache-control: - no-cache @@ -409,7 +410,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:49:33 GMT + - Thu, 15 Jun 2023 17:08:51 GMT expires: - '-1' pragma: @@ -441,14 +442,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/51c0cdbf-dff8-4791-ab07-02e9edb5c969?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/db65f5ba-8a0c-4972-93e8-705d349cb3f5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bfcdc051-f8df-9147-ab07-02e9edb5c969\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:02.5911413Z\"\n }" + string: "{\n \"name\": \"baf565db-0c8a-7249-93e8-705d349cb3f5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:06:51.0930993Z\"\n }" headers: cache-control: - no-cache @@ -457,7 +458,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:50:02 GMT + - Thu, 15 Jun 2023 17:09:22 GMT expires: - '-1' pragma: @@ -489,14 +490,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/51c0cdbf-dff8-4791-ab07-02e9edb5c969?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/db65f5ba-8a0c-4972-93e8-705d349cb3f5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bfcdc051-f8df-9147-ab07-02e9edb5c969\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:02.5911413Z\"\n }" + string: "{\n \"name\": \"baf565db-0c8a-7249-93e8-705d349cb3f5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:06:51.0930993Z\"\n }" headers: cache-control: - no-cache @@ -505,7 +506,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:50:33 GMT + - Thu, 15 Jun 2023 17:09:52 GMT expires: - '-1' pragma: @@ -537,14 +538,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/51c0cdbf-dff8-4791-ab07-02e9edb5c969?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/db65f5ba-8a0c-4972-93e8-705d349cb3f5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bfcdc051-f8df-9147-ab07-02e9edb5c969\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:02.5911413Z\"\n }" + string: "{\n \"name\": \"baf565db-0c8a-7249-93e8-705d349cb3f5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:06:51.0930993Z\"\n }" headers: cache-control: - no-cache @@ -553,7 +554,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:51:03 GMT + - Thu, 15 Jun 2023 17:10:21 GMT expires: - '-1' pragma: @@ -585,119 +586,24 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/51c0cdbf-dff8-4791-ab07-02e9edb5c969?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/db65f5ba-8a0c-4972-93e8-705d349cb3f5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bfcdc051-f8df-9147-ab07-02e9edb5c969\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:02.5911413Z\"\n }" + string: "{\n \"name\": \"baf565db-0c8a-7249-93e8-705d349cb3f5\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T17:06:51.0930993Z\",\n \"\ + endTime\": \"2023-06-15T17:10:27.5901691Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:51:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/51c0cdbf-dff8-4791-ab07-02e9edb5c969?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"bfcdc051-f8df-9147-ab07-02e9edb5c969\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:02.5911413Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:52:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/51c0cdbf-dff8-4791-ab07-02e9edb5c969?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"bfcdc051-f8df-9147-ab07-02e9edb5c969\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:02.5911413Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 10:52:33 GMT + - Thu, 15 Jun 2023 17:10:51 GMT expires: - '-1' pragma: @@ -729,23 +635,66 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/51c0cdbf-dff8-4791-ab07-02e9edb5c969?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"bfcdc051-f8df-9147-ab07-02e9edb5c969\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:02.5911413Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest3tplpyjiq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest3tplpyjiq-8ecadf-w1r5l8bp.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest3tplpyjiq-8ecadf-w1r5l8bp.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/7e01b2ae-1cc4-478b-8383-64ee4044c8c1\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '4285' content-type: - application/json date: - - Wed, 15 Mar 2023 10:53:04 GMT + - Thu, 15 Jun 2023 17:10:52 GMT expires: - '-1' pragma: @@ -767,81 +716,76 @@ interactions: body: null headers: Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/51c0cdbf-dff8-4791-ab07-02e9edb5c969?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"bfcdc051-f8df-9147-ab07-02e9edb5c969\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:02.5911413Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - application/json - date: - - Wed, 15 Mar 2023 10:53:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive ParameterSetName: - - --resource-group --name --ssh-key-value -o + - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/51c0cdbf-dff8-4791-ab07-02e9edb5c969?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"bfcdc051-f8df-9147-ab07-02e9edb5c969\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:02.5911413Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest3tplpyjiq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest3tplpyjiq-8ecadf-w1r5l8bp.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest3tplpyjiq-8ecadf-w1r5l8bp.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/7e01b2ae-1cc4-478b-8383-64ee4044c8c1\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '4285' content-type: - application/json date: - - Wed, 15 Mar 2023 10:54:04 GMT + - Thu, 15 Jun 2023 17:10:53 GMT expires: - '-1' pragma: @@ -860,132 +804,107 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "centraluseuap", "sku": {"name": "Base", "tier": "Free"}, + "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": + "1.25.6", "dnsPrefix": "cliakstest-clitest3tplpyjiq-8ecadf", "agentPoolProfiles": + [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": + "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": + "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": + "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": + {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_centraluseuap", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/7e01b2ae-1cc4-478b-8383-64ee4044c8c1"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, + "workloadAutoScalerProfile": {}}}' headers: Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/51c0cdbf-dff8-4791-ab07-02e9edb5c969?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"bfcdc051-f8df-9147-ab07-02e9edb5c969\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:02.5911413Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - application/json - date: - - Wed, 15 Mar 2023 10:54:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive - ParameterSetName: - - --resource-group --name --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/51c0cdbf-dff8-4791-ab07-02e9edb5c969?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"bfcdc051-f8df-9147-ab07-02e9edb5c969\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:02.5911413Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: + Content-Length: + - '2836' + Content-Type: - application/json - date: - - Wed, 15 Mar 2023 10:55:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive ParameterSetName: - - --resource-group --name --ssh-key-value -o + - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/51c0cdbf-dff8-4791-ab07-02e9edb5c969?api-version=2016-03-30 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"bfcdc051-f8df-9147-ab07-02e9edb5c969\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:02.5911413Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest3tplpyjiq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest3tplpyjiq-8ecadf-w1r5l8bp.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest3tplpyjiq-8ecadf-w1r5l8bp.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/7e01b2ae-1cc4-478b-8383-64ee4044c8c1\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/8a17c149-ae70-420b-a9be-0a37c46ad3e3?api-version=2016-03-30 cache-control: - no-cache content-length: - - '126' + - '4283' content-type: - application/json date: - - Wed, 15 Mar 2023 10:55:34 GMT + - Thu, 15 Jun 2023 17:10:57 GMT expires: - '-1' pragma: @@ -1000,6 +919,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: code: 200 message: OK @@ -1011,20 +932,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive ParameterSetName: - - --resource-group --name --ssh-key-value -o + - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/51c0cdbf-dff8-4791-ab07-02e9edb5c969?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/8a17c149-ae70-420b-a9be-0a37c46ad3e3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bfcdc051-f8df-9147-ab07-02e9edb5c969\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:02.5911413Z\"\n }" + string: "{\n \"name\": \"49c1178a-70ae-0b42-a9be-0a37c46ad3e3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:10:57.7682525Z\"\n }" headers: cache-control: - no-cache @@ -1033,7 +954,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:04 GMT + - Thu, 15 Jun 2023 17:10:57 GMT expires: - '-1' pragma: @@ -1059,20 +980,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive ParameterSetName: - - --resource-group --name --ssh-key-value -o + - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/51c0cdbf-dff8-4791-ab07-02e9edb5c969?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/8a17c149-ae70-420b-a9be-0a37c46ad3e3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bfcdc051-f8df-9147-ab07-02e9edb5c969\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:02.5911413Z\"\n }" + string: "{\n \"name\": \"49c1178a-70ae-0b42-a9be-0a37c46ad3e3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:10:57.7682525Z\"\n }" headers: cache-control: - no-cache @@ -1081,7 +1002,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:34 GMT + - Thu, 15 Jun 2023 17:11:27 GMT expires: - '-1' pragma: @@ -1099,496 +1020,6 @@ interactions: status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/51c0cdbf-dff8-4791-ab07-02e9edb5c969?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"bfcdc051-f8df-9147-ab07-02e9edb5c969\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:02.5911413Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:57:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/51c0cdbf-dff8-4791-ab07-02e9edb5c969?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"bfcdc051-f8df-9147-ab07-02e9edb5c969\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:02.5911413Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:57:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/51c0cdbf-dff8-4791-ab07-02e9edb5c969?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"bfcdc051-f8df-9147-ab07-02e9edb5c969\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:47:02.5911413Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:58:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/51c0cdbf-dff8-4791-ab07-02e9edb5c969?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"bfcdc051-f8df-9147-ab07-02e9edb5c969\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:47:02.5911413Z\",\n \"endTime\": - \"2023-03-15T10:58:20.3657166Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '170' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:58:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest2fpuhdkxo-79a739\",\n \"fqdn\": \"cliakstest-clitest2fpuhdkxo-79a739-h2fnadna.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest2fpuhdkxo-79a739-h2fnadna.portal.hcp.centraluseuap.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/b08fee53-3672-4f58-9421-d913ce8a157b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '3958' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:58:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name -y -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest2fpuhdkxo-79a739\",\n \"fqdn\": \"cliakstest-clitest2fpuhdkxo-79a739-h2fnadna.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest2fpuhdkxo-79a739-h2fnadna.portal.hcp.centraluseuap.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/b08fee53-3672-4f58-9421-d913ce8a157b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '3958' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:58:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "centraluseuap", "sku": {"name": "Basic", "tier": "Free"}, - "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": - "1.24.9", "dnsPrefix": "cliakstest-clitest2fpuhdkxo-79a739", "agentPoolProfiles": - [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": - "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": - "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": - "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": - {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], - "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, - "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_centraluseuap", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/b08fee53-3672-4f58-9421-d913ce8a157b"}]}, - "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": - ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", - "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, - "workloadAutoScalerProfile": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - Content-Length: - - '2508' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --name -y -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest2fpuhdkxo-79a739\",\n \"fqdn\": \"cliakstest-clitest2fpuhdkxo-79a739-h2fnadna.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest2fpuhdkxo-79a739-h2fnadna.portal.hcp.centraluseuap.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/b08fee53-3672-4f58-9421-d913ce8a157b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f6149ec0-7cf9-4a6a-af21-ac5d1d2d45fc?api-version=2016-03-30 - cache-control: - - no-cache - content-length: - - '3956' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 10:58:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1187' - status: - code: 200 - message: OK - request: body: null headers: @@ -1603,14 +1034,14 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f6149ec0-7cf9-4a6a-af21-ac5d1d2d45fc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/8a17c149-ae70-420b-a9be-0a37c46ad3e3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c09e14f6-f97c-6a4a-af21-ac5d1d2d45fc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:58:39.6322212Z\"\n }" + string: "{\n \"name\": \"49c1178a-70ae-0b42-a9be-0a37c46ad3e3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:10:57.7682525Z\"\n }" headers: cache-control: - no-cache @@ -1619,7 +1050,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:59:10 GMT + - Thu, 15 Jun 2023 17:11:58 GMT expires: - '-1' pragma: @@ -1651,14 +1082,14 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f6149ec0-7cf9-4a6a-af21-ac5d1d2d45fc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/8a17c149-ae70-420b-a9be-0a37c46ad3e3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c09e14f6-f97c-6a4a-af21-ac5d1d2d45fc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:58:39.6322212Z\"\n }" + string: "{\n \"name\": \"49c1178a-70ae-0b42-a9be-0a37c46ad3e3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:10:57.7682525Z\"\n }" headers: cache-control: - no-cache @@ -1667,7 +1098,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:59:39 GMT + - Thu, 15 Jun 2023 17:12:27 GMT expires: - '-1' pragma: @@ -1699,15 +1130,15 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f6149ec0-7cf9-4a6a-af21-ac5d1d2d45fc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/8a17c149-ae70-420b-a9be-0a37c46ad3e3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c09e14f6-f97c-6a4a-af21-ac5d1d2d45fc\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:58:39.6322212Z\",\n \"endTime\": - \"2023-03-15T10:59:49.7613759Z\"\n }" + string: "{\n \"name\": \"49c1178a-70ae-0b42-a9be-0a37c46ad3e3\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T17:10:57.7682525Z\",\n \"\ + endTime\": \"2023-06-15T17:12:48.4564685Z\"\n }" headers: cache-control: - no-cache @@ -1716,7 +1147,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:10 GMT + - Thu, 15 Jun 2023 17:12:58 GMT expires: - '-1' pragma: @@ -1748,64 +1179,66 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest2fpuhdkxo-79a739\",\n \"fqdn\": \"cliakstest-clitest2fpuhdkxo-79a739-h2fnadna.hcp.centraluseuap.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest2fpuhdkxo-79a739-h2fnadna.portal.hcp.centraluseuap.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_centraluseuap\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/b08fee53-3672-4f58-9421-d913ce8a157b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest3tplpyjiq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest3tplpyjiq-8ecadf-w1r5l8bp.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest3tplpyjiq-8ecadf-w1r5l8bp.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.Network/publicIPAddresses/7e01b2ae-1cc4-478b-8383-64ee4044c8c1\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3958' + - '4285' content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:10 GMT + - Thu, 15 Jun 2023 17:12:59 GMT expires: - '-1' pragma: @@ -1839,8 +1272,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -1848,17 +1281,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/da2406ed-40dc-4c5c-891a-21770aba2cc4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/49fed420-c1a7-4095-989b-0028d96716e4?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:00:12 GMT + - Thu, 15 Jun 2023 17:13:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/da2406ed-40dc-4c5c-891a-21770aba2cc4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/49fed420-c1a7-4095-989b-0028d96716e4?api-version=2016-03-30 pragma: - no-cache server: @@ -1868,7 +1301,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_standard_csi_drivers.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_standard_csi_drivers.yaml old mode 100755 new mode 100644 index df90294c163..7269ed3d3ad --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_standard_csi_drivers.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_standard_csi_drivers.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:45:51 GMT + - Thu, 15 Jun 2023 17:13:04 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:45:51Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_create_with_standard_csi_drivers","date":"2023-06-15T17:13:03Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '371' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:45:51 GMT + - Thu, 15 Jun 2023 17:13:05 GMT expires: - '-1' pragma: @@ -88,19 +88,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestfscxhp3th-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestcm52w2h4m-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -111,67 +110,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1459' + - '1751' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestfscxhp3th-79a739\",\n \"fqdn\": \"cliakstest-clitestfscxhp3th-79a739-rxe6guor.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestfscxhp3th-79a739-rxe6guor.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestcm52w2h4m-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestcm52w2h4m-8ecadf-o2rips4p.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestcm52w2h4m-8ecadf-o2rips4p.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55582d23-cdbf-4e76-bf1a-d7b7ae755b42?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ea05db4-a220-4f23-8466-c834444202e3?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3268' + - '3596' content-type: - application/json date: - - Wed, 15 Mar 2023 10:45:55 GMT + - Thu, 15 Jun 2023 17:13:12 GMT expires: - '-1' pragma: @@ -183,7 +184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' status: code: 201 message: Created @@ -201,14 +202,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55582d23-cdbf-4e76-bf1a-d7b7ae755b42?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ea05db4-a220-4f23-8466-c834444202e3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"232d5855-bfcd-764e-bf1a-d7b7ae755b42\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:45:55.7997264Z\"\n }" + string: "{\n \"name\": \"b45da09e-20a2-234f-8466-c834444202e3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:13:12.3152873Z\"\n }" headers: cache-control: - no-cache @@ -217,7 +218,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:46:26 GMT + - Thu, 15 Jun 2023 17:13:12 GMT expires: - '-1' pragma: @@ -249,14 +250,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55582d23-cdbf-4e76-bf1a-d7b7ae755b42?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ea05db4-a220-4f23-8466-c834444202e3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"232d5855-bfcd-764e-bf1a-d7b7ae755b42\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:45:55.7997264Z\"\n }" + string: "{\n \"name\": \"b45da09e-20a2-234f-8466-c834444202e3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:13:12.3152873Z\"\n }" headers: cache-control: - no-cache @@ -265,7 +266,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:46:56 GMT + - Thu, 15 Jun 2023 17:13:43 GMT expires: - '-1' pragma: @@ -297,14 +298,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55582d23-cdbf-4e76-bf1a-d7b7ae755b42?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ea05db4-a220-4f23-8466-c834444202e3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"232d5855-bfcd-764e-bf1a-d7b7ae755b42\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:45:55.7997264Z\"\n }" + string: "{\n \"name\": \"b45da09e-20a2-234f-8466-c834444202e3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:13:12.3152873Z\"\n }" headers: cache-control: - no-cache @@ -313,7 +314,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:47:25 GMT + - Thu, 15 Jun 2023 17:14:13 GMT expires: - '-1' pragma: @@ -345,14 +346,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55582d23-cdbf-4e76-bf1a-d7b7ae755b42?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ea05db4-a220-4f23-8466-c834444202e3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"232d5855-bfcd-764e-bf1a-d7b7ae755b42\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:45:55.7997264Z\"\n }" + string: "{\n \"name\": \"b45da09e-20a2-234f-8466-c834444202e3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:13:12.3152873Z\"\n }" headers: cache-control: - no-cache @@ -361,7 +362,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:47:55 GMT + - Thu, 15 Jun 2023 17:14:43 GMT expires: - '-1' pragma: @@ -393,14 +394,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55582d23-cdbf-4e76-bf1a-d7b7ae755b42?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ea05db4-a220-4f23-8466-c834444202e3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"232d5855-bfcd-764e-bf1a-d7b7ae755b42\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:45:55.7997264Z\"\n }" + string: "{\n \"name\": \"b45da09e-20a2-234f-8466-c834444202e3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:13:12.3152873Z\"\n }" headers: cache-control: - no-cache @@ -409,7 +410,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:48:25 GMT + - Thu, 15 Jun 2023 17:15:13 GMT expires: - '-1' pragma: @@ -441,14 +442,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55582d23-cdbf-4e76-bf1a-d7b7ae755b42?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ea05db4-a220-4f23-8466-c834444202e3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"232d5855-bfcd-764e-bf1a-d7b7ae755b42\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:45:55.7997264Z\"\n }" + string: "{\n \"name\": \"b45da09e-20a2-234f-8466-c834444202e3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:13:12.3152873Z\"\n }" headers: cache-control: - no-cache @@ -457,7 +458,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:48:55 GMT + - Thu, 15 Jun 2023 17:15:43 GMT expires: - '-1' pragma: @@ -489,15 +490,63 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55582d23-cdbf-4e76-bf1a-d7b7ae755b42?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ea05db4-a220-4f23-8466-c834444202e3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"232d5855-bfcd-764e-bf1a-d7b7ae755b42\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:45:55.7997264Z\",\n \"endTime\": - \"2023-03-15T10:49:21.5909467Z\"\n }" + string: "{\n \"name\": \"b45da09e-20a2-234f-8466-c834444202e3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:13:12.3152873Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 17:16:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ea05db4-a220-4f23-8466-c834444202e3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b45da09e-20a2-234f-8466-c834444202e3\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T17:13:12.3152873Z\",\n \"\ + endTime\": \"2023-06-15T17:16:36.1113886Z\"\n }" headers: cache-control: - no-cache @@ -506,7 +555,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:49:26 GMT + - Thu, 15 Jun 2023 17:16:43 GMT expires: - '-1' pragma: @@ -538,64 +587,66 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestfscxhp3th-79a739\",\n \"fqdn\": \"cliakstest-clitestfscxhp3th-79a739-rxe6guor.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestfscxhp3th-79a739-rxe6guor.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/73576342-f9d7-4bde-b774-2e0d3545e6e8\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestcm52w2h4m-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestcm52w2h4m-8ecadf-o2rips4p.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestcm52w2h4m-8ecadf-o2rips4p.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c5337524-5b67-4fcd-9e08-75ff4ba1116b\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4249' content-type: - application/json date: - - Wed, 15 Mar 2023 10:49:26 GMT + - Thu, 15 Jun 2023 17:16:44 GMT expires: - '-1' pragma: @@ -627,64 +678,66 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestfscxhp3th-79a739\",\n \"fqdn\": \"cliakstest-clitestfscxhp3th-79a739-rxe6guor.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestfscxhp3th-79a739-rxe6guor.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/73576342-f9d7-4bde-b774-2e0d3545e6e8\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestcm52w2h4m-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestcm52w2h4m-8ecadf-o2rips4p.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestcm52w2h4m-8ecadf-o2rips4p.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c5337524-5b67-4fcd-9e08-75ff4ba1116b\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4249' content-type: - application/json date: - - Wed, 15 Mar 2023 10:49:27 GMT + - Thu, 15 Jun 2023 17:16:46 GMT expires: - '-1' pragma: @@ -703,23 +756,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestfscxhp3th-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestcm52w2h4m-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/73576342-f9d7-4bde-b774-2e0d3545e6e8"}]}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c5337524-5b67-4fcd-9e08-75ff4ba1116b"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -735,72 +788,74 @@ interactions: Connection: - keep-alive Content-Length: - - '2484' + - '2812' Content-Type: - application/json ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestfscxhp3th-79a739\",\n \"fqdn\": \"cliakstest-clitestfscxhp3th-79a739-rxe6guor.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestfscxhp3th-79a739-rxe6guor.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/73576342-f9d7-4bde-b774-2e0d3545e6e8\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestcm52w2h4m-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestcm52w2h4m-8ecadf-o2rips4p.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestcm52w2h4m-8ecadf-o2rips4p.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c5337524-5b67-4fcd-9e08-75ff4ba1116b\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cae63a84-ffaa-4cd2-9cd1-19e4eb633cb4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/de00c6f3-d03f-4d93-a18c-c9f15cb8739b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3919' + - '4247' content-type: - application/json date: - - Wed, 15 Mar 2023 10:49:30 GMT + - Thu, 15 Jun 2023 17:16:52 GMT expires: - '-1' pragma: @@ -816,7 +871,103 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -y -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/de00c6f3-d03f-4d93-a18c-c9f15cb8739b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f3c600de-3fd0-934d-a18c-c9f15cb8739b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:16:51.0499512Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 17:16:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name -y -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/de00c6f3-d03f-4d93-a18c-c9f15cb8739b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f3c600de-3fd0-934d-a18c-c9f15cb8739b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:16:51.0499512Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 17:17:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -834,14 +985,14 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cae63a84-ffaa-4cd2-9cd1-19e4eb633cb4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/de00c6f3-d03f-4d93-a18c-c9f15cb8739b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"843ae6ca-aaff-d24c-9cd1-19e4eb633cb4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:49:30.4722746Z\"\n }" + string: "{\n \"name\": \"f3c600de-3fd0-934d-a18c-c9f15cb8739b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:16:51.0499512Z\"\n }" headers: cache-control: - no-cache @@ -850,7 +1001,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:50:00 GMT + - Thu, 15 Jun 2023 17:17:52 GMT expires: - '-1' pragma: @@ -882,14 +1033,14 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cae63a84-ffaa-4cd2-9cd1-19e4eb633cb4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/de00c6f3-d03f-4d93-a18c-c9f15cb8739b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"843ae6ca-aaff-d24c-9cd1-19e4eb633cb4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:49:30.4722746Z\"\n }" + string: "{\n \"name\": \"f3c600de-3fd0-934d-a18c-c9f15cb8739b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:16:51.0499512Z\"\n }" headers: cache-control: - no-cache @@ -898,7 +1049,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:50:29 GMT + - Thu, 15 Jun 2023 17:18:22 GMT expires: - '-1' pragma: @@ -930,15 +1081,15 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cae63a84-ffaa-4cd2-9cd1-19e4eb633cb4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/de00c6f3-d03f-4d93-a18c-c9f15cb8739b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"843ae6ca-aaff-d24c-9cd1-19e4eb633cb4\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:49:30.4722746Z\",\n \"endTime\": - \"2023-03-15T10:50:49.1157544Z\"\n }" + string: "{\n \"name\": \"f3c600de-3fd0-934d-a18c-c9f15cb8739b\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T17:16:51.0499512Z\",\n \"\ + endTime\": \"2023-06-15T17:18:37.1770656Z\"\n }" headers: cache-control: - no-cache @@ -947,7 +1098,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:51:00 GMT + - Thu, 15 Jun 2023 17:18:52 GMT expires: - '-1' pragma: @@ -979,64 +1130,66 @@ interactions: ParameterSetName: - --resource-group --name -y -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestfscxhp3th-79a739\",\n \"fqdn\": \"cliakstest-clitestfscxhp3th-79a739-rxe6guor.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestfscxhp3th-79a739-rxe6guor.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/73576342-f9d7-4bde-b774-2e0d3545e6e8\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestcm52w2h4m-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestcm52w2h4m-8ecadf-o2rips4p.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestcm52w2h4m-8ecadf-o2rips4p.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c5337524-5b67-4fcd-9e08-75ff4ba1116b\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4249' content-type: - application/json date: - - Wed, 15 Mar 2023 10:51:01 GMT + - Thu, 15 Jun 2023 17:18:52 GMT expires: - '-1' pragma: @@ -1070,8 +1223,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -1079,17 +1232,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c5bf90be-e12e-4820-bc70-7582171f1b80?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/47ad023a-0bf1-4f51-90f9-a5dcde221869?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:51:02 GMT + - Thu, 15 Jun 2023 17:18:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/c5bf90be-e12e-4820-bc70-7582171f1b80?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/47ad023a-0bf1-4f51-90f9-a5dcde221869?api-version=2016-03-30 pragma: - no-cache server: @@ -1099,7 +1252,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14990' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_standard_sku.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_standard_sku.yaml old mode 100755 new mode 100644 index d808b67e774..984d2a3c35d --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_standard_sku.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_standard_sku.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --location --node-count --ssh-key-value --tier User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 28 Mar 2023 02:40:31 GMT + - Thu, 15 Jun 2023 17:19:04 GMT expires: - '-1' pragma: @@ -47,19 +47,18 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Standard"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliakstest-clitestq4xze2n5d-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": + "cliakstest-clitestozlj4rvex-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDE0FFJggipKnkXPnrm33fYZriCfQmBCjDAlgpleTFt9KnAYM+sZAq75nukWtVku/tUX5Racv3nGsQuD89ChdXKdcoNFrcQgo2AjdkD3q1wOdFzvFqzRk7eZf7Aq+Vac6zu73L5X9IT/vc8pyyo9gBbQPgbRcGLk1dtonaa//LT28lkCPUWuwfwveExmM1m6mIEsCBVtcl4tZsNQzFJrRuKyru56EiflI2OgwEAwEQ/S8OxVciVOnWTXvdc6BWZoe/RcmFb1I93hjJ+YaLbxu3392VeVcJW7pL4BZAs2+lATt8b63fr0gAAVXN2ACEZaEKaJ3RZEQ8ybS//YRhaAVUN - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -70,67 +69,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1504' + - '1796' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --node-count --ssh-key-value --tier User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestq4xze2n5d-79a739\",\n \"fqdn\": \"cliakstest-clitestq4xze2n5d-79a739-gq1m49un.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestq4xze2n5d-79a739-gq1m49un.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDE0FFJggipKnkXPnrm33fYZriCfQmBCjDAlgpleTFt9KnAYM+sZAq75nukWtVku/tUX5Racv3nGsQuD89ChdXKdcoNFrcQgo2AjdkD3q1wOdFzvFqzRk7eZf7Aq+Vac6zu73L5X9IT/vc8pyyo9gBbQPgbRcGLk1dtonaa//LT28lkCPUWuwfwveExmM1m6mIEsCBVtcl4tZsNQzFJrRuKyru56EiflI2OgwEAwEQ/S8OxVciVOnWTXvdc6BWZoe/RcmFb1I93hjJ+YaLbxu3392VeVcJW7pL4BZAs2+lATt8b63fr0gAAVXN2ACEZaEKaJ3RZEQ8ybS//YRhaAVUN - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Standard\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestozlj4rvex-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestozlj4rvex-8ecadf-islv9qtt.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestozlj4rvex-8ecadf-islv9qtt.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Standard\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ca00885-e278-4b98-8a2d-4eb890e6a5e8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b4b0190e-6541-4db7-9581-a4d23fca266d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3272' + - '3600' content-type: - application/json date: - - Tue, 28 Mar 2023 02:40:41 GMT + - Thu, 15 Jun 2023 17:19:14 GMT expires: - '-1' pragma: @@ -142,7 +143,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -160,14 +161,14 @@ interactions: ParameterSetName: - --resource-group --name --location --node-count --ssh-key-value --tier User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ca00885-e278-4b98-8a2d-4eb890e6a5e8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b4b0190e-6541-4db7-9581-a4d23fca266d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8508a07c-78e2-984b-8a2d-4eb890e6a5e8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T02:40:36.9375108Z\"\n }" + string: "{\n \"name\": \"0e19b0b4-4165-b74d-9581-a4d23fca266d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:19:12.1284898Z\"\n }" headers: cache-control: - no-cache @@ -176,7 +177,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 02:41:12 GMT + - Thu, 15 Jun 2023 17:19:14 GMT expires: - '-1' pragma: @@ -208,14 +209,14 @@ interactions: ParameterSetName: - --resource-group --name --location --node-count --ssh-key-value --tier User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ca00885-e278-4b98-8a2d-4eb890e6a5e8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b4b0190e-6541-4db7-9581-a4d23fca266d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8508a07c-78e2-984b-8a2d-4eb890e6a5e8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T02:40:36.9375108Z\"\n }" + string: "{\n \"name\": \"0e19b0b4-4165-b74d-9581-a4d23fca266d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:19:12.1284898Z\"\n }" headers: cache-control: - no-cache @@ -224,7 +225,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 02:41:42 GMT + - Thu, 15 Jun 2023 17:19:44 GMT expires: - '-1' pragma: @@ -256,14 +257,14 @@ interactions: ParameterSetName: - --resource-group --name --location --node-count --ssh-key-value --tier User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ca00885-e278-4b98-8a2d-4eb890e6a5e8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b4b0190e-6541-4db7-9581-a4d23fca266d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8508a07c-78e2-984b-8a2d-4eb890e6a5e8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T02:40:36.9375108Z\"\n }" + string: "{\n \"name\": \"0e19b0b4-4165-b74d-9581-a4d23fca266d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:19:12.1284898Z\"\n }" headers: cache-control: - no-cache @@ -272,7 +273,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 02:42:12 GMT + - Thu, 15 Jun 2023 17:20:15 GMT expires: - '-1' pragma: @@ -304,14 +305,14 @@ interactions: ParameterSetName: - --resource-group --name --location --node-count --ssh-key-value --tier User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ca00885-e278-4b98-8a2d-4eb890e6a5e8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b4b0190e-6541-4db7-9581-a4d23fca266d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8508a07c-78e2-984b-8a2d-4eb890e6a5e8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T02:40:36.9375108Z\"\n }" + string: "{\n \"name\": \"0e19b0b4-4165-b74d-9581-a4d23fca266d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:19:12.1284898Z\"\n }" headers: cache-control: - no-cache @@ -320,7 +321,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 02:42:42 GMT + - Thu, 15 Jun 2023 17:20:44 GMT expires: - '-1' pragma: @@ -352,14 +353,14 @@ interactions: ParameterSetName: - --resource-group --name --location --node-count --ssh-key-value --tier User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ca00885-e278-4b98-8a2d-4eb890e6a5e8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b4b0190e-6541-4db7-9581-a4d23fca266d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8508a07c-78e2-984b-8a2d-4eb890e6a5e8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T02:40:36.9375108Z\"\n }" + string: "{\n \"name\": \"0e19b0b4-4165-b74d-9581-a4d23fca266d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:19:12.1284898Z\"\n }" headers: cache-control: - no-cache @@ -368,7 +369,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 02:43:12 GMT + - Thu, 15 Jun 2023 17:21:14 GMT expires: - '-1' pragma: @@ -400,14 +401,14 @@ interactions: ParameterSetName: - --resource-group --name --location --node-count --ssh-key-value --tier User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ca00885-e278-4b98-8a2d-4eb890e6a5e8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b4b0190e-6541-4db7-9581-a4d23fca266d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8508a07c-78e2-984b-8a2d-4eb890e6a5e8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T02:40:36.9375108Z\"\n }" + string: "{\n \"name\": \"0e19b0b4-4165-b74d-9581-a4d23fca266d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:19:12.1284898Z\"\n }" headers: cache-control: - no-cache @@ -416,7 +417,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 02:43:42 GMT + - Thu, 15 Jun 2023 17:21:45 GMT expires: - '-1' pragma: @@ -448,23 +449,24 @@ interactions: ParameterSetName: - --resource-group --name --location --node-count --ssh-key-value --tier User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ca00885-e278-4b98-8a2d-4eb890e6a5e8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b4b0190e-6541-4db7-9581-a4d23fca266d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8508a07c-78e2-984b-8a2d-4eb890e6a5e8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T02:40:36.9375108Z\"\n }" + string: "{\n \"name\": \"0e19b0b4-4165-b74d-9581-a4d23fca266d\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T17:19:12.1284898Z\",\n \"\ + endTime\": \"2023-06-15T17:22:12.2846026Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '170' content-type: - application/json date: - - Tue, 28 Mar 2023 02:44:12 GMT + - Thu, 15 Jun 2023 17:22:15 GMT expires: - '-1' pragma: @@ -496,23 +498,66 @@ interactions: ParameterSetName: - --resource-group --name --location --node-count --ssh-key-value --tier User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ca00885-e278-4b98-8a2d-4eb890e6a5e8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"8508a07c-78e2-984b-8a2d-4eb890e6a5e8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T02:40:36.9375108Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestozlj4rvex-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestozlj4rvex-8ecadf-islv9qtt.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestozlj4rvex-8ecadf-islv9qtt.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/ebe7d617-3e8c-4f88-825f-940c82f04600\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Standard\"\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '4253' content-type: - application/json date: - - Tue, 28 Mar 2023 02:44:42 GMT + - Thu, 15 Jun 2023 17:22:16 GMT expires: - '-1' pragma: @@ -534,81 +579,76 @@ interactions: body: null headers: Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-count --ssh-key-value --tier - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ca00885-e278-4b98-8a2d-4eb890e6a5e8?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"8508a07c-78e2-984b-8a2d-4eb890e6a5e8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T02:40:36.9375108Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - application/json - date: - - Tue, 28 Mar 2023 02:45:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --node-count --ssh-key-value --tier + - --resource-group --name --tier User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ca00885-e278-4b98-8a2d-4eb890e6a5e8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"8508a07c-78e2-984b-8a2d-4eb890e6a5e8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T02:40:36.9375108Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestozlj4rvex-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestozlj4rvex-8ecadf-islv9qtt.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestozlj4rvex-8ecadf-islv9qtt.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/ebe7d617-3e8c-4f88-825f-940c82f04600\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Standard\"\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '4253' content-type: - application/json date: - - Tue, 28 Mar 2023 02:45:42 GMT + - Thu, 15 Jun 2023 17:22:18 GMT expires: - '-1' pragma: @@ -627,132 +667,106 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestozlj4rvex-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": + "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": + false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/ebe7d617-3e8c-4f88-825f-940c82f04600"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, + "workloadAutoScalerProfile": {}}}' headers: Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-count --ssh-key-value --tier - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ca00885-e278-4b98-8a2d-4eb890e6a5e8?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"8508a07c-78e2-984b-8a2d-4eb890e6a5e8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T02:40:36.9375108Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - application/json - date: - - Tue, 28 Mar 2023 02:46:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive - ParameterSetName: - - --resource-group --name --location --node-count --ssh-key-value --tier - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ca00885-e278-4b98-8a2d-4eb890e6a5e8?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"8508a07c-78e2-984b-8a2d-4eb890e6a5e8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T02:40:36.9375108Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: + Content-Length: + - '2812' + Content-Type: - application/json - date: - - Tue, 28 Mar 2023 02:46:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive ParameterSetName: - - --resource-group --name --location --node-count --ssh-key-value --tier + - --resource-group --name --tier User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ca00885-e278-4b98-8a2d-4eb890e6a5e8?api-version=2016-03-30 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"8508a07c-78e2-984b-8a2d-4eb890e6a5e8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T02:40:36.9375108Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestozlj4rvex-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestozlj4rvex-8ecadf-islv9qtt.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestozlj4rvex-8ecadf-islv9qtt.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/ebe7d617-3e8c-4f88-825f-940c82f04600\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a093fd5-399e-4c78-ae38-d008271f75d9?api-version=2016-03-30 cache-control: - no-cache content-length: - - '126' + - '4247' content-type: - application/json date: - - Tue, 28 Mar 2023 02:47:13 GMT + - Thu, 15 Jun 2023 17:22:23 GMT expires: - '-1' pragma: @@ -767,6 +781,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -778,30 +794,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --node-count --ssh-key-value --tier + - --resource-group --name --tier User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ca00885-e278-4b98-8a2d-4eb890e6a5e8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a093fd5-399e-4c78-ae38-d008271f75d9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8508a07c-78e2-984b-8a2d-4eb890e6a5e8\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-28T02:40:36.9375108Z\",\n \"endTime\": - \"2023-03-28T02:47:36.4774823Z\"\n }" + string: "{\n \"name\": \"d53f096a-9e39-784c-ae38-d008271f75d9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:22:22.9258314Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Tue, 28 Mar 2023 02:47:43 GMT + - Thu, 15 Jun 2023 17:22:23 GMT expires: - '-1' pragma: @@ -827,275 +842,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-count --ssh-key-value --tier - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestq4xze2n5d-79a739\",\n \"fqdn\": \"cliakstest-clitestq4xze2n5d-79a739-gq1m49un.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestq4xze2n5d-79a739-gq1m49un.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDE0FFJggipKnkXPnrm33fYZriCfQmBCjDAlgpleTFt9KnAYM+sZAq75nukWtVku/tUX5Racv3nGsQuD89ChdXKdcoNFrcQgo2AjdkD3q1wOdFzvFqzRk7eZf7Aq+Vac6zu73L5X9IT/vc8pyyo9gBbQPgbRcGLk1dtonaa//LT28lkCPUWuwfwveExmM1m6mIEsCBVtcl4tZsNQzFJrRuKyru56EiflI2OgwEAwEQ/S8OxVciVOnWTXvdc6BWZoe/RcmFb1I93hjJ+YaLbxu3392VeVcJW7pL4BZAs2+lATt8b63fr0gAAVXN2ACEZaEKaJ3RZEQ8ybS//YRhaAVUN - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/355c83ad-90b1-4edb-8fb1-d993f6827bc5\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Standard\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '3925' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 02:47:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - aks update Connection: - keep-alive ParameterSetName: - --resource-group --name --tier User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a093fd5-399e-4c78-ae38-d008271f75d9?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestq4xze2n5d-79a739\",\n \"fqdn\": \"cliakstest-clitestq4xze2n5d-79a739-gq1m49un.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestq4xze2n5d-79a739-gq1m49un.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDE0FFJggipKnkXPnrm33fYZriCfQmBCjDAlgpleTFt9KnAYM+sZAq75nukWtVku/tUX5Racv3nGsQuD89ChdXKdcoNFrcQgo2AjdkD3q1wOdFzvFqzRk7eZf7Aq+Vac6zu73L5X9IT/vc8pyyo9gBbQPgbRcGLk1dtonaa//LT28lkCPUWuwfwveExmM1m6mIEsCBVtcl4tZsNQzFJrRuKyru56EiflI2OgwEAwEQ/S8OxVciVOnWTXvdc6BWZoe/RcmFb1I93hjJ+YaLbxu3392VeVcJW7pL4BZAs2+lATt8b63fr0gAAVXN2ACEZaEKaJ3RZEQ8ybS//YRhaAVUN - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/355c83ad-90b1-4edb-8fb1-d993f6827bc5\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Standard\"\n }\n }" + string: "{\n \"name\": \"d53f096a-9e39-784c-ae38-d008271f75d9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:22:22.9258314Z\"\n }" headers: cache-control: - no-cache content-length: - - '3925' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 02:47:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestq4xze2n5d-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": - "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": - "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": - false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": - false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDE0FFJggipKnkXPnrm33fYZriCfQmBCjDAlgpleTFt9KnAYM+sZAq75nukWtVku/tUX5Racv3nGsQuD89ChdXKdcoNFrcQgo2AjdkD3q1wOdFzvFqzRk7eZf7Aq+Vac6zu73L5X9IT/vc8pyyo9gBbQPgbRcGLk1dtonaa//LT28lkCPUWuwfwveExmM1m6mIEsCBVtcl4tZsNQzFJrRuKyru56EiflI2OgwEAwEQ/S8OxVciVOnWTXvdc6BWZoe/RcmFb1I93hjJ+YaLbxu3392VeVcJW7pL4BZAs2+lATt8b63fr0gAAVXN2ACEZaEKaJ3RZEQ8ybS//YRhaAVUN - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, - "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/355c83ad-90b1-4edb-8fb1-d993f6827bc5"}]}, - "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": - ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", - "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, - "workloadAutoScalerProfile": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - Content-Length: - - '2483' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --name --tier - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestq4xze2n5d-79a739\",\n \"fqdn\": \"cliakstest-clitestq4xze2n5d-79a739-gq1m49un.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestq4xze2n5d-79a739-gq1m49un.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDE0FFJggipKnkXPnrm33fYZriCfQmBCjDAlgpleTFt9KnAYM+sZAq75nukWtVku/tUX5Racv3nGsQuD89ChdXKdcoNFrcQgo2AjdkD3q1wOdFzvFqzRk7eZf7Aq+Vac6zu73L5X9IT/vc8pyyo9gBbQPgbRcGLk1dtonaa//LT28lkCPUWuwfwveExmM1m6mIEsCBVtcl4tZsNQzFJrRuKyru56EiflI2OgwEAwEQ/S8OxVciVOnWTXvdc6BWZoe/RcmFb1I93hjJ+YaLbxu3392VeVcJW7pL4BZAs2+lATt8b63fr0gAAVXN2ACEZaEKaJ3RZEQ8ybS//YRhaAVUN - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/355c83ad-90b1-4edb-8fb1-d993f6827bc5\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2385573-5554-42cc-b11a-dd6d73eec925?api-version=2016-03-30 - cache-control: - - no-cache - content-length: - - '3919' + - '126' content-type: - application/json date: - - Tue, 28 Mar 2023 02:47:48 GMT + - Thu, 15 Jun 2023 17:22:53 GMT expires: - '-1' pragma: @@ -1110,8 +879,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -1129,14 +896,14 @@ interactions: ParameterSetName: - --resource-group --name --tier User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2385573-5554-42cc-b11a-dd6d73eec925?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a093fd5-399e-4c78-ae38-d008271f75d9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"735538f2-5455-cc42-b11a-dd6d73eec925\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T02:47:48.7673408Z\"\n }" + string: "{\n \"name\": \"d53f096a-9e39-784c-ae38-d008271f75d9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:22:22.9258314Z\"\n }" headers: cache-control: - no-cache @@ -1145,7 +912,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 02:48:18 GMT + - Thu, 15 Jun 2023 17:23:23 GMT expires: - '-1' pragma: @@ -1177,14 +944,14 @@ interactions: ParameterSetName: - --resource-group --name --tier User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2385573-5554-42cc-b11a-dd6d73eec925?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a093fd5-399e-4c78-ae38-d008271f75d9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"735538f2-5455-cc42-b11a-dd6d73eec925\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T02:47:48.7673408Z\"\n }" + string: "{\n \"name\": \"d53f096a-9e39-784c-ae38-d008271f75d9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:22:22.9258314Z\"\n }" headers: cache-control: - no-cache @@ -1193,7 +960,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 02:48:48 GMT + - Thu, 15 Jun 2023 17:23:54 GMT expires: - '-1' pragma: @@ -1225,14 +992,14 @@ interactions: ParameterSetName: - --resource-group --name --tier User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2385573-5554-42cc-b11a-dd6d73eec925?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a093fd5-399e-4c78-ae38-d008271f75d9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"735538f2-5455-cc42-b11a-dd6d73eec925\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T02:47:48.7673408Z\"\n }" + string: "{\n \"name\": \"d53f096a-9e39-784c-ae38-d008271f75d9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:22:22.9258314Z\"\n }" headers: cache-control: - no-cache @@ -1241,7 +1008,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 02:49:18 GMT + - Thu, 15 Jun 2023 17:24:24 GMT expires: - '-1' pragma: @@ -1273,24 +1040,24 @@ interactions: ParameterSetName: - --resource-group --name --tier User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f2385573-5554-42cc-b11a-dd6d73eec925?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6a093fd5-399e-4c78-ae38-d008271f75d9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"735538f2-5455-cc42-b11a-dd6d73eec925\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-28T02:47:48.7673408Z\",\n \"endTime\": - \"2023-03-28T02:49:42.50087Z\"\n }" + string: "{\n \"name\": \"d53f096a-9e39-784c-ae38-d008271f75d9\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T17:22:22.9258314Z\",\n \"\ + endTime\": \"2023-06-15T17:24:37.927357Z\"\n }" headers: cache-control: - no-cache content-length: - - '168' + - '169' content-type: - application/json date: - - Tue, 28 Mar 2023 02:49:48 GMT + - Thu, 15 Jun 2023 17:24:55 GMT expires: - '-1' pragma: @@ -1322,64 +1089,66 @@ interactions: ParameterSetName: - --resource-group --name --tier User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestq4xze2n5d-79a739\",\n \"fqdn\": \"cliakstest-clitestq4xze2n5d-79a739-gq1m49un.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestq4xze2n5d-79a739-gq1m49un.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDE0FFJggipKnkXPnrm33fYZriCfQmBCjDAlgpleTFt9KnAYM+sZAq75nukWtVku/tUX5Racv3nGsQuD89ChdXKdcoNFrcQgo2AjdkD3q1wOdFzvFqzRk7eZf7Aq+Vac6zu73L5X9IT/vc8pyyo9gBbQPgbRcGLk1dtonaa//LT28lkCPUWuwfwveExmM1m6mIEsCBVtcl4tZsNQzFJrRuKyru56EiflI2OgwEAwEQ/S8OxVciVOnWTXvdc6BWZoe/RcmFb1I93hjJ+YaLbxu3392VeVcJW7pL4BZAs2+lATt8b63fr0gAAVXN2ACEZaEKaJ3RZEQ8ybS//YRhaAVUN - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/355c83ad-90b1-4edb-8fb1-d993f6827bc5\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestozlj4rvex-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestozlj4rvex-8ecadf-islv9qtt.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestozlj4rvex-8ecadf-islv9qtt.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/ebe7d617-3e8c-4f88-825f-940c82f04600\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4249' content-type: - application/json date: - - Tue, 28 Mar 2023 02:49:48 GMT + - Thu, 15 Jun 2023 17:24:55 GMT expires: - '-1' pragma: @@ -1413,8 +1182,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -1422,17 +1191,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/208b0eee-f23e-4340-89ee-ce340a92adcb?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/66433d14-1565-47f4-97da-00cdb9b3fac2?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 28 Mar 2023 02:49:50 GMT + - Thu, 15 Jun 2023 17:24:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/208b0eee-f23e-4340-89ee-ce340a92adcb?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/66433d14-1565-47f4-97da-00cdb9b3fac2?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_windows.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_windows.yaml old mode 100755 new mode 100644 index 584d9f011bc..c81813a9795 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_windows.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_windows.yaml @@ -15,8 +15,8 @@ interactions: --service-principal --client-secret --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:53:01 GMT + - Thu, 15 Jun 2023 17:25:07 GMT expires: - '-1' pragma: @@ -54,13 +54,12 @@ interactions: false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser1", "adminPassword": "replacePassword1234$"}, "servicePrincipalProfile": - {"clientId":"00000000-0000-0000-0000-000000000001", "secret":"fake-secret"}, - "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": - "azure", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "adminPassword": + "replacePassword1234$"}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "azure", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -71,7 +70,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1470' + - '1799' Content-Type: - application/json ParameterSetName: @@ -79,59 +78,26 @@ interactions: --service-principal --client-secret --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-yrbyi9pk.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-yrbyi9pk.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n - \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"details\": null,\n\ + \ \"message\": \"Service principal clientID: 29666523-a5fa-4457-bb5a-65c187caeeb2\ + \ not found in Active Directory tenant 72f988bf-86f1-41af-91ab-2d7cd011db47,\ + \ Please see https://aka.ms/aks-sp-help for more details.\",\n \"subcode\"\ + : \"ServicePrincipalNotFound\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c69e32ce-0dca-4d00-b1c8-90e7db3a41cb?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3060' + - '313' content-type: - application/json date: - - Wed, 15 Mar 2023 10:53:06 GMT + - Thu, 15 Jun 2023 17:25:12 GMT expires: - '-1' pragma: @@ -143,43 +109,97 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: - code: 201 - message: Created + code: 404 + message: Not Found - request: - body: null + body: '{"location": "westus2", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": + false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": + -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, + "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "adminPassword": + "replacePassword1234$"}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "azure", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - aks create Connection: - keep-alive + Content-Length: + - '1799' + Content-Type: + - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c69e32ce-0dca-4d00-b1c8-90e7db3a41cb?api-version=2016-03-30 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"ce329ec6-ca0d-004d-b1c8-90e7db3a41cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:53:06.379121Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-bqznmdpq.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-bqznmdpq.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n\ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \ + \ \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a5ec4675-d2ac-4510-9320-2149de3f291b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '125' + - '3421' content-type: - application/json date: - - Wed, 15 Mar 2023 10:53:36 GMT + - Thu, 15 Jun 2023 17:25:24 GMT expires: - '-1' pragma: @@ -188,15 +208,13 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -213,14 +231,14 @@ interactions: --service-principal --client-secret --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c69e32ce-0dca-4d00-b1c8-90e7db3a41cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a5ec4675-d2ac-4510-9320-2149de3f291b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ce329ec6-ca0d-004d-b1c8-90e7db3a41cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:53:06.379121Z\"\n }" + string: "{\n \"name\": \"7546eca5-acd2-1045-9320-2149de3f291b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:25:23.988697Z\"\n }" headers: cache-control: - no-cache @@ -229,7 +247,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:54:06 GMT + - Thu, 15 Jun 2023 17:25:24 GMT expires: - '-1' pragma: @@ -263,14 +281,14 @@ interactions: --service-principal --client-secret --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c69e32ce-0dca-4d00-b1c8-90e7db3a41cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a5ec4675-d2ac-4510-9320-2149de3f291b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ce329ec6-ca0d-004d-b1c8-90e7db3a41cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:53:06.379121Z\"\n }" + string: "{\n \"name\": \"7546eca5-acd2-1045-9320-2149de3f291b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:25:23.988697Z\"\n }" headers: cache-control: - no-cache @@ -279,7 +297,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:54:36 GMT + - Thu, 15 Jun 2023 17:25:54 GMT expires: - '-1' pragma: @@ -313,14 +331,14 @@ interactions: --service-principal --client-secret --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c69e32ce-0dca-4d00-b1c8-90e7db3a41cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a5ec4675-d2ac-4510-9320-2149de3f291b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ce329ec6-ca0d-004d-b1c8-90e7db3a41cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:53:06.379121Z\"\n }" + string: "{\n \"name\": \"7546eca5-acd2-1045-9320-2149de3f291b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:25:23.988697Z\"\n }" headers: cache-control: - no-cache @@ -329,7 +347,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:55:06 GMT + - Thu, 15 Jun 2023 17:26:24 GMT expires: - '-1' pragma: @@ -363,14 +381,14 @@ interactions: --service-principal --client-secret --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c69e32ce-0dca-4d00-b1c8-90e7db3a41cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a5ec4675-d2ac-4510-9320-2149de3f291b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ce329ec6-ca0d-004d-b1c8-90e7db3a41cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:53:06.379121Z\"\n }" + string: "{\n \"name\": \"7546eca5-acd2-1045-9320-2149de3f291b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:25:23.988697Z\"\n }" headers: cache-control: - no-cache @@ -379,7 +397,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:55:36 GMT + - Thu, 15 Jun 2023 17:26:54 GMT expires: - '-1' pragma: @@ -413,24 +431,23 @@ interactions: --service-principal --client-secret --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c69e32ce-0dca-4d00-b1c8-90e7db3a41cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a5ec4675-d2ac-4510-9320-2149de3f291b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ce329ec6-ca0d-004d-b1c8-90e7db3a41cb\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:53:06.379121Z\",\n \"endTime\": - \"2023-03-15T10:55:37.3218532Z\"\n }" + string: "{\n \"name\": \"7546eca5-acd2-1045-9320-2149de3f291b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:25:23.988697Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:06 GMT + - Thu, 15 Jun 2023 17:27:25 GMT expires: - '-1' pragma: @@ -464,59 +481,23 @@ interactions: --service-principal --client-secret --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a5ec4675-d2ac-4510-9320-2149de3f291b?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-yrbyi9pk.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-yrbyi9pk.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n - \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/48d05589-e904-4224-8d4b-26260b7169cf\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"7546eca5-acd2-1045-9320-2149de3f291b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:25:23.988697Z\"\n }" headers: cache-control: - no-cache content-length: - - '3324' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:07 GMT + - Thu, 15 Jun 2023 17:27:55 GMT expires: - '-1' pragma: @@ -538,44 +519,36 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks nodepool add + - aks create Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --os-type --node-count + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --windows-admin-username --windows-admin-password + --load-balancer-sku --vm-set-type --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a5ec4675-d2ac-4510-9320-2149de3f291b?api-version=2016-03-30 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"name\": \"7546eca5-acd2-1045-9320-2149de3f291b\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T17:25:23.988697Z\",\n \"\ + endTime\": \"2023-06-15T17:28:06.4074621Z\"\n }" headers: cache-control: - no-cache content-length: - - '1035' + - '169' content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:07 GMT + - Thu, 15 Jun 2023 17:28:25 GMT expires: - '-1' pragma: @@ -594,57 +567,75 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"count": 1, "vmSize": "Standard_D2s_v3", "osDiskSizeGB": - 0, "osType": "Windows", "enableAutoScaling": false, "scaleDownMode": "Delete", - "type": "VirtualMachineScaleSets", "mode": "User", "upgradeSettings": {}, "enableNodePublicIP": - false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": - -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, - "enableFIPS": false}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks nodepool add + - aks create Connection: - keep-alive - Content-Length: - - '441' - Content-Type: - - application/json ParameterSetName: - - --resource-group --cluster-name --name --os-type --node-count + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --windows-admin-username --windows-admin-password + --load-balancer-sku --vm-set-type --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n - \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"osSKU\": \"Windows2019\",\n \"nodeImageVersion\": - \"AKSWindows-2019-containerd-17763.4010.230223\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-bqznmdpq.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-bqznmdpq.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ + effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7ca54da9-6740-4798-8277-c87696bf249a\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n\ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5d42fe2d-c9c2-4a30-b42d-3d597d361ece?api-version=2016-03-30 cache-control: - no-cache content-length: - - '983' + - '3685' content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:11 GMT + - Thu, 15 Jun 2023 17:28:26 GMT expires: - '-1' pragma: @@ -653,18 +644,20 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1195' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -674,23 +667,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5d42fe2d-c9c2-4a30-b42d-3d597d361ece?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"2dfe425d-c2c9-304a-b42d-3d597d361ece\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:11.7393415Z\"\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '126' + - '1036' content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:41 GMT + - Thu, 15 Jun 2023 17:28:28 GMT expires: - '-1' pragma: @@ -709,36 +713,58 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"count": 1, "vmSize": "Standard_D2s_v3", "osDiskSizeGB": + 0, "osType": "Windows", "enableAutoScaling": false, "scaleDownMode": "Delete", + "type": "VirtualMachineScaleSets", "mode": "User", "upgradeSettings": {}, "enableNodePublicIP": + false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": + -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, + "enableFIPS": false}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - aks nodepool add Connection: - keep-alive + Content-Length: + - '441' + Content-Type: + - application/json ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5d42fe2d-c9c2-4a30-b42d-3d597d361ece?api-version=2016-03-30 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"2dfe425d-c2c9-304a-b42d-3d597d361ece\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:11.7393415Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ + ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n\ + \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"\ + provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"\ + Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Windows\",\n \"osSKU\": \"Windows2022\",\n \"nodeImageVersion\"\ + : \"AKSWindows-2022-containerd-gen2-20348.1726.230510\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e13998e-2178-4f55-9f79-c0dd0feeb384?api-version=2016-03-30 cache-control: - no-cache content-length: - - '126' + - '988' content-type: - application/json date: - - Wed, 15 Mar 2023 10:57:11 GMT + - Thu, 15 Jun 2023 17:28:33 GMT expires: - '-1' pragma: @@ -747,15 +773,13 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -770,14 +794,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5d42fe2d-c9c2-4a30-b42d-3d597d361ece?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e13998e-2178-4f55-9f79-c0dd0feeb384?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2dfe425d-c2c9-304a-b42d-3d597d361ece\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:11.7393415Z\"\n }" + string: "{\n \"name\": \"8e99139e-7821-554f-9f79-c0dd0feeb384\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:28:33.2078883Z\"\n }" headers: cache-control: - no-cache @@ -786,7 +810,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:57:41 GMT + - Thu, 15 Jun 2023 17:28:33 GMT expires: - '-1' pragma: @@ -818,14 +842,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5d42fe2d-c9c2-4a30-b42d-3d597d361ece?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e13998e-2178-4f55-9f79-c0dd0feeb384?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2dfe425d-c2c9-304a-b42d-3d597d361ece\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:11.7393415Z\"\n }" + string: "{\n \"name\": \"8e99139e-7821-554f-9f79-c0dd0feeb384\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:28:33.2078883Z\"\n }" headers: cache-control: - no-cache @@ -834,7 +858,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:58:11 GMT + - Thu, 15 Jun 2023 17:29:03 GMT expires: - '-1' pragma: @@ -866,14 +890,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5d42fe2d-c9c2-4a30-b42d-3d597d361ece?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e13998e-2178-4f55-9f79-c0dd0feeb384?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2dfe425d-c2c9-304a-b42d-3d597d361ece\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:11.7393415Z\"\n }" + string: "{\n \"name\": \"8e99139e-7821-554f-9f79-c0dd0feeb384\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:28:33.2078883Z\"\n }" headers: cache-control: - no-cache @@ -882,7 +906,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:58:41 GMT + - Thu, 15 Jun 2023 17:29:33 GMT expires: - '-1' pragma: @@ -914,14 +938,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5d42fe2d-c9c2-4a30-b42d-3d597d361ece?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e13998e-2178-4f55-9f79-c0dd0feeb384?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2dfe425d-c2c9-304a-b42d-3d597d361ece\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:11.7393415Z\"\n }" + string: "{\n \"name\": \"8e99139e-7821-554f-9f79-c0dd0feeb384\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:28:33.2078883Z\"\n }" headers: cache-control: - no-cache @@ -930,7 +954,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:59:12 GMT + - Thu, 15 Jun 2023 17:30:03 GMT expires: - '-1' pragma: @@ -962,14 +986,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5d42fe2d-c9c2-4a30-b42d-3d597d361ece?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e13998e-2178-4f55-9f79-c0dd0feeb384?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2dfe425d-c2c9-304a-b42d-3d597d361ece\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:11.7393415Z\"\n }" + string: "{\n \"name\": \"8e99139e-7821-554f-9f79-c0dd0feeb384\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:28:33.2078883Z\"\n }" headers: cache-control: - no-cache @@ -978,7 +1002,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:59:42 GMT + - Thu, 15 Jun 2023 17:30:33 GMT expires: - '-1' pragma: @@ -1010,24 +1034,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5d42fe2d-c9c2-4a30-b42d-3d597d361ece?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e13998e-2178-4f55-9f79-c0dd0feeb384?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2dfe425d-c2c9-304a-b42d-3d597d361ece\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:56:11.7393415Z\",\n \"endTime\": - \"2023-03-15T11:00:06.4289156Z\"\n }" + string: "{\n \"name\": \"8e99139e-7821-554f-9f79-c0dd0feeb384\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:28:33.2078883Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:12 GMT + - Thu, 15 Jun 2023 17:31:03 GMT expires: - '-1' pragma: @@ -1059,33 +1082,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e13998e-2178-4f55-9f79-c0dd0feeb384?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n - \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"osSKU\": \"Windows2019\",\n \"nodeImageVersion\": - \"AKSWindows-2019-containerd-17763.4010.230223\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"name\": \"8e99139e-7821-554f-9f79-c0dd0feeb384\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:28:33.2078883Z\"\n }" headers: cache-control: - no-cache content-length: - - '984' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:12 GMT + - Thu, 15 Jun 2023 17:31:33 GMT expires: - '-1' pragma: @@ -1107,79 +1120,33 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks update + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --enable-ahub + - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e13998e-2178-4f55-9f79-c0dd0feeb384?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-yrbyi9pk.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-yrbyi9pk.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"scaleDownMode\": - \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\": - \"Windows2019\",\n \"nodeImageVersion\": \"AKSWindows-2019-containerd-17763.4010.230223\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n - \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/48d05589-e904-4224-8d4b-26260b7169cf\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"8e99139e-7821-554f-9f79-c0dd0feeb384\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:28:33.2078883Z\"\n }" headers: cache-control: - no-cache content-length: - - '4100' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:13 GMT + - Thu, 15 Jun 2023 17:32:03 GMT expires: - '-1' pragma: @@ -1198,113 +1165,36 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "properties": - {"kubernetesVersion": "1.24.9", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": - [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": - "Managed", "kubeletDiskType": "OS", "maxPods": 30, "osType": "Linux", "osSKU": - "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": - "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": - {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}, {"count": - 1, "vmSize": "Standard_D2s_v3", "osDiskSizeGB": 128, "osDiskType": "Managed", - "kubeletDiskType": "OS", "maxPods": 30, "osType": "Windows", "osSKU": "Windows2019", - "enableAutoScaling": false, "scaleDownMode": "Delete", "type": "VirtualMachineScaleSets", - "mode": "User", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": - {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false, "name": "npwin"}], "linuxProfile": - {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser1", "licenseType": "Windows_Server", "enableCSIProxy": true}, "servicePrincipalProfile": - {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": - false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": - true, "networkProfile": {"networkPlugin": "azure", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/48d05589-e904-4224-8d4b-26260b7169cf"}]}, - "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": - false, "securityProfile": {}, "storageProfile": {}, "workloadAutoScalerProfile": - {}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks update + - aks nodepool add Connection: - keep-alive - Content-Length: - - '2611' - Content-Type: - - application/json ParameterSetName: - - --resource-group --name --enable-ahub + - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e13998e-2178-4f55-9f79-c0dd0feeb384?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-yrbyi9pk.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-yrbyi9pk.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"scaleDownMode\": - \"Delete\",\n \"provisioningState\": \"Updating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\": - \"Windows2019\",\n \"nodeImageVersion\": \"AKSWindows-2019-containerd-17763.4010.230223\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"Windows_Server\",\n - \ \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/48d05589-e904-4224-8d4b-26260b7169cf\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"8e99139e-7821-554f-9f79-c0dd0feeb384\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:28:33.2078883Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4134' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:16 GMT + - Thu, 15 Jun 2023 17:32:34 GMT expires: - '-1' pragma: @@ -1319,8 +1209,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1195' status: code: 200 message: OK @@ -1332,29 +1220,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks update + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --enable-ahub + - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e13998e-2178-4f55-9f79-c0dd0feeb384?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"8e99139e-7821-554f-9f79-c0dd0feeb384\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T17:28:33.2078883Z\",\n \"\ + endTime\": \"2023-06-15T17:32:57.6981055Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:46 GMT + - Thu, 15 Jun 2023 17:33:04 GMT expires: - '-1' pragma: @@ -1380,29 +1269,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks update + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --enable-ahub + - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ + ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n\ + \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"\ + provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"\ + Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Windows\",\n \"osSKU\": \"Windows2022\",\n \"nodeImageVersion\"\ + : \"AKSWindows-2022-containerd-gen2-20348.1726.230510\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '989' content-type: - application/json date: - - Wed, 15 Mar 2023 11:01:16 GMT + - Thu, 15 Jun 2023 17:33:05 GMT expires: - '-1' pragma: @@ -1424,7 +1324,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1434,23 +1334,71 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-bqznmdpq.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-bqznmdpq.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n },\n \ + \ {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\"\ + : \"Windows2022\",\n \"nodeImageVersion\": \"AKSWindows-2022-containerd-gen2-20348.1726.230510\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ + effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7ca54da9-6740-4798-8277-c87696bf249a\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n\ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '4466' content-type: - application/json date: - - Wed, 15 Mar 2023 11:01:46 GMT + - Thu, 15 Jun 2023 17:33:07 GMT expires: - '-1' pragma: @@ -1469,36 +1417,116 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "properties": + {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": + [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": + "Managed", "kubeletDiskType": "OS", "maxPods": 30, "osType": "Linux", "osSKU": + "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": + "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": + {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}, {"count": + 1, "vmSize": "Standard_D2s_v3", "osDiskSizeGB": 128, "osDiskType": "Managed", + "kubeletDiskType": "OS", "maxPods": 30, "osType": "Windows", "osSKU": "Windows2022", + "enableAutoScaling": false, "scaleDownMode": "Delete", "type": "VirtualMachineScaleSets", + "mode": "User", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": + {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "npwin"}], "linuxProfile": + {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "licenseType": + "Windows_Server", "enableCSIProxy": true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "azure", "networkDataplane": "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7ca54da9-6740-4798-8277-c87696bf249a"}]}, + "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": + false, "securityProfile": {}, "storageProfile": {}, "workloadAutoScalerProfile": + {}}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - aks update Connection: - keep-alive + Content-Length: + - '2968' + Content-Type: + - application/json ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-bqznmdpq.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-bqznmdpq.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n },\n \ + \ {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\"\ + : \"Windows2022\",\n \"nodeImageVersion\": \"AKSWindows-2022-containerd-gen2-20348.1726.230510\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"Windows_Server\"\ + ,\n \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n\ + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\"\ + : \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n\ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"azure\",\n \"networkDataplane\": \"azure\",\n\ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7ca54da9-6740-4798-8277-c87696bf249a\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n\ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 cache-control: - no-cache content-length: - - '126' + - '4500' content-type: - application/json date: - - Wed, 15 Mar 2023 11:02:17 GMT + - Thu, 15 Jun 2023 17:33:13 GMT expires: - '-1' pragma: @@ -1513,6 +1541,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -1530,14 +1560,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -1546,7 +1576,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:02:46 GMT + - Thu, 15 Jun 2023 17:33:13 GMT expires: - '-1' pragma: @@ -1578,14 +1608,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -1594,7 +1624,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:03:17 GMT + - Thu, 15 Jun 2023 17:33:44 GMT expires: - '-1' pragma: @@ -1626,14 +1656,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -1642,7 +1672,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:03:46 GMT + - Thu, 15 Jun 2023 17:34:14 GMT expires: - '-1' pragma: @@ -1674,14 +1704,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -1690,7 +1720,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:04:17 GMT + - Thu, 15 Jun 2023 17:34:44 GMT expires: - '-1' pragma: @@ -1722,14 +1752,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -1738,7 +1768,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:04:47 GMT + - Thu, 15 Jun 2023 17:35:14 GMT expires: - '-1' pragma: @@ -1770,14 +1800,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -1786,7 +1816,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:05:17 GMT + - Thu, 15 Jun 2023 17:35:45 GMT expires: - '-1' pragma: @@ -1818,14 +1848,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -1834,7 +1864,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:05:47 GMT + - Thu, 15 Jun 2023 17:36:15 GMT expires: - '-1' pragma: @@ -1866,14 +1896,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -1882,7 +1912,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:06:17 GMT + - Thu, 15 Jun 2023 17:36:45 GMT expires: - '-1' pragma: @@ -1914,14 +1944,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -1930,7 +1960,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:06:47 GMT + - Thu, 15 Jun 2023 17:37:15 GMT expires: - '-1' pragma: @@ -1962,14 +1992,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -1978,7 +2008,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:07:17 GMT + - Thu, 15 Jun 2023 17:37:45 GMT expires: - '-1' pragma: @@ -2010,14 +2040,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -2026,7 +2056,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:07:47 GMT + - Thu, 15 Jun 2023 17:38:16 GMT expires: - '-1' pragma: @@ -2058,14 +2088,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -2074,7 +2104,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:17 GMT + - Thu, 15 Jun 2023 17:38:47 GMT expires: - '-1' pragma: @@ -2106,14 +2136,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -2122,7 +2152,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:48 GMT + - Thu, 15 Jun 2023 17:39:16 GMT expires: - '-1' pragma: @@ -2154,14 +2184,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -2170,7 +2200,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:09:17 GMT + - Thu, 15 Jun 2023 17:39:46 GMT expires: - '-1' pragma: @@ -2202,14 +2232,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -2218,7 +2248,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:09:48 GMT + - Thu, 15 Jun 2023 17:40:17 GMT expires: - '-1' pragma: @@ -2250,14 +2280,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -2266,7 +2296,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:10:17 GMT + - Thu, 15 Jun 2023 17:40:47 GMT expires: - '-1' pragma: @@ -2298,14 +2328,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -2314,7 +2344,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:10:48 GMT + - Thu, 15 Jun 2023 17:41:17 GMT expires: - '-1' pragma: @@ -2346,14 +2376,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -2362,7 +2392,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:11:17 GMT + - Thu, 15 Jun 2023 17:41:48 GMT expires: - '-1' pragma: @@ -2394,14 +2424,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -2410,7 +2440,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:11:48 GMT + - Thu, 15 Jun 2023 17:42:17 GMT expires: - '-1' pragma: @@ -2442,14 +2472,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -2458,7 +2488,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:12:18 GMT + - Thu, 15 Jun 2023 17:42:48 GMT expires: - '-1' pragma: @@ -2490,14 +2520,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -2506,7 +2536,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:12:48 GMT + - Thu, 15 Jun 2023 17:43:18 GMT expires: - '-1' pragma: @@ -2538,14 +2568,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -2554,7 +2584,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:13:18 GMT + - Thu, 15 Jun 2023 17:43:48 GMT expires: - '-1' pragma: @@ -2586,14 +2616,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -2602,7 +2632,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:13:48 GMT + - Thu, 15 Jun 2023 17:44:18 GMT expires: - '-1' pragma: @@ -2634,14 +2664,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -2650,7 +2680,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:14:18 GMT + - Thu, 15 Jun 2023 17:44:48 GMT expires: - '-1' pragma: @@ -2682,14 +2712,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -2698,7 +2728,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:14:48 GMT + - Thu, 15 Jun 2023 17:45:18 GMT expires: - '-1' pragma: @@ -2730,14 +2760,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -2746,7 +2776,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:15:18 GMT + - Thu, 15 Jun 2023 17:45:49 GMT expires: - '-1' pragma: @@ -2778,14 +2808,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -2794,7 +2824,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:15:49 GMT + - Thu, 15 Jun 2023 17:46:18 GMT expires: - '-1' pragma: @@ -2826,14 +2856,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\"\n }" headers: cache-control: - no-cache @@ -2842,7 +2872,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:16:18 GMT + - Thu, 15 Jun 2023 17:46:49 GMT expires: - '-1' pragma: @@ -2874,15 +2904,15 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f97db468-edae-4b22-9020-828a986491c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e8a4a4df-f80c-43d6-9606-181fde343271?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"68b47df9-aeed-224b-9020-828a986491c1\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:00:17.0062696Z\",\n \"endTime\": - \"2023-03-15T11:16:26.0172602Z\"\n }" + string: "{\n \"name\": \"dfa4a4e8-0cf8-d643-9606-181fde343271\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T17:33:13.4115939Z\",\n \"\ + endTime\": \"2023-06-15T17:46:59.5436253Z\"\n }" headers: cache-control: - no-cache @@ -2891,7 +2921,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:16:49 GMT + - Thu, 15 Jun 2023 17:47:20 GMT expires: - '-1' pragma: @@ -2923,69 +2953,72 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-yrbyi9pk.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-yrbyi9pk.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"scaleDownMode\": - \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\": - \"Windows2019\",\n \"nodeImageVersion\": \"AKSWindows-2019-containerd-17763.4010.230223\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"Windows_Server\",\n - \ \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/48d05589-e904-4224-8d4b-26260b7169cf\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-bqznmdpq.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-bqznmdpq.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n },\n \ + \ {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\"\ + : \"Windows2022\",\n \"nodeImageVersion\": \"AKSWindows-2022-containerd-gen2-20348.1726.230510\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"Windows_Server\"\ + ,\n \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n\ + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\"\ + : \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n\ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"azure\",\n \"networkDataplane\": \"azure\",\n\ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/7ca54da9-6740-4798-8277-c87696bf249a\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n\ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4137' + - '4503' content-type: - application/json date: - - Wed, 15 Mar 2023 11:16:49 GMT + - Thu, 15 Jun 2023 17:47:21 GMT expires: - '-1' pragma: @@ -3017,46 +3050,47 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n - \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"osSKU\": \"Windows2019\",\n \"nodeImageVersion\": - \"AKSWindows-2019-containerd-17763.4010.230223\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ + ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\"\ + : \"Windows2022\",\n \"nodeImageVersion\": \"AKSWindows-2022-containerd-gen2-20348.1726.230510\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '2084' + - '2090' content-type: - application/json date: - - Wed, 15 Mar 2023 11:16:50 GMT + - Thu, 15 Jun 2023 17:47:22 GMT expires: - '-1' pragma: @@ -3090,8 +3124,8 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-04-01 response: @@ -3099,17 +3133,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/effbb170-bab1-44f7-a18b-27c8c3d25de6?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/616a9454-692f-4792-abaf-9f08290aaac9?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:16:51 GMT + - Thu, 15 Jun 2023 17:47:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/effbb170-bab1-44f7-a18b-27c8c3d25de6?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/616a9454-692f-4792-abaf-9f08290aaac9?api-version=2016-03-30 pragma: - no-cache server: @@ -3119,7 +3153,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14999' status: code: 202 message: Accepted @@ -3139,8 +3173,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -3148,17 +3182,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59078ea9-e014-4ffe-8c5a-06e95609f2e2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6007458d-91bc-4105-bc76-ceead91757b0?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:16:52 GMT + - Thu, 15 Jun 2023 17:47:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/59078ea9-e014-4ffe-8c5a-06e95609f2e2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/6007458d-91bc-4105-bc76-ceead91757b0?api-version=2016-03-30 pragma: - no-cache server: @@ -3168,7 +3202,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14994' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_windows_gmsa.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_windows_gmsa.yaml old mode 100755 new mode 100644 index 73bcf01f67c..4d9ffd4dcdd --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_windows_gmsa.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_windows_gmsa.yaml @@ -15,8 +15,8 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:48:37 GMT + - Thu, 15 Jun 2023 17:47:35 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: code: 404 message: Not Found - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + body: '{"location": "centraluseuap", "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", @@ -55,12 +55,12 @@ interactions: "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser1", "adminPassword": "replace-Password1234$", "gmsaProfile": {"enabled": - true}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": - "azure", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "adminPassword": + "replace-Password1234$", "gmsaProfile": {"enabled": true}}, "addonProfiles": + {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "azure", "outboundType": + "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, + "storageProfile": {}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/AKSWindowsGmsaPreview @@ -73,7 +73,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1441' + - '1776' Content-Type: - application/json ParameterSetName: @@ -81,63 +81,65 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-k91oez60.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-k91oez60.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true,\n - \ \"gmsaProfile\": {\n \"enabled\": true,\n \"dnsServer\": \"\",\n - \ \"rootDomainName\": \"\"\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n - \ \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n - \ \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-3r2rao7p.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-3r2rao7p.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true,\n\ + \ \"gmsaProfile\": {\n \"enabled\": true,\n \"dnsServer\": \"\"\ + ,\n \"rootDomainName\": \"\"\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n\ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \ + \ \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c8a99974-27b0-4100-851d-bdf9894dd4de?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b23f00b4-2884-40b3-9a56-39ebeccbd4a4?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3319' + - '3704' content-type: - application/json date: - - Wed, 15 Mar 2023 10:48:40 GMT + - Thu, 15 Jun 2023 17:47:40 GMT expires: - '-1' pragma: @@ -149,7 +151,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1199' status: code: 201 message: Created @@ -169,14 +171,14 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c8a99974-27b0-4100-851d-bdf9894dd4de?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b23f00b4-2884-40b3-9a56-39ebeccbd4a4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7499a9c8-b027-0041-851d-bdf9894dd4de\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:48:41.1752532Z\"\n }" + string: "{\n \"name\": \"b4003fb2-8428-b340-9a56-39ebeccbd4a4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:47:40.5026811Z\"\n }" headers: cache-control: - no-cache @@ -185,7 +187,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:49:11 GMT + - Thu, 15 Jun 2023 17:47:40 GMT expires: - '-1' pragma: @@ -219,14 +221,14 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c8a99974-27b0-4100-851d-bdf9894dd4de?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b23f00b4-2884-40b3-9a56-39ebeccbd4a4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7499a9c8-b027-0041-851d-bdf9894dd4de\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:48:41.1752532Z\"\n }" + string: "{\n \"name\": \"b4003fb2-8428-b340-9a56-39ebeccbd4a4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:47:40.5026811Z\"\n }" headers: cache-control: - no-cache @@ -235,7 +237,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:49:40 GMT + - Thu, 15 Jun 2023 17:48:11 GMT expires: - '-1' pragma: @@ -269,14 +271,14 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c8a99974-27b0-4100-851d-bdf9894dd4de?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b23f00b4-2884-40b3-9a56-39ebeccbd4a4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7499a9c8-b027-0041-851d-bdf9894dd4de\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:48:41.1752532Z\"\n }" + string: "{\n \"name\": \"b4003fb2-8428-b340-9a56-39ebeccbd4a4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:47:40.5026811Z\"\n }" headers: cache-control: - no-cache @@ -285,7 +287,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:50:11 GMT + - Thu, 15 Jun 2023 17:48:40 GMT expires: - '-1' pragma: @@ -319,14 +321,14 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c8a99974-27b0-4100-851d-bdf9894dd4de?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b23f00b4-2884-40b3-9a56-39ebeccbd4a4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7499a9c8-b027-0041-851d-bdf9894dd4de\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:48:41.1752532Z\"\n }" + string: "{\n \"name\": \"b4003fb2-8428-b340-9a56-39ebeccbd4a4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:47:40.5026811Z\"\n }" headers: cache-control: - no-cache @@ -335,7 +337,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:50:40 GMT + - Thu, 15 Jun 2023 17:49:10 GMT expires: - '-1' pragma: @@ -369,14 +371,14 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c8a99974-27b0-4100-851d-bdf9894dd4de?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b23f00b4-2884-40b3-9a56-39ebeccbd4a4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7499a9c8-b027-0041-851d-bdf9894dd4de\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:48:41.1752532Z\"\n }" + string: "{\n \"name\": \"b4003fb2-8428-b340-9a56-39ebeccbd4a4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:47:40.5026811Z\"\n }" headers: cache-control: - no-cache @@ -385,7 +387,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:51:11 GMT + - Thu, 15 Jun 2023 17:49:41 GMT expires: - '-1' pragma: @@ -419,14 +421,14 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c8a99974-27b0-4100-851d-bdf9894dd4de?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b23f00b4-2884-40b3-9a56-39ebeccbd4a4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7499a9c8-b027-0041-851d-bdf9894dd4de\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:48:41.1752532Z\"\n }" + string: "{\n \"name\": \"b4003fb2-8428-b340-9a56-39ebeccbd4a4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:47:40.5026811Z\"\n }" headers: cache-control: - no-cache @@ -435,7 +437,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:51:40 GMT + - Thu, 15 Jun 2023 17:50:11 GMT expires: - '-1' pragma: @@ -469,24 +471,74 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c8a99974-27b0-4100-851d-bdf9894dd4de?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b23f00b4-2884-40b3-9a56-39ebeccbd4a4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7499a9c8-b027-0041-851d-bdf9894dd4de\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:48:41.1752532Z\",\n \"endTime\": - \"2023-03-15T10:52:05.836696Z\"\n }" + string: "{\n \"name\": \"b4003fb2-8428-b340-9a56-39ebeccbd4a4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:47:40.5026811Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 17:50:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/b23f00b4-2884-40b3-9a56-39ebeccbd4a4?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"b4003fb2-8428-b340-9a56-39ebeccbd4a4\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T17:47:40.5026811Z\",\n \"\ + endTime\": \"2023-06-15T17:50:58.3851115Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 10:52:11 GMT + - Thu, 15 Jun 2023 17:51:11 GMT expires: - '-1' pragma: @@ -520,66 +572,67 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-k91oez60.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-k91oez60.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true,\n - \ \"gmsaProfile\": {\n \"enabled\": true,\n \"dnsServer\": \"\",\n - \ \"rootDomainName\": \"\"\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8c8ee34f-7c2e-4ccd-9a7e-42068b91fc88\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-3r2rao7p.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-3r2rao7p.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true,\n\ + \ \"gmsaProfile\": {\n \"enabled\": true,\n \"dnsServer\": \"\"\ + ,\n \"rootDomainName\": \"\"\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ + effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/a9670655-feba-4d5c-85b1-998af680274b\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \ + \ \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3972' + - '4369' content-type: - application/json date: - - Wed, 15 Mar 2023 10:52:11 GMT + - Thu, 15 Jun 2023 17:51:11 GMT expires: - '-1' pragma: @@ -611,34 +664,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '1035' + - '1036' content-type: - application/json date: - - Wed, 15 Mar 2023 10:52:12 GMT + - Thu, 15 Jun 2023 17:51:13 GMT expires: - '-1' pragma: @@ -679,35 +732,36 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n - \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"osSKU\": \"Windows2019\",\n \"nodeImageVersion\": - \"AKSWindows-2019-containerd-17763.4010.230223\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ + ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n\ + \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"\ + provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"\ + Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Windows\",\n \"osSKU\": \"Windows2022\",\n \"nodeImageVersion\"\ + : \"AKSWindows-2022-containerd-gen2-20348.1787.230614\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6631013e-eb6a-4a2e-97c0-f3cd1f6832fc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 cache-control: - no-cache content-length: - - '983' + - '988' content-type: - application/json date: - - Wed, 15 Mar 2023 10:52:17 GMT + - Thu, 15 Jun 2023 17:51:17 GMT expires: - '-1' pragma: @@ -719,7 +773,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -737,14 +791,254 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ee57b6f7-62a8-0b45-a476-07b1b2a25187\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:51:18.3339841Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 17:51:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ee57b6f7-62a8-0b45-a476-07b1b2a25187\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:51:18.3339841Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 17:51:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ee57b6f7-62a8-0b45-a476-07b1b2a25187\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:51:18.3339841Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 17:52:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ee57b6f7-62a8-0b45-a476-07b1b2a25187\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:51:18.3339841Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 17:52:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ee57b6f7-62a8-0b45-a476-07b1b2a25187\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:51:18.3339841Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 17:53:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6631013e-eb6a-4a2e-97c0-f3cd1f6832fc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3e013166-6aeb-2e4a-97c0-f3cd1f6832fc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:52:17.7696178Z\"\n }" + string: "{\n \"name\": \"ee57b6f7-62a8-0b45-a476-07b1b2a25187\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:51:18.3339841Z\"\n }" headers: cache-control: - no-cache @@ -753,7 +1047,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:52:47 GMT + - Thu, 15 Jun 2023 17:53:48 GMT expires: - '-1' pragma: @@ -785,14 +1079,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6631013e-eb6a-4a2e-97c0-f3cd1f6832fc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3e013166-6aeb-2e4a-97c0-f3cd1f6832fc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:52:17.7696178Z\"\n }" + string: "{\n \"name\": \"ee57b6f7-62a8-0b45-a476-07b1b2a25187\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:51:18.3339841Z\"\n }" headers: cache-control: - no-cache @@ -801,7 +1095,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:53:17 GMT + - Thu, 15 Jun 2023 17:54:18 GMT expires: - '-1' pragma: @@ -833,14 +1127,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6631013e-eb6a-4a2e-97c0-f3cd1f6832fc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3e013166-6aeb-2e4a-97c0-f3cd1f6832fc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:52:17.7696178Z\"\n }" + string: "{\n \"name\": \"ee57b6f7-62a8-0b45-a476-07b1b2a25187\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:51:18.3339841Z\"\n }" headers: cache-control: - no-cache @@ -849,7 +1143,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:53:47 GMT + - Thu, 15 Jun 2023 17:54:49 GMT expires: - '-1' pragma: @@ -881,14 +1175,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6631013e-eb6a-4a2e-97c0-f3cd1f6832fc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3e013166-6aeb-2e4a-97c0-f3cd1f6832fc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:52:17.7696178Z\"\n }" + string: "{\n \"name\": \"ee57b6f7-62a8-0b45-a476-07b1b2a25187\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:51:18.3339841Z\"\n }" headers: cache-control: - no-cache @@ -897,7 +1191,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:54:18 GMT + - Thu, 15 Jun 2023 17:55:19 GMT expires: - '-1' pragma: @@ -929,14 +1223,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6631013e-eb6a-4a2e-97c0-f3cd1f6832fc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3e013166-6aeb-2e4a-97c0-f3cd1f6832fc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:52:17.7696178Z\"\n }" + string: "{\n \"name\": \"ee57b6f7-62a8-0b45-a476-07b1b2a25187\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:51:18.3339841Z\"\n }" headers: cache-control: - no-cache @@ -945,7 +1239,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:54:48 GMT + - Thu, 15 Jun 2023 17:55:49 GMT expires: - '-1' pragma: @@ -977,14 +1271,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6631013e-eb6a-4a2e-97c0-f3cd1f6832fc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3e013166-6aeb-2e4a-97c0-f3cd1f6832fc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:52:17.7696178Z\"\n }" + string: "{\n \"name\": \"ee57b6f7-62a8-0b45-a476-07b1b2a25187\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:51:18.3339841Z\"\n }" headers: cache-control: - no-cache @@ -993,7 +1287,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:55:18 GMT + - Thu, 15 Jun 2023 17:56:19 GMT expires: - '-1' pragma: @@ -1025,14 +1319,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6631013e-eb6a-4a2e-97c0-f3cd1f6832fc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3e013166-6aeb-2e4a-97c0-f3cd1f6832fc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:52:17.7696178Z\"\n }" + string: "{\n \"name\": \"ee57b6f7-62a8-0b45-a476-07b1b2a25187\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:51:18.3339841Z\"\n }" headers: cache-control: - no-cache @@ -1041,7 +1335,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:55:47 GMT + - Thu, 15 Jun 2023 17:56:49 GMT expires: - '-1' pragma: @@ -1073,14 +1367,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6631013e-eb6a-4a2e-97c0-f3cd1f6832fc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3e013166-6aeb-2e4a-97c0-f3cd1f6832fc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:52:17.7696178Z\"\n }" + string: "{\n \"name\": \"ee57b6f7-62a8-0b45-a476-07b1b2a25187\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:51:18.3339841Z\"\n }" headers: cache-control: - no-cache @@ -1089,7 +1383,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:17 GMT + - Thu, 15 Jun 2023 17:57:19 GMT expires: - '-1' pragma: @@ -1121,15 +1415,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6631013e-eb6a-4a2e-97c0-f3cd1f6832fc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/f7b657ee-a862-450b-a476-07b1b2a25187?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3e013166-6aeb-2e4a-97c0-f3cd1f6832fc\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:52:17.7696178Z\",\n \"endTime\": - \"2023-03-15T10:56:45.5760173Z\"\n }" + string: "{\n \"name\": \"ee57b6f7-62a8-0b45-a476-07b1b2a25187\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T17:51:18.3339841Z\",\n \"\ + endTime\": \"2023-06-15T17:57:49.1929973Z\"\n }" headers: cache-control: - no-cache @@ -1138,7 +1432,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:47 GMT + - Thu, 15 Jun 2023 17:57:50 GMT expires: - '-1' pragma: @@ -1170,33 +1464,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n - \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"osSKU\": \"Windows2019\",\n \"nodeImageVersion\": - \"AKSWindows-2019-containerd-17763.4010.230223\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ + ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n\ + \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"\ + provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"\ + Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Windows\",\n \"osSKU\": \"Windows2022\",\n \"nodeImageVersion\"\ + : \"AKSWindows-2022-containerd-gen2-20348.1787.230614\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '984' + - '989' content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:48 GMT + - Thu, 15 Jun 2023 17:57:50 GMT expires: - '-1' pragma: @@ -1228,46 +1523,47 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n - \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"osSKU\": \"Windows2019\",\n \"nodeImageVersion\": - \"AKSWindows-2019-containerd-17763.4010.230223\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ + ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\"\ + : \"Windows2022\",\n \"nodeImageVersion\": \"AKSWindows-2022-containerd-gen2-20348.1787.230614\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '2084' + - '2090' content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:49 GMT + - Thu, 15 Jun 2023 17:57:51 GMT expires: - '-1' pragma: @@ -1301,8 +1597,8 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-04-01 response: @@ -1310,17 +1606,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ba578589-c801-4c7d-ab7d-9789e59ce8fb?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/79d30cac-61c7-465d-8e6b-b1ba2cb7a379?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:56:49 GMT + - Thu, 15 Jun 2023 17:57:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/ba578589-c801-4c7d-ab7d-9789e59ce8fb?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/79d30cac-61c7-465d-8e6b-b1ba2cb7a379?api-version=2016-03-30 pragma: - no-cache server: @@ -1330,7 +1626,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -1350,8 +1646,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -1359,17 +1655,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/842af38b-b801-4519-8401-0cc13e75e7a8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/c5cc9304-1b95-43fb-85c0-3406b398db3f?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:56:50 GMT + - Thu, 15 Jun 2023 17:57:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/842af38b-b801-4519-8401-0cc13e75e7a8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operationresults/c5cc9304-1b95-43fb-85c0-3406b398db3f?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_windows_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_windows_msi.yaml old mode 100755 new mode 100644 index 2f3a541383f..92dbeb48ae7 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_windows_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_windows_msi.yaml @@ -15,8 +15,8 @@ interactions: --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:51:03 GMT + - Thu, 15 Jun 2023 17:58:02 GMT expires: - '-1' pragma: @@ -55,12 +55,11 @@ interactions: "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser1", "adminPassword": "replacePassword1234$"}, "addonProfiles": {}, - "enableRBAC": true, "networkProfile": {"networkPlugin": "azure", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, - "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "adminPassword": + "replacePassword1234$"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "azure", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -71,7 +70,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1406' + - '1735' Content-Type: - application/json ParameterSetName: @@ -79,61 +78,63 @@ interactions: --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-loy1rc7h.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-loy1rc7h.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n - \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-q1ojbe2v.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-q1ojbe2v.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n\ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \ + \ \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a301d0ac-a9db-4840-9c0b-1be4ce2e179e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9d4efd0-9a07-4dbe-a560-cb672801ed18?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3221' + - '3582' content-type: - application/json date: - - Wed, 15 Mar 2023 10:51:07 GMT + - Thu, 15 Jun 2023 17:58:09 GMT expires: - '-1' pragma: @@ -145,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -165,14 +166,14 @@ interactions: --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a301d0ac-a9db-4840-9c0b-1be4ce2e179e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9d4efd0-9a07-4dbe-a560-cb672801ed18?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"acd001a3-dba9-4048-9c0b-1be4ce2e179e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:51:07.5819248Z\"\n }" + string: "{\n \"name\": \"d0efd4b9-079a-be4d-a560-cb672801ed18\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:58:09.0560096Z\"\n }" headers: cache-control: - no-cache @@ -181,7 +182,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:51:37 GMT + - Thu, 15 Jun 2023 17:58:09 GMT expires: - '-1' pragma: @@ -215,14 +216,14 @@ interactions: --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a301d0ac-a9db-4840-9c0b-1be4ce2e179e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9d4efd0-9a07-4dbe-a560-cb672801ed18?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"acd001a3-dba9-4048-9c0b-1be4ce2e179e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:51:07.5819248Z\"\n }" + string: "{\n \"name\": \"d0efd4b9-079a-be4d-a560-cb672801ed18\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:58:09.0560096Z\"\n }" headers: cache-control: - no-cache @@ -231,7 +232,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:52:07 GMT + - Thu, 15 Jun 2023 17:58:39 GMT expires: - '-1' pragma: @@ -265,14 +266,14 @@ interactions: --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a301d0ac-a9db-4840-9c0b-1be4ce2e179e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9d4efd0-9a07-4dbe-a560-cb672801ed18?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"acd001a3-dba9-4048-9c0b-1be4ce2e179e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:51:07.5819248Z\"\n }" + string: "{\n \"name\": \"d0efd4b9-079a-be4d-a560-cb672801ed18\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:58:09.0560096Z\"\n }" headers: cache-control: - no-cache @@ -281,7 +282,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:52:37 GMT + - Thu, 15 Jun 2023 17:59:09 GMT expires: - '-1' pragma: @@ -315,14 +316,14 @@ interactions: --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a301d0ac-a9db-4840-9c0b-1be4ce2e179e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9d4efd0-9a07-4dbe-a560-cb672801ed18?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"acd001a3-dba9-4048-9c0b-1be4ce2e179e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:51:07.5819248Z\"\n }" + string: "{\n \"name\": \"d0efd4b9-079a-be4d-a560-cb672801ed18\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:58:09.0560096Z\"\n }" headers: cache-control: - no-cache @@ -331,7 +332,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:53:07 GMT + - Thu, 15 Jun 2023 17:59:40 GMT expires: - '-1' pragma: @@ -365,14 +366,14 @@ interactions: --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a301d0ac-a9db-4840-9c0b-1be4ce2e179e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9d4efd0-9a07-4dbe-a560-cb672801ed18?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"acd001a3-dba9-4048-9c0b-1be4ce2e179e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:51:07.5819248Z\"\n }" + string: "{\n \"name\": \"d0efd4b9-079a-be4d-a560-cb672801ed18\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:58:09.0560096Z\"\n }" headers: cache-control: - no-cache @@ -381,7 +382,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:53:37 GMT + - Thu, 15 Jun 2023 18:00:10 GMT expires: - '-1' pragma: @@ -415,14 +416,14 @@ interactions: --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a301d0ac-a9db-4840-9c0b-1be4ce2e179e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9d4efd0-9a07-4dbe-a560-cb672801ed18?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"acd001a3-dba9-4048-9c0b-1be4ce2e179e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:51:07.5819248Z\"\n }" + string: "{\n \"name\": \"d0efd4b9-079a-be4d-a560-cb672801ed18\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:58:09.0560096Z\"\n }" headers: cache-control: - no-cache @@ -431,7 +432,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:54:08 GMT + - Thu, 15 Jun 2023 18:00:40 GMT expires: - '-1' pragma: @@ -465,15 +466,65 @@ interactions: --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a301d0ac-a9db-4840-9c0b-1be4ce2e179e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9d4efd0-9a07-4dbe-a560-cb672801ed18?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"acd001a3-dba9-4048-9c0b-1be4ce2e179e\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:51:07.5819248Z\",\n \"endTime\": - \"2023-03-15T10:54:26.9432632Z\"\n }" + string: "{\n \"name\": \"d0efd4b9-079a-be4d-a560-cb672801ed18\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T17:58:09.0560096Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 18:01:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type + --network-plugin + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9d4efd0-9a07-4dbe-a560-cb672801ed18?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d0efd4b9-079a-be4d-a560-cb672801ed18\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T17:58:09.0560096Z\",\n \"\ + endTime\": \"2023-06-15T18:01:37.0712653Z\"\n }" headers: cache-control: - no-cache @@ -482,7 +533,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:54:38 GMT + - Thu, 15 Jun 2023 18:01:41 GMT expires: - '-1' pragma: @@ -516,64 +567,65 @@ interactions: --windows-admin-username --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-loy1rc7h.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-loy1rc7h.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n - \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3bfb7c3f-9bc1-41bb-89e4-0ff0f89b73f6\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-q1ojbe2v.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-q1ojbe2v.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ + effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f8e73794-ec32-4c2a-8a21-1269c315e73c\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \ + \ \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3874' + - '4235' content-type: - application/json date: - - Wed, 15 Mar 2023 10:54:38 GMT + - Thu, 15 Jun 2023 18:01:41 GMT expires: - '-1' pragma: @@ -605,34 +657,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '1035' + - '1036' content-type: - application/json date: - - Wed, 15 Mar 2023 10:54:39 GMT + - Thu, 15 Jun 2023 18:01:43 GMT expires: - '-1' pragma: @@ -673,35 +725,36 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n - \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"osSKU\": \"Windows2019\",\n \"nodeImageVersion\": - \"AKSWindows-2019-containerd-17763.4010.230223\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ + ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n\ + \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"\ + provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"\ + Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Windows\",\n \"osSKU\": \"Windows2022\",\n \"nodeImageVersion\"\ + : \"AKSWindows-2022-containerd-gen2-20348.1726.230510\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0fbb873a-4ac6-48cf-9a63-40331ea2c205?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52c435a-9754-4fdb-b98c-70bf6e3ba263?api-version=2016-03-30 cache-control: - no-cache content-length: - - '983' + - '988' content-type: - application/json date: - - Wed, 15 Mar 2023 10:54:42 GMT + - Thu, 15 Jun 2023 18:01:49 GMT expires: - '-1' pragma: @@ -713,7 +766,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1199' status: code: 201 message: Created @@ -731,14 +784,110 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52c435a-9754-4fdb-b98c-70bf6e3ba263?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5a432cf5-5497-db4f-b98c-70bf6e3ba263\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:01:49.8221112Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 18:01:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52c435a-9754-4fdb-b98c-70bf6e3ba263?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5a432cf5-5497-db4f-b98c-70bf6e3ba263\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:01:49.8221112Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 18:02:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0fbb873a-4ac6-48cf-9a63-40331ea2c205?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52c435a-9754-4fdb-b98c-70bf6e3ba263?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3a87bb0f-c64a-cf48-9a63-40331ea2c205\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:54:43.1606503Z\"\n }" + string: "{\n \"name\": \"5a432cf5-5497-db4f-b98c-70bf6e3ba263\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:01:49.8221112Z\"\n }" headers: cache-control: - no-cache @@ -747,7 +896,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:55:12 GMT + - Thu, 15 Jun 2023 18:02:49 GMT expires: - '-1' pragma: @@ -779,14 +928,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0fbb873a-4ac6-48cf-9a63-40331ea2c205?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52c435a-9754-4fdb-b98c-70bf6e3ba263?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3a87bb0f-c64a-cf48-9a63-40331ea2c205\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:54:43.1606503Z\"\n }" + string: "{\n \"name\": \"5a432cf5-5497-db4f-b98c-70bf6e3ba263\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:01:49.8221112Z\"\n }" headers: cache-control: - no-cache @@ -795,7 +944,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:55:42 GMT + - Thu, 15 Jun 2023 18:03:20 GMT expires: - '-1' pragma: @@ -827,14 +976,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0fbb873a-4ac6-48cf-9a63-40331ea2c205?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52c435a-9754-4fdb-b98c-70bf6e3ba263?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3a87bb0f-c64a-cf48-9a63-40331ea2c205\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:54:43.1606503Z\"\n }" + string: "{\n \"name\": \"5a432cf5-5497-db4f-b98c-70bf6e3ba263\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:01:49.8221112Z\"\n }" headers: cache-control: - no-cache @@ -843,7 +992,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:12 GMT + - Thu, 15 Jun 2023 18:03:50 GMT expires: - '-1' pragma: @@ -875,14 +1024,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0fbb873a-4ac6-48cf-9a63-40331ea2c205?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52c435a-9754-4fdb-b98c-70bf6e3ba263?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3a87bb0f-c64a-cf48-9a63-40331ea2c205\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:54:43.1606503Z\"\n }" + string: "{\n \"name\": \"5a432cf5-5497-db4f-b98c-70bf6e3ba263\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:01:49.8221112Z\"\n }" headers: cache-control: - no-cache @@ -891,7 +1040,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:42 GMT + - Thu, 15 Jun 2023 18:04:21 GMT expires: - '-1' pragma: @@ -923,14 +1072,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0fbb873a-4ac6-48cf-9a63-40331ea2c205?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52c435a-9754-4fdb-b98c-70bf6e3ba263?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3a87bb0f-c64a-cf48-9a63-40331ea2c205\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:54:43.1606503Z\"\n }" + string: "{\n \"name\": \"5a432cf5-5497-db4f-b98c-70bf6e3ba263\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:01:49.8221112Z\"\n }" headers: cache-control: - no-cache @@ -939,7 +1088,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:57:13 GMT + - Thu, 15 Jun 2023 18:04:51 GMT expires: - '-1' pragma: @@ -971,14 +1120,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0fbb873a-4ac6-48cf-9a63-40331ea2c205?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52c435a-9754-4fdb-b98c-70bf6e3ba263?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3a87bb0f-c64a-cf48-9a63-40331ea2c205\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:54:43.1606503Z\"\n }" + string: "{\n \"name\": \"5a432cf5-5497-db4f-b98c-70bf6e3ba263\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:01:49.8221112Z\"\n }" headers: cache-control: - no-cache @@ -987,7 +1136,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:57:43 GMT + - Thu, 15 Jun 2023 18:05:21 GMT expires: - '-1' pragma: @@ -1019,14 +1168,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0fbb873a-4ac6-48cf-9a63-40331ea2c205?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52c435a-9754-4fdb-b98c-70bf6e3ba263?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3a87bb0f-c64a-cf48-9a63-40331ea2c205\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:54:43.1606503Z\"\n }" + string: "{\n \"name\": \"5a432cf5-5497-db4f-b98c-70bf6e3ba263\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:01:49.8221112Z\"\n }" headers: cache-control: - no-cache @@ -1035,7 +1184,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:58:13 GMT + - Thu, 15 Jun 2023 18:05:51 GMT expires: - '-1' pragma: @@ -1067,14 +1216,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0fbb873a-4ac6-48cf-9a63-40331ea2c205?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52c435a-9754-4fdb-b98c-70bf6e3ba263?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3a87bb0f-c64a-cf48-9a63-40331ea2c205\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:54:43.1606503Z\"\n }" + string: "{\n \"name\": \"5a432cf5-5497-db4f-b98c-70bf6e3ba263\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:01:49.8221112Z\"\n }" headers: cache-control: - no-cache @@ -1083,7 +1232,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:58:43 GMT + - Thu, 15 Jun 2023 18:06:21 GMT expires: - '-1' pragma: @@ -1115,15 +1264,111 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0fbb873a-4ac6-48cf-9a63-40331ea2c205?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52c435a-9754-4fdb-b98c-70bf6e3ba263?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3a87bb0f-c64a-cf48-9a63-40331ea2c205\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:54:43.1606503Z\",\n \"endTime\": - \"2023-03-15T10:59:10.4377819Z\"\n }" + string: "{\n \"name\": \"5a432cf5-5497-db4f-b98c-70bf6e3ba263\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:01:49.8221112Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 18:06:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52c435a-9754-4fdb-b98c-70bf6e3ba263?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5a432cf5-5497-db4f-b98c-70bf6e3ba263\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:01:49.8221112Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 18:07:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f52c435a-9754-4fdb-b98c-70bf6e3ba263?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5a432cf5-5497-db4f-b98c-70bf6e3ba263\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T18:01:49.8221112Z\",\n \"\ + endTime\": \"2023-06-15T18:07:31.6460938Z\"\n }" headers: cache-control: - no-cache @@ -1132,7 +1377,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:59:13 GMT + - Thu, 15 Jun 2023 18:07:51 GMT expires: - '-1' pragma: @@ -1164,33 +1409,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n - \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"osSKU\": \"Windows2019\",\n \"nodeImageVersion\": - \"AKSWindows-2019-containerd-17763.4010.230223\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ + ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n\ + \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"\ + provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"\ + Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Windows\",\n \"osSKU\": \"Windows2022\",\n \"nodeImageVersion\"\ + : \"AKSWindows-2022-containerd-gen2-20348.1726.230510\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '984' + - '989' content-type: - application/json date: - - Wed, 15 Mar 2023 10:59:13 GMT + - Thu, 15 Jun 2023 18:07:52 GMT expires: - '-1' pragma: @@ -1222,74 +1468,76 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-loy1rc7h.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-loy1rc7h.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"scaleDownMode\": - \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\": - \"Windows2019\",\n \"nodeImageVersion\": \"AKSWindows-2019-containerd-17763.4010.230223\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n - \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3bfb7c3f-9bc1-41bb-89e4-0ff0f89b73f6\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-q1ojbe2v.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-q1ojbe2v.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n },\n \ + \ {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\"\ + : \"Windows2022\",\n \"nodeImageVersion\": \"AKSWindows-2022-containerd-gen2-20348.1726.230510\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ + effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f8e73794-ec32-4c2a-8a21-1269c315e73c\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \ + \ \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4650' + - '5016' content-type: - application/json date: - - Wed, 15 Mar 2023 10:59:14 GMT + - Thu, 15 Jun 2023 18:07:55 GMT expires: - '-1' pragma: @@ -1308,30 +1556,30 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": - "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.24.9", + "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}, {"count": 1, "vmSize": "Standard_D2s_v3", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 30, "osType": - "Windows", "osSKU": "Windows2019", "enableAutoScaling": false, "scaleDownMode": + "Windows", "osSKU": "Windows2022", "enableAutoScaling": false, "scaleDownMode": "Delete", "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "npwin"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": - {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser1", "licenseType": "Windows_Server", "enableCSIProxy": true}, "servicePrincipalProfile": - {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": - false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": - true, "networkProfile": {"networkPlugin": "azure", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3bfb7c3f-9bc1-41bb-89e4-0ff0f89b73f6"}]}, + {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "licenseType": + "Windows_Server", "enableCSIProxy": true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "azure", "networkDataplane": "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f8e73794-ec32-4c2a-8a21-1269c315e73c"}]}, "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -1347,82 +1595,85 @@ interactions: Connection: - keep-alive Content-Length: - - '3007' + - '3364' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-loy1rc7h.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-loy1rc7h.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"scaleDownMode\": - \"Delete\",\n \"provisioningState\": \"Updating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\": - \"Windows2019\",\n \"nodeImageVersion\": \"AKSWindows-2019-containerd-17763.4010.230223\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"Windows_Server\",\n - \ \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3bfb7c3f-9bc1-41bb-89e4-0ff0f89b73f6\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-q1ojbe2v.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-q1ojbe2v.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n },\n \ + \ {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\"\ + : \"Windows2022\",\n \"nodeImageVersion\": \"AKSWindows-2022-containerd-gen2-20348.1726.230510\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"Windows_Server\"\ + ,\n \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n\ + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\"\ + : \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n\ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"azure\",\n \"networkDataplane\": \"azure\",\n\ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f8e73794-ec32-4c2a-8a21-1269c315e73c\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \ + \ \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3615aa6f-a2eb-4340-9845-0132c738dc5a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4684' + - '5050' content-type: - application/json date: - - Wed, 15 Mar 2023 10:59:17 GMT + - Thu, 15 Jun 2023 18:08:00 GMT expires: - '-1' pragma: @@ -1438,7 +1689,487 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 18:08:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 18:08:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 18:09:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 18:09:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 18:10:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 18:10:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 18:11:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 18:11:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 18:12:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-ahub + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 18:12:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -1456,14 +2187,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3615aa6f-a2eb-4340-9845-0132c738dc5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6faa1536-eba2-4043-9845-0132c738dc5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:59:18.1153829Z\"\n }" + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" headers: cache-control: - no-cache @@ -1472,7 +2203,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:59:47 GMT + - Thu, 15 Jun 2023 18:13:02 GMT expires: - '-1' pragma: @@ -1504,14 +2235,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3615aa6f-a2eb-4340-9845-0132c738dc5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6faa1536-eba2-4043-9845-0132c738dc5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:59:18.1153829Z\"\n }" + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" headers: cache-control: - no-cache @@ -1520,7 +2251,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:17 GMT + - Thu, 15 Jun 2023 18:13:33 GMT expires: - '-1' pragma: @@ -1552,14 +2283,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3615aa6f-a2eb-4340-9845-0132c738dc5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6faa1536-eba2-4043-9845-0132c738dc5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:59:18.1153829Z\"\n }" + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" headers: cache-control: - no-cache @@ -1568,7 +2299,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:48 GMT + - Thu, 15 Jun 2023 18:14:03 GMT expires: - '-1' pragma: @@ -1600,14 +2331,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3615aa6f-a2eb-4340-9845-0132c738dc5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6faa1536-eba2-4043-9845-0132c738dc5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:59:18.1153829Z\"\n }" + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" headers: cache-control: - no-cache @@ -1616,7 +2347,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:01:18 GMT + - Thu, 15 Jun 2023 18:14:33 GMT expires: - '-1' pragma: @@ -1648,14 +2379,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3615aa6f-a2eb-4340-9845-0132c738dc5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6faa1536-eba2-4043-9845-0132c738dc5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:59:18.1153829Z\"\n }" + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" headers: cache-control: - no-cache @@ -1664,7 +2395,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:01:48 GMT + - Thu, 15 Jun 2023 18:15:03 GMT expires: - '-1' pragma: @@ -1696,14 +2427,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3615aa6f-a2eb-4340-9845-0132c738dc5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6faa1536-eba2-4043-9845-0132c738dc5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:59:18.1153829Z\"\n }" + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" headers: cache-control: - no-cache @@ -1712,7 +2443,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:02:18 GMT + - Thu, 15 Jun 2023 18:15:34 GMT expires: - '-1' pragma: @@ -1744,14 +2475,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3615aa6f-a2eb-4340-9845-0132c738dc5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6faa1536-eba2-4043-9845-0132c738dc5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:59:18.1153829Z\"\n }" + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" headers: cache-control: - no-cache @@ -1760,7 +2491,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:02:48 GMT + - Thu, 15 Jun 2023 18:16:04 GMT expires: - '-1' pragma: @@ -1792,14 +2523,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3615aa6f-a2eb-4340-9845-0132c738dc5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6faa1536-eba2-4043-9845-0132c738dc5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:59:18.1153829Z\"\n }" + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" headers: cache-control: - no-cache @@ -1808,7 +2539,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:03:18 GMT + - Thu, 15 Jun 2023 18:16:34 GMT expires: - '-1' pragma: @@ -1840,14 +2571,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3615aa6f-a2eb-4340-9845-0132c738dc5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6faa1536-eba2-4043-9845-0132c738dc5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:59:18.1153829Z\"\n }" + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" headers: cache-control: - no-cache @@ -1856,7 +2587,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:03:48 GMT + - Thu, 15 Jun 2023 18:17:04 GMT expires: - '-1' pragma: @@ -1888,14 +2619,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3615aa6f-a2eb-4340-9845-0132c738dc5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6faa1536-eba2-4043-9845-0132c738dc5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:59:18.1153829Z\"\n }" + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" headers: cache-control: - no-cache @@ -1904,7 +2635,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:04:18 GMT + - Thu, 15 Jun 2023 18:17:34 GMT expires: - '-1' pragma: @@ -1936,14 +2667,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3615aa6f-a2eb-4340-9845-0132c738dc5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6faa1536-eba2-4043-9845-0132c738dc5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:59:18.1153829Z\"\n }" + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" headers: cache-control: - no-cache @@ -1952,7 +2683,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:04:48 GMT + - Thu, 15 Jun 2023 18:18:05 GMT expires: - '-1' pragma: @@ -1984,14 +2715,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3615aa6f-a2eb-4340-9845-0132c738dc5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6faa1536-eba2-4043-9845-0132c738dc5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:59:18.1153829Z\"\n }" + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" headers: cache-control: - no-cache @@ -2000,7 +2731,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:05:18 GMT + - Thu, 15 Jun 2023 18:18:35 GMT expires: - '-1' pragma: @@ -2032,14 +2763,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3615aa6f-a2eb-4340-9845-0132c738dc5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6faa1536-eba2-4043-9845-0132c738dc5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:59:18.1153829Z\"\n }" + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" headers: cache-control: - no-cache @@ -2048,7 +2779,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:05:48 GMT + - Thu, 15 Jun 2023 18:19:05 GMT expires: - '-1' pragma: @@ -2080,14 +2811,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3615aa6f-a2eb-4340-9845-0132c738dc5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6faa1536-eba2-4043-9845-0132c738dc5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:59:18.1153829Z\"\n }" + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" headers: cache-control: - no-cache @@ -2096,7 +2827,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:06:19 GMT + - Thu, 15 Jun 2023 18:19:35 GMT expires: - '-1' pragma: @@ -2128,14 +2859,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3615aa6f-a2eb-4340-9845-0132c738dc5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6faa1536-eba2-4043-9845-0132c738dc5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:59:18.1153829Z\"\n }" + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" headers: cache-control: - no-cache @@ -2144,7 +2875,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:06:49 GMT + - Thu, 15 Jun 2023 18:20:05 GMT expires: - '-1' pragma: @@ -2176,14 +2907,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3615aa6f-a2eb-4340-9845-0132c738dc5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6faa1536-eba2-4043-9845-0132c738dc5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:59:18.1153829Z\"\n }" + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" headers: cache-control: - no-cache @@ -2192,7 +2923,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:07:19 GMT + - Thu, 15 Jun 2023 18:20:36 GMT expires: - '-1' pragma: @@ -2224,14 +2955,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3615aa6f-a2eb-4340-9845-0132c738dc5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6faa1536-eba2-4043-9845-0132c738dc5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:59:18.1153829Z\"\n }" + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" headers: cache-control: - no-cache @@ -2240,7 +2971,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:07:49 GMT + - Thu, 15 Jun 2023 18:21:06 GMT expires: - '-1' pragma: @@ -2272,14 +3003,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3615aa6f-a2eb-4340-9845-0132c738dc5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6faa1536-eba2-4043-9845-0132c738dc5a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:59:18.1153829Z\"\n }" + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\"\n }" headers: cache-control: - no-cache @@ -2288,7 +3019,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:18 GMT + - Thu, 15 Jun 2023 18:21:36 GMT expires: - '-1' pragma: @@ -2320,15 +3051,15 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3615aa6f-a2eb-4340-9845-0132c738dc5a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4e3b3334-95a1-42a3-8334-3832d579e2a5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6faa1536-eba2-4043-9845-0132c738dc5a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:59:18.1153829Z\",\n \"endTime\": - \"2023-03-15T11:08:23.5830768Z\"\n }" + string: "{\n \"name\": \"34333b4e-a195-a342-8334-3832d579e2a5\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T18:08:00.0416597Z\",\n \"\ + endTime\": \"2023-06-15T18:21:50.8479117Z\"\n }" headers: cache-control: - no-cache @@ -2337,7 +3068,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:49 GMT + - Thu, 15 Jun 2023 18:22:06 GMT expires: - '-1' pragma: @@ -2369,74 +3100,77 @@ interactions: ParameterSetName: - --resource-group --name --enable-ahub User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-loy1rc7h.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-loy1rc7h.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"scaleDownMode\": - \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\": - \"Windows2019\",\n \"nodeImageVersion\": \"AKSWindows-2019-containerd-17763.4010.230223\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"Windows_Server\",\n - \ \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3bfb7c3f-9bc1-41bb-89e4-0ff0f89b73f6\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-q1ojbe2v.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-q1ojbe2v.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n },\n \ + \ {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\"\ + : \"Windows2022\",\n \"nodeImageVersion\": \"AKSWindows-2022-containerd-gen2-20348.1726.230510\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"licenseType\": \"Windows_Server\"\ + ,\n \"enableCSIProxy\": true\n },\n \"servicePrincipalProfile\": {\n\ + \ \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\"\ + : \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n\ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"azure\",\n \"networkDataplane\": \"azure\",\n\ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f8e73794-ec32-4c2a-8a21-1269c315e73c\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \ + \ \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4687' + - '5053' content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:50 GMT + - Thu, 15 Jun 2023 18:22:07 GMT expires: - '-1' pragma: @@ -2468,46 +3202,47 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n - \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"osSKU\": \"Windows2019\",\n \"nodeImageVersion\": - \"AKSWindows-2019-containerd-17763.4010.230223\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ + ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\"\ + : \"Windows2022\",\n \"nodeImageVersion\": \"AKSWindows-2022-containerd-gen2-20348.1726.230510\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '2084' + - '2090' content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:50 GMT + - Thu, 15 Jun 2023 18:22:11 GMT expires: - '-1' pragma: @@ -2541,8 +3276,8 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-04-01 response: @@ -2550,17 +3285,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d409a1a7-99a4-421e-9d06-72ae0f334f94?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8bf98781-e94b-4e8e-8479-70de9edccfa4?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:08:51 GMT + - Thu, 15 Jun 2023 18:22:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/d409a1a7-99a4-421e-9d06-72ae0f334f94?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/8bf98781-e94b-4e8e-8479-70de9edccfa4?api-version=2016-03-30 pragma: - no-cache server: @@ -2570,7 +3305,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14994' + - '14999' status: code: 202 message: Accepted @@ -2590,8 +3325,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -2599,17 +3334,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6723c46f-ec75-4b8c-9d83-cf63b987f761?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4dd14aa1-5277-4308-a86c-d5646d87f2bb?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:08:52 GMT + - Thu, 15 Jun 2023 18:22:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/6723c46f-ec75-4b8c-9d83-cf63b987f761?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/4dd14aa1-5277-4308-a86c-d5646d87f2bb?api-version=2016-03-30 pragma: - no-cache server: @@ -2619,7 +3354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_workload_identity_enabled.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_workload_identity_enabled.yaml index 0e870d28015..7b3d1120398 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_workload_identity_enabled.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_create_with_workload_identity_enabled.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 07:56:38 GMT + - Thu, 15 Jun 2023 18:22:23 GMT expires: - '-1' pragma: @@ -46,21 +46,21 @@ interactions: code: 404 message: Not Found - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestx637waiyo-79a739", + body: '{"location": "centraluseuap", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestikumou725-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1APSwd4b1Nkvz51SaXAa9Qt6nJuyUA9Xq177Bnl0ldJ+XenW2Ky/LHLiDGTam878w1O77kkcxMke4q9eNPAhklDKeGdKz66Wvjyci79CMwcrAg7d1xf87JK9s/O+qYslgfvXG57jrZOBHGZaxR3rQfMsp//epA6RUh/VCiDs1KYGlvumo9zjsETFUWk2OSoN9Hk+/zIEGzvdCbgcsbdI2IrAaTq1BS6KF5/DfzYb4PlsDh6PfZnwPzYuXfDOMULsSECcuu10OiOT7hMG64Smd6RNVDcPol1qp8AnT8CU63deGR8hw9TcBByq986re8UAv9gph+tzhP4yvcGy/mMGP - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "oidcIssuerProfile": - {"enabled": true}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false, "securityProfile": {"workloadIdentity": - {"enabled": true}}, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "oidcIssuerProfile": {"enabled": + true}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": + "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": + false, "securityProfile": {"workloadIdentity": {"enabled": true}}, "storageProfile": + {}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview @@ -73,70 +73,72 @@ interactions: Connection: - keep-alive Content-Length: - - '1559' + - '1857' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestx637waiyo-79a739\",\n \"fqdn\": \"cliakstest-clitestx637waiyo-79a739-fmlgtwlo.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestx637waiyo-79a739-fmlgtwlo.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1APSwd4b1Nkvz51SaXAa9Qt6nJuyUA9Xq177Bnl0ldJ+XenW2Ky/LHLiDGTam878w1O77kkcxMke4q9eNPAhklDKeGdKz66Wvjyci79CMwcrAg7d1xf87JK9s/O+qYslgfvXG57jrZOBHGZaxR3rQfMsp//epA6RUh/VCiDs1KYGlvumo9zjsETFUWk2OSoN9Hk+/zIEGzvdCbgcsbdI2IrAaTq1BS6KF5/DfzYb4PlsDh6PfZnwPzYuXfDOMULsSECcuu10OiOT7hMG64Smd6RNVDcPol1qp8AnT8CU63deGR8hw9TcBByq986re8UAv9gph+tzhP4yvcGy/mMGP - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"workloadIdentity\": {\n \"enabled\": true\n }\n },\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n - \ \"issuerURL\": \"https://westus2.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/9f6ad552-6f43-49e6-ad8e-c7044f4380d4/\"\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestikumou725-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestikumou725-8ecadf-0yb6nwkr.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestikumou725-8ecadf-0yb6nwkr.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"workloadIdentity\": {\n \"\ + enabled\": true\n }\n },\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n \"issuerURL\"\ + : \"https://centraluseuap.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/c9224b06-4fd2-475a-91e6-856fee768b1c/\"\ + \n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22ef4fc0-aa61-4331-8666-5330cfd3d0d3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3458' + - '3816' content-type: - application/json date: - - Wed, 29 Mar 2023 07:56:43 GMT + - Thu, 15 Jun 2023 18:22:29 GMT expires: - '-1' pragma: @@ -167,14 +169,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22ef4fc0-aa61-4331-8666-5330cfd3d0d3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c04fef22-61aa-3143-8666-5330cfd3d0d3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:43.3496223Z\"\n }" + string: "{\n \"name\": \"6fd57ac2-bcef-bd4a-95a7-da5cf449fbe9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:22:28.8294683Z\"\n }" headers: cache-control: - no-cache @@ -183,7 +185,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 07:57:13 GMT + - Thu, 15 Jun 2023 18:22:29 GMT expires: - '-1' pragma: @@ -216,14 +218,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22ef4fc0-aa61-4331-8666-5330cfd3d0d3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c04fef22-61aa-3143-8666-5330cfd3d0d3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:43.3496223Z\"\n }" + string: "{\n \"name\": \"6fd57ac2-bcef-bd4a-95a7-da5cf449fbe9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:22:28.8294683Z\"\n }" headers: cache-control: - no-cache @@ -232,7 +234,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 07:57:42 GMT + - Thu, 15 Jun 2023 18:22:59 GMT expires: - '-1' pragma: @@ -265,14 +267,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22ef4fc0-aa61-4331-8666-5330cfd3d0d3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c04fef22-61aa-3143-8666-5330cfd3d0d3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:43.3496223Z\"\n }" + string: "{\n \"name\": \"6fd57ac2-bcef-bd4a-95a7-da5cf449fbe9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:22:28.8294683Z\"\n }" headers: cache-control: - no-cache @@ -281,7 +283,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 07:58:13 GMT + - Thu, 15 Jun 2023 18:23:28 GMT expires: - '-1' pragma: @@ -314,14 +316,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22ef4fc0-aa61-4331-8666-5330cfd3d0d3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c04fef22-61aa-3143-8666-5330cfd3d0d3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:43.3496223Z\"\n }" + string: "{\n \"name\": \"6fd57ac2-bcef-bd4a-95a7-da5cf449fbe9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:22:28.8294683Z\"\n }" headers: cache-control: - no-cache @@ -330,7 +332,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 07:58:43 GMT + - Thu, 15 Jun 2023 18:23:58 GMT expires: - '-1' pragma: @@ -363,14 +365,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22ef4fc0-aa61-4331-8666-5330cfd3d0d3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c04fef22-61aa-3143-8666-5330cfd3d0d3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:43.3496223Z\"\n }" + string: "{\n \"name\": \"6fd57ac2-bcef-bd4a-95a7-da5cf449fbe9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:22:28.8294683Z\"\n }" headers: cache-control: - no-cache @@ -379,7 +381,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 07:59:13 GMT + - Thu, 15 Jun 2023 18:24:30 GMT expires: - '-1' pragma: @@ -412,14 +414,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22ef4fc0-aa61-4331-8666-5330cfd3d0d3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c04fef22-61aa-3143-8666-5330cfd3d0d3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:43.3496223Z\"\n }" + string: "{\n \"name\": \"6fd57ac2-bcef-bd4a-95a7-da5cf449fbe9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:22:28.8294683Z\"\n }" headers: cache-control: - no-cache @@ -428,7 +430,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 07:59:44 GMT + - Thu, 15 Jun 2023 18:25:00 GMT expires: - '-1' pragma: @@ -461,14 +463,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22ef4fc0-aa61-4331-8666-5330cfd3d0d3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c04fef22-61aa-3143-8666-5330cfd3d0d3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:43.3496223Z\"\n }" + string: "{\n \"name\": \"6fd57ac2-bcef-bd4a-95a7-da5cf449fbe9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:22:28.8294683Z\"\n }" headers: cache-control: - no-cache @@ -477,7 +479,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 08:00:13 GMT + - Thu, 15 Jun 2023 18:25:30 GMT expires: - '-1' pragma: @@ -510,14 +512,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22ef4fc0-aa61-4331-8666-5330cfd3d0d3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c04fef22-61aa-3143-8666-5330cfd3d0d3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:43.3496223Z\"\n }" + string: "{\n \"name\": \"6fd57ac2-bcef-bd4a-95a7-da5cf449fbe9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:22:28.8294683Z\"\n }" headers: cache-control: - no-cache @@ -526,7 +528,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 08:00:43 GMT + - Thu, 15 Jun 2023 18:26:01 GMT expires: - '-1' pragma: @@ -559,14 +561,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22ef4fc0-aa61-4331-8666-5330cfd3d0d3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c04fef22-61aa-3143-8666-5330cfd3d0d3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:43.3496223Z\"\n }" + string: "{\n \"name\": \"6fd57ac2-bcef-bd4a-95a7-da5cf449fbe9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:22:28.8294683Z\"\n }" headers: cache-control: - no-cache @@ -575,7 +577,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 08:01:13 GMT + - Thu, 15 Jun 2023 18:26:31 GMT expires: - '-1' pragma: @@ -608,14 +610,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22ef4fc0-aa61-4331-8666-5330cfd3d0d3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c04fef22-61aa-3143-8666-5330cfd3d0d3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:43.3496223Z\"\n }" + string: "{\n \"name\": \"6fd57ac2-bcef-bd4a-95a7-da5cf449fbe9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:22:28.8294683Z\"\n }" headers: cache-control: - no-cache @@ -624,7 +626,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 08:01:43 GMT + - Thu, 15 Jun 2023 18:27:01 GMT expires: - '-1' pragma: @@ -657,14 +659,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22ef4fc0-aa61-4331-8666-5330cfd3d0d3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c04fef22-61aa-3143-8666-5330cfd3d0d3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:43.3496223Z\"\n }" + string: "{\n \"name\": \"6fd57ac2-bcef-bd4a-95a7-da5cf449fbe9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:22:28.8294683Z\"\n }" headers: cache-control: - no-cache @@ -673,7 +675,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 08:02:14 GMT + - Thu, 15 Jun 2023 18:27:31 GMT expires: - '-1' pragma: @@ -706,211 +708,15 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22ef4fc0-aa61-4331-8666-5330cfd3d0d3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/c27ad56f-efbc-4abd-95a7-da5cf449fbe9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c04fef22-61aa-3143-8666-5330cfd3d0d3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:43.3496223Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 29 Mar 2023 08:02:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer - --enable-workload-identity --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22ef4fc0-aa61-4331-8666-5330cfd3d0d3?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"c04fef22-61aa-3143-8666-5330cfd3d0d3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:43.3496223Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 29 Mar 2023 08:03:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer - --enable-workload-identity --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22ef4fc0-aa61-4331-8666-5330cfd3d0d3?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"c04fef22-61aa-3143-8666-5330cfd3d0d3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:43.3496223Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 29 Mar 2023 08:03:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer - --enable-workload-identity --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22ef4fc0-aa61-4331-8666-5330cfd3d0d3?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"c04fef22-61aa-3143-8666-5330cfd3d0d3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:43.3496223Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 29 Mar 2023 08:04:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer - --enable-workload-identity --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/22ef4fc0-aa61-4331-8666-5330cfd3d0d3?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"c04fef22-61aa-3143-8666-5330cfd3d0d3\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-29T07:56:43.3496223Z\",\n \"endTime\": - \"2023-03-29T08:04:44.5745809Z\"\n }" + string: "{\n \"name\": \"6fd57ac2-bcef-bd4a-95a7-da5cf449fbe9\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T18:22:28.8294683Z\",\n \"\ + endTime\": \"2023-06-15T18:27:57.0266772Z\"\n }" headers: cache-control: - no-cache @@ -919,7 +725,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 08:04:44 GMT + - Thu, 15 Jun 2023 18:28:02 GMT expires: - '-1' pragma: @@ -952,66 +758,68 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --enable-workload-identity --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestx637waiyo-79a739\",\n \"fqdn\": \"cliakstest-clitestx637waiyo-79a739-fmlgtwlo.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestx637waiyo-79a739-fmlgtwlo.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1APSwd4b1Nkvz51SaXAa9Qt6nJuyUA9Xq177Bnl0ldJ+XenW2Ky/LHLiDGTam878w1O77kkcxMke4q9eNPAhklDKeGdKz66Wvjyci79CMwcrAg7d1xf87JK9s/O+qYslgfvXG57jrZOBHGZaxR3rQfMsp//epA6RUh/VCiDs1KYGlvumo9zjsETFUWk2OSoN9Hk+/zIEGzvdCbgcsbdI2IrAaTq1BS6KF5/DfzYb4PlsDh6PfZnwPzYuXfDOMULsSECcuu10OiOT7hMG64Smd6RNVDcPol1qp8AnT8CU63deGR8hw9TcBByq986re8UAv9gph+tzhP4yvcGy/mMGP - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/58ad4966-2033-4788-bb8f-2ad9094f6e33\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"workloadIdentity\": {\n \"enabled\": true\n }\n },\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n - \ \"issuerURL\": \"https://westus2.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/9f6ad552-6f43-49e6-ad8e-c7044f4380d4/\"\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestikumou725-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestikumou725-8ecadf-0yb6nwkr.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestikumou725-8ecadf-0yb6nwkr.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/875e7bc4-a452-40a1-9919-f5d375508099\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"workloadIdentity\": {\n \"\ + enabled\": true\n }\n },\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n \"issuerURL\"\ + : \"https://centraluseuap.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/c9224b06-4fd2-475a-91e6-856fee768b1c/\"\ + \n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4111' + - '4481' content-type: - application/json date: - - Wed, 29 Mar 2023 08:04:44 GMT + - Thu, 15 Jun 2023 18:28:02 GMT expires: - '-1' pragma: @@ -1030,4 +838,3 @@ interactions: code: 200 message: OK version: 1 - diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_custom_headers.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_custom_headers.yaml old mode 100755 new mode 100644 index 2d02aaa3246..ef1acd77463 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_custom_headers.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_custom_headers.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --ssh-key-value --auto-upgrade-channel --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:50:07 GMT + - Thu, 15 Jun 2023 18:28:06 GMT expires: - '-1' pragma: @@ -47,20 +47,19 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestzhkiesqsm-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest4vcphnrhz-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "autoUpgradeProfile": - {"upgradeChannel": "rapid"}, "disableLocalAccounts": false, "storageProfile": - {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "autoUpgradeProfile": {"upgradeChannel": "rapid"}, "disableLocalAccounts": + false, "storageProfile": {}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/AutoUpgradePreview @@ -73,69 +72,71 @@ interactions: Connection: - keep-alive Content-Length: - - '1510' + - '1802' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --ssh-key-value --auto-upgrade-channel --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestzhkiesqsm-79a739\",\n \"fqdn\": \"cliakstest-clitestzhkiesqsm-79a739-yhp7nxjd.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestzhkiesqsm-79a739-yhp7nxjd.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"autoUpgradeProfile\": {\n \"upgradeChannel\": - \"rapid\"\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest4vcphnrhz-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest4vcphnrhz-8ecadf-0kw26moj.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest4vcphnrhz-8ecadf-0kw26moj.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"autoUpgradeProfile\"\ + : {\n \"upgradeChannel\": \"rapid\"\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f6646f7e-6771-468b-b3f0-8c4ea1c8e129?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cf1d1f6c-27ca-428a-adc8-0f9dacbf2762?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3331' + - '3659' content-type: - application/json date: - - Wed, 15 Mar 2023 10:50:10 GMT + - Thu, 15 Jun 2023 18:28:13 GMT expires: - '-1' pragma: @@ -147,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' status: code: 201 message: Created @@ -166,14 +167,14 @@ interactions: - --resource-group --name --location --ssh-key-value --auto-upgrade-channel --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f6646f7e-6771-468b-b3f0-8c4ea1c8e129?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cf1d1f6c-27ca-428a-adc8-0f9dacbf2762?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7e6f64f6-7167-8b46-b3f0-8c4ea1c8e129\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:50:11.0505132Z\"\n }" + string: "{\n \"name\": \"6c1f1dcf-ca27-8a42-adc8-0f9dacbf2762\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:28:14.0289739Z\"\n }" headers: cache-control: - no-cache @@ -182,7 +183,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:50:40 GMT + - Thu, 15 Jun 2023 18:28:13 GMT expires: - '-1' pragma: @@ -215,14 +216,14 @@ interactions: - --resource-group --name --location --ssh-key-value --auto-upgrade-channel --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f6646f7e-6771-468b-b3f0-8c4ea1c8e129?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cf1d1f6c-27ca-428a-adc8-0f9dacbf2762?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7e6f64f6-7167-8b46-b3f0-8c4ea1c8e129\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:50:11.0505132Z\"\n }" + string: "{\n \"name\": \"6c1f1dcf-ca27-8a42-adc8-0f9dacbf2762\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:28:14.0289739Z\"\n }" headers: cache-control: - no-cache @@ -231,7 +232,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:51:10 GMT + - Thu, 15 Jun 2023 18:28:44 GMT expires: - '-1' pragma: @@ -264,14 +265,14 @@ interactions: - --resource-group --name --location --ssh-key-value --auto-upgrade-channel --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f6646f7e-6771-468b-b3f0-8c4ea1c8e129?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cf1d1f6c-27ca-428a-adc8-0f9dacbf2762?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7e6f64f6-7167-8b46-b3f0-8c4ea1c8e129\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:50:11.0505132Z\"\n }" + string: "{\n \"name\": \"6c1f1dcf-ca27-8a42-adc8-0f9dacbf2762\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:28:14.0289739Z\"\n }" headers: cache-control: - no-cache @@ -280,7 +281,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:51:41 GMT + - Thu, 15 Jun 2023 18:29:14 GMT expires: - '-1' pragma: @@ -313,14 +314,14 @@ interactions: - --resource-group --name --location --ssh-key-value --auto-upgrade-channel --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f6646f7e-6771-468b-b3f0-8c4ea1c8e129?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cf1d1f6c-27ca-428a-adc8-0f9dacbf2762?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7e6f64f6-7167-8b46-b3f0-8c4ea1c8e129\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:50:11.0505132Z\"\n }" + string: "{\n \"name\": \"6c1f1dcf-ca27-8a42-adc8-0f9dacbf2762\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:28:14.0289739Z\"\n }" headers: cache-control: - no-cache @@ -329,7 +330,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:52:11 GMT + - Thu, 15 Jun 2023 18:29:44 GMT expires: - '-1' pragma: @@ -362,14 +363,14 @@ interactions: - --resource-group --name --location --ssh-key-value --auto-upgrade-channel --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f6646f7e-6771-468b-b3f0-8c4ea1c8e129?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cf1d1f6c-27ca-428a-adc8-0f9dacbf2762?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7e6f64f6-7167-8b46-b3f0-8c4ea1c8e129\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:50:11.0505132Z\"\n }" + string: "{\n \"name\": \"6c1f1dcf-ca27-8a42-adc8-0f9dacbf2762\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:28:14.0289739Z\"\n }" headers: cache-control: - no-cache @@ -378,7 +379,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:52:41 GMT + - Thu, 15 Jun 2023 18:30:14 GMT expires: - '-1' pragma: @@ -411,14 +412,14 @@ interactions: - --resource-group --name --location --ssh-key-value --auto-upgrade-channel --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f6646f7e-6771-468b-b3f0-8c4ea1c8e129?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cf1d1f6c-27ca-428a-adc8-0f9dacbf2762?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7e6f64f6-7167-8b46-b3f0-8c4ea1c8e129\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:50:11.0505132Z\"\n }" + string: "{\n \"name\": \"6c1f1dcf-ca27-8a42-adc8-0f9dacbf2762\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:28:14.0289739Z\"\n }" headers: cache-control: - no-cache @@ -427,7 +428,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:53:10 GMT + - Thu, 15 Jun 2023 18:30:44 GMT expires: - '-1' pragma: @@ -460,14 +461,14 @@ interactions: - --resource-group --name --location --ssh-key-value --auto-upgrade-channel --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f6646f7e-6771-468b-b3f0-8c4ea1c8e129?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cf1d1f6c-27ca-428a-adc8-0f9dacbf2762?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7e6f64f6-7167-8b46-b3f0-8c4ea1c8e129\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:50:11.0505132Z\"\n }" + string: "{\n \"name\": \"6c1f1dcf-ca27-8a42-adc8-0f9dacbf2762\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:28:14.0289739Z\"\n }" headers: cache-control: - no-cache @@ -476,7 +477,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:53:40 GMT + - Thu, 15 Jun 2023 18:31:15 GMT expires: - '-1' pragma: @@ -509,24 +510,73 @@ interactions: - --resource-group --name --location --ssh-key-value --auto-upgrade-channel --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f6646f7e-6771-468b-b3f0-8c4ea1c8e129?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cf1d1f6c-27ca-428a-adc8-0f9dacbf2762?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7e6f64f6-7167-8b46-b3f0-8c4ea1c8e129\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:50:11.0505132Z\",\n \"endTime\": - \"2023-03-15T10:53:48.373923Z\"\n }" + string: "{\n \"name\": \"6c1f1dcf-ca27-8a42-adc8-0f9dacbf2762\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:28:14.0289739Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 18:31:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --ssh-key-value --auto-upgrade-channel + --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cf1d1f6c-27ca-428a-adc8-0f9dacbf2762?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"6c1f1dcf-ca27-8a42-adc8-0f9dacbf2762\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T18:28:14.0289739Z\",\n \"\ + endTime\": \"2023-06-15T18:31:54.5448643Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 10:54:11 GMT + - Thu, 15 Jun 2023 18:32:15 GMT expires: - '-1' pragma: @@ -559,65 +609,67 @@ interactions: - --resource-group --name --location --ssh-key-value --auto-upgrade-channel --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestzhkiesqsm-79a739\",\n \"fqdn\": \"cliakstest-clitestzhkiesqsm-79a739-yhp7nxjd.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestzhkiesqsm-79a739-yhp7nxjd.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/794adecc-50bc-4917-8062-e85cefa604e6\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"autoUpgradeProfile\": {\n \"upgradeChannel\": \"rapid\"\n - \ },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n - \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest4vcphnrhz-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest4vcphnrhz-8ecadf-0kw26moj.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest4vcphnrhz-8ecadf-0kw26moj.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fc5cc5e6-0d23-4b76-88da-0e9f5b48aa97\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"autoUpgradeProfile\"\ + : {\n \"upgradeChannel\": \"rapid\"\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3984' + - '4312' content-type: - application/json date: - - Wed, 15 Mar 2023 10:54:12 GMT + - Thu, 15 Jun 2023 18:32:16 GMT expires: - '-1' pragma: @@ -649,65 +701,67 @@ interactions: ParameterSetName: - --resource-group --name --auto-upgrade-channel --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestzhkiesqsm-79a739\",\n \"fqdn\": \"cliakstest-clitestzhkiesqsm-79a739-yhp7nxjd.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestzhkiesqsm-79a739-yhp7nxjd.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/794adecc-50bc-4917-8062-e85cefa604e6\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"autoUpgradeProfile\": {\n \"upgradeChannel\": \"rapid\"\n - \ },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n - \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest4vcphnrhz-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest4vcphnrhz-8ecadf-0kw26moj.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest4vcphnrhz-8ecadf-0kw26moj.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fc5cc5e6-0d23-4b76-88da-0e9f5b48aa97\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"autoUpgradeProfile\"\ + : {\n \"upgradeChannel\": \"rapid\"\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3984' + - '4312' content-type: - application/json date: - - Wed, 15 Mar 2023 10:54:12 GMT + - Thu, 15 Jun 2023 18:32:18 GMT expires: - '-1' pragma: @@ -726,23 +780,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestzhkiesqsm-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitest4vcphnrhz-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/794adecc-50bc-4917-8062-e85cefa604e6"}]}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fc5cc5e6-0d23-4b76-88da-0e9f5b48aa97"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "autoUpgradeProfile": {"upgradeChannel": "stable"}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", @@ -761,73 +815,75 @@ interactions: Connection: - keep-alive Content-Length: - - '2536' + - '2864' Content-Type: - application/json ParameterSetName: - --resource-group --name --auto-upgrade-channel --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestzhkiesqsm-79a739\",\n \"fqdn\": \"cliakstest-clitestzhkiesqsm-79a739-yhp7nxjd.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestzhkiesqsm-79a739-yhp7nxjd.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/794adecc-50bc-4917-8062-e85cefa604e6\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"autoUpgradeProfile\": {\n \"upgradeChannel\": \"stable\"\n - \ },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n - \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest4vcphnrhz-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest4vcphnrhz-8ecadf-0kw26moj.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest4vcphnrhz-8ecadf-0kw26moj.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fc5cc5e6-0d23-4b76-88da-0e9f5b48aa97\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"autoUpgradeProfile\"\ + : {\n \"upgradeChannel\": \"stable\"\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/930fcdc2-170c-4243-9382-e2f7adfd860d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0dbb1af-d265-4c07-8da2-d49219c11935?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3983' + - '4311' content-type: - application/json date: - - Wed, 15 Mar 2023 10:54:14 GMT + - Thu, 15 Jun 2023 18:32:24 GMT expires: - '-1' pragma: @@ -843,7 +899,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --auto-upgrade-channel --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0dbb1af-d265-4c07-8da2-d49219c11935?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"afb1dbc0-65d2-074c-8da2-d49219c11935\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:32:23.1389862Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 18:32:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -861,14 +965,14 @@ interactions: ParameterSetName: - --resource-group --name --auto-upgrade-channel --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/930fcdc2-170c-4243-9382-e2f7adfd860d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0dbb1af-d265-4c07-8da2-d49219c11935?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c2cd0f93-0c17-4342-9382-e2f7adfd860d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:54:15.5043115Z\"\n }" + string: "{\n \"name\": \"afb1dbc0-65d2-074c-8da2-d49219c11935\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:32:23.1389862Z\"\n }" headers: cache-control: - no-cache @@ -877,7 +981,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:54:44 GMT + - Thu, 15 Jun 2023 18:32:54 GMT expires: - '-1' pragma: @@ -909,14 +1013,14 @@ interactions: ParameterSetName: - --resource-group --name --auto-upgrade-channel --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/930fcdc2-170c-4243-9382-e2f7adfd860d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0dbb1af-d265-4c07-8da2-d49219c11935?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c2cd0f93-0c17-4342-9382-e2f7adfd860d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:54:15.5043115Z\"\n }" + string: "{\n \"name\": \"afb1dbc0-65d2-074c-8da2-d49219c11935\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:32:23.1389862Z\"\n }" headers: cache-control: - no-cache @@ -925,7 +1029,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:55:15 GMT + - Thu, 15 Jun 2023 18:33:24 GMT expires: - '-1' pragma: @@ -957,14 +1061,14 @@ interactions: ParameterSetName: - --resource-group --name --auto-upgrade-channel --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/930fcdc2-170c-4243-9382-e2f7adfd860d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0dbb1af-d265-4c07-8da2-d49219c11935?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c2cd0f93-0c17-4342-9382-e2f7adfd860d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:54:15.5043115Z\"\n }" + string: "{\n \"name\": \"afb1dbc0-65d2-074c-8da2-d49219c11935\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:32:23.1389862Z\"\n }" headers: cache-control: - no-cache @@ -973,7 +1077,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:55:45 GMT + - Thu, 15 Jun 2023 18:33:54 GMT expires: - '-1' pragma: @@ -1005,15 +1109,15 @@ interactions: ParameterSetName: - --resource-group --name --auto-upgrade-channel --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/930fcdc2-170c-4243-9382-e2f7adfd860d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0dbb1af-d265-4c07-8da2-d49219c11935?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c2cd0f93-0c17-4342-9382-e2f7adfd860d\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:54:15.5043115Z\",\n \"endTime\": - \"2023-03-15T10:55:47.7065407Z\"\n }" + string: "{\n \"name\": \"afb1dbc0-65d2-074c-8da2-d49219c11935\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T18:32:23.1389862Z\",\n \"\ + endTime\": \"2023-06-15T18:34:12.1596776Z\"\n }" headers: cache-control: - no-cache @@ -1022,7 +1126,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:15 GMT + - Thu, 15 Jun 2023 18:34:24 GMT expires: - '-1' pragma: @@ -1054,65 +1158,67 @@ interactions: ParameterSetName: - --resource-group --name --auto-upgrade-channel --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestzhkiesqsm-79a739\",\n \"fqdn\": \"cliakstest-clitestzhkiesqsm-79a739-yhp7nxjd.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestzhkiesqsm-79a739-yhp7nxjd.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/794adecc-50bc-4917-8062-e85cefa604e6\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"autoUpgradeProfile\": {\n \"upgradeChannel\": \"stable\"\n - \ },\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n - \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest4vcphnrhz-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest4vcphnrhz-8ecadf-0kw26moj.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest4vcphnrhz-8ecadf-0kw26moj.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fc5cc5e6-0d23-4b76-88da-0e9f5b48aa97\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"autoUpgradeProfile\"\ + : {\n \"upgradeChannel\": \"stable\"\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3985' + - '4313' content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:15 GMT + - Thu, 15 Jun 2023 18:34:24 GMT expires: - '-1' pragma: @@ -1146,8 +1252,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -1155,17 +1261,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ac6ed29f-84c7-449d-9389-250ff7eb2900?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20df63b5-f146-440d-b1ff-c352c092cf6b?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 10:56:17 GMT + - Thu, 15 Jun 2023 18:34:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/ac6ed29f-84c7-449d-9389-250ff7eb2900?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/20df63b5-f146-440d-b1ff-c352c092cf6b?api-version=2016-03-30 pragma: - no-cache server: @@ -1175,7 +1281,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14993' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_disable_addons_confcom_addon.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_disable_addons_confcom_addon.yaml index e7c32e60dcf..38fcfcce8e1 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_disable_addons_confcom_addon.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_disable_addons_confcom_addon.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:00:14 GMT + - Thu, 15 Jun 2023 18:34:32 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T11:00:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_disable_addons_confcom_addon","date":"2023-06-15T18:34:30Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '367' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:00:14 GMT + - Thu, 15 Jun 2023 18:34:32 GMT expires: - '-1' pragma: @@ -88,20 +88,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestzc6xg24t4-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestrmialzqwq-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": - {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, - "disableLocalAccounts": false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": + true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "enableRBAC": true, + "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": + "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", + "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": + {}}}' headers: Accept: - application/json @@ -112,69 +112,71 @@ interactions: Connection: - keep-alive Content-Length: - - '1547' + - '1839' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestzc6xg24t4-79a739\",\n \"fqdn\": \"cliakstest-clitestzc6xg24t4-79a739-mcibpc8v.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestzc6xg24t4-79a739-mcibpc8v.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": - {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n }\n }\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestrmialzqwq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestrmialzqwq-8ecadf-xraf5vrk.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestrmialzqwq-8ecadf-xraf5vrk.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n\ + \ \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n }\n\ + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/698bedd9-e814-4ed4-bf88-199e45d68570?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16e74cf7-4c39-44e3-b147-f44203525c90?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3418' + - '3746' content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:18 GMT + - Thu, 15 Jun 2023 18:34:39 GMT expires: - '-1' pragma: @@ -186,7 +188,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -204,14 +206,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/698bedd9-e814-4ed4-bf88-199e45d68570?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16e74cf7-4c39-44e3-b147-f44203525c90?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d9ed8b69-14e8-d44e-bf88-199e45d68570\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:18.4593972Z\"\n }" + string: "{\n \"name\": \"f74ce716-394c-e344-b147-f44203525c90\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:34:39.2642845Z\"\n }" headers: cache-control: - no-cache @@ -220,7 +222,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:48 GMT + - Thu, 15 Jun 2023 18:34:39 GMT expires: - '-1' pragma: @@ -252,14 +254,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/698bedd9-e814-4ed4-bf88-199e45d68570?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16e74cf7-4c39-44e3-b147-f44203525c90?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d9ed8b69-14e8-d44e-bf88-199e45d68570\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:18.4593972Z\"\n }" + string: "{\n \"name\": \"f74ce716-394c-e344-b147-f44203525c90\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:34:39.2642845Z\"\n }" headers: cache-control: - no-cache @@ -268,7 +270,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:01:18 GMT + - Thu, 15 Jun 2023 18:35:09 GMT expires: - '-1' pragma: @@ -300,14 +302,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/698bedd9-e814-4ed4-bf88-199e45d68570?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16e74cf7-4c39-44e3-b147-f44203525c90?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d9ed8b69-14e8-d44e-bf88-199e45d68570\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:18.4593972Z\"\n }" + string: "{\n \"name\": \"f74ce716-394c-e344-b147-f44203525c90\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:34:39.2642845Z\"\n }" headers: cache-control: - no-cache @@ -316,7 +318,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:01:48 GMT + - Thu, 15 Jun 2023 18:35:39 GMT expires: - '-1' pragma: @@ -348,14 +350,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/698bedd9-e814-4ed4-bf88-199e45d68570?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16e74cf7-4c39-44e3-b147-f44203525c90?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d9ed8b69-14e8-d44e-bf88-199e45d68570\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:18.4593972Z\"\n }" + string: "{\n \"name\": \"f74ce716-394c-e344-b147-f44203525c90\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:34:39.2642845Z\"\n }" headers: cache-control: - no-cache @@ -364,7 +366,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:02:18 GMT + - Thu, 15 Jun 2023 18:36:10 GMT expires: - '-1' pragma: @@ -396,14 +398,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/698bedd9-e814-4ed4-bf88-199e45d68570?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16e74cf7-4c39-44e3-b147-f44203525c90?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d9ed8b69-14e8-d44e-bf88-199e45d68570\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:18.4593972Z\"\n }" + string: "{\n \"name\": \"f74ce716-394c-e344-b147-f44203525c90\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:34:39.2642845Z\"\n }" headers: cache-control: - no-cache @@ -412,7 +414,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:02:48 GMT + - Thu, 15 Jun 2023 18:36:40 GMT expires: - '-1' pragma: @@ -444,14 +446,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/698bedd9-e814-4ed4-bf88-199e45d68570?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16e74cf7-4c39-44e3-b147-f44203525c90?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d9ed8b69-14e8-d44e-bf88-199e45d68570\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:18.4593972Z\"\n }" + string: "{\n \"name\": \"f74ce716-394c-e344-b147-f44203525c90\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:34:39.2642845Z\"\n }" headers: cache-control: - no-cache @@ -460,7 +462,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:03:18 GMT + - Thu, 15 Jun 2023 18:37:10 GMT expires: - '-1' pragma: @@ -492,15 +494,63 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/698bedd9-e814-4ed4-bf88-199e45d68570?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16e74cf7-4c39-44e3-b147-f44203525c90?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d9ed8b69-14e8-d44e-bf88-199e45d68570\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:00:18.4593972Z\",\n \"endTime\": - \"2023-03-15T11:03:41.5327824Z\"\n }" + string: "{\n \"name\": \"f74ce716-394c-e344-b147-f44203525c90\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:34:39.2642845Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 18:37:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/16e74cf7-4c39-44e3-b147-f44203525c90?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f74ce716-394c-e344-b147-f44203525c90\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T18:34:39.2642845Z\",\n \"\ + endTime\": \"2023-06-15T18:38:10.4479302Z\"\n }" headers: cache-control: - no-cache @@ -509,7 +559,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:03:49 GMT + - Thu, 15 Jun 2023 18:38:10 GMT expires: - '-1' pragma: @@ -541,66 +591,68 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestzc6xg24t4-79a739\",\n \"fqdn\": \"cliakstest-clitestzc6xg24t4-79a739-mcibpc8v.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestzc6xg24t4-79a739-mcibpc8v.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": - {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n }\n }\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/30913a97-3f38-4edb-ba4c-1cfbd780d587\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestrmialzqwq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestrmialzqwq-8ecadf-xraf5vrk.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestrmialzqwq-8ecadf-xraf5vrk.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n\ + \ \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n }\n\ + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b8ed12b7-0450-453b-8df6-d9a8a99d6787\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4071' + - '4399' content-type: - application/json date: - - Wed, 15 Mar 2023 11:03:49 GMT + - Thu, 15 Jun 2023 18:38:11 GMT expires: - '-1' pragma: @@ -632,66 +684,68 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestzc6xg24t4-79a739\",\n \"fqdn\": \"cliakstest-clitestzc6xg24t4-79a739-mcibpc8v.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestzc6xg24t4-79a739-mcibpc8v.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": - {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n }\n }\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/30913a97-3f38-4edb-ba4c-1cfbd780d587\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestrmialzqwq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestrmialzqwq-8ecadf-xraf5vrk.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestrmialzqwq-8ecadf-xraf5vrk.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n\ + \ \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n }\n\ + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b8ed12b7-0450-453b-8df6-d9a8a99d6787\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4071' + - '4399' content-type: - application/json date: - - Wed, 15 Mar 2023 11:03:50 GMT + - Thu, 15 Jun 2023 18:38:12 GMT expires: - '-1' pragma: @@ -710,23 +764,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestzc6xg24t4-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestrmialzqwq-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": - {"enabled": false}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": - "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "networkProfile": - {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/30913a97-3f38-4edb-ba4c-1cfbd780d587"}]}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": + false}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b8ed12b7-0450-453b-8df6-d9a8a99d6787"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -743,73 +797,75 @@ interactions: Connection: - keep-alive Content-Length: - - '2576' + - '2904' Content-Type: - application/json ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestzc6xg24t4-79a739\",\n \"fqdn\": \"cliakstest-clitestzc6xg24t4-79a739-mcibpc8v.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestzc6xg24t4-79a739-mcibpc8v.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": false,\n \"config\": - null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/30913a97-3f38-4edb-ba4c-1cfbd780d587\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestrmialzqwq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestrmialzqwq-8ecadf-xraf5vrk.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestrmialzqwq-8ecadf-xraf5vrk.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": false,\n\ + \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b8ed12b7-0450-453b-8df6-d9a8a99d6787\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8bf38c23-edaa-4b40-8a91-db9782aadbe2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd0909e8-c5d1-4e46-aae2-022f86f58370?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4024' + - '4352' content-type: - application/json date: - - Wed, 15 Mar 2023 11:03:53 GMT + - Thu, 15 Jun 2023 18:38:20 GMT expires: - '-1' pragma: @@ -825,7 +881,103 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - --addons --resource-group --name -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd0909e8-c5d1-4e46-aae2-022f86f58370?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e80909bd-d1c5-464e-aae2-022f86f58370\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:38:18.8584719Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 18:38:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - --addons --resource-group --name -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd0909e8-c5d1-4e46-aae2-022f86f58370?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e80909bd-d1c5-464e-aae2-022f86f58370\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:38:18.8584719Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 18:38:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -843,14 +995,14 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8bf38c23-edaa-4b40-8a91-db9782aadbe2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd0909e8-c5d1-4e46-aae2-022f86f58370?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"238cf38b-aaed-404b-8a91-db9782aadbe2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:03:53.1789447Z\"\n }" + string: "{\n \"name\": \"e80909bd-d1c5-464e-aae2-022f86f58370\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:38:18.8584719Z\"\n }" headers: cache-control: - no-cache @@ -859,7 +1011,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:04:22 GMT + - Thu, 15 Jun 2023 18:39:20 GMT expires: - '-1' pragma: @@ -891,14 +1043,14 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8bf38c23-edaa-4b40-8a91-db9782aadbe2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd0909e8-c5d1-4e46-aae2-022f86f58370?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"238cf38b-aaed-404b-8a91-db9782aadbe2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:03:53.1789447Z\"\n }" + string: "{\n \"name\": \"e80909bd-d1c5-464e-aae2-022f86f58370\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:38:18.8584719Z\"\n }" headers: cache-control: - no-cache @@ -907,7 +1059,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:04:52 GMT + - Thu, 15 Jun 2023 18:39:50 GMT expires: - '-1' pragma: @@ -939,15 +1091,15 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8bf38c23-edaa-4b40-8a91-db9782aadbe2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bd0909e8-c5d1-4e46-aae2-022f86f58370?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"238cf38b-aaed-404b-8a91-db9782aadbe2\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:03:53.1789447Z\",\n \"endTime\": - \"2023-03-15T11:05:15.1349818Z\"\n }" + string: "{\n \"name\": \"e80909bd-d1c5-464e-aae2-022f86f58370\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T18:38:18.8584719Z\",\n \"\ + endTime\": \"2023-06-15T18:39:53.7070419Z\"\n }" headers: cache-control: - no-cache @@ -956,7 +1108,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:05:22 GMT + - Thu, 15 Jun 2023 18:40:21 GMT expires: - '-1' pragma: @@ -988,65 +1140,67 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestzc6xg24t4-79a739\",\n \"fqdn\": \"cliakstest-clitestzc6xg24t4-79a739-mcibpc8v.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestzc6xg24t4-79a739-mcibpc8v.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": false,\n \"config\": - null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/30913a97-3f38-4edb-ba4c-1cfbd780d587\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestrmialzqwq-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestrmialzqwq-8ecadf-xraf5vrk.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestrmialzqwq-8ecadf-xraf5vrk.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": false,\n\ + \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b8ed12b7-0450-453b-8df6-d9a8a99d6787\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4026' + - '4354' content-type: - application/json date: - - Wed, 15 Mar 2023 11:05:23 GMT + - Thu, 15 Jun 2023 18:40:21 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_disable_local_accounts.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_disable_local_accounts.yaml old mode 100755 new mode 100644 index 8bc3fd0b0d4..c4615c21cc5 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_disable_local_accounts.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_disable_local_accounts.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 20 Apr 2023 08:00:58 GMT + - Thu, 15 Jun 2023 18:40:25 GMT expires: - '-1' pragma: @@ -60,21 +60,21 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-04-20T08:00:57Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_disable_local_accounts","date":"2023-06-15T18:40:24Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '361' content-type: - application/json; charset=utf-8 date: - - Thu, 20 Apr 2023 08:00:57 GMT + - Thu, 15 Jun 2023 18:40:25 GMT expires: - '-1' pragma: @@ -90,20 +90,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestlnonne66f-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestfevvrlzvi-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDE8dOoJns2NQg0Lz3htlftpIGyp/MX/wM2gKsSBx/GjShcDJGb6fNqOyRm6SsXjInfqhEMVO5p0Y4JG932ZAf6804zlFsXbW0EVMqmpeRKVmVIC87+m/SFh7HaG00krZ6ziLuZ8KUJ6yhpLwxtH+1NeqFR60MNVzMROEUmqsZ1v9+MjVm0kmXtuhC0XpOd1AbAzJn6638h1a0hm8JeUrVP+v/e+jO23psmcJEHGj2k0/tAAbWezurEOUYkk6cq1taB9k0NzT4YCAvAlXZ1OOMkm2RZ0aHEaTP1e7VEuQ/Ze4b71BoPYqLpBgYyWRWpIX/buzvWc2QmM9CBBsxm4Vej - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "aadProfile": - {"managed": true, "enableAzureRBAC": false, "adminGroupObjectIDs": ["00000000-0000-0000-0000-000000000001"]}, - "disableLocalAccounts": true, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "aadProfile": {"managed": true, "enableAzureRBAC": false, "adminGroupObjectIDs": + ["00000000-0000-0000-0000-000000000001"]}, "disableLocalAccounts": true, "storageProfile": + {}}}' headers: Accept: - application/json @@ -114,71 +114,74 @@ interactions: Connection: - keep-alive Content-Length: - - '1582' + - '1874' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliakstest-clitestlnonne66f-79a739\",\n \"fqdn\": \"cliakstest-clitestlnonne66f-79a739-u25n4piu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestlnonne66f-79a739-u25n4piu.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": - \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDE8dOoJns2NQg0Lz3htlftpIGyp/MX/wM2gKsSBx/GjShcDJGb6fNqOyRm6SsXjInfqhEMVO5p0Y4JG932ZAf6804zlFsXbW0EVMqmpeRKVmVIC87+m/SFh7HaG00krZ6ziLuZ8KUJ6yhpLwxtH+1NeqFR60MNVzMROEUmqsZ1v9+MjVm0kmXtuhC0XpOd1AbAzJn6638h1a0hm8JeUrVP+v/e+jO23psmcJEHGj2k0/tAAbWezurEOUYkk6cq1taB9k0NzT4YCAvAlXZ1OOMkm2RZ0aHEaTP1e7VEuQ/Ze4b71BoPYqLpBgYyWRWpIX/buzvWc2QmM9CBBsxm4Vej - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": - [\n \"00000000-0000-0000-0000-000000000001\"\n ],\n \"adminUsers\": - null,\n \"enableAzureRBAC\": false,\n \"tenantID\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": true,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestfevvrlzvi-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestfevvrlzvi-8ecadf-efqdngo8.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestfevvrlzvi-8ecadf-efqdngo8.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n\ + \ \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\ + \n ],\n \"adminUsers\": null,\n \"enableAzureRBAC\": false,\n \ + \ \"tenantID\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"maxAgentPools\"\ + : 100,\n \"disableLocalAccounts\": true,\n \"securityProfile\": {},\n\ + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n\ + \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"\ + snapshotController\": {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\"\ + : {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": {}\n\ + \ },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fc19f1b-21f0-44eb-a0b0-23c0cf967d65?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d123c1be-c8e8-4457-8622-03b4940a73ff?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3502' + - '3830' content-type: - application/json date: - - Thu, 20 Apr 2023 08:01:03 GMT + - Thu, 15 Jun 2023 18:40:32 GMT expires: - '-1' pragma: @@ -209,161 +212,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fc19f1b-21f0-44eb-a0b0-23c0cf967d65?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"1b9fc16f-f021-eb44-a0b0-23c0cf967d65\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-20T08:01:02.7879313Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 20 Apr 2023 08:01:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts - --ssh-key-value - User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fc19f1b-21f0-44eb-a0b0-23c0cf967d65?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"1b9fc16f-f021-eb44-a0b0-23c0cf967d65\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-20T08:01:02.7879313Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 20 Apr 2023 08:01:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts - --ssh-key-value - User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fc19f1b-21f0-44eb-a0b0-23c0cf967d65?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"1b9fc16f-f021-eb44-a0b0-23c0cf967d65\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-20T08:01:02.7879313Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 20 Apr 2023 08:02:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts - --ssh-key-value - User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fc19f1b-21f0-44eb-a0b0-23c0cf967d65?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d123c1be-c8e8-4457-8622-03b4940a73ff?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b9fc16f-f021-eb44-a0b0-23c0cf967d65\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-20T08:01:02.7879313Z\"\n }" + string: "{\n \"name\": \"bec123d1-e8c8-5744-8622-03b4940a73ff\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:40:32.6243711Z\"\n }" headers: cache-control: - no-cache @@ -372,7 +228,7 @@ interactions: content-type: - application/json date: - - Thu, 20 Apr 2023 08:02:33 GMT + - Thu, 15 Jun 2023 18:40:33 GMT expires: - '-1' pragma: @@ -405,14 +261,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fc19f1b-21f0-44eb-a0b0-23c0cf967d65?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d123c1be-c8e8-4457-8622-03b4940a73ff?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b9fc16f-f021-eb44-a0b0-23c0cf967d65\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-20T08:01:02.7879313Z\"\n }" + string: "{\n \"name\": \"bec123d1-e8c8-5744-8622-03b4940a73ff\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:40:32.6243711Z\"\n }" headers: cache-control: - no-cache @@ -421,7 +277,7 @@ interactions: content-type: - application/json date: - - Thu, 20 Apr 2023 08:03:03 GMT + - Thu, 15 Jun 2023 18:41:03 GMT expires: - '-1' pragma: @@ -454,14 +310,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fc19f1b-21f0-44eb-a0b0-23c0cf967d65?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d123c1be-c8e8-4457-8622-03b4940a73ff?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b9fc16f-f021-eb44-a0b0-23c0cf967d65\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-20T08:01:02.7879313Z\"\n }" + string: "{\n \"name\": \"bec123d1-e8c8-5744-8622-03b4940a73ff\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:40:32.6243711Z\"\n }" headers: cache-control: - no-cache @@ -470,7 +326,7 @@ interactions: content-type: - application/json date: - - Thu, 20 Apr 2023 08:03:33 GMT + - Thu, 15 Jun 2023 18:41:33 GMT expires: - '-1' pragma: @@ -503,14 +359,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fc19f1b-21f0-44eb-a0b0-23c0cf967d65?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d123c1be-c8e8-4457-8622-03b4940a73ff?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b9fc16f-f021-eb44-a0b0-23c0cf967d65\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-20T08:01:02.7879313Z\"\n }" + string: "{\n \"name\": \"bec123d1-e8c8-5744-8622-03b4940a73ff\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:40:32.6243711Z\"\n }" headers: cache-control: - no-cache @@ -519,7 +375,7 @@ interactions: content-type: - application/json date: - - Thu, 20 Apr 2023 08:04:03 GMT + - Thu, 15 Jun 2023 18:42:03 GMT expires: - '-1' pragma: @@ -552,14 +408,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fc19f1b-21f0-44eb-a0b0-23c0cf967d65?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d123c1be-c8e8-4457-8622-03b4940a73ff?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b9fc16f-f021-eb44-a0b0-23c0cf967d65\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-20T08:01:02.7879313Z\"\n }" + string: "{\n \"name\": \"bec123d1-e8c8-5744-8622-03b4940a73ff\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:40:32.6243711Z\"\n }" headers: cache-control: - no-cache @@ -568,7 +424,7 @@ interactions: content-type: - application/json date: - - Thu, 20 Apr 2023 08:04:33 GMT + - Thu, 15 Jun 2023 18:42:34 GMT expires: - '-1' pragma: @@ -601,14 +457,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fc19f1b-21f0-44eb-a0b0-23c0cf967d65?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d123c1be-c8e8-4457-8622-03b4940a73ff?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b9fc16f-f021-eb44-a0b0-23c0cf967d65\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-20T08:01:02.7879313Z\"\n }" + string: "{\n \"name\": \"bec123d1-e8c8-5744-8622-03b4940a73ff\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:40:32.6243711Z\"\n }" headers: cache-control: - no-cache @@ -617,7 +473,7 @@ interactions: content-type: - application/json date: - - Thu, 20 Apr 2023 08:05:04 GMT + - Thu, 15 Jun 2023 18:43:04 GMT expires: - '-1' pragma: @@ -650,14 +506,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fc19f1b-21f0-44eb-a0b0-23c0cf967d65?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d123c1be-c8e8-4457-8622-03b4940a73ff?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b9fc16f-f021-eb44-a0b0-23c0cf967d65\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-20T08:01:02.7879313Z\"\n }" + string: "{\n \"name\": \"bec123d1-e8c8-5744-8622-03b4940a73ff\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:40:32.6243711Z\"\n }" headers: cache-control: - no-cache @@ -666,7 +522,7 @@ interactions: content-type: - application/json date: - - Thu, 20 Apr 2023 08:05:33 GMT + - Thu, 15 Jun 2023 18:43:34 GMT expires: - '-1' pragma: @@ -699,14 +555,14 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fc19f1b-21f0-44eb-a0b0-23c0cf967d65?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d123c1be-c8e8-4457-8622-03b4940a73ff?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b9fc16f-f021-eb44-a0b0-23c0cf967d65\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-20T08:01:02.7879313Z\"\n }" + string: "{\n \"name\": \"bec123d1-e8c8-5744-8622-03b4940a73ff\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:40:32.6243711Z\"\n }" headers: cache-control: - no-cache @@ -715,7 +571,7 @@ interactions: content-type: - application/json date: - - Thu, 20 Apr 2023 08:06:03 GMT + - Thu, 15 Jun 2023 18:44:04 GMT expires: - '-1' pragma: @@ -748,113 +604,15 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fc19f1b-21f0-44eb-a0b0-23c0cf967d65?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d123c1be-c8e8-4457-8622-03b4940a73ff?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1b9fc16f-f021-eb44-a0b0-23c0cf967d65\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-20T08:01:02.7879313Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 20 Apr 2023 08:06:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts - --ssh-key-value - User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fc19f1b-21f0-44eb-a0b0-23c0cf967d65?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"1b9fc16f-f021-eb44-a0b0-23c0cf967d65\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-20T08:01:02.7879313Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 20 Apr 2023 08:07:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts - --ssh-key-value - User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6fc19f1b-21f0-44eb-a0b0-23c0cf967d65?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"1b9fc16f-f021-eb44-a0b0-23c0cf967d65\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-04-20T08:01:02.7879313Z\",\n \"endTime\": - \"2023-04-20T08:07:16.1418162Z\"\n }" + string: "{\n \"name\": \"bec123d1-e8c8-5744-8622-03b4940a73ff\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T18:40:32.6243711Z\",\n \"\ + endTime\": \"2023-06-15T18:44:09.6037579Z\"\n }" headers: cache-control: - no-cache @@ -863,7 +621,7 @@ interactions: content-type: - application/json date: - - Thu, 20 Apr 2023 08:07:34 GMT + - Thu, 15 Jun 2023 18:44:34 GMT expires: - '-1' pragma: @@ -896,67 +654,70 @@ interactions: - --resource-group --name --enable-aad --aad-admin-group-object-ids --disable-local-accounts --ssh-key-value User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliakstest-clitestlnonne66f-79a739\",\n \"fqdn\": \"cliakstest-clitestlnonne66f-79a739-u25n4piu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestlnonne66f-79a739-u25n4piu.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": - \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDE8dOoJns2NQg0Lz3htlftpIGyp/MX/wM2gKsSBx/GjShcDJGb6fNqOyRm6SsXjInfqhEMVO5p0Y4JG932ZAf6804zlFsXbW0EVMqmpeRKVmVIC87+m/SFh7HaG00krZ6ziLuZ8KUJ6yhpLwxtH+1NeqFR60MNVzMROEUmqsZ1v9+MjVm0kmXtuhC0XpOd1AbAzJn6638h1a0hm8JeUrVP+v/e+jO23psmcJEHGj2k0/tAAbWezurEOUYkk6cq1taB9k0NzT4YCAvAlXZ1OOMkm2RZ0aHEaTP1e7VEuQ/Ze4b71BoPYqLpBgYyWRWpIX/buzvWc2QmM9CBBsxm4Vej - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1b318c92-67f8-430f-b6f9-5747a87b75f1\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": - {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n - \ ],\n \"adminUsers\": null,\n \"enableAzureRBAC\": false,\n \"tenantID\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"maxAgentPools\": 100,\n - \ \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": true,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestfevvrlzvi-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestfevvrlzvi-8ecadf-efqdngo8.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestfevvrlzvi-8ecadf-efqdngo8.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3c11ec9b-777e-42e6-8f2e-c129b3fe29b2\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n\ + \ \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\ + \n ],\n \"adminUsers\": null,\n \"enableAzureRBAC\": false,\n \ + \ \"tenantID\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"maxAgentPools\"\ + : 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : true,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4155' + - '4483' content-type: - application/json date: - - Thu, 20 Apr 2023 08:07:34 GMT + - Thu, 15 Jun 2023 18:44:34 GMT expires: - '-1' pragma: @@ -988,67 +749,70 @@ interactions: ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliakstest-clitestlnonne66f-79a739\",\n \"fqdn\": \"cliakstest-clitestlnonne66f-79a739-u25n4piu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestlnonne66f-79a739-u25n4piu.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": - \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDE8dOoJns2NQg0Lz3htlftpIGyp/MX/wM2gKsSBx/GjShcDJGb6fNqOyRm6SsXjInfqhEMVO5p0Y4JG932ZAf6804zlFsXbW0EVMqmpeRKVmVIC87+m/SFh7HaG00krZ6ziLuZ8KUJ6yhpLwxtH+1NeqFR60MNVzMROEUmqsZ1v9+MjVm0kmXtuhC0XpOd1AbAzJn6638h1a0hm8JeUrVP+v/e+jO23psmcJEHGj2k0/tAAbWezurEOUYkk6cq1taB9k0NzT4YCAvAlXZ1OOMkm2RZ0aHEaTP1e7VEuQ/Ze4b71BoPYqLpBgYyWRWpIX/buzvWc2QmM9CBBsxm4Vej - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1b318c92-67f8-430f-b6f9-5747a87b75f1\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": - {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n - \ ],\n \"adminUsers\": null,\n \"enableAzureRBAC\": false,\n \"tenantID\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"maxAgentPools\": 100,\n - \ \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": true,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestfevvrlzvi-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestfevvrlzvi-8ecadf-efqdngo8.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestfevvrlzvi-8ecadf-efqdngo8.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3c11ec9b-777e-42e6-8f2e-c129b3fe29b2\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n\ + \ \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\ + \n ],\n \"adminUsers\": null,\n \"enableAzureRBAC\": false,\n \ + \ \"tenantID\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"maxAgentPools\"\ + : 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : true,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4155' + - '4483' content-type: - application/json date: - - Thu, 20 Apr 2023 08:07:35 GMT + - Thu, 15 Jun 2023 18:44:36 GMT expires: - '-1' pragma: @@ -1069,21 +833,21 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestlnonne66f-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestfevvrlzvi-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDE8dOoJns2NQg0Lz3htlftpIGyp/MX/wM2gKsSBx/GjShcDJGb6fNqOyRm6SsXjInfqhEMVO5p0Y4JG932ZAf6804zlFsXbW0EVMqmpeRKVmVIC87+m/SFh7HaG00krZ6ziLuZ8KUJ6yhpLwxtH+1NeqFR60MNVzMROEUmqsZ1v9+MjVm0kmXtuhC0XpOd1AbAzJn6638h1a0hm8JeUrVP+v/e+jO23psmcJEHGj2k0/tAAbWezurEOUYkk6cq1taB9k0NzT4YCAvAlXZ1OOMkm2RZ0aHEaTP1e7VEuQ/Ze4b71BoPYqLpBgYyWRWpIX/buzvWc2QmM9CBBsxm4Vej - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1b318c92-67f8-430f-b6f9-5747a87b75f1"}]}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3c11ec9b-777e-42e6-8f2e-c129b3fe29b2"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "aadProfile": {"managed": true, "enableAzureRBAC": false, "adminGroupObjectIDs": ["00000000-0000-0000-0000-000000000001"], "tenantID": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, @@ -1101,75 +865,78 @@ interactions: Connection: - keep-alive Content-Length: - - '2659' + - '2988' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliakstest-clitestlnonne66f-79a739\",\n \"fqdn\": \"cliakstest-clitestlnonne66f-79a739-u25n4piu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestlnonne66f-79a739-u25n4piu.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": - \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDE8dOoJns2NQg0Lz3htlftpIGyp/MX/wM2gKsSBx/GjShcDJGb6fNqOyRm6SsXjInfqhEMVO5p0Y4JG932ZAf6804zlFsXbW0EVMqmpeRKVmVIC87+m/SFh7HaG00krZ6ziLuZ8KUJ6yhpLwxtH+1NeqFR60MNVzMROEUmqsZ1v9+MjVm0kmXtuhC0XpOd1AbAzJn6638h1a0hm8JeUrVP+v/e+jO23psmcJEHGj2k0/tAAbWezurEOUYkk6cq1taB9k0NzT4YCAvAlXZ1OOMkm2RZ0aHEaTP1e7VEuQ/Ze4b71BoPYqLpBgYyWRWpIX/buzvWc2QmM9CBBsxm4Vej - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1b318c92-67f8-430f-b6f9-5747a87b75f1\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": - {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n - \ ],\n \"adminUsers\": null,\n \"enableAzureRBAC\": false,\n \"tenantID\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"maxAgentPools\": 100,\n - \ \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestfevvrlzvi-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestfevvrlzvi-8ecadf-efqdngo8.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestfevvrlzvi-8ecadf-efqdngo8.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3c11ec9b-777e-42e6-8f2e-c129b3fe29b2\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n\ + \ \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\ + \n ],\n \"adminUsers\": null,\n \"enableAzureRBAC\": false,\n \ + \ \"tenantID\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"maxAgentPools\"\ + : 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ab9e8371-0214-4655-9266-4f08e390589f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/14c2803c-4fcf-4999-8feb-9da76f379888?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4154' + - '4482' content-type: - application/json date: - - Thu, 20 Apr 2023 08:07:39 GMT + - Thu, 15 Jun 2023 18:44:42 GMT expires: - '-1' pragma: @@ -1203,14 +970,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ab9e8371-0214-4655-9266-4f08e390589f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/14c2803c-4fcf-4999-8feb-9da76f379888?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71839eab-1402-5546-9266-4f08e390589f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-20T08:07:39.8220273Z\"\n }" + string: "{\n \"name\": \"3c80c214-cf4f-9949-8feb-9da76f379888\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:44:42.2188861Z\"\n }" headers: cache-control: - no-cache @@ -1219,7 +986,7 @@ interactions: content-type: - application/json date: - - Thu, 20 Apr 2023 08:07:39 GMT + - Thu, 15 Jun 2023 18:44:42 GMT expires: - '-1' pragma: @@ -1251,14 +1018,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ab9e8371-0214-4655-9266-4f08e390589f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/14c2803c-4fcf-4999-8feb-9da76f379888?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71839eab-1402-5546-9266-4f08e390589f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-20T08:07:39.8220273Z\"\n }" + string: "{\n \"name\": \"3c80c214-cf4f-9949-8feb-9da76f379888\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:44:42.2188861Z\"\n }" headers: cache-control: - no-cache @@ -1267,7 +1034,7 @@ interactions: content-type: - application/json date: - - Thu, 20 Apr 2023 08:08:09 GMT + - Thu, 15 Jun 2023 18:45:12 GMT expires: - '-1' pragma: @@ -1299,14 +1066,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ab9e8371-0214-4655-9266-4f08e390589f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/14c2803c-4fcf-4999-8feb-9da76f379888?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71839eab-1402-5546-9266-4f08e390589f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-20T08:07:39.8220273Z\"\n }" + string: "{\n \"name\": \"3c80c214-cf4f-9949-8feb-9da76f379888\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:44:42.2188861Z\"\n }" headers: cache-control: - no-cache @@ -1315,7 +1082,7 @@ interactions: content-type: - application/json date: - - Thu, 20 Apr 2023 08:08:39 GMT + - Thu, 15 Jun 2023 18:45:43 GMT expires: - '-1' pragma: @@ -1347,14 +1114,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ab9e8371-0214-4655-9266-4f08e390589f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/14c2803c-4fcf-4999-8feb-9da76f379888?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71839eab-1402-5546-9266-4f08e390589f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-20T08:07:39.8220273Z\"\n }" + string: "{\n \"name\": \"3c80c214-cf4f-9949-8feb-9da76f379888\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:44:42.2188861Z\"\n }" headers: cache-control: - no-cache @@ -1363,7 +1130,7 @@ interactions: content-type: - application/json date: - - Thu, 20 Apr 2023 08:09:10 GMT + - Thu, 15 Jun 2023 18:46:13 GMT expires: - '-1' pragma: @@ -1395,15 +1162,15 @@ interactions: ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ab9e8371-0214-4655-9266-4f08e390589f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/14c2803c-4fcf-4999-8feb-9da76f379888?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71839eab-1402-5546-9266-4f08e390589f\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-04-20T08:07:39.8220273Z\",\n \"endTime\": - \"2023-04-20T08:09:19.2277319Z\"\n }" + string: "{\n \"name\": \"3c80c214-cf4f-9949-8feb-9da76f379888\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T18:44:42.2188861Z\",\n \"\ + endTime\": \"2023-06-15T18:46:27.0463879Z\"\n }" headers: cache-control: - no-cache @@ -1412,7 +1179,7 @@ interactions: content-type: - application/json date: - - Thu, 20 Apr 2023 08:09:40 GMT + - Thu, 15 Jun 2023 18:46:43 GMT expires: - '-1' pragma: @@ -1444,67 +1211,70 @@ interactions: ParameterSetName: - --resource-group --name --enable-local-accounts User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliakstest-clitestlnonne66f-79a739\",\n \"fqdn\": \"cliakstest-clitestlnonne66f-79a739-u25n4piu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestlnonne66f-79a739-u25n4piu.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": - \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDE8dOoJns2NQg0Lz3htlftpIGyp/MX/wM2gKsSBx/GjShcDJGb6fNqOyRm6SsXjInfqhEMVO5p0Y4JG932ZAf6804zlFsXbW0EVMqmpeRKVmVIC87+m/SFh7HaG00krZ6ziLuZ8KUJ6yhpLwxtH+1NeqFR60MNVzMROEUmqsZ1v9+MjVm0kmXtuhC0XpOd1AbAzJn6638h1a0hm8JeUrVP+v/e+jO23psmcJEHGj2k0/tAAbWezurEOUYkk6cq1taB9k0NzT4YCAvAlXZ1OOMkm2RZ0aHEaTP1e7VEuQ/Ze4b71BoPYqLpBgYyWRWpIX/buzvWc2QmM9CBBsxm4Vej - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1b318c92-67f8-430f-b6f9-5747a87b75f1\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": - {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n - \ ],\n \"adminUsers\": null,\n \"enableAzureRBAC\": false,\n \"tenantID\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"maxAgentPools\": 100,\n - \ \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestfevvrlzvi-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestfevvrlzvi-8ecadf-efqdngo8.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestfevvrlzvi-8ecadf-efqdngo8.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3c11ec9b-777e-42e6-8f2e-c129b3fe29b2\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n\ + \ \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\ + \n ],\n \"adminUsers\": null,\n \"enableAzureRBAC\": false,\n \ + \ \"tenantID\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"maxAgentPools\"\ + : 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4156' + - '4484' content-type: - application/json date: - - Thu, 20 Apr 2023 08:09:40 GMT + - Thu, 15 Jun 2023 18:46:44 GMT expires: - '-1' pragma: @@ -1536,67 +1306,70 @@ interactions: ParameterSetName: - --resource-group --name --disable-local-accounts User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliakstest-clitestlnonne66f-79a739\",\n \"fqdn\": \"cliakstest-clitestlnonne66f-79a739-u25n4piu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestlnonne66f-79a739-u25n4piu.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": - \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDE8dOoJns2NQg0Lz3htlftpIGyp/MX/wM2gKsSBx/GjShcDJGb6fNqOyRm6SsXjInfqhEMVO5p0Y4JG932ZAf6804zlFsXbW0EVMqmpeRKVmVIC87+m/SFh7HaG00krZ6ziLuZ8KUJ6yhpLwxtH+1NeqFR60MNVzMROEUmqsZ1v9+MjVm0kmXtuhC0XpOd1AbAzJn6638h1a0hm8JeUrVP+v/e+jO23psmcJEHGj2k0/tAAbWezurEOUYkk6cq1taB9k0NzT4YCAvAlXZ1OOMkm2RZ0aHEaTP1e7VEuQ/Ze4b71BoPYqLpBgYyWRWpIX/buzvWc2QmM9CBBsxm4Vej - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1b318c92-67f8-430f-b6f9-5747a87b75f1\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": - {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n - \ ],\n \"adminUsers\": null,\n \"enableAzureRBAC\": false,\n \"tenantID\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"maxAgentPools\": 100,\n - \ \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestfevvrlzvi-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestfevvrlzvi-8ecadf-efqdngo8.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestfevvrlzvi-8ecadf-efqdngo8.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3c11ec9b-777e-42e6-8f2e-c129b3fe29b2\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n\ + \ \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\ + \n ],\n \"adminUsers\": null,\n \"enableAzureRBAC\": false,\n \ + \ \"tenantID\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"maxAgentPools\"\ + : 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4156' + - '4484' content-type: - application/json date: - - Thu, 20 Apr 2023 08:09:41 GMT + - Thu, 15 Jun 2023 18:46:46 GMT expires: - '-1' pragma: @@ -1617,21 +1390,21 @@ interactions: - request: body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": - "cliakstest-clitestlnonne66f-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestfevvrlzvi-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDE8dOoJns2NQg0Lz3htlftpIGyp/MX/wM2gKsSBx/GjShcDJGb6fNqOyRm6SsXjInfqhEMVO5p0Y4JG932ZAf6804zlFsXbW0EVMqmpeRKVmVIC87+m/SFh7HaG00krZ6ziLuZ8KUJ6yhpLwxtH+1NeqFR60MNVzMROEUmqsZ1v9+MjVm0kmXtuhC0XpOd1AbAzJn6638h1a0hm8JeUrVP+v/e+jO23psmcJEHGj2k0/tAAbWezurEOUYkk6cq1taB9k0NzT4YCAvAlXZ1OOMkm2RZ0aHEaTP1e7VEuQ/Ze4b71BoPYqLpBgYyWRWpIX/buzvWc2QmM9CBBsxm4Vej - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1b318c92-67f8-430f-b6f9-5747a87b75f1"}]}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3c11ec9b-777e-42e6-8f2e-c129b3fe29b2"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "aadProfile": {"managed": true, "enableAzureRBAC": false, "adminGroupObjectIDs": ["00000000-0000-0000-0000-000000000001"], "tenantID": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, @@ -1649,75 +1422,78 @@ interactions: Connection: - keep-alive Content-Length: - - '2658' + - '2987' Content-Type: - application/json ParameterSetName: - --resource-group --name --disable-local-accounts User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliakstest-clitestlnonne66f-79a739\",\n \"fqdn\": \"cliakstest-clitestlnonne66f-79a739-u25n4piu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestlnonne66f-79a739-u25n4piu.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": - \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDE8dOoJns2NQg0Lz3htlftpIGyp/MX/wM2gKsSBx/GjShcDJGb6fNqOyRm6SsXjInfqhEMVO5p0Y4JG932ZAf6804zlFsXbW0EVMqmpeRKVmVIC87+m/SFh7HaG00krZ6ziLuZ8KUJ6yhpLwxtH+1NeqFR60MNVzMROEUmqsZ1v9+MjVm0kmXtuhC0XpOd1AbAzJn6638h1a0hm8JeUrVP+v/e+jO23psmcJEHGj2k0/tAAbWezurEOUYkk6cq1taB9k0NzT4YCAvAlXZ1OOMkm2RZ0aHEaTP1e7VEuQ/Ze4b71BoPYqLpBgYyWRWpIX/buzvWc2QmM9CBBsxm4Vej - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1b318c92-67f8-430f-b6f9-5747a87b75f1\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": - {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n - \ ],\n \"adminUsers\": null,\n \"enableAzureRBAC\": false,\n \"tenantID\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"maxAgentPools\": 100,\n - \ \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": true,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestfevvrlzvi-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestfevvrlzvi-8ecadf-efqdngo8.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestfevvrlzvi-8ecadf-efqdngo8.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3c11ec9b-777e-42e6-8f2e-c129b3fe29b2\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n\ + \ \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\ + \n ],\n \"adminUsers\": null,\n \"enableAzureRBAC\": false,\n \ + \ \"tenantID\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"maxAgentPools\"\ + : 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : true,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/779d753f-0ed7-473b-b070-291455fb38a2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/89c1be4e-4a90-4bce-8c4d-30b3f83cf93a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4153' + - '4481' content-type: - application/json date: - - Thu, 20 Apr 2023 08:09:45 GMT + - Thu, 15 Jun 2023 18:46:54 GMT expires: - '-1' pragma: @@ -1733,55 +1509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks update - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --disable-local-accounts - User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/779d753f-0ed7-473b-b070-291455fb38a2?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"3f759d77-d70e-3b47-b070-291455fb38a2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-20T08:09:45.0894944Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Thu, 20 Apr 2023 08:09:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff + - '1199' status: code: 200 message: OK @@ -1799,23 +1527,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-local-accounts User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/779d753f-0ed7-473b-b070-291455fb38a2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/89c1be4e-4a90-4bce-8c4d-30b3f83cf93a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3f759d77-d70e-3b47-b070-291455fb38a2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-20T08:09:45.0894944Z\"\n }" + string: "{\n \"name\": \"4ebec189-904a-ce4b-8c4d-30b3f83cf93a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:46:51.344285Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 20 Apr 2023 08:10:15 GMT + - Thu, 15 Jun 2023 18:46:54 GMT expires: - '-1' pragma: @@ -1847,23 +1575,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-local-accounts User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/779d753f-0ed7-473b-b070-291455fb38a2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/89c1be4e-4a90-4bce-8c4d-30b3f83cf93a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3f759d77-d70e-3b47-b070-291455fb38a2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-20T08:09:45.0894944Z\"\n }" + string: "{\n \"name\": \"4ebec189-904a-ce4b-8c4d-30b3f83cf93a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:46:51.344285Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 20 Apr 2023 08:10:45 GMT + - Thu, 15 Jun 2023 18:47:25 GMT expires: - '-1' pragma: @@ -1895,23 +1623,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-local-accounts User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/779d753f-0ed7-473b-b070-291455fb38a2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/89c1be4e-4a90-4bce-8c4d-30b3f83cf93a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3f759d77-d70e-3b47-b070-291455fb38a2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-20T08:09:45.0894944Z\"\n }" + string: "{\n \"name\": \"4ebec189-904a-ce4b-8c4d-30b3f83cf93a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:46:51.344285Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 20 Apr 2023 08:11:15 GMT + - Thu, 15 Jun 2023 18:47:55 GMT expires: - '-1' pragma: @@ -1943,23 +1671,23 @@ interactions: ParameterSetName: - --resource-group --name --disable-local-accounts User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/779d753f-0ed7-473b-b070-291455fb38a2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/89c1be4e-4a90-4bce-8c4d-30b3f83cf93a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3f759d77-d70e-3b47-b070-291455fb38a2\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-04-20T08:09:45.0894944Z\"\n }" + string: "{\n \"name\": \"4ebec189-904a-ce4b-8c4d-30b3f83cf93a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:46:51.344285Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Thu, 20 Apr 2023 08:11:45 GMT + - Thu, 15 Jun 2023 18:48:25 GMT expires: - '-1' pragma: @@ -1991,24 +1719,24 @@ interactions: ParameterSetName: - --resource-group --name --disable-local-accounts User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/779d753f-0ed7-473b-b070-291455fb38a2?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/89c1be4e-4a90-4bce-8c4d-30b3f83cf93a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3f759d77-d70e-3b47-b070-291455fb38a2\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-04-20T08:09:45.0894944Z\",\n \"endTime\": - \"2023-04-20T08:11:49.625942Z\"\n }" + string: "{\n \"name\": \"4ebec189-904a-ce4b-8c4d-30b3f83cf93a\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T18:46:51.344285Z\",\n \"\ + endTime\": \"2023-06-15T18:48:37.62355Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '167' content-type: - application/json date: - - Thu, 20 Apr 2023 08:12:15 GMT + - Thu, 15 Jun 2023 18:48:55 GMT expires: - '-1' pragma: @@ -2040,67 +1768,70 @@ interactions: ParameterSetName: - --resource-group --name --disable-local-accounts User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": - \"cliakstest-clitestlnonne66f-79a739\",\n \"fqdn\": \"cliakstest-clitestlnonne66f-79a739-u25n4piu.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestlnonne66f-79a739-u25n4piu.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": - \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDE8dOoJns2NQg0Lz3htlftpIGyp/MX/wM2gKsSBx/GjShcDJGb6fNqOyRm6SsXjInfqhEMVO5p0Y4JG932ZAf6804zlFsXbW0EVMqmpeRKVmVIC87+m/SFh7HaG00krZ6ziLuZ8KUJ6yhpLwxtH+1NeqFR60MNVzMROEUmqsZ1v9+MjVm0kmXtuhC0XpOd1AbAzJn6638h1a0hm8JeUrVP+v/e+jO23psmcJEHGj2k0/tAAbWezurEOUYkk6cq1taB9k0NzT4YCAvAlXZ1OOMkm2RZ0aHEaTP1e7VEuQ/Ze4b71BoPYqLpBgYyWRWpIX/buzvWc2QmM9CBBsxm4Vej - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/1b318c92-67f8-430f-b6f9-5747a87b75f1\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"aadProfile\": - {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n - \ ],\n \"adminUsers\": null,\n \"enableAzureRBAC\": false,\n \"tenantID\": - \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"maxAgentPools\": 100,\n - \ \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": true,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestfevvrlzvi-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestfevvrlzvi-8ecadf-efqdngo8.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestfevvrlzvi-8ecadf-efqdngo8.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3c11ec9b-777e-42e6-8f2e-c129b3fe29b2\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"aadProfile\": {\n \"managed\": true,\n\ + \ \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\ + \n ],\n \"adminUsers\": null,\n \"enableAzureRBAC\": false,\n \ + \ \"tenantID\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"maxAgentPools\"\ + : 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : true,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4155' + - '4483' content-type: - application/json date: - - Thu, 20 Apr 2023 08:12:16 GMT + - Thu, 15 Jun 2023 18:48:56 GMT expires: - '-1' pragma: @@ -2134,8 +1865,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.47.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -2143,17 +1874,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2590fe2b-3b8f-4617-9197-57c29515e510?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fcd28599-69e8-4d96-8fb5-54a0f87b016c?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Thu, 20 Apr 2023 08:12:17 GMT + - Thu, 15 Jun 2023 18:48:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/2590fe2b-3b8f-4617-9197-57c29515e510?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/fcd28599-69e8-4d96-8fb5-54a0f87b016c?api-version=2016-03-30 pragma: - no-cache server: @@ -2163,7 +1894,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_disable_openservicemesh_addon.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_disable_openservicemesh_addon.yaml index c6a106d30ac..63fe140f6f3 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_disable_openservicemesh_addon.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_disable_openservicemesh_addon.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:56:51 GMT + - Thu, 15 Jun 2023 18:49:02 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:56:51Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_disable_openservicemesh_addon","date":"2023-06-15T18:49:01Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '368' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:56:51 GMT + - Thu, 15 Jun 2023 18:49:03 GMT expires: - '-1' pragma: @@ -88,20 +88,19 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest6mwousfrm-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestvw7rzo47z-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": - {"enabled": true, "config": {}}}, "enableRBAC": true, "networkProfile": {"networkPlugin": - "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": - "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": - {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": {"enabled": true, + "config": {}}}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", + "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": + false, "storageProfile": {}}}' headers: Accept: - application/json @@ -112,68 +111,70 @@ interactions: Connection: - keep-alive Content-Length: - - '1509' + - '1801' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest6mwousfrm-79a739\",\n \"fqdn\": \"cliakstest-clitest6mwousfrm-79a739-s99048q9.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest6mwousfrm-79a739-s99048q9.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null\n - \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": - \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestvw7rzo47z-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestvw7rzo47z-8ecadf-8a5zy4rl.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestvw7rzo47z-8ecadf-8a5zy4rl.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"openServiceMesh\": {\n \"enabled\": true,\n\ + \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e525aab9-bb06-4f47-9fb4-a333fe8665ef?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2ebcc7b-0ec2-46bc-8f20-e911da936997?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3369' + - '3697' content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:54 GMT + - Thu, 15 Jun 2023 18:49:10 GMT expires: - '-1' pragma: @@ -185,7 +186,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -203,14 +204,110 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2ebcc7b-0ec2-46bc-8f20-e911da936997?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"7bccebc2-c20e-bc46-8f20-e911da936997\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:49:10.6570875Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 18:49:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2ebcc7b-0ec2-46bc-8f20-e911da936997?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"7bccebc2-c20e-bc46-8f20-e911da936997\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:49:10.6570875Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 18:49:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity -a --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e525aab9-bb06-4f47-9fb4-a333fe8665ef?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2ebcc7b-0ec2-46bc-8f20-e911da936997?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9aa25e5-06bb-474f-9fb4-a333fe8665ef\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:55.5990011Z\"\n }" + string: "{\n \"name\": \"7bccebc2-c20e-bc46-8f20-e911da936997\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:49:10.6570875Z\"\n }" headers: cache-control: - no-cache @@ -219,7 +316,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:57:25 GMT + - Thu, 15 Jun 2023 18:50:11 GMT expires: - '-1' pragma: @@ -251,14 +348,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e525aab9-bb06-4f47-9fb4-a333fe8665ef?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2ebcc7b-0ec2-46bc-8f20-e911da936997?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9aa25e5-06bb-474f-9fb4-a333fe8665ef\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:55.5990011Z\"\n }" + string: "{\n \"name\": \"7bccebc2-c20e-bc46-8f20-e911da936997\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:49:10.6570875Z\"\n }" headers: cache-control: - no-cache @@ -267,7 +364,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:57:55 GMT + - Thu, 15 Jun 2023 18:50:41 GMT expires: - '-1' pragma: @@ -299,14 +396,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e525aab9-bb06-4f47-9fb4-a333fe8665ef?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2ebcc7b-0ec2-46bc-8f20-e911da936997?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9aa25e5-06bb-474f-9fb4-a333fe8665ef\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:55.5990011Z\"\n }" + string: "{\n \"name\": \"7bccebc2-c20e-bc46-8f20-e911da936997\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:49:10.6570875Z\"\n }" headers: cache-control: - no-cache @@ -315,7 +412,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:58:25 GMT + - Thu, 15 Jun 2023 18:51:11 GMT expires: - '-1' pragma: @@ -347,14 +444,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e525aab9-bb06-4f47-9fb4-a333fe8665ef?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2ebcc7b-0ec2-46bc-8f20-e911da936997?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9aa25e5-06bb-474f-9fb4-a333fe8665ef\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:55.5990011Z\"\n }" + string: "{\n \"name\": \"7bccebc2-c20e-bc46-8f20-e911da936997\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:49:10.6570875Z\"\n }" headers: cache-control: - no-cache @@ -363,7 +460,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:58:55 GMT + - Thu, 15 Jun 2023 18:51:41 GMT expires: - '-1' pragma: @@ -395,14 +492,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e525aab9-bb06-4f47-9fb4-a333fe8665ef?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2ebcc7b-0ec2-46bc-8f20-e911da936997?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9aa25e5-06bb-474f-9fb4-a333fe8665ef\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:55.5990011Z\"\n }" + string: "{\n \"name\": \"7bccebc2-c20e-bc46-8f20-e911da936997\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:49:10.6570875Z\"\n }" headers: cache-control: - no-cache @@ -411,7 +508,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:59:25 GMT + - Thu, 15 Jun 2023 18:52:11 GMT expires: - '-1' pragma: @@ -443,14 +540,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e525aab9-bb06-4f47-9fb4-a333fe8665ef?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2ebcc7b-0ec2-46bc-8f20-e911da936997?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9aa25e5-06bb-474f-9fb4-a333fe8665ef\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:55.5990011Z\"\n }" + string: "{\n \"name\": \"7bccebc2-c20e-bc46-8f20-e911da936997\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:49:10.6570875Z\"\n }" headers: cache-control: - no-cache @@ -459,7 +556,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:59:55 GMT + - Thu, 15 Jun 2023 18:52:41 GMT expires: - '-1' pragma: @@ -491,15 +588,15 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e525aab9-bb06-4f47-9fb4-a333fe8665ef?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c2ebcc7b-0ec2-46bc-8f20-e911da936997?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b9aa25e5-06bb-474f-9fb4-a333fe8665ef\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:56:55.5990011Z\",\n \"endTime\": - \"2023-03-15T11:00:18.7739972Z\"\n }" + string: "{\n \"name\": \"7bccebc2-c20e-bc46-8f20-e911da936997\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T18:49:10.6570875Z\",\n \"\ + endTime\": \"2023-06-15T18:52:44.9965068Z\"\n }" headers: cache-control: - no-cache @@ -508,7 +605,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:26 GMT + - Thu, 15 Jun 2023 18:53:12 GMT expires: - '-1' pragma: @@ -540,65 +637,67 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity -a --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest6mwousfrm-79a739\",\n \"fqdn\": \"cliakstest-clitest6mwousfrm-79a739-s99048q9.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest6mwousfrm-79a739-s99048q9.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null\n - \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4faa6cff-0942-44bf-a9b3-3c5646221955\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestvw7rzo47z-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestvw7rzo47z-8ecadf-8a5zy4rl.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestvw7rzo47z-8ecadf-8a5zy4rl.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"openServiceMesh\": {\n \"enabled\": true,\n\ + \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6f7f9b87-7781-459c-b052-bc29c0cff032\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4022' + - '4350' content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:26 GMT + - Thu, 15 Jun 2023 18:53:13 GMT expires: - '-1' pragma: @@ -630,65 +729,67 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest6mwousfrm-79a739\",\n \"fqdn\": \"cliakstest-clitest6mwousfrm-79a739-s99048q9.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest6mwousfrm-79a739-s99048q9.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null\n - \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4faa6cff-0942-44bf-a9b3-3c5646221955\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestvw7rzo47z-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestvw7rzo47z-8ecadf-8a5zy4rl.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestvw7rzo47z-8ecadf-8a5zy4rl.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"openServiceMesh\": {\n \"enabled\": true,\n\ + \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6f7f9b87-7781-459c-b052-bc29c0cff032\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4022' + - '4350' content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:26 GMT + - Thu, 15 Jun 2023 18:53:16 GMT expires: - '-1' pragma: @@ -707,23 +808,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitest6mwousfrm-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestvw7rzo47z-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": - {"enabled": false}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": - "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "networkProfile": - {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4faa6cff-0942-44bf-a9b3-3c5646221955"}]}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": {"enabled": false}}, + "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6f7f9b87-7781-459c-b052-bc29c0cff032"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -740,73 +841,75 @@ interactions: Connection: - keep-alive Content-Length: - - '2573' + - '2901' Content-Type: - application/json ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest6mwousfrm-79a739\",\n \"fqdn\": \"cliakstest-clitest6mwousfrm-79a739-s99048q9.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest6mwousfrm-79a739-s99048q9.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": false,\n \"config\": - null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4faa6cff-0942-44bf-a9b3-3c5646221955\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestvw7rzo47z-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestvw7rzo47z-8ecadf-8a5zy4rl.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestvw7rzo47z-8ecadf-8a5zy4rl.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"openServiceMesh\": {\n \"enabled\": false,\n\ + \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6f7f9b87-7781-459c-b052-bc29c0cff032\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0ef98cc-9ce2-44ea-b003-179e09a5b51f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64d470ce-efa3-4d79-9f9f-fc6eec15f4f7?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4021' + - '4349' content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:29 GMT + - Thu, 15 Jun 2023 18:53:22 GMT expires: - '-1' pragma: @@ -822,7 +925,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - --addons --resource-group --name -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64d470ce-efa3-4d79-9f9f-fc6eec15f4f7?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ce70d464-a3ef-794d-9f9f-fc6eec15f4f7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:53:21.4701729Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 18:53:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -840,14 +991,14 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0ef98cc-9ce2-44ea-b003-179e09a5b51f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64d470ce-efa3-4d79-9f9f-fc6eec15f4f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cc98efc0-e29c-ea44-b003-179e09a5b51f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:30.4594474Z\"\n }" + string: "{\n \"name\": \"ce70d464-a3ef-794d-9f9f-fc6eec15f4f7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:53:21.4701729Z\"\n }" headers: cache-control: - no-cache @@ -856,7 +1007,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:01:00 GMT + - Thu, 15 Jun 2023 18:53:52 GMT expires: - '-1' pragma: @@ -888,14 +1039,14 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0ef98cc-9ce2-44ea-b003-179e09a5b51f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64d470ce-efa3-4d79-9f9f-fc6eec15f4f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cc98efc0-e29c-ea44-b003-179e09a5b51f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:30.4594474Z\"\n }" + string: "{\n \"name\": \"ce70d464-a3ef-794d-9f9f-fc6eec15f4f7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:53:21.4701729Z\"\n }" headers: cache-control: - no-cache @@ -904,7 +1055,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:01:30 GMT + - Thu, 15 Jun 2023 18:54:22 GMT expires: - '-1' pragma: @@ -936,14 +1087,14 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0ef98cc-9ce2-44ea-b003-179e09a5b51f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64d470ce-efa3-4d79-9f9f-fc6eec15f4f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cc98efc0-e29c-ea44-b003-179e09a5b51f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:30.4594474Z\"\n }" + string: "{\n \"name\": \"ce70d464-a3ef-794d-9f9f-fc6eec15f4f7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:53:21.4701729Z\"\n }" headers: cache-control: - no-cache @@ -952,7 +1103,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:02:00 GMT + - Thu, 15 Jun 2023 18:54:53 GMT expires: - '-1' pragma: @@ -984,15 +1135,15 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c0ef98cc-9ce2-44ea-b003-179e09a5b51f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64d470ce-efa3-4d79-9f9f-fc6eec15f4f7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cc98efc0-e29c-ea44-b003-179e09a5b51f\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:00:30.4594474Z\",\n \"endTime\": - \"2023-03-15T11:02:03.7215519Z\"\n }" + string: "{\n \"name\": \"ce70d464-a3ef-794d-9f9f-fc6eec15f4f7\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T18:53:21.4701729Z\",\n \"\ + endTime\": \"2023-06-15T18:55:04.5821781Z\"\n }" headers: cache-control: - no-cache @@ -1001,7 +1152,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:02:30 GMT + - Thu, 15 Jun 2023 18:55:23 GMT expires: - '-1' pragma: @@ -1033,65 +1184,67 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest6mwousfrm-79a739\",\n \"fqdn\": \"cliakstest-clitest6mwousfrm-79a739-s99048q9.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest6mwousfrm-79a739-s99048q9.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": false,\n \"config\": - null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4faa6cff-0942-44bf-a9b3-3c5646221955\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestvw7rzo47z-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestvw7rzo47z-8ecadf-8a5zy4rl.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestvw7rzo47z-8ecadf-8a5zy4rl.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"openServiceMesh\": {\n \"enabled\": false,\n\ + \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/6f7f9b87-7781-459c-b052-bc29c0cff032\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4023' + - '4351' content-type: - application/json date: - - Wed, 15 Mar 2023 11:02:30 GMT + - Thu, 15 Jun 2023 18:55:24 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_enable_addon_with_azurekeyvaultsecretsprovider.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_enable_addon_with_azurekeyvaultsecretsprovider.yaml index 58f5f3b4c95..b4039c6135f 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_enable_addon_with_azurekeyvaultsecretsprovider.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_enable_addon_with_azurekeyvaultsecretsprovider.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:56:18 GMT + - Thu, 15 Jun 2023 18:55:31 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T10:56:18Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_enable_addon_with_azurekeyvaultsecretsprovider","date":"2023-06-15T18:55:28Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '385' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 10:56:17 GMT + - Thu, 15 Jun 2023 18:55:31 GMT expires: - '-1' pragma: @@ -88,19 +88,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestknuizp2qi-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestjwnqfyx7d-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -111,67 +110,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1459' + - '1751' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestknuizp2qi-79a739\",\n \"fqdn\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestjwnqfyx7d-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93bd1d01-4d6c-416d-8744-9c48bc4d9b92?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f033fb7e-f731-4607-afd0-817257755aa1?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3268' + - '3596' content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:22 GMT + - Thu, 15 Jun 2023 18:55:38 GMT expires: - '-1' pragma: @@ -183,7 +184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 201 message: Created @@ -201,14 +202,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93bd1d01-4d6c-416d-8744-9c48bc4d9b92?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f033fb7e-f731-4607-afd0-817257755aa1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"011dbd93-6c4d-6d41-8744-9c48bc4d9b92\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:22.1769139Z\"\n }" + string: "{\n \"name\": \"7efb33f0-31f7-0746-afd0-817257755aa1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:55:37.7516759Z\"\n }" headers: cache-control: - no-cache @@ -217,7 +218,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:56:52 GMT + - Thu, 15 Jun 2023 18:55:38 GMT expires: - '-1' pragma: @@ -249,14 +250,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93bd1d01-4d6c-416d-8744-9c48bc4d9b92?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f033fb7e-f731-4607-afd0-817257755aa1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"011dbd93-6c4d-6d41-8744-9c48bc4d9b92\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:22.1769139Z\"\n }" + string: "{\n \"name\": \"7efb33f0-31f7-0746-afd0-817257755aa1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:55:37.7516759Z\"\n }" headers: cache-control: - no-cache @@ -265,7 +266,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:57:21 GMT + - Thu, 15 Jun 2023 18:56:08 GMT expires: - '-1' pragma: @@ -297,14 +298,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93bd1d01-4d6c-416d-8744-9c48bc4d9b92?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f033fb7e-f731-4607-afd0-817257755aa1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"011dbd93-6c4d-6d41-8744-9c48bc4d9b92\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:22.1769139Z\"\n }" + string: "{\n \"name\": \"7efb33f0-31f7-0746-afd0-817257755aa1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:55:37.7516759Z\"\n }" headers: cache-control: - no-cache @@ -313,7 +314,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:57:51 GMT + - Thu, 15 Jun 2023 18:57:43 GMT expires: - '-1' pragma: @@ -345,14 +346,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93bd1d01-4d6c-416d-8744-9c48bc4d9b92?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f033fb7e-f731-4607-afd0-817257755aa1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"011dbd93-6c4d-6d41-8744-9c48bc4d9b92\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:22.1769139Z\"\n }" + string: "{\n \"name\": \"7efb33f0-31f7-0746-afd0-817257755aa1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:55:37.7516759Z\"\n }" headers: cache-control: - no-cache @@ -361,7 +362,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:58:21 GMT + - Thu, 15 Jun 2023 18:58:13 GMT expires: - '-1' pragma: @@ -393,14 +394,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93bd1d01-4d6c-416d-8744-9c48bc4d9b92?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f033fb7e-f731-4607-afd0-817257755aa1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"011dbd93-6c4d-6d41-8744-9c48bc4d9b92\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:22.1769139Z\"\n }" + string: "{\n \"name\": \"7efb33f0-31f7-0746-afd0-817257755aa1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:55:37.7516759Z\"\n }" headers: cache-control: - no-cache @@ -409,7 +410,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 10:58:52 GMT + - Thu, 15 Jun 2023 18:58:43 GMT expires: - '-1' pragma: @@ -441,23 +442,24 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93bd1d01-4d6c-416d-8744-9c48bc4d9b92?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f033fb7e-f731-4607-afd0-817257755aa1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"011dbd93-6c4d-6d41-8744-9c48bc4d9b92\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:22.1769139Z\"\n }" + string: "{\n \"name\": \"7efb33f0-31f7-0746-afd0-817257755aa1\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T18:55:37.7516759Z\",\n \"\ + endTime\": \"2023-06-15T18:59:10.1454935Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 10:59:22 GMT + - Thu, 15 Jun 2023 18:59:13 GMT expires: - '-1' pragma: @@ -489,23 +491,66 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93bd1d01-4d6c-416d-8744-9c48bc4d9b92?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"011dbd93-6c4d-6d41-8744-9c48bc4d9b92\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T10:56:22.1769139Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestjwnqfyx7d-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e60c0723-1d5c-478d-bdd4-cec701688fc5\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '4249' content-type: - application/json date: - - Wed, 15 Mar 2023 10:59:52 GMT + - Thu, 15 Jun 2023 18:59:14 GMT expires: - '-1' pragma: @@ -527,34 +572,76 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks enable-addons Connection: - keep-alive ParameterSetName: - - --resource-group --name --ssh-key-value + - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/93bd1d01-4d6c-416d-8744-9c48bc4d9b92?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"011dbd93-6c4d-6d41-8744-9c48bc4d9b92\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T10:56:22.1769139Z\",\n \"endTime\": - \"2023-03-15T11:00:02.9199864Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestjwnqfyx7d-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e60c0723-1d5c-478d-bdd4-cec701688fc5\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '170' + - '4249' content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:22 GMT + - Thu, 15 Jun 2023 18:59:15 GMT expires: - '-1' pragma: @@ -573,77 +660,111 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestjwnqfyx7d-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": + "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": + false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": + true, "config": {"enableSecretRotation": "false", "rotationPollInterval": "2m"}}}, + "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e60c0723-1d5c-478d-bdd4-cec701688fc5"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": + {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": + {"enabled": true}}, "workloadAutoScalerProfile": {}}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks enable-addons Connection: - keep-alive + Content-Length: + - '2988' + Content-Type: + - application/json ParameterSetName: - - --resource-group --name --ssh-key-value + - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestknuizp2qi-79a739\",\n \"fqdn\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/687afb0a-64a1-445e-b93f-1e8162e6ffcf\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestjwnqfyx7d-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"enableSecretRotation\": \"false\",\n\ + \ \"rotationPollInterval\": \"2m\"\n }\n }\n },\n \"nodeResourceGroup\"\ + : \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n\ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e60c0723-1d5c-478d-bdd4-cec701688fc5\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c9570b3-048d-498a-a8eb-08817203b459?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3921' + - '4439' content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:23 GMT + - Thu, 15 Jun 2023 18:59:20 GMT expires: - '-1' pragma: @@ -658,6 +779,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -665,7 +788,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -675,64 +798,23 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c9570b3-048d-498a-a8eb-08817203b459?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestknuizp2qi-79a739\",\n \"fqdn\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/687afb0a-64a1-445e-b93f-1e8162e6ffcf\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"b370957c-8d04-8a49-a8eb-08817203b459\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:59:20.2678583Z\"\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:23 GMT + - Thu, 15 Jun 2023 18:59:20 GMT expires: - '-1' pragma: @@ -751,108 +833,36 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestknuizp2qi-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": - "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": - "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": - false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": - false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": - {"enabled": true, "config": {"enableSecretRotation": "false", "rotationPollInterval": - "2m"}}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/687afb0a-64a1-445e-b93f-1e8162e6ffcf"}]}, - "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": - ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", - "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": - {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": - {"enabled": true}}, "workloadAutoScalerProfile": {}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks enable-addons Connection: - keep-alive - Content-Length: - - '2660' - Content-Type: - - application/json ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c9570b3-048d-498a-a8eb-08817203b459?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestknuizp2qi-79a739\",\n \"fqdn\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"false\",\n \"rotationPollInterval\": - \"2m\"\n }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/687afb0a-64a1-445e-b93f-1e8162e6ffcf\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"b370957c-8d04-8a49-a8eb-08817203b459\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:59:20.2678583Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63064a54-1293-4a0b-8157-bbce593f2964?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4111' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:26 GMT + - Thu, 15 Jun 2023 18:59:51 GMT expires: - '-1' pragma: @@ -867,8 +877,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1187' status: code: 200 message: OK @@ -886,14 +894,14 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63064a54-1293-4a0b-8157-bbce593f2964?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c9570b3-048d-498a-a8eb-08817203b459?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"544a0663-9312-0b4a-8157-bbce593f2964\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:26.9281833Z\"\n }" + string: "{\n \"name\": \"b370957c-8d04-8a49-a8eb-08817203b459\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:59:20.2678583Z\"\n }" headers: cache-control: - no-cache @@ -902,7 +910,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:56 GMT + - Thu, 15 Jun 2023 19:00:21 GMT expires: - '-1' pragma: @@ -934,14 +942,14 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63064a54-1293-4a0b-8157-bbce593f2964?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c9570b3-048d-498a-a8eb-08817203b459?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"544a0663-9312-0b4a-8157-bbce593f2964\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:26.9281833Z\"\n }" + string: "{\n \"name\": \"b370957c-8d04-8a49-a8eb-08817203b459\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T18:59:20.2678583Z\"\n }" headers: cache-control: - no-cache @@ -950,7 +958,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:01:26 GMT + - Thu, 15 Jun 2023 19:00:51 GMT expires: - '-1' pragma: @@ -982,23 +990,24 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63064a54-1293-4a0b-8157-bbce593f2964?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c9570b3-048d-498a-a8eb-08817203b459?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"544a0663-9312-0b4a-8157-bbce593f2964\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:26.9281833Z\"\n }" + string: "{\n \"name\": \"b370957c-8d04-8a49-a8eb-08817203b459\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T18:59:20.2678583Z\",\n \"\ + endTime\": \"2023-06-15T19:01:18.7736723Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 11:01:57 GMT + - Thu, 15 Jun 2023 19:01:22 GMT expires: - '-1' pragma: @@ -1030,23 +1039,72 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63064a54-1293-4a0b-8157-bbce593f2964?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"544a0663-9312-0b4a-8157-bbce593f2964\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:26.9281833Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestjwnqfyx7d-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"enableSecretRotation\": \"false\",\n\ + \ \"rotationPollInterval\": \"2m\"\n },\n \"identity\": {\n \ + \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e60c0723-1d5c-478d-bdd4-cec701688fc5\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '4818' content-type: - application/json date: - - Wed, 15 Mar 2023 11:02:26 GMT + - Thu, 15 Jun 2023 19:01:23 GMT expires: - '-1' pragma: @@ -1068,34 +1126,83 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks enable-addons + - aks update Connection: - keep-alive ParameterSetName: - - --addons --resource-group --name -o + - --resource-group --name --enable-secret-rotation --rotation-poll-interval + -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63064a54-1293-4a0b-8157-bbce593f2964?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"544a0663-9312-0b4a-8157-bbce593f2964\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:00:26.9281833Z\",\n \"endTime\": - \"2023-03-15T11:02:42.2189641Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestjwnqfyx7d-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"enableSecretRotation\": \"false\",\n\ + \ \"rotationPollInterval\": \"2m\"\n },\n \"identity\": {\n \ + \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e60c0723-1d5c-478d-bdd4-cec701688fc5\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '170' + - '4818' content-type: - application/json date: - - Wed, 15 Mar 2023 11:02:57 GMT + - Thu, 15 Jun 2023 19:01:26 GMT expires: - '-1' pragma: @@ -1114,81 +1221,112 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestjwnqfyx7d-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": + "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": + false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": true, "config": + {"enableSecretRotation": "true", "rotationPollInterval": "120s"}}}, "oidcIssuerProfile": + {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e60c0723-1d5c-478d-bdd4-cec701688fc5"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, + "workloadAutoScalerProfile": {}}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks enable-addons + - aks update Connection: - keep-alive + Content-Length: + - '2958' + Content-Type: + - application/json ParameterSetName: - - --addons --resource-group --name -o + - --resource-group --name --enable-secret-rotation --rotation-poll-interval + -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestknuizp2qi-79a739\",\n \"fqdn\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"false\",\n \"rotationPollInterval\": - \"2m\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/687afb0a-64a1-445e-b93f-1e8162e6ffcf\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestjwnqfyx7d-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"enableSecretRotation\": \"true\",\n \ + \ \"rotationPollInterval\": \"120s\"\n }\n }\n },\n \"nodeResourceGroup\"\ + : \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n\ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e60c0723-1d5c-478d-bdd4-cec701688fc5\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/acdafcd9-69aa-404a-a8e4-afdbab09da97?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4490' + - '4440' content-type: - application/json date: - - Wed, 15 Mar 2023 11:02:57 GMT + - Thu, 15 Jun 2023 19:01:31 GMT expires: - '-1' pragma: @@ -1203,6 +1341,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -1210,7 +1350,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1221,68 +1361,23 @@ interactions: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/acdafcd9-69aa-404a-a8e4-afdbab09da97?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestknuizp2qi-79a739\",\n \"fqdn\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"false\",\n \"rotationPollInterval\": - \"2m\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/687afb0a-64a1-445e-b93f-1e8162e6ffcf\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"d9fcdaac-aa69-4a40-a8e4-afdbab09da97\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:01:31.2370015Z\"\n }" headers: cache-control: - no-cache content-length: - - '4490' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:02:58 GMT + - Thu, 15 Jun 2023 19:01:31 GMT expires: - '-1' pragma: @@ -1301,109 +1396,37 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestknuizp2qi-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": - "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": - "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": - false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": - false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, - "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": true, "config": - {"enableSecretRotation": "true", "rotationPollInterval": "120s"}}}, "oidcIssuerProfile": - {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/687afb0a-64a1-445e-b93f-1e8162e6ffcf"}]}, - "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": - ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", - "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, - "workloadAutoScalerProfile": {}}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks update Connection: - keep-alive - Content-Length: - - '2630' - Content-Type: - - application/json ParameterSetName: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/acdafcd9-69aa-404a-a8e4-afdbab09da97?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestknuizp2qi-79a739\",\n \"fqdn\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"true\",\n \"rotationPollInterval\": - \"120s\"\n }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/687afb0a-64a1-445e-b93f-1e8162e6ffcf\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"d9fcdaac-aa69-4a40-a8e4-afdbab09da97\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:01:31.2370015Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c536b61-db29-4f70-8399-f12e7cd98c95?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4112' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:03:01 GMT + - Thu, 15 Jun 2023 19:02:02 GMT expires: - '-1' pragma: @@ -1418,8 +1441,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1192' status: code: 200 message: OK @@ -1438,23 +1459,23 @@ interactions: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c536b61-db29-4f70-8399-f12e7cd98c95?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/acdafcd9-69aa-404a-a8e4-afdbab09da97?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"616b537c-29db-704f-8399-f12e7cd98c95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:03:01.366269Z\"\n }" + string: "{\n \"name\": \"d9fcdaac-aa69-4a40-a8e4-afdbab09da97\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:01:31.2370015Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:03:31 GMT + - Thu, 15 Jun 2023 19:02:32 GMT expires: - '-1' pragma: @@ -1487,23 +1508,23 @@ interactions: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c536b61-db29-4f70-8399-f12e7cd98c95?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/acdafcd9-69aa-404a-a8e4-afdbab09da97?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"616b537c-29db-704f-8399-f12e7cd98c95\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:03:01.366269Z\"\n }" + string: "{\n \"name\": \"d9fcdaac-aa69-4a40-a8e4-afdbab09da97\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:01:31.2370015Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:04:01 GMT + - Thu, 15 Jun 2023 19:03:02 GMT expires: - '-1' pragma: @@ -1536,24 +1557,24 @@ interactions: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7c536b61-db29-4f70-8399-f12e7cd98c95?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/acdafcd9-69aa-404a-a8e4-afdbab09da97?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"616b537c-29db-704f-8399-f12e7cd98c95\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:03:01.366269Z\",\n \"endTime\": - \"2023-03-15T11:04:31.8175437Z\"\n }" + string: "{\n \"name\": \"d9fcdaac-aa69-4a40-a8e4-afdbab09da97\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T19:01:31.2370015Z\",\n \"\ + endTime\": \"2023-06-15T19:03:17.8961919Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 11:04:31 GMT + - Thu, 15 Jun 2023 19:03:33 GMT expires: - '-1' pragma: @@ -1586,68 +1607,72 @@ interactions: - --resource-group --name --enable-secret-rotation --rotation-poll-interval -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestknuizp2qi-79a739\",\n \"fqdn\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"true\",\n \"rotationPollInterval\": - \"120s\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/687afb0a-64a1-445e-b93f-1e8162e6ffcf\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestjwnqfyx7d-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"enableSecretRotation\": \"true\",\n \ + \ \"rotationPollInterval\": \"120s\"\n },\n \"identity\": {\n\ + \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e60c0723-1d5c-478d-bdd4-cec701688fc5\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4491' + - '4819' content-type: - application/json date: - - Wed, 15 Mar 2023 11:04:31 GMT + - Thu, 15 Jun 2023 19:03:33 GMT expires: - '-1' pragma: @@ -1679,68 +1704,72 @@ interactions: ParameterSetName: - --resource-group --name --disable-secret-rotation -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestknuizp2qi-79a739\",\n \"fqdn\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"true\",\n \"rotationPollInterval\": - \"120s\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/687afb0a-64a1-445e-b93f-1e8162e6ffcf\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestjwnqfyx7d-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"enableSecretRotation\": \"true\",\n \ + \ \"rotationPollInterval\": \"120s\"\n },\n \"identity\": {\n\ + \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e60c0723-1d5c-478d-bdd4-cec701688fc5\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4491' + - '4819' content-type: - application/json date: - - Wed, 15 Mar 2023 11:04:31 GMT + - Thu, 15 Jun 2023 19:03:36 GMT expires: - '-1' pragma: @@ -1759,25 +1788,25 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestknuizp2qi-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestjwnqfyx7d-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": true, "config": {"enableSecretRotation": "false", "rotationPollInterval": "120s"}}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/687afb0a-64a1-445e-b93f-1e8162e6ffcf"}]}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e60c0723-1d5c-478d-bdd4-cec701688fc5"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -1793,74 +1822,77 @@ interactions: Connection: - keep-alive Content-Length: - - '2631' + - '2959' Content-Type: - application/json ParameterSetName: - --resource-group --name --disable-secret-rotation -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestknuizp2qi-79a739\",\n \"fqdn\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"false\",\n \"rotationPollInterval\": - \"120s\"\n }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/687afb0a-64a1-445e-b93f-1e8162e6ffcf\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestjwnqfyx7d-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"enableSecretRotation\": \"false\",\n\ + \ \"rotationPollInterval\": \"120s\"\n }\n }\n },\n \"nodeResourceGroup\"\ + : \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n\ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e60c0723-1d5c-478d-bdd4-cec701688fc5\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3a6884c4-7d01-4e7f-9261-1b70b21090c1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7865c604-84b0-482a-b3d3-2d7d030f8738?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4113' + - '4441' content-type: - application/json date: - - Wed, 15 Mar 2023 11:04:35 GMT + - Thu, 15 Jun 2023 19:03:41 GMT expires: - '-1' pragma: @@ -1876,7 +1908,103 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --disable-secret-rotation -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7865c604-84b0-482a-b3d3-2d7d030f8738?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"04c66578-b084-2a48-b3d3-2d7d030f8738\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:03:41.4092878Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 19:03:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --disable-secret-rotation -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7865c604-84b0-482a-b3d3-2d7d030f8738?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"04c66578-b084-2a48-b3d3-2d7d030f8738\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:03:41.4092878Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 19:04:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -1894,14 +2022,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-secret-rotation -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3a6884c4-7d01-4e7f-9261-1b70b21090c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7865c604-84b0-482a-b3d3-2d7d030f8738?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c484683a-017d-7f4e-9261-1b70b21090c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:04:35.1947074Z\"\n }" + string: "{\n \"name\": \"04c66578-b084-2a48-b3d3-2d7d030f8738\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:03:41.4092878Z\"\n }" headers: cache-control: - no-cache @@ -1910,7 +2038,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:05:05 GMT + - Thu, 15 Jun 2023 19:04:42 GMT expires: - '-1' pragma: @@ -1942,14 +2070,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-secret-rotation -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3a6884c4-7d01-4e7f-9261-1b70b21090c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7865c604-84b0-482a-b3d3-2d7d030f8738?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c484683a-017d-7f4e-9261-1b70b21090c1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:04:35.1947074Z\"\n }" + string: "{\n \"name\": \"04c66578-b084-2a48-b3d3-2d7d030f8738\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:03:41.4092878Z\"\n }" headers: cache-control: - no-cache @@ -1958,7 +2086,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:05:35 GMT + - Thu, 15 Jun 2023 19:05:12 GMT expires: - '-1' pragma: @@ -1990,15 +2118,15 @@ interactions: ParameterSetName: - --resource-group --name --disable-secret-rotation -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3a6884c4-7d01-4e7f-9261-1b70b21090c1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7865c604-84b0-482a-b3d3-2d7d030f8738?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c484683a-017d-7f4e-9261-1b70b21090c1\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:04:35.1947074Z\",\n \"endTime\": - \"2023-03-15T11:06:00.8557673Z\"\n }" + string: "{\n \"name\": \"04c66578-b084-2a48-b3d3-2d7d030f8738\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T19:03:41.4092878Z\",\n \"\ + endTime\": \"2023-06-15T19:05:27.1585267Z\"\n }" headers: cache-control: - no-cache @@ -2007,7 +2135,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:06:05 GMT + - Thu, 15 Jun 2023 19:05:42 GMT expires: - '-1' pragma: @@ -2039,68 +2167,72 @@ interactions: ParameterSetName: - --resource-group --name --disable-secret-rotation -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestknuizp2qi-79a739\",\n \"fqdn\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"false\",\n \"rotationPollInterval\": - \"120s\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/687afb0a-64a1-445e-b93f-1e8162e6ffcf\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestjwnqfyx7d-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"enableSecretRotation\": \"false\",\n\ + \ \"rotationPollInterval\": \"120s\"\n },\n \"identity\": {\n\ + \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e60c0723-1d5c-478d-bdd4-cec701688fc5\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4492' + - '4820' content-type: - application/json date: - - Wed, 15 Mar 2023 11:06:05 GMT + - Thu, 15 Jun 2023 19:05:43 GMT expires: - '-1' pragma: @@ -2132,68 +2264,72 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestknuizp2qi-79a739\",\n \"fqdn\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"false\",\n \"rotationPollInterval\": - \"120s\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/687afb0a-64a1-445e-b93f-1e8162e6ffcf\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestjwnqfyx7d-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"enableSecretRotation\": \"false\",\n\ + \ \"rotationPollInterval\": \"120s\"\n },\n \"identity\": {\n\ + \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e60c0723-1d5c-478d-bdd4-cec701688fc5\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4492' + - '4820' content-type: - application/json date: - - Wed, 15 Mar 2023 11:06:06 GMT + - Thu, 15 Jun 2023 19:05:46 GMT expires: - '-1' pragma: @@ -2212,23 +2348,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestknuizp2qi-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestjwnqfyx7d-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": - {"enabled": false}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": - "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "networkProfile": - {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/687afb0a-64a1-445e-b93f-1e8162e6ffcf"}]}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": + false}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e60c0723-1d5c-478d-bdd4-cec701688fc5"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -2245,73 +2381,76 @@ interactions: Connection: - keep-alive Content-Length: - - '2586' + - '2914' Content-Type: - application/json ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestknuizp2qi-79a739\",\n \"fqdn\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": false,\n \"config\": - null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/687afb0a-64a1-445e-b93f-1e8162e6ffcf\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestjwnqfyx7d-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ + : false,\n \"config\": null\n }\n },\n \"nodeResourceGroup\": \"\ + MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e60c0723-1d5c-478d-bdd4-cec701688fc5\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/574f4dbf-d688-41ae-bc78-0bff62250e59?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/851fa44e-4306-491e-b2e9-df5c44eb8e07?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4034' + - '4362' content-type: - application/json date: - - Wed, 15 Mar 2023 11:06:09 GMT + - Thu, 15 Jun 2023 19:05:52 GMT expires: - '-1' pragma: @@ -2327,7 +2466,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' status: code: 200 message: OK @@ -2345,14 +2484,14 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/574f4dbf-d688-41ae-bc78-0bff62250e59?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/851fa44e-4306-491e-b2e9-df5c44eb8e07?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bf4d4f57-88d6-ae41-bc78-0bff62250e59\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:06:09.9135291Z\"\n }" + string: "{\n \"name\": \"4ea41f85-0643-1e49-b2e9-df5c44eb8e07\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:05:51.3314479Z\"\n }" headers: cache-control: - no-cache @@ -2361,7 +2500,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:06:39 GMT + - Thu, 15 Jun 2023 19:05:52 GMT expires: - '-1' pragma: @@ -2393,14 +2532,14 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/574f4dbf-d688-41ae-bc78-0bff62250e59?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/851fa44e-4306-491e-b2e9-df5c44eb8e07?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bf4d4f57-88d6-ae41-bc78-0bff62250e59\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:06:09.9135291Z\"\n }" + string: "{\n \"name\": \"4ea41f85-0643-1e49-b2e9-df5c44eb8e07\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:05:51.3314479Z\"\n }" headers: cache-control: - no-cache @@ -2409,7 +2548,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:07:09 GMT + - Thu, 15 Jun 2023 19:06:22 GMT expires: - '-1' pragma: @@ -2441,14 +2580,14 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/574f4dbf-d688-41ae-bc78-0bff62250e59?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/851fa44e-4306-491e-b2e9-df5c44eb8e07?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bf4d4f57-88d6-ae41-bc78-0bff62250e59\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:06:09.9135291Z\"\n }" + string: "{\n \"name\": \"4ea41f85-0643-1e49-b2e9-df5c44eb8e07\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:05:51.3314479Z\"\n }" headers: cache-control: - no-cache @@ -2457,7 +2596,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:07:39 GMT + - Thu, 15 Jun 2023 19:06:52 GMT expires: - '-1' pragma: @@ -2489,15 +2628,63 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/574f4dbf-d688-41ae-bc78-0bff62250e59?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/851fa44e-4306-491e-b2e9-df5c44eb8e07?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bf4d4f57-88d6-ae41-bc78-0bff62250e59\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:06:09.9135291Z\",\n \"endTime\": - \"2023-03-15T11:07:42.7109971Z\"\n }" + string: "{\n \"name\": \"4ea41f85-0643-1e49-b2e9-df5c44eb8e07\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:05:51.3314479Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 19:07:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks disable-addons + Connection: + - keep-alive + ParameterSetName: + - --addons --resource-group --name -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/851fa44e-4306-491e-b2e9-df5c44eb8e07?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4ea41f85-0643-1e49-b2e9-df5c44eb8e07\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T19:05:51.3314479Z\",\n \"\ + endTime\": \"2023-06-15T19:07:44.0914416Z\"\n }" headers: cache-control: - no-cache @@ -2506,7 +2693,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:10 GMT + - Thu, 15 Jun 2023 19:07:52 GMT expires: - '-1' pragma: @@ -2538,65 +2725,68 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestknuizp2qi-79a739\",\n \"fqdn\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": false,\n \"config\": - null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/687afb0a-64a1-445e-b93f-1e8162e6ffcf\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestjwnqfyx7d-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ + : false,\n \"config\": null\n }\n },\n \"nodeResourceGroup\": \"\ + MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e60c0723-1d5c-478d-bdd4-cec701688fc5\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4036' + - '4364' content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:10 GMT + - Thu, 15 Jun 2023 19:07:53 GMT expires: - '-1' pragma: @@ -2629,65 +2819,68 @@ interactions: - --addons --enable-secret-rotation --rotation-poll-interval --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestknuizp2qi-79a739\",\n \"fqdn\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": false,\n \"config\": - null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/687afb0a-64a1-445e-b93f-1e8162e6ffcf\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestjwnqfyx7d-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ + : false,\n \"config\": null\n }\n },\n \"nodeResourceGroup\": \"\ + MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n \ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e60c0723-1d5c-478d-bdd4-cec701688fc5\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4036' + - '4364' content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:11 GMT + - Thu, 15 Jun 2023 19:07:55 GMT expires: - '-1' pragma: @@ -2706,24 +2899,24 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestknuizp2qi-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestjwnqfyx7d-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": - {"enabled": true, "config": {"enableSecretRotation": "true", "rotationPollInterval": - "1h"}}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/687afb0a-64a1-445e-b93f-1e8162e6ffcf"}]}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"azureKeyvaultSecretsProvider": {"enabled": + true, "config": {"enableSecretRotation": "true", "rotationPollInterval": "1h"}}}, + "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e60c0723-1d5c-478d-bdd4-cec701688fc5"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -2740,75 +2933,78 @@ interactions: Connection: - keep-alive Content-Length: - - '2659' + - '2987' Content-Type: - application/json ParameterSetName: - --addons --enable-secret-rotation --rotation-poll-interval --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestknuizp2qi-79a739\",\n \"fqdn\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"true\",\n \"rotationPollInterval\": - \"1h\"\n }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/687afb0a-64a1-445e-b93f-1e8162e6ffcf\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestjwnqfyx7d-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"enableSecretRotation\": \"true\",\n \ + \ \"rotationPollInterval\": \"1h\"\n }\n }\n },\n \"nodeResourceGroup\"\ + : \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n\ + \ \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \ + \ \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e60c0723-1d5c-478d-bdd4-cec701688fc5\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/461c59df-8793-4672-9886-905773c6f775?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9ae5736-84d4-4350-8133-c3bbf99f9506?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4110' + - '4438' content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:14 GMT + - Thu, 15 Jun 2023 19:08:00 GMT expires: - '-1' pragma: @@ -2824,7 +3020,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 200 message: OK @@ -2843,23 +3039,23 @@ interactions: - --addons --enable-secret-rotation --rotation-poll-interval --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/461c59df-8793-4672-9886-905773c6f775?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9ae5736-84d4-4350-8133-c3bbf99f9506?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"df591c46-9387-7246-9886-905773c6f775\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:08:14.8359746Z\"\n }" + string: "{\n \"name\": \"3657aeb9-d484-5043-8133-c3bbf99f9506\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:08:00.566071Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:44 GMT + - Thu, 15 Jun 2023 19:08:01 GMT expires: - '-1' pragma: @@ -2892,23 +3088,23 @@ interactions: - --addons --enable-secret-rotation --rotation-poll-interval --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/461c59df-8793-4672-9886-905773c6f775?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9ae5736-84d4-4350-8133-c3bbf99f9506?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"df591c46-9387-7246-9886-905773c6f775\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:08:14.8359746Z\"\n }" + string: "{\n \"name\": \"3657aeb9-d484-5043-8133-c3bbf99f9506\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:08:00.566071Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:09:15 GMT + - Thu, 15 Jun 2023 19:08:31 GMT expires: - '-1' pragma: @@ -2941,23 +3137,23 @@ interactions: - --addons --enable-secret-rotation --rotation-poll-interval --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/461c59df-8793-4672-9886-905773c6f775?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9ae5736-84d4-4350-8133-c3bbf99f9506?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"df591c46-9387-7246-9886-905773c6f775\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:08:14.8359746Z\"\n }" + string: "{\n \"name\": \"3657aeb9-d484-5043-8133-c3bbf99f9506\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:08:00.566071Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:09:44 GMT + - Thu, 15 Jun 2023 19:09:01 GMT expires: - '-1' pragma: @@ -2990,24 +3186,122 @@ interactions: - --addons --enable-secret-rotation --rotation-poll-interval --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/461c59df-8793-4672-9886-905773c6f775?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9ae5736-84d4-4350-8133-c3bbf99f9506?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"df591c46-9387-7246-9886-905773c6f775\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:08:14.8359746Z\",\n \"endTime\": - \"2023-03-15T11:09:54.1373536Z\"\n }" + string: "{\n \"name\": \"3657aeb9-d484-5043-8133-c3bbf99f9506\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:08:00.566071Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '125' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 19:09:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - --addons --enable-secret-rotation --rotation-poll-interval --resource-group + --name -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9ae5736-84d4-4350-8133-c3bbf99f9506?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"3657aeb9-d484-5043-8133-c3bbf99f9506\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:08:00.566071Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 19:10:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - --addons --enable-secret-rotation --rotation-poll-interval --resource-group + --name -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9ae5736-84d4-4350-8133-c3bbf99f9506?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"3657aeb9-d484-5043-8133-c3bbf99f9506\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T19:08:00.566071Z\",\n \"\ + endTime\": \"2023-06-15T19:10:06.0452572Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' content-type: - application/json date: - - Wed, 15 Mar 2023 11:10:14 GMT + - Thu, 15 Jun 2023 19:10:32 GMT expires: - '-1' pragma: @@ -3040,68 +3334,72 @@ interactions: - --addons --enable-secret-rotation --rotation-poll-interval --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestknuizp2qi-79a739\",\n \"fqdn\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestknuizp2qi-79a739-73irttfd.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\": true,\n \"config\": - {\n \"enableSecretRotation\": \"true\",\n \"rotationPollInterval\": - \"1h\"\n },\n \"identity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/687afb0a-64a1-445e-b93f-1e8162e6ffcf\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestjwnqfyx7d-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestjwnqfyx7d-8ecadf-21lgjzil.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"azureKeyvaultSecretsProvider\": {\n \"enabled\"\ + : true,\n \"config\": {\n \"enableSecretRotation\": \"true\",\n \ + \ \"rotationPollInterval\": \"1h\"\n },\n \"identity\": {\n \ + \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azurekeyvaultsecretsprovider-cliakstest000002\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e60c0723-1d5c-478d-bdd4-cec701688fc5\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4489' + - '4817' content-type: - application/json date: - - Wed, 15 Mar 2023 11:10:15 GMT + - Thu, 15 Jun 2023 19:10:33 GMT expires: - '-1' pragma: @@ -3135,8 +3433,8 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -3144,17 +3442,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/abb9fd54-46a9-4600-a0e1-65f8ca33f4dd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/eec45d73-bbc5-4cec-bb34-88e1d25d2f38?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:10:16 GMT + - Thu, 15 Jun 2023 19:10:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/abb9fd54-46a9-4600-a0e1-65f8ca33f4dd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/eec45d73-bbc5-4cec-bb34-88e1d25d2f38?api-version=2016-03-30 pragma: - no-cache server: @@ -3164,7 +3462,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14993' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_enable_addons_confcom_addon.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_enable_addons_confcom_addon.yaml index e1c76e59b30..d8054fd14e1 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_enable_addons_confcom_addon.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_enable_addons_confcom_addon.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:08:53 GMT + - Thu, 15 Jun 2023 19:10:39 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T11:08:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_enable_addons_confcom_addon","date":"2023-06-15T19:10:37Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '366' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:08:53 GMT + - Thu, 15 Jun 2023 19:10:40 GMT expires: - '-1' pragma: @@ -88,19 +88,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestrg5utdc22-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestg2upyah4k-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -111,67 +110,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1459' + - '1751' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestrg5utdc22-79a739\",\n \"fqdn\": \"cliakstest-clitestrg5utdc22-79a739-yy9p62cn.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestrg5utdc22-79a739-yy9p62cn.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestg2upyah4k-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestg2upyah4k-8ecadf-m3qktr6r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestg2upyah4k-8ecadf-m3qktr6r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56b03cb5-9904-4749-bb81-2f17285ee0a8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f2c49f9-8d8a-4790-979b-0f409f927605?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3268' + - '3596' content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:56 GMT + - Thu, 15 Jun 2023 19:10:47 GMT expires: - '-1' pragma: @@ -183,7 +184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -201,14 +202,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56b03cb5-9904-4749-bb81-2f17285ee0a8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f2c49f9-8d8a-4790-979b-0f409f927605?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b53cb056-0499-4947-bb81-2f17285ee0a8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:08:57.0860943Z\"\n }" + string: "{\n \"name\": \"f9492c7f-8a8d-9047-979b-0f409f927605\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:10:46.6914227Z\"\n }" headers: cache-control: - no-cache @@ -217,7 +218,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:09:26 GMT + - Thu, 15 Jun 2023 19:10:47 GMT expires: - '-1' pragma: @@ -249,14 +250,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56b03cb5-9904-4749-bb81-2f17285ee0a8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f2c49f9-8d8a-4790-979b-0f409f927605?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b53cb056-0499-4947-bb81-2f17285ee0a8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:08:57.0860943Z\"\n }" + string: "{\n \"name\": \"f9492c7f-8a8d-9047-979b-0f409f927605\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:10:46.6914227Z\"\n }" headers: cache-control: - no-cache @@ -265,7 +266,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:09:56 GMT + - Thu, 15 Jun 2023 19:11:17 GMT expires: - '-1' pragma: @@ -297,14 +298,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56b03cb5-9904-4749-bb81-2f17285ee0a8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f2c49f9-8d8a-4790-979b-0f409f927605?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b53cb056-0499-4947-bb81-2f17285ee0a8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:08:57.0860943Z\"\n }" + string: "{\n \"name\": \"f9492c7f-8a8d-9047-979b-0f409f927605\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:10:46.6914227Z\"\n }" headers: cache-control: - no-cache @@ -313,7 +314,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:10:27 GMT + - Thu, 15 Jun 2023 19:11:47 GMT expires: - '-1' pragma: @@ -345,14 +346,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56b03cb5-9904-4749-bb81-2f17285ee0a8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f2c49f9-8d8a-4790-979b-0f409f927605?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b53cb056-0499-4947-bb81-2f17285ee0a8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:08:57.0860943Z\"\n }" + string: "{\n \"name\": \"f9492c7f-8a8d-9047-979b-0f409f927605\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:10:46.6914227Z\"\n }" headers: cache-control: - no-cache @@ -361,7 +362,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:10:57 GMT + - Thu, 15 Jun 2023 19:12:17 GMT expires: - '-1' pragma: @@ -393,14 +394,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56b03cb5-9904-4749-bb81-2f17285ee0a8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f2c49f9-8d8a-4790-979b-0f409f927605?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b53cb056-0499-4947-bb81-2f17285ee0a8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:08:57.0860943Z\"\n }" + string: "{\n \"name\": \"f9492c7f-8a8d-9047-979b-0f409f927605\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:10:46.6914227Z\"\n }" headers: cache-control: - no-cache @@ -409,7 +410,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:11:27 GMT + - Thu, 15 Jun 2023 19:12:48 GMT expires: - '-1' pragma: @@ -441,14 +442,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56b03cb5-9904-4749-bb81-2f17285ee0a8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f2c49f9-8d8a-4790-979b-0f409f927605?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b53cb056-0499-4947-bb81-2f17285ee0a8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:08:57.0860943Z\"\n }" + string: "{\n \"name\": \"f9492c7f-8a8d-9047-979b-0f409f927605\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:10:46.6914227Z\"\n }" headers: cache-control: - no-cache @@ -457,7 +458,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:11:57 GMT + - Thu, 15 Jun 2023 19:13:17 GMT expires: - '-1' pragma: @@ -489,15 +490,111 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/56b03cb5-9904-4749-bb81-2f17285ee0a8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f2c49f9-8d8a-4790-979b-0f409f927605?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b53cb056-0499-4947-bb81-2f17285ee0a8\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:08:57.0860943Z\",\n \"endTime\": - \"2023-03-15T11:12:23.6370351Z\"\n }" + string: "{\n \"name\": \"f9492c7f-8a8d-9047-979b-0f409f927605\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:10:46.6914227Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 19:13:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f2c49f9-8d8a-4790-979b-0f409f927605?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f9492c7f-8a8d-9047-979b-0f409f927605\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:10:46.6914227Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 19:14:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f2c49f9-8d8a-4790-979b-0f409f927605?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f9492c7f-8a8d-9047-979b-0f409f927605\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T19:10:46.6914227Z\",\n \"\ + endTime\": \"2023-06-15T19:14:23.0233011Z\"\n }" headers: cache-control: - no-cache @@ -506,7 +603,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:12:26 GMT + - Thu, 15 Jun 2023 19:14:48 GMT expires: - '-1' pragma: @@ -538,64 +635,66 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestrg5utdc22-79a739\",\n \"fqdn\": \"cliakstest-clitestrg5utdc22-79a739-yy9p62cn.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestrg5utdc22-79a739-yy9p62cn.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c8ed3814-0f74-4080-9155-164be23d421b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestg2upyah4k-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestg2upyah4k-8ecadf-m3qktr6r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestg2upyah4k-8ecadf-m3qktr6r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8c7b7bb6-f943-4d4f-959a-5d00572f987c\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4249' content-type: - application/json date: - - Wed, 15 Mar 2023 11:12:27 GMT + - Thu, 15 Jun 2023 19:14:49 GMT expires: - '-1' pragma: @@ -627,64 +726,66 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestrg5utdc22-79a739\",\n \"fqdn\": \"cliakstest-clitestrg5utdc22-79a739-yy9p62cn.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestrg5utdc22-79a739-yy9p62cn.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c8ed3814-0f74-4080-9155-164be23d421b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestg2upyah4k-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestg2upyah4k-8ecadf-m3qktr6r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestg2upyah4k-8ecadf-m3qktr6r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8c7b7bb6-f943-4d4f-959a-5d00572f987c\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4249' content-type: - application/json date: - - Wed, 15 Mar 2023 11:12:28 GMT + - Thu, 15 Jun 2023 19:14:51 GMT expires: - '-1' pragma: @@ -703,24 +804,24 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestrg5utdc22-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestg2upyah4k-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": - {"enabled": true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "oidcIssuerProfile": + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"ACCSGXDevicePlugin": {"enabled": + true, "config": {"ACCSGXQuoteHelperEnabled": "false"}}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c8ed3814-0f74-4080-9155-164be23d421b"}]}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8c7b7bb6-f943-4d4f-959a-5d00572f987c"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -737,74 +838,76 @@ interactions: Connection: - keep-alive Content-Length: - - '2624' + - '2952' Content-Type: - application/json ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestrg5utdc22-79a739\",\n \"fqdn\": \"cliakstest-clitestrg5utdc22-79a739-yy9p62cn.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestrg5utdc22-79a739-yy9p62cn.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": - {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n }\n }\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c8ed3814-0f74-4080-9155-164be23d421b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestg2upyah4k-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestg2upyah4k-8ecadf-m3qktr6r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestg2upyah4k-8ecadf-m3qktr6r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n\ + \ \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n }\n\ + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8c7b7bb6-f943-4d4f-959a-5d00572f987c\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af904018-8c21-40ec-beaa-3263bf5a5f9f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0253cd32-75b2-4d39-a179-d8f7ac76bfa6?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4069' + - '4397' content-type: - application/json date: - - Wed, 15 Mar 2023 11:12:31 GMT + - Thu, 15 Jun 2023 19:14:56 GMT expires: - '-1' pragma: @@ -820,7 +923,151 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - --addons --resource-group --name -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0253cd32-75b2-4d39-a179-d8f7ac76bfa6?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"32cd5302-b275-394d-a179-d8f7ac76bfa6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:14:55.8482128Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 19:14:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - --addons --resource-group --name -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0253cd32-75b2-4d39-a179-d8f7ac76bfa6?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"32cd5302-b275-394d-a179-d8f7ac76bfa6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:14:55.8482128Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 19:15:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - --addons --resource-group --name -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0253cd32-75b2-4d39-a179-d8f7ac76bfa6?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"32cd5302-b275-394d-a179-d8f7ac76bfa6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:14:55.8482128Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 19:15:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -838,14 +1085,14 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af904018-8c21-40ec-beaa-3263bf5a5f9f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0253cd32-75b2-4d39-a179-d8f7ac76bfa6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"184090af-218c-ec40-beaa-3263bf5a5f9f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:31.3837073Z\"\n }" + string: "{\n \"name\": \"32cd5302-b275-394d-a179-d8f7ac76bfa6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:14:55.8482128Z\"\n }" headers: cache-control: - no-cache @@ -854,7 +1101,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:13:01 GMT + - Thu, 15 Jun 2023 19:16:26 GMT expires: - '-1' pragma: @@ -886,14 +1133,14 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af904018-8c21-40ec-beaa-3263bf5a5f9f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0253cd32-75b2-4d39-a179-d8f7ac76bfa6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"184090af-218c-ec40-beaa-3263bf5a5f9f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:31.3837073Z\"\n }" + string: "{\n \"name\": \"32cd5302-b275-394d-a179-d8f7ac76bfa6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:14:55.8482128Z\"\n }" headers: cache-control: - no-cache @@ -902,7 +1149,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:13:31 GMT + - Thu, 15 Jun 2023 19:16:57 GMT expires: - '-1' pragma: @@ -934,15 +1181,15 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af904018-8c21-40ec-beaa-3263bf5a5f9f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0253cd32-75b2-4d39-a179-d8f7ac76bfa6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"184090af-218c-ec40-beaa-3263bf5a5f9f\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:12:31.3837073Z\",\n \"endTime\": - \"2023-03-15T11:13:55.9726834Z\"\n }" + string: "{\n \"name\": \"32cd5302-b275-394d-a179-d8f7ac76bfa6\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T19:14:55.8482128Z\",\n \"\ + endTime\": \"2023-06-15T19:17:09.8133378Z\"\n }" headers: cache-control: - no-cache @@ -951,7 +1198,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:14:01 GMT + - Thu, 15 Jun 2023 19:17:27 GMT expires: - '-1' pragma: @@ -983,66 +1230,68 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestrg5utdc22-79a739\",\n \"fqdn\": \"cliakstest-clitestrg5utdc22-79a739-yy9p62cn.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestrg5utdc22-79a739-yy9p62cn.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n \"config\": - {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n }\n }\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c8ed3814-0f74-4080-9155-164be23d421b\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestg2upyah4k-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestg2upyah4k-8ecadf-m3qktr6r.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestg2upyah4k-8ecadf-m3qktr6r.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"ACCSGXDevicePlugin\": {\n \"enabled\": true,\n\ + \ \"config\": {\n \"ACCSGXQuoteHelperEnabled\": \"false\"\n }\n\ + \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/8c7b7bb6-f943-4d4f-959a-5d00572f987c\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4071' + - '4399' content-type: - application/json date: - - Wed, 15 Mar 2023 11:14:02 GMT + - Thu, 15 Jun 2023 19:17:28 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_enable_openservicemesh_addon.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_enable_openservicemesh_addon.yaml index 089da5c61b9..7b0d079e991 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_enable_openservicemesh_addon.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_enable_openservicemesh_addon.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:16:52 GMT + - Thu, 15 Jun 2023 19:17:33 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T11:16:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_enable_openservicemesh_addon","date":"2023-06-15T19:17:31Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '367' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:16:52 GMT + - Thu, 15 Jun 2023 19:17:33 GMT expires: - '-1' pragma: @@ -88,19 +88,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesthlt5y7vbv-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestaxitz4hug-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -111,67 +110,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1459' + - '1751' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthlt5y7vbv-79a739\",\n \"fqdn\": \"cliakstest-clitesthlt5y7vbv-79a739-s53vymzy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthlt5y7vbv-79a739-s53vymzy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestaxitz4hug-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestaxitz4hug-8ecadf-sz2d4fes.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestaxitz4hug-8ecadf-sz2d4fes.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c7cc9cb-0fb8-423f-af82-f0054e2d9919?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/df5c0d8e-dfe5-45a9-8786-c5ac98ddfc4e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3268' + - '3596' content-type: - application/json date: - - Wed, 15 Mar 2023 11:16:55 GMT + - Thu, 15 Jun 2023 19:17:41 GMT expires: - '-1' pragma: @@ -183,7 +184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 201 message: Created @@ -201,14 +202,62 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/df5c0d8e-dfe5-45a9-8786-c5ac98ddfc4e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8e0d5cdf-e5df-a945-8786-c5ac98ddfc4e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:17:40.6455305Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 19:17:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity --ssh-key-value -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c7cc9cb-0fb8-423f-af82-f0054e2d9919?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/df5c0d8e-dfe5-45a9-8786-c5ac98ddfc4e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cbc97c2c-b80f-3f42-af82-f0054e2d9919\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:16:56.2602545Z\"\n }" + string: "{\n \"name\": \"8e0d5cdf-e5df-a945-8786-c5ac98ddfc4e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:17:40.6455305Z\"\n }" headers: cache-control: - no-cache @@ -217,7 +266,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:17:25 GMT + - Thu, 15 Jun 2023 19:18:11 GMT expires: - '-1' pragma: @@ -249,14 +298,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c7cc9cb-0fb8-423f-af82-f0054e2d9919?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/df5c0d8e-dfe5-45a9-8786-c5ac98ddfc4e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cbc97c2c-b80f-3f42-af82-f0054e2d9919\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:16:56.2602545Z\"\n }" + string: "{\n \"name\": \"8e0d5cdf-e5df-a945-8786-c5ac98ddfc4e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:17:40.6455305Z\"\n }" headers: cache-control: - no-cache @@ -265,7 +314,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:17:56 GMT + - Thu, 15 Jun 2023 19:18:41 GMT expires: - '-1' pragma: @@ -297,14 +346,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c7cc9cb-0fb8-423f-af82-f0054e2d9919?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/df5c0d8e-dfe5-45a9-8786-c5ac98ddfc4e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cbc97c2c-b80f-3f42-af82-f0054e2d9919\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:16:56.2602545Z\"\n }" + string: "{\n \"name\": \"8e0d5cdf-e5df-a945-8786-c5ac98ddfc4e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:17:40.6455305Z\"\n }" headers: cache-control: - no-cache @@ -313,7 +362,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:18:25 GMT + - Thu, 15 Jun 2023 19:19:11 GMT expires: - '-1' pragma: @@ -345,14 +394,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c7cc9cb-0fb8-423f-af82-f0054e2d9919?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/df5c0d8e-dfe5-45a9-8786-c5ac98ddfc4e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cbc97c2c-b80f-3f42-af82-f0054e2d9919\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:16:56.2602545Z\"\n }" + string: "{\n \"name\": \"8e0d5cdf-e5df-a945-8786-c5ac98ddfc4e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:17:40.6455305Z\"\n }" headers: cache-control: - no-cache @@ -361,7 +410,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:18:56 GMT + - Thu, 15 Jun 2023 19:19:41 GMT expires: - '-1' pragma: @@ -393,14 +442,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c7cc9cb-0fb8-423f-af82-f0054e2d9919?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/df5c0d8e-dfe5-45a9-8786-c5ac98ddfc4e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cbc97c2c-b80f-3f42-af82-f0054e2d9919\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:16:56.2602545Z\"\n }" + string: "{\n \"name\": \"8e0d5cdf-e5df-a945-8786-c5ac98ddfc4e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:17:40.6455305Z\"\n }" headers: cache-control: - no-cache @@ -409,7 +458,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:19:26 GMT + - Thu, 15 Jun 2023 19:20:12 GMT expires: - '-1' pragma: @@ -441,14 +490,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c7cc9cb-0fb8-423f-af82-f0054e2d9919?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/df5c0d8e-dfe5-45a9-8786-c5ac98ddfc4e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cbc97c2c-b80f-3f42-af82-f0054e2d9919\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:16:56.2602545Z\"\n }" + string: "{\n \"name\": \"8e0d5cdf-e5df-a945-8786-c5ac98ddfc4e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:17:40.6455305Z\"\n }" headers: cache-control: - no-cache @@ -457,7 +506,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:19:56 GMT + - Thu, 15 Jun 2023 19:20:42 GMT expires: - '-1' pragma: @@ -489,14 +538,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c7cc9cb-0fb8-423f-af82-f0054e2d9919?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/df5c0d8e-dfe5-45a9-8786-c5ac98ddfc4e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cbc97c2c-b80f-3f42-af82-f0054e2d9919\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:16:56.2602545Z\"\n }" + string: "{\n \"name\": \"8e0d5cdf-e5df-a945-8786-c5ac98ddfc4e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:17:40.6455305Z\"\n }" headers: cache-control: - no-cache @@ -505,7 +554,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:26 GMT + - Thu, 15 Jun 2023 19:21:12 GMT expires: - '-1' pragma: @@ -537,15 +586,15 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2c7cc9cb-0fb8-423f-af82-f0054e2d9919?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/df5c0d8e-dfe5-45a9-8786-c5ac98ddfc4e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cbc97c2c-b80f-3f42-af82-f0054e2d9919\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:16:56.2602545Z\",\n \"endTime\": - \"2023-03-15T11:20:45.3137018Z\"\n }" + string: "{\n \"name\": \"8e0d5cdf-e5df-a945-8786-c5ac98ddfc4e\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T19:17:40.6455305Z\",\n \"\ + endTime\": \"2023-06-15T19:21:21.8127887Z\"\n }" headers: cache-control: - no-cache @@ -554,7 +603,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:56 GMT + - Thu, 15 Jun 2023 19:21:42 GMT expires: - '-1' pragma: @@ -586,64 +635,66 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthlt5y7vbv-79a739\",\n \"fqdn\": \"cliakstest-clitesthlt5y7vbv-79a739-s53vymzy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthlt5y7vbv-79a739-s53vymzy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c73a33c6-9c18-4ef7-b60c-b84d8a743033\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestaxitz4hug-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestaxitz4hug-8ecadf-sz2d4fes.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestaxitz4hug-8ecadf-sz2d4fes.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/322be563-1b3b-4a9d-975e-5c6e5895b6e8\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4249' content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:57 GMT + - Thu, 15 Jun 2023 19:21:43 GMT expires: - '-1' pragma: @@ -675,64 +726,66 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthlt5y7vbv-79a739\",\n \"fqdn\": \"cliakstest-clitesthlt5y7vbv-79a739-s53vymzy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthlt5y7vbv-79a739-s53vymzy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c73a33c6-9c18-4ef7-b60c-b84d8a743033\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestaxitz4hug-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestaxitz4hug-8ecadf-sz2d4fes.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestaxitz4hug-8ecadf-sz2d4fes.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/322be563-1b3b-4a9d-975e-5c6e5895b6e8\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4249' content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:57 GMT + - Thu, 15 Jun 2023 19:21:44 GMT expires: - '-1' pragma: @@ -751,23 +804,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitesthlt5y7vbv-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestaxitz4hug-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": - {"enabled": true, "config": {}}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": - "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "networkProfile": - {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c73a33c6-9c18-4ef7-b60c-b84d8a743033"}]}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {"openServiceMesh": {"enabled": true, + "config": {}}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": + "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "supportPlan": + "KubernetesOfficial", "networkProfile": {"networkPlugin": "kubenet", "podCidr": + "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": + {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/322be563-1b3b-4a9d-975e-5c6e5895b6e8"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -784,73 +837,75 @@ interactions: Connection: - keep-alive Content-Length: - - '2586' + - '2914' Content-Type: - application/json ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthlt5y7vbv-79a739\",\n \"fqdn\": \"cliakstest-clitesthlt5y7vbv-79a739-s53vymzy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthlt5y7vbv-79a739-s53vymzy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null\n - \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c73a33c6-9c18-4ef7-b60c-b84d8a743033\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestaxitz4hug-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestaxitz4hug-8ecadf-sz2d4fes.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestaxitz4hug-8ecadf-sz2d4fes.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"openServiceMesh\": {\n \"enabled\": true,\n\ + \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/322be563-1b3b-4a9d-975e-5c6e5895b6e8\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/386d1f79-5eb1-432d-ae25-9978a7a62a28?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b476745e-c469-46a4-9316-dd1bd5184ed3?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4020' + - '4348' content-type: - application/json date: - - Wed, 15 Mar 2023 11:21:00 GMT + - Thu, 15 Jun 2023 19:21:50 GMT expires: - '-1' pragma: @@ -866,7 +921,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 200 message: OK @@ -884,23 +939,23 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/386d1f79-5eb1-432d-ae25-9978a7a62a28?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b476745e-c469-46a4-9316-dd1bd5184ed3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"791f6d38-b15e-2d43-ae25-9978a7a62a28\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:21:00.917436Z\"\n }" + string: "{\n \"name\": \"5e7476b4-69c4-a446-9316-dd1bd5184ed3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:21:49.7867698Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:21:30 GMT + - Thu, 15 Jun 2023 19:21:50 GMT expires: - '-1' pragma: @@ -932,23 +987,23 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/386d1f79-5eb1-432d-ae25-9978a7a62a28?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b476745e-c469-46a4-9316-dd1bd5184ed3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"791f6d38-b15e-2d43-ae25-9978a7a62a28\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:21:00.917436Z\"\n }" + string: "{\n \"name\": \"5e7476b4-69c4-a446-9316-dd1bd5184ed3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:21:49.7867698Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:00 GMT + - Thu, 15 Jun 2023 19:22:21 GMT expires: - '-1' pragma: @@ -980,24 +1035,120 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/386d1f79-5eb1-432d-ae25-9978a7a62a28?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b476745e-c469-46a4-9316-dd1bd5184ed3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"791f6d38-b15e-2d43-ae25-9978a7a62a28\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:21:00.917436Z\",\n \"endTime\": - \"2023-03-15T11:22:30.2168913Z\"\n }" + string: "{\n \"name\": \"5e7476b4-69c4-a446-9316-dd1bd5184ed3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:21:49.7867698Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 19:22:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - --addons --resource-group --name -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b476745e-c469-46a4-9316-dd1bd5184ed3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5e7476b4-69c4-a446-9316-dd1bd5184ed3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:21:49.7867698Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 19:23:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks enable-addons + Connection: + - keep-alive + ParameterSetName: + - --addons --resource-group --name -o + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b476745e-c469-46a4-9316-dd1bd5184ed3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"5e7476b4-69c4-a446-9316-dd1bd5184ed3\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T19:21:49.7867698Z\",\n \"\ + endTime\": \"2023-06-15T19:23:31.5692409Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:31 GMT + - Thu, 15 Jun 2023 19:23:51 GMT expires: - '-1' pragma: @@ -1029,65 +1180,67 @@ interactions: ParameterSetName: - --addons --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesthlt5y7vbv-79a739\",\n \"fqdn\": \"cliakstest-clitesthlt5y7vbv-79a739-s53vymzy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesthlt5y7vbv-79a739-s53vymzy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"addonProfiles\": - {\n \"openServiceMesh\": {\n \"enabled\": true,\n \"config\": null\n - \ }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/c73a33c6-9c18-4ef7-b60c-b84d8a743033\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestaxitz4hug-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestaxitz4hug-8ecadf-sz2d4fes.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestaxitz4hug-8ecadf-sz2d4fes.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"addonProfiles\": {\n \"openServiceMesh\": {\n \"enabled\": true,\n\ + \ \"config\": null\n }\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/322be563-1b3b-4a9d-975e-5c6e5895b6e8\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4022' + - '4350' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:31 GMT + - Thu, 15 Jun 2023 19:23:52 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_enable_utlra_ssd.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_enable_utlra_ssd.yaml index 49536abea83..d6b51721b30 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_enable_utlra_ssd.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_enable_utlra_ssd.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:12:20 GMT + - Thu, 15 Jun 2023 19:23:58 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T11:12:19Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_aks_enable_utlra_ssd","date":"2023-06-15T19:23:57Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '304' + - '354' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:12:20 GMT + - Thu, 15 Jun 2023 19:23:58 GMT expires: - '-1' pragma: @@ -88,7 +88,7 @@ interactions: message: OK - request: body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest7xssac2jl-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestokyyfhmzk-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_D2s_v3", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "availabilityZones": @@ -96,12 +96,11 @@ interactions: "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": true, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": - {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -112,68 +111,71 @@ interactions: Connection: - keep-alive Content-Length: - - '1495' + - '1787' Content-Type: - application/json ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest7xssac2jl-79a739\",\n \"fqdn\": \"cliakstest-clitest7xssac2jl-79a739-tleyspjt.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest7xssac2jl-79a739-tleyspjt.portal.hcp.eastus.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"availabilityZones\": [\n - \ \"1\",\n \"2\",\n \"3\"\n ],\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": true,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_eastus\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestokyyfhmzk-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestokyyfhmzk-8ecadf-jggws3p2.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestokyyfhmzk-8ecadf-jggws3p2.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n \ + \ ],\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ + \ \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ + ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": true,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n\ + \ \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ + : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/777ca733-ef9b-4497-a152-65f49adf5a24?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/409d7b5f-d205-4591-a995-cf3bddb1136f?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3331' + - '3659' content-type: - application/json date: - - Wed, 15 Mar 2023 11:12:27 GMT + - Thu, 15 Jun 2023 19:24:03 GMT expires: - '-1' pragma: @@ -185,7 +187,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -203,14 +205,14 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/777ca733-ef9b-4497-a152-65f49adf5a24?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/409d7b5f-d205-4591-a995-cf3bddb1136f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"33a77c77-9bef-9744-a152-65f49adf5a24\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:27.7967885Z\"\n }" + string: "{\n \"name\": \"5f7b9d40-05d2-9145-a995-cf3bddb1136f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:24:02.8130106Z\"\n }" headers: cache-control: - no-cache @@ -219,7 +221,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:12:57 GMT + - Thu, 15 Jun 2023 19:24:04 GMT expires: - '-1' pragma: @@ -251,14 +253,14 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/777ca733-ef9b-4497-a152-65f49adf5a24?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/409d7b5f-d205-4591-a995-cf3bddb1136f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"33a77c77-9bef-9744-a152-65f49adf5a24\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:27.7967885Z\"\n }" + string: "{\n \"name\": \"5f7b9d40-05d2-9145-a995-cf3bddb1136f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:24:02.8130106Z\"\n }" headers: cache-control: - no-cache @@ -267,7 +269,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:13:28 GMT + - Thu, 15 Jun 2023 19:24:34 GMT expires: - '-1' pragma: @@ -299,14 +301,14 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/777ca733-ef9b-4497-a152-65f49adf5a24?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/409d7b5f-d205-4591-a995-cf3bddb1136f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"33a77c77-9bef-9744-a152-65f49adf5a24\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:27.7967885Z\"\n }" + string: "{\n \"name\": \"5f7b9d40-05d2-9145-a995-cf3bddb1136f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:24:02.8130106Z\"\n }" headers: cache-control: - no-cache @@ -315,7 +317,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:13:58 GMT + - Thu, 15 Jun 2023 19:25:04 GMT expires: - '-1' pragma: @@ -347,14 +349,14 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/777ca733-ef9b-4497-a152-65f49adf5a24?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/409d7b5f-d205-4591-a995-cf3bddb1136f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"33a77c77-9bef-9744-a152-65f49adf5a24\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:27.7967885Z\"\n }" + string: "{\n \"name\": \"5f7b9d40-05d2-9145-a995-cf3bddb1136f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:24:02.8130106Z\"\n }" headers: cache-control: - no-cache @@ -363,7 +365,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:14:28 GMT + - Thu, 15 Jun 2023 19:25:34 GMT expires: - '-1' pragma: @@ -395,14 +397,14 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/777ca733-ef9b-4497-a152-65f49adf5a24?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/409d7b5f-d205-4591-a995-cf3bddb1136f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"33a77c77-9bef-9744-a152-65f49adf5a24\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:27.7967885Z\"\n }" + string: "{\n \"name\": \"5f7b9d40-05d2-9145-a995-cf3bddb1136f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:24:02.8130106Z\"\n }" headers: cache-control: - no-cache @@ -411,7 +413,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:14:58 GMT + - Thu, 15 Jun 2023 19:26:04 GMT expires: - '-1' pragma: @@ -443,14 +445,14 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/777ca733-ef9b-4497-a152-65f49adf5a24?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/409d7b5f-d205-4591-a995-cf3bddb1136f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"33a77c77-9bef-9744-a152-65f49adf5a24\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:27.7967885Z\"\n }" + string: "{\n \"name\": \"5f7b9d40-05d2-9145-a995-cf3bddb1136f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:24:02.8130106Z\"\n }" headers: cache-control: - no-cache @@ -459,7 +461,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:15:28 GMT + - Thu, 15 Jun 2023 19:26:34 GMT expires: - '-1' pragma: @@ -491,14 +493,14 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/777ca733-ef9b-4497-a152-65f49adf5a24?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/409d7b5f-d205-4591-a995-cf3bddb1136f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"33a77c77-9bef-9744-a152-65f49adf5a24\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:27.7967885Z\"\n }" + string: "{\n \"name\": \"5f7b9d40-05d2-9145-a995-cf3bddb1136f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:24:02.8130106Z\"\n }" headers: cache-control: - no-cache @@ -507,7 +509,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:15:58 GMT + - Thu, 15 Jun 2023 19:27:04 GMT expires: - '-1' pragma: @@ -539,14 +541,14 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/777ca733-ef9b-4497-a152-65f49adf5a24?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/409d7b5f-d205-4591-a995-cf3bddb1136f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"33a77c77-9bef-9744-a152-65f49adf5a24\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:27.7967885Z\"\n }" + string: "{\n \"name\": \"5f7b9d40-05d2-9145-a995-cf3bddb1136f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:24:02.8130106Z\"\n }" headers: cache-control: - no-cache @@ -555,7 +557,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:16:29 GMT + - Thu, 15 Jun 2023 19:27:34 GMT expires: - '-1' pragma: @@ -587,504 +589,24 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/777ca733-ef9b-4497-a152-65f49adf5a24?api-version=2017-08-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/409d7b5f-d205-4591-a995-cf3bddb1136f?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"33a77c77-9bef-9744-a152-65f49adf5a24\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:27.7967885Z\"\n }" + string: "{\n \"name\": \"5f7b9d40-05d2-9145-a995-cf3bddb1136f\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T19:24:02.8130106Z\",\n \"\ + endTime\": \"2023-06-15T19:27:50.55376Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:16:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/777ca733-ef9b-4497-a152-65f49adf5a24?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"33a77c77-9bef-9744-a152-65f49adf5a24\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:27.7967885Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:17:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/777ca733-ef9b-4497-a152-65f49adf5a24?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"33a77c77-9bef-9744-a152-65f49adf5a24\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:27.7967885Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:17:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/777ca733-ef9b-4497-a152-65f49adf5a24?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"33a77c77-9bef-9744-a152-65f49adf5a24\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:27.7967885Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:18:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/777ca733-ef9b-4497-a152-65f49adf5a24?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"33a77c77-9bef-9744-a152-65f49adf5a24\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:27.7967885Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:18:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/777ca733-ef9b-4497-a152-65f49adf5a24?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"33a77c77-9bef-9744-a152-65f49adf5a24\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:27.7967885Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:19:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/777ca733-ef9b-4497-a152-65f49adf5a24?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"33a77c77-9bef-9744-a152-65f49adf5a24\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:27.7967885Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:20:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/777ca733-ef9b-4497-a152-65f49adf5a24?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"33a77c77-9bef-9744-a152-65f49adf5a24\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:27.7967885Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:20:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/777ca733-ef9b-4497-a152-65f49adf5a24?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"33a77c77-9bef-9744-a152-65f49adf5a24\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:27.7967885Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:21:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/777ca733-ef9b-4497-a152-65f49adf5a24?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"33a77c77-9bef-9744-a152-65f49adf5a24\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:27.7967885Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:21:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/777ca733-ef9b-4497-a152-65f49adf5a24?api-version=2017-08-31 - response: - body: - string: "{\n \"name\": \"33a77c77-9bef-9744-a152-65f49adf5a24\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:12:27.7967885Z\",\n \"endTime\": - \"2023-03-15T11:21:34.0433834Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '170' + - '168' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:01 GMT + - Thu, 15 Jun 2023 19:28:04 GMT expires: - '-1' pragma: @@ -1116,65 +638,68 @@ interactions: ParameterSetName: - --resource-group --name --node-vm-size --zones --enable-ultra-ssd --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest7xssac2jl-79a739\",\n \"fqdn\": \"cliakstest-clitest7xssac2jl-79a739-tleyspjt.hcp.eastus.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest7xssac2jl-79a739-tleyspjt.portal.hcp.eastus.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"availabilityZones\": [\n - \ \"1\",\n \"2\",\n \"3\"\n ],\n \"enableAutoScaling\": - false,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n - \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": true,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_eastus\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/9e53f39b-7bf5-494e-9c41-ce4bf4350365\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestokyyfhmzk-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestokyyfhmzk-8ecadf-jggws3p2.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestokyyfhmzk-8ecadf-jggws3p2.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"availabilityZones\": [\n \"1\",\n \"2\",\n \"3\"\n \ + \ ],\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n\ + \ \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\"\ + ,\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": true,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n\ + \ \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\"\ + : [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/adeba092-0668-4578-a729-91f0b24c0d82\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3982' + - '4310' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:02 GMT + - Thu, 15 Jun 2023 19:28:05 GMT expires: - '-1' pragma: @@ -1208,8 +733,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -1217,17 +742,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/975d0e28-714c-408e-8960-160993c8dfb3?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/7673b1d9-be25-4f31-9d1f-671b4d534133?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:22:03 GMT + - Thu, 15 Jun 2023 19:28:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/975d0e28-714c-408e-8960-160993c8dfb3?api-version=2017-08-31 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/7673b1d9-be25-4f31-9d1f-671b4d534133?api-version=2017-08-31 pragma: - no-cache server: @@ -1237,7 +762,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_aad.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_aad.yaml index 4446ea24d78..c16cae8c6b4 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_aad.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_aad.yaml @@ -14,7 +14,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:00:55 GMT + - Sat, 29 Apr 2023 10:54:39 GMT expires: - '-1' pragma: @@ -60,21 +60,21 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T11:00:55Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_managed_aad","date":"2023-04-29T10:54:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '335' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:00:55 GMT + - Sat, 29 Apr 2023 10:54:39 GMT expires: - '-1' pragma: @@ -90,14 +90,14 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestuthaz6mah-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestwv7ylyarr-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", @@ -121,7 +121,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -131,31 +131,31 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestuthaz6mah-79a739\",\n \"fqdn\": \"cliakstest-clitestuthaz6mah-79a739-oeb6fxru.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestuthaz6mah-79a739-oeb6fxru.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestwv7ylyarr-79a739\",\n \"fqdn\": \"cliakstest-clitestwv7ylyarr-79a739-99abojdr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestwv7ylyarr-79a739-99abojdr.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n ],\n \"adminUsers\": @@ -167,18 +167,18 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/19ced933-fc36-4cbb-b3e7-a6ab96a34ba1?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a20234e-7c3f-459e-aeb5-f4e51fa9c302?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3503' + - '3541' content-type: - application/json date: - - Wed, 15 Mar 2023 11:00:58 GMT + - Sat, 29 Apr 2023 10:54:44 GMT expires: - '-1' pragma: @@ -190,7 +190,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1197' status: code: 201 message: Created @@ -209,23 +209,219 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a20234e-7c3f-459e-aeb5-f4e51fa9c302?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4e23202a-3f7c-9e45-aeb5-f4e51fa9c302\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T10:54:44.5404369Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 10:54:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad + --aad-admin-group-object-ids -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a20234e-7c3f-459e-aeb5-f4e51fa9c302?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4e23202a-3f7c-9e45-aeb5-f4e51fa9c302\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T10:54:44.5404369Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 10:55:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad + --aad-admin-group-object-ids -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a20234e-7c3f-459e-aeb5-f4e51fa9c302?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4e23202a-3f7c-9e45-aeb5-f4e51fa9c302\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T10:54:44.5404369Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 10:55:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad + --aad-admin-group-object-ids -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a20234e-7c3f-459e-aeb5-f4e51fa9c302?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"4e23202a-3f7c-9e45-aeb5-f4e51fa9c302\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T10:54:44.5404369Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 10:56:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad + --aad-admin-group-object-ids -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/19ced933-fc36-4cbb-b3e7-a6ab96a34ba1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a20234e-7c3f-459e-aeb5-f4e51fa9c302?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"33d9ce19-36fc-bb4c-b3e7-a6ab96a34ba1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:58.975193Z\"\n }" + string: "{\n \"name\": \"4e23202a-3f7c-9e45-aeb5-f4e51fa9c302\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T10:54:44.5404369Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:01:28 GMT + - Sat, 29 Apr 2023 10:56:44 GMT expires: - '-1' pragma: @@ -258,23 +454,23 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/19ced933-fc36-4cbb-b3e7-a6ab96a34ba1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a20234e-7c3f-459e-aeb5-f4e51fa9c302?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"33d9ce19-36fc-bb4c-b3e7-a6ab96a34ba1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:58.975193Z\"\n }" + string: "{\n \"name\": \"4e23202a-3f7c-9e45-aeb5-f4e51fa9c302\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T10:54:44.5404369Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:01:58 GMT + - Sat, 29 Apr 2023 10:57:15 GMT expires: - '-1' pragma: @@ -307,23 +503,23 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/19ced933-fc36-4cbb-b3e7-a6ab96a34ba1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a20234e-7c3f-459e-aeb5-f4e51fa9c302?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"33d9ce19-36fc-bb4c-b3e7-a6ab96a34ba1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:58.975193Z\"\n }" + string: "{\n \"name\": \"4e23202a-3f7c-9e45-aeb5-f4e51fa9c302\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T10:54:44.5404369Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:02:28 GMT + - Sat, 29 Apr 2023 10:57:45 GMT expires: - '-1' pragma: @@ -356,23 +552,23 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/19ced933-fc36-4cbb-b3e7-a6ab96a34ba1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a20234e-7c3f-459e-aeb5-f4e51fa9c302?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"33d9ce19-36fc-bb4c-b3e7-a6ab96a34ba1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:58.975193Z\"\n }" + string: "{\n \"name\": \"4e23202a-3f7c-9e45-aeb5-f4e51fa9c302\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T10:54:44.5404369Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:02:59 GMT + - Sat, 29 Apr 2023 10:58:15 GMT expires: - '-1' pragma: @@ -405,23 +601,23 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/19ced933-fc36-4cbb-b3e7-a6ab96a34ba1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a20234e-7c3f-459e-aeb5-f4e51fa9c302?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"33d9ce19-36fc-bb4c-b3e7-a6ab96a34ba1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:58.975193Z\"\n }" + string: "{\n \"name\": \"4e23202a-3f7c-9e45-aeb5-f4e51fa9c302\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T10:54:44.5404369Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:03:29 GMT + - Sat, 29 Apr 2023 10:58:45 GMT expires: - '-1' pragma: @@ -454,23 +650,23 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/19ced933-fc36-4cbb-b3e7-a6ab96a34ba1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a20234e-7c3f-459e-aeb5-f4e51fa9c302?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"33d9ce19-36fc-bb4c-b3e7-a6ab96a34ba1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:58.975193Z\"\n }" + string: "{\n \"name\": \"4e23202a-3f7c-9e45-aeb5-f4e51fa9c302\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T10:54:44.5404369Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:03:58 GMT + - Sat, 29 Apr 2023 10:59:15 GMT expires: - '-1' pragma: @@ -503,23 +699,23 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/19ced933-fc36-4cbb-b3e7-a6ab96a34ba1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a20234e-7c3f-459e-aeb5-f4e51fa9c302?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"33d9ce19-36fc-bb4c-b3e7-a6ab96a34ba1\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:00:58.975193Z\"\n }" + string: "{\n \"name\": \"4e23202a-3f7c-9e45-aeb5-f4e51fa9c302\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T10:54:44.5404369Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:04:29 GMT + - Sat, 29 Apr 2023 10:59:44 GMT expires: - '-1' pragma: @@ -552,24 +748,24 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/19ced933-fc36-4cbb-b3e7-a6ab96a34ba1?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2a20234e-7c3f-459e-aeb5-f4e51fa9c302?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"33d9ce19-36fc-bb4c-b3e7-a6ab96a34ba1\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:00:58.975193Z\",\n \"endTime\": - \"2023-03-15T11:04:50.251489Z\"\n }" + string: "{\n \"name\": \"4e23202a-3f7c-9e45-aeb5-f4e51fa9c302\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-04-29T10:54:44.5404369Z\",\n \"endTime\": + \"2023-04-29T10:59:53.987891Z\"\n }" headers: cache-control: - no-cache content-length: - - '168' + - '169' content-type: - application/json date: - - Wed, 15 Mar 2023 11:04:59 GMT + - Sat, 29 Apr 2023 11:00:14 GMT expires: - '-1' pragma: @@ -602,7 +798,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -612,29 +808,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestuthaz6mah-79a739\",\n \"fqdn\": \"cliakstest-clitestuthaz6mah-79a739-oeb6fxru.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestuthaz6mah-79a739-oeb6fxru.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestwv7ylyarr-79a739\",\n \"fqdn\": \"cliakstest-clitestwv7ylyarr-79a739-99abojdr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestwv7ylyarr-79a739-99abojdr.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/23b188c6-ee91-4ccb-85df-6d21ecaa5bf0\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8a81d449-00c0-4c45-8b44-8945aebf4eba\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -653,16 +849,16 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4156' + - '4194' content-type: - application/json date: - - Wed, 15 Mar 2023 11:04:59 GMT + - Sat, 29 Apr 2023 11:00:15 GMT expires: - '-1' pragma: @@ -694,7 +890,7 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -704,29 +900,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestuthaz6mah-79a739\",\n \"fqdn\": \"cliakstest-clitestuthaz6mah-79a739-oeb6fxru.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestuthaz6mah-79a739-oeb6fxru.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestwv7ylyarr-79a739\",\n \"fqdn\": \"cliakstest-clitestwv7ylyarr-79a739-99abojdr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestwv7ylyarr-79a739-99abojdr.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/23b188c6-ee91-4ccb-85df-6d21ecaa5bf0\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8a81d449-00c0-4c45-8b44-8945aebf4eba\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -745,16 +941,16 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4156' + - '4194' content-type: - application/json date: - - Wed, 15 Mar 2023 11:05:00 GMT + - Sat, 29 Apr 2023 11:00:16 GMT expires: - '-1' pragma: @@ -773,23 +969,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestuthaz6mah-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestwv7ylyarr-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/23b188c6-ee91-4ccb-85df-6d21ecaa5bf0"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8a81d449-00c0-4c45-8b44-8945aebf4eba"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "aadProfile": {"managed": true, "enableAzureRBAC": false, "adminGroupObjectIDs": ["00000000-0000-0000-0000-000000000002"], "tenantID": "00000000-0000-0000-0000-000000000003"}, @@ -807,13 +1003,13 @@ interactions: Connection: - keep-alive Content-Length: - - '2660' + - '2659' Content-Type: - application/json ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -823,29 +1019,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestuthaz6mah-79a739\",\n \"fqdn\": \"cliakstest-clitestuthaz6mah-79a739-oeb6fxru.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestuthaz6mah-79a739-oeb6fxru.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestwv7ylyarr-79a739\",\n \"fqdn\": \"cliakstest-clitestwv7ylyarr-79a739-99abojdr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestwv7ylyarr-79a739-99abojdr.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/23b188c6-ee91-4ccb-85df-6d21ecaa5bf0\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8a81d449-00c0-4c45-8b44-8945aebf4eba\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -864,18 +1060,18 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6e6faeb4-2657-44b2-bfdf-4b3b70866d16?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/833a860f-4e87-4a05-a2b6-caa0a73e7007?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4154' + - '4192' content-type: - application/json date: - - Wed, 15 Mar 2023 11:05:03 GMT + - Sat, 29 Apr 2023 11:00:20 GMT expires: - '-1' pragma: @@ -891,7 +1087,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1194' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/833a860f-4e87-4a05-a2b6-caa0a73e7007?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"0f863a83-874e-054a-a2b6-caa0a73e7007\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:00:20.8555891Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:00:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -909,14 +1153,14 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6e6faeb4-2657-44b2-bfdf-4b3b70866d16?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/833a860f-4e87-4a05-a2b6-caa0a73e7007?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b4ae6f6e-5726-b244-bfdf-4b3b70866d16\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:05:03.8354149Z\"\n }" + string: "{\n \"name\": \"0f863a83-874e-054a-a2b6-caa0a73e7007\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:00:20.8555891Z\"\n }" headers: cache-control: - no-cache @@ -925,7 +1169,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:05:33 GMT + - Sat, 29 Apr 2023 11:00:50 GMT expires: - '-1' pragma: @@ -957,14 +1201,14 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6e6faeb4-2657-44b2-bfdf-4b3b70866d16?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/833a860f-4e87-4a05-a2b6-caa0a73e7007?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b4ae6f6e-5726-b244-bfdf-4b3b70866d16\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:05:03.8354149Z\"\n }" + string: "{\n \"name\": \"0f863a83-874e-054a-a2b6-caa0a73e7007\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:00:20.8555891Z\"\n }" headers: cache-control: - no-cache @@ -973,7 +1217,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:06:04 GMT + - Sat, 29 Apr 2023 11:01:21 GMT expires: - '-1' pragma: @@ -1005,14 +1249,14 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6e6faeb4-2657-44b2-bfdf-4b3b70866d16?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/833a860f-4e87-4a05-a2b6-caa0a73e7007?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b4ae6f6e-5726-b244-bfdf-4b3b70866d16\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:05:03.8354149Z\"\n }" + string: "{\n \"name\": \"0f863a83-874e-054a-a2b6-caa0a73e7007\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:00:20.8555891Z\"\n }" headers: cache-control: - no-cache @@ -1021,7 +1265,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:06:34 GMT + - Sat, 29 Apr 2023 11:01:51 GMT expires: - '-1' pragma: @@ -1053,14 +1297,14 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6e6faeb4-2657-44b2-bfdf-4b3b70866d16?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/833a860f-4e87-4a05-a2b6-caa0a73e7007?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b4ae6f6e-5726-b244-bfdf-4b3b70866d16\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:05:03.8354149Z\"\n }" + string: "{\n \"name\": \"0f863a83-874e-054a-a2b6-caa0a73e7007\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:00:20.8555891Z\"\n }" headers: cache-control: - no-cache @@ -1069,7 +1313,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:07:04 GMT + - Sat, 29 Apr 2023 11:02:21 GMT expires: - '-1' pragma: @@ -1101,14 +1345,14 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6e6faeb4-2657-44b2-bfdf-4b3b70866d16?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/833a860f-4e87-4a05-a2b6-caa0a73e7007?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b4ae6f6e-5726-b244-bfdf-4b3b70866d16\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:05:03.8354149Z\"\n }" + string: "{\n \"name\": \"0f863a83-874e-054a-a2b6-caa0a73e7007\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:00:20.8555891Z\"\n }" headers: cache-control: - no-cache @@ -1117,7 +1361,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:07:34 GMT + - Sat, 29 Apr 2023 11:02:51 GMT expires: - '-1' pragma: @@ -1149,15 +1393,15 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6e6faeb4-2657-44b2-bfdf-4b3b70866d16?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/833a860f-4e87-4a05-a2b6-caa0a73e7007?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b4ae6f6e-5726-b244-bfdf-4b3b70866d16\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:05:03.8354149Z\",\n \"endTime\": - \"2023-03-15T11:07:42.5040349Z\"\n }" + string: "{\n \"name\": \"0f863a83-874e-054a-a2b6-caa0a73e7007\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-04-29T11:00:20.8555891Z\",\n \"endTime\": + \"2023-04-29T11:03:19.2177268Z\"\n }" headers: cache-control: - no-cache @@ -1166,7 +1410,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:03 GMT + - Sat, 29 Apr 2023 11:03:21 GMT expires: - '-1' pragma: @@ -1198,7 +1442,7 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -1208,29 +1452,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestuthaz6mah-79a739\",\n \"fqdn\": \"cliakstest-clitestuthaz6mah-79a739-oeb6fxru.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestuthaz6mah-79a739-oeb6fxru.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestwv7ylyarr-79a739\",\n \"fqdn\": \"cliakstest-clitestwv7ylyarr-79a739-99abojdr.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestwv7ylyarr-79a739-99abojdr.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/23b188c6-ee91-4ccb-85df-6d21ecaa5bf0\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8a81d449-00c0-4c45-8b44-8945aebf4eba\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1249,16 +1493,16 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4156' + - '4194' content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:04 GMT + - Sat, 29 Apr 2023 11:03:21 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_aad_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_aad_msi.yaml index 6f4aaba4d22..a079fb7af0c 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_aad_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_aad_msi.yaml @@ -14,7 +14,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:10:16 GMT + - Sat, 29 Apr 2023 10:59:56 GMT expires: - '-1' pragma: @@ -60,21 +60,21 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T11:10:17Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_managed_aad_msi","date":"2023-04-29T10:59:56Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '339' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:10:17 GMT + - Sat, 29 Apr 2023 10:59:56 GMT expires: - '-1' pragma: @@ -90,14 +90,14 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestqpqbkc6br-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestswihja7lb-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", @@ -121,7 +121,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -131,31 +131,31 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestqpqbkc6br-79a739\",\n \"fqdn\": \"cliakstest-clitestqpqbkc6br-79a739-wg2epthq.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestqpqbkc6br-79a739-wg2epthq.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestswihja7lb-79a739\",\n \"fqdn\": \"cliakstest-clitestswihja7lb-79a739-nlh7hu10.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestswihja7lb-79a739-nlh7hu10.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n ],\n \"adminUsers\": @@ -167,18 +167,18 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4215e847-eb1e-44b2-b2c6-60984c0c99b4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e831f8df-0298-403b-82e5-c0c9f99fa547?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3503' + - '3541' content-type: - application/json date: - - Wed, 15 Mar 2023 11:10:20 GMT + - Sat, 29 Apr 2023 11:00:00 GMT expires: - '-1' pragma: @@ -190,7 +190,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1196' status: code: 201 message: Created @@ -209,23 +209,219 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4215e847-eb1e-44b2-b2c6-60984c0c99b4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e831f8df-0298-403b-82e5-c0c9f99fa547?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"47e81542-1eeb-b244-b2c6-60984c0c99b4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:10:21.508196Z\"\n }" + string: "{\n \"name\": \"dff831e8-9802-3b40-82e5-c0c9f99fa547\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:00:01.2929071Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:00:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad + --aad-admin-group-object-ids -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e831f8df-0298-403b-82e5-c0c9f99fa547?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"dff831e8-9802-3b40-82e5-c0c9f99fa547\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:00:01.2929071Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:00:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad + --aad-admin-group-object-ids -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e831f8df-0298-403b-82e5-c0c9f99fa547?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"dff831e8-9802-3b40-82e5-c0c9f99fa547\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:00:01.2929071Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:01:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad + --aad-admin-group-object-ids -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e831f8df-0298-403b-82e5-c0c9f99fa547?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"dff831e8-9802-3b40-82e5-c0c9f99fa547\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:00:01.2929071Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:01:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad + --aad-admin-group-object-ids -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e831f8df-0298-403b-82e5-c0c9f99fa547?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"dff831e8-9802-3b40-82e5-c0c9f99fa547\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:00:01.2929071Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:10:51 GMT + - Sat, 29 Apr 2023 11:02:01 GMT expires: - '-1' pragma: @@ -258,23 +454,23 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4215e847-eb1e-44b2-b2c6-60984c0c99b4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e831f8df-0298-403b-82e5-c0c9f99fa547?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"47e81542-1eeb-b244-b2c6-60984c0c99b4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:10:21.508196Z\"\n }" + string: "{\n \"name\": \"dff831e8-9802-3b40-82e5-c0c9f99fa547\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:00:01.2929071Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:11:21 GMT + - Sat, 29 Apr 2023 11:02:31 GMT expires: - '-1' pragma: @@ -307,23 +503,23 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4215e847-eb1e-44b2-b2c6-60984c0c99b4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e831f8df-0298-403b-82e5-c0c9f99fa547?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"47e81542-1eeb-b244-b2c6-60984c0c99b4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:10:21.508196Z\"\n }" + string: "{\n \"name\": \"dff831e8-9802-3b40-82e5-c0c9f99fa547\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:00:01.2929071Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:11:51 GMT + - Sat, 29 Apr 2023 11:03:01 GMT expires: - '-1' pragma: @@ -356,23 +552,23 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4215e847-eb1e-44b2-b2c6-60984c0c99b4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e831f8df-0298-403b-82e5-c0c9f99fa547?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"47e81542-1eeb-b244-b2c6-60984c0c99b4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:10:21.508196Z\"\n }" + string: "{\n \"name\": \"dff831e8-9802-3b40-82e5-c0c9f99fa547\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:00:01.2929071Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:12:21 GMT + - Sat, 29 Apr 2023 11:03:31 GMT expires: - '-1' pragma: @@ -405,23 +601,23 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4215e847-eb1e-44b2-b2c6-60984c0c99b4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e831f8df-0298-403b-82e5-c0c9f99fa547?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"47e81542-1eeb-b244-b2c6-60984c0c99b4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:10:21.508196Z\"\n }" + string: "{\n \"name\": \"dff831e8-9802-3b40-82e5-c0c9f99fa547\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:00:01.2929071Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:12:51 GMT + - Sat, 29 Apr 2023 11:04:02 GMT expires: - '-1' pragma: @@ -454,23 +650,23 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4215e847-eb1e-44b2-b2c6-60984c0c99b4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e831f8df-0298-403b-82e5-c0c9f99fa547?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"47e81542-1eeb-b244-b2c6-60984c0c99b4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:10:21.508196Z\"\n }" + string: "{\n \"name\": \"dff831e8-9802-3b40-82e5-c0c9f99fa547\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:00:01.2929071Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:13:21 GMT + - Sat, 29 Apr 2023 11:04:31 GMT expires: - '-1' pragma: @@ -503,24 +699,23 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4215e847-eb1e-44b2-b2c6-60984c0c99b4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e831f8df-0298-403b-82e5-c0c9f99fa547?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"47e81542-1eeb-b244-b2c6-60984c0c99b4\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:10:21.508196Z\",\n \"endTime\": - \"2023-03-15T11:13:43.6696555Z\"\n }" + string: "{\n \"name\": \"dff831e8-9802-3b40-82e5-c0c9f99fa547\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:00:01.2929071Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:13:51 GMT + - Sat, 29 Apr 2023 11:05:02 GMT expires: - '-1' pragma: @@ -553,7 +748,57 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e831f8df-0298-403b-82e5-c0c9f99fa547?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"dff831e8-9802-3b40-82e5-c0c9f99fa547\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-04-29T11:00:01.2929071Z\",\n \"endTime\": + \"2023-04-29T11:05:22.6949665Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:05:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad + --aad-admin-group-object-ids -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -563,29 +808,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestqpqbkc6br-79a739\",\n \"fqdn\": \"cliakstest-clitestqpqbkc6br-79a739-wg2epthq.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestqpqbkc6br-79a739-wg2epthq.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestswihja7lb-79a739\",\n \"fqdn\": \"cliakstest-clitestswihja7lb-79a739-nlh7hu10.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestswihja7lb-79a739-nlh7hu10.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e635958c-f8ba-4c60-a17a-1421b24b067d\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/211d5b82-4cd3-479b-a4d3-e553b57d28a8\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -604,16 +849,16 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4156' + - '4194' content-type: - application/json date: - - Wed, 15 Mar 2023 11:13:52 GMT + - Sat, 29 Apr 2023 11:05:32 GMT expires: - '-1' pragma: @@ -645,7 +890,7 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -655,29 +900,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestqpqbkc6br-79a739\",\n \"fqdn\": \"cliakstest-clitestqpqbkc6br-79a739-wg2epthq.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestqpqbkc6br-79a739-wg2epthq.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestswihja7lb-79a739\",\n \"fqdn\": \"cliakstest-clitestswihja7lb-79a739-nlh7hu10.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestswihja7lb-79a739-nlh7hu10.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e635958c-f8ba-4c60-a17a-1421b24b067d\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/211d5b82-4cd3-479b-a4d3-e553b57d28a8\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -696,16 +941,16 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4156' + - '4194' content-type: - application/json date: - - Wed, 15 Mar 2023 11:13:53 GMT + - Sat, 29 Apr 2023 11:05:33 GMT expires: - '-1' pragma: @@ -724,23 +969,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestqpqbkc6br-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestswihja7lb-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e635958c-f8ba-4c60-a17a-1421b24b067d"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/211d5b82-4cd3-479b-a4d3-e553b57d28a8"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "aadProfile": {"managed": true, "enableAzureRBAC": false, "adminGroupObjectIDs": ["00000000-0000-0000-0000-000000000002"], "tenantID": "00000000-0000-0000-0000-000000000003"}, @@ -758,13 +1003,13 @@ interactions: Connection: - keep-alive Content-Length: - - '2660' + - '2659' Content-Type: - application/json ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -774,29 +1019,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestqpqbkc6br-79a739\",\n \"fqdn\": \"cliakstest-clitestqpqbkc6br-79a739-wg2epthq.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestqpqbkc6br-79a739-wg2epthq.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestswihja7lb-79a739\",\n \"fqdn\": \"cliakstest-clitestswihja7lb-79a739-nlh7hu10.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestswihja7lb-79a739-nlh7hu10.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e635958c-f8ba-4c60-a17a-1421b24b067d\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/211d5b82-4cd3-479b-a4d3-e553b57d28a8\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -815,18 +1060,18 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/86778509-260a-4cad-bf2f-cdd84ebac7b3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf2aa9e5-50f3-4306-bd3b-678cb153aa24?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4154' + - '4192' content-type: - application/json date: - - Wed, 15 Mar 2023 11:13:55 GMT + - Sat, 29 Apr 2023 11:05:36 GMT expires: - '-1' pragma: @@ -842,7 +1087,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1196' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf2aa9e5-50f3-4306-bd3b-678cb153aa24?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e5a92abf-f350-0643-bd3b-678cb153aa24\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:05:37.4049625Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:05:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -860,14 +1153,14 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/86778509-260a-4cad-bf2f-cdd84ebac7b3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf2aa9e5-50f3-4306-bd3b-678cb153aa24?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"09857786-0a26-ad4c-bf2f-cdd84ebac7b3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:13:56.2280493Z\"\n }" + string: "{\n \"name\": \"e5a92abf-f350-0643-bd3b-678cb153aa24\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:05:37.4049625Z\"\n }" headers: cache-control: - no-cache @@ -876,7 +1169,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:14:25 GMT + - Sat, 29 Apr 2023 11:06:07 GMT expires: - '-1' pragma: @@ -908,14 +1201,14 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/86778509-260a-4cad-bf2f-cdd84ebac7b3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf2aa9e5-50f3-4306-bd3b-678cb153aa24?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"09857786-0a26-ad4c-bf2f-cdd84ebac7b3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:13:56.2280493Z\"\n }" + string: "{\n \"name\": \"e5a92abf-f350-0643-bd3b-678cb153aa24\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:05:37.4049625Z\"\n }" headers: cache-control: - no-cache @@ -924,7 +1217,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:14:55 GMT + - Sat, 29 Apr 2023 11:06:37 GMT expires: - '-1' pragma: @@ -956,14 +1249,14 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/86778509-260a-4cad-bf2f-cdd84ebac7b3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf2aa9e5-50f3-4306-bd3b-678cb153aa24?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"09857786-0a26-ad4c-bf2f-cdd84ebac7b3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:13:56.2280493Z\"\n }" + string: "{\n \"name\": \"e5a92abf-f350-0643-bd3b-678cb153aa24\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:05:37.4049625Z\"\n }" headers: cache-control: - no-cache @@ -972,7 +1265,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:15:25 GMT + - Sat, 29 Apr 2023 11:07:07 GMT expires: - '-1' pragma: @@ -1004,14 +1297,14 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/86778509-260a-4cad-bf2f-cdd84ebac7b3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf2aa9e5-50f3-4306-bd3b-678cb153aa24?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"09857786-0a26-ad4c-bf2f-cdd84ebac7b3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:13:56.2280493Z\"\n }" + string: "{\n \"name\": \"e5a92abf-f350-0643-bd3b-678cb153aa24\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:05:37.4049625Z\"\n }" headers: cache-control: - no-cache @@ -1020,7 +1313,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:15:56 GMT + - Sat, 29 Apr 2023 11:07:38 GMT expires: - '-1' pragma: @@ -1052,14 +1345,14 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/86778509-260a-4cad-bf2f-cdd84ebac7b3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf2aa9e5-50f3-4306-bd3b-678cb153aa24?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"09857786-0a26-ad4c-bf2f-cdd84ebac7b3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:13:56.2280493Z\"\n }" + string: "{\n \"name\": \"e5a92abf-f350-0643-bd3b-678cb153aa24\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:05:37.4049625Z\"\n }" headers: cache-control: - no-cache @@ -1068,7 +1361,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:16:26 GMT + - Sat, 29 Apr 2023 11:08:07 GMT expires: - '-1' pragma: @@ -1100,15 +1393,15 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/86778509-260a-4cad-bf2f-cdd84ebac7b3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bf2aa9e5-50f3-4306-bd3b-678cb153aa24?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"09857786-0a26-ad4c-bf2f-cdd84ebac7b3\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:13:56.2280493Z\",\n \"endTime\": - \"2023-03-15T11:16:32.3005198Z\"\n }" + string: "{\n \"name\": \"e5a92abf-f350-0643-bd3b-678cb153aa24\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-04-29T11:05:37.4049625Z\",\n \"endTime\": + \"2023-04-29T11:08:30.1054526Z\"\n }" headers: cache-control: - no-cache @@ -1117,7 +1410,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:16:56 GMT + - Sat, 29 Apr 2023 11:08:38 GMT expires: - '-1' pragma: @@ -1149,7 +1442,7 @@ interactions: ParameterSetName: - --resource-group --name --aad-admin-group-object-ids --aad-tenant-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -1159,29 +1452,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestqpqbkc6br-79a739\",\n \"fqdn\": \"cliakstest-clitestqpqbkc6br-79a739-wg2epthq.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestqpqbkc6br-79a739-wg2epthq.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestswihja7lb-79a739\",\n \"fqdn\": \"cliakstest-clitestswihja7lb-79a739-nlh7hu10.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestswihja7lb-79a739-nlh7hu10.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/e635958c-f8ba-4c60-a17a-1421b24b067d\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/211d5b82-4cd3-479b-a4d3-e553b57d28a8\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1200,16 +1493,16 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4156' + - '4194' content-type: - application/json date: - - Wed, 15 Mar 2023 11:16:56 GMT + - Sat, 29 Apr 2023 11:08:38 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_identity_with_service_principal.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_identity_with_service_principal.yaml old mode 100755 new mode 100644 index 331759ba403..9599dd54ace --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_identity_with_service_principal.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_identity_with_service_principal.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --enable-managed-identity User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:02:31 GMT + - Thu, 15 Jun 2023 19:31:35 GMT expires: - '-1' pragma: @@ -53,13 +53,12 @@ interactions: false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, - "storageProfile": {}}}' + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -70,66 +69,133 @@ interactions: Connection: - keep-alive Content-Length: - - '1504' + - '1796' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --enable-managed-identity User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-zsbq2mpg.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-zsbq2mpg.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"details\": null,\n\ + \ \"message\": \"Service principal clientID: 0c5c35b2-cfe2-4453-a446-3b5ff77da403\ + \ not found in Active Directory tenant 72f988bf-86f1-41af-91ab-2d7cd011db47,\ + \ Please see https://aka.ms/aks-sp-help for more details.\",\n \"subcode\"\ + : \"ServicePrincipalNotFound\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '313' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 19:31:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": + false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": + -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, + "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1796' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --enable-managed-identity + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-4w10cjua.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-4w10cjua.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc90d25b-f468-42af-a91f-0ff700f23d1e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7d3f81e7-b3b2-4354-9122-60e285ed7cae?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3050' + - '3378' content-type: - application/json date: - - Wed, 15 Mar 2023 11:02:35 GMT + - Thu, 15 Jun 2023 19:31:49 GMT expires: - '-1' pragma: @@ -141,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 201 message: Created @@ -160,14 +226,63 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --enable-managed-identity User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7d3f81e7-b3b2-4354-9122-60e285ed7cae?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e7813f7d-b2b3-5443-9122-60e285ed7cae\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:31:49.7255687Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 19:31:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret --enable-managed-identity + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc90d25b-f468-42af-a91f-0ff700f23d1e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7d3f81e7-b3b2-4354-9122-60e285ed7cae?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5bd290cc-68f4-af42-a91f-0ff700f23d1e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:02:36.3349334Z\"\n }" + string: "{\n \"name\": \"e7813f7d-b2b3-5443-9122-60e285ed7cae\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:31:49.7255687Z\"\n }" headers: cache-control: - no-cache @@ -176,7 +291,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:03:06 GMT + - Thu, 15 Jun 2023 19:32:20 GMT expires: - '-1' pragma: @@ -209,14 +324,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --enable-managed-identity User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc90d25b-f468-42af-a91f-0ff700f23d1e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7d3f81e7-b3b2-4354-9122-60e285ed7cae?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5bd290cc-68f4-af42-a91f-0ff700f23d1e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:02:36.3349334Z\"\n }" + string: "{\n \"name\": \"e7813f7d-b2b3-5443-9122-60e285ed7cae\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:31:49.7255687Z\"\n }" headers: cache-control: - no-cache @@ -225,7 +340,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:03:35 GMT + - Thu, 15 Jun 2023 19:32:50 GMT expires: - '-1' pragma: @@ -258,14 +373,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --enable-managed-identity User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc90d25b-f468-42af-a91f-0ff700f23d1e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7d3f81e7-b3b2-4354-9122-60e285ed7cae?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5bd290cc-68f4-af42-a91f-0ff700f23d1e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:02:36.3349334Z\"\n }" + string: "{\n \"name\": \"e7813f7d-b2b3-5443-9122-60e285ed7cae\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:31:49.7255687Z\"\n }" headers: cache-control: - no-cache @@ -274,7 +389,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:04:06 GMT + - Thu, 15 Jun 2023 19:33:20 GMT expires: - '-1' pragma: @@ -307,14 +422,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --enable-managed-identity User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc90d25b-f468-42af-a91f-0ff700f23d1e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7d3f81e7-b3b2-4354-9122-60e285ed7cae?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5bd290cc-68f4-af42-a91f-0ff700f23d1e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:02:36.3349334Z\"\n }" + string: "{\n \"name\": \"e7813f7d-b2b3-5443-9122-60e285ed7cae\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:31:49.7255687Z\"\n }" headers: cache-control: - no-cache @@ -323,7 +438,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:04:36 GMT + - Thu, 15 Jun 2023 19:33:50 GMT expires: - '-1' pragma: @@ -356,14 +471,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --enable-managed-identity User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc90d25b-f468-42af-a91f-0ff700f23d1e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7d3f81e7-b3b2-4354-9122-60e285ed7cae?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5bd290cc-68f4-af42-a91f-0ff700f23d1e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:02:36.3349334Z\"\n }" + string: "{\n \"name\": \"e7813f7d-b2b3-5443-9122-60e285ed7cae\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:31:49.7255687Z\"\n }" headers: cache-control: - no-cache @@ -372,7 +487,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:05:06 GMT + - Thu, 15 Jun 2023 19:34:20 GMT expires: - '-1' pragma: @@ -405,14 +520,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --enable-managed-identity User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc90d25b-f468-42af-a91f-0ff700f23d1e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7d3f81e7-b3b2-4354-9122-60e285ed7cae?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5bd290cc-68f4-af42-a91f-0ff700f23d1e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:02:36.3349334Z\"\n }" + string: "{\n \"name\": \"e7813f7d-b2b3-5443-9122-60e285ed7cae\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:31:49.7255687Z\"\n }" headers: cache-control: - no-cache @@ -421,7 +536,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:05:36 GMT + - Thu, 15 Jun 2023 19:34:51 GMT expires: - '-1' pragma: @@ -454,15 +569,15 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --enable-managed-identity User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cc90d25b-f468-42af-a91f-0ff700f23d1e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7d3f81e7-b3b2-4354-9122-60e285ed7cae?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5bd290cc-68f4-af42-a91f-0ff700f23d1e\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:02:36.3349334Z\",\n \"endTime\": - \"2023-03-15T11:05:41.270098Z\"\n }" + string: "{\n \"name\": \"e7813f7d-b2b3-5443-9122-60e285ed7cae\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T19:31:49.7255687Z\",\n \"\ + endTime\": \"2023-06-15T19:35:03.485116Z\"\n }" headers: cache-control: - no-cache @@ -471,7 +586,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:06:06 GMT + - Thu, 15 Jun 2023 19:35:21 GMT expires: - '-1' pragma: @@ -504,59 +619,60 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret --enable-managed-identity User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-zsbq2mpg.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-zsbq2mpg.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/245daaff-a42e-4f2f-974e-35cbce9a77a7\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-4w10cjua.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-4w10cjua.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3aa987ee-5fbf-4cb6-9299-41ac69f21f9a\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3314' + - '3642' content-type: - application/json date: - - Wed, 15 Mar 2023 11:06:07 GMT + - Thu, 15 Jun 2023 19:35:22 GMT expires: - '-1' pragma: @@ -588,60 +704,65 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.24.9\",\n \"currentKubernetesVersion\": - \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-zsbq2mpg.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-zsbq2mpg.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/245daaff-a42e-4f2f-974e-35cbce9a77a7\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n - \ }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-4w10cjua.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-4w10cjua.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3aa987ee-5fbf-4cb6-9299-41ac69f21f9a\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \ + \ \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"\ + enabled\": false\n },\n \"workloadAutoScalerProfile\": {}\n },\n\ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '3557' + - '3885' content-type: - application/json date: - - Wed, 15 Mar 2023 11:06:07 GMT + - Thu, 15 Jun 2023 19:35:23 GMT expires: - '-1' pragma: @@ -673,60 +794,65 @@ interactions: ParameterSetName: - -g -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.24.9\",\n \"currentKubernetesVersion\": - \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-zsbq2mpg.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-zsbq2mpg.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/245daaff-a42e-4f2f-974e-35cbce9a77a7\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n - \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n - \ }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-4w10cjua.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-4w10cjua.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3aa987ee-5fbf-4cb6-9299-41ac69f21f9a\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \ + \ \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"\ + enabled\": false\n },\n \"workloadAutoScalerProfile\": {}\n },\n\ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '3557' + - '3885' content-type: - application/json date: - - Wed, 15 Mar 2023 11:06:07 GMT + - Thu, 15 Jun 2023 19:35:25 GMT expires: - '-1' pragma: @@ -758,59 +884,60 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-zsbq2mpg.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-zsbq2mpg.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/245daaff-a42e-4f2f-974e-35cbce9a77a7\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-4w10cjua.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-4w10cjua.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3aa987ee-5fbf-4cb6-9299-41ac69f21f9a\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3314' + - '3642' content-type: - application/json date: - - Wed, 15 Mar 2023 11:06:08 GMT + - Thu, 15 Jun 2023 19:35:26 GMT expires: - '-1' pragma: @@ -844,15 +971,15 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVUxdWVUUlplbE5XV1RWelNGbzBMM2RxYzJSa2EzZDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDAxNlJURk5WRUV4VFdwVk0xZG9aMUJOYWtFeFRYcEJlazFVVlhoTlZFRjVUbFJrWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNqQk5lRFYwV1dWVloxb3JNbUp3T1ZST1IyTjVNVk5wU210TE1uSnFNbE5FUm5aclVHOU9iMVJRY0hCVFNVeFRlREZpYlRBdmFGazNRVGxVVHlzdmJpc0thbWxFUm05U1ZFOUxjazFLUW5WWlNuVTJTMjV4YldsVFYwTnVTaXN5U21KeFZGVllUbGxxZVdrMVoweG5jbFZWYTFoQmRYZzVUVmRaY0cxQlFsVnFWZ3AwTXk5aFVIZHplazFqYTFOT1pqTTRhVXB5VlRSb1VtcGxZWEptY1hCVFQzTnFPRkJHVjFaU2JuVkVTelZXUmtsQ1kycHJUVFJSYWpkUVJpc3JVWGhEQ2taVU5VZG5OakZZYjFobVIyNTNlV2N6Y21aWFVXODVkMlF6WXpaWGMyTXZlVVJFUVN0V1VXRmlPVEk1VW1ad05qVlBOMVo0Y1VOTE1XRkJlbEpzYmt3S1dIcDZWWEZuSzJ0WGJtTlRaMGxVVGtOaVJEWkZTMUJ0Tm5sUE0wd3pRMlpXSzFWWk4xcG9Xamh1VFZFdmVtZHRXWE14TTBNd2ExTnJielpyUjFSRE5RcEdWbFZVZEVKeGNEZzBNazlEVkdoUlN6QkxVVmxpWXpWeFMwa3JWbGhFUlVzckwya3djM0JtUjJaQ1NEWldhRVZXS3pBcmR5OTJURnBVT0UxRWVtZENDa0Z3TUVsT1ZsRmlXa2NyTHpOSlMwMDNha05NYWk5RVdtTndLMjluTlZoSVNuTTVNblJ2WWpGVU5Vd3JOVEk1UWtSQ2QyZEtUWE0wYkc1bGIweG5RellLTmpWc01tOTBaamMyY0dwRGVtTjNOVFZpZEhWSU56ZDRTVFl6Y1VSWFkzcEdOV2h3VnpSTGIzRllaWFU1ZFhadWNVWkthREI0UzFGalRpOW5ZU3R6YlFwamJXTlJOVzVSUVM5VmQwZ3ZVVWgzYm14YU4zTjZkak0wZWl0NWNVUk5VRnBIUnpBNVRsSXhUa3BSYW01Q1EzSlROWFJWTVhVclYyVTNNVll5VFdoU0NqTjRjbmwwWVV0V1ZtaFJRMVpZYnpkd1VHMW9WMHh5WVc5R2FFRlNWa05CTVN0ME16RXdjWFJEWTA4MlZVWkhjMkpoYlVGRk5uWk9jSFE0ZURkVU9Fc0tNRVYxY2tWTmMyY3JRbGxFVm1GNmJsZ3ZUVU5PSzJ4Vk0yWktkbGRuV0doeVdtMUJPVTVFYWs1a1ZVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1RDdHNMMmgxUzBKcFZrRjZiM1pFQ2xadlUxcDFibWcyZW5OWmNFMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlEzazVUbmRGYkc4elZVeEZaek0yY1VKblRrZHdVVE55Um1FS1VFTk1lazVsV201VVRWcGxaMXBNWkRGM1FrNWhXVVptYlRsUGIwMDBTVFJXWTA5bFQweGpjRXBUYm1seGEzZ3JiRXBzVUVOd1JWUjBPVlpSZDJrdmRBcFlabGwyWTJ4eFFUWkNiMUJEUmxGMFNqWTVWbWs0UkVkdmFrSlhZMnA0THpSNksxcFdjMlkzY1RWaE1WQnJaalZPYXpONlYyZ3dRazR4WW5sbVMyUk1Dblk1YTFwbFZHMDRNVlp5ZVN0dkszbDNUVWwyVFdOblUyTmFXak5RWkc1M0wxZHBVRE5xUm1GeFltZFZiRlZJT1VKWlQyNHpNR1ZYVldaQldYaFVWVXNLTURKT0t5dG9WVkprVldKbWRGTTFPRUk0ZDNsWldHTjBaV05aYW5Nd2RsY3lla2s0VW1aMWVYaHJNMGd4Ym1Wak1UTk9TMmRYTm5WNVZXUlhOSFk1VlFwdGFtbG1TalV6U1hWUmFpOHllWFpFUWpWQ1JYaE1ka3BSZGxsbE9IZ3dWM1ZOZGtvdlVFcHZWMmRQYjBWd2RqRmFOWEJvWkV0VGNtaEhWbFY1SzNWRUNuQnlTelptYTNOa2FuUlpVM2hKZEVrNFVYZExPSEpVTTJaWlIyRmxWa040Vm14U1NsSXdkVk0wYjAxSE1uSnZkR2huUVM5dmJuRlpTMmg2VEU1cFkySUtiRU5OU1VGelUyMXZObkJDZWxWSWFHUXZWM1IxYmpSVE9WaEVZMGhvT0dnd1lXZGFiazlOVm1Vd2QyRlVVMjVXUlU1eU5TOHhNakozVFZRemFFeFhkd3BGZVZvNVYzb3dlRUppTDFSWVRVUndRMDhyV1VnM01uQjJNVTlhUW5vMFdFTXpVSFl3VVdnd1QybEhXbmhEVlVWRlFXVmpZWHAyYVVobFNrMVFVWE5NQ2xkVGRIbFNhMGxRYm1adGVVVXpOM2xPTDNaRVUxRmlla0pSVkVWRVlrd3JZamx5YVVFdmJubFBRME01TVU1a04ySmlkMU5DTVZkclNFaFZkV1ZrUkZNS1JIRkZORlpHYkVSM1NVTkZWMWNyT0ZsRE4weFBNRFZWWVRKaFRIRlVaM1V2ZERCMmJ5dG5aM1ZOY2tGTGFWUmtXV05UZGpKUVZqSnVURk4xWlZKdU1BcExNamxTVURaalpUQk1hSEkxU0dGbFltYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zcGx0aDZsei16c2JxMm1wZy5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHNkNWE2Ygpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHNkNWE2YgogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGNhdnI0bXFyamtfY2xpYWtzdGVzdHNkNWE2YgogIG5hbWU6IGNsaWFrc3Rlc3RzZDVhNmIKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0c2Q1YTZiCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGNhdnI0bXFyamtfY2xpYWtzdGVzdHNkNWE2YgogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVOWlOWE5KU25wcFFteHhNREpwZG0wdlVrbGtjVGgzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwMTZSVEZOVkVFeFRXcFZNMWRvWTA1TmFsVjNUWHBGTVUxVVJYZE5hbFV6VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJkRWhaUjJKMlozSkRVVTl0Um01Uk9Va3pOMklLT0VWbU1EVlVWVVpESzBaT1ZUTnBNRFIzVVVWa2FIQjViRUZ2Vm5keFlWSldLMlp2Wm5wdVFWVmpSakZGV0ZodllYbENPRWRtY0Rjd1pHWnZWa0p1T1FwR2FVdGFhV3RzVFdaUlUzUkRkRGxOVVVjMVZtODFNMWhoTkdWUWQyWktlR0pvUm10eUwzQjVUWGhZZVVKa2MwWkZjbFpvYldseldqSTBUMHROYVdOUkNtbHZURkJMUkdzM1MxSTNhRlJsVkhwM2NWYzBMMjF1V0dsWVlXcERTM1pxZEhkT1NuVllNQzl0S3pBMFpDOVRSRVV2UjNoa1IzbHVOMnBCYUVwelZGWUtSV2xNZEROd1lXZFVWVXAzU1U5a1JHVkhOMmhEWm13eFRsTlJkbVpoTTNOR1prNDVibmxQZDA1R1pEQTBTVnB6T0VOcE1qVlFWek55Y1ZKbmVXUTVWQXBDVms1MWVXNVNibFZaYTBwM1owTlRWMVZHTUdaUVlUY3ZOVFpVS3psb1dVOTJXblJ1VFZJNVFWUTVUVzlFYTBaYU5IVlhWRGRWTTNaNWIzZzJUMU0yQ2paaWVtNVFkVmhwYVhwVGVUZHNURzUyV0hoU2JHcDVNVVF6Y1haeE5HazNSM053YVZreFZXSmpTa040WkdaNU9XOWhMMVI0Vm1wbFJUVnJSVGhUUTJnS05XTTFXbGhpWjNaWWQzZGFlVXB2WkdWdmJIRjVaRlZyT0RCcVJWSmthRlJSWWxaTGMzQk5lRkUzTm14NmVFcGhXV1JUTjFOemMxRk9UVkJHY0cxVGVBcEZPVFo0YVZaMU5ESkVRVlptYlRKVGFWSndkRzB5VWtacGJqSTRTbmRoVTAxdVdYcGhSRzVRVmpnclFXc3lWVXBaT1dGRmNtbzJTSEpDY1dSdU4yc3JDakZ1ZWs4M1pXZ3daMU5JZEVST2RsUlBia1IyV2twak5EaHdOMFF5V0M4MFZGbGlhbFZrVDNoUFNWcHZOV2xSVEV4TVpHbGhabW8xZEZSNlJXVmlSMjBLVmpSQ1kwTlhjbmhRV21sd1JIUkhRVGxhY0dzMWFVeFNRbTFrWkZkNE1saGlOeXRsYUZoalFtZHZlbkZXWmxGU2QwVTNRMnBIY1ZCTlltaDBMMmhxZHdvMWJtWk9VR0ZKVkV0WGRrUXZaWFJ0ZDFvM05XeDFWVU5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZkalpZSzBjMGIwY0tTbFZFVDJrNFRsZG9TbTAyWlVoeVQzaHBhM2RFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJRU3RNV0U1RWJXSlJjSGhFVTFCVFZsQnZjUXBMVURWU1IyVmpNelZST1VFd1UyMVFWRTlZUW01RFQyOXlSVXgxTVZKdE1qTk1aVEZqTUM5VGFFRmtkM1ZDVEhkYVZsTktLMGRKVG10a2VrbFRSWGRoQ21ONGNrbE9NelptTVVOTVEyRkpkV0V5UkRreVNYZHZaRGxJTDNCNE9XaG5TMXBUWlRWaWQxcEtTMVI0VTI5R2VHVkdWV2xRTlROTFp6bDZkVzVuVEZrS2NtVlpiRTVwU0ZoNVZ6a3pXRXMxTDIxWWFUQk9MMFo0UlVGVFQxWjRRVXhwUnpGVmMyZElha293UkdaeWJGb3JkVFpXWnpWc2FXaGFLM2M1Tlc5aWRRb3dOVGxtTlVkWmVtMTVVRU5KZHpoeFdpOXdWalJpTmpjckx5dFJNVFYyWkVKVVpVNUxWbWRFWVZCUU1rdHFSMk40VTAwNE1UWmpVR3BoU1ZrM2RVOHlDakl2WmxaQk9YaGhUM2xTWVVkdlZ6RktUVk15VTFOeGVqVkROV1V2ZVRrNVNYZHlVRGxuVDB4WFYxa3lZV1ZaTWxWT1ZUQTJhVWw0WldWblVUY3ZWalFLVkdwdFFteFBTVEkxYjFsNmQwUlhjM1ZpY1daSmNVazRNRFY1TjFWMlduRlJXaXRoWjNZMmNXdFRNVm95Y2t0SlUwTlNhekoxVkM5dVRFY3pLemhtVWdvclJWWnBhVTAyYVdaYU1VSnNhMWRUVVdKclJXNU1TRkk0WWpnclYwOW5jekZ1VjFWaE0yOWFTRWN6VTJkeFREbFljMXBqZWpOWlVteEtUbmhYT0VwTkNsb3ZObFpMUVdSWWVXMDVhWGRNYW5Wc1oyRkpjalZxUjI0ME0yRXdZa1ZRTm1KVVdrZEJWMGwzVmtoVWFrYzBlVlFyTUcxclJXNHdVSE01WVN0WVpqa0tVR2cwVVZRMmRFOWFhRlpSYkVjeVQwSlhkRGREV1dGTlEydFBjblZMYVVsTFVGWkNia2s1YjFZek4yTk1XakZxYmxseE5YcDFTelEyUVcxWWNDOXdWQXBDVERKUmRYbFBkMk12YW5KdFFuTkpkVlJKYkdWQ2N6UlRiRFoyYlhkNVJ6RmhNRUZ1UldWeFJrbENlRkE0WlZGMFZ6VnZUVGxFYlRaUlQwRjNSVmRpQ2tKVVFXaG9aV0ZoY0hKdWFuSjZkR2d2VmxsVlVtRkNaZ290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJkRWhaUjJKMlozSkRVVTl0Um01Uk9Va3pOMkk0UldZd05WUlZSa01yUms1Vk0ya3dOSGRSUldSb2NIbHNRVzlXQ25keFlWSldLMlp2Wm5wdVFWVmpSakZGV0ZodllYbENPRWRtY0Rjd1pHWnZWa0p1T1VacFMxcHBhMnhOWmxGVGRFTjBPVTFSUnpWV2J6VXpXR0UwWlZBS2QyWktlR0pvUm10eUwzQjVUWGhZZVVKa2MwWkZjbFpvYldseldqSTBUMHROYVdOUmFXOU1VRXRFYXpkTFVqZG9WR1ZVZW5keFZ6UXZiVzVZYVZoaGFncERTM1pxZEhkT1NuVllNQzl0S3pBMFpDOVRSRVV2UjNoa1IzbHVOMnBCYUVwelZGWkZhVXgwTTNCaFoxUlZTbmRKVDJSRVpVYzNhRU5tYkRGT1UxRjJDbVpoTTNOR1prNDVibmxQZDA1R1pEQTBTVnB6T0VOcE1qVlFWek55Y1ZKbmVXUTVWRUpXVG5WNWJsSnVWVmxyU25kblExTlhWVVl3WmxCaE55ODFObFFLS3psb1dVOTJXblJ1VFZJNVFWUTVUVzlFYTBaYU5IVlhWRGRWTTNaNWIzZzJUMU0yTm1KNmJsQjFXR2xwZWxONU4yeE1iblpZZUZKc2Fua3hSRE54ZGdweE5HazNSM053YVZreFZXSmpTa040WkdaNU9XOWhMMVI0Vm1wbFJUVnJSVGhUUTJnMVl6VmFXR0puZGxoM2QxcDVTbTlrWlc5c2NYbGtWV3M0TUdwRkNsSmthRlJSWWxaTGMzQk5lRkUzTm14NmVFcGhXV1JUTjFOemMxRk9UVkJHY0cxVGVFVTVObmhwVm5VME1rUkJWbVp0TWxOcFVuQjBiVEpTUm1sdU1qZ0tTbmRoVTAxdVdYcGhSRzVRVmpnclFXc3lWVXBaT1dGRmNtbzJTSEpDY1dSdU4yc3JNVzU2VHpkbGFEQm5VMGgwUkU1MlZFOXVSSFphU21NME9IQTNSQW95V0M4MFZGbGlhbFZrVDNoUFNWcHZOV2xSVEV4TVpHbGhabW8xZEZSNlJXVmlSMjFXTkVKalExZHllRkJhYVhCRWRFZEJPVnB3YXpWcFRGSkNiV1JrQ2xkNE1saGlOeXRsYUZoalFtZHZlbkZXWmxGU2QwVTNRMnBIY1ZCTlltaDBMMmhxZHpWdVprNVFZVWxVUzFkMlJDOWxkRzEzV2pjMWJIVlZRMEYzUlVFS1FWRkxRMEZuUWl0cmRGaGhWMkZvWkhKNmFEaFJWbFp6YjNoelEzZHZWM0pwYlN0aGMwcEZOaTlqZG5BcmNsSnBXR2hUUm1KNmJIRkRUV2xwTTNBNE9RcE9WRmRIV1cxdFNrMUxhM1pGYkRkYVNHTTFhRVpqTXpONGVUWjZjWFJ6UlcxdWNsTnhWV1o0S3pCTlVsbG9TV2hMTmtkbU5IcHdZWEkwUlU0d1dtUk5Dbk40TkUxYVRsVllaRVpLZG13NVlqUmxhMmwwY0dWd01WZE9PRXRPT0hWNlF6aHNTMEV3V0VkRE9VNUtZMFpHTnpaTFRISTBUa1pxVlV0VWMyaGFjbVFLVW14TmNVODRNME51VkdGbE9EUlJha0U1T0ZwbGNIRlhRbUpNY0VGTFZGVXpaRTVpZGxWRVIxa3dOelJzZEZONU1sVjRlbFpKYTFjemNteGlaME5vV2dwVFdDOWhhRzlyVFhac2VVVmhhRzh5U2pNMlNrOVFVa2RSTmxOSlpFMWxaSEYwTWxreU9GTkVWbFZHVVRVd09HTkplbU5xYVVsbFJrOXROVkZHVHpReUNqWmlOQzg1VEZRM1NVZFBRa0l2UVV0M2FrWjViazVpWVRScGRWTm1WR1pCUTNwM1VYSnRUelZoT1UxNlJqaHBjalF2VGxOYVVGTmljekUwWVRJeU0wd0tiV0ZNYm01VmVXbFZkMjk2VGpGcVZ6RXhaR2N6UWtWNlRGRldNVXRyZFRJcllWSm5MME15ZDNsRWRXUXhTRVl2YVdSMlNVNVRPVkpPVEVWVmNtOW1aZ3BoYjFGVE5Tc3pVRlJoUVVWNmMzTXhOMjVRVW1FMlJIbGFTMFlyUlVrdlJtUnFSa04zUkdkU05rdHhSazFoU2taclkwNUJNVGMxZVdoVVRXSnFVV3BGQ25OUlVFNVNSVlZYVFcwNGJWcDNTM0JQYlhacFJ6bDNRVmhxTkhKVVJWQmFlR04xVEVOMFJuSm9iRzByTWtNclYyNWFVQzlTTVVvMFpteHBPVWRpTVZnS2RIaG5RMlZJZDNkWksyeGFObWhDV0RKdk1uZEVkV1JpZGxOaFowMUhPSEJwUzBWNmR6Qk9URXRLVTJnNFVXOU9SVko0Tm0xcmNtc3hWa1JEVW5GS2RBcExNamx3YjBadmRUWndRVlJPWTB0aU1tMVlRM0ZtY213MWVWVmxORVZSU1hKbldETkhkV3hGYTBORFJXNUJXbXRzVVV0RFFWRkZRWGMxU25OamNVMW5DalpFU2pOemNYTktRemc0Y1dsdVVWcG1lSFpvWmt4MFZUVXljMFJEYjFKcFdVc3llRlZzYjBkMlJsUm9aWGRhVG14aWFWSjNkSGhZUTFSb1ZVaGlhMUVLZWxObE1FbGpjRk40TXpkaldpdFBaMUZGZG5Zd01GTndjREp0VnpWeVR6Tm1hRXhSTldsb2RWazRXbEpMUlhGRlpTOXpRelpuTW5ocU9ITm5aelJGTXdvck5pdFhkR05ZWlVGdmRWUnFVMEl3YWpCMVRqaHJSMk5hTTFsRE1IZ3plVlJzVmtKaU5USjNaMGRRTUZSdWFGaHVaR0ZMYm5oMFNqQklSakU0U1ZWVENrbEpWelpYUmpGc1RUaHdlRXMzZVhWM1VqWmtSVU5LUjJaVGNtb3dRbEZpV0RocFNIWmtXbVJvT1dnMlptZFZaMGN4Y1RnM1kwVjRkVTVQZERKd1pXRUtTVE5VUkdNemVVTk5Va05OTkU1dU9HeEdSVWhvTjJ4MlRGUnZUVFJMVERGcFkzUjRlbmNyTjJwa2VFMDFVV3hzUVVkblVFbFhSV0YzZW1SeWNGZ3pkd3BNWlZSUVZFVlpZbEEyTUhWemQwdERRVkZGUVRkRWFGYzRMMW95TjNNNFIwWkphMXBKZGt4SGJYTjFTVTQzU25GclFtTTVhWHBGWm1ocmRESnFZUzh2Q21rMGVXNXFiM0pSUkRkelRETjFRVmQ0Y1ZKaWVTdEZkRGRsYjNoSlNEWXllRXhwV0hSRVVIRlRhRVYwYld0T05HbDRTM05yYzJWd2NFWnVaamRLUW5ZS1lqbGFSWEJhTHpNelNFeEtUalJYV0ZwQlJuUmlTVFpaUmxSYU9XTkhSV3dyVG5STmNEaEdaMnRFWkdwYU5Yb3pXbk5yYm5seWVuSk1hVGxoYXpnMmVRcExNbEJZTkZoaGRtbzVVWFZ0Wm5ScmFsSmpTblpTY2pOaFUyWlhObVpIU21kV1ZGTjFhalF2VlZCQ2NUSnhWV2h1UjJ0c2JYTTJaR0paTjNsMmIwRjVDazAwSzNoMU56a3dkMGwxVjI1VWVWSlNZblpVTkRZM1pFSjFXR0p2ZWtKbVJEUnRSMDVhYW1OVE0yRktUa2RuU0ZOVWJsbHlWMnRQVHpVNFVXTnRiRXdLV0VSWVFXc3pNSGwyZFhCb1IzcDRUMkpHUTBkR2J6TkVSRXhzTWs1WFRrZ3ZURnBQY0ROV2QwSjNTME5CVVVWQmFqVlNSMFJtZERWUmVqaGFOVmt2ZGdwMWFqTkVjVFZaUlhsbE5qaEpiMmxrYTNKQ1luTlVUSHA2Y1hBeVJHeEhUblJIU2xWcU5qbFhPR3cxYjJ4TWFWUktWeXN6VVZsTlIzUk1ZemRhWW5SV0NpOXhVa05TTDNONlVWVkVLM1IzYjI1NU5FdFlhVXBRVlZkTWFWUnhVVlo0TVdOd1dUbHpNazloYWpoclMzQlZXRVZOZHprclNUSTNabWR0ZUVOWk5WVUtjVmRYZWxVNU4wbzVRa2Q1UTI1TWF6QnZaM1pHY2s1aWJYVnhOR1ZoY3pWVk1tdFBhVlJYVFdwYVNtVm1kVlJZTUdwSllVNW9VbUk1U1dnMVFVUnlRUW9yTnpkaFUzaFFaemhIVERkVFJXTkNibEU0U2pWVk9UbHpWbkJXV0dGbGRGUjJaemxLV25VMWMwcDBla3hPUjNwSlZrRXllVTAyV1VkUlR6SkpiV280Q2xrck1GVnZSbU53VDJaSmNrcDRaV0ZoV1dVcmQwbFRhVFI1UkRkVmRISnZRbEZSUWxvdmVqTnhPRFkxYmxCWVpsbG5ZV292ZDBaM1psTkZTV3cyVXpRS2FVa3djVkpSUzBOQlVVRnphalZuTDI0eUwybE1kVmRpZGtJd2EzcGFNbEJzTDA5VVdtcElZVU55YUU5aFN6ZHJkVFZ0WVhOMVpraEpTSEF2Vm10d1dBcHVWbHB2TjJWaUswSkJWbHBIV25BM1pHbEdZMWQxYzBwbmVsVkVRbTlSWkVGek5sTmxhMWhyU0d4eE1YVmljVlI1VjNsSWFVNTFjM2RyVUdrMWNVWjNDbFZoYzBwelZXSlZNRGQzWW5KWE5tUkhaRVpwUVUxSFZVSXpTMWhrZEVKTWFFWmtXazVZUVhGVlMyOVZRV0l4ZGpCbWEwcFNkMWQyVkRjNWNYaGxVSEVLWjNkR2FtaE9kamhFWVhWR2J5c3JiVkUyUXpCTmVEbFpZVmhNZWs1VmFtMWpUMUZJWVZBeFJrd3dVM0o0YlhoSFVHRkJiazVpU0VOeWEyMDVMME5xTHdwS1dsZzVRbGMzTWswMkswOUdUeXRZU0Vsa2NHRnVaVlZUT0VsdmJrUlNObVU1Y2pSTGRVOXpLMW9yV2xoMVkxUmphbU01UkdkWWMxZERkVU0xZVhoTENtWmFXbWc1SzJSdVdWY3hZVVprV1VWeldIWlBTMGhPZEVKamMybHdaa2hFUVc5SlFrRlJRMDFWSzNGd1FVVlFOSGtyYTJwT2J5OHhUamc1SzJONlVFb0tUakJFSzFOR1pXbzFjMGh0VFdoUlpEUjVXWEp6TUZaeFUwSlNkSEozUmxOUlRWbFVSVkU0TUdKdFFWVlRMMGhOV25GNVpVdExTVzlyVjNkT1UxY3lMd3BuU0hKcVZsVlBlbXdyVERkbVJ6aE9RbTFHZVhOcVYzQTNhUzlzVjFSclNpOVpkM1kzVW5CYVdYUkRXbFpHT1VwNFRrWnhkU3RIZVVSTVdFNVJkSEo1Q21scGNUbG9VVmc0SzBoVmFVRlVRemRwTTJZMllYTnFTSHBMYVU0eFpXRTRRVTVZTm05NFRrUkhhRTR5TjI5WVNGbFZMMGNyV1hVellWRnVRVFozV0dNS2QxZzJjbmxUTVVNMFpYbDJLemRGZFZKSEwyTklLemRTTm5reWNHeEdiVlZuUkVORGVFZEVLMncwYkcxUmRFcGxSVFIwUWtGdVRWbEdURXBWU25kYVJ3bzRSV1pIVlZSYWFqQkhObTEwVkZoelRtc3JPR1pPTVRNNGJEQjRUbTR4VjJRMVFWaHlaa3c1V25KUlUzTlFZM3AwWkN0UFMwNTBOV1JUUlRFS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBjM2Ria3NlNHhpN3VwdjIxYTNoZmw3bG1mdDloYXRlM3FudjZubXp4ZHltYjZhYWNoMGxuZzdxZm4wOXQxaHZkOXM0MzYxemhtbWRnOWJ1bHowNm5iM2R3YzZwZDcwZWM2NDh4MDc3bTB6ejBtNnZvMnU2NGVwbGJoY3g2eGdydQo=\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVU1TWQwaE1jV1ZXUmpnM0t6RmFjREowVlRWWVNEUjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJURk5WR3Q1VFdwSmVGZG9aMUJOYWtFeFRYcEJNazFVVlhoUFZFMTVUV3BHWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNucGtRV0l2U1ZwM1QzQk9WR1pzUVcxaU1rdGFTMjVGVmtKMFowNTROM0EyWVZWTGVrZENPRWxFYUdWQlExaHpPVmhTTlRWUVMwdE5SbTFWYlVwNGJERUtPWG8wWWtWV2NrRlZkVEJDZEhwMVRHcGtUM0pGT0RkSGFFRmliMGM1ZUhKelkzVnZSSFJLY2pkNllpOUNXbE12ZHpsbFdteFRRak01TTFWdGJWYzFlZ3BISzA5cWJuQndZbmx2TUZveldVMUhPWGxESzIxUVNUWmhVMWRyZGpOeWRGbG1lVU5wYm5sMVZXNDJNamhUUW01ak5qZGhjRTVOYjJFMVdtVnhibUUwQ2pCTldsVndRVkJpUldSUVMwOUJMMVk0ZWxBMUsyMWxaM3BZYkZRNU5YWnhTRWt2VlRaSWFUazNNRmMyZFhkemMwUjZkME5NVUZRNGVVRXdXbVY1UVZrS2EyNHdSR1I1WjFSQmFraFFPWFV5TDJWa2FrOVdUM2RQYW13elFVOUJVbkU1Ym00MFVFMUtUa05ZU0VSVFVrWnBTMlJUZDFKdVptVlBkWEJNYlhkWldnbzJaMGx1ZUd4alltVlVOa2xpV0RCeFZtRnBhMVJCUWtkNFExWjRUemwyY2tSNVRsRjNlVFk1WXl0clVUTllZbVZPYTBoUGNHdHNjWFZ4WkdaMGEzZEJDbXBGZVdSbWR6Tm1kMkp0Wm1kRWFrMWlUMlptYTFsQlJEWTFOblJ1Um1wMWNXdGtZbWxEYnpoNVNFUlRiVWhrUlZOR2RtMWpaMUpuUWxKNU9UUkZUVElLYW1obmRHcDRMMUI2Tm14VGNVTlhiRzVDVDJrMWMwazVNMlpETmpndk5td3dUbGw0VURaaE1qRkdUSHBWVlhGSGQwTlBTM0ZvV1hsWk0zazRNa0pVYkFveVdUUkxTbFpMUW5OVlJYcGhlR2xWZDNaWFNGUTNURkJtUTNWalNISlJRVEJVZVdOSWVpdExWa04xUzBWTE1YWlFRbGxTYkRaMVp6ZEpaRWh4TUd0VENrMXlaRUoyWldveFNERjBVU3RzWW10TmNqSnZTRTlwTTJNdmNXZE1NMGt5VlhkTU9XTkhXWGhSVlhsb1NWbzJOVFpLYjBKYVJXVkVRVlZXV2pJMWJrd0tRMjlpZFUxNlFVMUpaVmN5TWtwM00yWTJXbmNyZDNsUk15OVJLemxoZEZGVWJIaEZORnBaTm04dlZVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1F6QnlVelZCVm5RM1V6bHVWRWQyQ2tFeFVsUjBZMHA0VUZSUE1FMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFWTTFVMjl1VUZSWU1HbzVRMGRPV1RFelpqbEJaSEpEWVV3S1JubHVWSGxaVms1NlFreExZVk52ZERSWk9VTTFOM1k0TDFoRk9YQlFNMlpqV25kd05YUXdOVFZMV1ZCNlRpdFpVRk5xTlN0SVVGZzFjazF5TUVWeVRRcHJURTFTVkZSNVUzQnJUR3RxU1ZoM2NFZEljSEYwYm5kelJqUk5lV0p0SzNoc2J6SXJORWRKZUhvNVQweHJOa05wZUZVd1drY3JZa1Y0TkdkNGEyWktDa2huVmxsMWFXOVZWRVY0SzBSaFNHSkRUWGhTYnpKb1QxSkVjRGNyTDBKdE9HZDRNVmRDTDIxTldFTmhTMVozTURoc1pFeFVVRzVwVm5KdlpEWXdUa2NLYjNkVlN5dFlWa293YWtveVNsYzVRMlJwV2pGUGVtbDFPVzVxYUhwaFJuSjJSVVpKZUhseWFIazVhR3BQS3l0clJsZDRRa3hOZVdwVVkwc3lhMFpYV1FwQ04wOTJPVWxJYjNkdGVFOTRNakJaWTNaWEsxRndPVVpzZVhKTWF5c3pkMHhXUW1NMk9FbE5lV281VlRkRGRuVjVhazUzZFZBeVJrOVhSM1l5VmxSakNrWnVkMkY1VmtNclJEWnhXbTFCYm1kRlVVdHNTbkpXVkZSS1FWUTNWVkJ2Wm1SNWVFbFpVM0JVZGxCYU9HRllNWE4wTTJKVWF6Sk1Oa05TY1dFeFkzSUthR052VFdSU1dFcEdOSGN5V20xa1NrSlpNM1J5VkRGNUswMVBOME5tWldzeFpUVlFlakowTWxZMk9XSnRiMk41YkU1cldHc3hkM05tUTBkdmExTXZRUXBuTW1kMGJYRnlaSGsxUjNSc2RHZ3pVVzRyTm01amNEY3pRblV5YUdkaGVXNVBOa0Z4VFZFMldVaEtZM05YUTNVMVozRnhkQ3QzVERaUldrUjBiMUY2Q2tkUE9GVmxlbGRyVWtWT2F6SlNXRXREZFcwdmR6WnNjakk1ZW5nNGQzWjBlWEExTjJkSVdsWm1TSFJqWVZWT1RrUkdiVmszYVdWdVozbGpRek5EVEdJS1RVNTNVeXQzZFdzM2REWjNNa05WY0VJdlZUVjBNSFp0YVdSWlVqUndUbWd2VERkcldFd3hObTlZTmpVNVlrbHRaVEpUYkVwWWJqUkhSMms1VlUxYWRBcHBTVlJaVkZsdGFIbEdaRGxVZWtReWQwRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zM3dkd3JlNC00dzEwY2p1YS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdGtteGk3dwpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdGtteGk3dwogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGU1ZnRydjZvdTZfY2xpYWtzdGVzdGtteGk3dwogIG5hbWU6IGNsaWFrc3Rlc3RrbXhpN3cKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0a214aTd3CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGU1ZnRydjZvdTZfY2xpYWtzdGVzdGtteGk3dwogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FWQjBNRWxRZWxCWVVITkthakptTm1Wd1pWcFdkbFYzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFSVEZOVkd0NVRXcEplRmRvWTA1TmFsVjNUbXBGTVUxVWEzcE5ha2w0VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJkREkzVTNNd1VXSnlWRmxIVFdsWE9HSmpjekVLU1RJeE1UaHJNMEZYTkRFcmJGbzRlSFF5Tnk5WWFIVlBSazFJVmtOMFVXMTJhbUlyV0VzeGJubHdVVVZLUjIweFJrRkRkR3R3TkhaMFMwdDVUbUY2V2dweVZWQjJhMHhIYlZsdlIzSndlamwxUlRGNFJscDZiRGM0TjJ4SkwyWlBSbmd2VG5seVpUZFlkME1yTm5CRE1VUlpOMWxPVkZOd0swSnNlazkyTW5jekNrcE1RamQzVlVOcFZqRlJSbTgzYVROV01tMVphVGx1UzFKME1teGxSM1FyVjIwck5ubzNZVzl4VXpoREwxRjVTalJXTWpKVVlsaGhNR014UVZCRWVGQUtORVZVYTBremQydHhSaTgyVnl0RVoyaHFSMlpzYXpVd2NrZHhRV2xpVkhOdlJHNVZiVE5JWmtwelF5dG1ObTlaUkd0d2QwUk5TbFFyWlRoSVMzQjBPQXA1UkdWd1FXTkdSazFwTkU1d1p6TlJiVmMzUzNSRGNqWmtTWFJzTDA5WloyUXpNMHBKY20wdlFtbFlNMjlxZG5KQ2NucFRTVzkxVVdWVVJsTlNVRWxDQ25kbVNWRlRWR2swT1VWVlVuVnBNMWxVVVc1dFdHdEJiV3hoYlZKSmVtazRWV1ZMU1hOcWFrNTZTR2xsUTFGMVpucHRhR3BsVTI1QlkwTkJhVFYzVERrS1J5OHhZa2QyVW5Cc1IyRTBhWFZJYUROMWFHMVRZWEl3ZG10aVRpdENPV3BsWkhvell6YzBibUpaUTBsVVJVaEdRMnhaVmk5c1EzWklWVkJEV0hVNGJ3cFdaRk5XZUVjeVoyZzJTRnBSUVZWb2JFRnRTVUl6Wld0dk0wTjZVRUpPTTI0MlRqUjFXSEZvV1VOVFZIVk5SRlEzVVZaQ2EyVnZkbFIzTmxWYU5YbDVDbVZDTWpsc1MyNXlhbE5rYjFSMlJHWnpaVTVwSzNvME5WcFhNbWRWV213d1RVdzVSekp3TVhGSGRGRnFPRUpwWVVWcGJrdG1MM0F5YzI1c1VGTmlZbUVLYVdwNk4xZFFiRmhhVEZJeVYyMDBUbmhwSzJsWVJuUk5PREp4WmpsUGQxTlFSRUUxZDI1UWRXRjJZMUF4ZEVoS1FYRlZaMHRVZGpoRE5XaG9kVUpwYlFwcE1VbDJhbVZ2ZWpOV1pVZDFZblExWXpGdlNrUlZjME5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZURk4wVEd0Q1Z6TUtkRXd5WkUxaE9FUldSazh4ZDI1Rk9VMDNVWGRFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJTVEZ0V1VsMlZHUmFTbnB6YjBwalFuQlRWZ3BsVkhaM1RHY3hiVTV3VG5Sc1ZXMDVMMXBwVkRGQlRtVnFlVXhLYTNSak56QmhTRnBGU3pkaVdrVjRjM2MxT0N0TWQyWlBlVkkxYUdFMFZ6ZFNURWxUQ2tkVVMxaFRXbkZGTnpoRmREYzRNMDVqUW5VME1FODNLemh4TVdSRmRuZFRTR05EV2xWbk1HVk9ORWxtTkRreGExSjJlRGhUT1dkM2RYRjRlSEZQYlRZS1puVlpZMDl3TTNGYWNXUnBhMWxLTDBrdlRFcEdNall3YTJKV1dUZFJUREZ6Y1ZGcFFUTklhV0pXVERSNlFtSm1jbEJ2UXlzMVFrdGxlVlZuWlc1UGVBb3hTWGhJU0hKQksyeGhjVU5YZW14WlEwYzFlVmcwTWxGMFVIWTFlbkpyWjFSTllVOHJVbFF6TmxSbE9VRlFZVFF4ZVVobVVWbFBhV0ZzYVV4dlRFMW1DbEJRUzJGd09HUTBjbTU1Tm5CQ2J6ZHFObUZYYzFWU05HaFlha3hsYlZaQlFUTkVSRlY1UjIwMGNHTm9VV281WkVSV05reDBiRVF3ZGsxSlVrSnNXa2dLVmxKd1VVeDJkbUpYVEdoR2JHODVSVTkxT0RkaFVUa3dSMWg2WmtaSk0wVTRRWFZJTkRKdFdrRXZkbkZWVGxsTVExUnRSbGh1YUZORVZFaElObXBqVWdwRWNXVkpOMWQwVUdWVWVYWndjM0ZNV21OWU5rMDJjVGxLYjFaWVQzZFhjbTlwYjB4cFFrVjRhRlV4YVUwek4yWkdSVVUxZGpWVlZUVkRSMm8wY0N0UENtMDBZVzh6THpSalJTOUxabEJxVFVOclUyRlJjR2xuUjJGREsyUlBTemR2ZVVOck1IZEdhMWhTWTFoclJYaG1lR3RNYVd4RVJUTnFSMnhoVW1SM1ZFRUtVbVI1YVUxMVVtNHpSRVZQTDBkNkwxTnZRMlppUVcxTE1WWm9XV2RVWWxsR1RIaHpTRTlOZDB4Mk4yVlJZakozV1dOUlNEQkRPV2hwVUdFMllsZElSZ3BDVWxWSVdHMDJXbk5aVUVWc1ZrNVJUa3A0UWpKUE1EVmlZVXN2VmpsT2RrMDFZMW96TWs1NWQyTlFkemtyYmk5eWEyTjFia0ZUTlhoSWFuVjVRMEprQ21STmFqYzBWMUpsTTFSb2VsRmlNV0kzWkZwUFJVRktVUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJkREkzVTNNd1VXSnlWRmxIVFdsWE9HSmpjekZKTWpFeE9Hc3pRVmMwTVN0c1dqaDRkREkzTDFob2RVOUdUVWhXQ2tOMFVXMTJhbUlyV0VzeGJubHdVVVZLUjIweFJrRkRkR3R3TkhaMFMwdDVUbUY2V25KVlVIWnJURWR0V1c5SGNuQjZPWFZGTVhoR1ducHNOemczYkVrS0wyWlBSbmd2VG5seVpUZFlkME1yTm5CRE1VUlpOMWxPVkZOd0swSnNlazkyTW5jelNreENOM2RWUTJsV01WRkdiemRwTTFZeWJWbHBPVzVMVW5ReWJBcGxSM1FyVjIwck5ubzNZVzl4VXpoREwxRjVTalJXTWpKVVlsaGhNR014UVZCRWVGQTBSVlJyU1ROM2EzRkdMelpYSzBSbmFHcEhabXhyTlRCeVIzRkJDbWxpVkhOdlJHNVZiVE5JWmtwelF5dG1ObTlaUkd0d2QwUk5TbFFyWlRoSVMzQjBPSGxFWlhCQlkwWkdUV2swVG5Cbk0xRnRWemRMZEVOeU5tUkpkR3dLTDA5WloyUXpNMHBKY20wdlFtbFlNMjlxZG5KQ2NucFRTVzkxVVdWVVJsTlNVRWxDZDJaSlVWTlVhVFE1UlZWU2RXa3pXVlJSYm0xWWEwRnRiR0Z0VWdwSmVtazRWV1ZMU1hOcWFrNTZTR2xsUTFGMVpucHRhR3BsVTI1QlkwTkJhVFYzVERsSEx6RmlSM1pTY0d4SFlUUnBkVWhvTTNWb2JWTmhjakIyYTJKT0NpdENPV3BsWkhvell6YzBibUpaUTBsVVJVaEdRMnhaVmk5c1EzWklWVkJEV0hVNGIxWmtVMVo0UnpKbmFEWklXbEZCVldoc1FXMUpRak5sYTI4elEzb0tVRUpPTTI0MlRqUjFXSEZvV1VOVFZIVk5SRlEzVVZaQ2EyVnZkbFIzTmxWYU5YbDVaVUl5T1d4TGJuSnFVMlJ2VkhaRVpuTmxUbWtyZWpRMVdsY3lad3BWV213d1RVdzVSekp3TVhGSGRGRnFPRUpwWVVWcGJrdG1MM0F5YzI1c1VGTmlZbUZwYW5vM1YxQnNXRnBNVWpKWGJUUk9lR2tyYVZoR2RFMDRNbkZtQ2psUGQxTlFSRUUxZDI1UWRXRjJZMUF4ZEVoS1FYRlZaMHRVZGpoRE5XaG9kVUpwYldreFNYWnFaVzk2TTFabFIzVmlkRFZqTVc5S1JGVnpRMEYzUlVFS1FWRkxRMEZuUVN0TWQwdGpjRkZWWnpWblUxcHpXRTA0V1ZSM1JsazFSWFJqUkVFMmJWUkJSbVIxT0RaMVVsVXpRMDgxVlcxU1ZXOHdOWHBEZEZFdmNncDVVbXMzWTI5M2J6Y3ZSR281UVhKcVptdzJOM2hNTDFoT1JqWnBkbnB2VTJWcVltMW9RVVF4T1V0dVZGSkdPU3Q1T1hvMlZtRkRjQzl2YTIxeVNpOHJDakpOTkhCS09GVkZOMUprUVZWVVNWaExPRmRJVlV0VlFpOWhVaThyY0dkd1ptdHFTMmhCUWxwaVZVRjVSVTlyVnpFclJXSjJkak5sV1dOd01ucENUM1lLV1UxUGVXWjFOWEppU0cwNVptSkNWV3BqWVRsbmRrRTBkVEZXTUhWTldVTlNXVFpFZVdVeWMyZG5TamRYTkRBelVHbGxUbGcxYkhSc1dHb3lTa1ZUZGdvMFdqRTVia3NyTTNoaGFtTkNNVFJQTlZRemEzQTJVblJVUlV0NksxUkxRa1p6ZW01WmRtUmlhVXRzYW5GcmVISlpXSEZCVldSV2EwMHpkR3RLY1RoMENqVXpkMkpyU0d4MlpGSkxTM1ZUTkdaaFpVdDZVWGRaV25VeFZHVnZTVEJQZWpkTVIzbDZPSEZCZVRGWVVsUkZOWEp5YTNZMWREaHpNSFl4YW1GTFdIWUtTakZtY2tobFVuVmpVekUwU2tOUE1rNTRNekZ1VVUxNldFZHhSeXRxTms1UVF6TTVjVFpDVEZaWlNVRnlUVkJZYlZncldtNTJibVJIVnpOVVl6TXlXUXBxV0ZoRlQwRXhkSGhIWldScFVVNUROeTlYTTFsNlJuQm9jVXdyZW05TGNERlVVME5XYlhOWmNFbG9hbWxWU2xCbWNWWlNUbUZhYW5Cdk56WmlRMUJLQ2tvdldGaGFkVWxpT0RONmVtSlhhRUV3T0V0S1pVMW9NVE5QZFVvMVQwNXBNaTlTZW05TE1FMUZZMWtyZUVwaVJHdEhXRXBCVEVwNGVFcGFURW95UVVjS1MwSm5NRzVoUWxKMWNUUmxZV3B2UlVkU2JXaFljWE16TkhZNUt6UkpkRmR4TkhkQ2FYcFZTa1JMYnk5bWRWSnBia3BKWlRJemNtUm9RV1JJVDJ3d1V3cDBaSFV4Tm5Fd1NVRTVWWEpqWlRRclNEZEVZVWhaTnpGb2VESnZNVlZrYm5oalJ6ZEllRmhNTUM4clFrOVhOMk5KVVV0RFFWRkZRVFZpZDFGV2NVaHlDbVl3Y0ZBNVFWSjJVVmd3UWk4NVFrWnhNVWxoUWxkbk0zRmFabEJSU0ZGNVpHUnNUbEZRTlZVd2NuRm1iREF5ZUd0M2FFMVBNbXBNU1RKcVQwOU9VMkVLVTJkVFoxbFpTazFSUjFoalVGaG9ObXBtVG05VFppdFRNVlZaVmtodFUwOUtPR28xVXpWek9HeFBVRTV5YTJWVGIyeHZPQzhyU2pORVFVVXdXbVZXV2dvNFNtaFRZbEJZVm5neWIzVlJSMlJHUVRSNk5HRlFTSEpsYzJ0cVJYTnlNa1JSU0UxaGJXWnNiVEptU2tOQmJXSmFWemN5Tm5SblQwVlFjV3haTHpSMUNubGFMMWRNY0hNMlZGTlpRWGgxZEdsdlJXMXRNVU42WTJ4NllYa3habVpvVW5SdWQwSmhURGs1Y0ZKTk1rWlhNVVZISzA1VmNtZE1WUzk1YjNjMVluZ0tPVFkwVEdoMlQxa3lRVmd4WWtWamVtcEZaRVpOUlRjNVlub3JORXRQTm1GbGRIQndUbkpsYkZaRlNrdHFTMk16UjBwMlkzSlBibVZEVEdwSk1GZFZPQXAxYkRONU16RlRaV2x2TUZZd1VVdERRVkZGUVhwSFpWZGpNSEpaYjFkUlNGVndUVVl6VkRCd1NYZ3pOR2Q0WXpCc09XRjVUM05VYkV0MlNVVjVSWFpFQ25GdlIyOU9ZMGc1UWtwUlp6bEtaSFJCVW05ak5qZ3ZiVWxGYlhSb2JYbFBZbEF2ZUc1b2EwUlJUMkphU2taVU9WbEhZWEpXY200dk5rTkhNVkZhTUdvS1dtUk9VVzlyVmpsMVFVTkVWVE0wVjB0SGRHNDVOVU5FYjJnMk0yaDVTVlYzTmpSc1JqQnVXVlpFZFc1V1RHSnJNV0poZVRCcGFsUmtObGRSZHk5VFV3cE1Wa3BXYkVaUE9VRTRNRWxMYVVoYVdtRTNNakpxWnpaTGNsUXJTMWR4U0hKek1VNHJRVU5VUjBFelZFdFhUbTQxU0doTGNsWm5aWFp1Um1GUFNVWXpDbUpUU0ZGNGRGaDJZalpKT0VaQllVZDRaMUZJSzA5bEsyWTVkVzByY0hSTlRFOUdaVk5uUlVkTGNEYzFUMHczUzBOdUwzUk5SVFF2VkRCeVlWWlRhWEVLU0N0T1VrTjNWVVl2Vm1OcVEwZ3djblp4Ym5WR01sVm5lQzgwWVU1RFJqUTNlVzQ1Y1RkVFRWZDNTME5CVVVWQmVESlpWRkJGTlhkTE9YbG9VblZuZFFwa1RWZ3JNMVF5TVhGeWVYQk1lbHBGTUdWUFpFWktSMGRXY20xVmFubDJlRVJpVEVRMFJIbHJUM294UW1oWVRYZHNabmhoZFdkTU1ra3ZZV1ZEWlZKb0NrMUxaalJ2UkZsYVJWZHdTMmMyWm1Kc01XVnlOM1ZTVTJGdUwwdDFWeTh4UW1wdmRtaFBlRVZtY25kaFNTOU5OVnAxWTBsNGMxSndObmxWWVhKak5ESUthbXMwTHpsT1FuUnRNbHBhUjJsWFdWRk5kV2h6UzJOUVNucDZMMWwyTDI5Nk5XdHRZVTQyUm5wWFYyZ3hWRnBSUW5waE1rcFFUWHBSZG1WRWJrcEtTUW8yVkhSeFFYb3lPVXhsYVdaaU5YVTRiakZpZG5CRU0zaG1Na05qVEhob1NXNURVV1ZEYzNSb1V5OUhNakZUZHk5VlRtVkZNVGRqUmt3dloxWnplakYwQ2pGV2NHVnhWM1Z1WkRCT1NUY3lVWGRJYzFwTmJuVktlVzVPTVVRMGVWWkZlamQ0TWtoc2VtOTFiV2hYUVhCTksybzBNWEpoUTNkYWNVcDZkM1ZDTUc0S1QzQlROR05SUzBOQlVVSnNUaXRMVEc5M1QxWklPV2d3WW01UFdEZzRTbU5NYlc5NVYwSndiVWRvTTFZNWEzaGFUVTVHYm1OblZYQmxUakJaUTJORVJ3cE9TMmRDUm5JNFYzSmFlVzEwVTA5TE1UVkdSRWxLZVVOdk1XTTVXamQwZUhSNE4wNHlMM2hCWTFoaWJFVnRVVVI1YWxaamExaHFSelJ3V25GV1MydEdDbkJrVG1sVkszbGlRbFo2VG1aa1YwSlJWall5V0hjd1ZGQlVaMGQ1VkRKRWMwdHhVM2syUzFSd1l6TXhVR1I0UW5kck0yMXBNRk5pYUhOeU1FVlhaRzBLTmpJdloyeFVVak5KZFZsQlpEVnNkVXh2VVhoa1FuaFBWbXRKUjNwb2IwazNhMlZxYkdsTlRGRjJiMUI2Y2xGcGMwUlVlVU5GU21kWGVqbHpVblZKZWdwVlNUUmFhVWxZVTNCdmNHZEhhbTRyVkVsSWNWWldObkZXYzNRdlRDOVRhWGhIWnpkVWJHSXdWR2hpYUU1ak5IQTRURWxtVHpKNlRFdzJRMmhMVmt0dENpdHFRbEk0ZEVodWNqTlNSVkkwUzNSS2EzQkthVVV5TDJWUVlYaDNWVEZFUVc5SlFrRkNVMDVpVWpaUVRUTnlhVmhJZWt0c05tVXJiR1JMVmt4emJtVUtTV2xyTDFOMVFqTm9aR3htVXpWV09IWTRNR1owWldwcmVsQXJjeXRHVlVGdk9YYzFNek5NT0hCTGFXRTNTbTlxZERWU1dXcEdZMjh4YUROalVVcEZPUXBuU3pCTFl5ODRZV00xUW5GM1FucFlNVnBhVlZkeUszQk5Ra2RGTVROc1NUaDJlakJJVlZKUmFVbFNZVFl6WXpOd2FsSXpaWFJuV1ZSb05EVTRaa2x3Q25rNUsyWTRWR2hpV1cxQ1lYUkhLM1o1ZEhRNWMzWnliWEl3Y1dOT2JGSnJjV3RhZFdORmRXVmlOSFZyTUV4M2FrZHJlSGRIY2prNFpGcElTREZsU0ZZS2JubHhZamhaTmtGSFRGVTNZbGQxTW1wT2JuaHNUMVpJUWsxUmRIVk9VMnBXV0ZacWFXNVJWRUkwUW5KWE4wNW5NV1pqYXpocVRERk1iQzh3ZVVKWFRncDJiMDVuTVZSTVpFVkNkbkZyUmxSVWJtUkpNbEJSUld4VWRtaG1hVVpOYzJad2JHRlZWR3BPT0VOWWF6ZzFOMGxDTlVSS1JsQlhTR05JTUQwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiB1bjJ1aWptbm1qbmd5aHA2YjBiZ3BobnhpdjF5cjlreHMwZTh4OXIyeHE2aWc2MjhmbTd3ZDIxaHVkbDMzN3Y3cGgwNzZ1bDVxOXB2aHZyeGxpa3p2N3Y5eWE0dWY0a3g0MHhyZzhudnV1Ymlra2ZnMzM1NHp4YXBybDBidjA4OQo=\"\ + \n }\n ]\n }" headers: cache-control: - no-cache @@ -861,7 +988,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:06:08 GMT + - Thu, 15 Jun 2023 19:35:28 GMT expires: - '-1' pragma: @@ -877,7 +1004,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -895,59 +1022,60 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-zsbq2mpg.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-zsbq2mpg.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/245daaff-a42e-4f2f-974e-35cbce9a77a7\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-4w10cjua.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-4w10cjua.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3aa987ee-5fbf-4cb6-9299-41ac69f21f9a\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3314' + - '3642' content-type: - application/json date: - - Wed, 15 Mar 2023 11:06:09 GMT + - Thu, 15 Jun 2023 19:35:30 GMT expires: - '-1' pragma: @@ -966,23 +1094,22 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "properties": - {"kubernetesVersion": "1.24.9", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "properties": + {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": - "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": + "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, - "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", - "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/245daaff-a42e-4f2f-974e-35cbce9a77a7"}]}, + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": + "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": true, "supportPlan": + "KubernetesOfficial", "networkProfile": {"networkPlugin": "kubenet", "podCidr": + "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": + {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3aa987ee-5fbf-4cb6-9299-41ac69f21f9a"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": @@ -997,67 +1124,68 @@ interactions: Connection: - keep-alive Content-Length: - - '2100' + - '2428' Content-Type: - application/json ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-zsbq2mpg.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-zsbq2mpg.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/245daaff-a42e-4f2f-974e-35cbce9a77a7\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-4w10cjua.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-4w10cjua.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3aa987ee-5fbf-4cb6-9299-41ac69f21f9a\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa48613c-367d-4dad-8e88-49536932be05?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4d2ade49-8d1c-4d0a-a8e6-8e901d806109?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3312' + - '3640' content-type: - application/json date: - - Wed, 15 Mar 2023 11:06:13 GMT + - Thu, 15 Jun 2023 19:35:37 GMT expires: - '-1' pragma: @@ -1073,7 +1201,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks scale + Connection: + - keep-alive + ParameterSetName: + - -g -n --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4d2ade49-8d1c-4d0a-a8e6-8e901d806109?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"49de2a4d-1c8d-0a4d-a8e6-8e901d806109\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:35:36.8824253Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 19:35:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -1091,14 +1267,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa48613c-367d-4dad-8e88-49536932be05?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4d2ade49-8d1c-4d0a-a8e6-8e901d806109?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3c6148aa-7d36-ad4d-8e88-49536932be05\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:06:13.7729666Z\"\n }" + string: "{\n \"name\": \"49de2a4d-1c8d-0a4d-a8e6-8e901d806109\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:35:36.8824253Z\"\n }" headers: cache-control: - no-cache @@ -1107,7 +1283,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:06:43 GMT + - Thu, 15 Jun 2023 19:36:07 GMT expires: - '-1' pragma: @@ -1139,14 +1315,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa48613c-367d-4dad-8e88-49536932be05?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4d2ade49-8d1c-4d0a-a8e6-8e901d806109?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3c6148aa-7d36-ad4d-8e88-49536932be05\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:06:13.7729666Z\"\n }" + string: "{\n \"name\": \"49de2a4d-1c8d-0a4d-a8e6-8e901d806109\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:35:36.8824253Z\"\n }" headers: cache-control: - no-cache @@ -1155,7 +1331,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:07:13 GMT + - Thu, 15 Jun 2023 19:36:38 GMT expires: - '-1' pragma: @@ -1187,14 +1363,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa48613c-367d-4dad-8e88-49536932be05?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4d2ade49-8d1c-4d0a-a8e6-8e901d806109?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3c6148aa-7d36-ad4d-8e88-49536932be05\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:06:13.7729666Z\"\n }" + string: "{\n \"name\": \"49de2a4d-1c8d-0a4d-a8e6-8e901d806109\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:35:36.8824253Z\"\n }" headers: cache-control: - no-cache @@ -1203,7 +1379,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:07:43 GMT + - Thu, 15 Jun 2023 19:37:08 GMT expires: - '-1' pragma: @@ -1235,14 +1411,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa48613c-367d-4dad-8e88-49536932be05?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4d2ade49-8d1c-4d0a-a8e6-8e901d806109?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3c6148aa-7d36-ad4d-8e88-49536932be05\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:06:13.7729666Z\"\n }" + string: "{\n \"name\": \"49de2a4d-1c8d-0a4d-a8e6-8e901d806109\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:35:36.8824253Z\"\n }" headers: cache-control: - no-cache @@ -1251,7 +1427,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:13 GMT + - Thu, 15 Jun 2023 19:37:38 GMT expires: - '-1' pragma: @@ -1283,14 +1459,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa48613c-367d-4dad-8e88-49536932be05?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4d2ade49-8d1c-4d0a-a8e6-8e901d806109?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3c6148aa-7d36-ad4d-8e88-49536932be05\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:06:13.7729666Z\"\n }" + string: "{\n \"name\": \"49de2a4d-1c8d-0a4d-a8e6-8e901d806109\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:35:36.8824253Z\"\n }" headers: cache-control: - no-cache @@ -1299,7 +1475,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:44 GMT + - Thu, 15 Jun 2023 19:38:08 GMT expires: - '-1' pragma: @@ -1331,15 +1507,15 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa48613c-367d-4dad-8e88-49536932be05?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4d2ade49-8d1c-4d0a-a8e6-8e901d806109?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"3c6148aa-7d36-ad4d-8e88-49536932be05\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:06:13.7729666Z\",\n \"endTime\": - \"2023-03-15T11:09:04.1221189Z\"\n }" + string: "{\n \"name\": \"49de2a4d-1c8d-0a4d-a8e6-8e901d806109\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T19:35:36.8824253Z\",\n \"\ + endTime\": \"2023-06-15T19:38:24.8866978Z\"\n }" headers: cache-control: - no-cache @@ -1348,7 +1524,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:09:14 GMT + - Thu, 15 Jun 2023 19:38:38 GMT expires: - '-1' pragma: @@ -1380,59 +1556,60 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-zsbq2mpg.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-zsbq2mpg.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/245daaff-a42e-4f2f-974e-35cbce9a77a7\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-4w10cjua.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-4w10cjua.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3aa987ee-5fbf-4cb6-9299-41ac69f21f9a\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3314' + - '3642' content-type: - application/json date: - - Wed, 15 Mar 2023 11:09:14 GMT + - Thu, 15 Jun 2023 19:38:39 GMT expires: - '-1' pragma: @@ -1464,59 +1641,60 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-zsbq2mpg.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-zsbq2mpg.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/245daaff-a42e-4f2f-974e-35cbce9a77a7\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-4w10cjua.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-4w10cjua.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3aa987ee-5fbf-4cb6-9299-41ac69f21f9a\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3314' + - '3642' content-type: - application/json date: - - Wed, 15 Mar 2023 11:09:14 GMT + - Thu, 15 Jun 2023 19:38:41 GMT expires: - '-1' pragma: @@ -1550,8 +1728,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -1559,17 +1737,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/be444510-729c-4cb7-8d8f-b93e6d882ca2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f6e892ef-8ada-43aa-8a5f-47fed656252f?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:09:16 GMT + - Thu, 15 Jun 2023 19:38:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/be444510-729c-4cb7-8d8f-b93e6d882ca2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/f6e892ef-8ada-43aa-8a5f-47fed656252f?api-version=2016-03-30 pragma: - no-cache server: @@ -1579,7 +1757,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_identity_without_service_principal.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_identity_without_service_principal.yaml old mode 100755 new mode 100644 index 8edeb035229..5695834c14c --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_identity_without_service_principal.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_managed_identity_without_service_principal.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --enable-managed-identity User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:04:03 GMT + - Thu, 15 Jun 2023 19:38:49 GMT expires: - '-1' pragma: @@ -46,7 +46,7 @@ interactions: code: 404 message: Not Found - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": + body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", @@ -54,12 +54,11 @@ interactions: "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -70,68 +69,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1440' + - '1731' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --enable-managed-identity User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-7bcvp6sy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-7bcvp6sy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-mj4ciisd.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-mj4ciisd.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7dc44a5-9559-42da-a764-051d1004174d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/7969a8d3-1d98-4e60-9c3c-70a82ff6b2a2?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3211' + - '3535' content-type: - application/json date: - - Wed, 15 Mar 2023 11:04:06 GMT + - Thu, 15 Jun 2023 19:38:54 GMT expires: - '-1' pragma: @@ -143,7 +143,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -162,14 +162,63 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --enable-managed-identity User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/7969a8d3-1d98-4e60-9c3c-70a82ff6b2a2?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"d3a86979-981d-604e-9c3c-70a82ff6b2a2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:38:54.7904069Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 19:38:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --enable-managed-identity + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7dc44a5-9559-42da-a764-051d1004174d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/7969a8d3-1d98-4e60-9c3c-70a82ff6b2a2?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"a544dca7-5995-da42-a764-051d1004174d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:04:06.5696173Z\"\n }" + string: "{\n \"name\": \"d3a86979-981d-604e-9c3c-70a82ff6b2a2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:38:54.7904069Z\"\n }" headers: cache-control: - no-cache @@ -178,7 +227,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:04:36 GMT + - Thu, 15 Jun 2023 19:39:25 GMT expires: - '-1' pragma: @@ -211,14 +260,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --enable-managed-identity User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7dc44a5-9559-42da-a764-051d1004174d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/7969a8d3-1d98-4e60-9c3c-70a82ff6b2a2?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"a544dca7-5995-da42-a764-051d1004174d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:04:06.5696173Z\"\n }" + string: "{\n \"name\": \"d3a86979-981d-604e-9c3c-70a82ff6b2a2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:38:54.7904069Z\"\n }" headers: cache-control: - no-cache @@ -227,7 +276,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:05:05 GMT + - Thu, 15 Jun 2023 19:39:55 GMT expires: - '-1' pragma: @@ -260,14 +309,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --enable-managed-identity User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7dc44a5-9559-42da-a764-051d1004174d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/7969a8d3-1d98-4e60-9c3c-70a82ff6b2a2?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"a544dca7-5995-da42-a764-051d1004174d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:04:06.5696173Z\"\n }" + string: "{\n \"name\": \"d3a86979-981d-604e-9c3c-70a82ff6b2a2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:38:54.7904069Z\"\n }" headers: cache-control: - no-cache @@ -276,7 +325,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:05:36 GMT + - Thu, 15 Jun 2023 19:40:25 GMT expires: - '-1' pragma: @@ -309,14 +358,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --enable-managed-identity User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7dc44a5-9559-42da-a764-051d1004174d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/7969a8d3-1d98-4e60-9c3c-70a82ff6b2a2?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"a544dca7-5995-da42-a764-051d1004174d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:04:06.5696173Z\"\n }" + string: "{\n \"name\": \"d3a86979-981d-604e-9c3c-70a82ff6b2a2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:38:54.7904069Z\"\n }" headers: cache-control: - no-cache @@ -325,7 +374,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:06:06 GMT + - Thu, 15 Jun 2023 19:40:56 GMT expires: - '-1' pragma: @@ -358,14 +407,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --enable-managed-identity User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7dc44a5-9559-42da-a764-051d1004174d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/7969a8d3-1d98-4e60-9c3c-70a82ff6b2a2?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"a544dca7-5995-da42-a764-051d1004174d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:04:06.5696173Z\"\n }" + string: "{\n \"name\": \"d3a86979-981d-604e-9c3c-70a82ff6b2a2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:38:54.7904069Z\"\n }" headers: cache-control: - no-cache @@ -374,7 +423,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:06:36 GMT + - Thu, 15 Jun 2023 19:41:26 GMT expires: - '-1' pragma: @@ -407,14 +456,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --enable-managed-identity User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7dc44a5-9559-42da-a764-051d1004174d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/7969a8d3-1d98-4e60-9c3c-70a82ff6b2a2?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"a544dca7-5995-da42-a764-051d1004174d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:04:06.5696173Z\"\n }" + string: "{\n \"name\": \"d3a86979-981d-604e-9c3c-70a82ff6b2a2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:38:54.7904069Z\"\n }" headers: cache-control: - no-cache @@ -423,7 +472,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:07:07 GMT + - Thu, 15 Jun 2023 19:41:56 GMT expires: - '-1' pragma: @@ -456,14 +505,14 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --enable-managed-identity User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7dc44a5-9559-42da-a764-051d1004174d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/7969a8d3-1d98-4e60-9c3c-70a82ff6b2a2?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"a544dca7-5995-da42-a764-051d1004174d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:04:06.5696173Z\"\n }" + string: "{\n \"name\": \"d3a86979-981d-604e-9c3c-70a82ff6b2a2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:38:54.7904069Z\"\n }" headers: cache-control: - no-cache @@ -472,7 +521,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:07:36 GMT + - Thu, 15 Jun 2023 19:42:27 GMT expires: - '-1' pragma: @@ -505,15 +554,15 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --enable-managed-identity User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a7dc44a5-9559-42da-a764-051d1004174d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/7969a8d3-1d98-4e60-9c3c-70a82ff6b2a2?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"a544dca7-5995-da42-a764-051d1004174d\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:04:06.5696173Z\",\n \"endTime\": - \"2023-03-15T11:07:56.1742014Z\"\n }" + string: "{\n \"name\": \"d3a86979-981d-604e-9c3c-70a82ff6b2a2\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T19:38:54.7904069Z\",\n \"\ + endTime\": \"2023-06-15T19:42:36.2755382Z\"\n }" headers: cache-control: - no-cache @@ -522,7 +571,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:06 GMT + - Thu, 15 Jun 2023 19:42:57 GMT expires: - '-1' pragma: @@ -555,64 +604,65 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --enable-managed-identity User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-7bcvp6sy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-7bcvp6sy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cedc4af0-e20e-4dad-8ef4-7a2364c8300a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-mj4ciisd.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-mj4ciisd.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.Network/publicIPAddresses/dcba6d38-6a9f-4b98-9169-69968d9480b1\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3864' + - '4186' content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:06 GMT + - Thu, 15 Jun 2023 19:42:58 GMT expires: - '-1' pragma: @@ -644,65 +694,71 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.24.9\",\n \"currentKubernetesVersion\": - \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-7bcvp6sy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-7bcvp6sy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cedc4af0-e20e-4dad-8ef4-7a2364c8300a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-mj4ciisd.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-mj4ciisd.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.Network/publicIPAddresses/dcba6d38-6a9f-4b98-9169-69968d9480b1\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ + : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \ + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \ + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n\ + \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n \ + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '4131' + - '4453' content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:07 GMT + - Thu, 15 Jun 2023 19:43:01 GMT expires: - '-1' pragma: @@ -734,65 +790,71 @@ interactions: ParameterSetName: - -g -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"kubernetesVersion\": \"1.24.9\",\n \"currentKubernetesVersion\": - \"1.24.9\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-7bcvp6sy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-7bcvp6sy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n - \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": - 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n - \ \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n - \ \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cedc4af0-e20e-4dad-8ef4-7a2364c8300a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n - \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n - \ \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n\ + \ \"code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\"\ + ,\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": \"\ + cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-mj4ciisd.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-mj4ciisd.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\"\ + ,\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"\ + osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"\ + Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n \ + \ },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"\ + System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \ + \ \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n\ + \ ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\"\ + ,\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n\ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\"\ + ,\n \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \ + \ \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": {\n\ + \ \"managedOutboundIPs\": {\n \"count\": 1\n },\n \ + \ \"effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.Network/publicIPAddresses/dcba6d38-6a9f-4b98-9169-69968d9480b1\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \ + \ \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\ + \n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \ + \ \"maxAgentPools\": 100,\n \"identityProfile\": {\n \"kubeletidentity\"\ + : {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + objectId\":\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \ + \ \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \ + \ \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n\ + \ },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n \ + \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }\n ]\n }" headers: cache-control: - no-cache content-length: - - '4131' + - '4453' content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:08 GMT + - Thu, 15 Jun 2023 19:43:03 GMT expires: - '-1' pragma: @@ -824,64 +886,65 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-7bcvp6sy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-7bcvp6sy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cedc4af0-e20e-4dad-8ef4-7a2364c8300a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-mj4ciisd.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-mj4ciisd.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.Network/publicIPAddresses/dcba6d38-6a9f-4b98-9169-69968d9480b1\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3864' + - '4186' content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:09 GMT + - Thu, 15 Jun 2023 19:43:04 GMT expires: - '-1' pragma: @@ -915,24 +978,24 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSWkRJMWQwOUphV2xpWkdsVmJXczVSVkkzVTJFeVJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCZWsxVVZYaE5SRlV4VFVSYVlVZEJPSGxOUkZWNlRVUk5lRTVVUlhoTlJGVjNUbXh2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSc0NtWnJWemxYVDBkTFdEQndVa0VyZWpSbGVFRlhjblJ0Tm5KMlpsQjJjazh5Wm0xUU56bEJOR1JqYlZKTWNXeFVNMDFMUWs5aGRucHVRVEl4T1hSYU9XY0tSMDlzVFVnek1sVklWalZzVkdSQmNqbEJhMFF3WTFWRFpXUmlka3hrZEN0cWVVRmpXaXMxYkVkd2J6SnJkRzhyWTI1Q2F6WjVjM2hXTVZNd2VYVk5Od3BPV2pkMWFXbFJMM1o1Wm1SMmNXVk5lR1ZyVWsxU1MwRkVlWHB6VkU1bmJrWmFPRWRxYzBrdmVrY3JSMGxTVEhWS2NqZDRLMHhNYmswMFpEUmFObkpKQ2l0UE0ybEthR0pyVFVFM1NGa3JMMnBhVFVSbmNrZHRaVFprTkcxd2JFNTVXRFpxVW1kVUwzQmlkbkZSVlVsM01WcFhNSHA2SzJGdFoweGhOVWN2SzNBS2VVcDNTVzF0VFZCU1JHSTBlRTl4VEVOMFpXMTFhbGg1YVhJNVNWZE5hMFY1ZHk5eU5reFFNREkwTWtsNlRrcHlOVWhPTldGYU5qVk5jV2g2UmtZeE1nb3hkalpTUlRBMldtNUhWMDVGYW00M2JFNTRTek5sTDJnME0wSmtWM0Z3WVdKc1kyTm5SMVV3ZEVSeGNWRm9NbWh0Y25sWFF6aENabVZvVGxOWmRsSlFDbXQzT1d4YVJ6TjRlRkJGY1dwRGJrUnBSMmxtTkRkcmNVRnJhMk5FT0U4M2MzZDNValFyVkdGVllsbzVRamRzWjNKYVZqRmxOMFpPTUVacFF6WXdNazBLVDFoTFJtNTViM0ZTWjI0MWNEVmhkMFJEUlZKU2IzUjFZVzVxS3pCV1dpdDZWREUxV25nM2FrSlZWM05qU1dWeFVqSm1TRGhKZGtoTFNqUTFaamRZVVFwbVQzaFVNVVZGVVdSeFFVRlZNV3RUWWxCNE9IcDBTSGtyVFRCRGNHSnlSbE5VWlhNcmVqSldhRE4wVjFoWlUwaG9NbFJMWlZad1dWcEtUVUZ5TVZSR0NtWnlOa3RITlhVMlUyNXBUak5JVDJKaVNVbGFhbGxwUVU4dlJWSkJZMGhoWjNOdlYyOUVkWGwyTTJsS05VRmhTRmh2Y1ZNNE9HVldUR1ZDZVRWSGRHTUtjbkJOT1ZCV1lqQnZZMVpQVkVsUE0ySjJibXhhTW5GR1IzUnVWMnhJUVZaalRXWjNSWFFyT0dwUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWQ1dVaHpaa2h5ZW1sdGNHVTRUMjkwQ2pacFVHUmtRa0p2VVRCRmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRVkzSnFTMUJMYmtWeFpWVTBORlp0Y0dkcUwyUlBUVGh6TW5BS1RrVnllRE5yU1VoaWNXeE1la1kxYkRNellWQkNiM1ZuZUU5NldTOW1RV1pKT1d4SGJsUk5SamhQVVRJeWN6QlZNRzUxZERkUk4ya3ZNRXByTTFSRGJnb3lWMHMxZUdVdldFY3hUbTh2UVhsMVdUZEtWVlZCVkZONlpWbzNURlZyVFZCaGFsZFdaakZKVEd4VWRISlZaR1ZRYlRSNE9VRkdTRk5JUTAxbVZsWnJDazE0VDJ4dmVYQkJiVTVHYXk5eU1GQlpNa0pOWVdsbE5XYzFPVkYxVkVOeVFXeE9jMUZSUWxRNFdsbEJjMlZ6YjNsWFVVazBNR05pWW5wMFRESndOMWdLUWsxdVFuWjVNVEZxUmxoV01HUXdhSGh3WVZabVVWTjNaalZ1ZVhnd1pta3dhVzQ1VXl0NVdYWnJjVUpLUkVjclZXVkJiU3R3T1VSemR6RkZkMnQ0VUFwc2RsZzViM2tyTkdveWMwcDZLMk5TVDNWc1ZHb3pTazA1U1M5emFESTNZbWR3TTFSeFZ6aDFSbmx2Wm1WVWQzbEliMDR6VkRaV1FYQm5ZbFpYY0hCekNsSnhVREpKYkRkNVZWVlBZM0p4WkU5VlNUWXZWVTVsT1V3dldEaDFLemhDU1RKMk4yUkRWV0ZOV0hGTmF6bE1Nek5rTWxGdlJFRXdOMlZLTDFJM1pXOEtibFUxVkVneVVEZHFTbVJSUmpSNmJGVjZVMXB3VEZsMWQzcE5OVFZhYzFOUlVETlVhalJqSzFkdlVHNVlSVlpVU2sxRlNHWlJNbU5IU2tveVRIcEtkd3BOYTI0eVFteHdVell4UW1OUVRtNWxaVTR4TkdwWVRGcGxlR3BTVHpkRGVFOU5aVTR6WTBkTEwyTklNRFp4ZWl0WVJHbDNTVEEwVkhocVMyczFXV05TQ2s4M05HUk9jMnh6ZVRrcmMyY3dMMDFrVXpkRGJUTlpibVJwVTNCNU1FZG9XSFl2ZEU5RFRIRTJTbXQzVjJReFlWYzBRME56VkhkQk1EZHVUbTF2UjJjS2RVdEZWRzV2T0VNMFJHMVZiRFIxWkdSMGRVUnpkbUZxWmxBMU1ucEhha2dyZDNGWFZrTlJTemh6SzNKUlVsUjNkVkJaUzJGMlpYSkhUM1pPVTNSb2FncGpTWGd6TUZkSVoySnVjekoyUTAxUUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2N2cHUza3YtN2JjdnA2c3kuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3Q1Z2FpMnkKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3Q1Z2FpMnkKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RsZTJmcGNpemM3X2NsaWFrc3Rlc3Q1Z2FpMnkKICBuYW1lOiBjbGlha3N0ZXN0NWdhaTJ5CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdDVnYWkyeQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RsZTJmcGNpemM3X2NsaWFrc3Rlc3Q1Z2FpMnkKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVXA1WWxBM2RGZFJlRkVyT1ZsQ1pXVnNLMkppVm5kM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDE2UlRGTlZFRXhUbFJCTWxkb1kwNU5hbFYzVFhwRk1VMVVSWGRPVkVFeVYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCZVdkNlRGWjRURlZUWVhBMkswOTVWaThyUnpNS1ZGVjJWRlZvT0ZCUVVsTnJaMlJzYUhORVFYSkdiVTU2YUVoTVdISmpiV2x3VG00MWVGUjJjV0pRU21weEt6QnJUbk5wU3k5Q05pdFJVWFpzYVRaa1lRcG5NSEZrWlZWUlpEaERRbGRsU0RSalRHaG1ablJ2ZEVvdlpVaDBSRlpSU1VsbFlUSjFSMjV6WjJwa1dqVjROV3hYVG5kWU5XcHBLM0ZCZDJ4NWEyOHdDa2xQVlhveGNWZE9UMnBCTVdGaFdsUnhNREZqY21KTVMweDFhMWhDWTJrelZFVjNVRzlYZWpKc00waFZkR3RsU1haS09GUlhVM2hqUVZaM1ZIZEZTbWdLVW1sM1kwOTZjazluVnk5cVRtVlNWRmt3U0dkalZXTTVObXBCTUZoa1UxazNkV1pzYzNSTlZERm1RVmxoUmxnMllWaHdPR3R0VGxWcGNqZG9kbGhZYlFwM2VuSlJNRko0TkRWdFNIWjBla2xLWmxwV1lVeFRRbWhyUW13NGNteDZiMlk1ZEU5QmNtSjNSMVpFY1dSNVVFTjJWbE16Y0RSbk9Ya3ZVVTB3YlU1cUNtY3ZPWGw2UTJKNWQwNW1XSEZJY2l0bEsyNW9RMmMzWjNaV1VtbHpPRlptTWk5c01UVjRVa3hVUW5KQ1RFNTBObVZ0UkVoak1UbG9Za0p1UkRkWlExTUtZa2xhUlRkT04xWnNjMHhqTTFWaWJWRmtiM3BJVmpKSVFUVmhSVVpzZVhCTWVrdE9Na3hzYVZFMWRVZEljRXR3ZFU5eU1FTkZSVTV3V1ZGcWMzTk5TQXB1VG5abWQxQkJVSFZ6YzA5SGJXeE1jelU0WjFoalMzcDNhMFJyY0VoclVsWmlhM2N6Y0RGbVJrRnRaSGxzT0ZWd09GaFdSeXRQT1hoclVqWkhWMHd2Q21oVWFtaHJhV1Z2UjNsa01EUmhSRTQ0TkRGcVZtVjVWMGc0V20xSlVFSmpiWGRHTjBSQk1tUnhTbmN5ZDFsS2NGQjJlRkJWYWl0QlJYQkVVV2hZUkhBS1R6QkpOVWhrWkVsSmMzWjJNVVpWZVhGVGJXTlFhMmQyTnl0bVpIWTRNR013WVVaR1FVMXlSMHRZYUdKYU1VazVaR0p1U1hWdUt6TnRTWFZDUW01ak9RcExhRVJSTlUxTUsyOUpUSFZRVGt4aWRuZ3JTeTlTUlVOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWUWxsSWMyWkljbm9LYVcxd1pUaFBiM1EyYVZCa1pFSkNiMUV3UlhkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCU3pWaGNrTldNbVZGUzB3elJVZERTSFIxVFFwNmVVZHlaVTVFV1ZWcWFYQldjMDE2TlRCcFJ6Sldhalp6WlZwSlNGUjFkRUpXUW1sYVRtTlRTWE1yUVhkRVNHbFJhMmhLUVZsb2RHTjZjVEpqVWxoVkNsaEJUVmhPT0RGblN6SjRlak5VTVdablF6WnhTeTlRUjBSUGEwNDRXRXM1TUZvMGQweGpjMlptVDA5eWFuSjZVVkoyYUUxdVIydGpMMFJZWjFKdWFFSUtkSGRSVmk5RE9VTklNRlJVVjNCYVUwaG9NR1V2Y1RWYWEwbGtiRnAxTlhOelRrNWhlbFEyYkU5cGRtaFBObWhPUjFkd1ptOXhUa050TmtSR1JsZGFVd3A2ZUdrNWFrMWhjako2THpOamQwRlJZbmQwUTJ4d1VrdGtNWGt3Tm1kSFdVeDNaRXgyVkVWTlkxWkxUMnBPU2pWUlpYUnBWakZxUkZsdlpHSkVTRzFWQ21wNmRVTTRZbkF2TkVzdlN6QkpPSEJJVTBkaFVXWkZhRWd5WlZGbFRDdE9kV2RPTW5SdksxY3dkR0p1TWxjeVIyMW9lRFpVUm1aa1J6QkxWVXh0ZGswS2F6aHdlRTU0ZG1STU1qbGpjWFJ1ZVd0RWFYQlpVbTl5V0V0WGJHSnlhMHBFWVVGSmRHOVVkVkJtV0dsMFoxSnhNV2N6V2t4VFRrSkVNbTlGVTI1T2N3cGxVVEp6WlRWRVpVMVNlWFpYVERNNVFsZERSRFZJSzA1RlRtZDBSMlZoVEcxWWRYQnFXbmt2TUdsUk5VNXFXbmxIV0hwNE1EbEVMMVJCYmxaVVN6bDBDbFptU0VnMk0yUjFjMk00Um5Ob1VWRlhWa3A0UTBaYVZFSkVVMmgxVkc5SVdVUTJOVVpoWVdreVN6Tm1ZbU53UlVaMVJXTndjVnBHVlc0MGRHdFdlbllLWTNSMk5USldUMGhzYW1OS00yWkpXRXBDWmxWb05tZEhPVXgwZDBRMmRTOWpVVTF1ZVdGU1IyMU5iMjlpVG1VMU5XVlpZM0ZPUXl0Nk5GQkJja2xqZHdwWGJYTlFjVGR4YTFoeVJ6Vm1TR1EwUW5jMVdDczNhVXQxVG5GbFdITnNiR2tyV0ZCRFZDOHlTRzVZUlZwMU9HbG1iR1JuTm5CaGFUVnFWbmROWjI5dENtbHZlV3R0TDNjclRVOUVXWEpSVURGamVEVjBSRXRFZHdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTbmRKUWtGQlMwTkJaMFZCZVdkNlRGWjRURlZUWVhBMkswOTVWaThyUnpOVVZYWlVWV2c0VUZCU1UydG5aR3hvYzBSQmNrWnRUbnBvU0V4WUNuSmpiV2x3VG00MWVGUjJjV0pRU21weEt6QnJUbk5wU3k5Q05pdFJVWFpzYVRaa1lXY3djV1JsVlZGa09FTkNWMlZJTkdOTWFHWm1kRzkwU2k5bFNIUUtSRlpSU1VsbFlUSjFSMjV6WjJwa1dqVjROV3hYVG5kWU5XcHBLM0ZCZDJ4NWEyOHdTVTlWZWpGeFYwNVBha0V4WVdGYVZIRXdNV055WWt4TFRIVnJXQXBDWTJrelZFVjNVRzlYZWpKc00waFZkR3RsU1haS09GUlhVM2hqUVZaM1ZIZEZTbWhTYVhkalQzcHlUMmRYTDJwT1pWSlVXVEJJWjJOVll6azJha0V3Q2xoa1UxazNkV1pzYzNSTlZERm1RVmxoUmxnMllWaHdPR3R0VGxWcGNqZG9kbGhZYlhkNmNsRXdVbmcwTlcxSWRuUjZTVXBtV2xaaFRGTkNhR3RDYkRnS2NteDZiMlk1ZEU5QmNtSjNSMVpFY1dSNVVFTjJWbE16Y0RSbk9Ya3ZVVTB3YlU1cVp5ODVlWHBEWW5sM1RtWlljVWh5SzJVcmJtaERaemRuZGxaU2FRcHpPRlptTWk5c01UVjRVa3hVUW5KQ1RFNTBObVZ0UkVoak1UbG9Za0p1UkRkWlExTmlTVnBGTjA0M1ZteHpUR016VldKdFVXUnZla2hXTWtoQk5XRkZDa1pzZVhCTWVrdE9Na3hzYVZFMWRVZEljRXR3ZFU5eU1FTkZSVTV3V1ZGcWMzTk5TRzVPZG1aM1VFRlFkWE56VDBkdGJFeHpOVGhuV0dOTGVuZHJSR3NLY0VoclVsWmlhM2N6Y0RGbVJrRnRaSGxzT0ZWd09GaFdSeXRQT1hoclVqWkhWMHd2YUZScWFHdHBaVzlIZVdRd05HRkVUamcwTVdwV1pYbFhTRGhhYlFwSlVFSmpiWGRHTjBSQk1tUnhTbmN5ZDFsS2NGQjJlRkJWYWl0QlJYQkVVV2hZUkhCUE1FazFTR1JrU1VsemRuWXhSbFY1Y1ZOdFkxQnJaM1kzSzJaa0NuWTRNR013WVVaR1FVMXlSMHRZYUdKYU1VazVaR0p1U1hWdUt6TnRTWFZDUW01ak9VdG9SRkUxVFV3cmIwbE1kVkJPVEdKMmVDdExMMUpGUTBGM1JVRUtRVkZMUTBGblFXVjJLeXMyV1hJd05FMU9MMmxRYlRsa2MwRmFjbXg0ZVd0S1QwZ3lNRGgwZEdvMU0xVmhTMEpIUjJkRFkzRmlWekZXZW1sUWFXcFVMd3BHVnpGTFFUSkhlalp5VmxkUFVrMWtOVGRtWjNkdFV5czJhM1JYU3l0aWJtRTNlRFp5VWtVM05sVldNSEJ0Umk5elNtTnJUV3gzV0dGVVEweHhSV054Q25KalVUSXhVMGQ2YTA5aGRuSldPV1I0Uld0UU0ycHNjVWhtZW5NdlRGUXdPU3RGVldRdk0wcENSekEzV25SNWVDdHpTRmRtWkdKd1NraEVlRUpoY0dvS1ZVOW1LMmxITlhSQ01XOURRM1IxZHl0S1ZsRkNObXhvTW5wb1pYRTFkbTlVTjNwYU5tbE9WVTFzYlZkbk5VbGhOakZMTmpjelkyOTVTa0V4TWpoclZBcG1RbWhMZFU4eVpVRXlaa2MwWTA1UWNrSndWSFV4VlhwMGJIWlhXRzQ0YkU1QldXRlhaRVpZZFdndlJHOTRWa1ZTVDJSVlVFOTZRM2hLVlVZd1IxTkJDaXRWU2pGT0swWllTRWhSYjNsR2Jta3ZNVTFaVmxJMFYySjBXRmxJWVhsa1ZteG1RVUpqTUdkNGVIQmplbkppTVVsdUwwcFlTRTFrVFhSUVprZHVZVklLWTFreWJ5c3lZMEZ0TlVWbGIxUlNNVGxzZWxWM1QxTm1SbnBuVTFwTVFWZE9NbXN5VkhGdVRqZ3lRa0pTWkRCNWF5OU5SVzk0TW1WUlpWTXJlWGd3TUFvclFuaEllalkwYkVJMGJ6ZERTR1JQVURSSlNrWkVOSHBIUjJGTVVHMUpXR1YxZVhCdlFtTm9lVnBrZUhKNFQzb3JkakpyTVhGNWRVRkhVVmcxY25WaUNtTjFZVkp4YVZaSmFrNHdla1JCTVU5MU1ISjZXVmhSUmxFelVVTTBVeTh2UzJKTlVDOVhiRUZxUTFGT05pdGhURVpQWlVFemNWSkhaREU1VlV0V1ozVUtaWEJEY21oUmRUUk5RMlZSZFRSU1RUTTVRa1pSTm5oMVVWZHFjakZtVmxSMWRVTm9SSEpxUlZkaVdtbEpaV0Z4VjA0NFlsRXllR3R5WkhCQlVuaDBOd280TVd4Vk4zZEdNR05sV2pKMlMzRjBOMkZrWW14R1VtSlBWVU0yYWxGMFlVbEZiMFZ4VlhaWU1YazVjMDlYTlZFclVVdERRVkZGUVROeE9WQnFSalZSQ210TWNGQXllRkE0V1hWa2NFaERiM1ZYYTJFeVFVcG1SVll6U25jeVlUQXJVMmxETkRkM2ExQlVWMFZDSzA5ak9EWmhlVEpDTWpKNE4ybDRNa1ppU25vS1ptZGlNbkJ5TVd4eFRubEdkRlpMZHk5Tk4wa3pZWFp6TTFoemJEVmxlVWxUTUdaSVNqSldaWFV6T0dSWlluTklXbFJEYXpKUlMyb3JiRU5xVUc0MlVBcFVVelkwZENzNGNYSmlVMFZMUjJSUFZrZ3hURVpwTlRBM1J6aFpjemxpU0RsSk9HWnNUVUpZWmxjNFRYTm9OV3g1V1RKNU5XSXZZbGR0TWxscmFuTjJDa1JzTm14UmJFWklUamx3VVdKQmQyOTFWWGx6VVU5NlpFeFFXRlZtTmpSQlpuTkhWMHhUTVVVNFkxVm1RaTh4TTBwUldUZzJWbEZYZDBoWFlURklVRGdLWVZSVE0xVTBUakEwWVZsaVQzSjVLemhwWlhvMWRVVnFkbEpwYlVWVmNrZ3ZZbGc1VjNWb1dIVlNTRFZaTkVGWloyVlJXRWxPVlROT1VucE5abTlwUmdwamMxZ3Jkbk5IU2psVlF6TkhkMHREUVZGRlFUWkZZM1YwVGxkemFtZGpiblk1UkhaMGRUQXhkV1prVEV0TkswUmpWV3Q1YjBONVNEYzFaRVJ2ZGtNNENqbE9OV3MyUlRKeWJESkRlSFpIWVhWaGNqSkNNbVZUU3pZNWNEQTRXa2hsVWpSQ1pEbGxOM2RXVUU5MGR5dFlWVTVUVm1sWWFsaGpTRnB5VERWVGJUa0tSVlE1UW1KTU1UaEZkV1pWVDBJNFVXRm5SRVp2UjBoNVRVTmlXVWN4WjJVdlptbENUR0ZoZW5waVJuVklWbGs0TTIxU2FXcE1VMVJaZUdKM1QyNVNLd3B6VDNvM1UzcGhRa2swVDFkck1GWlllRk5LV0Rsb2FHcEdUelphVHpnM1NESTFTVGRVU1c4MlkwOXpiRXBTWjFoMWNuZDNXVFpGV1dWdlEzSTJPR3hVQ2tWWWNqbDZLMUEwTldsemIyeDFjMHBOUXpkT2F6WlpNVlp3YVVGcGVucFBUVzlxTWlzd2VsWk5VVzB2ZEVZNVdHUk1XVUUyWm5KcmIzUjZRWGt2VEVvS2JtWkJSMlJ2YjBoRllsa3hLMHQ1TUhKSFVVNWFNR2RqVWpsb09EQmtUazk1VnpWaWRuWXhSRkYzUzBOQlVVRXlSREF3Tm1kSVRVTnFOV2gyVlU5NlJ3cG1aazVSWlZKVlJIRlpUSEJ3WlRWMVdrVlFkRTVHWlZreU1WUkxRWFZOUzBndlJFRnZha3A0WTBKS1NYWXlTMmQwV0RVNVUyWk5jblI2YTA1NFdrUXlDbUUwUzNsUlJEZHFVVXhuVjNsSVVXRlhTbXRqZEdzeGIwdFRZVFU0Tm5kS2VrcFJkbU0xTkZvdlRFMXZWVGRJU0ZKUFp6aGtZa1ZKVW1JeGJVOWtUMk1LYXl0Uk5XZHpja3hVUW1RNFlsRTNTbXA2WW5GQlkzaE9TRXR1U1VSUFIzZGxPVTFVVFhKdU0wMXJWWEEzVjJWMFJHdHZjSGhsUW05c2NWWTNPR2QwWlFwRVkzWlZWSGxrWW5oTVpGVnJObmR0UkVFdmIxcDVLMHhzYVdWR1JrTmFWMjh3YjJwUlJ6ZzJUamhrTVhoWmJ6UmpkRk5DYlhnMk9UQTJVbXg1T1ZsSENrdGlUVmRyVm1WNGNHUXpVWGRRZEZOSWNtWkRTSFYwY1U1c1NYQlVXbkIxVUZkVVZIVlFZelpKVlhSVlJuazNkRE1yTTNSRlpYVkVjak5zYldsamJXRUtSbTV1WkVGdlNVSkJRbU5aU0V4cE1rWm1XRFZIUTJGdFN6STVVVzV0Y21rdk5FbE1VRGxLWm5GTWVuTk5TV1pPZW14bVFTODRhVWsxUW1WRmQxYzNTQXB0YlZKV1FWUndlbkJTYkRRNE5tTklhbGRGU0ZVNFdtZExVR1IxZW1zMWFpc3ZOMmxPZG5Ob2QwZHZSbWxQUlZsd2RsVmtPVlZLYkhVMlpVbElNMGg0Q25kMFVHaHZjM2R1VkRNM2JYWnBSM3BsZDBWakwyUm1ZV2RXTVRodFduWXhOMFJFVjJocE4wZGFSbGxDUkdwYWJqZFlTMmxoYjFwRmVXRmtjM1lyU1RnS1JIaHBUbUZJUTJSUVdXMXRWM2hQVm5SWU5sRjZTMWt3U0Rsck5GWlNPSFJCWjBKNVMwMXVWVTVEZEhwMFR6bGFTVGMzU25kWmVWaFpaWHAwYVdFeU5Bb3hUWGhOYVdoc1ZWUm1Va1ZNYTBaNE5FUllNekJpYVUxcVlVaHRkbUoxYldOSU1FdHFZazQwT1ZKYVQySTNWVkp3WTIxb1ZtaEtlRGQyUzFOUWNXMTNDa3REVjFaYWJFWk9hMVpsV0dZNWFGVXlabEY1ZDJvMlkzcHNjSEUySzJ0RFoyZEZRVWQzVkN0VVVGSkhPQzh2WldsVVowcE9TSFp1VEV4Q2JVWkRhM29LVUZaVmJXOVBka3REVFhCWmJsTlpVak5yVGxOeWFEa3hOVGhTVHpoS1dWbFhZamxZYTNGeVowSnNRamQwTVM5M1lYRnpObEZLYlhOaVNFaFJkVk5IY1FwUGFFTmtkbmhaTlRsSlQyZHlXbTAwYmxGdFlYRmxPRUoyVUcxNk4wcFZRVzU2Unlzd1RrZDJXV05hV2pkQmRuZHNjMWxwV0UxSlJqRkhhbmRXVjJ0MUNqSklTVzVEUTFkb1p5dHJaSGRUY1djNU0zWkNhekJ1VVZKMldXNW1UaTh4YjNKVWFuRmxiRlZ5VUdaTWJGZDJUVTVOYVVsa1dEaEtlUzlJZEU1YWVtWUtTVEpyTTJVMGNHdHVWbHBtY1hWb1MwZHhkbmRFVUZKdGQzTjFNbVJvY2paUGQwMXRSSHByVVRoNlNGSlNNaTlSYTB0emJWUktVWFZwZFRWT09XMHhXZ3B6VkVkME1HWjRNUzlWUkUxb1MxUnJjV1JtUjBWMVdGaDVTWEExYzBGbWVuRk1WemN2WTFocFNqaE5Wa0pLWjBGMVkzVjFNSEZQYWxSblBUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogOWhqemYwazZqbGl5M3c1NGt6dnJwYWI0czJ4MHZpc3Fkd3djdzFjNjlyNzMyZWM4MzNya3V5dHVzYjBtdWlidWNpbDE5bHR3Mm9kczR6M3lkdXRpdmlvNWRqZ2x1ajkyaXNzems2cHBod2RibGlwd2YxeXYzeXFvbmVsY3l2aTMK\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVU5UFoyZDJjVlpCYmtjelpGQlRjVGR1ZWtsTVlYZDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJURk5WR3Q1VDFSUmVsZG9aMUJOYWtFeFRYcEJNazFVVlhoUFZFMDFUa1JPWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuTlJTVXh3YXpSdFdsVlBjVzFFVTNoRVpuQkpabWxUY2xVdmNGUjJhVEZtZW5ZMVJrMW9aM2R4YTNGelZqSnFMMG93ZUVvd2JsaHVaRVJhVkdsUk4yVUtNalpvTkZKa04yUm9ObUl5VlhGTmJtWmtURTQ0TnpoUmVVTXZkMmROWmt0eFZWQlpNRE5qY2l0TGNrVTFUR05zY0d0bU4wTkVRMlZuTlVnNU1IcE5id3BUUm14Rk5rRkZPVXR5UjBGNWQyNVROVGR1UldOSlRVNWxjMnhhWjNSSVVHSkhjeXRCVW5sbmFsSXJUMGd6Y1dOc1kwNU9jR2ROZFhvM1lWQnFOMGxxQ2prM1lqZEpTR0pNU1RsMVNHWmtTV2hHWVM5MlJXeEVSelF2VEc1RVUyWjZRbmxRY1dzclluQk5XaTh4TmtrelJYTlhWVUZqWldOMmMybFFMMWRSU0d3S1REbFFlR3RRVkdOdGIwSkpOR1E1ZUZOWVJIVjVWMFZqTjFGVmFtWlVVbVkyVEZFMVEwVk9hSGxTVUdkdE1YWnVhMlZtYWxCbGRHZFlSMWRWYUVWRFR3cHhXVXBNYkhCRVFXSktaVTltY25kTllsRk5SMjFIYkZBNFpFeHlaRE5NZEN0M2JGbFBSREpEVFdkUFoydFFhMUpVVDJSSVkzaGhOMGdyYVhsTldsbDRDbTFJY0ZkemJEbFNNRlp1UW5oR2RsaEhhM0JDVlVScVkySmtSMVpMZDFBNGJIQmxUMnRrWjNSelNVWm1jMUJGVG5wU1FtOVpkR3BtVDBzeVJUUk1ha2tLVDBWdWJWTkdNVmxDUzFaWWFFTXdSR2xHYzBST1l6Tk9WMUJ3YVhCbFkwMVJOalpxVW00d2NsaEhlRk50UlRWcWIwcEhjMDlqZVhwYVMybE5VMlJpYndwcGNXMW9SbFV3VWl0NGRUQjFjblZPU0hNNVpsWlRhVVpqTTJvNFN6aEdUa3NyTm1SUmNFdDNla3BIUzA4eFprWjRUa00wSzJReFlrVldhbmd3ZWpnMUNtWTJVRWh5UzNZMFVtMXFRbG81ZGxSclYzRk9jRFJJVUhKNVZ6ZFFUVXRpVjBWSU4wa3JNMUJUZUN0Tk9HRkVhMVUzWkZSRE9XWlhTV3g0UlRVcmFtb0tRV2w1TVRWM01HNHpZV0kwYmxOa00yMXlRWEZwTDBGb09UQTJhR3QzTDB0U2FsZFROVU14ZEZWUlkwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1FXRnpaSEpaTjBkV1ZqTjZlbms1Q21wcFUwWnJObWxrZVhkMWVVMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFrcGFRV0pWWVVWcVRWVlpRbVV5WlVkc0wxcFZhRlpQTDFBS2EwcGlPWEZaZVhGTVQzcG9URTR2ZFdKTk4xQm5XRXhWUVhSamFGcDVVR1pqVURFMk1tWlJWVlV2TDBjNU9HTXJWelZZUzJGdFEwZE5ZbmhYVjBvNWJ3cG1Ra3N2ZEdKalJuTjZhVGxwV1cwdlduTjFTRkZtWkhSUmVtcFFhV3hNU0V4V1NHUjBPR3h4YzFVeFpFWmxMMUp3U21jdmRtZEdSMXBtV0Vsd2RGWmtDaTlRVERaSVVXOVROMDlWZFROTWQwRkRRVWxQWTB3M1NtUkhLek5wUVVacE5rNXNXVGhwZWxKaU0xTjZNbXhwUW5KUlV6aHhUMjByYUd4WmRXdExkWFlLV25JcllYZzVjbXBaVHpCUmJGZzNNSEprYlZKVWJXRlNWMUEwVFdaQ1kzQkhaRzVuVFZGRVRISkdNVWhETDFWR1JtUnNRbkJDVWxWclZtVklkMFZDT1FwVldrWnBRVTFHUzFWdU5YcGtTWFppV0d0VkswMVhXbTFhTnpoNVEwSkhPRkZLTVVKbldXSndORlZCWVdOUWQxVlFNMmRuYXpsbVVtVXdVSFJ2UjI1TkNtNTJPVXROVUV0UmMyMVJOa3hDU0M5cFRIZDZRbXRDTmtSUE9FdDVNbVJhUzNGMmFGRXZNQ3RLTmlzeWNqbHpNSGh4VTNwdE5YRlVjbU40TmtFNGVFb0tVamxoUTBWVWRtdGtlbVpRY0ZJd01IbHRlbGwwTms1b04zRnNZakpxUjJac1dHWXJNR1J4ZUZWSU5sVm1ibkEzVjBoalNEUlViVXRFTDFCb09XazNXUXBuUms1VWVXMURkVmxsTjBkYVVGaFdNVmh0Y2xWV2RqTlFTMWRvWVZNdmQxazFkV1JRUjBGR2QzSmtjR0pUUzBGeGIwMXhSMjk0ZUVwak5WcE9OM3ByQ25OUVpEWmFjMFI2TUVzNWRDOUhMMWxSYmtWdlVGWlJiVkZ5ZW01ck0yZDFaRk41WlVaV1ZXOXlUSEY0WjB4dlNYZFZiMFpOVkRKbU1YbFRXR2xtTTNrS1kxcEpkRzh6WjFwNWNTdGpkakpHTVc1NE1HOHJUbHBPWTJsMlkzYzFNRloyV0ZGemJrNWtjemhtVkU1cE4weFNkM0pFVVRKa2JsUjBVVFEwTm5KcFN3cGFibGNyZVdFM1RGWlVaRlppUTBKVFNFRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zZ2VvdHZ0bS1tajRjaWlzZC5oY3AuZWFzdHVzLmF6bWs4cy5pbzo0NDMKICBuYW1lOiBjbGlha3N0ZXN0ejRyMmNpCmNvbnRleHRzOgotIGNvbnRleHQ6CiAgICBjbHVzdGVyOiBjbGlha3N0ZXN0ejRyMmNpCiAgICB1c2VyOiBjbHVzdGVyVXNlcl9jbGl0ZXN0bmo3a25xdDY0cl9jbGlha3N0ZXN0ejRyMmNpCiAgbmFtZTogY2xpYWtzdGVzdHo0cjJjaQpjdXJyZW50LWNvbnRleHQ6IGNsaWFrc3Rlc3R6NHIyY2kKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbHVzdGVyVXNlcl9jbGl0ZXN0bmo3a25xdDY0cl9jbGlha3N0ZXN0ejRyMmNpCiAgdXNlcjoKICAgIGNsaWVudC1jZXJ0aWZpY2F0ZS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VaSVZFTkRRWGRYWjBGM1NVSkJaMGxSWmpJMFNWcEVVVVp1Umtjd1dVNVNjeTlHWTNORVJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdWR2R6QjVUWHBCTWsxVVZYaFBWRWsxVGtST1lVWjNNSGxPVkVFeVRWUlZlRTlVVFRWT1JFNWhUVVJCZUFwR2VrRldRbWRPVmtKQmIxUkViazQxWXpOU2JHSlVjSFJaV0U0d1dsaEtlazFTVlhkRmQxbEVWbEZSUkVWM2VIUlpXRTR3V2xoS2FtSkhiR3hpYmxGM0NtZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVNMVZWb3libE54Tm1GbVJYcHhkek4zUkVOU2FIZ0tkak1yTUZsS0wwTlpjRkU1YTA5amVpOVBhVk5FVTAxaGVqWkZUWGRSVmpndlFqQkliR3RJU0RKVVMyOTFWMFJMV1ROV0syRjFlVlZsVlhveFpWb3lWZ3BIWkdwWlIyaEdaMkppV21kSlQzZ3ZhbmxtYkROMFFXd3phVlJJTVRsdlN6TlNTbVpPU2xrcmRETnhVMGRCV21ac2JHZE9TaTlNUlhGalpEWnRVbU5tQ2tSelkxaHNlVXhHVld4a1VrTktTR3hSTVZZcmJ5OHlVbGxvTWxGR05taE1ObkZRZUdKUWFIRkdORmRXVXpOb2J6TjVTMVZzVmxsTGNXMXZPSGhuY1hRS1NuZHNTeXMxWmxac2EyWmFaVFJMYzJrd2RIbHJVM2RJWlV4M2NFSjFTMHM0UVM5SmREUlpUalppZDB0YU5YRlVSM2RRVERaTlRpOVdNM051TjNod1ZRcGFja2hzWm1VeUwxVklTV055Y0RaR09Vd3hNV3R0VUZCUWJVbHVUblZEZUZOSVlrOVpWVU52Y0VWUVJtMXhNbGdyUzFKM1drWlJOMDAyU1ZSS1QyTnNDbWxTTDB4TVVqbEpkRlYxSzBodmFHbE9XamhIYTI1aE0xaHJNbkZzUVdSVFdEWk5VVGhLY2pZeE1tNUdRbGxUT1RkeVZEaEdWVkE1V21GamR6TkpVR1VLYnpFM1IxVTJTRXQzYjJJeWQyZzBkbTR6TVhsUVJqZzRhR0pWVkRsNWNuWXZNVnBHWVdoa09GWlZOVXgwU0ZOSmJXNVdXa0ZtWldoRGRrRnlhbVpXYlFwSVpuZFVPRVp1YzJGRlZreHViR0ZqVUVjcmMxRndjM0JDY0d0V1JXczRVMmd2VUM5R1RHcHJTQ3R1V1ZGdlpFVkVSVkExY2tNeFptODNaV0ZvSzB4dkNsZ3JaMVpzT0U5amVWTjVia1pYUW0xRGEzUlVkV1p2Um1kRGJYTnZWR1ExTWpod1JVSkxRMVJEVmtObU5tSjZWekUwYzJ4RU1WaFpOVFZLWWk5MVZFWUtXREZXWVdOM1RXWlBVblpsZUZseVZXbExlR1pWYzNkTVRsSlhPVEYyUzNsM1FYaENaVkJNTVRRMlYwZFFiQzlNWVUxclExUjJiMnBwU1ZGbVV5dExUZ3B2VUUxc1FqRjROQ3N6T1hJeE1HdzBjRU5yUm5SUlNVUkJVVUZDYnpGWmQxWkVRVTlDWjA1V1NGRTRRa0ZtT0VWQ1FVMURRbUZCZDBWM1dVUldVakJzQ2tKQmQzZERaMWxKUzNkWlFrSlJWVWhCZDBsM1JFRlpSRlpTTUZSQlVVZ3ZRa0ZKZDBGRVFXWkNaMDVXU0ZOTlJVZEVRVmRuUWxGSGNraGhNazk0YkZZS1pEZzRPSFpaTkd0b1drOXZibU56VEhOcVFVNUNaMnR4YUd0cFJ6bDNNRUpCVVhOR1FVRlBRMEZuUlVGWlpHbHhaelZZYWxoTFlpOVRhRlJFYlVGRWJRb3pXWGN6Wm00dmNHRk1ORlExVGpCck0wa3pRVFYzUTI5MVIzcHpLMHgxTUUxak5UTlpha3d4Y0RKMVZYVnBSWEF3YW1wa01GZG5WbUZJUjFWdk1XaE9DbTk2YzNsU1RIWnBUWEpzT0U1d1kxUXhaRGR0T1hkbVZrNXNhMVYwU2k4eWNqbHVZMFJHTnpaMFJ6TnBPVVZvVkRseU1HTlZOa3BTVWt3NVJ6ZzRhVzRLWWxwVlpHTTFZVkpVTnk5blkwOUZaREFyVkhCVFVUQlhiVlYxZVd3dlkyOURhbTlvTUZCTGJWQTVaeTlZVTFGcFNVNW5VMHRMV1ZSc09GaEJiR3hzTWdvcmVITkxSbHB1VmtvNVVGZHdVSEpNUTJFMmFFMHhSV281VFRsMVZXeFhVMU5YUWprNVFVOUhOakpNUldsSE0zTXhjWFptVUcxMlNteHlVME16UjNSb0NsSXdhMHR3TmsxU2NVSkxUMEZwU1doaGFtZGlXa3RXTTB0NllYVlFXWEprUnpKWmFIQlFTblJNZFU5clZGRldTbUpzU21sdksyeFVia3BuVG1oSWNWb0tMME5MWlc5TlpVd3ZjMEpKVEd0SVJHUTNRMFppWjJRclJ6Tk1aRVFyZGxoWmF6ZGFNbFl2YlVOaVUwTnJVRWtyYUdkVGFtMUxXWEZVZDJGYWJHTktZUXB2WldOc1UxSllSRWwzUWxGNllUVmpkemQ1YW5SdGQyRlBVWGxLTm5aSFFpdHZiRUYyYTI0NWQwWjJTbmRTWm1kWFkyNU1Za2RXTWk5T2JqSjJTWGR6Q25adWF6TkJTWGRhT0cweFYydzBRa3BIWTJoRVkwRm5lbGMyTDA1b2RUTTNNaXR4VkZCcVJIUXljR1p3UmpBcmFraFFUV0ZCVG13MVEycGFRV3BxYlVjS01WbENWa2wzVFRCR05sQmpVMkY0VXpWaVpGQlRWbFZ0TUdGamNWbFVRMUJNYld0a1pIRTBOamRpVFRWQmRUTkRlVXh1ZVZkQk5XdFZhRzAzZHpGcmRRcGxUMWhwWTBveGFITm9aV2w0TVZsNlJGTXhPVkJvVHpWNmNqVjJUbnBOYm1GcmQzaFhUekUwTkZkV2QyRjFSMUoxYlhkaVRUVTJOMDlzWjBwNVNUUkJDbGxMY1RaSU5UWlRPR2t2UlhsaVpFeGFiM1JDY0RoRlBRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIGNsaWVudC1rZXktZGF0YTogTFMwdExTMUNSVWRKVGlCU1UwRWdVRkpKVmtGVVJTQkxSVmt0TFMwdExRcE5TVWxLUzFGSlFrRkJTME5CWjBWQmRWWkhaSEF3Y1hWdGJuaE5Obk5PT0VGM2ExbGpZamt2ZEVkRFpuZHRTMVZRV2tSdVRTOTZiMnRuTUdwSGN5dG9Da1JOUlVabVVIZGtRalZhUW5nNWEzbHhUR3huZVcxT01XWnRjbk5zU0d4Tk9WaHRaR3hTYmxreVFtOVNXVWN5TWxsRFJITm1ORGh1TldRM1VVcGtOR3NLZURsbVlVTjBNRk5ZZWxOWFVISmtObXRvWjBkWU5WcFpSRk5tZVhoTGJraGxjR3RZU0hjM1NFWTFZMmw0VmtwWVZWRnBValZWVGxabWNWQTVhMWRKWkFwclFtVnZVeXR4YWpoWGVqUmhhR1ZHYkZWME5HRk9PR2xzU2xaWFEzRndjVkJOV1V0eVUyTktVM1oxV0RGYVdrZ3lXSFZEY2tsMFRHTndSWE5DTTJrNENrdFJZbWxwZGtGUWVVeGxSMFJsYlRoRGJXVmhhM2h6UkhrcmFrUm1NV1EzU2lzNFlWWkhZWGcxV0ROMGRqRkNlVWhMTm1Wb1psTTVaRnBLYW5wNk5Xa0tTbnBpWjNOVmFESjZiVVpCY1V0U1JIaGFjWFJzTDJsclkwZFNWVTk2VDJsRmVWUnVTbGxyWm5sNU1HWlRURlpNZG1nMlNWbHFWMlpDY0VveWRERTFUZ3B4Y0ZGSVZXd3Jha1ZRUTJFcmRHUndlRkZYUlhabE5qQXZRbFpFTDFkWGJrMU9lVVF6Y1U1bGVHeFBhSGx6UzBjNWMwbGxURFU1T1dOcWVHWlFTVmN4Q2tVdlkzRTNMemxYVWxkdldHWkdWazlUTjFJd2FVcHdNVmRSU0ROdlVYSjNTelF6TVZwb016aEZMMEphTjBkb1JsTTFOVmR1UkhoMmNrVkxZa3RSWVZvS1JsSktVRVZ2Wm5vdmVGTTBOVUl2Y0RKRlMwaFNRWGhFSzJGM2RGZzJUek50YjJacE5rWXZiMFphWmtSdVRXdHpjSGhXWjFwbmNFeFZOMjQyUWxsQmNBcHlTMFV6WldSMlMxSkJVMmRyZDJ4UmJpdHRPREYwWlV4S1VUbFdNazlsVTFjdk4ydDRWamxXVjI1TlJFaDZhMkl6YzFkTE1VbHBjMWd4VEUxRGVsVldDblprWW5semMwRk5VVmhxZVRsbFQyeG9halZtZVRKcVNrRnJOelpKTkdsRlNEQjJhV3BoUkhwS1VXUmpaVkIwTDJFNVpFcGxTMUZ3UW1KVlEwRjNSVUVLUVZGTFEwRm5RakZzVGtaQmVXVlFTelZVT0hkWVYxRmlNRkJQVUdsSUsxRm9VbGxaYTJNcldUSkpNalZ6UzJkdWMzVnZjRWx5THl0b1lVaHFNRlp5YUFvMk0xcEdVbEYzWkdaaVJuQXJTREJrTDNReWIzWjFXVlJuYkhnemN5OVRaaXRNYnpWM2NVeExhakZyS3k5cFprVmtRVVZDV21Sa1ZXSlRTazVpYTAxMkNqUlFMMHhRTUUxdU1uUkxRVm8zV0hGamQxSllkalZzZG5Ob05qTmtMM0psWm5Wb2VUVnVSemhYYjBkdVVUTm1SbUZIZFVWcFVYQlZNa2t6VW5wVmFrUUtOeXMwVmpodFMzaG1WR05wTkhsRVpuZFlhbU5RTlVFd2FYcDBUemRqZFRWd1lsTkxjMnhXV1V0clQxcEZja05IVDNCSlJFVTFibVpPYURCaVNtOUlPUXBUYlZKdFFUTXhjRFZLTlhjME9UQmxlbU55YzNsNVlUZERZbmhqTDA5UE1uaHdXRWx2TVZGcU1uRTVLMDEyUkdFemF6QjRkVEZWZG5GSFVXTldLM1kxQ25WcU56WlJWemd5ZFRWUFZreDNLekoxUWtkNGJHMXpjRlp0Y2twcmNDdENPRzR2TW5GWk9EZEhkVWRYTVRGSmFIZHBhM1JFWlhsMFkzWkZka3RKYVd3S2RVcHdXVVZ6V2sxSGVTdDFSWElySzNGRFJIQllSRTg0TlRaQ01FODNhVk5VSzBGMFJHMXRWMmM0V2pZdmMyaE5jamhGUVVaRk1GRlZNRWRJTjNaU2FncDFUbkV2ZDIxdmMxUnhkSE5VYzFKS2JpOHZRMDQwWVVaaFYxWkZNVzVOZVVOVWVtTkRlWEp0VEd4WEswVnpSa2RZUXl0QmEzUlFOVXBtT1ZaTFNrZ3hDbVI2Tkdjd1NsaE1iVkZIZHpSbFN6aG9ZVzFSVTJWeFNESXhSR0poWmxCaldWUnZSRXh3V0RONVVYWkZWbWQ1TTFSM1Z6UTVXR1oxUVROdlZXVmlRek1LV2pZdlMyYzBUR2gwYlVaTU55OTFRM0UyVFhwNVptNVhTWEZPY0ZwRk5FNXRWMFJJTnpGSFJHUjZRVnBVTmpSWVowRlhTMjQzSzFCU1IzQkZjR3hQYXdvM2EyTnhjVmR3WW1wamNXTktibFY0TUV0U2RsaFFhVkpFVjBZMWExQTROVGxYYW5wT2VGZFNlWGN6UTJ0a1JYUlJVVXREUVZGRlFYZ3dZV2h4WVdWRENteHVaV1JuY1RCSWIydEtXRmcwVGtjMWR6aHRPVlpzZUVzelZXMXNWRFUwVDNkMVkxZGxRV0pyTjFKWFVVZFphelpQUWpGNlZEZDRkbmhWUnlzNWMwMEtlR3RrVVd0WlpHcDBWSHAzU0RNclppdFFNV1Y0VlROdGRVbFJVMmRKYWpNM2NtbzBNV05TWm5NdlZYWlNVbWxvV1Rsd1ZWcHlRVVJ0TmxWWlRuUnROd28wUkRSNVowNXJOemcxT0N0WldWVnVkRmd5V0dweWJWUkNWbmd4WWtwa1J6SnVSRk5CZWtoTVRFeFFjRTVDTmtsM1VrbzBPR2haTUhrNUswaFdiVm8yQ21SNlYyRkRlVFZHTm5SaVltMU9SVlY1ZWt0VmRHbG9ZM2RTSzFKaVVEVTJaWGhUY0N0eloxRXZiazFtY2pWYUszTkJXWHBETlN0eVZFWnRSbWh3U1ZRS1JsUnBXbFkwWkhONE5EWmxPREZ3UW1Gbk9YaE1SRVpKZVhkWlYzWnlVVmh3UTFWVU5HeEJOalpSU1d0MmNYWkhTa0ZvYWk5T1FsQlpNR1JJWWtodlZRcFhNakJoYTB4UlQwcG5TVFpVVVV0RFFWRkZRVGRvU0hJNGMzQmFjRlZ0VnpaWFFWaEJhWGhhV1VJNGEyNDBWMUZoYkdoUk16RkhORmMzY2pSMFpESnJDbVZCUkhOM2NYRXJWbU1yY1VOVGVrZE5ZM2xGV25kTGRFeGhlbFZpWVdwMWJtNURVRlU0VVM5dU1GVjRObFJIVlVKWlRraG5UeTlEU0djMU5GcHdTa2dLU2pZMWRVUTNkVE12VVU1MVpWZHNjVmQ1WkcxemIwbFVZa3Q1WldvelNscFBURTh5UVZNMVdXd3JXSGhYUlZWeWFGcE9hWEpJVFVob2JqWm5XbEF5UndwRlJqQXdiRzR2YjA5clNXdzFjbEZNVEZOcEwzaHZWbmd3Vmk5a1kzbFJPSGxLU0RKS2FEbEZXVk5uWVZwRVdVRXJOVWcyUkU5bWFUazNjV05KZDJSTENsWk9ZMVpxWm5wb1EzbFZMMEpqWmxWQmVIUXhaM2wyUzI5cFpXaEVZVVZXWlc5Q1lUQktTMlZxTkVsVVJFTTRXbEJHV0ZFNFNXTnplU3N3ZEdoQlVqSUtRVTUwTUhjek1UWmhOVnBRVkVSdmFqSXJjWEI1Y3l0RmNsTXdTRE4ySzJsSE1YSTNSVUZPWkVOUlMwTkJVVVZCY3psdmJXNURWVzlOYWpsbk9VbHFVUXBKTDNveVQwdHJWaTlCU25JMlprcEJkSEpWTUVSdGVtdFFTRFE1VEdONVltUjRURU0yWW5GSGR6TjFZVTV3VlVKM1RFUnpjbUpFUlRsamRERm9kazFJQ2pWYVNreE5iRXRSWjJwMlJFcG9XWEZFZDNnNFYyMHZSVkJVZGt0elluaGliQ3RNU2s0dllVUTJjMmR3WkhOcFZHRlJNVE5NYTBsVVZUZzRkVFkyVjJzS1pYcDFWa3BLVkRKQmRFdEpWQzlPYWtsMWNWRjJSMHBKVHpKNWNIcDFTa2tyYkRacFRXb3dRWFJwYWtNMlpFNXhPRlJ2WTFCeWJXTXZRM2gyYWtodVJnbzVjVGRYV1ZSVlRFeEdNMHBhUTBwSWJreEhkVWxuTkVoWk1FTkRURmR2VjBaSFF6VkVNVTl1YjFwNmJYZDVNMjVtTjBGdlYwRXhUV3hrUjFGaVJGRTBDakZHTnk5VVMyd3ZPRzlhWmxsVlFsWTNORGRsVW13emNVaEhZWFZpU1hBeWMwMW5WR1U1WTNseVIwTTJVbGh0U1haU1UyVXZUMDkwY21Sd2NIRkpTWEFLV25SeFNqTlJTME5CVVVWQmMyOXVNRTVzS3pCbVZGaEZTRWc0Tkc5cFQyRllNMFJpY1ZaeGExcEhlVnBOWmtZMldHbHFTa3h5VEhKRWFXYzNXblkxWmdwM1kwUTRWblZqYVU0clUxZEJlRGRLZFROQ1lUSXlZVTlzV0c0MmMzbHhRbEZFVUVoaE5HZElOVEUxT1hWR0sxZGFOalJaWXpKM1QwOTBPR2R2VjBnMUNtRkxSWHBNTlVKNk9UWnhSRFZUYlZJMFlsWlFUVWR5YTB0S1lqRjZjM0ozUnk5TFVsaGpOVFpDYWtoNlJsUnpja1ZLTVZWTmIycEVRM1pEY21GS1lrTUtSbFJpV1dJM2VtdHBUbWd2WjJsVkwzQXpURXRuTDJoUlRWZGlkR1k0WlVKSk5DOU5kM2Q1VWtSb2JEWjFhMVZLVUZKdVVUQkxRU3REV1ZKSlNWQlVaQW96VG5KM0syRm1WVUYzVTB4NU0xTkVRV0p5VVcxSlZVOXpOVVZvUTJwNE5qa3djbTlsUVVjeVdHbzFTbVJMYTJKWGJFRnJRekZpUWtoSlJqUm1jMlJUQ210UE4yNTRNVmgxTkVwWFRFRndUa0ZuUWswclZFOXVVSEU0TkN0aVRreHZObEZMUTBGUlFVaG5VRzFIV0hGVlYzcGhkMnRTVVVwSmEyTXhiM2xyVUhvS05sRkJjVlppVUdZeFExRkJORFZNYTJocVRURlhSMGRITVhkaEsxSnlUM1JUU21jck1XNUdiSGRFY1ZObFducE9USEJYU1RsSFQxbzJTV1ppUW5kNWFRcEtiRmQ1WkVOU09YbG5aM1l2Y2pCRk4yUm1UM2c0VTNOMGJURllORFozYm1OQ1QwdFVlRzA0UkVaUWRXb3hVVkZUV0hkeFRGTnlPRU12Y2pKeWVIaHpDa0pKWnpaSFNuTXhTbEpzVDJWSVNFZDNWMUo1UW5WeWF6aFpiVE51VFZjM1NsVlFkR1kyZFRFNWNrcHpTSE5aVVVadmVscFBkSEIyWWxoMGQyZExMelFLY0hFNWFVNUZTVFpJTkhZeFdtZHlVMVkzUWtwUWJubFhObFF3UTJVMmVGZG5ZVmczZUVJMVJXSXhTekpOV0dGVVFuVmtWVFZ4TVN0dU0xQkJSakIwVmdwak1GSllUaTl6V25neldrVXZjV28wTTJ0WkszUldMM0o2VGxkbWF5dHJNR3hOV2xGNFUxZzNlRVpOV0ZwQmNVcHVlbWxUYTBsVWJFeDBZVm9LTFMwdExTMUZUa1FnVWxOQklGQlNTVlpCVkVVZ1MwVlpMUzB0TFMwSwogICAgdG9rZW46IDRwcGR4Y3J4eHZlYXMxcTNpd3RjMjl5MmVoOXR5YjQwZjNiZjRkdXdhcHBmZmo4ZXV5N2VydWZjbnU2NjhxZnhodGp5Z3NyYXF6anlkeThuZ2x6OXF5cW5icms5dWVxdmtlZGpiMXVua2dzNDdrZXF3dXJpeGp5ZnRxbGplbzhqCg==\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13072' + - '13084' content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:09 GMT + - Thu, 15 Jun 2023 19:43:04 GMT expires: - '-1' pragma: @@ -968,24 +1031,24 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSWkRJMWQwOUphV2xpWkdsVmJXczVSVkkzVTJFeVJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCZWsxVVZYaE5SRlV4VFVSYVlVZEJPSGxOUkZWNlRVUk5lRTVVUlhoTlJGVjNUbXh2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSc0NtWnJWemxYVDBkTFdEQndVa0VyZWpSbGVFRlhjblJ0Tm5KMlpsQjJjazh5Wm0xUU56bEJOR1JqYlZKTWNXeFVNMDFMUWs5aGRucHVRVEl4T1hSYU9XY0tSMDlzVFVnek1sVklWalZzVkdSQmNqbEJhMFF3WTFWRFpXUmlka3hrZEN0cWVVRmpXaXMxYkVkd2J6SnJkRzhyWTI1Q2F6WjVjM2hXTVZNd2VYVk5Od3BPV2pkMWFXbFJMM1o1Wm1SMmNXVk5lR1ZyVWsxU1MwRkVlWHB6VkU1bmJrWmFPRWRxYzBrdmVrY3JSMGxTVEhWS2NqZDRLMHhNYmswMFpEUmFObkpKQ2l0UE0ybEthR0pyVFVFM1NGa3JMMnBhVFVSbmNrZHRaVFprTkcxd2JFNTVXRFpxVW1kVUwzQmlkbkZSVlVsM01WcFhNSHA2SzJGdFoweGhOVWN2SzNBS2VVcDNTVzF0VFZCU1JHSTBlRTl4VEVOMFpXMTFhbGg1YVhJNVNWZE5hMFY1ZHk5eU5reFFNREkwTWtsNlRrcHlOVWhPTldGYU5qVk5jV2g2UmtZeE1nb3hkalpTUlRBMldtNUhWMDVGYW00M2JFNTRTek5sTDJnME0wSmtWM0Z3WVdKc1kyTm5SMVV3ZEVSeGNWRm9NbWh0Y25sWFF6aENabVZvVGxOWmRsSlFDbXQzT1d4YVJ6TjRlRkJGY1dwRGJrUnBSMmxtTkRkcmNVRnJhMk5FT0U4M2MzZDNValFyVkdGVllsbzVRamRzWjNKYVZqRmxOMFpPTUVacFF6WXdNazBLVDFoTFJtNTViM0ZTWjI0MWNEVmhkMFJEUlZKU2IzUjFZVzVxS3pCV1dpdDZWREUxV25nM2FrSlZWM05qU1dWeFVqSm1TRGhKZGtoTFNqUTFaamRZVVFwbVQzaFVNVVZGVVdSeFFVRlZNV3RUWWxCNE9IcDBTSGtyVFRCRGNHSnlSbE5VWlhNcmVqSldhRE4wVjFoWlUwaG9NbFJMWlZad1dWcEtUVUZ5TVZSR0NtWnlOa3RITlhVMlUyNXBUak5JVDJKaVNVbGFhbGxwUVU4dlJWSkJZMGhoWjNOdlYyOUVkWGwyTTJsS05VRmhTRmh2Y1ZNNE9HVldUR1ZDZVRWSGRHTUtjbkJOT1ZCV1lqQnZZMVpQVkVsUE0ySjJibXhhTW5GR1IzUnVWMnhJUVZaalRXWjNSWFFyT0dwUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWQ1dVaHpaa2h5ZW1sdGNHVTRUMjkwQ2pacFVHUmtRa0p2VVRCRmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRVkzSnFTMUJMYmtWeFpWVTBORlp0Y0dkcUwyUlBUVGh6TW5BS1RrVnllRE5yU1VoaWNXeE1la1kxYkRNellWQkNiM1ZuZUU5NldTOW1RV1pKT1d4SGJsUk5SamhQVVRJeWN6QlZNRzUxZERkUk4ya3ZNRXByTTFSRGJnb3lWMHMxZUdVdldFY3hUbTh2UVhsMVdUZEtWVlZCVkZONlpWbzNURlZyVFZCaGFsZFdaakZKVEd4VWRISlZaR1ZRYlRSNE9VRkdTRk5JUTAxbVZsWnJDazE0VDJ4dmVYQkJiVTVHYXk5eU1GQlpNa0pOWVdsbE5XYzFPVkYxVkVOeVFXeE9jMUZSUWxRNFdsbEJjMlZ6YjNsWFVVazBNR05pWW5wMFRESndOMWdLUWsxdVFuWjVNVEZxUmxoV01HUXdhSGh3WVZabVVWTjNaalZ1ZVhnd1pta3dhVzQ1VXl0NVdYWnJjVUpLUkVjclZXVkJiU3R3T1VSemR6RkZkMnQ0VUFwc2RsZzViM2tyTkdveWMwcDZLMk5TVDNWc1ZHb3pTazA1U1M5emFESTNZbWR3TTFSeFZ6aDFSbmx2Wm1WVWQzbEliMDR6VkRaV1FYQm5ZbFpYY0hCekNsSnhVREpKYkRkNVZWVlBZM0p4WkU5VlNUWXZWVTVsT1V3dldEaDFLemhDU1RKMk4yUkRWV0ZOV0hGTmF6bE1Nek5rTWxGdlJFRXdOMlZLTDFJM1pXOEtibFUxVkVneVVEZHFTbVJSUmpSNmJGVjZVMXB3VEZsMWQzcE5OVFZhYzFOUlVETlVhalJqSzFkdlVHNVlSVlpVU2sxRlNHWlJNbU5IU2tveVRIcEtkd3BOYTI0eVFteHdVell4UW1OUVRtNWxaVTR4TkdwWVRGcGxlR3BTVHpkRGVFOU5aVTR6WTBkTEwyTklNRFp4ZWl0WVJHbDNTVEEwVkhocVMyczFXV05TQ2s4M05HUk9jMnh6ZVRrcmMyY3dMMDFrVXpkRGJUTlpibVJwVTNCNU1FZG9XSFl2ZEU5RFRIRTJTbXQzVjJReFlWYzBRME56VkhkQk1EZHVUbTF2UjJjS2RVdEZWRzV2T0VNMFJHMVZiRFIxWkdSMGRVUnpkbUZxWmxBMU1ucEhha2dyZDNGWFZrTlJTemh6SzNKUlVsUjNkVkJaUzJGMlpYSkhUM1pPVTNSb2FncGpTWGd6TUZkSVoySnVjekoyUTAxUUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2N2cHUza3YtN2JjdnA2c3kuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3Q1Z2FpMnkKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3Q1Z2FpMnkKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RsZTJmcGNpemM3X2NsaWFrc3Rlc3Q1Z2FpMnkKICBuYW1lOiBjbGlha3N0ZXN0NWdhaTJ5CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdDVnYWkyeQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RsZTJmcGNpemM3X2NsaWFrc3Rlc3Q1Z2FpMnkKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVXA1WWxBM2RGZFJlRkVyT1ZsQ1pXVnNLMkppVm5kM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDE2UlRGTlZFRXhUbFJCTWxkb1kwNU5hbFYzVFhwRk1VMVVSWGRPVkVFeVYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCZVdkNlRGWjRURlZUWVhBMkswOTVWaThyUnpNS1ZGVjJWRlZvT0ZCUVVsTnJaMlJzYUhORVFYSkdiVTU2YUVoTVdISmpiV2x3VG00MWVGUjJjV0pRU21weEt6QnJUbk5wU3k5Q05pdFJVWFpzYVRaa1lRcG5NSEZrWlZWUlpEaERRbGRsU0RSalRHaG1ablJ2ZEVvdlpVaDBSRlpSU1VsbFlUSjFSMjV6WjJwa1dqVjROV3hYVG5kWU5XcHBLM0ZCZDJ4NWEyOHdDa2xQVlhveGNWZE9UMnBCTVdGaFdsUnhNREZqY21KTVMweDFhMWhDWTJrelZFVjNVRzlYZWpKc00waFZkR3RsU1haS09GUlhVM2hqUVZaM1ZIZEZTbWdLVW1sM1kwOTZjazluVnk5cVRtVlNWRmt3U0dkalZXTTVObXBCTUZoa1UxazNkV1pzYzNSTlZERm1RVmxoUmxnMllWaHdPR3R0VGxWcGNqZG9kbGhZYlFwM2VuSlJNRko0TkRWdFNIWjBla2xLWmxwV1lVeFRRbWhyUW13NGNteDZiMlk1ZEU5QmNtSjNSMVpFY1dSNVVFTjJWbE16Y0RSbk9Ya3ZVVTB3YlU1cUNtY3ZPWGw2UTJKNWQwNW1XSEZJY2l0bEsyNW9RMmMzWjNaV1VtbHpPRlptTWk5c01UVjRVa3hVUW5KQ1RFNTBObVZ0UkVoak1UbG9Za0p1UkRkWlExTUtZa2xhUlRkT04xWnNjMHhqTTFWaWJWRmtiM3BJVmpKSVFUVmhSVVpzZVhCTWVrdE9Na3hzYVZFMWRVZEljRXR3ZFU5eU1FTkZSVTV3V1ZGcWMzTk5TQXB1VG5abWQxQkJVSFZ6YzA5SGJXeE1jelU0WjFoalMzcDNhMFJyY0VoclVsWmlhM2N6Y0RGbVJrRnRaSGxzT0ZWd09GaFdSeXRQT1hoclVqWkhWMHd2Q21oVWFtaHJhV1Z2UjNsa01EUmhSRTQ0TkRGcVZtVjVWMGc0V20xSlVFSmpiWGRHTjBSQk1tUnhTbmN5ZDFsS2NGQjJlRkJWYWl0QlJYQkVVV2hZUkhBS1R6QkpOVWhrWkVsSmMzWjJNVVpWZVhGVGJXTlFhMmQyTnl0bVpIWTRNR013WVVaR1FVMXlSMHRZYUdKYU1VazVaR0p1U1hWdUt6TnRTWFZDUW01ak9RcExhRVJSTlUxTUsyOUpUSFZRVGt4aWRuZ3JTeTlTUlVOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWUWxsSWMyWkljbm9LYVcxd1pUaFBiM1EyYVZCa1pFSkNiMUV3UlhkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCU3pWaGNrTldNbVZGUzB3elJVZERTSFIxVFFwNmVVZHlaVTVFV1ZWcWFYQldjMDE2TlRCcFJ6Sldhalp6WlZwSlNGUjFkRUpXUW1sYVRtTlRTWE1yUVhkRVNHbFJhMmhLUVZsb2RHTjZjVEpqVWxoVkNsaEJUVmhPT0RGblN6SjRlak5VTVdablF6WnhTeTlRUjBSUGEwNDRXRXM1TUZvMGQweGpjMlptVDA5eWFuSjZVVkoyYUUxdVIydGpMMFJZWjFKdWFFSUtkSGRSVmk5RE9VTklNRlJVVjNCYVUwaG9NR1V2Y1RWYWEwbGtiRnAxTlhOelRrNWhlbFEyYkU5cGRtaFBObWhPUjFkd1ptOXhUa050TmtSR1JsZGFVd3A2ZUdrNWFrMWhjako2THpOamQwRlJZbmQwUTJ4d1VrdGtNWGt3Tm1kSFdVeDNaRXgyVkVWTlkxWkxUMnBPU2pWUlpYUnBWakZxUkZsdlpHSkVTRzFWQ21wNmRVTTRZbkF2TkVzdlN6QkpPSEJJVTBkaFVXWkZhRWd5WlZGbFRDdE9kV2RPTW5SdksxY3dkR0p1TWxjeVIyMW9lRFpVUm1aa1J6QkxWVXh0ZGswS2F6aHdlRTU0ZG1STU1qbGpjWFJ1ZVd0RWFYQlpVbTl5V0V0WGJHSnlhMHBFWVVGSmRHOVVkVkJtV0dsMFoxSnhNV2N6V2t4VFRrSkVNbTlGVTI1T2N3cGxVVEp6WlRWRVpVMVNlWFpYVERNNVFsZERSRFZJSzA1RlRtZDBSMlZoVEcxWWRYQnFXbmt2TUdsUk5VNXFXbmxIV0hwNE1EbEVMMVJCYmxaVVN6bDBDbFptU0VnMk0yUjFjMk00Um5Ob1VWRlhWa3A0UTBaYVZFSkVVMmgxVkc5SVdVUTJOVVpoWVdreVN6Tm1ZbU53UlVaMVJXTndjVnBHVlc0MGRHdFdlbllLWTNSMk5USldUMGhzYW1OS00yWkpXRXBDWmxWb05tZEhPVXgwZDBRMmRTOWpVVTF1ZVdGU1IyMU5iMjlpVG1VMU5XVlpZM0ZPUXl0Nk5GQkJja2xqZHdwWGJYTlFjVGR4YTFoeVJ6Vm1TR1EwUW5jMVdDczNhVXQxVG5GbFdITnNiR2tyV0ZCRFZDOHlTRzVZUlZwMU9HbG1iR1JuTm5CaGFUVnFWbmROWjI5dENtbHZlV3R0TDNjclRVOUVXWEpSVURGamVEVjBSRXRFZHdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTbmRKUWtGQlMwTkJaMFZCZVdkNlRGWjRURlZUWVhBMkswOTVWaThyUnpOVVZYWlVWV2c0VUZCU1UydG5aR3hvYzBSQmNrWnRUbnBvU0V4WUNuSmpiV2x3VG00MWVGUjJjV0pRU21weEt6QnJUbk5wU3k5Q05pdFJVWFpzYVRaa1lXY3djV1JsVlZGa09FTkNWMlZJTkdOTWFHWm1kRzkwU2k5bFNIUUtSRlpSU1VsbFlUSjFSMjV6WjJwa1dqVjROV3hYVG5kWU5XcHBLM0ZCZDJ4NWEyOHdTVTlWZWpGeFYwNVBha0V4WVdGYVZIRXdNV055WWt4TFRIVnJXQXBDWTJrelZFVjNVRzlYZWpKc00waFZkR3RsU1haS09GUlhVM2hqUVZaM1ZIZEZTbWhTYVhkalQzcHlUMmRYTDJwT1pWSlVXVEJJWjJOVll6azJha0V3Q2xoa1UxazNkV1pzYzNSTlZERm1RVmxoUmxnMllWaHdPR3R0VGxWcGNqZG9kbGhZYlhkNmNsRXdVbmcwTlcxSWRuUjZTVXBtV2xaaFRGTkNhR3RDYkRnS2NteDZiMlk1ZEU5QmNtSjNSMVpFY1dSNVVFTjJWbE16Y0RSbk9Ya3ZVVTB3YlU1cVp5ODVlWHBEWW5sM1RtWlljVWh5SzJVcmJtaERaemRuZGxaU2FRcHpPRlptTWk5c01UVjRVa3hVUW5KQ1RFNTBObVZ0UkVoak1UbG9Za0p1UkRkWlExTmlTVnBGTjA0M1ZteHpUR016VldKdFVXUnZla2hXTWtoQk5XRkZDa1pzZVhCTWVrdE9Na3hzYVZFMWRVZEljRXR3ZFU5eU1FTkZSVTV3V1ZGcWMzTk5TRzVPZG1aM1VFRlFkWE56VDBkdGJFeHpOVGhuV0dOTGVuZHJSR3NLY0VoclVsWmlhM2N6Y0RGbVJrRnRaSGxzT0ZWd09GaFdSeXRQT1hoclVqWkhWMHd2YUZScWFHdHBaVzlIZVdRd05HRkVUamcwTVdwV1pYbFhTRGhhYlFwSlVFSmpiWGRHTjBSQk1tUnhTbmN5ZDFsS2NGQjJlRkJWYWl0QlJYQkVVV2hZUkhCUE1FazFTR1JrU1VsemRuWXhSbFY1Y1ZOdFkxQnJaM1kzSzJaa0NuWTRNR013WVVaR1FVMXlSMHRZYUdKYU1VazVaR0p1U1hWdUt6TnRTWFZDUW01ak9VdG9SRkUxVFV3cmIwbE1kVkJPVEdKMmVDdExMMUpGUTBGM1JVRUtRVkZMUTBGblFXVjJLeXMyV1hJd05FMU9MMmxRYlRsa2MwRmFjbXg0ZVd0S1QwZ3lNRGgwZEdvMU0xVmhTMEpIUjJkRFkzRmlWekZXZW1sUWFXcFVMd3BHVnpGTFFUSkhlalp5VmxkUFVrMWtOVGRtWjNkdFV5czJhM1JYU3l0aWJtRTNlRFp5VWtVM05sVldNSEJ0Umk5elNtTnJUV3gzV0dGVVEweHhSV054Q25KalVUSXhVMGQ2YTA5aGRuSldPV1I0Uld0UU0ycHNjVWhtZW5NdlRGUXdPU3RGVldRdk0wcENSekEzV25SNWVDdHpTRmRtWkdKd1NraEVlRUpoY0dvS1ZVOW1LMmxITlhSQ01XOURRM1IxZHl0S1ZsRkNObXhvTW5wb1pYRTFkbTlVTjNwYU5tbE9WVTFzYlZkbk5VbGhOakZMTmpjelkyOTVTa0V4TWpoclZBcG1RbWhMZFU4eVpVRXlaa2MwWTA1UWNrSndWSFV4VlhwMGJIWlhXRzQ0YkU1QldXRlhaRVpZZFdndlJHOTRWa1ZTVDJSVlVFOTZRM2hLVlVZd1IxTkJDaXRWU2pGT0swWllTRWhSYjNsR2Jta3ZNVTFaVmxJMFYySjBXRmxJWVhsa1ZteG1RVUpqTUdkNGVIQmplbkppTVVsdUwwcFlTRTFrVFhSUVprZHVZVklLWTFreWJ5c3lZMEZ0TlVWbGIxUlNNVGxzZWxWM1QxTm1SbnBuVTFwTVFWZE9NbXN5VkhGdVRqZ3lRa0pTWkRCNWF5OU5SVzk0TW1WUlpWTXJlWGd3TUFvclFuaEllalkwYkVJMGJ6ZERTR1JQVURSSlNrWkVOSHBIUjJGTVVHMUpXR1YxZVhCdlFtTm9lVnBrZUhKNFQzb3JkakpyTVhGNWRVRkhVVmcxY25WaUNtTjFZVkp4YVZaSmFrNHdla1JCTVU5MU1ISjZXVmhSUmxFelVVTTBVeTh2UzJKTlVDOVhiRUZxUTFGT05pdGhURVpQWlVFemNWSkhaREU1VlV0V1ozVUtaWEJEY21oUmRUUk5RMlZSZFRSU1RUTTVRa1pSTm5oMVVWZHFjakZtVmxSMWRVTm9SSEpxUlZkaVdtbEpaV0Z4VjA0NFlsRXllR3R5WkhCQlVuaDBOd280TVd4Vk4zZEdNR05sV2pKMlMzRjBOMkZrWW14R1VtSlBWVU0yYWxGMFlVbEZiMFZ4VlhaWU1YazVjMDlYTlZFclVVdERRVkZGUVROeE9WQnFSalZSQ210TWNGQXllRkE0V1hWa2NFaERiM1ZYYTJFeVFVcG1SVll6U25jeVlUQXJVMmxETkRkM2ExQlVWMFZDSzA5ak9EWmhlVEpDTWpKNE4ybDRNa1ppU25vS1ptZGlNbkJ5TVd4eFRubEdkRlpMZHk5Tk4wa3pZWFp6TTFoemJEVmxlVWxUTUdaSVNqSldaWFV6T0dSWlluTklXbFJEYXpKUlMyb3JiRU5xVUc0MlVBcFVVelkwZENzNGNYSmlVMFZMUjJSUFZrZ3hURVpwTlRBM1J6aFpjemxpU0RsSk9HWnNUVUpZWmxjNFRYTm9OV3g1V1RKNU5XSXZZbGR0TWxscmFuTjJDa1JzTm14UmJFWklUamx3VVdKQmQyOTFWWGx6VVU5NlpFeFFXRlZtTmpSQlpuTkhWMHhUTVVVNFkxVm1RaTh4TTBwUldUZzJWbEZYZDBoWFlURklVRGdLWVZSVE0xVTBUakEwWVZsaVQzSjVLemhwWlhvMWRVVnFkbEpwYlVWVmNrZ3ZZbGc1VjNWb1dIVlNTRFZaTkVGWloyVlJXRWxPVlROT1VucE5abTlwUmdwamMxZ3Jkbk5IU2psVlF6TkhkMHREUVZGRlFUWkZZM1YwVGxkemFtZGpiblk1UkhaMGRUQXhkV1prVEV0TkswUmpWV3Q1YjBONVNEYzFaRVJ2ZGtNNENqbE9OV3MyUlRKeWJESkRlSFpIWVhWaGNqSkNNbVZUU3pZNWNEQTRXa2hsVWpSQ1pEbGxOM2RXVUU5MGR5dFlWVTVUVm1sWWFsaGpTRnB5VERWVGJUa0tSVlE1UW1KTU1UaEZkV1pWVDBJNFVXRm5SRVp2UjBoNVRVTmlXVWN4WjJVdlptbENUR0ZoZW5waVJuVklWbGs0TTIxU2FXcE1VMVJaZUdKM1QyNVNLd3B6VDNvM1UzcGhRa2swVDFkck1GWlllRk5LV0Rsb2FHcEdUelphVHpnM1NESTFTVGRVU1c4MlkwOXpiRXBTWjFoMWNuZDNXVFpGV1dWdlEzSTJPR3hVQ2tWWWNqbDZLMUEwTldsemIyeDFjMHBOUXpkT2F6WlpNVlp3YVVGcGVucFBUVzlxTWlzd2VsWk5VVzB2ZEVZNVdHUk1XVUUyWm5KcmIzUjZRWGt2VEVvS2JtWkJSMlJ2YjBoRllsa3hLMHQ1TUhKSFVVNWFNR2RqVWpsb09EQmtUazk1VnpWaWRuWXhSRkYzUzBOQlVVRXlSREF3Tm1kSVRVTnFOV2gyVlU5NlJ3cG1aazVSWlZKVlJIRlpUSEJ3WlRWMVdrVlFkRTVHWlZreU1WUkxRWFZOUzBndlJFRnZha3A0WTBKS1NYWXlTMmQwV0RVNVUyWk5jblI2YTA1NFdrUXlDbUUwUzNsUlJEZHFVVXhuVjNsSVVXRlhTbXRqZEdzeGIwdFRZVFU0Tm5kS2VrcFJkbU0xTkZvdlRFMXZWVGRJU0ZKUFp6aGtZa1ZKVW1JeGJVOWtUMk1LYXl0Uk5XZHpja3hVUW1RNFlsRTNTbXA2WW5GQlkzaE9TRXR1U1VSUFIzZGxPVTFVVFhKdU0wMXJWWEEzVjJWMFJHdHZjSGhsUW05c2NWWTNPR2QwWlFwRVkzWlZWSGxrWW5oTVpGVnJObmR0UkVFdmIxcDVLMHhzYVdWR1JrTmFWMjh3YjJwUlJ6ZzJUamhrTVhoWmJ6UmpkRk5DYlhnMk9UQTJVbXg1T1ZsSENrdGlUVmRyVm1WNGNHUXpVWGRRZEZOSWNtWkRTSFYwY1U1c1NYQlVXbkIxVUZkVVZIVlFZelpKVlhSVlJuazNkRE1yTTNSRlpYVkVjak5zYldsamJXRUtSbTV1WkVGdlNVSkJRbU5aU0V4cE1rWm1XRFZIUTJGdFN6STVVVzV0Y21rdk5FbE1VRGxLWm5GTWVuTk5TV1pPZW14bVFTODRhVWsxUW1WRmQxYzNTQXB0YlZKV1FWUndlbkJTYkRRNE5tTklhbGRGU0ZVNFdtZExVR1IxZW1zMWFpc3ZOMmxPZG5Ob2QwZHZSbWxQUlZsd2RsVmtPVlZLYkhVMlpVbElNMGg0Q25kMFVHaHZjM2R1VkRNM2JYWnBSM3BsZDBWakwyUm1ZV2RXTVRodFduWXhOMFJFVjJocE4wZGFSbGxDUkdwYWJqZFlTMmxoYjFwRmVXRmtjM1lyU1RnS1JIaHBUbUZJUTJSUVdXMXRWM2hQVm5SWU5sRjZTMWt3U0Rsck5GWlNPSFJCWjBKNVMwMXVWVTVEZEhwMFR6bGFTVGMzU25kWmVWaFpaWHAwYVdFeU5Bb3hUWGhOYVdoc1ZWUm1Va1ZNYTBaNE5FUllNekJpYVUxcVlVaHRkbUoxYldOSU1FdHFZazQwT1ZKYVQySTNWVkp3WTIxb1ZtaEtlRGQyUzFOUWNXMTNDa3REVjFaYWJFWk9hMVpsV0dZNWFGVXlabEY1ZDJvMlkzcHNjSEUySzJ0RFoyZEZRVWQzVkN0VVVGSkhPQzh2WldsVVowcE9TSFp1VEV4Q2JVWkRhM29LVUZaVmJXOVBka3REVFhCWmJsTlpVak5yVGxOeWFEa3hOVGhTVHpoS1dWbFhZamxZYTNGeVowSnNRamQwTVM5M1lYRnpObEZLYlhOaVNFaFJkVk5IY1FwUGFFTmtkbmhaTlRsSlQyZHlXbTAwYmxGdFlYRmxPRUoyVUcxNk4wcFZRVzU2Unlzd1RrZDJXV05hV2pkQmRuZHNjMWxwV0UxSlJqRkhhbmRXVjJ0MUNqSklTVzVEUTFkb1p5dHJaSGRUY1djNU0zWkNhekJ1VVZKMldXNW1UaTh4YjNKVWFuRmxiRlZ5VUdaTWJGZDJUVTVOYVVsa1dEaEtlUzlJZEU1YWVtWUtTVEpyTTJVMGNHdHVWbHBtY1hWb1MwZHhkbmRFVUZKdGQzTjFNbVJvY2paUGQwMXRSSHByVVRoNlNGSlNNaTlSYTB0emJWUktVWFZwZFRWT09XMHhXZ3B6VkVkME1HWjRNUzlWUkUxb1MxUnJjV1JtUjBWMVdGaDVTWEExYzBGbWVuRk1WemN2WTFocFNqaE5Wa0pLWjBGMVkzVjFNSEZQYWxSblBUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogOWhqemYwazZqbGl5M3c1NGt6dnJwYWI0czJ4MHZpc3Fkd3djdzFjNjlyNzMyZWM4MzNya3V5dHVzYjBtdWlidWNpbDE5bHR3Mm9kczR6M3lkdXRpdmlvNWRqZ2x1ajkyaXNzems2cHBod2RibGlwd2YxeXYzeXFvbmVsY3l2aTMK\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVU5UFoyZDJjVlpCYmtjelpGQlRjVGR1ZWtsTVlYZDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJURk5WR3Q1VDFSUmVsZG9aMUJOYWtFeFRYcEJNazFVVlhoUFZFMDFUa1JPWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuTlJTVXh3YXpSdFdsVlBjVzFFVTNoRVpuQkpabWxUY2xVdmNGUjJhVEZtZW5ZMVJrMW9aM2R4YTNGelZqSnFMMG93ZUVvd2JsaHVaRVJhVkdsUk4yVUtNalpvTkZKa04yUm9ObUl5VlhGTmJtWmtURTQ0TnpoUmVVTXZkMmROWmt0eFZWQlpNRE5qY2l0TGNrVTFUR05zY0d0bU4wTkVRMlZuTlVnNU1IcE5id3BUUm14Rk5rRkZPVXR5UjBGNWQyNVROVGR1UldOSlRVNWxjMnhhWjNSSVVHSkhjeXRCVW5sbmFsSXJUMGd6Y1dOc1kwNU9jR2ROZFhvM1lWQnFOMGxxQ2prM1lqZEpTR0pNU1RsMVNHWmtTV2hHWVM5MlJXeEVSelF2VEc1RVUyWjZRbmxRY1dzclluQk5XaTh4TmtrelJYTlhWVUZqWldOMmMybFFMMWRSU0d3S1REbFFlR3RRVkdOdGIwSkpOR1E1ZUZOWVJIVjVWMFZqTjFGVmFtWlVVbVkyVEZFMVEwVk9hSGxTVUdkdE1YWnVhMlZtYWxCbGRHZFlSMWRWYUVWRFR3cHhXVXBNYkhCRVFXSktaVTltY25kTllsRk5SMjFIYkZBNFpFeHlaRE5NZEN0M2JGbFBSREpEVFdkUFoydFFhMUpVVDJSSVkzaGhOMGdyYVhsTldsbDRDbTFJY0ZkemJEbFNNRlp1UW5oR2RsaEhhM0JDVlVScVkySmtSMVpMZDFBNGJIQmxUMnRrWjNSelNVWm1jMUJGVG5wU1FtOVpkR3BtVDBzeVJUUk1ha2tLVDBWdWJWTkdNVmxDUzFaWWFFTXdSR2xHYzBST1l6Tk9WMUJ3YVhCbFkwMVJOalpxVW00d2NsaEhlRk50UlRWcWIwcEhjMDlqZVhwYVMybE5VMlJpYndwcGNXMW9SbFV3VWl0NGRUQjFjblZPU0hNNVpsWlRhVVpqTTJvNFN6aEdUa3NyTm1SUmNFdDNla3BIUzA4eFprWjRUa00wSzJReFlrVldhbmd3ZWpnMUNtWTJVRWh5UzNZMFVtMXFRbG81ZGxSclYzRk9jRFJJVUhKNVZ6ZFFUVXRpVjBWSU4wa3JNMUJUZUN0Tk9HRkVhMVUzWkZSRE9XWlhTV3g0UlRVcmFtb0tRV2w1TVRWM01HNHpZV0kwYmxOa00yMXlRWEZwTDBGb09UQTJhR3QzTDB0U2FsZFROVU14ZEZWUlkwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1FXRnpaSEpaTjBkV1ZqTjZlbms1Q21wcFUwWnJObWxrZVhkMWVVMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFrcGFRV0pWWVVWcVRWVlpRbVV5WlVkc0wxcFZhRlpQTDFBS2EwcGlPWEZaZVhGTVQzcG9URTR2ZFdKTk4xQm5XRXhWUVhSamFGcDVVR1pqVURFMk1tWlJWVlV2TDBjNU9HTXJWelZZUzJGdFEwZE5ZbmhYVjBvNWJ3cG1Ra3N2ZEdKalJuTjZhVGxwV1cwdlduTjFTRkZtWkhSUmVtcFFhV3hNU0V4V1NHUjBPR3h4YzFVeFpFWmxMMUp3U21jdmRtZEdSMXBtV0Vsd2RGWmtDaTlRVERaSVVXOVROMDlWZFROTWQwRkRRVWxQWTB3M1NtUkhLek5wUVVacE5rNXNXVGhwZWxKaU0xTjZNbXhwUW5KUlV6aHhUMjByYUd4WmRXdExkWFlLV25JcllYZzVjbXBaVHpCUmJGZzNNSEprYlZKVWJXRlNWMUEwVFdaQ1kzQkhaRzVuVFZGRVRISkdNVWhETDFWR1JtUnNRbkJDVWxWclZtVklkMFZDT1FwVldrWnBRVTFHUzFWdU5YcGtTWFppV0d0VkswMVhXbTFhTnpoNVEwSkhPRkZLTVVKbldXSndORlZCWVdOUWQxVlFNMmRuYXpsbVVtVXdVSFJ2UjI1TkNtNTJPVXROVUV0UmMyMVJOa3hDU0M5cFRIZDZRbXRDTmtSUE9FdDVNbVJhUzNGMmFGRXZNQ3RLTmlzeWNqbHpNSGh4VTNwdE5YRlVjbU40TmtFNGVFb0tVamxoUTBWVWRtdGtlbVpRY0ZJd01IbHRlbGwwTms1b04zRnNZakpxUjJac1dHWXJNR1J4ZUZWSU5sVm1ibkEzVjBoalNEUlViVXRFTDFCb09XazNXUXBuUms1VWVXMURkVmxsTjBkYVVGaFdNVmh0Y2xWV2RqTlFTMWRvWVZNdmQxazFkV1JRUjBGR2QzSmtjR0pUUzBGeGIwMXhSMjk0ZUVwak5WcE9OM3ByQ25OUVpEWmFjMFI2TUVzNWRDOUhMMWxSYmtWdlVGWlJiVkZ5ZW01ck0yZDFaRk41WlVaV1ZXOXlUSEY0WjB4dlNYZFZiMFpOVkRKbU1YbFRXR2xtTTNrS1kxcEpkRzh6WjFwNWNTdGpkakpHTVc1NE1HOHJUbHBPWTJsMlkzYzFNRloyV0ZGemJrNWtjemhtVkU1cE4weFNkM0pFVVRKa2JsUjBVVFEwTm5KcFN3cGFibGNyZVdFM1RGWlVaRlppUTBKVFNFRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zZ2VvdHZ0bS1tajRjaWlzZC5oY3AuZWFzdHVzLmF6bWs4cy5pbzo0NDMKICBuYW1lOiBjbGlha3N0ZXN0ejRyMmNpCmNvbnRleHRzOgotIGNvbnRleHQ6CiAgICBjbHVzdGVyOiBjbGlha3N0ZXN0ejRyMmNpCiAgICB1c2VyOiBjbHVzdGVyVXNlcl9jbGl0ZXN0bmo3a25xdDY0cl9jbGlha3N0ZXN0ejRyMmNpCiAgbmFtZTogY2xpYWtzdGVzdHo0cjJjaQpjdXJyZW50LWNvbnRleHQ6IGNsaWFrc3Rlc3R6NHIyY2kKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbHVzdGVyVXNlcl9jbGl0ZXN0bmo3a25xdDY0cl9jbGlha3N0ZXN0ejRyMmNpCiAgdXNlcjoKICAgIGNsaWVudC1jZXJ0aWZpY2F0ZS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VaSVZFTkRRWGRYWjBGM1NVSkJaMGxSWmpJMFNWcEVVVVp1Umtjd1dVNVNjeTlHWTNORVJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdWR2R6QjVUWHBCTWsxVVZYaFBWRWsxVGtST1lVWjNNSGxPVkVFeVRWUlZlRTlVVFRWT1JFNWhUVVJCZUFwR2VrRldRbWRPVmtKQmIxUkViazQxWXpOU2JHSlVjSFJaV0U0d1dsaEtlazFTVlhkRmQxbEVWbEZSUkVWM2VIUlpXRTR3V2xoS2FtSkhiR3hpYmxGM0NtZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVNMVZWb3libE54Tm1GbVJYcHhkek4zUkVOU2FIZ0tkak1yTUZsS0wwTlpjRkU1YTA5amVpOVBhVk5FVTAxaGVqWkZUWGRSVmpndlFqQkliR3RJU0RKVVMyOTFWMFJMV1ROV0syRjFlVlZsVlhveFpWb3lWZ3BIWkdwWlIyaEdaMkppV21kSlQzZ3ZhbmxtYkROMFFXd3phVlJJTVRsdlN6TlNTbVpPU2xrcmRETnhVMGRCV21ac2JHZE9TaTlNUlhGalpEWnRVbU5tQ2tSelkxaHNlVXhHVld4a1VrTktTR3hSTVZZcmJ5OHlVbGxvTWxGR05taE1ObkZRZUdKUWFIRkdORmRXVXpOb2J6TjVTMVZzVmxsTGNXMXZPSGhuY1hRS1NuZHNTeXMxWmxac2EyWmFaVFJMYzJrd2RIbHJVM2RJWlV4M2NFSjFTMHM0UVM5SmREUlpUalppZDB0YU5YRlVSM2RRVERaTlRpOVdNM051TjNod1ZRcGFja2hzWm1VeUwxVklTV055Y0RaR09Vd3hNV3R0VUZCUWJVbHVUblZEZUZOSVlrOVpWVU52Y0VWUVJtMXhNbGdyUzFKM1drWlJOMDAyU1ZSS1QyTnNDbWxTTDB4TVVqbEpkRlYxSzBodmFHbE9XamhIYTI1aE0xaHJNbkZzUVdSVFdEWk5VVGhLY2pZeE1tNUdRbGxUT1RkeVZEaEdWVkE1V21GamR6TkpVR1VLYnpFM1IxVTJTRXQzYjJJeWQyZzBkbTR6TVhsUVJqZzRhR0pWVkRsNWNuWXZNVnBHWVdoa09GWlZOVXgwU0ZOSmJXNVdXa0ZtWldoRGRrRnlhbVpXYlFwSVpuZFVPRVp1YzJGRlZreHViR0ZqVUVjcmMxRndjM0JDY0d0V1JXczRVMmd2VUM5R1RHcHJTQ3R1V1ZGdlpFVkVSVkExY2tNeFptODNaV0ZvSzB4dkNsZ3JaMVpzT0U5amVWTjVia1pYUW0xRGEzUlVkV1p2Um1kRGJYTnZWR1ExTWpod1JVSkxRMVJEVmtObU5tSjZWekUwYzJ4RU1WaFpOVFZLWWk5MVZFWUtXREZXWVdOM1RXWlBVblpsZUZseVZXbExlR1pWYzNkTVRsSlhPVEYyUzNsM1FYaENaVkJNTVRRMlYwZFFiQzlNWVUxclExUjJiMnBwU1ZGbVV5dExUZ3B2VUUxc1FqRjROQ3N6T1hJeE1HdzBjRU5yUm5SUlNVUkJVVUZDYnpGWmQxWkVRVTlDWjA1V1NGRTRRa0ZtT0VWQ1FVMURRbUZCZDBWM1dVUldVakJzQ2tKQmQzZERaMWxKUzNkWlFrSlJWVWhCZDBsM1JFRlpSRlpTTUZSQlVVZ3ZRa0ZKZDBGRVFXWkNaMDVXU0ZOTlJVZEVRVmRuUWxGSGNraGhNazk0YkZZS1pEZzRPSFpaTkd0b1drOXZibU56VEhOcVFVNUNaMnR4YUd0cFJ6bDNNRUpCVVhOR1FVRlBRMEZuUlVGWlpHbHhaelZZYWxoTFlpOVRhRlJFYlVGRWJRb3pXWGN6Wm00dmNHRk1ORlExVGpCck0wa3pRVFYzUTI5MVIzcHpLMHgxTUUxak5UTlpha3d4Y0RKMVZYVnBSWEF3YW1wa01GZG5WbUZJUjFWdk1XaE9DbTk2YzNsU1RIWnBUWEpzT0U1d1kxUXhaRGR0T1hkbVZrNXNhMVYwU2k4eWNqbHVZMFJHTnpaMFJ6TnBPVVZvVkRseU1HTlZOa3BTVWt3NVJ6ZzRhVzRLWWxwVlpHTTFZVkpVTnk5blkwOUZaREFyVkhCVFVUQlhiVlYxZVd3dlkyOURhbTlvTUZCTGJWQTVaeTlZVTFGcFNVNW5VMHRMV1ZSc09GaEJiR3hzTWdvcmVITkxSbHB1VmtvNVVGZHdVSEpNUTJFMmFFMHhSV281VFRsMVZXeFhVMU5YUWprNVFVOUhOakpNUldsSE0zTXhjWFptVUcxMlNteHlVME16UjNSb0NsSXdhMHR3TmsxU2NVSkxUMEZwU1doaGFtZGlXa3RXTTB0NllYVlFXWEprUnpKWmFIQlFTblJNZFU5clZGRldTbUpzU21sdksyeFVia3BuVG1oSWNWb0tMME5MWlc5TlpVd3ZjMEpKVEd0SVJHUTNRMFppWjJRclJ6Tk1aRVFyZGxoWmF6ZGFNbFl2YlVOaVUwTnJVRWtyYUdkVGFtMUxXWEZVZDJGYWJHTktZUXB2WldOc1UxSllSRWwzUWxGNllUVmpkemQ1YW5SdGQyRlBVWGxLTm5aSFFpdHZiRUYyYTI0NWQwWjJTbmRTWm1kWFkyNU1Za2RXTWk5T2JqSjJTWGR6Q25adWF6TkJTWGRhT0cweFYydzBRa3BIWTJoRVkwRm5lbGMyTDA1b2RUTTNNaXR4VkZCcVJIUXljR1p3UmpBcmFraFFUV0ZCVG13MVEycGFRV3BxYlVjS01WbENWa2wzVFRCR05sQmpVMkY0VXpWaVpGQlRWbFZ0TUdGamNWbFVRMUJNYld0a1pIRTBOamRpVFRWQmRUTkRlVXh1ZVZkQk5XdFZhRzAzZHpGcmRRcGxUMWhwWTBveGFITm9aV2w0TVZsNlJGTXhPVkJvVHpWNmNqVjJUbnBOYm1GcmQzaFhUekUwTkZkV2QyRjFSMUoxYlhkaVRUVTJOMDlzWjBwNVNUUkJDbGxMY1RaSU5UWlRPR2t2UlhsaVpFeGFiM1JDY0RoRlBRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIGNsaWVudC1rZXktZGF0YTogTFMwdExTMUNSVWRKVGlCU1UwRWdVRkpKVmtGVVJTQkxSVmt0TFMwdExRcE5TVWxLUzFGSlFrRkJTME5CWjBWQmRWWkhaSEF3Y1hWdGJuaE5Obk5PT0VGM2ExbGpZamt2ZEVkRFpuZHRTMVZRV2tSdVRTOTZiMnRuTUdwSGN5dG9Da1JOUlVabVVIZGtRalZhUW5nNWEzbHhUR3huZVcxT01XWnRjbk5zU0d4Tk9WaHRaR3hTYmxreVFtOVNXVWN5TWxsRFJITm1ORGh1TldRM1VVcGtOR3NLZURsbVlVTjBNRk5ZZWxOWFVISmtObXRvWjBkWU5WcFpSRk5tZVhoTGJraGxjR3RZU0hjM1NFWTFZMmw0VmtwWVZWRnBValZWVGxabWNWQTVhMWRKWkFwclFtVnZVeXR4YWpoWGVqUmhhR1ZHYkZWME5HRk9PR2xzU2xaWFEzRndjVkJOV1V0eVUyTktVM1oxV0RGYVdrZ3lXSFZEY2tsMFRHTndSWE5DTTJrNENrdFJZbWxwZGtGUWVVeGxSMFJsYlRoRGJXVmhhM2h6UkhrcmFrUm1NV1EzU2lzNFlWWkhZWGcxV0ROMGRqRkNlVWhMTm1Wb1psTTVaRnBLYW5wNk5Xa0tTbnBpWjNOVmFESjZiVVpCY1V0U1JIaGFjWFJzTDJsclkwZFNWVTk2VDJsRmVWUnVTbGxyWm5sNU1HWlRURlpNZG1nMlNWbHFWMlpDY0VveWRERTFUZ3B4Y0ZGSVZXd3Jha1ZRUTJFcmRHUndlRkZYUlhabE5qQXZRbFpFTDFkWGJrMU9lVVF6Y1U1bGVHeFBhSGx6UzBjNWMwbGxURFU1T1dOcWVHWlFTVmN4Q2tVdlkzRTNMemxYVWxkdldHWkdWazlUTjFJd2FVcHdNVmRSU0ROdlVYSjNTelF6TVZwb016aEZMMEphTjBkb1JsTTFOVmR1UkhoMmNrVkxZa3RSWVZvS1JsSktVRVZ2Wm5vdmVGTTBOVUl2Y0RKRlMwaFNRWGhFSzJGM2RGZzJUek50YjJacE5rWXZiMFphWmtSdVRXdHpjSGhXWjFwbmNFeFZOMjQyUWxsQmNBcHlTMFV6WldSMlMxSkJVMmRyZDJ4UmJpdHRPREYwWlV4S1VUbFdNazlsVTFjdk4ydDRWamxXVjI1TlJFaDZhMkl6YzFkTE1VbHBjMWd4VEUxRGVsVldDblprWW5semMwRk5VVmhxZVRsbFQyeG9halZtZVRKcVNrRnJOelpKTkdsRlNEQjJhV3BoUkhwS1VXUmpaVkIwTDJFNVpFcGxTMUZ3UW1KVlEwRjNSVUVLUVZGTFEwRm5RakZzVGtaQmVXVlFTelZVT0hkWVYxRmlNRkJQVUdsSUsxRm9VbGxaYTJNcldUSkpNalZ6UzJkdWMzVnZjRWx5THl0b1lVaHFNRlp5YUFvMk0xcEdVbEYzWkdaaVJuQXJTREJrTDNReWIzWjFXVlJuYkhnemN5OVRaaXRNYnpWM2NVeExhakZyS3k5cFprVmtRVVZDV21Sa1ZXSlRTazVpYTAxMkNqUlFMMHhRTUUxdU1uUkxRVm8zV0hGamQxSllkalZzZG5Ob05qTmtMM0psWm5Wb2VUVnVSemhYYjBkdVVUTm1SbUZIZFVWcFVYQlZNa2t6VW5wVmFrUUtOeXMwVmpodFMzaG1WR05wTkhsRVpuZFlhbU5RTlVFd2FYcDBUemRqZFRWd1lsTkxjMnhXV1V0clQxcEZja05IVDNCSlJFVTFibVpPYURCaVNtOUlPUXBUYlZKdFFUTXhjRFZLTlhjME9UQmxlbU55YzNsNVlUZERZbmhqTDA5UE1uaHdXRWx2TVZGcU1uRTVLMDEyUkdFemF6QjRkVEZWZG5GSFVXTldLM1kxQ25WcU56WlJWemd5ZFRWUFZreDNLekoxUWtkNGJHMXpjRlp0Y2twcmNDdENPRzR2TW5GWk9EZEhkVWRYTVRGSmFIZHBhM1JFWlhsMFkzWkZka3RKYVd3S2RVcHdXVVZ6V2sxSGVTdDFSWElySzNGRFJIQllSRTg0TlRaQ01FODNhVk5VSzBGMFJHMXRWMmM0V2pZdmMyaE5jamhGUVVaRk1GRlZNRWRJTjNaU2FncDFUbkV2ZDIxdmMxUnhkSE5VYzFKS2JpOHZRMDQwWVVaaFYxWkZNVzVOZVVOVWVtTkRlWEp0VEd4WEswVnpSa2RZUXl0QmEzUlFOVXBtT1ZaTFNrZ3hDbVI2Tkdjd1NsaE1iVkZIZHpSbFN6aG9ZVzFSVTJWeFNESXhSR0poWmxCaldWUnZSRXh3V0RONVVYWkZWbWQ1TTFSM1Z6UTVXR1oxUVROdlZXVmlRek1LV2pZdlMyYzBUR2gwYlVaTU55OTFRM0UyVFhwNVptNVhTWEZPY0ZwRk5FNXRWMFJJTnpGSFJHUjZRVnBVTmpSWVowRlhTMjQzSzFCU1IzQkZjR3hQYXdvM2EyTnhjVmR3WW1wamNXTktibFY0TUV0U2RsaFFhVkpFVjBZMWExQTROVGxYYW5wT2VGZFNlWGN6UTJ0a1JYUlJVVXREUVZGRlFYZ3dZV2h4WVdWRENteHVaV1JuY1RCSWIydEtXRmcwVGtjMWR6aHRPVlpzZUVzelZXMXNWRFUwVDNkMVkxZGxRV0pyTjFKWFVVZFphelpQUWpGNlZEZDRkbmhWUnlzNWMwMEtlR3RrVVd0WlpHcDBWSHAzU0RNclppdFFNV1Y0VlROdGRVbFJVMmRKYWpNM2NtbzBNV05TWm5NdlZYWlNVbWxvV1Rsd1ZWcHlRVVJ0TmxWWlRuUnROd28wUkRSNVowNXJOemcxT0N0WldWVnVkRmd5V0dweWJWUkNWbmd4WWtwa1J6SnVSRk5CZWtoTVRFeFFjRTVDTmtsM1VrbzBPR2haTUhrNUswaFdiVm8yQ21SNlYyRkRlVFZHTm5SaVltMU9SVlY1ZWt0VmRHbG9ZM2RTSzFKaVVEVTJaWGhUY0N0eloxRXZiazFtY2pWYUszTkJXWHBETlN0eVZFWnRSbWh3U1ZRS1JsUnBXbFkwWkhONE5EWmxPREZ3UW1Gbk9YaE1SRVpKZVhkWlYzWnlVVmh3UTFWVU5HeEJOalpSU1d0MmNYWkhTa0ZvYWk5T1FsQlpNR1JJWWtodlZRcFhNakJoYTB4UlQwcG5TVFpVVVV0RFFWRkZRVGRvU0hJNGMzQmFjRlZ0VnpaWFFWaEJhWGhhV1VJNGEyNDBWMUZoYkdoUk16RkhORmMzY2pSMFpESnJDbVZCUkhOM2NYRXJWbU1yY1VOVGVrZE5ZM2xGV25kTGRFeGhlbFZpWVdwMWJtNURVRlU0VVM5dU1GVjRObFJIVlVKWlRraG5UeTlEU0djMU5GcHdTa2dLU2pZMWRVUTNkVE12VVU1MVpWZHNjVmQ1WkcxemIwbFVZa3Q1WldvelNscFBURTh5UVZNMVdXd3JXSGhYUlZWeWFGcE9hWEpJVFVob2JqWm5XbEF5UndwRlJqQXdiRzR2YjA5clNXdzFjbEZNVEZOcEwzaHZWbmd3Vmk5a1kzbFJPSGxLU0RKS2FEbEZXVk5uWVZwRVdVRXJOVWcyUkU5bWFUazNjV05KZDJSTENsWk9ZMVpxWm5wb1EzbFZMMEpqWmxWQmVIUXhaM2wyUzI5cFpXaEVZVVZXWlc5Q1lUQktTMlZxTkVsVVJFTTRXbEJHV0ZFNFNXTnplU3N3ZEdoQlVqSUtRVTUwTUhjek1UWmhOVnBRVkVSdmFqSXJjWEI1Y3l0RmNsTXdTRE4ySzJsSE1YSTNSVUZPWkVOUlMwTkJVVVZCY3psdmJXNURWVzlOYWpsbk9VbHFVUXBKTDNveVQwdHJWaTlCU25JMlprcEJkSEpWTUVSdGVtdFFTRFE1VEdONVltUjRURU0yWW5GSGR6TjFZVTV3VlVKM1RFUnpjbUpFUlRsamRERm9kazFJQ2pWYVNreE5iRXRSWjJwMlJFcG9XWEZFZDNnNFYyMHZSVkJVZGt0elluaGliQ3RNU2s0dllVUTJjMmR3WkhOcFZHRlJNVE5NYTBsVVZUZzRkVFkyVjJzS1pYcDFWa3BLVkRKQmRFdEpWQzlPYWtsMWNWRjJSMHBKVHpKNWNIcDFTa2tyYkRacFRXb3dRWFJwYWtNMlpFNXhPRlJ2WTFCeWJXTXZRM2gyYWtodVJnbzVjVGRYV1ZSVlRFeEdNMHBhUTBwSWJreEhkVWxuTkVoWk1FTkRURmR2VjBaSFF6VkVNVTl1YjFwNmJYZDVNMjVtTjBGdlYwRXhUV3hrUjFGaVJGRTBDakZHTnk5VVMyd3ZPRzlhWmxsVlFsWTNORGRsVW13emNVaEhZWFZpU1hBeWMwMW5WR1U1WTNseVIwTTJVbGh0U1haU1UyVXZUMDkwY21Sd2NIRkpTWEFLV25SeFNqTlJTME5CVVVWQmMyOXVNRTVzS3pCbVZGaEZTRWc0Tkc5cFQyRllNMFJpY1ZaeGExcEhlVnBOWmtZMldHbHFTa3h5VEhKRWFXYzNXblkxWmdwM1kwUTRWblZqYVU0clUxZEJlRGRLZFROQ1lUSXlZVTlzV0c0MmMzbHhRbEZFVUVoaE5HZElOVEUxT1hWR0sxZGFOalJaWXpKM1QwOTBPR2R2VjBnMUNtRkxSWHBNTlVKNk9UWnhSRFZUYlZJMFlsWlFUVWR5YTB0S1lqRjZjM0ozUnk5TFVsaGpOVFpDYWtoNlJsUnpja1ZLTVZWTmIycEVRM1pEY21GS1lrTUtSbFJpV1dJM2VtdHBUbWd2WjJsVkwzQXpURXRuTDJoUlRWZGlkR1k0WlVKSk5DOU5kM2Q1VWtSb2JEWjFhMVZLVUZKdVVUQkxRU3REV1ZKSlNWQlVaQW96VG5KM0syRm1WVUYzVTB4NU0xTkVRV0p5VVcxSlZVOXpOVVZvUTJwNE5qa3djbTlsUVVjeVdHbzFTbVJMYTJKWGJFRnJRekZpUWtoSlJqUm1jMlJUQ210UE4yNTRNVmgxTkVwWFRFRndUa0ZuUWswclZFOXVVSEU0TkN0aVRreHZObEZMUTBGUlFVaG5VRzFIV0hGVlYzcGhkMnRTVVVwSmEyTXhiM2xyVUhvS05sRkJjVlppVUdZeFExRkJORFZNYTJocVRURlhSMGRITVhkaEsxSnlUM1JUU21jck1XNUdiSGRFY1ZObFducE9USEJYU1RsSFQxbzJTV1ppUW5kNWFRcEtiRmQ1WkVOU09YbG5aM1l2Y2pCRk4yUm1UM2c0VTNOMGJURllORFozYm1OQ1QwdFVlRzA0UkVaUWRXb3hVVkZUV0hkeFRGTnlPRU12Y2pKeWVIaHpDa0pKWnpaSFNuTXhTbEpzVDJWSVNFZDNWMUo1UW5WeWF6aFpiVE51VFZjM1NsVlFkR1kyZFRFNWNrcHpTSE5aVVVadmVscFBkSEIyWWxoMGQyZExMelFLY0hFNWFVNUZTVFpJTkhZeFdtZHlVMVkzUWtwUWJubFhObFF3UTJVMmVGZG5ZVmczZUVJMVJXSXhTekpOV0dGVVFuVmtWVFZ4TVN0dU0xQkJSakIwVmdwak1GSllUaTl6V25neldrVXZjV28wTTJ0WkszUldMM0o2VGxkbWF5dHJNR3hOV2xGNFUxZzNlRVpOV0ZwQmNVcHVlbWxUYTBsVWJFeDBZVm9LTFMwdExTMUZUa1FnVWxOQklGQlNTVlpCVkVVZ1MwVlpMUzB0TFMwSwogICAgdG9rZW46IDRwcGR4Y3J4eHZlYXMxcTNpd3RjMjl5MmVoOXR5YjQwZjNiZjRkdXdhcHBmZmo4ZXV5N2VydWZjbnU2NjhxZnhodGp5Z3NyYXF6anlkeThuZ2x6OXF5cW5icms5dWVxdmtlZGpiMXVua2dzNDdrZXF3dXJpeGp5ZnRxbGplbzhqCg==\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13072' + - '13084' content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:09 GMT + - Thu, 15 Jun 2023 19:43:13 GMT expires: - '-1' pragma: @@ -1021,24 +1084,24 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSWkRJMWQwOUphV2xpWkdsVmJXczVSVkkzVTJFeVJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCZWsxVVZYaE5SRlV4VFVSYVlVZEJPSGxOUkZWNlRVUk5lRTVVUlhoTlJGVjNUbXh2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSc0NtWnJWemxYVDBkTFdEQndVa0VyZWpSbGVFRlhjblJ0Tm5KMlpsQjJjazh5Wm0xUU56bEJOR1JqYlZKTWNXeFVNMDFMUWs5aGRucHVRVEl4T1hSYU9XY0tSMDlzVFVnek1sVklWalZzVkdSQmNqbEJhMFF3WTFWRFpXUmlka3hrZEN0cWVVRmpXaXMxYkVkd2J6SnJkRzhyWTI1Q2F6WjVjM2hXTVZNd2VYVk5Od3BPV2pkMWFXbFJMM1o1Wm1SMmNXVk5lR1ZyVWsxU1MwRkVlWHB6VkU1bmJrWmFPRWRxYzBrdmVrY3JSMGxTVEhWS2NqZDRLMHhNYmswMFpEUmFObkpKQ2l0UE0ybEthR0pyVFVFM1NGa3JMMnBhVFVSbmNrZHRaVFprTkcxd2JFNTVXRFpxVW1kVUwzQmlkbkZSVlVsM01WcFhNSHA2SzJGdFoweGhOVWN2SzNBS2VVcDNTVzF0VFZCU1JHSTBlRTl4VEVOMFpXMTFhbGg1YVhJNVNWZE5hMFY1ZHk5eU5reFFNREkwTWtsNlRrcHlOVWhPTldGYU5qVk5jV2g2UmtZeE1nb3hkalpTUlRBMldtNUhWMDVGYW00M2JFNTRTek5sTDJnME0wSmtWM0Z3WVdKc1kyTm5SMVV3ZEVSeGNWRm9NbWh0Y25sWFF6aENabVZvVGxOWmRsSlFDbXQzT1d4YVJ6TjRlRkJGY1dwRGJrUnBSMmxtTkRkcmNVRnJhMk5FT0U4M2MzZDNValFyVkdGVllsbzVRamRzWjNKYVZqRmxOMFpPTUVacFF6WXdNazBLVDFoTFJtNTViM0ZTWjI0MWNEVmhkMFJEUlZKU2IzUjFZVzVxS3pCV1dpdDZWREUxV25nM2FrSlZWM05qU1dWeFVqSm1TRGhKZGtoTFNqUTFaamRZVVFwbVQzaFVNVVZGVVdSeFFVRlZNV3RUWWxCNE9IcDBTSGtyVFRCRGNHSnlSbE5VWlhNcmVqSldhRE4wVjFoWlUwaG9NbFJMWlZad1dWcEtUVUZ5TVZSR0NtWnlOa3RITlhVMlUyNXBUak5JVDJKaVNVbGFhbGxwUVU4dlJWSkJZMGhoWjNOdlYyOUVkWGwyTTJsS05VRmhTRmh2Y1ZNNE9HVldUR1ZDZVRWSGRHTUtjbkJOT1ZCV1lqQnZZMVpQVkVsUE0ySjJibXhhTW5GR1IzUnVWMnhJUVZaalRXWjNSWFFyT0dwUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWQ1dVaHpaa2h5ZW1sdGNHVTRUMjkwQ2pacFVHUmtRa0p2VVRCRmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGRVkzSnFTMUJMYmtWeFpWVTBORlp0Y0dkcUwyUlBUVGh6TW5BS1RrVnllRE5yU1VoaWNXeE1la1kxYkRNellWQkNiM1ZuZUU5NldTOW1RV1pKT1d4SGJsUk5SamhQVVRJeWN6QlZNRzUxZERkUk4ya3ZNRXByTTFSRGJnb3lWMHMxZUdVdldFY3hUbTh2UVhsMVdUZEtWVlZCVkZONlpWbzNURlZyVFZCaGFsZFdaakZKVEd4VWRISlZaR1ZRYlRSNE9VRkdTRk5JUTAxbVZsWnJDazE0VDJ4dmVYQkJiVTVHYXk5eU1GQlpNa0pOWVdsbE5XYzFPVkYxVkVOeVFXeE9jMUZSUWxRNFdsbEJjMlZ6YjNsWFVVazBNR05pWW5wMFRESndOMWdLUWsxdVFuWjVNVEZxUmxoV01HUXdhSGh3WVZabVVWTjNaalZ1ZVhnd1pta3dhVzQ1VXl0NVdYWnJjVUpLUkVjclZXVkJiU3R3T1VSemR6RkZkMnQ0VUFwc2RsZzViM2tyTkdveWMwcDZLMk5TVDNWc1ZHb3pTazA1U1M5emFESTNZbWR3TTFSeFZ6aDFSbmx2Wm1WVWQzbEliMDR6VkRaV1FYQm5ZbFpYY0hCekNsSnhVREpKYkRkNVZWVlBZM0p4WkU5VlNUWXZWVTVsT1V3dldEaDFLemhDU1RKMk4yUkRWV0ZOV0hGTmF6bE1Nek5rTWxGdlJFRXdOMlZLTDFJM1pXOEtibFUxVkVneVVEZHFTbVJSUmpSNmJGVjZVMXB3VEZsMWQzcE5OVFZhYzFOUlVETlVhalJqSzFkdlVHNVlSVlpVU2sxRlNHWlJNbU5IU2tveVRIcEtkd3BOYTI0eVFteHdVell4UW1OUVRtNWxaVTR4TkdwWVRGcGxlR3BTVHpkRGVFOU5aVTR6WTBkTEwyTklNRFp4ZWl0WVJHbDNTVEEwVkhocVMyczFXV05TQ2s4M05HUk9jMnh6ZVRrcmMyY3dMMDFrVXpkRGJUTlpibVJwVTNCNU1FZG9XSFl2ZEU5RFRIRTJTbXQzVjJReFlWYzBRME56VkhkQk1EZHVUbTF2UjJjS2RVdEZWRzV2T0VNMFJHMVZiRFIxWkdSMGRVUnpkbUZxWmxBMU1ucEhha2dyZDNGWFZrTlJTemh6SzNKUlVsUjNkVkJaUzJGMlpYSkhUM1pPVTNSb2FncGpTWGd6TUZkSVoySnVjekoyUTAxUUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2N2cHUza3YtN2JjdnA2c3kuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3Q1Z2FpMnkKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3Q1Z2FpMnkKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RsZTJmcGNpemM3X2NsaWFrc3Rlc3Q1Z2FpMnkKICBuYW1lOiBjbGlha3N0ZXN0NWdhaTJ5CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdDVnYWkyeQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RsZTJmcGNpemM3X2NsaWFrc3Rlc3Q1Z2FpMnkKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVXA1WWxBM2RGZFJlRkVyT1ZsQ1pXVnNLMkppVm5kM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDE2UlRGTlZFRXhUbFJCTWxkb1kwNU5hbFYzVFhwRk1VMVVSWGRPVkVFeVYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCZVdkNlRGWjRURlZUWVhBMkswOTVWaThyUnpNS1ZGVjJWRlZvT0ZCUVVsTnJaMlJzYUhORVFYSkdiVTU2YUVoTVdISmpiV2x3VG00MWVGUjJjV0pRU21weEt6QnJUbk5wU3k5Q05pdFJVWFpzYVRaa1lRcG5NSEZrWlZWUlpEaERRbGRsU0RSalRHaG1ablJ2ZEVvdlpVaDBSRlpSU1VsbFlUSjFSMjV6WjJwa1dqVjROV3hYVG5kWU5XcHBLM0ZCZDJ4NWEyOHdDa2xQVlhveGNWZE9UMnBCTVdGaFdsUnhNREZqY21KTVMweDFhMWhDWTJrelZFVjNVRzlYZWpKc00waFZkR3RsU1haS09GUlhVM2hqUVZaM1ZIZEZTbWdLVW1sM1kwOTZjazluVnk5cVRtVlNWRmt3U0dkalZXTTVObXBCTUZoa1UxazNkV1pzYzNSTlZERm1RVmxoUmxnMllWaHdPR3R0VGxWcGNqZG9kbGhZYlFwM2VuSlJNRko0TkRWdFNIWjBla2xLWmxwV1lVeFRRbWhyUW13NGNteDZiMlk1ZEU5QmNtSjNSMVpFY1dSNVVFTjJWbE16Y0RSbk9Ya3ZVVTB3YlU1cUNtY3ZPWGw2UTJKNWQwNW1XSEZJY2l0bEsyNW9RMmMzWjNaV1VtbHpPRlptTWk5c01UVjRVa3hVUW5KQ1RFNTBObVZ0UkVoak1UbG9Za0p1UkRkWlExTUtZa2xhUlRkT04xWnNjMHhqTTFWaWJWRmtiM3BJVmpKSVFUVmhSVVpzZVhCTWVrdE9Na3hzYVZFMWRVZEljRXR3ZFU5eU1FTkZSVTV3V1ZGcWMzTk5TQXB1VG5abWQxQkJVSFZ6YzA5SGJXeE1jelU0WjFoalMzcDNhMFJyY0VoclVsWmlhM2N6Y0RGbVJrRnRaSGxzT0ZWd09GaFdSeXRQT1hoclVqWkhWMHd2Q21oVWFtaHJhV1Z2UjNsa01EUmhSRTQ0TkRGcVZtVjVWMGc0V20xSlVFSmpiWGRHTjBSQk1tUnhTbmN5ZDFsS2NGQjJlRkJWYWl0QlJYQkVVV2hZUkhBS1R6QkpOVWhrWkVsSmMzWjJNVVpWZVhGVGJXTlFhMmQyTnl0bVpIWTRNR013WVVaR1FVMXlSMHRZYUdKYU1VazVaR0p1U1hWdUt6TnRTWFZDUW01ak9RcExhRVJSTlUxTUsyOUpUSFZRVGt4aWRuZ3JTeTlTUlVOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWUWxsSWMyWkljbm9LYVcxd1pUaFBiM1EyYVZCa1pFSkNiMUV3UlhkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCU3pWaGNrTldNbVZGUzB3elJVZERTSFIxVFFwNmVVZHlaVTVFV1ZWcWFYQldjMDE2TlRCcFJ6Sldhalp6WlZwSlNGUjFkRUpXUW1sYVRtTlRTWE1yUVhkRVNHbFJhMmhLUVZsb2RHTjZjVEpqVWxoVkNsaEJUVmhPT0RGblN6SjRlak5VTVdablF6WnhTeTlRUjBSUGEwNDRXRXM1TUZvMGQweGpjMlptVDA5eWFuSjZVVkoyYUUxdVIydGpMMFJZWjFKdWFFSUtkSGRSVmk5RE9VTklNRlJVVjNCYVUwaG9NR1V2Y1RWYWEwbGtiRnAxTlhOelRrNWhlbFEyYkU5cGRtaFBObWhPUjFkd1ptOXhUa050TmtSR1JsZGFVd3A2ZUdrNWFrMWhjako2THpOamQwRlJZbmQwUTJ4d1VrdGtNWGt3Tm1kSFdVeDNaRXgyVkVWTlkxWkxUMnBPU2pWUlpYUnBWakZxUkZsdlpHSkVTRzFWQ21wNmRVTTRZbkF2TkVzdlN6QkpPSEJJVTBkaFVXWkZhRWd5WlZGbFRDdE9kV2RPTW5SdksxY3dkR0p1TWxjeVIyMW9lRFpVUm1aa1J6QkxWVXh0ZGswS2F6aHdlRTU0ZG1STU1qbGpjWFJ1ZVd0RWFYQlpVbTl5V0V0WGJHSnlhMHBFWVVGSmRHOVVkVkJtV0dsMFoxSnhNV2N6V2t4VFRrSkVNbTlGVTI1T2N3cGxVVEp6WlRWRVpVMVNlWFpYVERNNVFsZERSRFZJSzA1RlRtZDBSMlZoVEcxWWRYQnFXbmt2TUdsUk5VNXFXbmxIV0hwNE1EbEVMMVJCYmxaVVN6bDBDbFptU0VnMk0yUjFjMk00Um5Ob1VWRlhWa3A0UTBaYVZFSkVVMmgxVkc5SVdVUTJOVVpoWVdreVN6Tm1ZbU53UlVaMVJXTndjVnBHVlc0MGRHdFdlbllLWTNSMk5USldUMGhzYW1OS00yWkpXRXBDWmxWb05tZEhPVXgwZDBRMmRTOWpVVTF1ZVdGU1IyMU5iMjlpVG1VMU5XVlpZM0ZPUXl0Nk5GQkJja2xqZHdwWGJYTlFjVGR4YTFoeVJ6Vm1TR1EwUW5jMVdDczNhVXQxVG5GbFdITnNiR2tyV0ZCRFZDOHlTRzVZUlZwMU9HbG1iR1JuTm5CaGFUVnFWbmROWjI5dENtbHZlV3R0TDNjclRVOUVXWEpSVURGamVEVjBSRXRFZHdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTbmRKUWtGQlMwTkJaMFZCZVdkNlRGWjRURlZUWVhBMkswOTVWaThyUnpOVVZYWlVWV2c0VUZCU1UydG5aR3hvYzBSQmNrWnRUbnBvU0V4WUNuSmpiV2x3VG00MWVGUjJjV0pRU21weEt6QnJUbk5wU3k5Q05pdFJVWFpzYVRaa1lXY3djV1JsVlZGa09FTkNWMlZJTkdOTWFHWm1kRzkwU2k5bFNIUUtSRlpSU1VsbFlUSjFSMjV6WjJwa1dqVjROV3hYVG5kWU5XcHBLM0ZCZDJ4NWEyOHdTVTlWZWpGeFYwNVBha0V4WVdGYVZIRXdNV055WWt4TFRIVnJXQXBDWTJrelZFVjNVRzlYZWpKc00waFZkR3RsU1haS09GUlhVM2hqUVZaM1ZIZEZTbWhTYVhkalQzcHlUMmRYTDJwT1pWSlVXVEJJWjJOVll6azJha0V3Q2xoa1UxazNkV1pzYzNSTlZERm1RVmxoUmxnMllWaHdPR3R0VGxWcGNqZG9kbGhZYlhkNmNsRXdVbmcwTlcxSWRuUjZTVXBtV2xaaFRGTkNhR3RDYkRnS2NteDZiMlk1ZEU5QmNtSjNSMVpFY1dSNVVFTjJWbE16Y0RSbk9Ya3ZVVTB3YlU1cVp5ODVlWHBEWW5sM1RtWlljVWh5SzJVcmJtaERaemRuZGxaU2FRcHpPRlptTWk5c01UVjRVa3hVUW5KQ1RFNTBObVZ0UkVoak1UbG9Za0p1UkRkWlExTmlTVnBGTjA0M1ZteHpUR016VldKdFVXUnZla2hXTWtoQk5XRkZDa1pzZVhCTWVrdE9Na3hzYVZFMWRVZEljRXR3ZFU5eU1FTkZSVTV3V1ZGcWMzTk5TRzVPZG1aM1VFRlFkWE56VDBkdGJFeHpOVGhuV0dOTGVuZHJSR3NLY0VoclVsWmlhM2N6Y0RGbVJrRnRaSGxzT0ZWd09GaFdSeXRQT1hoclVqWkhWMHd2YUZScWFHdHBaVzlIZVdRd05HRkVUamcwTVdwV1pYbFhTRGhhYlFwSlVFSmpiWGRHTjBSQk1tUnhTbmN5ZDFsS2NGQjJlRkJWYWl0QlJYQkVVV2hZUkhCUE1FazFTR1JrU1VsemRuWXhSbFY1Y1ZOdFkxQnJaM1kzSzJaa0NuWTRNR013WVVaR1FVMXlSMHRZYUdKYU1VazVaR0p1U1hWdUt6TnRTWFZDUW01ak9VdG9SRkUxVFV3cmIwbE1kVkJPVEdKMmVDdExMMUpGUTBGM1JVRUtRVkZMUTBGblFXVjJLeXMyV1hJd05FMU9MMmxRYlRsa2MwRmFjbXg0ZVd0S1QwZ3lNRGgwZEdvMU0xVmhTMEpIUjJkRFkzRmlWekZXZW1sUWFXcFVMd3BHVnpGTFFUSkhlalp5VmxkUFVrMWtOVGRtWjNkdFV5czJhM1JYU3l0aWJtRTNlRFp5VWtVM05sVldNSEJ0Umk5elNtTnJUV3gzV0dGVVEweHhSV054Q25KalVUSXhVMGQ2YTA5aGRuSldPV1I0Uld0UU0ycHNjVWhtZW5NdlRGUXdPU3RGVldRdk0wcENSekEzV25SNWVDdHpTRmRtWkdKd1NraEVlRUpoY0dvS1ZVOW1LMmxITlhSQ01XOURRM1IxZHl0S1ZsRkNObXhvTW5wb1pYRTFkbTlVTjNwYU5tbE9WVTFzYlZkbk5VbGhOakZMTmpjelkyOTVTa0V4TWpoclZBcG1RbWhMZFU4eVpVRXlaa2MwWTA1UWNrSndWSFV4VlhwMGJIWlhXRzQ0YkU1QldXRlhaRVpZZFdndlJHOTRWa1ZTVDJSVlVFOTZRM2hLVlVZd1IxTkJDaXRWU2pGT0swWllTRWhSYjNsR2Jta3ZNVTFaVmxJMFYySjBXRmxJWVhsa1ZteG1RVUpqTUdkNGVIQmplbkppTVVsdUwwcFlTRTFrVFhSUVprZHVZVklLWTFreWJ5c3lZMEZ0TlVWbGIxUlNNVGxzZWxWM1QxTm1SbnBuVTFwTVFWZE9NbXN5VkhGdVRqZ3lRa0pTWkRCNWF5OU5SVzk0TW1WUlpWTXJlWGd3TUFvclFuaEllalkwYkVJMGJ6ZERTR1JQVURSSlNrWkVOSHBIUjJGTVVHMUpXR1YxZVhCdlFtTm9lVnBrZUhKNFQzb3JkakpyTVhGNWRVRkhVVmcxY25WaUNtTjFZVkp4YVZaSmFrNHdla1JCTVU5MU1ISjZXVmhSUmxFelVVTTBVeTh2UzJKTlVDOVhiRUZxUTFGT05pdGhURVpQWlVFemNWSkhaREU1VlV0V1ozVUtaWEJEY21oUmRUUk5RMlZSZFRSU1RUTTVRa1pSTm5oMVVWZHFjakZtVmxSMWRVTm9SSEpxUlZkaVdtbEpaV0Z4VjA0NFlsRXllR3R5WkhCQlVuaDBOd280TVd4Vk4zZEdNR05sV2pKMlMzRjBOMkZrWW14R1VtSlBWVU0yYWxGMFlVbEZiMFZ4VlhaWU1YazVjMDlYTlZFclVVdERRVkZGUVROeE9WQnFSalZSQ210TWNGQXllRkE0V1hWa2NFaERiM1ZYYTJFeVFVcG1SVll6U25jeVlUQXJVMmxETkRkM2ExQlVWMFZDSzA5ak9EWmhlVEpDTWpKNE4ybDRNa1ppU25vS1ptZGlNbkJ5TVd4eFRubEdkRlpMZHk5Tk4wa3pZWFp6TTFoemJEVmxlVWxUTUdaSVNqSldaWFV6T0dSWlluTklXbFJEYXpKUlMyb3JiRU5xVUc0MlVBcFVVelkwZENzNGNYSmlVMFZMUjJSUFZrZ3hURVpwTlRBM1J6aFpjemxpU0RsSk9HWnNUVUpZWmxjNFRYTm9OV3g1V1RKNU5XSXZZbGR0TWxscmFuTjJDa1JzTm14UmJFWklUamx3VVdKQmQyOTFWWGx6VVU5NlpFeFFXRlZtTmpSQlpuTkhWMHhUTVVVNFkxVm1RaTh4TTBwUldUZzJWbEZYZDBoWFlURklVRGdLWVZSVE0xVTBUakEwWVZsaVQzSjVLemhwWlhvMWRVVnFkbEpwYlVWVmNrZ3ZZbGc1VjNWb1dIVlNTRFZaTkVGWloyVlJXRWxPVlROT1VucE5abTlwUmdwamMxZ3Jkbk5IU2psVlF6TkhkMHREUVZGRlFUWkZZM1YwVGxkemFtZGpiblk1UkhaMGRUQXhkV1prVEV0TkswUmpWV3Q1YjBONVNEYzFaRVJ2ZGtNNENqbE9OV3MyUlRKeWJESkRlSFpIWVhWaGNqSkNNbVZUU3pZNWNEQTRXa2hsVWpSQ1pEbGxOM2RXVUU5MGR5dFlWVTVUVm1sWWFsaGpTRnB5VERWVGJUa0tSVlE1UW1KTU1UaEZkV1pWVDBJNFVXRm5SRVp2UjBoNVRVTmlXVWN4WjJVdlptbENUR0ZoZW5waVJuVklWbGs0TTIxU2FXcE1VMVJaZUdKM1QyNVNLd3B6VDNvM1UzcGhRa2swVDFkck1GWlllRk5LV0Rsb2FHcEdUelphVHpnM1NESTFTVGRVU1c4MlkwOXpiRXBTWjFoMWNuZDNXVFpGV1dWdlEzSTJPR3hVQ2tWWWNqbDZLMUEwTldsemIyeDFjMHBOUXpkT2F6WlpNVlp3YVVGcGVucFBUVzlxTWlzd2VsWk5VVzB2ZEVZNVdHUk1XVUUyWm5KcmIzUjZRWGt2VEVvS2JtWkJSMlJ2YjBoRllsa3hLMHQ1TUhKSFVVNWFNR2RqVWpsb09EQmtUazk1VnpWaWRuWXhSRkYzUzBOQlVVRXlSREF3Tm1kSVRVTnFOV2gyVlU5NlJ3cG1aazVSWlZKVlJIRlpUSEJ3WlRWMVdrVlFkRTVHWlZreU1WUkxRWFZOUzBndlJFRnZha3A0WTBKS1NYWXlTMmQwV0RVNVUyWk5jblI2YTA1NFdrUXlDbUUwUzNsUlJEZHFVVXhuVjNsSVVXRlhTbXRqZEdzeGIwdFRZVFU0Tm5kS2VrcFJkbU0xTkZvdlRFMXZWVGRJU0ZKUFp6aGtZa1ZKVW1JeGJVOWtUMk1LYXl0Uk5XZHpja3hVUW1RNFlsRTNTbXA2WW5GQlkzaE9TRXR1U1VSUFIzZGxPVTFVVFhKdU0wMXJWWEEzVjJWMFJHdHZjSGhsUW05c2NWWTNPR2QwWlFwRVkzWlZWSGxrWW5oTVpGVnJObmR0UkVFdmIxcDVLMHhzYVdWR1JrTmFWMjh3YjJwUlJ6ZzJUamhrTVhoWmJ6UmpkRk5DYlhnMk9UQTJVbXg1T1ZsSENrdGlUVmRyVm1WNGNHUXpVWGRRZEZOSWNtWkRTSFYwY1U1c1NYQlVXbkIxVUZkVVZIVlFZelpKVlhSVlJuazNkRE1yTTNSRlpYVkVjak5zYldsamJXRUtSbTV1WkVGdlNVSkJRbU5aU0V4cE1rWm1XRFZIUTJGdFN6STVVVzV0Y21rdk5FbE1VRGxLWm5GTWVuTk5TV1pPZW14bVFTODRhVWsxUW1WRmQxYzNTQXB0YlZKV1FWUndlbkJTYkRRNE5tTklhbGRGU0ZVNFdtZExVR1IxZW1zMWFpc3ZOMmxPZG5Ob2QwZHZSbWxQUlZsd2RsVmtPVlZLYkhVMlpVbElNMGg0Q25kMFVHaHZjM2R1VkRNM2JYWnBSM3BsZDBWakwyUm1ZV2RXTVRodFduWXhOMFJFVjJocE4wZGFSbGxDUkdwYWJqZFlTMmxoYjFwRmVXRmtjM1lyU1RnS1JIaHBUbUZJUTJSUVdXMXRWM2hQVm5SWU5sRjZTMWt3U0Rsck5GWlNPSFJCWjBKNVMwMXVWVTVEZEhwMFR6bGFTVGMzU25kWmVWaFpaWHAwYVdFeU5Bb3hUWGhOYVdoc1ZWUm1Va1ZNYTBaNE5FUllNekJpYVUxcVlVaHRkbUoxYldOSU1FdHFZazQwT1ZKYVQySTNWVkp3WTIxb1ZtaEtlRGQyUzFOUWNXMTNDa3REVjFaYWJFWk9hMVpsV0dZNWFGVXlabEY1ZDJvMlkzcHNjSEUySzJ0RFoyZEZRVWQzVkN0VVVGSkhPQzh2WldsVVowcE9TSFp1VEV4Q2JVWkRhM29LVUZaVmJXOVBka3REVFhCWmJsTlpVak5yVGxOeWFEa3hOVGhTVHpoS1dWbFhZamxZYTNGeVowSnNRamQwTVM5M1lYRnpObEZLYlhOaVNFaFJkVk5IY1FwUGFFTmtkbmhaTlRsSlQyZHlXbTAwYmxGdFlYRmxPRUoyVUcxNk4wcFZRVzU2Unlzd1RrZDJXV05hV2pkQmRuZHNjMWxwV0UxSlJqRkhhbmRXVjJ0MUNqSklTVzVEUTFkb1p5dHJaSGRUY1djNU0zWkNhekJ1VVZKMldXNW1UaTh4YjNKVWFuRmxiRlZ5VUdaTWJGZDJUVTVOYVVsa1dEaEtlUzlJZEU1YWVtWUtTVEpyTTJVMGNHdHVWbHBtY1hWb1MwZHhkbmRFVUZKdGQzTjFNbVJvY2paUGQwMXRSSHByVVRoNlNGSlNNaTlSYTB0emJWUktVWFZwZFRWT09XMHhXZ3B6VkVkME1HWjRNUzlWUkUxb1MxUnJjV1JtUjBWMVdGaDVTWEExYzBGbWVuRk1WemN2WTFocFNqaE5Wa0pLWjBGMVkzVjFNSEZQYWxSblBUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogOWhqemYwazZqbGl5M3c1NGt6dnJwYWI0czJ4MHZpc3Fkd3djdzFjNjlyNzMyZWM4MzNya3V5dHVzYjBtdWlidWNpbDE5bHR3Mm9kczR6M3lkdXRpdmlvNWRqZ2x1ajkyaXNzems2cHBod2RibGlwd2YxeXYzeXFvbmVsY3l2aTMK\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVU5UFoyZDJjVlpCYmtjelpGQlRjVGR1ZWtsTVlYZDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJURk5WR3Q1VDFSUmVsZG9aMUJOYWtFeFRYcEJNazFVVlhoUFZFMDFUa1JPWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNuTlJTVXh3YXpSdFdsVlBjVzFFVTNoRVpuQkpabWxUY2xVdmNGUjJhVEZtZW5ZMVJrMW9aM2R4YTNGelZqSnFMMG93ZUVvd2JsaHVaRVJhVkdsUk4yVUtNalpvTkZKa04yUm9ObUl5VlhGTmJtWmtURTQ0TnpoUmVVTXZkMmROWmt0eFZWQlpNRE5qY2l0TGNrVTFUR05zY0d0bU4wTkVRMlZuTlVnNU1IcE5id3BUUm14Rk5rRkZPVXR5UjBGNWQyNVROVGR1UldOSlRVNWxjMnhhWjNSSVVHSkhjeXRCVW5sbmFsSXJUMGd6Y1dOc1kwNU9jR2ROZFhvM1lWQnFOMGxxQ2prM1lqZEpTR0pNU1RsMVNHWmtTV2hHWVM5MlJXeEVSelF2VEc1RVUyWjZRbmxRY1dzclluQk5XaTh4TmtrelJYTlhWVUZqWldOMmMybFFMMWRSU0d3S1REbFFlR3RRVkdOdGIwSkpOR1E1ZUZOWVJIVjVWMFZqTjFGVmFtWlVVbVkyVEZFMVEwVk9hSGxTVUdkdE1YWnVhMlZtYWxCbGRHZFlSMWRWYUVWRFR3cHhXVXBNYkhCRVFXSktaVTltY25kTllsRk5SMjFIYkZBNFpFeHlaRE5NZEN0M2JGbFBSREpEVFdkUFoydFFhMUpVVDJSSVkzaGhOMGdyYVhsTldsbDRDbTFJY0ZkemJEbFNNRlp1UW5oR2RsaEhhM0JDVlVScVkySmtSMVpMZDFBNGJIQmxUMnRrWjNSelNVWm1jMUJGVG5wU1FtOVpkR3BtVDBzeVJUUk1ha2tLVDBWdWJWTkdNVmxDUzFaWWFFTXdSR2xHYzBST1l6Tk9WMUJ3YVhCbFkwMVJOalpxVW00d2NsaEhlRk50UlRWcWIwcEhjMDlqZVhwYVMybE5VMlJpYndwcGNXMW9SbFV3VWl0NGRUQjFjblZPU0hNNVpsWlRhVVpqTTJvNFN6aEdUa3NyTm1SUmNFdDNla3BIUzA4eFprWjRUa00wSzJReFlrVldhbmd3ZWpnMUNtWTJVRWh5UzNZMFVtMXFRbG81ZGxSclYzRk9jRFJJVUhKNVZ6ZFFUVXRpVjBWSU4wa3JNMUJUZUN0Tk9HRkVhMVUzWkZSRE9XWlhTV3g0UlRVcmFtb0tRV2w1TVRWM01HNHpZV0kwYmxOa00yMXlRWEZwTDBGb09UQTJhR3QzTDB0U2FsZFROVU14ZEZWUlkwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1FXRnpaSEpaTjBkV1ZqTjZlbms1Q21wcFUwWnJObWxrZVhkMWVVMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFrcGFRV0pWWVVWcVRWVlpRbVV5WlVkc0wxcFZhRlpQTDFBS2EwcGlPWEZaZVhGTVQzcG9URTR2ZFdKTk4xQm5XRXhWUVhSamFGcDVVR1pqVURFMk1tWlJWVlV2TDBjNU9HTXJWelZZUzJGdFEwZE5ZbmhYVjBvNWJ3cG1Ra3N2ZEdKalJuTjZhVGxwV1cwdlduTjFTRkZtWkhSUmVtcFFhV3hNU0V4V1NHUjBPR3h4YzFVeFpFWmxMMUp3U21jdmRtZEdSMXBtV0Vsd2RGWmtDaTlRVERaSVVXOVROMDlWZFROTWQwRkRRVWxQWTB3M1NtUkhLek5wUVVacE5rNXNXVGhwZWxKaU0xTjZNbXhwUW5KUlV6aHhUMjByYUd4WmRXdExkWFlLV25JcllYZzVjbXBaVHpCUmJGZzNNSEprYlZKVWJXRlNWMUEwVFdaQ1kzQkhaRzVuVFZGRVRISkdNVWhETDFWR1JtUnNRbkJDVWxWclZtVklkMFZDT1FwVldrWnBRVTFHUzFWdU5YcGtTWFppV0d0VkswMVhXbTFhTnpoNVEwSkhPRkZLTVVKbldXSndORlZCWVdOUWQxVlFNMmRuYXpsbVVtVXdVSFJ2UjI1TkNtNTJPVXROVUV0UmMyMVJOa3hDU0M5cFRIZDZRbXRDTmtSUE9FdDVNbVJhUzNGMmFGRXZNQ3RLTmlzeWNqbHpNSGh4VTNwdE5YRlVjbU40TmtFNGVFb0tVamxoUTBWVWRtdGtlbVpRY0ZJd01IbHRlbGwwTms1b04zRnNZakpxUjJac1dHWXJNR1J4ZUZWSU5sVm1ibkEzVjBoalNEUlViVXRFTDFCb09XazNXUXBuUms1VWVXMURkVmxsTjBkYVVGaFdNVmh0Y2xWV2RqTlFTMWRvWVZNdmQxazFkV1JRUjBGR2QzSmtjR0pUUzBGeGIwMXhSMjk0ZUVwak5WcE9OM3ByQ25OUVpEWmFjMFI2TUVzNWRDOUhMMWxSYmtWdlVGWlJiVkZ5ZW01ck0yZDFaRk41WlVaV1ZXOXlUSEY0WjB4dlNYZFZiMFpOVkRKbU1YbFRXR2xtTTNrS1kxcEpkRzh6WjFwNWNTdGpkakpHTVc1NE1HOHJUbHBPWTJsMlkzYzFNRloyV0ZGemJrNWtjemhtVkU1cE4weFNkM0pFVVRKa2JsUjBVVFEwTm5KcFN3cGFibGNyZVdFM1RGWlVaRlppUTBKVFNFRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zZ2VvdHZ0bS1tajRjaWlzZC5oY3AuZWFzdHVzLmF6bWs4cy5pbzo0NDMKICBuYW1lOiBjbGlha3N0ZXN0ejRyMmNpCmNvbnRleHRzOgotIGNvbnRleHQ6CiAgICBjbHVzdGVyOiBjbGlha3N0ZXN0ejRyMmNpCiAgICB1c2VyOiBjbHVzdGVyVXNlcl9jbGl0ZXN0bmo3a25xdDY0cl9jbGlha3N0ZXN0ejRyMmNpCiAgbmFtZTogY2xpYWtzdGVzdHo0cjJjaQpjdXJyZW50LWNvbnRleHQ6IGNsaWFrc3Rlc3R6NHIyY2kKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBjbHVzdGVyVXNlcl9jbGl0ZXN0bmo3a25xdDY0cl9jbGlha3N0ZXN0ejRyMmNpCiAgdXNlcjoKICAgIGNsaWVudC1jZXJ0aWZpY2F0ZS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VaSVZFTkRRWGRYWjBGM1NVSkJaMGxSWmpJMFNWcEVVVVp1Umtjd1dVNVNjeTlHWTNORVJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdWR2R6QjVUWHBCTWsxVVZYaFBWRWsxVGtST1lVWjNNSGxPVkVFeVRWUlZlRTlVVFRWT1JFNWhUVVJCZUFwR2VrRldRbWRPVmtKQmIxUkViazQxWXpOU2JHSlVjSFJaV0U0d1dsaEtlazFTVlhkRmQxbEVWbEZSUkVWM2VIUlpXRTR3V2xoS2FtSkhiR3hpYmxGM0NtZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVNMVZWb3libE54Tm1GbVJYcHhkek4zUkVOU2FIZ0tkak1yTUZsS0wwTlpjRkU1YTA5amVpOVBhVk5FVTAxaGVqWkZUWGRSVmpndlFqQkliR3RJU0RKVVMyOTFWMFJMV1ROV0syRjFlVlZsVlhveFpWb3lWZ3BIWkdwWlIyaEdaMkppV21kSlQzZ3ZhbmxtYkROMFFXd3phVlJJTVRsdlN6TlNTbVpPU2xrcmRETnhVMGRCV21ac2JHZE9TaTlNUlhGalpEWnRVbU5tQ2tSelkxaHNlVXhHVld4a1VrTktTR3hSTVZZcmJ5OHlVbGxvTWxGR05taE1ObkZRZUdKUWFIRkdORmRXVXpOb2J6TjVTMVZzVmxsTGNXMXZPSGhuY1hRS1NuZHNTeXMxWmxac2EyWmFaVFJMYzJrd2RIbHJVM2RJWlV4M2NFSjFTMHM0UVM5SmREUlpUalppZDB0YU5YRlVSM2RRVERaTlRpOVdNM051TjNod1ZRcGFja2hzWm1VeUwxVklTV055Y0RaR09Vd3hNV3R0VUZCUWJVbHVUblZEZUZOSVlrOVpWVU52Y0VWUVJtMXhNbGdyUzFKM1drWlJOMDAyU1ZSS1QyTnNDbWxTTDB4TVVqbEpkRlYxSzBodmFHbE9XamhIYTI1aE0xaHJNbkZzUVdSVFdEWk5VVGhLY2pZeE1tNUdRbGxUT1RkeVZEaEdWVkE1V21GamR6TkpVR1VLYnpFM1IxVTJTRXQzYjJJeWQyZzBkbTR6TVhsUVJqZzRhR0pWVkRsNWNuWXZNVnBHWVdoa09GWlZOVXgwU0ZOSmJXNVdXa0ZtWldoRGRrRnlhbVpXYlFwSVpuZFVPRVp1YzJGRlZreHViR0ZqVUVjcmMxRndjM0JDY0d0V1JXczRVMmd2VUM5R1RHcHJTQ3R1V1ZGdlpFVkVSVkExY2tNeFptODNaV0ZvSzB4dkNsZ3JaMVpzT0U5amVWTjVia1pYUW0xRGEzUlVkV1p2Um1kRGJYTnZWR1ExTWpod1JVSkxRMVJEVmtObU5tSjZWekUwYzJ4RU1WaFpOVFZLWWk5MVZFWUtXREZXWVdOM1RXWlBVblpsZUZseVZXbExlR1pWYzNkTVRsSlhPVEYyUzNsM1FYaENaVkJNTVRRMlYwZFFiQzlNWVUxclExUjJiMnBwU1ZGbVV5dExUZ3B2VUUxc1FqRjROQ3N6T1hJeE1HdzBjRU5yUm5SUlNVUkJVVUZDYnpGWmQxWkVRVTlDWjA1V1NGRTRRa0ZtT0VWQ1FVMURRbUZCZDBWM1dVUldVakJzQ2tKQmQzZERaMWxKUzNkWlFrSlJWVWhCZDBsM1JFRlpSRlpTTUZSQlVVZ3ZRa0ZKZDBGRVFXWkNaMDVXU0ZOTlJVZEVRVmRuUWxGSGNraGhNazk0YkZZS1pEZzRPSFpaTkd0b1drOXZibU56VEhOcVFVNUNaMnR4YUd0cFJ6bDNNRUpCVVhOR1FVRlBRMEZuUlVGWlpHbHhaelZZYWxoTFlpOVRhRlJFYlVGRWJRb3pXWGN6Wm00dmNHRk1ORlExVGpCck0wa3pRVFYzUTI5MVIzcHpLMHgxTUUxak5UTlpha3d4Y0RKMVZYVnBSWEF3YW1wa01GZG5WbUZJUjFWdk1XaE9DbTk2YzNsU1RIWnBUWEpzT0U1d1kxUXhaRGR0T1hkbVZrNXNhMVYwU2k4eWNqbHVZMFJHTnpaMFJ6TnBPVVZvVkRseU1HTlZOa3BTVWt3NVJ6ZzRhVzRLWWxwVlpHTTFZVkpVTnk5blkwOUZaREFyVkhCVFVUQlhiVlYxZVd3dlkyOURhbTlvTUZCTGJWQTVaeTlZVTFGcFNVNW5VMHRMV1ZSc09GaEJiR3hzTWdvcmVITkxSbHB1VmtvNVVGZHdVSEpNUTJFMmFFMHhSV281VFRsMVZXeFhVMU5YUWprNVFVOUhOakpNUldsSE0zTXhjWFptVUcxMlNteHlVME16UjNSb0NsSXdhMHR3TmsxU2NVSkxUMEZwU1doaGFtZGlXa3RXTTB0NllYVlFXWEprUnpKWmFIQlFTblJNZFU5clZGRldTbUpzU21sdksyeFVia3BuVG1oSWNWb0tMME5MWlc5TlpVd3ZjMEpKVEd0SVJHUTNRMFppWjJRclJ6Tk1aRVFyZGxoWmF6ZGFNbFl2YlVOaVUwTnJVRWtyYUdkVGFtMUxXWEZVZDJGYWJHTktZUXB2WldOc1UxSllSRWwzUWxGNllUVmpkemQ1YW5SdGQyRlBVWGxLTm5aSFFpdHZiRUYyYTI0NWQwWjJTbmRTWm1kWFkyNU1Za2RXTWk5T2JqSjJTWGR6Q25adWF6TkJTWGRhT0cweFYydzBRa3BIWTJoRVkwRm5lbGMyTDA1b2RUTTNNaXR4VkZCcVJIUXljR1p3UmpBcmFraFFUV0ZCVG13MVEycGFRV3BxYlVjS01WbENWa2wzVFRCR05sQmpVMkY0VXpWaVpGQlRWbFZ0TUdGamNWbFVRMUJNYld0a1pIRTBOamRpVFRWQmRUTkRlVXh1ZVZkQk5XdFZhRzAzZHpGcmRRcGxUMWhwWTBveGFITm9aV2w0TVZsNlJGTXhPVkJvVHpWNmNqVjJUbnBOYm1GcmQzaFhUekUwTkZkV2QyRjFSMUoxYlhkaVRUVTJOMDlzWjBwNVNUUkJDbGxMY1RaSU5UWlRPR2t2UlhsaVpFeGFiM1JDY0RoRlBRb3RMUzB0TFVWT1JDQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENnPT0KICAgIGNsaWVudC1rZXktZGF0YTogTFMwdExTMUNSVWRKVGlCU1UwRWdVRkpKVmtGVVJTQkxSVmt0TFMwdExRcE5TVWxLUzFGSlFrRkJTME5CWjBWQmRWWkhaSEF3Y1hWdGJuaE5Obk5PT0VGM2ExbGpZamt2ZEVkRFpuZHRTMVZRV2tSdVRTOTZiMnRuTUdwSGN5dG9Da1JOUlVabVVIZGtRalZhUW5nNWEzbHhUR3huZVcxT01XWnRjbk5zU0d4Tk9WaHRaR3hTYmxreVFtOVNXVWN5TWxsRFJITm1ORGh1TldRM1VVcGtOR3NLZURsbVlVTjBNRk5ZZWxOWFVISmtObXRvWjBkWU5WcFpSRk5tZVhoTGJraGxjR3RZU0hjM1NFWTFZMmw0VmtwWVZWRnBValZWVGxabWNWQTVhMWRKWkFwclFtVnZVeXR4YWpoWGVqUmhhR1ZHYkZWME5HRk9PR2xzU2xaWFEzRndjVkJOV1V0eVUyTktVM1oxV0RGYVdrZ3lXSFZEY2tsMFRHTndSWE5DTTJrNENrdFJZbWxwZGtGUWVVeGxSMFJsYlRoRGJXVmhhM2h6UkhrcmFrUm1NV1EzU2lzNFlWWkhZWGcxV0ROMGRqRkNlVWhMTm1Wb1psTTVaRnBLYW5wNk5Xa0tTbnBpWjNOVmFESjZiVVpCY1V0U1JIaGFjWFJzTDJsclkwZFNWVTk2VDJsRmVWUnVTbGxyWm5sNU1HWlRURlpNZG1nMlNWbHFWMlpDY0VveWRERTFUZ3B4Y0ZGSVZXd3Jha1ZRUTJFcmRHUndlRkZYUlhabE5qQXZRbFpFTDFkWGJrMU9lVVF6Y1U1bGVHeFBhSGx6UzBjNWMwbGxURFU1T1dOcWVHWlFTVmN4Q2tVdlkzRTNMemxYVWxkdldHWkdWazlUTjFJd2FVcHdNVmRSU0ROdlVYSjNTelF6TVZwb016aEZMMEphTjBkb1JsTTFOVmR1UkhoMmNrVkxZa3RSWVZvS1JsSktVRVZ2Wm5vdmVGTTBOVUl2Y0RKRlMwaFNRWGhFSzJGM2RGZzJUek50YjJacE5rWXZiMFphWmtSdVRXdHpjSGhXWjFwbmNFeFZOMjQyUWxsQmNBcHlTMFV6WldSMlMxSkJVMmRyZDJ4UmJpdHRPREYwWlV4S1VUbFdNazlsVTFjdk4ydDRWamxXVjI1TlJFaDZhMkl6YzFkTE1VbHBjMWd4VEUxRGVsVldDblprWW5semMwRk5VVmhxZVRsbFQyeG9halZtZVRKcVNrRnJOelpKTkdsRlNEQjJhV3BoUkhwS1VXUmpaVkIwTDJFNVpFcGxTMUZ3UW1KVlEwRjNSVUVLUVZGTFEwRm5RakZzVGtaQmVXVlFTelZVT0hkWVYxRmlNRkJQVUdsSUsxRm9VbGxaYTJNcldUSkpNalZ6UzJkdWMzVnZjRWx5THl0b1lVaHFNRlp5YUFvMk0xcEdVbEYzWkdaaVJuQXJTREJrTDNReWIzWjFXVlJuYkhnemN5OVRaaXRNYnpWM2NVeExhakZyS3k5cFprVmtRVVZDV21Sa1ZXSlRTazVpYTAxMkNqUlFMMHhRTUUxdU1uUkxRVm8zV0hGamQxSllkalZzZG5Ob05qTmtMM0psWm5Wb2VUVnVSemhYYjBkdVVUTm1SbUZIZFVWcFVYQlZNa2t6VW5wVmFrUUtOeXMwVmpodFMzaG1WR05wTkhsRVpuZFlhbU5RTlVFd2FYcDBUemRqZFRWd1lsTkxjMnhXV1V0clQxcEZja05IVDNCSlJFVTFibVpPYURCaVNtOUlPUXBUYlZKdFFUTXhjRFZLTlhjME9UQmxlbU55YzNsNVlUZERZbmhqTDA5UE1uaHdXRWx2TVZGcU1uRTVLMDEyUkdFemF6QjRkVEZWZG5GSFVXTldLM1kxQ25WcU56WlJWemd5ZFRWUFZreDNLekoxUWtkNGJHMXpjRlp0Y2twcmNDdENPRzR2TW5GWk9EZEhkVWRYTVRGSmFIZHBhM1JFWlhsMFkzWkZka3RKYVd3S2RVcHdXVVZ6V2sxSGVTdDFSWElySzNGRFJIQllSRTg0TlRaQ01FODNhVk5VSzBGMFJHMXRWMmM0V2pZdmMyaE5jamhGUVVaRk1GRlZNRWRJTjNaU2FncDFUbkV2ZDIxdmMxUnhkSE5VYzFKS2JpOHZRMDQwWVVaaFYxWkZNVzVOZVVOVWVtTkRlWEp0VEd4WEswVnpSa2RZUXl0QmEzUlFOVXBtT1ZaTFNrZ3hDbVI2Tkdjd1NsaE1iVkZIZHpSbFN6aG9ZVzFSVTJWeFNESXhSR0poWmxCaldWUnZSRXh3V0RONVVYWkZWbWQ1TTFSM1Z6UTVXR1oxUVROdlZXVmlRek1LV2pZdlMyYzBUR2gwYlVaTU55OTFRM0UyVFhwNVptNVhTWEZPY0ZwRk5FNXRWMFJJTnpGSFJHUjZRVnBVTmpSWVowRlhTMjQzSzFCU1IzQkZjR3hQYXdvM2EyTnhjVmR3WW1wamNXTktibFY0TUV0U2RsaFFhVkpFVjBZMWExQTROVGxYYW5wT2VGZFNlWGN6UTJ0a1JYUlJVVXREUVZGRlFYZ3dZV2h4WVdWRENteHVaV1JuY1RCSWIydEtXRmcwVGtjMWR6aHRPVlpzZUVzelZXMXNWRFUwVDNkMVkxZGxRV0pyTjFKWFVVZFphelpQUWpGNlZEZDRkbmhWUnlzNWMwMEtlR3RrVVd0WlpHcDBWSHAzU0RNclppdFFNV1Y0VlROdGRVbFJVMmRKYWpNM2NtbzBNV05TWm5NdlZYWlNVbWxvV1Rsd1ZWcHlRVVJ0TmxWWlRuUnROd28wUkRSNVowNXJOemcxT0N0WldWVnVkRmd5V0dweWJWUkNWbmd4WWtwa1J6SnVSRk5CZWtoTVRFeFFjRTVDTmtsM1VrbzBPR2haTUhrNUswaFdiVm8yQ21SNlYyRkRlVFZHTm5SaVltMU9SVlY1ZWt0VmRHbG9ZM2RTSzFKaVVEVTJaWGhUY0N0eloxRXZiazFtY2pWYUszTkJXWHBETlN0eVZFWnRSbWh3U1ZRS1JsUnBXbFkwWkhONE5EWmxPREZ3UW1Gbk9YaE1SRVpKZVhkWlYzWnlVVmh3UTFWVU5HeEJOalpSU1d0MmNYWkhTa0ZvYWk5T1FsQlpNR1JJWWtodlZRcFhNakJoYTB4UlQwcG5TVFpVVVV0RFFWRkZRVGRvU0hJNGMzQmFjRlZ0VnpaWFFWaEJhWGhhV1VJNGEyNDBWMUZoYkdoUk16RkhORmMzY2pSMFpESnJDbVZCUkhOM2NYRXJWbU1yY1VOVGVrZE5ZM2xGV25kTGRFeGhlbFZpWVdwMWJtNURVRlU0VVM5dU1GVjRObFJIVlVKWlRraG5UeTlEU0djMU5GcHdTa2dLU2pZMWRVUTNkVE12VVU1MVpWZHNjVmQ1WkcxemIwbFVZa3Q1WldvelNscFBURTh5UVZNMVdXd3JXSGhYUlZWeWFGcE9hWEpJVFVob2JqWm5XbEF5UndwRlJqQXdiRzR2YjA5clNXdzFjbEZNVEZOcEwzaHZWbmd3Vmk5a1kzbFJPSGxLU0RKS2FEbEZXVk5uWVZwRVdVRXJOVWcyUkU5bWFUazNjV05KZDJSTENsWk9ZMVpxWm5wb1EzbFZMMEpqWmxWQmVIUXhaM2wyUzI5cFpXaEVZVVZXWlc5Q1lUQktTMlZxTkVsVVJFTTRXbEJHV0ZFNFNXTnplU3N3ZEdoQlVqSUtRVTUwTUhjek1UWmhOVnBRVkVSdmFqSXJjWEI1Y3l0RmNsTXdTRE4ySzJsSE1YSTNSVUZPWkVOUlMwTkJVVVZCY3psdmJXNURWVzlOYWpsbk9VbHFVUXBKTDNveVQwdHJWaTlCU25JMlprcEJkSEpWTUVSdGVtdFFTRFE1VEdONVltUjRURU0yWW5GSGR6TjFZVTV3VlVKM1RFUnpjbUpFUlRsamRERm9kazFJQ2pWYVNreE5iRXRSWjJwMlJFcG9XWEZFZDNnNFYyMHZSVkJVZGt0elluaGliQ3RNU2s0dllVUTJjMmR3WkhOcFZHRlJNVE5NYTBsVVZUZzRkVFkyVjJzS1pYcDFWa3BLVkRKQmRFdEpWQzlPYWtsMWNWRjJSMHBKVHpKNWNIcDFTa2tyYkRacFRXb3dRWFJwYWtNMlpFNXhPRlJ2WTFCeWJXTXZRM2gyYWtodVJnbzVjVGRYV1ZSVlRFeEdNMHBhUTBwSWJreEhkVWxuTkVoWk1FTkRURmR2VjBaSFF6VkVNVTl1YjFwNmJYZDVNMjVtTjBGdlYwRXhUV3hrUjFGaVJGRTBDakZHTnk5VVMyd3ZPRzlhWmxsVlFsWTNORGRsVW13emNVaEhZWFZpU1hBeWMwMW5WR1U1WTNseVIwTTJVbGh0U1haU1UyVXZUMDkwY21Sd2NIRkpTWEFLV25SeFNqTlJTME5CVVVWQmMyOXVNRTVzS3pCbVZGaEZTRWc0Tkc5cFQyRllNMFJpY1ZaeGExcEhlVnBOWmtZMldHbHFTa3h5VEhKRWFXYzNXblkxWmdwM1kwUTRWblZqYVU0clUxZEJlRGRLZFROQ1lUSXlZVTlzV0c0MmMzbHhRbEZFVUVoaE5HZElOVEUxT1hWR0sxZGFOalJaWXpKM1QwOTBPR2R2VjBnMUNtRkxSWHBNTlVKNk9UWnhSRFZUYlZJMFlsWlFUVWR5YTB0S1lqRjZjM0ozUnk5TFVsaGpOVFpDYWtoNlJsUnpja1ZLTVZWTmIycEVRM1pEY21GS1lrTUtSbFJpV1dJM2VtdHBUbWd2WjJsVkwzQXpURXRuTDJoUlRWZGlkR1k0WlVKSk5DOU5kM2Q1VWtSb2JEWjFhMVZLVUZKdVVUQkxRU3REV1ZKSlNWQlVaQW96VG5KM0syRm1WVUYzVTB4NU0xTkVRV0p5VVcxSlZVOXpOVVZvUTJwNE5qa3djbTlsUVVjeVdHbzFTbVJMYTJKWGJFRnJRekZpUWtoSlJqUm1jMlJUQ210UE4yNTRNVmgxTkVwWFRFRndUa0ZuUWswclZFOXVVSEU0TkN0aVRreHZObEZMUTBGUlFVaG5VRzFIV0hGVlYzcGhkMnRTVVVwSmEyTXhiM2xyVUhvS05sRkJjVlppVUdZeFExRkJORFZNYTJocVRURlhSMGRITVhkaEsxSnlUM1JUU21jck1XNUdiSGRFY1ZObFducE9USEJYU1RsSFQxbzJTV1ppUW5kNWFRcEtiRmQ1WkVOU09YbG5aM1l2Y2pCRk4yUm1UM2c0VTNOMGJURllORFozYm1OQ1QwdFVlRzA0UkVaUWRXb3hVVkZUV0hkeFRGTnlPRU12Y2pKeWVIaHpDa0pKWnpaSFNuTXhTbEpzVDJWSVNFZDNWMUo1UW5WeWF6aFpiVE51VFZjM1NsVlFkR1kyZFRFNWNrcHpTSE5aVVVadmVscFBkSEIyWWxoMGQyZExMelFLY0hFNWFVNUZTVFpJTkhZeFdtZHlVMVkzUWtwUWJubFhObFF3UTJVMmVGZG5ZVmczZUVJMVJXSXhTekpOV0dGVVFuVmtWVFZ4TVN0dU0xQkJSakIwVmdwak1GSllUaTl6V25neldrVXZjV28wTTJ0WkszUldMM0o2VGxkbWF5dHJNR3hOV2xGNFUxZzNlRVpOV0ZwQmNVcHVlbWxUYTBsVWJFeDBZVm9LTFMwdExTMUZUa1FnVWxOQklGQlNTVlpCVkVVZ1MwVlpMUzB0TFMwSwogICAgdG9rZW46IDRwcGR4Y3J4eHZlYXMxcTNpd3RjMjl5MmVoOXR5YjQwZjNiZjRkdXdhcHBmZmo4ZXV5N2VydWZjbnU2NjhxZnhodGp5Z3NyYXF6anlkeThuZ2x6OXF5cW5icms5dWVxdmtlZGpiMXVua2dzNDdrZXF3dXJpeGp5ZnRxbGplbzhqCg==\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13072' + - '13084' content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:10 GMT + - Thu, 15 Jun 2023 19:43:13 GMT expires: - '-1' pragma: @@ -1054,7 +1117,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -1072,64 +1135,65 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-7bcvp6sy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-7bcvp6sy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cedc4af0-e20e-4dad-8ef4-7a2364c8300a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-mj4ciisd.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-mj4ciisd.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.Network/publicIPAddresses/dcba6d38-6a9f-4b98-9169-69968d9480b1\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3864' + - '4186' content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:10 GMT + - Thu, 15 Jun 2023 19:43:14 GMT expires: - '-1' pragma: @@ -1148,25 +1212,24 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": + body: '{"location": "eastus", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": - "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.24.9", + "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, - "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", - "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cedc4af0-e20e-4dad-8ef4-7a2364c8300a"}]}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": + "MC_clitest000001_cliakstest000001_eastus", "enableRBAC": true, "supportPlan": + "KubernetesOfficial", "networkProfile": {"networkPlugin": "kubenet", "podCidr": + "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": + {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.Network/publicIPAddresses/dcba6d38-6a9f-4b98-9169-69968d9480b1"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": - ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {"diskCSIDriver": {"enabled": true}, "fileCSIDriver": {"enabled": true}, "snapshotController": @@ -1181,72 +1244,73 @@ interactions: Connection: - keep-alive Content-Length: - - '2496' + - '2820' Content-Type: - application/json ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-7bcvp6sy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-7bcvp6sy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cedc4af0-e20e-4dad-8ef4-7a2364c8300a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-mj4ciisd.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-mj4ciisd.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.Network/publicIPAddresses/dcba6d38-6a9f-4b98-9169-69968d9480b1\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e913714f-7b68-46ed-a10d-5444af75f845?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/18c8f123-4bec-40b6-b54c-625832add559?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3862' + - '4184' content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:14 GMT + - Thu, 15 Jun 2023 19:43:20 GMT expires: - '-1' pragma: @@ -1262,7 +1326,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -1280,14 +1344,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e913714f-7b68-46ed-a10d-5444af75f845?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/18c8f123-4bec-40b6-b54c-625832add559?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"4f7113e9-687b-ed46-a10d-5444af75f845\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:08:14.4766059Z\"\n }" + string: "{\n \"name\": \"23f1c818-ec4b-b640-b54c-625832add559\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:43:21.3397116Z\"\n }" headers: cache-control: - no-cache @@ -1296,7 +1360,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:44 GMT + - Thu, 15 Jun 2023 19:43:21 GMT expires: - '-1' pragma: @@ -1328,14 +1392,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e913714f-7b68-46ed-a10d-5444af75f845?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/18c8f123-4bec-40b6-b54c-625832add559?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"4f7113e9-687b-ed46-a10d-5444af75f845\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:08:14.4766059Z\"\n }" + string: "{\n \"name\": \"23f1c818-ec4b-b640-b54c-625832add559\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:43:21.3397116Z\"\n }" headers: cache-control: - no-cache @@ -1344,7 +1408,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:09:13 GMT + - Thu, 15 Jun 2023 19:43:52 GMT expires: - '-1' pragma: @@ -1376,14 +1440,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e913714f-7b68-46ed-a10d-5444af75f845?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/18c8f123-4bec-40b6-b54c-625832add559?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"4f7113e9-687b-ed46-a10d-5444af75f845\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:08:14.4766059Z\"\n }" + string: "{\n \"name\": \"23f1c818-ec4b-b640-b54c-625832add559\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:43:21.3397116Z\"\n }" headers: cache-control: - no-cache @@ -1392,7 +1456,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:09:44 GMT + - Thu, 15 Jun 2023 19:45:05 GMT expires: - '-1' pragma: @@ -1424,14 +1488,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e913714f-7b68-46ed-a10d-5444af75f845?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/18c8f123-4bec-40b6-b54c-625832add559?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"4f7113e9-687b-ed46-a10d-5444af75f845\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:08:14.4766059Z\"\n }" + string: "{\n \"name\": \"23f1c818-ec4b-b640-b54c-625832add559\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:43:21.3397116Z\"\n }" headers: cache-control: - no-cache @@ -1440,7 +1504,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:10:14 GMT + - Thu, 15 Jun 2023 19:45:50 GMT expires: - '-1' pragma: @@ -1472,14 +1536,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e913714f-7b68-46ed-a10d-5444af75f845?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/18c8f123-4bec-40b6-b54c-625832add559?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"4f7113e9-687b-ed46-a10d-5444af75f845\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:08:14.4766059Z\"\n }" + string: "{\n \"name\": \"23f1c818-ec4b-b640-b54c-625832add559\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:43:21.3397116Z\"\n }" headers: cache-control: - no-cache @@ -1488,7 +1552,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:10:44 GMT + - Thu, 15 Jun 2023 19:46:20 GMT expires: - '-1' pragma: @@ -1520,15 +1584,15 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e913714f-7b68-46ed-a10d-5444af75f845?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/18c8f123-4bec-40b6-b54c-625832add559?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"4f7113e9-687b-ed46-a10d-5444af75f845\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:08:14.4766059Z\",\n \"endTime\": - \"2023-03-15T11:10:56.5744995Z\"\n }" + string: "{\n \"name\": \"23f1c818-ec4b-b640-b54c-625832add559\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T19:43:21.3397116Z\",\n \"\ + endTime\": \"2023-06-15T19:46:35.2231462Z\"\n }" headers: cache-control: - no-cache @@ -1537,7 +1601,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:11:15 GMT + - Thu, 15 Jun 2023 19:46:51 GMT expires: - '-1' pragma: @@ -1569,64 +1633,65 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-7bcvp6sy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-7bcvp6sy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cedc4af0-e20e-4dad-8ef4-7a2364c8300a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-mj4ciisd.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-mj4ciisd.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.Network/publicIPAddresses/dcba6d38-6a9f-4b98-9169-69968d9480b1\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3864' + - '4186' content-type: - application/json date: - - Wed, 15 Mar 2023 11:11:16 GMT + - Thu, 15 Jun 2023 19:46:51 GMT expires: - '-1' pragma: @@ -1658,64 +1723,65 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-7bcvp6sy.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-7bcvp6sy.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/cedc4af0-e20e-4dad-8ef4-7a2364c8300a\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-mj4ciisd.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-mj4ciisd.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_eastus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.Network/publicIPAddresses/dcba6d38-6a9f-4b98-9169-69968d9480b1\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3864' + - '4186' content-type: - application/json date: - - Wed, 15 Mar 2023 11:11:16 GMT + - Thu, 15 Jun 2023 19:46:53 GMT expires: - '-1' pragma: @@ -1749,8 +1815,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -1758,17 +1824,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b5baecd2-a377-4dd2-9ae6-93aed96bfbb8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/bd6d755b-d6f1-46a8-a8e7-e2226cc1de84?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:11:17 GMT + - Thu, 15 Jun 2023 19:46:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/b5baecd2-a377-4dd2-9ae6-93aed96bfbb8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/bd6d755b-d6f1-46a8-a8e7-e2226cc1de84?api-version=2017-08-31 pragma: - no-cache server: @@ -1778,7 +1844,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14992' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_abort.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_abort.yaml old mode 100755 new mode 100644 index 39017be5310..1279b7539de --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_abort.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_abort.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --node-vm-size -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 20 Mar 2023 07:39:04 GMT + - Thu, 15 Jun 2023 19:46:58 GMT expires: - '-1' pragma: @@ -60,21 +60,21 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --node-vm-size -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-20T07:39:04Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_nodepool_abort","date":"2023-06-15T19:46:57Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '353' content-type: - application/json; charset=utf-8 date: - - Mon, 20 Mar 2023 07:39:05 GMT + - Thu, 15 Jun 2023 19:46:58 GMT expires: - '-1' pragma: @@ -90,19 +90,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestitqfzc4wh-8ecadf", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestvcxxvs2qj-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnnTfJTi8i08R/Ld57s7mASt0/KISN5/BKZjuKm4TSkCewOToNXYXW1suFe1BDHRUcbJ02v/8KYsU9DxT276qk+4EdhmIIBKGUKGz1tNDszF3lz5pvCi6dleBqUu5w8M7pddIBVqNFCx0jiUvbUQo8GS3nK6m4iLcjIecs+Y55GQksVyQAnu90uqV+DBcMOaM1a+J6tOY28ReimFk+PqKgLlujNLlwLd9bFRcVn+IBz2OviQU9z+Ffk6OGtIGFUAGNlCb4wNUMGJFmQarbgpZK7jj4yfirjiZXInJUzqmZsodnORHQJk0M+sGMrJI1CFWWka/NTDRc/2EyRIki/Nyb - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -113,68 +112,70 @@ interactions: Connection: - keep-alive Content-Length: - - '1459' + - '1751' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value --node-vm-size -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestitqfzc4wh-8ecadf\",\n \"fqdn\": \"cliakstest-clitestitqfzc4wh-8ecadf-egsevs8i.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestitqfzc4wh-8ecadf-egsevs8i.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnnTfJTi8i08R/Ld57s7mASt0/KISN5/BKZjuKm4TSkCewOToNXYXW1suFe1BDHRUcbJ02v/8KYsU9DxT276qk+4EdhmIIBKGUKGz1tNDszF3lz5pvCi6dleBqUu5w8M7pddIBVqNFCx0jiUvbUQo8GS3nK6m4iLcjIecs+Y55GQksVyQAnu90uqV+DBcMOaM1a+J6tOY28ReimFk+PqKgLlujNLlwLd9bFRcVn+IBz2OviQU9z+Ffk6OGtIGFUAGNlCb4wNUMGJFmQarbgpZK7jj4yfirjiZXInJUzqmZsodnORHQJk0M+sGMrJI1CFWWka/NTDRc/2EyRIki/Nyb - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestvcxxvs2qj-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestvcxxvs2qj-8ecadf-98z6b6vj.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestvcxxvs2qj-8ecadf-98z6b6vj.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6bea699e-f2e0-41b2-b4c0-3d09a1a1a2e3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b10d8f1-53b7-4ce2-a311-522c1229cee6?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3268' + - '3596' content-type: - application/json date: - - Mon, 20 Mar 2023 07:39:08 GMT + - Thu, 15 Jun 2023 19:47:06 GMT expires: - '-1' pragma: @@ -205,14 +206,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --node-vm-size -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6bea699e-f2e0-41b2-b4c0-3d09a1a1a2e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b10d8f1-53b7-4ce2-a311-522c1229cee6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9e69ea6b-e0f2-b241-b4c0-3d09a1a1a2e3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-20T07:39:09.2399639Z\"\n }" + string: "{\n \"name\": \"f1d8108b-b753-e24c-a311-522c1229cee6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:47:06.2589108Z\"\n }" headers: cache-control: - no-cache @@ -221,7 +222,7 @@ interactions: content-type: - application/json date: - - Mon, 20 Mar 2023 07:39:39 GMT + - Thu, 15 Jun 2023 19:47:06 GMT expires: - '-1' pragma: @@ -254,14 +255,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --node-vm-size -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6bea699e-f2e0-41b2-b4c0-3d09a1a1a2e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b10d8f1-53b7-4ce2-a311-522c1229cee6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9e69ea6b-e0f2-b241-b4c0-3d09a1a1a2e3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-20T07:39:09.2399639Z\"\n }" + string: "{\n \"name\": \"f1d8108b-b753-e24c-a311-522c1229cee6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:47:06.2589108Z\"\n }" headers: cache-control: - no-cache @@ -270,7 +271,7 @@ interactions: content-type: - application/json date: - - Mon, 20 Mar 2023 07:40:09 GMT + - Thu, 15 Jun 2023 19:47:36 GMT expires: - '-1' pragma: @@ -303,14 +304,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --node-vm-size -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6bea699e-f2e0-41b2-b4c0-3d09a1a1a2e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b10d8f1-53b7-4ce2-a311-522c1229cee6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9e69ea6b-e0f2-b241-b4c0-3d09a1a1a2e3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-20T07:39:09.2399639Z\"\n }" + string: "{\n \"name\": \"f1d8108b-b753-e24c-a311-522c1229cee6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:47:06.2589108Z\"\n }" headers: cache-control: - no-cache @@ -319,7 +320,7 @@ interactions: content-type: - application/json date: - - Mon, 20 Mar 2023 07:40:38 GMT + - Thu, 15 Jun 2023 19:48:07 GMT expires: - '-1' pragma: @@ -352,14 +353,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --node-vm-size -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6bea699e-f2e0-41b2-b4c0-3d09a1a1a2e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b10d8f1-53b7-4ce2-a311-522c1229cee6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9e69ea6b-e0f2-b241-b4c0-3d09a1a1a2e3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-20T07:39:09.2399639Z\"\n }" + string: "{\n \"name\": \"f1d8108b-b753-e24c-a311-522c1229cee6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:47:06.2589108Z\"\n }" headers: cache-control: - no-cache @@ -368,7 +369,7 @@ interactions: content-type: - application/json date: - - Mon, 20 Mar 2023 07:41:09 GMT + - Thu, 15 Jun 2023 19:48:37 GMT expires: - '-1' pragma: @@ -401,14 +402,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --node-vm-size -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6bea699e-f2e0-41b2-b4c0-3d09a1a1a2e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b10d8f1-53b7-4ce2-a311-522c1229cee6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9e69ea6b-e0f2-b241-b4c0-3d09a1a1a2e3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-20T07:39:09.2399639Z\"\n }" + string: "{\n \"name\": \"f1d8108b-b753-e24c-a311-522c1229cee6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:47:06.2589108Z\"\n }" headers: cache-control: - no-cache @@ -417,7 +418,7 @@ interactions: content-type: - application/json date: - - Mon, 20 Mar 2023 07:41:39 GMT + - Thu, 15 Jun 2023 19:49:07 GMT expires: - '-1' pragma: @@ -450,14 +451,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --node-vm-size -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6bea699e-f2e0-41b2-b4c0-3d09a1a1a2e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b10d8f1-53b7-4ce2-a311-522c1229cee6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9e69ea6b-e0f2-b241-b4c0-3d09a1a1a2e3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-20T07:39:09.2399639Z\"\n }" + string: "{\n \"name\": \"f1d8108b-b753-e24c-a311-522c1229cee6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:47:06.2589108Z\"\n }" headers: cache-control: - no-cache @@ -466,7 +467,7 @@ interactions: content-type: - application/json date: - - Mon, 20 Mar 2023 07:42:09 GMT + - Thu, 15 Jun 2023 19:49:37 GMT expires: - '-1' pragma: @@ -499,23 +500,24 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --node-vm-size -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6bea699e-f2e0-41b2-b4c0-3d09a1a1a2e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b10d8f1-53b7-4ce2-a311-522c1229cee6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9e69ea6b-e0f2-b241-b4c0-3d09a1a1a2e3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-20T07:39:09.2399639Z\"\n }" + string: "{\n \"name\": \"f1d8108b-b753-e24c-a311-522c1229cee6\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T19:47:06.2589108Z\",\n \"\ + endTime\": \"2023-06-15T19:49:59.2471962Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '170' content-type: - application/json date: - - Mon, 20 Mar 2023 07:42:39 GMT + - Thu, 15 Jun 2023 19:50:08 GMT expires: - '-1' pragma: @@ -548,24 +550,66 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --node-vm-size -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6bea699e-f2e0-41b2-b4c0-3d09a1a1a2e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"9e69ea6b-e0f2-b241-b4c0-3d09a1a1a2e3\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-20T07:39:09.2399639Z\",\n \"endTime\": - \"2023-03-20T07:42:43.1758893Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestvcxxvs2qj-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestvcxxvs2qj-8ecadf-98z6b6vj.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestvcxxvs2qj-8ecadf-98z6b6vj.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/57505d2c-077f-407f-90c4-9fa03f01cec1\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '170' + - '4249' content-type: - application/json date: - - Mon, 20 Mar 2023 07:43:09 GMT + - Thu, 15 Jun 2023 19:50:08 GMT expires: - '-1' pragma: @@ -587,75 +631,44 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --vm-set-type --node-count --ssh-key-value --node-vm-size - -o + - --resource-group --cluster-name --name --node-vm-size --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestitqfzc4wh-8ecadf\",\n \"fqdn\": \"cliakstest-clitestitqfzc4wh-8ecadf-egsevs8i.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestitqfzc4wh-8ecadf-egsevs8i.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCnnTfJTi8i08R/Ld57s7mASt0/KISN5/BKZjuKm4TSkCewOToNXYXW1suFe1BDHRUcbJ02v/8KYsU9DxT276qk+4EdhmIIBKGUKGz1tNDszF3lz5pvCi6dleBqUu5w8M7pddIBVqNFCx0jiUvbUQo8GS3nK6m4iLcjIecs+Y55GQksVyQAnu90uqV+DBcMOaM1a+J6tOY28ReimFk+PqKgLlujNLlwLd9bFRcVn+IBz2OviQU9z+Ffk6OGtIGFUAGNlCb4wNUMGJFmQarbgpZK7jj4yfirjiZXInJUzqmZsodnORHQJk0M+sGMrJI1CFWWka/NTDRc/2EyRIki/Nyb - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e7c63fb8-dc72-43bd-b850-fa6942bc867c\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '1037' content-type: - application/json date: - - Mon, 20 Mar 2023 07:43:10 GMT + - Thu, 15 Jun 2023 19:50:12 GMT expires: - '-1' pragma: @@ -674,7 +687,12 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"count": 2, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": + 0, "osType": "Linux", "enableAutoScaling": false, "scaleDownMode": "Delete", + "type": "VirtualMachineScaleSets", "mode": "User", "upgradeSettings": {}, "enableNodePublicIP": + false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": + -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, + "enableFIPS": false}}' headers: Accept: - application/json @@ -684,37 +702,43 @@ interactions: - aks nodepool add Connection: - keep-alive + Content-Length: + - '439' + Content-Type: + - application/json ParameterSetName: - --resource-group --cluster-name --name --node-vm-size --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\"\ + ,\n \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6b560f5-9cc5-43f7-8975-602bc00610dd?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1036' + - '977' content-type: - application/json date: - - Mon, 20 Mar 2023 07:43:11 GMT + - Thu, 15 Jun 2023 19:50:18 GMT expires: - '-1' pragma: @@ -723,67 +747,44 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: '{"properties": {"count": 2, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": - 0, "osType": "Linux", "enableAutoScaling": false, "scaleDownMode": "Delete", - "type": "VirtualMachineScaleSets", "mode": "User", "upgradeSettings": {}, "enableNodePublicIP": - false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": - -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, - "enableFIPS": false}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks nodepool add Connection: - keep-alive - Content-Length: - - '439' - Content-Type: - - application/json ParameterSetName: - --resource-group --cluster-name --name --node-vm-size --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6b560f5-9cc5-43f7-8975-602bc00610dd?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n - \ \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"name\": \"f560b5a6-c59c-f743-8975-602bc00610dd\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:50:18.7281504Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/96245f9c-3efb-4a36-b72f-7d436fdefb89?api-version=2016-03-30 cache-control: - no-cache content-length: - - '976' + - '126' content-type: - application/json date: - - Mon, 20 Mar 2023 07:43:14 GMT + - Thu, 15 Jun 2023 19:50:18 GMT expires: - '-1' pragma: @@ -792,13 +793,15 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -813,14 +816,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-vm-size --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/96245f9c-3efb-4a36-b72f-7d436fdefb89?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6b560f5-9cc5-43f7-8975-602bc00610dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9c5f2496-fb3e-364a-b72f-7d436fdefb89\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-20T07:43:14.2575468Z\"\n }" + string: "{\n \"name\": \"f560b5a6-c59c-f743-8975-602bc00610dd\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:50:18.7281504Z\"\n }" headers: cache-control: - no-cache @@ -829,7 +832,7 @@ interactions: content-type: - application/json date: - - Mon, 20 Mar 2023 07:43:44 GMT + - Thu, 15 Jun 2023 19:50:48 GMT expires: - '-1' pragma: @@ -861,14 +864,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-vm-size --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/96245f9c-3efb-4a36-b72f-7d436fdefb89?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6b560f5-9cc5-43f7-8975-602bc00610dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9c5f2496-fb3e-364a-b72f-7d436fdefb89\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-20T07:43:14.2575468Z\"\n }" + string: "{\n \"name\": \"f560b5a6-c59c-f743-8975-602bc00610dd\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:50:18.7281504Z\"\n }" headers: cache-control: - no-cache @@ -877,7 +880,7 @@ interactions: content-type: - application/json date: - - Mon, 20 Mar 2023 07:44:13 GMT + - Thu, 15 Jun 2023 19:51:19 GMT expires: - '-1' pragma: @@ -909,14 +912,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-vm-size --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/96245f9c-3efb-4a36-b72f-7d436fdefb89?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6b560f5-9cc5-43f7-8975-602bc00610dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9c5f2496-fb3e-364a-b72f-7d436fdefb89\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-20T07:43:14.2575468Z\"\n }" + string: "{\n \"name\": \"f560b5a6-c59c-f743-8975-602bc00610dd\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:50:18.7281504Z\"\n }" headers: cache-control: - no-cache @@ -925,7 +928,7 @@ interactions: content-type: - application/json date: - - Mon, 20 Mar 2023 07:44:44 GMT + - Thu, 15 Jun 2023 19:51:49 GMT expires: - '-1' pragma: @@ -957,14 +960,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-vm-size --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/96245f9c-3efb-4a36-b72f-7d436fdefb89?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6b560f5-9cc5-43f7-8975-602bc00610dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9c5f2496-fb3e-364a-b72f-7d436fdefb89\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-20T07:43:14.2575468Z\"\n }" + string: "{\n \"name\": \"f560b5a6-c59c-f743-8975-602bc00610dd\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:50:18.7281504Z\"\n }" headers: cache-control: - no-cache @@ -973,7 +976,7 @@ interactions: content-type: - application/json date: - - Mon, 20 Mar 2023 07:45:14 GMT + - Thu, 15 Jun 2023 19:52:19 GMT expires: - '-1' pragma: @@ -1005,14 +1008,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-vm-size --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/96245f9c-3efb-4a36-b72f-7d436fdefb89?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6b560f5-9cc5-43f7-8975-602bc00610dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9c5f2496-fb3e-364a-b72f-7d436fdefb89\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-20T07:43:14.2575468Z\"\n }" + string: "{\n \"name\": \"f560b5a6-c59c-f743-8975-602bc00610dd\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:50:18.7281504Z\"\n }" headers: cache-control: - no-cache @@ -1021,7 +1024,7 @@ interactions: content-type: - application/json date: - - Mon, 20 Mar 2023 07:45:44 GMT + - Thu, 15 Jun 2023 19:52:49 GMT expires: - '-1' pragma: @@ -1053,14 +1056,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-vm-size --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/96245f9c-3efb-4a36-b72f-7d436fdefb89?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6b560f5-9cc5-43f7-8975-602bc00610dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9c5f2496-fb3e-364a-b72f-7d436fdefb89\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-20T07:43:14.2575468Z\"\n }" + string: "{\n \"name\": \"f560b5a6-c59c-f743-8975-602bc00610dd\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:50:18.7281504Z\"\n }" headers: cache-control: - no-cache @@ -1069,7 +1072,7 @@ interactions: content-type: - application/json date: - - Mon, 20 Mar 2023 07:46:14 GMT + - Thu, 15 Jun 2023 19:53:20 GMT expires: - '-1' pragma: @@ -1101,24 +1104,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-vm-size --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/96245f9c-3efb-4a36-b72f-7d436fdefb89?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a6b560f5-9cc5-43f7-8975-602bc00610dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9c5f2496-fb3e-364a-b72f-7d436fdefb89\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-20T07:43:14.2575468Z\",\n \"endTime\": - \"2023-03-20T07:46:29.481913Z\"\n }" + string: "{\n \"name\": \"f560b5a6-c59c-f743-8975-602bc00610dd\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T19:50:18.7281504Z\",\n \"\ + endTime\": \"2023-06-15T19:53:31.9490203Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Mon, 20 Mar 2023 07:46:43 GMT + - Thu, 15 Jun 2023 19:53:49 GMT expires: - '-1' pragma: @@ -1150,33 +1153,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-vm-size --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n - \ \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\"\ + ,\n \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '977' + - '978' content-type: - application/json date: - - Mon, 20 Mar 2023 07:46:44 GMT + - Thu, 15 Jun 2023 19:53:50 GMT expires: - '-1' pragma: @@ -1208,46 +1212,47 @@ interactions: ParameterSetName: - --no-wait --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n - \ \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\"\ + ,\n \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '2078' + - '2080' content-type: - application/json date: - - Mon, 20 Mar 2023 07:46:45 GMT + - Thu, 15 Jun 2023 19:53:51 GMT expires: - '-1' pragma: @@ -1279,33 +1284,34 @@ interactions: ParameterSetName: - --no-wait --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n - \ \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\"\ + ,\n \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '977' + - '978' content-type: - application/json date: - - Mon, 20 Mar 2023 07:46:45 GMT + - Thu, 15 Jun 2023 19:53:52 GMT expires: - '-1' pragma: @@ -1327,7 +1333,7 @@ interactions: body: '{"properties": {"count": 2, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "scaleDownMode": "Delete", - "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.24.9", + "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Stopped"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' @@ -1347,35 +1353,36 @@ interactions: ParameterSetName: - --no-wait --resource-group --cluster-name --nodepool-name --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n - \ \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 0,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Stopping\",\n \"powerState\": {\n \"code\": \"Stopped\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\"\ + ,\n \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 0,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Stopping\",\n \"powerState\": {\n \"code\"\ + : \"Stopped\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f538075a-3288-48ac-9709-6fddd9b1cbea?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/32566619-401a-4fa4-965a-eaf6542e20fa?api-version=2016-03-30 cache-control: - no-cache content-length: - - '976' + - '977' content-type: - application/json date: - - Mon, 20 Mar 2023 07:46:48 GMT + - Thu, 15 Jun 2023 19:53:55 GMT expires: - '-1' pragma: @@ -1409,46 +1416,47 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n - \ \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Stopping\",\n \"powerState\": {\n \"code\": - \"Stopped\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\"\ + ,\n \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Stopping\",\n \"powerState\": {\n \ + \ \"code\": \"Stopped\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '2077' + - '2079' content-type: - application/json date: - - Mon, 20 Mar 2023 07:46:48 GMT + - Thu, 15 Jun 2023 19:53:57 GMT expires: - '-1' pragma: @@ -1480,33 +1488,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n - \ \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Stopping\",\n \"powerState\": {\n \"code\": \"Stopped\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\"\ + ,\n \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Stopping\",\n \"powerState\": {\n \"code\"\ + : \"Stopped\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '976' + - '977' content-type: - application/json date: - - Mon, 20 Mar 2023 07:46:49 GMT + - Thu, 15 Jun 2023 19:53:58 GMT expires: - '-1' pragma: @@ -1540,39 +1549,40 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclusters/cliakstest000002/agentPools/c000003/abort?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n - \ \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 0,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Stopping\",\n \"powerState\": {\n \"code\": \"Stopped\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\"\ + ,\n \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 0,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Stopping\",\n \"powerState\": {\n \"code\"\ + : \"Stopped\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3cda72a2-a925-43e6-8ab8-ee1c10d0f730?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b6ef49e6-7281-4ac4-bab5-980e11411b93?api-version=2016-03-30 cache-control: - no-cache content-length: - - '976' + - '977' content-type: - application/json date: - - Mon, 20 Mar 2023 07:46:49 GMT + - Thu, 15 Jun 2023 19:53:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/3cda72a2-a925-43e6-8ab8-ee1c10d0f730?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/b6ef49e6-7281-4ac4-bab5-980e11411b93?api-version=2016-03-30 pragma: - no-cache server: @@ -1600,15 +1610,63 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b6ef49e6-7281-4ac4-bab5-980e11411b93?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e649efb6-8172-c44a-bab5-980e11411b93\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T19:53:59.2601813Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 19:53:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool operation-abort + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --nodepool-name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3cda72a2-a925-43e6-8ab8-ee1c10d0f730?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b6ef49e6-7281-4ac4-bab5-980e11411b93?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a272da3c-25a9-e643-8ab8-ee1c10d0f730\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-20T07:46:50.3358811Z\",\n \"endTime\": - \"2023-03-20T07:46:58.3537475Z\"\n }" + string: "{\n \"name\": \"e649efb6-8172-c44a-bab5-980e11411b93\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T19:53:59.2601813Z\",\n \"\ + endTime\": \"2023-06-15T19:54:07.5060172Z\"\n }" headers: cache-control: - no-cache @@ -1617,7 +1675,7 @@ interactions: content-type: - application/json date: - - Mon, 20 Mar 2023 07:47:19 GMT + - Thu, 15 Jun 2023 19:54:28 GMT expires: - '-1' pragma: @@ -1649,10 +1707,10 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/3cda72a2-a925-43e6-8ab8-ee1c10d0f730?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/b6ef49e6-7281-4ac4-bab5-980e11411b93?api-version=2016-03-30 response: body: string: '' @@ -1662,11 +1720,11 @@ interactions: content-type: - application/json date: - - Mon, 20 Mar 2023 07:47:19 GMT + - Thu, 15 Jun 2023 19:54:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/3cda72a2-a925-43e6-8ab8-ee1c10d0f730?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/b6ef49e6-7281-4ac4-bab5-980e11411b93?api-version=2016-03-30 pragma: - no-cache server: @@ -1692,33 +1750,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n - \ \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Canceled\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\"\ + ,\n \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Canceled\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '976' + - '977' content-type: - application/json date: - - Mon, 20 Mar 2023 07:47:31 GMT + - Thu, 15 Jun 2023 19:54:41 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_add_with_ossku.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_add_with_ossku.yaml index 3c34b8f2d94..03f7ff6dcec 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_add_with_ossku.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_add_with_ossku.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:08:05 GMT + - Thu, 15 Jun 2023 23:02:35 GMT expires: - '-1' pragma: @@ -58,21 +58,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T11:08:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_aks_nodepool_add_with_ossku","date":"2023-06-15T23:02:34Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache + connection: + - close content-length: - - '305' + - '361' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:08:05 GMT + - Thu, 15 Jun 2023 23:02:36 GMT expires: - '-1' pragma: @@ -87,20 +89,19 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest3ajtxaypb-79a739", + body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestafsznnmbk-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "c000003"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -111,67 +112,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1457' + - '1748' Content-Type: - application/json ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest3ajtxaypb-79a739\",\n \"fqdn\": \"cliakstest-clitest3ajtxaypb-79a739-xp5cojsa.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest3ajtxaypb-79a739-xp5cojsa.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestafsznnmbk-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestafsznnmbk-8ecadf-ejbxf8ls.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestafsznnmbk-8ecadf-ejbxf8ls.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"\ + count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/215a5cdb-7bc0-40f1-8304-4888304f0521?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ec1c735-0c73-442c-a0fe-0d010c64d41d?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3266' + - '3590' content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:09 GMT + - Thu, 15 Jun 2023 23:02:42 GMT expires: - '-1' pragma: @@ -183,7 +186,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 201 message: Created @@ -201,14 +204,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/215a5cdb-7bc0-40f1-8304-4888304f0521?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ec1c735-0c73-442c-a0fe-0d010c64d41d?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"db5c5a21-c07b-f140-8304-4888304f0521\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:08:10.1015987Z\"\n }" + string: "{\n \"name\": \"35c7c12e-730c-2c44-a0fe-0d010c64d41d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T23:02:41.8616356Z\"\n }" headers: cache-control: - no-cache @@ -217,7 +220,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:08:39 GMT + - Thu, 15 Jun 2023 23:02:42 GMT expires: - '-1' pragma: @@ -249,14 +252,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/215a5cdb-7bc0-40f1-8304-4888304f0521?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ec1c735-0c73-442c-a0fe-0d010c64d41d?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"db5c5a21-c07b-f140-8304-4888304f0521\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:08:10.1015987Z\"\n }" + string: "{\n \"name\": \"35c7c12e-730c-2c44-a0fe-0d010c64d41d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T23:02:41.8616356Z\"\n }" headers: cache-control: - no-cache @@ -265,7 +268,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:09:09 GMT + - Thu, 15 Jun 2023 23:03:12 GMT expires: - '-1' pragma: @@ -297,14 +300,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/215a5cdb-7bc0-40f1-8304-4888304f0521?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ec1c735-0c73-442c-a0fe-0d010c64d41d?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"db5c5a21-c07b-f140-8304-4888304f0521\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:08:10.1015987Z\"\n }" + string: "{\n \"name\": \"35c7c12e-730c-2c44-a0fe-0d010c64d41d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T23:02:41.8616356Z\"\n }" headers: cache-control: - no-cache @@ -313,7 +316,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:09:40 GMT + - Thu, 15 Jun 2023 23:03:42 GMT expires: - '-1' pragma: @@ -345,14 +348,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/215a5cdb-7bc0-40f1-8304-4888304f0521?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ec1c735-0c73-442c-a0fe-0d010c64d41d?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"db5c5a21-c07b-f140-8304-4888304f0521\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:08:10.1015987Z\"\n }" + string: "{\n \"name\": \"35c7c12e-730c-2c44-a0fe-0d010c64d41d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T23:02:41.8616356Z\"\n }" headers: cache-control: - no-cache @@ -361,7 +364,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:10:09 GMT + - Thu, 15 Jun 2023 23:04:12 GMT expires: - '-1' pragma: @@ -393,14 +396,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/215a5cdb-7bc0-40f1-8304-4888304f0521?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ec1c735-0c73-442c-a0fe-0d010c64d41d?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"db5c5a21-c07b-f140-8304-4888304f0521\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:08:10.1015987Z\"\n }" + string: "{\n \"name\": \"35c7c12e-730c-2c44-a0fe-0d010c64d41d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T23:02:41.8616356Z\"\n }" headers: cache-control: - no-cache @@ -409,7 +412,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:10:39 GMT + - Thu, 15 Jun 2023 23:04:42 GMT expires: - '-1' pragma: @@ -441,14 +444,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/215a5cdb-7bc0-40f1-8304-4888304f0521?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ec1c735-0c73-442c-a0fe-0d010c64d41d?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"db5c5a21-c07b-f140-8304-4888304f0521\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:08:10.1015987Z\"\n }" + string: "{\n \"name\": \"35c7c12e-730c-2c44-a0fe-0d010c64d41d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T23:02:41.8616356Z\"\n }" headers: cache-control: - no-cache @@ -457,7 +460,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:11:09 GMT + - Thu, 15 Jun 2023 23:05:13 GMT expires: - '-1' pragma: @@ -489,24 +492,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/215a5cdb-7bc0-40f1-8304-4888304f0521?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ec1c735-0c73-442c-a0fe-0d010c64d41d?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"db5c5a21-c07b-f140-8304-4888304f0521\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:08:10.1015987Z\",\n \"endTime\": - \"2023-03-15T11:11:30.5667111Z\"\n }" + string: "{\n \"name\": \"35c7c12e-730c-2c44-a0fe-0d010c64d41d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T23:02:41.8616356Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:11:40 GMT + - Thu, 15 Jun 2023 23:05:43 GMT expires: - '-1' pragma: @@ -538,123 +540,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest3ajtxaypb-79a739\",\n \"fqdn\": \"cliakstest-clitest3ajtxaypb-79a739-xp5cojsa.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest3ajtxaypb-79a739-xp5cojsa.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/7014fe06-d8f9-493e-aa92-910d3a0c60c1\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '3919' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:11:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --os-sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ec1c735-0c73-442c-a0fe-0d010c64d41d?api-version=2017-08-31 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n - \ \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"name\": \"35c7c12e-730c-2c44-a0fe-0d010c64d41d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T23:02:41.8616356Z\"\n }" headers: cache-control: - no-cache content-length: - - '1032' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:11:41 GMT + - Thu, 15 Jun 2023 23:06:13 GMT expires: - '-1' pragma: @@ -672,73 +574,6 @@ interactions: status: code: 200 message: OK -- request: - body: '{"properties": {"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": - 0, "osType": "Linux", "osSKU": "CBLMariner", "enableAutoScaling": false, "scaleDownMode": - "Delete", "type": "VirtualMachineScaleSets", "mode": "User", "upgradeSettings": - {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": - "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": - false, "enableUltraSSD": false, "enableFIPS": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - Content-Length: - - '462' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --cluster-name --name --os-sku - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n - \ \"name\": \"c000004\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"CBLMariner\",\n \"nodeImageVersion\": - \"AKSCBLMariner-V1-2023.02.15\",\n \"upgradeSettings\": {},\n \"enableFIPS\": - false\n }\n }" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/910f26e5-1c53-42db-8bcd-dc113e65e338?api-version=2016-03-30 - cache-control: - - no-cache - content-length: - - '968' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:11:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1193' - status: - code: 201 - message: Created - request: body: null headers: @@ -747,29 +582,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks nodepool add + - aks create Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --os-sku + - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/910f26e5-1c53-42db-8bcd-dc113e65e338?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/2ec1c735-0c73-442c-a0fe-0d010c64d41d?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"e5260f91-531c-db42-8bcd-dc113e65e338\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:11:44.9303134Z\"\n }" + string: "{\n \"name\": \"35c7c12e-730c-2c44-a0fe-0d010c64d41d\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T23:02:41.8616356Z\",\n \"\ + endTime\": \"2023-06-15T23:06:37.3531044Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 11:12:14 GMT + - Thu, 15 Jun 2023 23:06:43 GMT expires: - '-1' pragma: @@ -795,29 +631,72 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks nodepool add + - aks create Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --os-sku + - --resource-group --name --nodepool-name -c --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/910f26e5-1c53-42db-8bcd-dc113e65e338?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"e5260f91-531c-db42-8bcd-dc113e65e338\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:11:44.9303134Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestafsznnmbk-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestafsznnmbk-8ecadf-ejbxf8ls.hcp.eastus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestafsznnmbk-8ecadf-ejbxf8ls.portal.hcp.eastus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"\ + count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_eastus\",\n \ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.Network/publicIPAddresses/f6f47d97-b7e5-48da-a5f7-f1635e478bb3\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_eastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '4241' content-type: - application/json date: - - Wed, 15 Mar 2023 11:12:44 GMT + - Thu, 15 Jun 2023 23:06:43 GMT expires: - '-1' pragma: @@ -839,7 +718,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -849,23 +728,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/910f26e5-1c53-42db-8bcd-dc113e65e338?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"e5260f91-531c-db42-8bcd-dc113e65e338\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:11:44.9303134Z\"\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\"\ + ,\n \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '126' + - '1033' content-type: - application/json date: - - Wed, 15 Mar 2023 11:13:14 GMT + - Thu, 15 Jun 2023 23:06:45 GMT expires: - '-1' pragma: @@ -884,36 +774,58 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": + 0, "osType": "Linux", "osSKU": "CBLMariner", "enableAutoScaling": false, "scaleDownMode": + "Delete", "type": "VirtualMachineScaleSets", "mode": "User", "upgradeSettings": + {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": + "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - aks nodepool add Connection: - keep-alive + Content-Length: + - '462' + Content-Type: + - application/json ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/910f26e5-1c53-42db-8bcd-dc113e65e338?api-version=2016-03-30 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"e5260f91-531c-db42-8bcd-dc113e65e338\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:11:44.9303134Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\ + ,\n \"name\": \"c000004\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"CBLMariner\",\n \"nodeImageVersion\"\ + : \"AKSCBLMariner-V1-202306.01.0\",\n \"upgradeSettings\": {},\n \"enableFIPS\"\ + : false\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/65923729-0c5d-4d2c-b324-d109ac12f53c?api-version=2017-08-31 cache-control: - no-cache content-length: - - '126' + - '969' content-type: - application/json date: - - Wed, 15 Mar 2023 11:13:45 GMT + - Thu, 15 Jun 2023 23:06:49 GMT expires: - '-1' pragma: @@ -922,15 +834,13 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -945,14 +855,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/910f26e5-1c53-42db-8bcd-dc113e65e338?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/65923729-0c5d-4d2c-b324-d109ac12f53c?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"e5260f91-531c-db42-8bcd-dc113e65e338\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:11:44.9303134Z\"\n }" + string: "{\n \"name\": \"29379265-5d0c-2c4d-b324-d109ac12f53c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T23:06:50.3796384Z\"\n }" headers: cache-control: - no-cache @@ -961,7 +871,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:14:14 GMT + - Thu, 15 Jun 2023 23:06:49 GMT expires: - '-1' pragma: @@ -993,14 +903,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/910f26e5-1c53-42db-8bcd-dc113e65e338?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/65923729-0c5d-4d2c-b324-d109ac12f53c?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"e5260f91-531c-db42-8bcd-dc113e65e338\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:11:44.9303134Z\"\n }" + string: "{\n \"name\": \"29379265-5d0c-2c4d-b324-d109ac12f53c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T23:06:50.3796384Z\"\n }" headers: cache-control: - no-cache @@ -1009,7 +919,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:14:44 GMT + - Thu, 15 Jun 2023 23:07:20 GMT expires: - '-1' pragma: @@ -1041,14 +951,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/910f26e5-1c53-42db-8bcd-dc113e65e338?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/65923729-0c5d-4d2c-b324-d109ac12f53c?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"e5260f91-531c-db42-8bcd-dc113e65e338\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:11:44.9303134Z\"\n }" + string: "{\n \"name\": \"29379265-5d0c-2c4d-b324-d109ac12f53c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T23:06:50.3796384Z\"\n }" headers: cache-control: - no-cache @@ -1057,7 +967,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:15:14 GMT + - Thu, 15 Jun 2023 23:07:50 GMT expires: - '-1' pragma: @@ -1089,14 +999,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/910f26e5-1c53-42db-8bcd-dc113e65e338?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/65923729-0c5d-4d2c-b324-d109ac12f53c?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"e5260f91-531c-db42-8bcd-dc113e65e338\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:11:44.9303134Z\"\n }" + string: "{\n \"name\": \"29379265-5d0c-2c4d-b324-d109ac12f53c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T23:06:50.3796384Z\"\n }" headers: cache-control: - no-cache @@ -1105,7 +1015,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:15:45 GMT + - Thu, 15 Jun 2023 23:08:20 GMT expires: - '-1' pragma: @@ -1137,15 +1047,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/910f26e5-1c53-42db-8bcd-dc113e65e338?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/65923729-0c5d-4d2c-b324-d109ac12f53c?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"e5260f91-531c-db42-8bcd-dc113e65e338\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:11:44.9303134Z\",\n \"endTime\": - \"2023-03-15T11:15:48.4380328Z\"\n }" + string: "{\n \"name\": \"29379265-5d0c-2c4d-b324-d109ac12f53c\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T23:06:50.3796384Z\",\n \"\ + endTime\": \"2023-06-15T23:10:03.2392146Z\"\n }" headers: cache-control: - no-cache @@ -1154,7 +1064,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:16:15 GMT + - Thu, 15 Jun 2023 23:11:03 GMT expires: - '-1' pragma: @@ -1186,33 +1096,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\",\n - \ \"name\": \"c000004\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"CBLMariner\",\n \"nodeImageVersion\": - \"AKSCBLMariner-V1-2023.02.15\",\n \"upgradeSettings\": {},\n \"enableFIPS\": - false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\ + ,\n \"name\": \"c000004\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"CBLMariner\",\n \"nodeImageVersion\"\ + : \"AKSCBLMariner-V1-202306.01.0\",\n \"upgradeSettings\": {},\n \"enableFIPS\"\ + : false\n }\n }" headers: cache-control: - no-cache content-length: - - '969' + - '970' content-type: - application/json date: - - Wed, 15 Mar 2023 11:16:15 GMT + - Thu, 15 Jun 2023 23:11:04 GMT expires: - '-1' pragma: @@ -1246,8 +1157,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -1255,17 +1166,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ebb88c0e-6ec5-4a02-a368-1ff2050679f3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/55ed9c17-0acf-4328-a644-b48faaaff71b?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:16:16 GMT + - Thu, 15 Jun 2023 23:11:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/ebb88c0e-6ec5-4a02-a368-1ff2050679f3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/55ed9c17-0acf-4328-a644-b48faaaff71b?api-version=2017-08-31 pragma: - no-cache server: @@ -1275,7 +1186,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_add_with_ossku_windows2022.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_add_with_ossku_windows2022.yaml old mode 100755 new mode 100644 index 4c5266cc1d7..6320d8871ce --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_add_with_ossku_windows2022.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_add_with_ossku_windows2022.yaml @@ -13,54 +13,36 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators?api-version=2019-04-01&resource-type=managedClusters + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators\",\n - \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\",\n - \ \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.23.12\",\n \"upgrades\": - [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.9\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\",\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.6\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.5\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\",\n \"default\": true,\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.4\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.26.0\",\n \"isPreview\": true\n - \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n }\n }" + string: "{\n \"values\": [\n {\n \"version\": \"1.26\",\n \"capabilities\"\ + : {\n \"supportPlan\": [\n \"KubernetesOfficial\"\n ]\n },\n\ + \ \"patchVersions\": {\n \"1.26.0\": {\n \"upgrades\": [\n \ + \ \"1.26.3\"\n ]\n },\n \"1.26.3\": {\n \"upgrades\"\ + : []\n }\n }\n },\n {\n \"version\": \"1.24\",\n \"capabilities\"\ + : {\n \"supportPlan\": [\n \"KubernetesOfficial\"\n ]\n },\n\ + \ \"patchVersions\": {\n \"1.24.10\": {\n \"upgrades\": [\n \ + \ \"1.25.6\",\n \"1.25.5\"\n ]\n },\n \"1.24.9\": {\n\ + \ \"upgrades\": [\n \"1.25.6\",\n \"1.24.10\",\n \"\ + 1.25.5\"\n ]\n }\n }\n },\n {\n \"version\": \"1.25\",\n\ + \ \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\"\ + \n ]\n },\n \"patchVersions\": {\n \"1.25.5\": {\n \"upgrades\"\ + : [\n \"1.25.6\",\n \"1.26.0\",\n \"1.26.3\"\n ]\n\ + \ },\n \"1.25.6\": {\n \"upgrades\": [\n \"1.26.0\",\n\ + \ \"1.26.3\"\n ]\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2410' + - '957' content-type: - application/json date: - - Wed, 15 Mar 2023 11:09:17 GMT + - Thu, 15 Jun 2023 23:11:10 GMT expires: - '-1' pragma: @@ -94,8 +76,8 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value --kubernetes-version User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -111,7 +93,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:09:16 GMT + - Thu, 15 Jun 2023 23:11:11 GMT expires: - '-1' pragma: @@ -127,19 +109,18 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "1.26.0", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": + {"kubernetesVersion": "1.26.3", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", - "orchestratorVersion": "1.26.0", "upgradeSettings": {}, "enableNodePublicIP": + "orchestratorVersion": "1.26.3", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser1", "adminPassword": "replace-Password1234$"}, "addonProfiles": {}, - "enableRBAC": true, "networkProfile": {"networkPlugin": "azure", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, - "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "adminPassword": + "replace-Password1234$"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "azure", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -150,7 +131,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1419' + - '1748' Content-Type: - application/json ParameterSetName: @@ -158,61 +139,63 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value --kubernetes-version User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.26.0\",\n \"currentKubernetesVersion\": \"1.26.0\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-zh1wxl1u.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-zh1wxl1u.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.26.0\",\n \"currentOrchestratorVersion\": - \"1.26.0\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n - \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.26.3\",\n \"currentKubernetesVersion\"\ + : \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-1v51btwp.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-1v51btwp.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.26.3\",\n \"currentOrchestratorVersion\": \"1.26.3\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n\ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \ + \ \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6b7c1b5c-be79-4405-af1f-e234ecfbeccd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91766903-a51f-473e-9a96-a6ab4b038342?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3221' + - '3582' content-type: - application/json date: - - Wed, 15 Mar 2023 11:09:19 GMT + - Thu, 15 Jun 2023 23:11:18 GMT expires: - '-1' pragma: @@ -244,273 +227,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value --kubernetes-version User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6b7c1b5c-be79-4405-af1f-e234ecfbeccd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91766903-a51f-473e-9a96-a6ab4b038342?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5c1b7c6b-79be-0544-af1f-e234ecfbeccd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:09:20.508255Z\"\n }" + string: "{\n \"name\": \"03697691-1fa5-3e47-9a96-a6ab4b038342\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T23:11:18.5230376Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:09:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username - --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin - --ssh-key-value --kubernetes-version - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6b7c1b5c-be79-4405-af1f-e234ecfbeccd?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"5c1b7c6b-79be-0544-af1f-e234ecfbeccd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:09:20.508255Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:10:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username - --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin - --ssh-key-value --kubernetes-version - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6b7c1b5c-be79-4405-af1f-e234ecfbeccd?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"5c1b7c6b-79be-0544-af1f-e234ecfbeccd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:09:20.508255Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:10:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username - --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin - --ssh-key-value --kubernetes-version - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6b7c1b5c-be79-4405-af1f-e234ecfbeccd?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"5c1b7c6b-79be-0544-af1f-e234ecfbeccd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:09:20.508255Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:11:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username - --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin - --ssh-key-value --kubernetes-version - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6b7c1b5c-be79-4405-af1f-e234ecfbeccd?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"5c1b7c6b-79be-0544-af1f-e234ecfbeccd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:09:20.508255Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:11:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username - --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin - --ssh-key-value --kubernetes-version - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6b7c1b5c-be79-4405-af1f-e234ecfbeccd?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"5c1b7c6b-79be-0544-af1f-e234ecfbeccd\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:09:20.508255Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:12:21 GMT + - Thu, 15 Jun 2023 23:11:18 GMT expires: - '-1' pragma: @@ -544,24 +277,24 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value --kubernetes-version User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6b7c1b5c-be79-4405-af1f-e234ecfbeccd?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/91766903-a51f-473e-9a96-a6ab4b038342?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5c1b7c6b-79be-0544-af1f-e234ecfbeccd\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:09:20.508255Z\",\n \"endTime\": - \"2023-03-15T11:12:33.6382819Z\"\n }" + string: "{\n \"name\": \"03697691-1fa5-3e47-9a96-a6ab4b038342\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T23:11:18.5230376Z\",\n \"\ + endTime\": \"2023-06-15T23:14:14.4882972Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 11:12:50 GMT + - Thu, 15 Jun 2023 23:25:45 GMT expires: - '-1' pragma: @@ -595,64 +328,65 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value --kubernetes-version User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.26.0\",\n \"currentKubernetesVersion\": \"1.26.0\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-zh1wxl1u.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-zh1wxl1u.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.26.0\",\n \"currentOrchestratorVersion\": - \"1.26.0\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n - \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/34688df3-6bc8-4321-8c8b-fee43fcdede2\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.26.3\",\n \"currentKubernetesVersion\"\ + : \"1.26.3\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-1v51btwp.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-1v51btwp.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.26.3\",\n \"currentOrchestratorVersion\": \"1.26.3\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ + effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/aafeb4cd-3472-41a3-939b-99aa492ce4e0\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \ + \ \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3874' + - '4235' content-type: - application/json date: - - Wed, 15 Mar 2023 11:12:51 GMT + - Thu, 15 Jun 2023 23:25:47 GMT expires: - '-1' pragma: @@ -684,34 +418,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --os-type --os-sku --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.26.0\",\n \"currentOrchestratorVersion\": \"1.26.0\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.26.3\",\n \"currentOrchestratorVersion\": \"1.26.3\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '1035' + - '1036' content-type: - application/json date: - - Wed, 15 Mar 2023 11:12:52 GMT + - Thu, 15 Jun 2023 23:25:48 GMT expires: - '-1' pragma: @@ -754,35 +488,36 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --os-type --os-sku --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n - \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.26.0\",\n \"currentOrchestratorVersion\": \"1.26.0\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"osSKU\": \"Windows2022\",\n \"nodeImageVersion\": - \"AKSWindows-2022-containerd-20348.1547.230223\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ + ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n\ + \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"\ + provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"\ + Running\"\n },\n \"orchestratorVersion\": \"1.26.3\",\n \"currentOrchestratorVersion\"\ + : \"1.26.3\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Windows\",\n \"osSKU\": \"Windows2022\",\n \"nodeImageVersion\"\ + : \"AKSWindows-2022-containerd-gen2-20348.1726.230510\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a74eb756-6bc3-443b-9a8c-fd975582ce4c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9059897-ab84-4d42-ad57-a189de3c6f21?api-version=2016-03-30 cache-control: - no-cache content-length: - - '983' + - '988' content-type: - application/json date: - - Wed, 15 Mar 2023 11:12:55 GMT + - Thu, 15 Jun 2023 23:25:55 GMT expires: - '-1' pragma: @@ -794,7 +529,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 201 message: Created @@ -812,23 +547,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --os-type --os-sku --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a74eb756-6bc3-443b-9a8c-fd975582ce4c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9059897-ab84-4d42-ad57-a189de3c6f21?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"56b74ea7-c36b-3b44-9a8c-fd975582ce4c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:55.6963619Z\"\n }" + string: "{\n \"name\": \"979805e9-84ab-424d-ad57-a189de3c6f21\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T23:25:55.384468Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:13:24 GMT + - Thu, 15 Jun 2023 23:25:55 GMT expires: - '-1' pragma: @@ -860,23 +595,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --os-type --os-sku --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a74eb756-6bc3-443b-9a8c-fd975582ce4c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9059897-ab84-4d42-ad57-a189de3c6f21?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"56b74ea7-c36b-3b44-9a8c-fd975582ce4c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:55.6963619Z\"\n }" + string: "{\n \"name\": \"979805e9-84ab-424d-ad57-a189de3c6f21\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T23:25:55.384468Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:13:55 GMT + - Thu, 15 Jun 2023 23:26:25 GMT expires: - '-1' pragma: @@ -908,456 +643,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --os-type --os-sku --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a74eb756-6bc3-443b-9a8c-fd975582ce4c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9059897-ab84-4d42-ad57-a189de3c6f21?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"56b74ea7-c36b-3b44-9a8c-fd975582ce4c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:55.6963619Z\"\n }" + string: "{\n \"name\": \"979805e9-84ab-424d-ad57-a189de3c6f21\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T23:25:55.384468Z\",\n \"\ + endTime\": \"2023-06-15T23:30:35.8677533Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:14:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --os-type --os-sku --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a74eb756-6bc3-443b-9a8c-fd975582ce4c?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"56b74ea7-c36b-3b44-9a8c-fd975582ce4c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:55.6963619Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:14:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --os-type --os-sku --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a74eb756-6bc3-443b-9a8c-fd975582ce4c?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"56b74ea7-c36b-3b44-9a8c-fd975582ce4c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:55.6963619Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:15:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --os-type --os-sku --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a74eb756-6bc3-443b-9a8c-fd975582ce4c?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"56b74ea7-c36b-3b44-9a8c-fd975582ce4c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:55.6963619Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:15:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --os-type --os-sku --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a74eb756-6bc3-443b-9a8c-fd975582ce4c?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"56b74ea7-c36b-3b44-9a8c-fd975582ce4c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:55.6963619Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:16:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --os-type --os-sku --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a74eb756-6bc3-443b-9a8c-fd975582ce4c?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"56b74ea7-c36b-3b44-9a8c-fd975582ce4c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:55.6963619Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:16:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --os-type --os-sku --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a74eb756-6bc3-443b-9a8c-fd975582ce4c?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"56b74ea7-c36b-3b44-9a8c-fd975582ce4c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:55.6963619Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:17:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --os-type --os-sku --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a74eb756-6bc3-443b-9a8c-fd975582ce4c?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"56b74ea7-c36b-3b44-9a8c-fd975582ce4c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:55.6963619Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:17:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --os-type --os-sku --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a74eb756-6bc3-443b-9a8c-fd975582ce4c?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"56b74ea7-c36b-3b44-9a8c-fd975582ce4c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:12:55.6963619Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:18:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --os-type --os-sku --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a74eb756-6bc3-443b-9a8c-fd975582ce4c?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"56b74ea7-c36b-3b44-9a8c-fd975582ce4c\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:12:55.6963619Z\",\n \"endTime\": - \"2023-03-15T11:18:33.7445795Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '170' + - '169' content-type: - application/json date: - - Wed, 15 Mar 2023 11:18:56 GMT + - Thu, 15 Jun 2023 23:53:57 GMT expires: - '-1' pragma: @@ -1389,33 +692,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --os-type --os-sku --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n - \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.26.0\",\n \"currentOrchestratorVersion\": \"1.26.0\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"osSKU\": \"Windows2022\",\n \"nodeImageVersion\": - \"AKSWindows-2022-containerd-20348.1547.230223\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ + ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n\ + \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"\ + provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"\ + Running\"\n },\n \"orchestratorVersion\": \"1.26.3\",\n \"currentOrchestratorVersion\"\ + : \"1.26.3\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Windows\",\n \"osSKU\": \"Windows2022\",\n \"nodeImageVersion\"\ + : \"AKSWindows-2022-containerd-gen2-20348.1726.230510\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '984' + - '989' content-type: - application/json date: - - Wed, 15 Mar 2023 11:18:56 GMT + - Thu, 15 Jun 2023 23:53:58 GMT expires: - '-1' pragma: @@ -1449,8 +753,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -1458,17 +762,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b98446ca-6a67-45b4-afc5-1ce8fc08a0fc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3c375579-5d7e-4f5d-8e83-2b421b8ace09?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:18:57 GMT + - Thu, 15 Jun 2023 23:54:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/b98446ca-6a67-45b4-afc5-1ce8fc08a0fc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/3c375579-5d7e-4f5d-8e83-2b421b8ace09?api-version=2016-03-30 pragma: - no-cache server: @@ -1478,7 +782,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14989' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_autoscaler_then_update.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_autoscaler_then_update.yaml old mode 100755 new mode 100644 index 0957b3e3bd3..435c88e2f5e --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_autoscaler_then_update.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_autoscaler_then_update.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:11:18 GMT + - Thu, 15 Jun 2023 23:54:06 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T11:11:17Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_nodepool_autoscaler_then_update","date":"2023-06-15T23:54:04Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '370' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:11:18 GMT + - Thu, 15 Jun 2023 23:54:06 GMT expires: - '-1' pragma: @@ -88,19 +88,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestg2ef6oaba-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesttlmxgr4tc-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -111,67 +110,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1459' + - '1751' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestg2ef6oaba-79a739\",\n \"fqdn\": \"cliakstest-clitestg2ef6oaba-79a739-itgwk3f3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestg2ef6oaba-79a739-itgwk3f3.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitesttlmxgr4tc-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesttlmxgr4tc-8ecadf-7xxzxkn9.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesttlmxgr4tc-8ecadf-7xxzxkn9.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80a6df2c-2158-403f-b2b7-51f98c7d82c0?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/67a9a471-6dd6-48ea-844f-e47b7d33f2c4?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3268' + - '3596' content-type: - application/json date: - - Wed, 15 Mar 2023 11:11:21 GMT + - Thu, 15 Jun 2023 23:54:14 GMT expires: - '-1' pragma: @@ -183,7 +184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1183' + - '1199' status: code: 201 message: Created @@ -201,14 +202,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80a6df2c-2158-403f-b2b7-51f98c7d82c0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/67a9a471-6dd6-48ea-844f-e47b7d33f2c4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2cdfa680-5821-3f40-b2b7-51f98c7d82c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:11:21.7114819Z\"\n }" + string: "{\n \"name\": \"71a4a967-d66d-ea48-844f-e47b7d33f2c4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T23:54:13.9979076Z\"\n }" headers: cache-control: - no-cache @@ -217,7 +218,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:11:51 GMT + - Thu, 15 Jun 2023 23:54:14 GMT expires: - '-1' pragma: @@ -249,14 +250,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80a6df2c-2158-403f-b2b7-51f98c7d82c0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/67a9a471-6dd6-48ea-844f-e47b7d33f2c4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2cdfa680-5821-3f40-b2b7-51f98c7d82c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:11:21.7114819Z\"\n }" + string: "{\n \"name\": \"71a4a967-d66d-ea48-844f-e47b7d33f2c4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T23:54:13.9979076Z\"\n }" headers: cache-control: - no-cache @@ -265,7 +266,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:12:21 GMT + - Thu, 15 Jun 2023 23:55:52 GMT expires: - '-1' pragma: @@ -297,14 +298,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80a6df2c-2158-403f-b2b7-51f98c7d82c0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/67a9a471-6dd6-48ea-844f-e47b7d33f2c4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2cdfa680-5821-3f40-b2b7-51f98c7d82c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:11:21.7114819Z\"\n }" + string: "{\n \"name\": \"71a4a967-d66d-ea48-844f-e47b7d33f2c4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T23:54:13.9979076Z\"\n }" headers: cache-control: - no-cache @@ -313,7 +314,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:12:51 GMT + - Thu, 15 Jun 2023 23:56:22 GMT expires: - '-1' pragma: @@ -345,14 +346,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80a6df2c-2158-403f-b2b7-51f98c7d82c0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/67a9a471-6dd6-48ea-844f-e47b7d33f2c4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2cdfa680-5821-3f40-b2b7-51f98c7d82c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:11:21.7114819Z\"\n }" + string: "{\n \"name\": \"71a4a967-d66d-ea48-844f-e47b7d33f2c4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T23:54:13.9979076Z\"\n }" headers: cache-control: - no-cache @@ -361,7 +362,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:13:21 GMT + - Thu, 15 Jun 2023 23:56:53 GMT expires: - '-1' pragma: @@ -393,14 +394,14 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80a6df2c-2158-403f-b2b7-51f98c7d82c0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/67a9a471-6dd6-48ea-844f-e47b7d33f2c4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2cdfa680-5821-3f40-b2b7-51f98c7d82c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:11:21.7114819Z\"\n }" + string: "{\n \"name\": \"71a4a967-d66d-ea48-844f-e47b7d33f2c4\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T23:54:13.9979076Z\"\n }" headers: cache-control: - no-cache @@ -409,7 +410,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:13:51 GMT + - Thu, 15 Jun 2023 23:57:23 GMT expires: - '-1' pragma: @@ -441,23 +442,24 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80a6df2c-2158-403f-b2b7-51f98c7d82c0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/67a9a471-6dd6-48ea-844f-e47b7d33f2c4?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2cdfa680-5821-3f40-b2b7-51f98c7d82c0\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:11:21.7114819Z\"\n }" + string: "{\n \"name\": \"71a4a967-d66d-ea48-844f-e47b7d33f2c4\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T23:54:13.9979076Z\",\n \"\ + endTime\": \"2023-06-15T23:57:25.4924396Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 11:14:21 GMT + - Thu, 15 Jun 2023 23:57:53 GMT expires: - '-1' pragma: @@ -489,24 +491,66 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80a6df2c-2158-403f-b2b7-51f98c7d82c0?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"2cdfa680-5821-3f40-b2b7-51f98c7d82c0\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:11:21.7114819Z\",\n \"endTime\": - \"2023-03-15T11:14:22.3981249Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitesttlmxgr4tc-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesttlmxgr4tc-8ecadf-7xxzxkn9.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesttlmxgr4tc-8ecadf-7xxzxkn9.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4e449721-beef-4eda-b92c-a2b7b260b7d4\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '170' + - '4249' content-type: - application/json date: - - Wed, 15 Mar 2023 11:14:52 GMT + - Thu, 15 Jun 2023 23:57:54 GMT expires: - '-1' pragma: @@ -528,74 +572,44 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --ssh-key-value -c + - -g --cluster-name -n --mode --enable-cluster-autoscaler -c --min-count --max-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestg2ef6oaba-79a739\",\n \"fqdn\": \"cliakstest-clitestg2ef6oaba-79a739-itgwk3f3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestg2ef6oaba-79a739-itgwk3f3.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/67e8d71f-099a-46fb-a221-50a2acc2d2c0\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '1037' content-type: - application/json date: - - Wed, 15 Mar 2023 11:14:52 GMT + - Thu, 15 Jun 2023 23:57:56 GMT expires: - '-1' pragma: @@ -614,7 +628,12 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"count": 0, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": + 0, "osType": "Linux", "maxCount": 3, "minCount": 0, "enableAutoScaling": true, + "scaleDownMode": "Delete", "type": "VirtualMachineScaleSets", "mode": "User", + "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], + "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' headers: Accept: - application/json @@ -624,37 +643,43 @@ interactions: - aks nodepool add Connection: - keep-alive + Content-Length: + - '468' + Content-Type: + - application/json ParameterSetName: - -g --cluster-name -n --mode --enable-cluster-autoscaler -c --min-count --max-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\"\ + ,\n \"name\": \"clinp000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 0,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"maxCount\": 3,\n \"minCount\": 0,\n \"enableAutoScaling\": true,\n\ + \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7a7d159-f902-4644-9962-8cccb6e078c2?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1036' + - '1020' content-type: - application/json date: - - Wed, 15 Mar 2023 11:14:53 GMT + - Thu, 15 Jun 2023 23:58:00 GMT expires: - '-1' pragma: @@ -663,68 +688,44 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: '{"properties": {"count": 0, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": - 0, "osType": "Linux", "maxCount": 3, "minCount": 0, "enableAutoScaling": true, - "scaleDownMode": "Delete", "type": "VirtualMachineScaleSets", "mode": "User", - "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], - "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks nodepool add Connection: - keep-alive - Content-Length: - - '468' - Content-Type: - - application/json ParameterSetName: - -g --cluster-name -n --mode --enable-cluster-autoscaler -c --min-count --max-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7a7d159-f902-4644-9962-8cccb6e078c2?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n - \ \"name\": \"clinp000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 0,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"maxCount\": 3,\n \"minCount\": 0,\n \"enableAutoScaling\": true,\n - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Creating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"name\": \"59d1a7d7-02f9-4446-9962-8cccb6e078c2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T23:58:01.1703327Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d55895e-83c3-4e1e-86a2-9419c64b7c9d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1019' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:14:55 GMT + - Thu, 15 Jun 2023 23:58:00 GMT expires: - '-1' pragma: @@ -733,13 +734,15 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1190' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -754,14 +757,14 @@ interactions: ParameterSetName: - -g --cluster-name -n --mode --enable-cluster-autoscaler -c --min-count --max-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d55895e-83c3-4e1e-86a2-9419c64b7c9d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7a7d159-f902-4644-9962-8cccb6e078c2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5e89551d-c383-1e4e-86a2-9419c64b7c9d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:14:55.6190284Z\"\n }" + string: "{\n \"name\": \"59d1a7d7-02f9-4446-9962-8cccb6e078c2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T23:58:01.1703327Z\"\n }" headers: cache-control: - no-cache @@ -770,7 +773,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:15:25 GMT + - Thu, 15 Jun 2023 23:58:30 GMT expires: - '-1' pragma: @@ -802,14 +805,14 @@ interactions: ParameterSetName: - -g --cluster-name -n --mode --enable-cluster-autoscaler -c --min-count --max-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d55895e-83c3-4e1e-86a2-9419c64b7c9d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7a7d159-f902-4644-9962-8cccb6e078c2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5e89551d-c383-1e4e-86a2-9419c64b7c9d\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:14:55.6190284Z\"\n }" + string: "{\n \"name\": \"59d1a7d7-02f9-4446-9962-8cccb6e078c2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T23:58:01.1703327Z\"\n }" headers: cache-control: - no-cache @@ -818,7 +821,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:15:55 GMT + - Thu, 15 Jun 2023 23:59:01 GMT expires: - '-1' pragma: @@ -850,15 +853,15 @@ interactions: ParameterSetName: - -g --cluster-name -n --mode --enable-cluster-autoscaler -c --min-count --max-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d55895e-83c3-4e1e-86a2-9419c64b7c9d?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d7a7d159-f902-4644-9962-8cccb6e078c2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"5e89551d-c383-1e4e-86a2-9419c64b7c9d\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:14:55.6190284Z\",\n \"endTime\": - \"2023-03-15T11:16:02.4244385Z\"\n }" + string: "{\n \"name\": \"59d1a7d7-02f9-4446-9962-8cccb6e078c2\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T23:58:01.1703327Z\",\n \"\ + endTime\": \"2023-06-15T23:59:14.4745909Z\"\n }" headers: cache-control: - no-cache @@ -867,7 +870,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:16:25 GMT + - Thu, 15 Jun 2023 23:59:31 GMT expires: - '-1' pragma: @@ -899,34 +902,34 @@ interactions: ParameterSetName: - -g --cluster-name -n --mode --enable-cluster-autoscaler -c --min-count --max-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n - \ \"name\": \"clinp000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 0,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"maxCount\": 3,\n \"minCount\": 0,\n \"enableAutoScaling\": true,\n - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\"\ + ,\n \"name\": \"clinp000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 0,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"maxCount\": 3,\n \"minCount\": 0,\n \"enableAutoScaling\": true,\n\ + \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1020' + - '1021' content-type: - application/json date: - - Wed, 15 Mar 2023 11:16:25 GMT + - Thu, 15 Jun 2023 23:59:32 GMT expires: - '-1' pragma: @@ -958,34 +961,34 @@ interactions: ParameterSetName: - -g --cluster-name -n --update-cluster-autoscaler --min-count --max-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n - \ \"name\": \"clinp000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 0,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"maxCount\": 3,\n \"minCount\": 0,\n \"enableAutoScaling\": true,\n - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\"\ + ,\n \"name\": \"clinp000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 0,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"maxCount\": 3,\n \"minCount\": 0,\n \"enableAutoScaling\": true,\n\ + \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1020' + - '1021' content-type: - application/json date: - - Wed, 15 Mar 2023 11:16:26 GMT + - Thu, 15 Jun 2023 23:59:34 GMT expires: - '-1' pragma: @@ -1008,7 +1011,7 @@ interactions: 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "maxCount": 101, "minCount": 1, "enableAutoScaling": true, "scaleDownMode": "Delete", "type": "VirtualMachineScaleSets", "mode": - "User", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": + "User", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' headers: @@ -1027,36 +1030,36 @@ interactions: ParameterSetName: - -g --cluster-name -n --update-cluster-autoscaler --min-count --max-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n - \ \"name\": \"clinp000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 0,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"maxCount\": 101,\n \"minCount\": 1,\n \"enableAutoScaling\": true,\n - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\"\ + ,\n \"name\": \"clinp000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 0,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"maxCount\": 101,\n \"minCount\": 1,\n \"enableAutoScaling\": true,\n\ + \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/00708564-4cbb-4516-b34f-dc1551a6999c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/017c7fd6-c828-409d-ac2c-923689d6eb61?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1021' + - '1022' content-type: - application/json date: - - Wed, 15 Mar 2023 11:16:29 GMT + - Thu, 15 Jun 2023 23:59:38 GMT expires: - '-1' pragma: @@ -1072,7 +1075,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 200 message: OK @@ -1090,15 +1093,63 @@ interactions: ParameterSetName: - -g --cluster-name -n --update-cluster-autoscaler --min-count --max-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/00708564-4cbb-4516-b34f-dc1551a6999c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/017c7fd6-c828-409d-ac2c-923689d6eb61?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"64857000-bb4c-1645-b34f-dc1551a6999c\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:16:29.7132547Z\",\n \"endTime\": - \"2023-03-15T11:16:40.5833256Z\"\n }" + string: "{\n \"name\": \"d67f7c01-28c8-9d40-ac2c-923689d6eb61\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-15T23:59:38.6548865Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Thu, 15 Jun 2023 23:59:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool update + Connection: + - keep-alive + ParameterSetName: + - -g --cluster-name -n --update-cluster-autoscaler --min-count --max-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/017c7fd6-c828-409d-ac2c-923689d6eb61?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d67f7c01-28c8-9d40-ac2c-923689d6eb61\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-15T23:59:38.6548865Z\",\n \"\ + endTime\": \"2023-06-15T23:59:46.8868678Z\"\n }" headers: cache-control: - no-cache @@ -1107,7 +1158,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:16:59 GMT + - Fri, 16 Jun 2023 00:00:08 GMT expires: - '-1' pragma: @@ -1139,34 +1190,34 @@ interactions: ParameterSetName: - -g --cluster-name -n --update-cluster-autoscaler --min-count --max-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\",\n - \ \"name\": \"clinp000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"maxCount\": 101,\n \"minCount\": 1,\n \"enableAutoScaling\": true,\n - \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/clinp000003\"\ + ,\n \"name\": \"clinp000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"maxCount\": 101,\n \"minCount\": 1,\n \"enableAutoScaling\": true,\n\ + \ \"scaleDownMode\": \"Delete\",\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1022' + - '1023' content-type: - application/json date: - - Wed, 15 Mar 2023 11:16:59 GMT + - Fri, 16 Jun 2023 00:00:09 GMT expires: - '-1' pragma: @@ -1200,8 +1251,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -1209,17 +1260,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/11662f34-a7cd-4991-8bfa-f5d60d3cae0b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d667d573-404e-49f1-a952-299ad4d68e8a?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:17:01 GMT + - Fri, 16 Jun 2023 00:00:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/11662f34-a7cd-4991-8bfa-f5d60d3cae0b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/d667d573-404e-49f1-a952-299ad4d68e8a?api-version=2016-03-30 pragma: - no-cache server: @@ -1229,7 +1280,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_create_scale_delete.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_create_scale_delete.yaml old mode 100755 new mode 100644 index 0d7609016cf..a1279ac1d60 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_create_scale_delete.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_create_scale_delete.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:14:14 GMT + - Fri, 16 Jun 2023 00:00:21 GMT expires: - '-1' pragma: @@ -53,13 +53,12 @@ interactions: false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, - "storageProfile": {}}}' + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -70,66 +69,133 @@ interactions: Connection: - keep-alive Content-Length: - - '1504' + - '1796' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-9r4b8vn1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-9r4b8vn1.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"details\": null,\n\ + \ \"message\": \"Service principal clientID: 6a83c9d9-1f3e-43cf-9ca0-bb7da58fd2e4\ + \ not found in Active Directory tenant 72f988bf-86f1-41af-91ab-2d7cd011db47,\ + \ Please see https://aka.ms/aks-sp-help for more details.\",\n \"subcode\"\ + : \"ServicePrincipalNotFound\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '313' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 00:00:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westus2", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", + "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": + false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": + -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, + "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1796' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-gtb6lulq.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-gtb6lulq.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/81003ef3-d9cd-4ef1-a1d8-34236a6678a6?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed357b94-8680-44ff-9a2e-563f52ea91d3?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3050' + - '3378' content-type: - application/json date: - - Wed, 15 Mar 2023 11:14:17 GMT + - Fri, 16 Jun 2023 00:00:38 GMT expires: - '-1' pragma: @@ -141,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -160,23 +226,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/81003ef3-d9cd-4ef1-a1d8-34236a6678a6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed357b94-8680-44ff-9a2e-563f52ea91d3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f33e0081-cdd9-f14e-a1d8-34236a6678a6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:14:18.7906845Z\"\n }" + string: "{\n \"name\": \"947b35ed-8086-ff44-9a2e-563f52ea91d3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:00:38.405029Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:14:48 GMT + - Fri, 16 Jun 2023 00:00:38 GMT expires: - '-1' pragma: @@ -209,23 +275,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/81003ef3-d9cd-4ef1-a1d8-34236a6678a6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed357b94-8680-44ff-9a2e-563f52ea91d3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f33e0081-cdd9-f14e-a1d8-34236a6678a6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:14:18.7906845Z\"\n }" + string: "{\n \"name\": \"947b35ed-8086-ff44-9a2e-563f52ea91d3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:00:38.405029Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:15:18 GMT + - Fri, 16 Jun 2023 00:01:08 GMT expires: - '-1' pragma: @@ -258,23 +324,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/81003ef3-d9cd-4ef1-a1d8-34236a6678a6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed357b94-8680-44ff-9a2e-563f52ea91d3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f33e0081-cdd9-f14e-a1d8-34236a6678a6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:14:18.7906845Z\"\n }" + string: "{\n \"name\": \"947b35ed-8086-ff44-9a2e-563f52ea91d3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:00:38.405029Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:15:49 GMT + - Fri, 16 Jun 2023 00:01:38 GMT expires: - '-1' pragma: @@ -307,23 +373,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/81003ef3-d9cd-4ef1-a1d8-34236a6678a6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed357b94-8680-44ff-9a2e-563f52ea91d3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f33e0081-cdd9-f14e-a1d8-34236a6678a6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:14:18.7906845Z\"\n }" + string: "{\n \"name\": \"947b35ed-8086-ff44-9a2e-563f52ea91d3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:00:38.405029Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:16:18 GMT + - Fri, 16 Jun 2023 00:02:09 GMT expires: - '-1' pragma: @@ -356,23 +422,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/81003ef3-d9cd-4ef1-a1d8-34236a6678a6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed357b94-8680-44ff-9a2e-563f52ea91d3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f33e0081-cdd9-f14e-a1d8-34236a6678a6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:14:18.7906845Z\"\n }" + string: "{\n \"name\": \"947b35ed-8086-ff44-9a2e-563f52ea91d3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:00:38.405029Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:16:48 GMT + - Fri, 16 Jun 2023 00:02:39 GMT expires: - '-1' pragma: @@ -405,23 +471,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/81003ef3-d9cd-4ef1-a1d8-34236a6678a6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed357b94-8680-44ff-9a2e-563f52ea91d3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f33e0081-cdd9-f14e-a1d8-34236a6678a6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:14:18.7906845Z\"\n }" + string: "{\n \"name\": \"947b35ed-8086-ff44-9a2e-563f52ea91d3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:00:38.405029Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:17:18 GMT + - Fri, 16 Jun 2023 00:03:09 GMT expires: - '-1' pragma: @@ -454,24 +520,72 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/81003ef3-d9cd-4ef1-a1d8-34236a6678a6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed357b94-8680-44ff-9a2e-563f52ea91d3?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f33e0081-cdd9-f14e-a1d8-34236a6678a6\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:14:18.7906845Z\",\n \"endTime\": - \"2023-03-15T11:17:29.5672651Z\"\n }" + string: "{\n \"name\": \"947b35ed-8086-ff44-9a2e-563f52ea91d3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:00:38.405029Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '125' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 00:03:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed357b94-8680-44ff-9a2e-563f52ea91d3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"947b35ed-8086-ff44-9a2e-563f52ea91d3\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:00:38.405029Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:17:48 GMT + - Fri, 16 Jun 2023 00:04:09 GMT expires: - '-1' pragma: @@ -504,59 +618,110 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed357b94-8680-44ff-9a2e-563f52ea91d3?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"947b35ed-8086-ff44-9a2e-563f52ea91d3\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T00:00:38.405029Z\",\n \"\ + endTime\": \"2023-06-16T00:04:22.5758954Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 00:04:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + --service-principal --client-secret + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-9r4b8vn1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-9r4b8vn1.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/88521f1c-c1bb-4dd1-badb-3634c9bc08b2\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-gtb6lulq.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-gtb6lulq.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6dac0354-c9cb-4845-aca5-2c1604a00987\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3314' + - '3642' content-type: - application/json date: - - Wed, 15 Mar 2023 11:17:49 GMT + - Fri, 16 Jun 2023 00:04:40 GMT expires: - '-1' pragma: @@ -588,59 +753,60 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-9r4b8vn1.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-9r4b8vn1.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/88521f1c-c1bb-4dd1-badb-3634c9bc08b2\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-gtb6lulq.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-gtb6lulq.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/6dac0354-c9cb-4845-aca5-2c1604a00987\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3314' + - '3642' content-type: - application/json date: - - Wed, 15 Mar 2023 11:17:49 GMT + - Fri, 16 Jun 2023 00:04:42 GMT expires: - '-1' pragma: @@ -674,24 +840,24 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUmpkaFozY3lWVFpqT1dOeWVsQlZjbVp0SzJNMFZFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCZWsxVVZYaE5WRUV3VGtSU1lVZEJPSGxOUkZWNlRVUk5lRTVVUlhoTlZGRXdUa1p2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVOaENtOVFiR2hCTTBjeVVEaDJjRGxwT0dWMFpURXJOM1Z4UTFaNWIwNVRkMFJYZVUweFpYWjNlR1p2YWpSbVFWazRiRlEyYUZORWMyWnRaMUJUVlZSUlNIQUtNbXhRV1dKV2NDOVphMG8wT1dSMmFGQklOak01TkZCclUxQkphSGQzVDBGR1VEVXJaQzlQY2tWMFFuWTBTMmRuY0RsakwxbFZMekpPUkZOc2QwUTFMd3AyTkRZdlNGSk9hMDVwUnpaRFptcENaa3hPZVhkeldUTkZZMEpRUjBOeGJrVkVlbE5CTldOeWJuQTJlbmwwYkRSeGIwSXZUMGhzU0V4ck5GTlRWRkl3Q2tzMVVTOU5XR1V6UTNjdmJXdEtOVzlTZUUxRVJtWXpTWHBoY214a1UyNXFTMmQxTUVSRlJtZGFlbGRDTTBKNVp6VTVaRE5FVWpsUlJpdGpXbk0yUVZRS1JHUkNVVXhrWlhJeVpVTlFNM0ZFY2xWT1FXeFlkVk5yTVVjelRUaGFhSFF4ZVRCSVNrVXZXWFpLVEROeFUxZE1XSE4yY2xKTFprUTRlbGxDVjNaS2RRcDNRemt4YjNCdWQzQXdiMFY0WjFCd09Ha3llRzF6YVRsSlRIaEtUVEpaVkVjNGNFWnRhR1UyZHpRemJsaEJUR2xDU1RKWE5tSnJTbGR1U0ZwTVRIRndDbXhyTW04NVZtRXJNM1pUYzFCeGFXOVZjMU5TTldSNFR6bHZUamMwY2xsRmF6QnhiVmhOUmxaR0sxTlFlakFyY0hKblVtc3laVGszVG1OVlYzbG9ZbUlLSzJWR1JGRlJaRmxQYURWd2NrVlVVSEF3WnpoVGRuZFlSekpSYzBJMWNsVjZjbUpXZUV4ak1sRTFZekV6Wm1Vd05XSkVhM2xRZDNSRlptTjBiV2hoWWdwalNXSnJaQ3MyUmt0NlZYQXZXWFpYUzJSVmRqbFZRbUpIWkZaelEyNVViRFkxVGk5aFp6VmFSMUZOYkZsUlQyZEJNMlZRYUdrMVlVaG9kMlZHVUVZekNrbHdUM3BPU3pKMlluVm1ZbWx5VERsdFYwWlRhbmx6YlU5TlEwSkZNSEpZTDBOdGQyUTVhVGxJZG01RVpIVTFlVFZpUmt3ME1FWlpUSE5tVEVkeU4xY0tkWEl6UkU4emNIWjFjM1p3U0VaNlpDdFpaMWR1Ukd4dVZWUlhOV3BCTTNSd2JtcDBVM3AzVW1KUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWQmJWSTJaMHcwUlhOU01HRm9aR2hEQ25SWlVXdDVORzh6Ym14QmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGQ05pOXNkbTVNWlZwU1J6VkZUekZpY3pCbWNGUkhkM1VyUW1NS2JFUkZOMmRpV1c5TmVqWkRXRVoxVTBFNU5IZzBVRTVCZDAxWGJGazRZbGRyYTBadWVrOTZPWGRZVVZFck5tWk1OWFEzWTJadk9UZ3JRamRYZEM5UWF3cEJPSGhCTlV4VU4yaHBVV3BpVVV4ellrRkxORW96ZG5WeE5VbE5aR3hNZVc0MmNISmFlbGhtUnl0MGIwdHZVVWcwWWtWbmIyRTJaR2xGV2tOQ1JYZHZDbk5SZVRock9XWXZVa0pyTmtwNWMzcFVSRFprWjA1VE9FZE5Ta3B4YWxvMlNqQlpRbk5GT0RoV1VGTmxhbFJaWkVaTlkwY3ZPV0p4U0Vwc2JETmtibllLUml0NVVIa3hRbk5NVFhKV2NYTnFlV1JuWVVKc1RERlFWeTlxUm14alNHMVlSVTB4ZWsxcmNFcG1SalZPUkdneUt5OXpiazE0Uml0T2FrRkdRWEJYWVFwMFduWm9XSGxuUlRaMmREUnlNbTVZVFc5dFNEY3JkM1ZrY0hsdmRXWm1SR1ZUZG10aFZtNVlVVGR5UWl0QlNYcG5OVVl2ZW5kU1dIbDRORzlSZWxZdkNsTlFTMk5SV25kSVQweDJNbE50WTFkaU5rcEhMM2MwWmtwTmNUVjVObFZ3V1dNd09WUmxOblZLWmtJcmN6UkRWRkZ2VVdGemRtbFJkMlpsVnpGWU4zWUtPV05RZEZSdWNubEZNWFZLY0ZobFFuUlhNVzFqVEhGTFRVNUJhVlZzT0hKVFVsZDVabGx5YmxSV1VsRTRlRk01V25sRmQzcHFiRFpNU2pKTlJFOHJWQXBTZDNOd2FqSmFkVlpVY25sNGQzRXlWV3AzVWtsUWRFb3hkWGxuVGs1cU5YbFVLMlpIZVROQmVXSkhjMWt3YUhadk16ZFlObmhqUlRWSU5UQnZNSGw0Q214SFJGZzNTRlk0ZFdWV1JVMUNlV05UUzAxUmJXa3dZeXR3YXpSR01IUnVXREIyVlROQmIwSXhhVkJCTUVWU01rRnZOM2xGVUVaWWEweGhlRk01VEhRS1FsTXlkVmR1Um5SdlQxazRNVXhzUkhSdWJFRnhaVWQ2YkRsUmVqVm5lV1k1ZERkdFVUTmtTMGhyUjBkUmIzb3dialZvVWpCT05IUlZabWcwSzNSbGVRcE9VVWRTYjBvNFJsWTJUSEJJT1doRUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2U2bHoyeWYtOXI0Yjh2bjEuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RqZzNrcm4KY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RqZzNrcm4KICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3Q1ZHFxM2dsZnFwX2NsaWFrc3Rlc3RqZzNrcm4KICBuYW1lOiBjbGlha3N0ZXN0amcza3JuCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGpnM2tybgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3Q1ZHFxM2dsZnFwX2NsaWFrc3Rlc3RqZzNrcm4KICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVXAwVEZCclNTOU5kM2t2U25vMVF6azNLM3BpTjFWM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDE2UlRGTlZFVjNUa1JSTUZkb1kwNU5hbFYzVFhwRk1VMVVSWGhPUkZFd1YycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCTlVkU2NYaE1kVmxRVVhCeWJrbEVUV1JNTUdVS2NXOVlabUZEYkhrek9EZGhSVTlMS3pKNVJuTk9TMnRKTDB4dE9XbDVZMGd4U0M5M1FrVkRNRXBYZEVOa05XWnZRMDFIY0VZdlYzUTNUMVF3VEROcVdBcHpibFkwVWpWRGRIRkplbXRWVkU0eGVsVkVNMWxNU0RCdlZGWkVaekJuY0ZNM1IxUXdTemRIZGt4T1NIWjBaalZtUmxGUU0xTllSMk0wVm5GTGRGTkJDblJQUVd0dmEySm5VR2wzUkhoeVprVlJLMDkzY0hKcGN6Tk5SV05vYzNGamJFTjNURGRtVmtORGMyUXJVMWhuZFdST2NVNUJiMVZaVmpSSE1WcG9VSFVLV1VkdFRGcFlha050Umk4dlIwNUdNRTlvVG5keFJHUjRUM2MwUjNsQ1oxSklWMVpMTjBodE1qWnFTMnBrTWxWYU4yUlllbWcxVldoS1VVOXllV1pMU1FwNWRWQlBhMWRuVkdOSVRqVlNNR0pEZVZWNFNtWkdWRmxFZWxsV2FtRlJjWGxxVlZBMWJrOUxiR0ZXUlhkS2RYaFlTa0ZPTld3d01pOVJNVkJUZUVGaUNrSndNVmxpZDJkTlNXUTJaMjVJTlVWaWJXc3JjbU5oVnpNNGEwUk1NbVpFWW1Gb2QwWmtVbVpsWlN0NU5XeFBjbU41YWxOV0wwWnpTRFpqTW10dllYZ0tNMUEzZVVNekwyRXpkRVpSUkhRMFdTdFhZVkl4TWtoTGEzZHJOVVZoVEc1Q1lqTXlSV050YzFoS1p6ZEZUMUYxU0RkVFZWcHdhRWs0UldwT09HMTNOd3BpVjNoeVNVVkVTMDlqYUZOQ2IwUmpXRTVLZEc5NWVtbFNRMGM1Y20xYUsycElOSFZ6Tmxka01YYzJTMUJpVFhKcFkxQjNhVGhNTWs1b01pOXJMMnR1Q25CVldFc3ZWRTFLV1hrdmJEaEtUM1JEUnpOU1FucHVaRVIxYkUxcGNsRldSbFI2YzNCbmNtUXdkbTVFVkZwNVJGbDNRMlZLWmtRM1pVVlNUa3MwTVV3S1QyOXBhWFkwUVU5bVdFTldaVzl1U25aR1l6Sm9hRGRZTWpWeFRqVklhV3ByVVdaelJXbHhaRmt3U21SU2VqVlBhek5hVmpkQmNXaGtXV3htYjBoWlp3cEpVMm9yYjJaelZpdFNWRkJxVUdoNE5qbDJZWE5JVlVOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWUVcxU05tZE1ORVVLYzFJd1lXaGthRU4wV1ZGcmVUUnZNMjVzUVhkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCUVRoYU1ITXlZMjR2ZW5sNmVWbzVTbFZNWmdveEswVTJjR2hQTkRkSFlsUmxiblJ5V1hOYWFsVnZWMEV2WkhOT2RVSXJVMEpLV1Uxb05tVk1hVzgzVkU0NFJXRm9SVXhQTld0U1ltSTVhemRpYlVwR0NtNUthekY2VTFsQ2RWSnpabVJqZGtveE1GWk9OMnhzSzBneGFFcE9kSFkxUm5oWlJIaDBNbFZHZFROalZVOURNMGREU2s5aGFtSkRkRWs1WVhOeVYwVUthRWRtWTIxSFJHUkxUa3hPZFZaV1dtSktUWEpZUzJoUWNFMWhjeTlKWVRrMFdDODRjVmhhY1VNelRFeG1VVzlKTHpnM1ZteG9PVEZ3U0RaT1dtNTNUZ280UzNsRVVERndNVEp2V1cxbmFHODFhMlExTDJ4d1EzbFVjR3BuV2t3NVZrWlFXWGxxZW1SblZ6bElRbkJwTmpoVFJGUTRiM1IwYWxGVU1tOTRWVGNyQ2pOWVRDOU9UMnR6S3pKdlV6Wm9USEJ4YlhrclNHRjBXSFF4Y1hGRGVrSjJUemtyVmpBeVFuQldXakV5YVV3clFsbHZWMHRQZFhoMVIyRndTRzFCWTBrS1dERjNhbkJuYW5ablNFMXBiMGR3Wm1SQlVWaElOak13V1dnME5HdFJXbE00VFRSVVpVWkRjV0p4SzFFMU5tdFNObFUwY25aWllXazFTMjQ0TDBZM1JncHNOVzFITnpoV2FVSkxaRUpNV1dad1JYVXJNRU5ZWTNGYWVsRldPWEEyWmt0SVVrZFhTM2xuTkVaRVNuQkRNa2RwVUVaRFYxaHpNRTFtVUVsQlMxQkRDbFVyUTA5NE5rWk5NVmhQYWxaR1VFdFhiRVkyU1ZSR1IzZFdlbE5NTm01M1ZXb3hOVzA0U3pJdk5tMHpTM05VY1c1VkwzWndNRFZZUkc1a1FUQm5OVXNLVDFka2NWWjRZVWxSVW5oMGVVbDNNbFZ6WjA5d1Z6SXJOVE5aZVd0MWQyeHFXa0ZsT0RkaU0zbzFMMk13Y0ZnMk1VWk5SMFpGVVhWMk5uUlNZMHRMVUFwcWRtaEllbE50YkZwd1RHNVBlV2M0YWtOWmIwVkJaemxDVkRaRmJqbHVVR052TDAxMlpUZHJXR0pHUzNwVmR6Sk5TekJNU0RGa09GZE1aMGRoWmt4NkNsSmtkM1ZuTlVZME1VNTFVblJRVlVSQ1YzWnZkVkpsVndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMUZKUWtGQlMwTkJaMFZCTlVkU2NYaE1kVmxRVVhCeWJrbEVUV1JNTUdWeGIxaG1ZVU5zZVRNNE4yRkZUMHNyTW5sR2MwNUxhMGt2VEcwNUNtbDVZMGd4U0M5M1FrVkRNRXBYZEVOa05XWnZRMDFIY0VZdlYzUTNUMVF3VEROcVdITnVWalJTTlVOMGNVbDZhMVZVVGpGNlZVUXpXVXhJTUc5VVZrUUtaekJuY0ZNM1IxUXdTemRIZGt4T1NIWjBaalZtUmxGUU0xTllSMk0wVm5GTGRGTkJkRTlCYTI5clltZFFhWGRFZUhKbVJWRXJUM2R3Y21sek0wMUZZd3BvYzNGamJFTjNURGRtVmtORGMyUXJVMWhuZFdST2NVNUJiMVZaVmpSSE1WcG9VSFZaUjIxTVdsaHFRMjFHTHk5SFRrWXdUMmhPZDNGRVpIaFBkelJIQ25sQ1oxSklWMVpMTjBodE1qWnFTMnBrTWxWYU4yUlllbWcxVldoS1VVOXllV1pMU1hsMVVFOXJWMmRVWTBoT05WSXdZa041VlhoS1prWlVXVVI2V1ZZS2FtRlJjWGxxVlZBMWJrOUxiR0ZXUlhkS2RYaFlTa0ZPTld3d01pOVJNVkJUZUVGaVFuQXhXV0ozWjAxSlpEWm5ia2cxUldKdGF5dHlZMkZYTXpoclJBcE1NbVpFWW1Gb2QwWmtVbVpsWlN0NU5XeFBjbU41YWxOV0wwWnpTRFpqTW10dllYZ3pVRGQ1UXpNdllUTjBSbEZFZERSWksxZGhVakV5U0V0cmQyczFDa1ZoVEc1Q1lqTXlSV050YzFoS1p6ZEZUMUYxU0RkVFZWcHdhRWs0UldwT09HMTNOMkpYZUhKSlJVUkxUMk5vVTBKdlJHTllUa3AwYjNsNmFWSkRSemtLY20xYUsycElOSFZ6Tmxka01YYzJTMUJpVFhKcFkxQjNhVGhNTWs1b01pOXJMMnR1Y0ZWWVN5OVVUVXBaZVM5c09FcFBkRU5ITTFKQ2VtNWtSSFZzVFFwcGNsRldSbFI2YzNCbmNtUXdkbTVFVkZwNVJGbDNRMlZLWmtRM1pVVlNUa3MwTVV4UGIybHBkalJCVDJaWVExWmxiMjVLZGtaak1taG9OMWd5TlhGT0NqVklhV3ByVVdaelJXbHhaRmt3U21SU2VqVlBhek5hVmpkQmNXaGtXV3htYjBoWlowbFRhaXR2Wm5OV0sxSlVVR3BRYUhnMk9YWmhjMGhWUTBGM1JVRUtRVkZMUTBGblFUTlZjMlV5U0dkaWVtbHJiV3MwUjBsdFUxRldZbTk0UVVwNVJHbEhWa1JJYjJONlVuVkhhblFyZVdjNVpWRktVRlZYUlVWRFZGaGtWQXBaUjFWRGVESmxWRlp3TW1wUFZqTXZZWE5wVm05TFVYaDBOa1IzU0hCd2Fra3pNbVJZV0hWVk1qbFdSMUZrTVhGak9VUm9SaXRxYUhKVFNYSnljbXQ1Q21wS1QyaGtRVUZIUkRSVWEyY3JlRkF3YlRKMU15OTBiVzl3UlVkMk1rUkJWMnhFU2xod2IxQnJZMWxrT1RsS04yOUVTbTVUZGxCb1FuTldSVGg1U2pBS2IzSnpOM0I2VmtaRlRFdFpTbUpUVVdweVRHeDROSEZ6Vkd4dGIzbDNaekJNVkhSa09EWnlNRlpTUWtaWVVqUnNPRlZCYUZsUVZuUnNURGRaYTNkbVF3cEliakppV0RKaVVHSm9UVWt4U2tkdlNIZDVibFJoZEZsUlRVc3pLM1JUTTNwcVJXWlNVMnd3YUZsU04yaEdiM051ZEZONldYQk9NeXQyVGs5b1pXNTZDa1ppZGxaSlprb3daMWxLUmk5TVRWSlJWRlZ1ZFZGcGFrVjVVMjlWVjBoQllsazBTMXB1VVVkYUsyNWhSRUZoVTNkd1NtZEVaWG9yUm01cldHZHNXUzhLV0U1b1FsbERVR2QwVW1KRFYxQk5jMGxDWjNGRk4zQmFlV2RMZUhsM0szcHpja0ZOUm14bE5HTkphRVJoVG5veVZHWlZTMlJOZG5RNVlURlJZMmh3ZGdwT1RVMW1NMjVyU0hGeFVqaGlSV05XTlhVMFdEWnBNRk00VWtsRlJWSkJNbHBJVFdWQlNraGxiWGxXU0dRclYwWmxjMkpPYlhCT0x6QkdOM0ZLWVZGWUNuSTJkemRyTkRacGQzSmxUMlEwV0hCalFXWkhWM2c0TUU0M05ESm9kMGhPTUVzelNqazNkbVZzUkVnNVFqQTRjbFJZYzFWcFNucDRXRVZFYlhaWVMyY0tVSEJOVjAxUFFXNXNWa2w1Vm10b1YzRkNZblpWWm01dU1HRTNkbEk0U25Kd2JuZFRVRnAyWWtJdkwxWlNURmhpUzJ4SVRUUnBkVEZoUzBsMk5sQktVZ3BHWkU5VFJrSndNMFYyT0U1c1FVcFpSazF5WVRFcmIzcDJRVzVTTkVsSGRHZzRkVzB4TjNwcE0wWXplVTE1VkdOb1VVdERRVkZGUVRob2JsRXlRVTVzQ2xsTmQxaDVZMmxJUkV4SmFVazBlak5pY0hFd1VIRjZTVTgzTkc4eE1IRlZORlpVWWpsYVdGbGpXV3hOVkdOYWJVOU1lU3NyV1VoME1uVk9hSEoyTW5ZS1FuaG9iWEIzTUZaMVJXUnZPVk16Y1VwS2NsQmtkbk5FUlRCek1XNTFSRm92UkhaM2VHOXVSV280ZVRoVFNYZHlUbFJ1VW1zeE5rNUhObE4yVWxaVFNRcFZNRkpUVERFeGNtMVhkVUp6Um5reksxbGFRa0p1Y0ZkYVFsWjFUbEpOZFZFMFMxZDVPVmN2V2xNM1FWbHZaR1JVV0hGTWNEazVZV3RPVkcxT2ExVldDbmxqZWxodFJGcFhjeXR0VEdNck5EUkhkalU1TDFnMGRsbEZXRU13VjBwQ1VsVnhibmxwZFZvNFlXTTFlR1prZERCT1ptWlBSVkpPU1N0VE1GUTNURVlLWkc1UkwydEtaVWhuY0RCcVIzQTRTVlpCUkhCTFEyNDFkalo1ZUdkMldFb3dWWEIxUkM5VGExZExURWxKY21GNE0waHFWVmxMYXpoYVEyVkdWVEYyTlFwSk5UWjVVRkZ1Ykd4S2JtTjZkMHREUVZGRlFUaFpSV1kwYTNsbmJtbDNTbFF4Y1ZOaVdURkxZVGh1TVZBNFVuRlNUMDFETVdWUFJXMXZZVmxqTkcxc0NubHNRMEpoTUVwU01sQlRTR1ppYkdrdlNEbERNSEJEVURSUllTOVBWMmt2WnpGUEwyRldVamwzZFcxcVpHaEdMM0Z3U1hKeGVHRjNaM00wYkVOWGJUY0tZV2NyUkVjMVFsWnBXRkJPV1VsUlVXNTZOMDl1T0VZemJWaEJVemxqU0ZGRFpWZzJUamxxZDFsTlQyOXVVVkIxVVZseWRtZHVTWHBhWmpobFFVRm9XQXBITUcweGFrNXliazlwYldkM2RWSnRZbVp5VGxaM1YyNW1RVzlhTjNKQlVWbDBZVlJaTWpjMk9ITllkRmgyTjJwUEsyOHdZME0zUWtKTFNISnhRVkV4Q2poeVNETndOa3B6V1ZCeVlubExiMDF6U1U5RllYaFhkV2t2UlRKQllqRmxUV1ZYZWxSRWVHWjRZbVpqZW01bFUzVXhhM1paVmpWRFNVVm9XVkFyVjFFS1ZWRkZSbk5RTjNGTlJtTkRRVmwyVG5wcVNHTkZiREV3SzBSV1lXSXhWWEJHV1cxbVRucHJXR1YzUzBOQlVVVkJOWEJDY21OeE1scFRUbmhXT0RGbVJRcE9abFZZZVdncloweFlaWE5JVG5oVlVGbEdWMUlyVEVKamRUbHpTVGRETTFaNmJGbHlLMFUwZWs5UlJWSklOMWN4VmxWcVdFcEtRWFJHVFhGM1FVVlpDa3BGTTNSNVZVbFhPRkpHTW1JeWRWTm1SR1IxVFRSalZWVnpSMHhDY1cxQ2VIbHNSMVI0YTJWMFUzZENVMWxaVFdkTU1GRktjMnBuYnpsM00wbFBRM0FLWW04d1UwUTNTR1JxUVdWMGRXTjFZM0IxWnpVNGRGZ3paekZtUlRSUk9FcHVaMVYxVG5sbFVGWm9RbFpJUjFRNFZGWTFWV1ZITjBjeE1EYzRTeTkyYXdwRGNXUnhjR1JtUkVkM1NYWllkRVpxYzFJekt6aFpXRkJtTTNkbU1qaDNNbUZuZGtkWE5rUlBkSE4zTDNrNGFGRmFkRk5UV0VONE0waGtOazFCZEc5ekNuUmtiVTAyZG1ReE5sQnhUa1ZxUlZod2RFZERjRXRSVEhSblVtRlhWblV4WjB0NFYxTmhhMUZNYkZoelpreHVkbmczY0ZSdlVsaEJZVmx1YWxkWWIzQUtZVXRKTTNoUlMwTkJVVUZtT1U1WmFrODRRMFpNV1RaT01GazFUM05OVDBsUU9VVlVMM2R0VVRBdmEzTkdSVGhZYnpObVNUQm5NeXRHTW10SmNVWXpjd3BPTWpneVZUZEhiR1EzUmk4Mk1rVmxhR0ZaU1VWeVVrVjZTRUZ1Yml0aFJWSkRXVGxIVms5eVdHMTNiekV6WmtReE1FNVFWelExVWtkdWVHVjVWbkZKQ2s1aGNWaGxkVWswVFVSa2JreEdTMGhIZVRGdVJqVTFVSE5RTjB4S1VXMXdlRVJ2Y21wTWJXRk5jV2NyZFhBelUyZFZLMWM0V1U5V1QwMTFkRTQ0YjJnS1EwTkZaSEZPZEdzNGFYSTFkVTlZVVhCQlYwdGpRVWMzUlcxdGRWaHhSVmRRZEhGTFJqTkJOa2hYVDFNNVNucFdORUpqZFhoR0wyWklWekpJTkZKWk1ncFFkblZYVFdWdk56aFRjekJuUlc0MFpYQkxTelpIVUhWa2JHRnFXRGx1VFdJclptNDJhWEZuV0RoNlJrNWFVRXRqWTJjM2NrVlVUV042V1hSc1dUSnVDbXc1ZGsxSFNsQkVSbEpZY0RKRVVVTktRVEI2WW1wR2FHbEVVbkJQYTFSQ1FXOUpRa0ZSUkdoWlRGbE1Ubmd2U1dKTmIzbGFhMkZSTldoU1ExUlRla2tLV1VseWIwUkhRbkJ3ZFVGb2FTc3ZZMWd4Y1hJNVJXVjBibHBOYWxjME9WVmhNbVZSTm04d2FXUnBkWFJxVWtabFZuaGljUzlXYjNaS1oyUklWbXcyZEFwWmNURlJjRU5DYmxaMVdrVnBVVXRwV0U1NmRVSmpRamw0Y2tSMmJrSnZMekJCYldwS2EzbEpXbVY1UjJsUlVsQTBRMEV6YjBaMGFsUm9iRUYwVldRMUNqVTNiRkZTWjBscFZHcDVRVzVZYW5rNVlYWkRPVUp1ZW5OeVlrVm9SemRxU0dwQ1ZGTXlkbXAzYmtzeU9XYzViMGw0Wkd4NFF5OU1aMnRWTkhoeFZtY0tPVkIwVm1GNlNXMVpaVEJ3Y204elNtRkNWSHBqU25vNWVHOXBZMDFtYTBKdlNWWkJPWFZKZVVKM2RFNVBjRk5aU25wdmRWaDJjV1Y2UkU1NVRIQXJlZ3BuTlhveU9HNXJRVnBVTUNzM1RYRmlkR0Z2VUZKeWFUZ3pORE5UYnpsRlpUZDFUVFV5VlVFeVZYZDVTVVJtVm10TFZrVnZNbVJSZERRNU1IQUtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogZjU5bTl6NWpsdGkzNDFvaDQ2NWVjODl2MnUybXZscHJneWhycXc4OTQ3d2ljMDVndXIzanZ2Mm05eW05cHk5cTA1ZmJsbTYyeTlicW1zbXV6NXV5d2d2enRmYWVtNnZlZXR2dm9rb3N4eWZicmpzM2MyMjFzaXQ3d3J6M3Y3amUK\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVU5MVQwbExWRkZQYjJKQldIcG9hM3BJVFdwV1FXZDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJURk5hazB4VFZSQmVsZG9aMUJOYWtFeFRYcEJNazFVV1hkTlJFRjRUVVJPWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNqVnBlVnBpUVhGb00wSkVRekp2VURoT2QyWmhXRVIwV0RSNVVUUjVSbXhGU1ZnMGNEUnhNRzVUVmxOR1VDdFhiVFF6VXpKNlkyVjJVbUZLZVRreVJHWUtUVEpLVkU1aU56aDNkMnBYTmxSSksxQmxiRGxxVUdnMmRXZGlXRkYwYzJkWVltMDBkekJGYkV0alFpdDNVMDlOZVdGWVRpdFNWemhUT0dJNU1YSjFOd3BIYW01dU9FZzVjalpSVm1oTVJWTm5jRTg1Y1dsRE5VMWxVWFZVUXpGTFkxYzBlSGxvWnpkbVdraHdka0ZNVUNzM1JGQjJTMVI2YVVSSGMxQmtaVFpqQ2xoT2JIaGlkRUlyUlZwVVEwUnNTa3N4V0Voa2VuSlZkblJLZWpCM1JrWTNMMnN3VFVkTk4ySkphVVZKUW1WcVpFbHRTVzlOVjJwMlFtaDVVMDFsSzFRS1NuSlRNR3BMYmpCSWNURnJWMDAzZVRRdk5scDJWbXBYVjJocldYaGpjbGRhTlhSR1RHZHVTa3hTV0hWNWVGTjJaMHQyV2tOWFprOVNTbTlsZDFCSVZ3cFlhMlIxVTJwSGIyVTRWMnBhYVVsRlNERnRhVXg2YmxsemFYWnZPRFp6YkZKMFExSkJXR1UxVUZFNGMwZ3hORzFwZGsxSVJFdDVVVWx1ZWpGemEybE5DbFIxTDJGclZITlNTMDg1YzBsaVRtcGFWMFpEVmpKQ05DOUVhWFppWm01V2VrUlJlbFJzVlRWeFpXTmxPVGwyYUZkMlFqRnFXa2M1Wm5NNFNXSndTVFVLVDJWVWFVOXJUME14VlhaSWFqRkNkWEp1UkM5VWNqaHRjMFI2U0RkVWRXbDZlR3BoVTNac1JuQnVheThyYnpOalNWZERWbmhPZGtGQ1NscFNiWHB3Umdvdk0yZExTV3g1VFdwaEwyRndjbkZ6VkZKNlkzWXpWSFp3UmxCdFNrcEJjSEYzWlZCc015dG5iVEpoTkRaTlJUWTRhRmxvY2xnMFJrZGhVbVZOVkRRNUNucE5jVUZaS3pkclFXbFpUSGxzUlhGS1JsY3pSalJITWxaa2JXbHhkMU54VlU5U01YVXpiMlpSZEZSaU1YSXdXazVYTUM5dldXWmtaVEZpWXk5NEwyUUtWRU12UW1sSldGRjVlV0pZYmtGNE4weFBSR0ZXV2tneFRUSkxaRTl0UjFNNVlXcFFjVlJUWmtSVU1FTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1JsSk5RbVpJVEZKdlZFTnlkRGxCQ2pOSVJtUmtkR2w2WlZFcmFVMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFuZ3hjRXgyV1VwcVp5dGthRGRyVVVaWldEbHJORUZKUkZNS1RXWkljbFJhWWxnMFR6aGtPV2w0Y1haYVJUbDZaVmQyYURoeldHOWlkamxQUlc1SFFqWXlXRXRsYTI4emJETlVTRWxIVmtwcVZIQjJRbTA0ZVRCYU9RbzFhVXhtZUZGbFJWRjZiVGx0VUM5c1pVWXJRVVp4TW1oM2FqQmxUSFpNVTFKdFp5OTNXRWQzZDBzMFdFRTVVVWgxWTJFMGNuSlpNRFpIVldoT056TlpDa293UlhkbE4ydHNRbWt6ZG5SUGR6QjZXWFJEVkdFNU1DdGhSbnBGUTFndlJVaFFkMnh1WTNoamEzZFRiMGt6U1hjMFNrMUtZMGg0S3l0Vk5rVXlaVWdLWW1KME1HSnBhalJpTVRseFpUazJNRnBGYTA1RU1ITmphREV4VUVKVU9YVkhTMnh5WVRWaUwxVndkM1JhVjFZMlRUa3dkVlpwZUVwM2JEQnhhRWg1VGdwcVVVVk1NM05MTkRSeGFIYzJOVXB6VTBwQlpHOHhSMEkyYUV0aFNpczBUekpKSzNoVmFFRmFSSE4yVlVWUFlrVk9ZbmwzY2xaWlYxSTFOM0k0ZVVrckNscDZXbXB3TUVsSGRGZzBWRkpITVV0cE5uaGFZbmhLVERkdmNuUTFiR0UwWXpGclJGaEJVMXBOZG5GWVRHUjNMMWxHTms5dldpdHZjbTVtUkZwc1pHY0tWVk40VUdSVWFXcEhaRzlTV1dGMU9ETnRSMkYwYkdVNGIyWmlXaTlzU0hGeGNsaHJUbEZNUmxsaFJsSTFibUY1WTFRMVIwWkpWMUJ0TkhSWVoxRkVNUW8wVTNOMFJuRXpNRTVDU21SMlFYaENjMUZ5T0U1cWEzTkdVRmxQS3pCNlJXazFiR042V210NlNVSTJTa0ZyUWl0YVVWaDRkVXh3TVdoMVMxSkJNQ3RYQ2sxUmRFSlljWGRVVVdrNVdsZzBiakZtUlRNell5dHlRVmRxWkRkc1pHOXdZa3RLVFd0eE1YaEZSRWQyUjJkRlFrMWtRMjg1YkZKV09HMXpjREY1Y1ZNS1YwcEdWbkZOVWs1UFJEZHVObmRrWVdGa2RIbHZNSEpYVjBaaGVIcHJUbmNyWjBaRldtSTJTakpqV1c5NmJXMXROV1pLUzJsbFNVWnBZMHBOYWtoaE53cGpjbGd6Y0VaNlZXUlBaMEZ5VUZaUU9XYzlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zM2htZ25tNy1ndGI2bHVscS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHJmZzI1eApjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHJmZzI1eAogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdDJjdzV0YW0yM2ZfY2xpYWtzdGVzdHJmZzI1eAogIG5hbWU6IGNsaWFrc3Rlc3RyZmcyNXgKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0cmZnMjV4CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdDJjdzV0YW0yM2ZfY2xpYWtzdGVzdHJmZzI1eAogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlJEUnRLME16T1ZOV2JFOTBNRWR5VGtsVE5YaGtla0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQk1rMVVWWGxOZWxWNFRVUk9ZVVozTUhsT1ZFRXlUVlJaZDAxRVFYaE5SRTVoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTjVSVFZCUlZWUVNUWjRTekpIWkRFNFJYQnNZbUVLZEc4NFJGRllWR1I1Y21ablFrZzNSRTFuVlN0V1FWWkVVSGxtV2tsUE5uQnZaMnd2Y1dWdVlWcGFNVTl2VW5CV2JrcDVMeTgxUVVsSlJFNUVaM0JzU0FwbmVXZDFRWGxUV0hsTlVsVjFjeThyVUdoaU9FWTRhM0l4VjFkQlVYVmxaRnBNZFZOSU1IVlVMMjh3U1VWTFVFRldhalk1VEVWcVpUVjZWWEYyYkRoMkNqSlVVSGhzZFRKbk5uZ3pTVFp6VEVWTFEweDRSamhTUnpJcmNISmhNMnBpWWxobFN5dE5WVmRhTTJsNFRWY3lZVmhhYjI4NFFVMVRMMmhWTTBoQ1duY0tPRXcwTkd4a1NrcG5aRkpsVFdKcllYUlVVSEJsTTB0UGFrODRZa0UxTVc5U1RETk5ZekIzUzJkS1ZVSTRkMHd4VkdsdFRsSnRRM0VyUVhKamIyb3lSQXB6Wm1ZM0szVm5Oa0Z3YTJoaFVrNU1XVlZsYjFZd1FXVkhWeTg1ZURsUWFuSlRSblp0T0Vaa01sTlRjMkprVVZWRlRWbENkREoxVDNKRlNUSjJUM1pxQ2t3dlpXWkpTSGQ1T0U0MFEzVkZSWG95ZG13M1ltWTBVRFp0TTNkaldrWTROSHA0TjFoSFkxSTFlR05RU2s1VlYwcERSbXRPWTFOdmMzVjRhMHR1TTFNS1VXWjBaU3RFZUhCNWEzUjFabFZ2ZUhkWVF6QjBhazU2TDJVemFYZzFVM2RrUTIxc1FqbHhaU3N3ZEZkS2NVUlhiUzhyYmprdlJISlNiMFZrWjBsME5RcDFRakpIVW5oTFlrMUNWbTU0VmtGbWMxaElabEp1WVVJeVJrMUdTakpSU3k5d2RIUmlSbGhDYlZWbFNXUmFORUZtVUVodVNYbGhhRk5CYTNSck1WVnpDbHBWYUZJME1tMVBVVUZZV0V4cU5HVmFXbkkyZVZsT2RFcHRiRXBJZVRKbWRXVmhabTVrUVhvM2QwVlBOVlpKT0dnMFNYcFdabWN6UlZKNk9YUkxjRkFLYjBSbGNHNVJOWGhUV2tvelpXNW9ZVlJYWkc5R1YxWmhTMVJwYkRWcVVVNXNjRlZGTVRsaFJrRlhlbkJsVmxscmEyVjNTM0ZhZEN0VGFHTndiekJXYWdvMVVHTnNXR3hyZWl0TmJ6YzVlREZyZDNwUU5rTlJTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsSlZWRUZZZUhrd1lVVUtkM0UzWmxGT2VIaFlXR0paY3pOclVHOXFRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRk1URFJtTVZGaU9VMVdkRXh1TUVSTmFHOUdMd3A0YzFaTU4zWnNha1YxVUhscGVYUjFZM2RRVTB4NGNXRjBXWEpoZFVSRWFHaFJjVU5YWVhCUFYwcDJUR1F3ZUVOYVV5dDNUME50WXpaM2VYQTFTelpaQ25CV05HSjJWRk52VjBsTWJuTkRTRmhOT1M5cGRHdElUMkpQYVZWaVVqWkplbVJaUW01NE0zbE5PRGN2TUdoWlFWSkJWazlFYjNwR1pUQXpkVVZYUmxnS1dETlpVRFpQWkZOUFZtaHZPQ3REVUZCM1kyaFdSR0paTWs5UFZXaDJVSEZSY1ZGck1rbGxORUZaTm5jdlZEQjNPSHB6U0dKeWJHbDNjemwxWTFNNGVRcHRXWE53WkdvNU1VSnhRalpqVEd0NlkxQlFSbFpIYjFKNmNFVjFkRTFJZGs0dldURlhTVVpQZFVaTGVFeEVhMnRJYUVodEsyaHFSM2hEVFRkWU1pc3dDamhFZUZORWVtbHZkbk5EVms1V1JXbE5VR2czVURZMU1XcExWRVpYY3pJd2JEUTRTRGRSY2pkeFowTkpORkZTVG5wUFZVUm1hVzB2VTB4d00ybzNiV2NLTkhscWFWZFdlWFpsUmxwclEwMXBRME5aVW1ZeU9FcFlWRXQ1WVc1REsyeDBTMDVsZW5FNVNuTm5hRVo0ZEZOWlNFY3lTSE5HTDNSM1ExWjFkRTAwUkFwQk9URTVXamN5VGxOQ1dqUTBVR1ZQV0ZOUVdVZFZRMjB2YUVwRWVqQkNPRkkwU1dSc1Vrd3dORlV4WVN0T2N6Tm5hRmQ0VDI4d2FrbG5RVkJqTVRGbkNrMWhaVEZFVGxwd01tVlFVSEZ0Vm1ORWRtUjZWR1ZCVlhFNVF6RlhVWEZRTHk5clVFNUNkazFzUVc1a2VqaG1kRGRhYTFCWFNtVjRVRTFYVkROTk1rWUtObmd2TjIwMVlVbGljVnBOWlRONlNXNWxNMjFqTVZrelZDOUtTR3RWTDNkb1JtTkdjMGhzT1VjNFdrNVlUV2R1TlZwS1ZEQk5Rak5VZERsME9VMTJVZ3BqYUZCd1JYVk9TSFoyVFdjeVRqVnlVek5MWVhGUWRscENlbnBPV0RoNmVWUlBkVzVDWmpkQ1dWSnpTSHBMVEhoeWFVaEJkbmRVVUhCbVlYTktRbEZWQ2xGU2NrMU5TVzFYTUc1c05VWnNXRXBUU1ZsM1NqQTRQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJjMmhQVVVKR1JIbFBjMU4wYUc1a1prSkxXbGN5Y21GUVFUQkdNRE5qY1RNMFFWSXJkM3BKUmxCc1VVWlJlamh1Q2pKVFJIVnhZVWxLWmpadWNESnRWMlJVY1VWaFZscDVZM1l2SzFGRFEwRjZVVFJMV2xJMFRXOU1aMDFyYkRocVJWWk1jbEF2YWpSWEwwSm1Ta3M1Vm13S1owVk1ibTVYVXpkcmFEbE1heTgyVGtOQ1EycDNSbGtyZGxONFNUTjFZekZMY2pWbVREbHJlamhhWW5SdlQzTmtlVTl5UTNoRFoyazRVbVpGVW5SMmNRcGhNblEwTWpJeE0ybDJha1pHYldRMGMxUkdkRzFzTW1GTFVFRkVSWFkwVms1NGQxZGpVRU1yVDBwWVUxTlpTRlZZYWtjMVIzSlZlalpZZEhscWIzcDJDa2QzVDJSaFJWTTVla2hPVFVOdlExWkJaazFET1ZVMGNHcFZXbWR4ZG1kTE0wdEpPV2MzU0RNckwzSnZUMmRMV2tsWGExUlRNa1pJY1Vaa1FVaG9iSFlLTDJObVZEUTJNR2hpTlhaQ1dHUnJhM0pITTFWR1FrUkhRV0prY21weGVFTk9jbnB5Tkhrdk0yNTVRamhOZGtSbFFYSm9RazA1Y2pWbE1qTXJSQ3R3ZEFvNFNFZFNaazlOT0dVeGVHNUZaV05ZUkhsVVZrWnBVV2hhUkZoRmNVeE1jMXBEY0Rrd2EwZzNXSFpuT0dGamNFeGliakZMVFdOR2QzUk1XWHBqTHpOMENqUnpaVlZ6U0ZGd2NGRm1ZVzUyZEV4V2FXRm5NWEIyTDNBdlpuYzJNR0ZDU0ZsRFRHVmlaMlJvYTJOVGJYcEJWbG80VmxGSU4wWjRNekJhTW1ka2FGUUtRbE5rYTBOMk5tSmlWM2hXZDFwc1NHbElWMlZCU0hwNE5YbE5iVzlWWjBwTVdrNVdURWRXU1ZWbFRuQnFhMEZHTVhrMEswaHRWMkVyYzIxRVlsTmFjQXBUVWpoMGJqZHViVzQxTTFGTkt6aENSSFZXVTFCSlpVTk5NVmcwVG5oRll5OWlVM0ZVTmtFemNWb3dUMk5WYlZOa00zQTBWMnN4Ym1GQ1ZteFhhV3MwQ25CbFdUQkVXbUZXUWs1bVYyaFJSbk0yV0d4WFNrcEljME54YldKbWEyOVlTMkZPUmxrclZETktWalZhVFM5cVMwOHZZMlJhVFUxNksyZHJRMEYzUlVFS1FWRkxRMEZuUW01MWIzUXlZVU40YUZoVVZucEZWU3QzTlhFdlRFbFFTVE5TUldGME9YbHhZV1pEVUZjd1pXeExRVU5yT0c1aGJ6VnBWSGhqV2xnelFRbzVjRzAwTVU0MFNEaHJTR3AzY1VaM1IxazJkRzVSZDJaa1FrTlVTRzEzYlU5VlFqQm9ZMk5RVkNzMVpVODBObkE0TjFWRlMyNDNRV055YURFM2VuQjJDbWxJYXlzd1RsVllPRXBHYVU1U2NrRnRUelIwYjFkS1VEZHhjVVowWWtSVVRtdGFaa3RRVjJ4c2JFbDZZblZ1UkhCRlRqVjJlSEJUZW1wNVRraE1kVFFLYjA5Wk1VRmlja1pDU0ZSRGNWZHNiVVpWUkVaTVIyNTRUM2hSTjFnMVFpdGFORGhvYzBaWGFrNU1WMDVSUTFodlEwUmxXRzQzUzJJcmMxRlRLelF2VUFwaGR6Tk9Va1U0U0ROeFZraG1UM053Vm5Wb2VWUnhRVTVIZUdoWlFWTXZhR2RMYzB4T016UTFablp3TVU4d2NFSllaVzFGV0hVM2ExWnBWWGRDZVZwc0NqSTRWMDFTUkU1bWJWYzBhVGRuTlZrMk5UTnJZM0ZVZWs4MlRIWk1kMUE1UkZseE5uazJjMHBoVkU5alZ6aFhkalJQT0ZWQlpraDZVaTlUYldGMFlYVUtXamRaVURWdlNGZFhaV05rYVhnNFluaEpiVk01VkVaell6TkpOREZoZG5WbmMxVmhNbkZSYkUwemQwVlZhRzFVWWpGS2JrdFVablYxTmxBcllUQmllQXB0YjNkTFRITkJSSFo2TmxoV2FqWkxiRVZVWlVkcVQwWjFXV1ZzTjNSWlIxVjVObEE1TkdWblMwOUVaV2xOVkZBMFpWaEhWRTVSWm1wR2REWllWRGwyQ2taRWJGb3JZV00zU2pGdFJHUkRLMEowUVRWTFJpdGhhelF5TVhFd1NFa3hUbmMxZDBsb01qSmhObWxOWlZkc1YxVlZaMjFJVDBoVFlXMVlaR1ZTUmxVS1oyNXlWSGhNZDFOUWF6VjFhMDlDTWtGMksxSlBNRnBoWlhVeVQyMXNTM0JOZG1OWldXbE9TVmxNY2tOT1RrRTJORFZpVjFka1VHVlhUWGxLVVRjMlZRb3dVbXg2UkhaTGNVeFBOMlpHUVhWUmQwWkpUMmsxVDI1dFkxTnlVeTlsVWtZMk9FTXJWazlXYlRac01YUkdiMnRtVVV0RFFWRkZRVFZ3VUd0NWFqSkNDbE56U0cxc1NXMXlOUzl3T1dwbFkzUm1Uak5tWmpnd1FUVjFPWEpwZVhOMGRHVkViM050YWxsMWFsUm1UWFYyYkV0TlltaHJjRk13V0RoblZGSkZRelFLU2t0elEzWlJNVWRRYmtJeE5qSkJSSGxaWkdVdlZtMWhOSFJQYUd4MGVqVndSRXRTVERsSVpVZ3JhbE5UU1dkcVJXaHJWbTR4YVVZeGNHcGhZa0V4Y2dvNU0wVXhZWFZqT1VWNlFVdExhRmxuT0V4MmFuSjVMMjQ1TXpFeGJXOUJVMEo1TmtOdGQzWTJXbE0wSzIwM1V6azFSM05uV2xseFJTdExhR3gzWlRWc0NrSjNlVVZ1U0V3ck9IRnBPV3hWTURkVVVuTlhNVlJoZFdGTGFtWlRhbTVSV2pCTVpEbERUMnRUYzFGRVNFdFFTemhSTjJGRE5rZzBUVGRaUjJaNFlWVUtUbmxYVFhnemNqZENjMnB2TjJwalIwRkRlREZHUjNoU1VuWXpWV3BWYkhOUlJVVk1TbmgwTlRWaFJHeHBURTVwYm1WTlpYWk5Uakl6VEhCMFNFcGthUXA1TTNNMlRubFZSekJ0VWtGWmQwdERRVkZGUVhoaVdFODRUbFZIYmpoWldHdEpRVE5pTVZNMVIwVnJaV2hTYmxsYWJpdHNTME5vU0V0TVNsaFphVmROQ2tVNWFERkxiQ3N4V21GR1JFVlpVbXhLTjFaek5GZHJabWs1ZEROMFdUSnNUVXRFWkRkTVltbHVUMUZzWkV4WVFYTXZkREZNUkhCU2EySm1aeTlpZEZrS1lVRktkbGQzZVRodFdHSnFhbk12WVZkclNtTkllUzlCY25SRE5VSlljRWh2YlRVek9GUlZhVTk2WjNkUGJ6bDZTeTloYW1GcmVYWnlOWEpJWjNONlVncFZURFkzTVhad2QzQnlhVEZsVGpkUFVHcE1NRGxoVVVadlluZHBVVVpvUlhoRFMybG1XWGt3ZFdoRU1FMWhNVkpvT0M5VFMxaE5TMG94YVZOVk9EVjBDa3hEYmtFcmQyMXhTMWh5VDFKS2MwSnViazVKTW10VFRXdFZUVVpwVERsc2FXWk1SemxoV1VGeVozWmxRWEZLYnpRclZGQTNTV1kzWjNORFJWWmxjMGtLZW0xQ1ZIbE9TekZHWnpCUVJEWjJhalp1VTJSUFIxUkRkVk5NU201bWNEUXdZbTlxTUVrMlNtOTNTME5CVVVWQk1sb3JWMjVsWW14Qk9Hb3dkSGhqYkFwUlFVdHJkeXN3UVdWemVubGhRek14TDNkRVZEaFFjMnN6Ym1aVVUwdG5ObVpoZW5aVFMwWnhibFY2ZDJ4RFpEQkJjamRWY1VkUGNFdFVjV0ZyUWtwaENsUlJOVnA2V0dwSGRXdDJhRTVLSzBFeGVuUkdWbEl4YkVwVWRIY3ljMEp4ZEVwV1N5czFaelVyV21ab1ZqUTNNbUY1TDBSWU5UVm1WelpFYlN0UGIyUUtUU3RJZDJobU5YbDNjVTlxV25KTFFtSnZOV3RHUW14NVlXOU1WVlpGUVNzMldWb3pTWGRETlVKVlEzbDVRVTkzVFhaNlJscG1PVFpNVDJZNGRHRnBNd3A0YUVoTVRsbEpObE5VUldKSlRYWkhWM2hQWjBFckswUkxhVXh5VmpoVVdVTktWSFZHZG1Kck1GSllhV0ZJTlV4M05IRXliMUJoVUd3eWEwTmpWR2MyQ21WNFNHVXZkemRDZUVOSmVITnlMekZEYkhORFdsRk9ObVo2Tm10d2VHMUJkVWRHWlc5MVNXdFljalpDVVZWdUwwRndLMVkwYUd4cU4yOWtNSG8xTVV3S2VtZEZLek4zUzBOQlVVVkJiR0UzYTNkd05URlRiV1FyUm1FclRYbExVRGRGYmtSb1VUSklhVE5ST0UxeFp6azRaVVZ2TVUxRFFTOUphRTVDSzFabVJ3cHFUeTh2VWk5aVZsbHhMMUJvUVZSRWJHMDBUUzl2TkVSdU5FcGlTV3RxTHpOcmJ6Uk9WbXRhVlU5dmVYUnpOV05VVW1STGNIRTJPRFowYmxaR2NtcFpDak5PVFU5NU1rNHZOamd2VERCUGVXeFZNMVJCWWpJME5WbzNaRGcxVldkV05UUklUblZpWnpkUFVFTmpibVpFTjBoa1luWTNORFZFWkc0NVFURlRlRGdLVG5rd2JXSjVSVFJSWjNwM1QycDZORFp2TnpFeU5FMDBXazF1V0M5WVpWZHhSSGRJZEUxcFJVeHRPV1p5U0ZCc1NIYzNSMnRrTlRVNWRrdFNiMVF5WVFvM05XRkVURnAxZUV0U1dXTTVUM0p5UWxaeldtbEpUbTVUTXpWaWRGVlVPWGhOWkVaVFVHUlBkRU5NWVdKRVozcGhZbFkxVHpGallreHhkblJKZFVOeUNuRnpjM1ZQVHpSd1QzRnpXa1ZOV0hkVGNIZFZlWEE0UkRnM2VXRlBkRFV2VVhkTFEwRlJRV2xIV1Vob2JTOTNaVTVUYVU1bE5VOVNRbGt4YjAxa1lqY0tRV1p0TVRWamNFNW1hRkozYVhGNlRrMXhNSHBOTkVSd1FYZ3hOemhFYVU1ak1rRlRZV0Z0V0VRclJsbE1hVU5SUzBwcE5sRnhORmR3TUdGQ1dWaGpXUXBLWjFWbVREQjBjRGR6WjBaMlkzcG1hM0JXU1Vac1dHcGtWR2hyVG5JMGRHdEtaVmczYVhCYUwzTlRNR2RJY1hGWlZUTkZhWG8xVjJ4NVoxZFpUSG8yQ2lzd2FqaHFlRWREUmxoNkwwZFFkbXhZTVVkemFUVnNUVEp2VjBWWVlubFZjUzlHVFRSYU1WbG9WbGd3SzNjdmVXSklNM0FyTjBrek1IWmxUR1pGZVRrS2IwcDVkbkJVVFc1dlNIaEtNbXhIUWxodGRHTnFjV1JSVERKd1kwb3hibUkyUkdkNlVqWmlOM0ZEVUU0MWNUSkRPVGhMY0VaMlJIbFVVbGhwTlRkd2RncHVMMDVZT1VRMFVreHJXbXhuU2tORFIyeDNkWHA2VHpCMFZsa3lOV3hsVDFaU01VNVdkMmhhTkVobWJrdENUVTVHTXk5QlRIWllWMUUzTWxRS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiB4cWV2aHdwY2ppODl5aG0yZTdsYWd2bjdyM2k2dHJvMWZqcTV5endza3N0eXI2b3MzZGtsemd4Z3d1ZjljNjBjYnBhb2U1OHN6cnF4bjl5ZGdocHUyZmJheWpwdjNqc212Y2hzMTF6bmc1Y3RuNWdtNmNsN21jaGZvc291djZlZgo=\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13072' + - '13084' content-type: - application/json date: - - Wed, 15 Mar 2023 11:17:50 GMT + - Fri, 16 Jun 2023 00:04:43 GMT expires: - '-1' pragma: @@ -725,34 +891,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '1036' + - '1037' content-type: - application/json date: - - Wed, 15 Mar 2023 11:17:51 GMT + - Fri, 16 Jun 2023 00:04:45 GMT expires: - '-1' pragma: @@ -794,36 +960,37 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"\ + enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\"\ + ,\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n\ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c45e7b4a-d536-4498-bb77-81fcd3492092?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/738a3e45-8ed1-4e0b-b95b-f44c14becebd?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1068' + - '1069' content-type: - application/json date: - - Wed, 15 Mar 2023 11:17:54 GMT + - Fri, 16 Jun 2023 00:04:51 GMT expires: - '-1' pragma: @@ -835,7 +1002,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 201 message: Created @@ -853,14 +1020,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c45e7b4a-d536-4498-bb77-81fcd3492092?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/738a3e45-8ed1-4e0b-b95b-f44c14becebd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a7b5ec4-36d5-9844-bb77-81fcd3492092\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:17:54.7448732Z\"\n }" + string: "{\n \"name\": \"453e8a73-d18e-0b4e-b95b-f44c14becebd\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:04:52.1243131Z\"\n }" headers: cache-control: - no-cache @@ -869,7 +1036,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:18:24 GMT + - Fri, 16 Jun 2023 00:04:51 GMT expires: - '-1' pragma: @@ -901,14 +1068,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c45e7b4a-d536-4498-bb77-81fcd3492092?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/738a3e45-8ed1-4e0b-b95b-f44c14becebd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a7b5ec4-36d5-9844-bb77-81fcd3492092\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:17:54.7448732Z\"\n }" + string: "{\n \"name\": \"453e8a73-d18e-0b4e-b95b-f44c14becebd\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:04:52.1243131Z\"\n }" headers: cache-control: - no-cache @@ -917,7 +1084,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:18:54 GMT + - Fri, 16 Jun 2023 00:05:22 GMT expires: - '-1' pragma: @@ -949,14 +1116,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c45e7b4a-d536-4498-bb77-81fcd3492092?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/738a3e45-8ed1-4e0b-b95b-f44c14becebd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a7b5ec4-36d5-9844-bb77-81fcd3492092\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:17:54.7448732Z\"\n }" + string: "{\n \"name\": \"453e8a73-d18e-0b4e-b95b-f44c14becebd\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:04:52.1243131Z\"\n }" headers: cache-control: - no-cache @@ -965,7 +1132,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:19:25 GMT + - Fri, 16 Jun 2023 00:05:52 GMT expires: - '-1' pragma: @@ -997,14 +1164,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c45e7b4a-d536-4498-bb77-81fcd3492092?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/738a3e45-8ed1-4e0b-b95b-f44c14becebd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a7b5ec4-36d5-9844-bb77-81fcd3492092\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:17:54.7448732Z\"\n }" + string: "{\n \"name\": \"453e8a73-d18e-0b4e-b95b-f44c14becebd\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:04:52.1243131Z\"\n }" headers: cache-control: - no-cache @@ -1013,7 +1180,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:19:54 GMT + - Fri, 16 Jun 2023 00:06:23 GMT expires: - '-1' pragma: @@ -1045,14 +1212,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c45e7b4a-d536-4498-bb77-81fcd3492092?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/738a3e45-8ed1-4e0b-b95b-f44c14becebd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a7b5ec4-36d5-9844-bb77-81fcd3492092\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:17:54.7448732Z\"\n }" + string: "{\n \"name\": \"453e8a73-d18e-0b4e-b95b-f44c14becebd\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:04:52.1243131Z\"\n }" headers: cache-control: - no-cache @@ -1061,7 +1228,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:24 GMT + - Fri, 16 Jun 2023 00:06:56 GMT expires: - '-1' pragma: @@ -1093,24 +1260,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c45e7b4a-d536-4498-bb77-81fcd3492092?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/738a3e45-8ed1-4e0b-b95b-f44c14becebd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4a7b5ec4-36d5-9844-bb77-81fcd3492092\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:17:54.7448732Z\",\n \"endTime\": - \"2023-03-15T11:20:54.530248Z\"\n }" + string: "{\n \"name\": \"453e8a73-d18e-0b4e-b95b-f44c14becebd\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T00:04:52.1243131Z\",\n \"\ + endTime\": \"2023-06-16T00:07:08.9682005Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:55 GMT + - Fri, 16 Jun 2023 00:15:29 GMT expires: - '-1' pragma: @@ -1142,34 +1309,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"\ + enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\"\ + ,\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n\ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1069' + - '1070' content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:55 GMT + - Fri, 16 Jun 2023 00:15:30 GMT expires: - '-1' pragma: @@ -1201,48 +1369,48 @@ interactions: ParameterSetName: - --resource-group --cluster-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\": - \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n - \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\"\ + : {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2182' + - '2184' content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:55 GMT + - Fri, 16 Jun 2023 00:15:32 GMT expires: - '-1' pragma: @@ -1274,48 +1442,48 @@ interactions: ParameterSetName: - --resource-group --cluster-name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\": - \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n - \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\"\ + : {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2182' + - '2184' content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:57 GMT + - Fri, 16 Jun 2023 00:15:33 GMT expires: - '-1' pragma: @@ -1347,34 +1515,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"\ + enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\"\ + ,\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n\ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1069' + - '1070' content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:57 GMT + - Fri, 16 Jun 2023 00:15:35 GMT expires: - '-1' pragma: @@ -1396,7 +1565,7 @@ interactions: body: '{"properties": {"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "scaleDownMode": "Delete", - "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.24.9", + "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "tags": {"key1": "value1"}, "nodeLabels": {"label1": "value1"}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' @@ -1416,36 +1585,37 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Scaling\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"\ + enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\"\ + ,\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n\ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/670e2c20-f42f-401a-b4c8-88be8d825e08?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/114f9e64-ffe7-4296-8d46-eec518c62fc5?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1067' + - '1069' content-type: - application/json date: - - Wed, 15 Mar 2023 11:21:00 GMT + - Fri, 16 Jun 2023 00:33:50 GMT expires: - '-1' pragma: @@ -1461,7 +1631,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -1479,14 +1649,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/670e2c20-f42f-401a-b4c8-88be8d825e08?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/114f9e64-ffe7-4296-8d46-eec518c62fc5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"202c0e67-2ff4-1a40-b4c8-88be8d825e08\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:21:00.8080581Z\"\n }" + string: "{\n \"name\": \"649e4f11-e7ff-9642-8d46-eec518c62fc5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:33:51.1600391Z\"\n }" headers: cache-control: - no-cache @@ -1495,7 +1665,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:21:30 GMT + - Fri, 16 Jun 2023 00:33:50 GMT expires: - '-1' pragma: @@ -1527,15 +1697,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/670e2c20-f42f-401a-b4c8-88be8d825e08?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/114f9e64-ffe7-4296-8d46-eec518c62fc5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"202c0e67-2ff4-1a40-b4c8-88be8d825e08\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:21:00.8080581Z\",\n \"endTime\": - \"2023-03-15T11:21:56.4775126Z\"\n }" + string: "{\n \"name\": \"649e4f11-e7ff-9642-8d46-eec518c62fc5\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T00:33:51.1600391Z\",\n \"\ + endTime\": \"2023-06-16T00:33:55.0199428Z\"\n }" headers: cache-control: - no-cache @@ -1544,7 +1714,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:00 GMT + - Fri, 16 Jun 2023 00:34:21 GMT expires: - '-1' pragma: @@ -1576,34 +1746,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"\ + enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\"\ + ,\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n\ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1069' + - '1070' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:00 GMT + - Fri, 16 Jun 2023 00:34:22 GMT expires: - '-1' pragma: @@ -1635,34 +1806,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"\ + enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\"\ + ,\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n\ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1069' + - '1070' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:02 GMT + - Fri, 16 Jun 2023 00:34:23 GMT expires: - '-1' pragma: @@ -1694,26 +1866,26 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1/upgradeProfiles/default?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1/upgradeProfiles/default\",\n - \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools/upgradeProfiles\",\n - \ \"properties\": {\n \"kubernetesVersion\": \"1.24.9\",\n \"osType\": - \"Linux\",\n \"latestNodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\"\n - \ }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1/upgradeProfiles/default\"\ + ,\n \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools/upgradeProfiles\"\ + ,\n \"properties\": {\n \"kubernetesVersion\": \"1.25.6\",\n \"osType\"\ + : \"Linux\",\n \"latestNodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + \n }\n }" headers: cache-control: - no-cache content-length: - - '464' + - '465' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:02 GMT + - Fri, 16 Jun 2023 00:34:25 GMT expires: - '-1' pragma: @@ -1745,26 +1917,26 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2/upgradeProfiles/default?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2/upgradeProfiles/default\",\n - \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools/upgradeProfiles\",\n - \ \"properties\": {\n \"kubernetesVersion\": \"1.24.9\",\n \"osType\": - \"Linux\",\n \"latestNodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\"\n - \ }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2/upgradeProfiles/default\"\ + ,\n \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools/upgradeProfiles\"\ + ,\n \"properties\": {\n \"kubernetesVersion\": \"1.25.6\",\n \"osType\"\ + : \"Linux\",\n \"latestNodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + \n }\n }" headers: cache-control: - no-cache content-length: - - '464' + - '465' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:02 GMT + - Fri, 16 Jun 2023 00:34:26 GMT expires: - '-1' pragma: @@ -1796,34 +1968,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"\ + enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\"\ + ,\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n\ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1069' + - '1070' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:03 GMT + - Fri, 16 Jun 2023 00:34:29 GMT expires: - '-1' pragma: @@ -1845,7 +2018,7 @@ interactions: body: '{"properties": {"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "scaleDownMode": "Delete", - "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.24.9", + "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "tags": {"key2": "value2"}, "nodeLabels": {"label1": "value1"}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' @@ -1865,36 +2038,37 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key2\": \"value2\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key2\"\ + : \"value2\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"\ + enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\"\ + ,\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n\ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/24ef8ea6-2f58-45b6-a72a-e1971cad1c0a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cde3a196-c08b-42ea-a76f-56129782d91d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1068' + - '1069' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:05 GMT + - Fri, 16 Jun 2023 00:34:32 GMT expires: - '-1' pragma: @@ -1910,7 +2084,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cde3a196-c08b-42ea-a76f-56129782d91d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"96a1e3cd-8bc0-ea42-a76f-56129782d91d\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:34:32.9882567Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 00:34:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -1928,15 +2150,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/24ef8ea6-2f58-45b6-a72a-e1971cad1c0a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cde3a196-c08b-42ea-a76f-56129782d91d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a68eef24-582f-b645-a72a-e1971cad1c0a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:22:05.6051444Z\",\n \"endTime\": - \"2023-03-15T11:22:15.7870529Z\"\n }" + string: "{\n \"name\": \"96a1e3cd-8bc0-ea42-a76f-56129782d91d\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T00:34:32.9882567Z\",\n \"\ + endTime\": \"2023-06-16T00:34:40.6171589Z\"\n }" headers: cache-control: - no-cache @@ -1945,7 +2167,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:34 GMT + - Fri, 16 Jun 2023 00:35:03 GMT expires: - '-1' pragma: @@ -1977,34 +2199,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key2\": \"value2\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key2\"\ + : \"value2\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"\ + enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\"\ + ,\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n\ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1069' + - '1070' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:35 GMT + - Fri, 16 Jun 2023 00:35:03 GMT expires: - '-1' pragma: @@ -2036,48 +2259,48 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key2\": - \"value2\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n - \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"key2\": \"value2\"\n },\n \"nodeLabels\"\ + : {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2182' + - '2184' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:36 GMT + - Fri, 16 Jun 2023 00:35:06 GMT expires: - '-1' pragma: @@ -2111,8 +2334,8 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: @@ -2120,17 +2343,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57e1ba18-ddaa-4530-b39e-36651251e0bd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3825ab7b-b915-4e0b-a5b7-d2cb7325585f?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:22:37 GMT + - Fri, 16 Jun 2023 00:35:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/57e1ba18-ddaa-4530-b39e-36651251e0bd?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/3825ab7b-b915-4e0b-a5b7-d2cb7325585f?api-version=2016-03-30 pragma: - no-cache server: @@ -2160,8 +2383,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -2169,17 +2392,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57bd39ff-06d7-4ea9-8673-e7dbb22e56f2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6d088bab-bc7c-42c9-8796-3fa4d82b85f4?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:22:38 GMT + - Fri, 16 Jun 2023 00:35:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/57bd39ff-06d7-4ea9-8673-e7dbb22e56f2?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/6d088bab-bc7c-42c9-8796-3fa4d82b85f4?api-version=2016-03-30 pragma: - no-cache server: @@ -2189,7 +2412,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_create_scale_delete_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_create_scale_delete_msi.yaml old mode 100755 new mode 100644 index db3732cabb4..9c52d54119e --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_create_scale_delete_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_create_scale_delete_msi.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:16:17 GMT + - Fri, 16 Jun 2023 00:35:20 GMT expires: - '-1' pragma: @@ -53,12 +53,11 @@ interactions: "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -69,67 +68,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1440' + - '1732' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-labbtw3e.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-labbtw3e.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-lvd0a6fl.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-lvd0a6fl.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b062826-e680-49cf-bf8e-27a806ca781a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bdcd5d8c-65f3-4817-9f5a-0f4d65db3c34?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3211' + - '3539' content-type: - application/json date: - - Wed, 15 Mar 2023 11:16:20 GMT + - Fri, 16 Jun 2023 00:35:28 GMT expires: - '-1' pragma: @@ -141,7 +141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' status: code: 201 message: Created @@ -159,23 +159,23 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b062826-e680-49cf-bf8e-27a806ca781a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bdcd5d8c-65f3-4817-9f5a-0f4d65db3c34?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2628068b-80e6-cf49-bf8e-27a806ca781a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:16:21.447593Z\"\n }" + string: "{\n \"name\": \"8c5dcdbd-f365-1748-9f5a-0f4d65db3c34\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:35:28.0977011Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:16:50 GMT + - Fri, 16 Jun 2023 00:35:28 GMT expires: - '-1' pragma: @@ -207,23 +207,23 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b062826-e680-49cf-bf8e-27a806ca781a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bdcd5d8c-65f3-4817-9f5a-0f4d65db3c34?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2628068b-80e6-cf49-bf8e-27a806ca781a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:16:21.447593Z\"\n }" + string: "{\n \"name\": \"8c5dcdbd-f365-1748-9f5a-0f4d65db3c34\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:35:28.0977011Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:17:21 GMT + - Fri, 16 Jun 2023 00:35:58 GMT expires: - '-1' pragma: @@ -255,23 +255,23 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b062826-e680-49cf-bf8e-27a806ca781a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bdcd5d8c-65f3-4817-9f5a-0f4d65db3c34?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2628068b-80e6-cf49-bf8e-27a806ca781a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:16:21.447593Z\"\n }" + string: "{\n \"name\": \"8c5dcdbd-f365-1748-9f5a-0f4d65db3c34\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:35:28.0977011Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:17:51 GMT + - Fri, 16 Jun 2023 00:36:29 GMT expires: - '-1' pragma: @@ -303,23 +303,23 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b062826-e680-49cf-bf8e-27a806ca781a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bdcd5d8c-65f3-4817-9f5a-0f4d65db3c34?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2628068b-80e6-cf49-bf8e-27a806ca781a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:16:21.447593Z\"\n }" + string: "{\n \"name\": \"8c5dcdbd-f365-1748-9f5a-0f4d65db3c34\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:35:28.0977011Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:18:21 GMT + - Fri, 16 Jun 2023 00:36:59 GMT expires: - '-1' pragma: @@ -351,23 +351,23 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b062826-e680-49cf-bf8e-27a806ca781a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bdcd5d8c-65f3-4817-9f5a-0f4d65db3c34?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2628068b-80e6-cf49-bf8e-27a806ca781a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:16:21.447593Z\"\n }" + string: "{\n \"name\": \"8c5dcdbd-f365-1748-9f5a-0f4d65db3c34\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:35:28.0977011Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:18:51 GMT + - Fri, 16 Jun 2023 00:37:29 GMT expires: - '-1' pragma: @@ -399,23 +399,23 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b062826-e680-49cf-bf8e-27a806ca781a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bdcd5d8c-65f3-4817-9f5a-0f4d65db3c34?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2628068b-80e6-cf49-bf8e-27a806ca781a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:16:21.447593Z\"\n }" + string: "{\n \"name\": \"8c5dcdbd-f365-1748-9f5a-0f4d65db3c34\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:35:28.0977011Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:19:21 GMT + - Fri, 16 Jun 2023 00:37:58 GMT expires: - '-1' pragma: @@ -447,23 +447,23 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b062826-e680-49cf-bf8e-27a806ca781a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bdcd5d8c-65f3-4817-9f5a-0f4d65db3c34?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2628068b-80e6-cf49-bf8e-27a806ca781a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:16:21.447593Z\"\n }" + string: "{\n \"name\": \"8c5dcdbd-f365-1748-9f5a-0f4d65db3c34\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:35:28.0977011Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:19:51 GMT + - Fri, 16 Jun 2023 00:38:29 GMT expires: - '-1' pragma: @@ -495,24 +495,24 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8b062826-e680-49cf-bf8e-27a806ca781a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bdcd5d8c-65f3-4817-9f5a-0f4d65db3c34?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2628068b-80e6-cf49-bf8e-27a806ca781a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:16:21.447593Z\",\n \"endTime\": - \"2023-03-15T11:19:57.8611331Z\"\n }" + string: "{\n \"name\": \"8c5dcdbd-f365-1748-9f5a-0f4d65db3c34\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T00:35:28.0977011Z\",\n \"\ + endTime\": \"2023-06-16T00:38:31.1877507Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:22 GMT + - Fri, 16 Jun 2023 00:38:59 GMT expires: - '-1' pragma: @@ -544,64 +544,65 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-labbtw3e.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-labbtw3e.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/83e2d5b5-9851-4b01-9ac1-33a9e7081e19\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-lvd0a6fl.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-lvd0a6fl.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/492d20fc-a5c2-40e5-86d2-e3b2b215d797\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3864' + - '4192' content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:22 GMT + - Fri, 16 Jun 2023 00:39:00 GMT expires: - '-1' pragma: @@ -633,64 +634,65 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-labbtw3e.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-labbtw3e.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/83e2d5b5-9851-4b01-9ac1-33a9e7081e19\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-lvd0a6fl.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-lvd0a6fl.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/492d20fc-a5c2-40e5-86d2-e3b2b215d797\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3864' + - '4192' content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:22 GMT + - Fri, 16 Jun 2023 00:39:02 GMT expires: - '-1' pragma: @@ -724,15 +726,15 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUjAxb1dWcFpRbTl3YVRkUlNHdElNM1ozYVhBclJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCZWsxVVZYaE5WRUV6VFdwU1lVZEJPSGxOUkZWNlRVUk5lRTVVUlhoTlZHTjVUa1p2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVNeENuSjBaMk5MWTBZeGJsaHBUelZUTUZGcFUycGxkVk5QYkdFNFF6QlpiSFZDVjFSUWQyazNWVVJJZWxvNFVHNUNjVWd2UkRoWk1HTmpXazlFV0hkWWIxY0tSMUZSZUhOek4wRmhVSEprTlhWREt6QmhUUzk1YUZScmIzRkhWbU5SU0VrdmNWVmxTMmhuUXpoSk0ycGxXakZzTW1saWNWZFVjRUp6U21OSWIyUkxjUXBVU0hJMGVFaFVNVFJpT1RNd1JTOTVZemMxYzFOcE9UaFhWSFJMY0UxMFVsWldNMHB1UWk5eGJFRkNUV1ZGVUdKNlpXWm5SbkZyZFZWcFlWcERaMjVHQ2tWSGFrVkliVlJPY0d0aWVFUjNWeXRNUlZWeGJHeDJOV2RaYTFsMmVHVnJiR1JVWmpsSmJFMTZTVVpMYUhrMFNtNHphRlprWkdZM2FVeDFLMjVsV0VNS2IxRkVTMGhQVFZKbVoweGlRbGMxVW1waU5sZHpNQ3MzYWpadVF6RTBkVzlXV1V0SlNHMVpSR2xhTjBkTlVuRnhibGxDZUUxR01XRkhkVmhMUjNSbGVBcENVVmxHWVZwQ2FUY3hSams0UkVKU2JsbHBlWGhETVZOdFVYTlhNemR2VW10NVVubEhVVlpDU3pacWFqSXhaV0oxSzJwT1kyWXZVV1ZGWmxaemFWZDNDa3B1YWpkeVRtTkhaVzlHWm0xWGVUY3ZOSHBOUVdoNFJuRXlkMmx1VkhoVk0wVXlSSHA1VFZRek5VSXpjRlJvVDFkMFpIZDRkM0ExUWt0U0syczBMMjBLY21ONVVGVk5kRkJ3WWtKTmJUZFFTbGx3ZGxkV1RqRktVRkpFTm1FcmJtSnlNVXhNTldoTFZucHFaMEZMZDA5MFJuZFZMekprZFRoYWFEY3dUR2hrYXdwRFkyZE5LMDlCT0dONGFHbFZkQzlMT0RkcVlqSm1WRTVEVkN0SVlVeFZZbkZNT0dZMVdraFNja3MyUXpsbEswSm9NbTlwYlVOME9WSkpUMU50ZVU1SENrczJkblZOVUZoWk9WZFhhREJsSzJJM04wTTNUVWxzYW5Gb2NFTkRZMnBYY1c4NFkxUk1iRTlNV1d0UlNXOVNNV1o2ZDBsbVFYRTBSVEJoWXpkUlJ6QUtWRlJaZW5KdVEwdDROMUIxT1VoWWRIZEVRVGhqV0ZrMlFUbGtRbmxxTVZweWFtUlRSWFJNVTB0UlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWTlQweG5aRVYxYlUxNGJIRjJZWHBFQ25KWVNtNVhVV0ZyV0dGRmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGSU5tWk5UVnA2ZEdFMlQzRnJOazAxY25KMFJUZGtTWFJUUldjS1VWQldaV3hPV1VKdFptWm9jRVIwVWtOTVVXbHlaVEJWZFZkMlkxSjJXbE0yYWxSUVZHRnJjVkpGT0M5eVRFZEdVRWQ1VVZkV0sydzVXa05PZUhkU2J3cGhOU3N6Vkc5dVlsbHphMWRDYVZaV00weFFXazVsYW1wVVpFODBhMUpYVEhBMFUyeHNkM2hGUlhSQmVVcG5kbEU0Wm1RMlNFOXZjVFJ6TVVKVU5HdDZDa05IUWxSYWJETkVkMEpEWldrcmJFODNUVkUzWVU1U1dteFpSM2RQVFdrM2NGVTBkalU0UWxwck0ydGhSMUowVUVSaWN6ZHhlRUpoVmsxalZIVnJRaXNLZEN0U2FsTjVVVTlTVWprMldEWXZZVk5zYm1weE0xb3lhRnA0ZGs5d1QzRTBjVVpxVGtGM1N6WjVjaTh2UTFSbFdGQnhSbGxDVVRabU5GWjRNakUzTHdwdVRsTnlXazlzV1d4RlJVY3dNMVF5ZVc1VFRraElOVlZXVkU1T2JXcDBZV3RLY0hGRFptdGhMMnB1Y1VSTWVraDBOVlp5UlcxS2VuUkxiRWhOUkdKd0NsbFBhbU5sYVVwRFZWcHBSekp2VjI1RVdtMDNjM2xRVldSWk9HbFlTelp4UXpnNWJsWjRNVTlWV2s1T01YZGtabU5rVWl0SmJFTmFWalJGVEcxb1NtY0tSMVJ2UzFOWWRHMXVNR1ZsZW5OUGRXVlpSR1ZXTkZwTVdEbEhjRlpJYkVobVprZHlhV2cxVTJwVFQxTkxVM1p4VjBkelpXdFdURTFGYkdSUFZXdGpkZ294VlVFcmJUUjNObWR0YTA1cmMwaEhTV1J2UmtwcllqbHlOWEZNWlZsaWMwWjJabXhSZGpkRGJ6azFUV1kwU2pGTFIySnlOWFJrYldaSkwxcGlSbGt4Q2tGSFdrMU1Na0kwZERoclpGUmFjeTh3VDBkNGFqUlVWbWQ1ZVdJeldURlJNSE51ZVVWeVkzaHZZWEJuWTFsVFFVOHJaRkZuYm5sS2F5c3Zia1ZxVldzS2QyeE5SU3RpZDNSck5YUklaU3R3Y2pWS01HSlVkakJSUzBOMFZUTlRUR2xRY2treWVVdG5RbVEzUldsUmVTdEJVVWRtVWpSRlQxTTBWMlIwVlZJMWNRcGhXalo0VFdKNk9GazVkak54WVdVeENpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc256d3p5dWgtbGFiYnR3M2UuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RpNWJhd3cKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RpNWJhd3cKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3Q2NTNpbWJrZWFkX2NsaWFrc3Rlc3RpNWJhd3cKICBuYW1lOiBjbGlha3N0ZXN0aTViYXd3CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGk1YmF3dwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3Q2NTNpbWJrZWFkX2NsaWFrc3Rlc3RpNWJhd3cKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVWsyUkhCWVFWZHBVV05WVkRSUWFuazNha1ZVUkRSM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDE2UlRGTlZFVjNUbnBKTUZkb1kwNU5hbFYzVFhwRk1VMVVSWGhPZWtrd1YycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCY2tZMmJrWm5TalZwUlU1YVZWaFVOM1ZzY0hNS1prZGllWFJ3YW1SdmJEaHBVME0xUldKSWJtNUlNVFZSUVN0TlZXd3lRbkJsYTBsNlVFdEJVRU40VDB0QmQxRTJNWFZOUzNGcGFFaDBSbGs0U1ZSWlpBcEpjM2g0THk5UlpWWkRObEZETlU1NWNqRnJMMEkxTDJNeFdUVnNaREo1UldoVlRsQlFUa3cxVms5SmFXZGFha3R4SzJKUlREbEVhRFJoY0dJMGRITlhDbXN5TVUxUFdGaGFPRnBZUmtsQ01tODBUMjlzVFZvemFqaGFOVTV1TDFvNVJYbElZWEpaWVZSb1ZqWkRURzB6UlU1RFRqVXhVVFZSU25FMFQyRlRVWGdLUjBOdlNYTjNjMGcxVVRGT2VXSjZMMVZsUVdaWU1EbFBZbVp4TjBWVGIwWmtjSEZRTlRWclRqWkNTR3hyZFdaR2NGQXhSVEJWV2pneVdHSnZNRXg2ZVFwWk5WWXZhbkJ6Y0VZemVFZFBhbFpvTlhoS1RUaHlXRk5SUjFwWmFGaG9TelJYWm5KSGVFZDBjU3MxVDBjMVEwRjVhRkV2VVdOelRGazVjVVZrWWxKeUNsTnRLM0V2TWpka1IwdzBjMGxVVFRWT0x6WlFhVzlHU0RjM1RFMUNOR3RJUTJOdWJreEZjMFJrZVVVemMyZFJUa2RJVjA0M09IWkJOVFJ5U25kMFIwa0tOMHc1YzJObFNtdHJTa3hGYjBobmFuWldjMVJLWjNoTWJtVTFjRFJOYmtVemJXRnNhMDVxZGt4U1FrWnJOMmxFWm1SbVVFUkRRekI1Y1hWSGNYSm9TQXAxZEhvMldWTk1SWHBQYTBneVdHSXlZU3RvWWxGSVJHdEhlbm8zUW1VMVlqTTFhREEwVm1kTldrZzJWVkpPWkRZemR6WnhiM05JYkM5cWVYWlJhemxpQ2t4S01XdDZhMnhtV0ZoVFVrOWFZekZYU2s5clFsTjVWMVZ6Yms1WFkwSTRjR3BEZHpSc05rcGxTVVYzUXpSd2J6ZFVUbGhMTHpKMlR6bFFSVXRvZGpnS1Z5OUpiazV1VDNJM2NFWlJSa0pXZVVSVFNHUTBWa1V6ZW5CcGRUbHpVWFF4ZUVSeWFHOVNkMU5pZEZjclZESnlTRVE1UkUxMk9YRm5hMmxWTDJwdWVRb3lZMnd3YXpab00waHhTMng0WTFKemJXOTVWRXhqT0VOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWVFU5TVoyUkZkVzBLVFhoc2NYWmhla1J5V0VwdVYxRmhhMWhoUlhkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCUlZFMVpFNTFhSEZwV0U5MVpIQjBOV0p6WmdwM2NrNHhiazVRSzNOWFNHRmtkM016UVhCaFpGSTRjbTl2ZEhoUldVVmlXSEprVFRCRGNuSlFSVVp1U25CdFUxUjJObWhIZG10RlpYVkNia0pXTWtwQ0NrazBkM04wTjFkeVowOUlLMFl5TDFONWJVWTFPRXRIUTFOd1dqSkxla0pIVTJoR2VWcFpkRTk0YlRKMWQxWm1jRGw1V1V4RlRqbHRhWGRXVEdoU1ZFNEtOakJRVDBkWWJtcHdVRkpoYXpSTU1YbHlURTF0YVRoR04yOU1LMjVPV21kMllWUlljRFptUVZoRE9UTldTWFJxTjIwMGRsWnBUM0ZGTUZaWU1GcGxjZ3B6VDBWRU5XZFFjVWxMU1RsakwxTTFiRWg0YUdJeVdsUndTRkUzZEZOdk5tcHNVM0J1U2pFeGNsSjJaV054TjNjMFIyeGFXR1E1VmpWc00ybzJjRnB6Q2pkNFN6bENORzl2TkdFMlFXOTRZMGcyVTI5V1FYbFdVR1J3VG5kdlpHczJNMnBTVTJwWlkzUXJTRUU1TVd3MGQwUjRTRVpXTld0Q1lYSmtaM293TjFNS1NFczNOa0UwTlhwbllqaDJVMGt6YkZORkswNXRWVU4zVFRCd2FqVnZZVEphWVVkVVVtSlFTV3BJYjNWcVJuZ3ZkM1kzTWxWMlFVUk9WRkJhZFhCbFRRcHJlRmg0V0hCQ1VqVlpXRlprVkdZNWNHZFNkVTkwU1dFMk4yWlpTbmhVWW5wRVNUWkNaV0Y1TUhkclEyZG5WV2gzTDBGRVdHUTRWVGRhTkZkbFdsbG1Dak5qVjBac0wwaERkV1ZHZEdKNFZHeDJhM3BpTmpKUFEydzFSa1l6VWt4NWJraHRZM05OU1VKblZGQlNhRVp0U2s1SlNFVnZka3gwVUZsc09GaENWRFlLTDNSdFlrcEtlbXhSV2pKU056SnlhV3hoWVhCWmVIcE9SVTR6Ylc1YVptRkRaMVJtSzNvd01qbGhRa2xLUmpkb2RHeEJSMFYzTVZkdFdFcHpWSGswWmdwYWFuUkhVRlI0ZGxSNk5XNXNRbTB5UWtOVlMzcE1kMjVrWTJneGNIWjZka2RxWXl0QlFtMVRWM05WU3l0amJIVm9RVEJCUXpkUE1YZEVaMk5pZEVOS0NtZGFRaXRzTWxkWlV6VTFjRzh4VkhFelJIVnBaMlJSYXdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTbmRKUWtGQlMwTkJaMFZCY2tZMmJrWm5TalZwUlU1YVZWaFVOM1ZzY0hObVIySjVkSEJxWkc5c09HbFRRelZGWWtodWJrZ3hOVkZCSzAxVkNtd3lRbkJsYTBsNlVFdEJVRU40VDB0QmQxRTJNWFZOUzNGcGFFaDBSbGs0U1ZSWlpFbHplSGd2TDFGbFZrTTJVVU0xVG5seU1Xc3ZRalV2WXpGWk5Xd0taREo1UldoVlRsQlFUa3cxVms5SmFXZGFha3R4SzJKUlREbEVhRFJoY0dJMGRITlhhekl4VFU5WVdGbzRXbGhHU1VJeWJ6UlBiMnhOV2pOcU9GbzFUZ3B1TDFvNVJYbElZWEpaWVZSb1ZqWkRURzB6UlU1RFRqVXhVVFZSU25FMFQyRlRVWGhIUTI5SmMzZHpTRFZSTVU1NVlub3ZWV1ZCWmxnd09VOWlabkUzQ2tWVGIwWmtjSEZRTlRWclRqWkNTR3hyZFdaR2NGQXhSVEJWV2pneVdHSnZNRXg2ZVZrMVZpOXFjSE53UmpONFIwOXFWbWcxZUVwTk9ISllVMUZIV2xrS2FGaG9TelJYWm5KSGVFZDBjU3MxVDBjMVEwRjVhRkV2VVdOelRGazVjVVZrWWxKeVUyMHJjUzh5TjJSSFREUnpTVlJOTlU0dk5sQnBiMFpJTnpkTVRRcENOR3RJUTJOdWJreEZjMFJrZVVVemMyZFJUa2RJVjA0M09IWkJOVFJ5U25kMFIwazNURGx6WTJWS2EydEtURVZ2U0dkcWRsWnpWRXBuZUV4dVpUVndDalJOYmtVemJXRnNhMDVxZGt4U1FrWnJOMmxFWm1SbVVFUkRRekI1Y1hWSGNYSm9TSFYwZWpaWlUweEZlazlyU0RKWVlqSmhLMmhpVVVoRWEwZDZlamNLUW1VMVlqTTFhREEwVm1kTldrZzJWVkpPWkRZemR6WnhiM05JYkM5cWVYWlJhemxpVEVveGEzcHJiR1pZV0ZOU1QxcGpNVmRLVDJ0Q1UzbFhWWE51VGdwWFkwSTRjR3BEZHpSc05rcGxTVVYzUXpSd2J6ZFVUbGhMTHpKMlR6bFFSVXRvZGpoWEwwbHVUbTVQY2pkd1JsRkdRbFo1UkZOSVpEUldSVE42Y0dsMUNqbHpVWFF4ZUVSeWFHOVNkMU5pZEZjclZESnlTRVE1UkUxMk9YRm5hMmxWTDJwdWVUSmpiREJyTm1nelNIRkxiSGhqVW5OdGIzbFVUR000UTBGM1JVRUtRVkZMUTBGblFuUnNRa3hIYUVSWk9ITlJkMVZKTjJ4M1FUbEpXakU1ZVU5NGJXMUljM1JFTldORGFHaHBZa2R5YlVkd2JuWnFSekU1YWpJek1HMVFLd3BOTkdFNGRFOVJNQzlNYUc1TFdtbzNRMWhhYTBvM2J6aEtjMjF2SzBzeU1GZE1NemRMUlhFNFoxUlZWVlZxYTIxdlRFNXJUa0V3TDA5WllWcHlWM1YyQ2sxRVVDOXBWemhGVld4NmRHOVhUbE5OYjIxWGVUVldNR2d6UlROelprVlhVMng1VDBnelpHTTNiRFJST1dWc1JsQkxibEJVWVV4MFoxZGhUVUpwWVdRS01FRk1lV014TVhoS1MycHdkVWN2V1ZOVGQyUkhkVkJuV2xocGMyTjJVbkV4YVZacWMwOTRNWGh4Wms1d2FIaHliU3RCZUZCSll6RTFlUzl1T0ZkU2R3cHBSRll5UW1kTFlsQkxja05OTlhoUVMyMDVkVlpDUXpOMWNHRm9VbXRZT0VrMWJXYzJOR3M1YzJablYxUlBWVTFIZUdsYWFHcGlZVk4wYmxoeFFtVnVDbU55Y1d0d1Z5dFZVMGMwU0dsWk1scFNkbkJ5ZEZaM2JEZzVaVTFTUlhBeFJtcG9ObEJ1TTNCbU1YRllNRzFGUWtSalRFbFVOREJEUnk5S2IwVkZPSGNLYm1OdVRtVkdORlpXY3pKVloxRnpka0U0U0c5eWNXaHpSMGhwU1ZSSFVWVkZTMWN2TkZCTEwya3diR2RuVFdOM1dWVjNSelF4VUc4dlZXaGhRVlF3YndwWVFVMDBTVVo2T1hWTWNtSTFlVWQ2UkVGRE9EbFFiMUpDTnpJeVZVZzFTMUJ6YWpabFdFeEhPVXh0WWxCNmJqZHRVRkJTZVdZeGJUUnVkVkZSVTJ0VENuSTVTMWN5SzFsdWFIcGtORWhIUkVZd1NsaFBXV2czVWtKTlUzTnRabFZKUkVrMmNEWnlNemhLTUdwQ2QyMHpWbUoxZWxNd2FERkVPR055YWxKTmVsTUtVRlZDVTJ0M2QwcDFkMGhaVlM5Nk5UZFFVMnhuYmtrMGNteG5VRTVJZFRKNE9XaDNhR2w1UVd4dVVUZHZiemd2VTFsUldtZ3djVUpVWmxvMlkwWk9Nd28yVDA5SGNtOU5ZbXd3ZUROU1FtOXhaazExU0RKUE9GRktNVXRVVEhacFpIcFlWMHgzUlhOTVkzWlRNbnBxVDFGQlVVdERRVkZGUVRJNVpWbEpUakJvQ201dGQyOTNWbUpQTlZSVVREUXhUbkpXU25RNFV6RTRUVVkxWnpWRFNIaENRMFJpYUVWMGVqZFlSRFZ0VTJwSFVFMWFjRlpHWXpjdlJXWXpMMWd6UlhRS1YyMU5SVE5yVFRselNHdFdkaTh4Y1hwYUwzSnZRVzFzYWxOdldHWjVOSEJYYTBWblpsUk5jREJLV1hCTFF5OW9URnBIUzIwemFuZFhNMHRMU1dOd1R3bzVPRGxGT1dac2IwbzNVRVIzVTBsdlIwVndVRUp6WldSUFRXaGphRkl2WVRaeFEyOHJSeXRNUzFJMkswZGhURGR5T0dwUk1VYzVlUzh6Y1U4ck0zTk1DazlQZW1sMlN6Tm1URTFPY1dOSWJuRlJWV0ZTTWpOS2ExSkVXVFpEVWk5WlIwdDROMlY2TlVacmFVbGtNa1YwVkhwT0t6ZExWbGhEVlhkeGVqUlRNM1VLTkZJNWJrWXdjbTk0VEdaRGJYUlNjVUY2ZVd4dE5WY3JhV1o1TTI1RWRrRnlTaTlFY200MlNXOUZWR3A1YURkMk5WY3JOMHQ2V2tKRldWUjNMM013T0Fwak1YTXhUamMyY201MVQwbEJVVXREUVZGRlFYbE1aeXREYW1waldsUjZVRXAxVUVkQ00zazJUbTUwY0RneFVEQXZVbXN6V2xRclNFcEJUVVp6U2psaENtTklSV1VyZWpOQ1NsUkRSa1pXVFVkb2FYYzFaRmRSVTJ0UVREWnJkekZ5U0hSVkx6RkhLMDFqWnpSWFNWUjFTVU51Y0d4UFRXSndkVGRPVmk5VE1EQUtNSE5TWVVOaFNXaEZNVXQyTVZadWJUWm5abTVsWlc1M1dtaFNVMkkzUmt4RmRFaEdRVmR4VTA0MmFqSktha0UyUkVadU5WTlVOa3hrTkVRMVIxTXhkQXBLZFhoUlkwTXJOalZCUWxZNE1rTndNbXQ0WVVWck5tcEJhRTRyTHl0WmR6UnZXVmhoUm1WbFlqTkJWV2RrUkhSUFVFSk1OVWRHVFdaaFIyUTBWekl5Q2pCQlYxUnRkelJCVW5wellXcDROVk5CVDNWR1NVVjBkM1lyWlRKdVVsTlpkbmt5TkRaTk9GUjZVblV2VkdwYWVXUlpaMEZOTjJ4aEwxQlFhRUl4VkVzS2JtZEJhMWRwZDBGemVISkZiREp5ZGsxamMwRnVVRzFrYTNoc1JsQmxjV2h4ZUVGelpETkJNWHAzUzBOQlVVRkRkR1F6UTFObVpXOUtSakE0VWxBeU5BcENZbUZrZW5WR056UlpOMlYyZDFVdlNsUnNUM2xZYkdwNVNXeDBNbWgxWmxBMFYzcFdTR3RZWlRObGFFWlVVUzh6U1c1U1pUSjFOM1ZaZWs0d1RGcHdDaTl3VVhWRlkyNUlWSHBzZDJRMk16WXhOVWxEYkRKallraGpTbmQ1VEdsNlVXRmhkMUZEWW1WclVGUk5hR1ZyZDNRelJFMXBaRzR2V2tOaVRtZFpNbllLVERaQmVVOVhSMVpMZUZabFYwRmxkMDAwWjNkbEwzZFBLMGgzWXpGQlRUZE9iek5TWTNocU0xTmtjVXBSTDFvckx6bDJWR0psYW5SbmNqUnZOVloyYWdwRFYxY3JhbFZKSzBjNGFXZHNRVUkwWkhSTGQxZG9kMjQ0WW1nd1FrbHBTRVJNVTJobVozaERZMndyTUZkelNsTnJPR042T1RSVlEyTlphWEl5VG1sV0NqRkZOSEEyYjFORlJtSk9WUzgzZFdod0sxQTNiMU5FTWk4clJrSjJXREpvZGtSbGVYWnFOMjAzVlVjMVpuRnRLM1JaZW1wR01WTjJaREpvYjJvMGF5c0tTa1ZCUWtGdlNVSkJSR001U0ZSWVN5dEVlVlZSTlRRNFUxSTVLMWd2UkcxbVpqUk9UMUJ5SzIxYVVYWnhOREZ3YkRST1NVWTJaV2xQYUdsRGIydHJUZ294VmtwT1EzaHhXbmxUV2xwaFFrdHJReTl0TUZVMmNXdHVXRUpzVlc4eVFTdDFOR2xoUVc5aFRGRnJNMFpPVVc1UmNEZDFaR1k0WWsxdWR6aE9hMWxRQ2tZemVuSjRVRlJpVVVGVU5VMU5UMjVFUW1wWkwyZFJjak55TDBwRFNIaDNOekl3VEVWTE5tUm9Sa1l6SzFGSWJXRkxaRnBNVWxSMFRFTlllblpOWkVzS2IwWjZaVmRYUWs5aGRYUnRORTB5VG1WQlNVMDBOVGg2Y2k5V2VsSTFURGRyVjJzMGFXeERSazFTTW1zclZuZEtkMnd4Y25sRlpuWm5VRkJJU1hGU013cDVOVTVtYTAxdVdVSXdZMllySzA5VllsWnNSbVJrVVVoVVZVRnJNMUp2ZUdKTVEyeHZNVXBrU0RGRlkzcGpSMWhxU0VwelJESmlNRTkzZW13eGVuUjZDbEJ0T0RsaGNEWldZelZITHpCSVNGQkljRTEyYnpGYWEyMVNaekYwVm10RFoyZEZRVkl3SzJaYWMyWlVkV2N2Y0ZCQllVbEhRVTFpT1V4QlVrNWthVTRLYm1NMmMyYzVRbUZsTm5FNWRVVjBOR1ZhU0VsV2NFNUlLMHd2VEZaTGNGUnVOV3g1YUVsSlJqTXpjR1ppVkRoQ1pqZ3JhVzUwZWxGS2RUTkxXVzEyZEFvelJTdEhXSFJoUkd0elp6UTRWa2hCUTJkSldtdHZkSEU0TVZkMFIybFZRMjFwY204NWExbzNiMmRXYW1GS1FqUjZPV2RxZVU5NVZXWnRiWFJNVFhSeENsQTBNbUZJYlVwUVNUaHhiM3BzU2k5eFlVVlpNbFl6YzA1clIyUkJRV3hZZGl0TWJEVlpWVllyUnpKclRVaGpjMjlUUVdKeFdHdElhSE5GTjFkbldqa0taVWRaWVM5Tk9GTk9UR1ZaY2taSFZtSTFiVkIyZG1KVFEzWk5XV05PT1UxVGMwVnZlblpZTDNjMWFsbzFlRzFOZWtOb2NXOVpNRFpGUm5GRGNUUklkZ3BXU1daWFQwOXNObmhTV2l0elYyVkRVVTh2WkcwNWJuUlJhVWRYY2twMGR6RklhRVJtVFhadVV6a3pkakl4YUhSUGMzWm9kMHh0ZUROUlBUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogbmNmdGU1Z2xmYTVyYm5meXlzOTllNjd4YWNsNGw5bG53bnV3OWI4Mm9lZTNlbGdhaXlpOTRhZ3BtbzJiYnQ3anhmdWQyYzFteG0zcDNrYWw4YndweWVkbml4YW5kbHA5azgxa2s1djZweWNla3JxMmVqajJncGI5c2dleXRsOHQK\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUzBsbFZuWkJNRGRxT0VSelNVY3phblZ5VDJabFJFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVdYZE5SRWt5VFZSU1lVZEJPSGxOUkZWNlRVUlplRTVxUVhkTmVsbDRUa1p2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSWkNsaEtWa3BNY0ZVMlEwSldURWR1T1VWMk5YaHdVR1ZTUTBOU1NtVjNUbTFVZDJ0MlNqTkJNbWMzSzJjM05EQlNlVlEyVVVkemRGY3lhRGR2VDBsemVuWUtPSGN2VWtSc1pXSkJLekV4TVV0WU4wbEJRbTl5UmpSR05YTlBObTQ0TVhSM1ZtOXVWM2wyZWtKVlNuUjRLMHN4T0c1V1VuRlhhM00yVURCaVRucEtZUXBUYmxSUVdqTlJiakJuZVdjeFVFSjZiRmd2UVZrNGNFRnFjMnAxTXpWTFFXOXZkekV3U21kUGFIUTROMVpKWlRsMmFGbEVlVXhqU1hONlFUVllXVzE1Q201TlIyTmtTa1U1ZWpnMVJYbzBMMkV3WmtRdmJsQkJPQzlTVGxWS1JXWXJWbGR5VnpkUGVXSmxVVlJETjFWSmFWRlZWWFZwZGpRMVRTOTVkMGR4Ym5vS1Z5dFFRbnB0VFZWdlIwNHZWazVSZWl0VmNGZDFNaXRXWTBkT1p6VjRSMlEyUWxaQlVYcDFLekZMY1RCa1FqSnNXV2RWVXpadGRrTlRVRTlPYVZGUFZ3cFpOVk5tVmsxbFQwOVFSSHBKVlhwSFUzRTBlV3MwYlhnMFpISnNhWFpMZFhWc1kyZHdZMDkyVVZnclZHSXlNMGRtVFRrMFZXNVJUbEZXY0U1c05FOVVDbXR1ZVV0S1dtdzNRVGd3VGxJNWMwTnpkREZpTjFWQ01qUk9VVFpsWVdWMGVVVllhbHBzTml0M2NVazNSV1IzTm1OcGFFdFViVkpXYVdnM1lXWXpZaXNLU2xFNVZEQlFkMkVyTW5Sbk9VdG5RMWxsU2xGUWVHbE5TRXhtWTFWSldYTnliV2t4WkZKaFZuRXhSamRsZUhWRFdERkVLek5xY0VOd1JrVTNWV3RNWmdwbWFWQmlVM1V6YmpobVVFNXFZVWR6Tnpod1VWRlpZWGxqVVhsS2JFWmlXWFV4VWpKQ1luVktZMmRVZG5Gb04wbHRZMmgyUXpSNU1VOXBVaklyYUhKSkNrcHFZVEp4U0V0eFRrTjVlVlJOYW5FM1ZGZHBTMnBGVGtoUFFtcG1abTV5TjFBdlNtbzRUblpXVmpZMGRVUnBWWHByUlVSMlZGVm1ObFYzWTBZck5FUUtWVTF3Y3pBck9WbHFZekEzZERWd2JYUndWazVoYnpFelUwTm1lV1JhYUVwQlV6WnNNM0J4YWpSUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZVeFowSkJUMDloTWpBeWRXeENkbWQwQ2l0RFJtTjBRa2wwV0Vzd2QwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGTWRtMXZXbkJJZUNzNGRtRlNjbGhuVG1Ga01VeHBUUzh6WTJjS2EyNHdkMnd2UmxkVldtTkdNMnRWZVV0SlJFMXJjelp6ZG5aeU1rbFRVVkV3YkRaVlFtWnplbGxuVHk5aWVrNVFjMEowTHpSamRWaEdRazFCS3psellncFhSalI1YkVOTFdGZERWMHRJUkdaUFVqZGpPVkZ5UVRaVlEydDFlRFJEVUVjd1RUWkxXbTAwT1V0TVMzUXpjSGd4Tkd0clpsZEZieXQ2VmtoM1oySXhDbmxMYjNRd1RWTlZLMGxDYVc1Vk1WQlhSMnhqZDNadFJXb3dWa2c0WlRCUlFqUk9aV1V4ZWk4M05HOXVXV2xEVkdrM1p6SkRVa0UxVTNZeVoyMW9aSGNLY0daVE1GQmlNRmwxVUN0cWJsQkRUMFZ0Y2s5VldqRnZXWGRvZUVwSlQwcHVlWEpaZVUxc1RFWnJNbTlzYW5SbEwyRlBZelpyV0ZoTFMwbFBXakpHWWdwVVpIUlNiblZyYTAxT1NVZFJZa2xLTVZWb01XRXpkbFkzYXpSU1RXcDFWR1UzYm01RldrOWhRbFZ1UnpnNE0zTktOSFZNTTNKaVEyeGhTMGN4WmtVMENqVm1hbXhPTVZKRFVIUTBWblZpYzNReVRHWTRRMFo2WlcxcmFHVlVPQ3RqVjBaUFNGWmlZM2hTUmxsWVRIVnZNbWh6WWtwWlFsRjBURVJVTVVKTU1tWUtVMVl6WWsxUlowMHlUak51U0ZoWlZ5dExiRmhrVkcwNVNUTjZjMFZVU25WM2JFbzRiVGsxTUhwcVVUVnRSMk53Y1dkWlRtZ3dPWGhHTm10eFVtOWhWZ3BsTWtGS1JGRnpNSEE1V2pSQ1RtMXRielZDYVRWR2FFNUJSakkwTVZSc1ZtbFRSMHhsUVdGVWVIaENaRTFGWkRaa2Myb3dZVEF6V0hCM1VXdFlaSFp3Q21KUVZFOTJTbmN5ZGtsWFoyWm1iVWRvYWpGQll6WmFNVWc1T1RKUVRVcDVSemhPZUhkTGRIRk5LMnRrU2xSak0zSnBiRVJuY1hWeFRrVjZlbGx6Y2tZS1MwVnpkVU5XYmpaeFFrNXpUemN6VERSTUsyWXlUa2wyTjNaUk15dHBSVWRSVTBwaVZrUTJSVkJFSzNSVlpGZ3hZbHBLYW5OVlJFeDZOR2hPUjJGVFdBcExjbEI0YWpaMFRqWlBhME56VEdoQkNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3E0cjU0aTItbHZkMGE2ZmwuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RjamV3azUKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RjamV3azUKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3Rva2ZhNG8ydGEyX2NsaWFrc3Rlc3RjamV3azUKICBuYW1lOiBjbGlha3N0ZXN0Y2pld2s1CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdGNqZXdrNQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3Rva2ZhNG8ydGEyX2NsaWFrc3Rlc3RjamV3azUKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVTVHWVdwa2JsRndPWE42TkV4UlNFVktTbGxPV1VWM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxUlRKTlJFRjVUbXBGTUZkb1kwNU5hbFYzVG1wRk1rMUVRWHBPYWtVd1YycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCTkRkVlZIbFNWVUZaVDFRNFZGQllZbk4zZDJrS1FuSk1iVTF0WW5ZdmRVMVRjMjFQUVhaSFlXNXpUVGg0TDBVelQwbFZaa3g2WWxkelQydHNiVlJVZGpGcFNVbDVVemgzVGtodmQxRmtRV0l6ZFdOdk1ncEhOMlp5VFZWNU0zVldSVmxCWm1oU2MyUXZPRWhaVm5JeE0weGlWWEJqUnpWdVZVUnlPRUZzV2psaWFWUklVVGRHT0ZCVU9XbElMelV4Yms1T1YwNXBDbWxPYlROWVNGQTBWazVZWmsxc05pOTBSMjFIYzBoMmJFUmFjVEpOU25KbWJUQnRURVJEY1dKclVFMUlUR2RtUW1wUk1FUkVVSEptUTFsRlVteHpOMlVLTUdsRGIxRjRXR2RCVGpSMGFGTkNja0pWVTA1bmNGRm1jRkpoUVRSVFNGZDFhbXd2YTNscFowZHhLekpYT1RSeFpEQnhhMHN2WjNWU1dtZDVjazB4TWdwVGEzRlZlV2MwVjA1aWVXMHZhemxuVDA5amNtSXZabU13U1VodlEzbE1kVXM0ZVc1d2NXMU5Zall6V1VVeFZsWkpUR1Z6TTJka00yNW1jRVIxWWxoeUNtZGtNMFJZTlRWUmFqZEpZaTg1UWs5eldYbE9SWEl5YVdjdmJXSjNiMUJXY0dsd1preHljbVZTV2pWU2FtYzBXbXQyY1RSdk5rdFRXRXRxYWs0MVZHSUtRM05rTlhoMFNFSnhlakpyU0M5Vk0yZHROSFE1YUZOM1ZWbEJabEJwT1V4Sk5rRkVXVVpqTUVoamMyb3dTV3hxVjFSeFZWSmlVWGRXVnpCT2NrbzVaQXAyUjJoaFMxbG5MMWR1VlVsUEsxcDZXR296VjBsUlR5dDZURGxvWld3MldHNUdTMUpsUVZWNldXVmlPSEJ6Y2pkVldWbDFPQ3QzTkdVeGJFWm1aMnBRQ21wUVdFVkVSbTFyZVVSVE5WcHhUR0Y0Y0RWVU0ycEVjVkp1VFc4MGVFWlpWV1UzWWtGcmF6SlJZek5aUlhWMVVISnJiM1ZDYWtSeU5YaDRjMHRDWjJnS2NsQlVkM1ZIY2l0U056ZDBNVVJJZGtrNU1HZEZhMUpSVm1ReVVTdG5iRnBxVGpGT2MyaHZURGxOVEd3M1FVRlRhVkpOYjBocmFGZDBaM2xtVUdJMlpBcFRhVEJ3V25KRk5HWXdVakpOZFVoTFJGTlBPR05TVFVOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWTVdkQ1FVOVBZVElLTURKMWJFSjJaM1FyUTBaamRFSkpkRmhMTUhkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCU3prM1pURXJjMmxKYlUxTmFYZEZaV0ZVVWdwT1N6RkZkMmw1UlVFd1UwVkxaVkZMV1RkRU9GVXdNVGxhUVZWWk0wNVVkRXRUVXl0bU56TlZiREYwTUdWQmRsTjJMME0yWVRGbU0wNTFkM1pwVW5KQ0NubDZWRUpuYzBOdGJIRllhSEl3TmtWUWNHVm5PR3B5TTNwNldsTXpWemxwVFhKdmNWTXJjQ3RvUlU5T1Iwb3JjSHB2Vnk5MlZqVnVjbGhLV1VwRVozWUtRbTFOZHpjMlJuaERWVzVZVUhaclZIcENXWFE0WmtSNFRuVmtjMVZyU1V4WlJUQTViamRoVlc5b2VIUm9TalZVU3pCSlRVOTZWek5RUW1sbllVUnNjQXBKVW5KcFZXZG1XRGw1TUdKQlUyOW5OalIxU2pGT1pqVkNkRlpZWm5STWQwVmFWM1J2TVd4SFlWZExjM0kxUmpoeVYzZ3JUR05oU1VwUFpGSkZkblZQQ25GNmVFNDVXaTgwWkVzeWJGcGFTMkpDWkVwaGFreHFXa3h5U1dNM01GRkRObloyVjBwMlpFTm5iMnRxTTIxUE1tSnZXVmxtV1VaWlp6SkNTemRZZW5nS2FXbEphRWhXTjNZck5IZEZPV2QyUW5kRVUzUXpVVGRVTTFsR2VFTlZlRlJhT0M4MlowRlBORk5KVW1VM05tcHdZbE5DU2t3NE1Yb3dhbWxGY2twM1N3cHlXbG8wUVRWWFRYZzNURE5xVEZZMWJqaDVjR1J3ZEhSRFUwOUpVMmh0VUhkSFRqQmlhRko2Wm5odk16aEdiRVZYVldST1YzVlFNWEJyZUc1R1RGSTJDbE5MVXpaRU9HWkJSbWR4T0M5SlRtUTFNRUprYmpaTlZsRXpTRVZQWlhOc1VIaGpRemQzYkdwTGJreElMMGRsT0daV1ZtdGlZbHBqTTBwT01HZHFTbThLYjBaeE5GcFdTbE5ITVZVNGRYVlFialpVWldFemVsVnRPVU5WTDNObGNGRk1aMmxHUVZSc1ZFWXJjMnRWTm10NlpXVk5jRFpSYmt3Mk1tbzNhQzkzT0FvemExaE1OekphVDNVME5HWlFOSHBPVVRVMlJtRkhOVmRPYUVKdmJWTktaM050ZUc1clNVTlliMVpIZFdKWFVERjViemxNYjBKTFdVSnJhRzAyYm1OdUNqUmpaSEZzTlRWdk9VUjJjekpsWTNkblYxWnBRV2hvVmdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCTkRkVlZIbFNWVUZaVDFRNFZGQllZbk4zZDJsQ2NreHRUVzFpZGk5MVRWTnpiVTlCZGtkaGJuTk5PSGd2UlROUENrbFZaa3g2WWxkelQydHNiVlJVZGpGcFNVbDVVemgzVGtodmQxRmtRV0l6ZFdOdk1rYzNabkpOVlhremRWWkZXVUZtYUZKelpDODRTRmxXY2pFelRHSUtWWEJqUnpWdVZVUnlPRUZzV2psaWFWUklVVGRHT0ZCVU9XbElMelV4Yms1T1YwNXBhVTV0TTFoSVVEUldUbGhtVFd3MkwzUkhiVWR6U0hac1JGcHhNZ3BOU25KbWJUQnRURVJEY1dKclVFMUlUR2RtUW1wUk1FUkVVSEptUTFsRlVteHpOMlV3YVVOdlVYaFlaMEZPTkhSb1UwSnlRbFZUVG1kd1VXWndVbUZCQ2pSVFNGZDFhbXd2YTNscFowZHhLekpYT1RSeFpEQnhhMHN2WjNWU1dtZDVjazB4TWxOcmNWVjVaelJYVG1KNWJTOXJPV2RQVDJOeVlpOW1ZekJKU0c4S1EzbE1kVXM0ZVc1d2NXMU5Zall6V1VVeFZsWkpUR1Z6TTJka00yNW1jRVIxWWxoeVoyUXpSRmcxTlZGcU4wbGlMemxDVDNOWmVVNUZjakpwWnk5dFlncDNiMUJXY0dsd1preHljbVZTV2pWU2FtYzBXbXQyY1RSdk5rdFRXRXRxYWs0MVZHSkRjMlExZUhSSVFuRjZNbXRJTDFVeloyMDBkRGxvVTNkVldVRm1DbEJwT1V4Sk5rRkVXVVpqTUVoamMyb3dTV3hxVjFSeFZWSmlVWGRXVnpCT2NrbzVaSFpIYUdGTFdXY3ZWMjVWU1U4clducFlhak5YU1ZGUEszcE1PV2dLWld3MldHNUdTMUpsUVZWNldXVmlPSEJ6Y2pkVldWbDFPQ3QzTkdVeGJFWm1aMnBRYWxCWVJVUkdiV3Q1UkZNMVduRk1ZWGh3TlZRemFrUnhVbTVOYndvMGVFWlpWV1UzWWtGcmF6SlJZek5aUlhWMVVISnJiM1ZDYWtSeU5YaDRjMHRDWjJoeVVGUjNkVWR5SzFJM04zUXhSRWgyU1Rrd1owVnJVbEZXWkRKUkNpdG5iRnBxVGpGT2MyaHZURGxOVEd3M1FVRlRhVkpOYjBocmFGZDBaM2xtVUdJMlpGTnBNSEJhY2tVMFpqQlNNazExU0V0RVUwODRZMUpOUTBGM1JVRUtRVkZMUTBGblFXWmhZVFpYUldWcFoyUldXamxCTTI1UmFFZzNOVXcxY210SWVVWkRjREkyTHpNd2R6Sk5Wemd5ZWtFMldWRk9LMHcxWTNsMWVubzBOQXBQUlVnNWNUWlVaWFJTT1dSS05GRjZlalY2UW1SUGFXUXpPVU5DUjBkc1FYWjBWMnh2YUU1UGVXdFFlVFYyVW5ZeWFWVmlZbk5RYXpZclRFOTZhSFUxQ2tacFpsTTBSMnRPY0ZGak1UWjRWVVp2YjBWalIwWTFaak5DYzA5NVFVbHpjR1UzTDFCU1dIbGhMMGhGV1V3MWRFRkdjVVFyZGtSb1YyRjNOVlIyWWpRS2MySlJUMVpuYVV0cFFsWnBZMUZaV0hReFFXNXFiaXQyY2pGQk56WnlaSEp6WTNaaFRYTjRVM3BxYzFaWFpsTjJjU3RIUm5NNGIwcDRUa3BNYkVnd1Rnb3ZkeXN2VUhKb1NXbHBhVkJzYlU0MWExWTFTWGxaZEUxSVdHZFNTR0ZNVkVWUmFIUldNVFIxVUZOTlNVWndVQ3RsVmtsclJGcG1SMWRaV2tRd2NFeGhDbEZuSzFkd1NWQnVablZGYTJneFNUUjFkM280V2xSalRXMXdWVzVpV1NzMVVETmFiWHBWVUdSaWJHTXJTMnRhTHl0QlNVRm9Vak1yZW1FNWVsbFpSMllLZGl0d09VMXhOa1kzYkV4NmJIbE1Na05QYTI1YWFuTlJXbU5yYVRNMmFsaHdaekpRYm1kWFpUTlphMHQyVEcxaWNHeFplV2t6ZDJWbEx6WjBLMVl6U1FwRFVtZERNMlJpVmtWVFQwczNVM2RCY1ZsUE1UVjJWSEZrV0dOUU4zSmtlVU5zZFhwUU4wdG5TWFZhZUdGRmQyRjNTblo2YzBRd2IxaHJTMUpSYkdWcUNtbzROMGRvWXprd1RVZzFkVU5zTW1Ga2FVcExSa2h5VFhGS1pHOU1MM05uUkhaV04wZHBhMXAzYUdWUlp6WjJiVFJ6UVVSRlVUSXJZeTkyV2t0QmNWUUthMjFNYldjd1Z6QkhWR2hIZVZrd1VVNDRSemM0WW01NlUwWlVXR0YyZEZVMWFXeDJhVTltWVVsdE1rVkhVRTlGTURkaFNrUmtjVW95TTA1Q2NtNVpOUXB6UmtSSVVGbHpNa3RvTUhZcldGWXdNVkJpYmpOVGNtcGtRV3RaVUhKT1pIWldTamx0V0VsWFVXUkRWMEZZWm14TFVVdERRVkZGUVM5WWFXUmpiakZDQ2t0aGJsazBNU3R2UkZwaVltSjZaVUpKTlRkMU0zTnNSVTh4YzFGWFpFTnhMMDh5VjFaUloydzNUbGhIWkdrd1RtNHZlV3RGZG5kcmEwRkVUbUo1SzBVS1lsUkZkazk2ZW1WWVdFVkNkakJ1WWtGUWR6a3ZUSEYwZEhsSWRFWXhiRk13VlRWNFowZHRSRXRzWTI5elQwd3hRMVo2TjNwc2NVRm9ZMjV0TDJKUFlRcGpURm81T1dkMVprbzRSR1YyTkRWMGMwWjNaVTlTWjI5WmVFWllaazlrZVV4dWEzZEhRMHBWUWpkTFJFaERiVlpWUTNvelNIZFBVVEpQS3psVlZtNW5Da1JMZW05MGVXUnZUR3RQTkU1Q1dIRnpTRVExTHpoQlNuRkthMlptUTNnMU5FTnRNRVJ4YjJoMUsyNTRaekE0U1ZOWUwzY3hlVTFUVGtGMVVVMUVZMEVLUVdoRmR6Vm5PRkZTVEhGbVV6bHBaMDVQTlZSMEswMHZiV296VEdwaFMwaFBhV3B0WjI5TldIWTBSR0kxV2pSTVJEWk1RMXBEZGpobFlWVkhPR2xaVmdwVFZsQlVWeTl2TkUxNk1WQk1VVXREUVZGRlFUVm1jVzh3ZEdORFRrUmxSVGxKT1ZKRFRTdFhUemxFUzFOV2RrWlVSRFY0VVU5a09FTkJXRXBLWkhWeUNrSlZkblJ0Y0d0MWNYbzFaSFl6WTNodFRVNUdOVzRyV0ZoRFRYRkdVbEY2VGs4eGJ6WTRZbFJpY2pnd09VcEpSM2x5VEZkSU9VaFFRbVp1TDFwR01XWUtabE53VUdSaWEzSkJOMEZ2VW5oSFJXcElTVFJKUWxWUk9USllXWGxDYVUxd09FbzVTR3d4ZFM5QmVYWmxRbkZpYWpZM1FURTRXbTl2TmxCTFRuVnZWUXBOVFRRelJpOUJTR1pLWkdabVN6ZFRWRzFhVjNKemJHZDFhV1YxVVhaR1Z6bEJVWEF2WVdkdmFFZ3phbGs0WnpCeVlqYzRWSEZXTUU5MWNraFNZbFYyQ2tsQmVtaENiek5uYmtoU05VSkZOMUJYTUZOTkx6Qm1OMUZETVdSek1uWXZaRWwyVTNaV2RtSlFMMUYzTkVkYWJrUTVUR05tVlRsRlRFTkNSamtyVW1NS1NVZFNPRlZ5ZDNSSE9YSjJUMlpVV1RoRFIwRnlUVXM1YTBoV1RFNUVUR3B6TjJONk1IRTNjRkIzUzBOQlVVRmtNV0UyYVhCVUsyZFRZeXQyYnpkcVF3cE5URzFRWXpkalRtNUZNVGxvTmpoNVZsWjFkRlp5VW5Cd1VWZEhOa3hwWlVWbFQxVlZWMVpFUzFwbFpXSklUbHBTT1RkdFkxYzVhVGgxUldWV1pVaFBDbTFrYVdONldFdHlkMUZWUXpGSE5WTkhabTkzVURKR1UwcGhkVk5qT1dwMWFVOW1VRTlyWldoWVNVb3ZTRmxRTTA4ellXMDRhR05DYjFac1pVNXhkamNLU0N0aFdVbFpiV3B6Y0ZGVlNVWllVVzh4TDNFMFkzTTRNRk5NY1VaR1FsUjJOVEZVUjFWdWNqY3ZOeXRrV1hJNVNHVnliM2R0TVhVd1NVNXlNalJYVmdwMlNEZFpSWEZTV0U1R1ZWa3hNUzlNY1c5d1kwMVdaaTlJUzIxSEswWjFWVXBOY3paeE0ycE5VR1pVTlZCaVYwMTZjbVZuUmxSck5VSlNSQ3RaTVU5RkNqUXpjVkZyVDFRMmJHWnlaM05EZW5sWFRXVXlNbWxUVlc5bEwxQXJUMGswZEd4QmNucE9hRGhrUzI1M05VbFRTbEpRVmpKV2VXc3lVV3h0YTJZclZsSUthM0YyV2tGdlNVSkJSelJ1TTFCME5HSjROMUo0VVZwaVN6QmFZMGxEY1hkbVIxRmpOU3RxTkUwNGExSXhPVUZFTjFoQlRIZDFVRGRzVjJseGJreGlOd3BZVnpSaVUyODVVVmxWWm1oeU16ZzNaa3R0ZVVSclJEUjNiblpGZEZoMGFtSktjMFUwZFc1MVRsTXZlV3RCV0dReFFqSm1kQ3RCT1VKMWFIUmtRbEZHQ2t0YVZ6UTFNVTVoVm14WVVHOVdkazh4WTBseFQwSXdWM2hHVm5GRVdVZ3ZSbGxGYVhoWldsSXZlRFppWXpNeVIwMDFTMUZHYmtjeVNrbzVOMjlwY0dzS1YzbEdaVzR5T1dOQ05FMWlRa0pFUjJSMWNYSnlTMjFsTkZCdlZuUkxjVnB1WmxGeFltdHJWM0JOVjBzM1NuaFlNMjVGWlUxME9WbExLMU15ZVc1S1J3cFBOM28zWm5OcVNtdG1kVzh6T0dwRGMyaEpRakZqT1dWT1pXWnlaWEEwYzJWamFsTlpLMVZ3WVN0Rk9YVlljV3hVY2pWS1JFaFBZbXBuTUZoQk1HaElDbGR5VkZrclduZDZaaXN6UVV4WmNHNUdSVzFDV1hBeWRsUTRlRWhoV1UxRFoyZEZRa0ZLUVdGVmFsSkRaek0zVUhCRFZYWktjblpoWldzME1EbHZZU3NLYVZKME5qQmpUMUZVTkZaNmRXb3pNMk0zYWk4emIxWm9SMmg0VGk5a1ZFVkRWVGx5UlVJelMzSm5TVUZUVW5KdlNXUklia0ZoT1ZwMFZXdFFiMU5vWVFwdVdTOWpTVXA0VG5aNGFtdzVMekl4U21kRWJIQnhiUzl6UkdGWVJta3pLMFZQWjNaVlUzRndValZJUmxsU2N6STRlSE5tV2twaFFWZGFkREJ6UzJoa0Ntb3JhMkl4U1VSeVNsQmpTWEZZVFVKMlQzZEVXSEpLUzJaSmFUVXdaVVJ2UkVNNVF6UlFhRFpxVWs1WGRtVXJXbTVJUmxGRU0yMHZNbXAyTlRGa05FTUtabFE0ZHpCdlFWcHFhMWxuZVc1MVprNXpWR1kyVUdGdFJrbDFaVGR1V2psdE4wRllTMmRzUWxaWU5XODNRWGt6UzJFeGQxaDZPVVIzV1VRMFJubHVlUW80WW1RMVNIQkxaalJDZW1Sd2FVVnVZamM0WVU1M01pdHhMMHRTUjNkblFrUXpjMVJCVGpkS2VHVnJOVm81WnpaRFkzSkZXazlyWkRacVZUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogNnh1OTNuNnF0bDM5OWRvYXZjemt0MDE1aTBhbjFyY3Zubm82N3hhN2t1eXBiNHhyaDc4YTh0eWdqdjhzNzdwem96czdoN3o4dzg5Z3JkNGNtOTIyeW5iOTgxYnk5cXhqMzAxdmwyaGRuOXB3cXB0c3piOHhidHhmZjAxMXRpd3MK\"\ + \n }\n ]\n }" headers: cache-control: - no-cache @@ -741,7 +743,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:22 GMT + - Fri, 16 Jun 2023 00:39:03 GMT expires: - '-1' pragma: @@ -757,7 +759,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -775,34 +777,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '1036' + - '1037' content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:23 GMT + - Fri, 16 Jun 2023 00:39:04 GMT expires: - '-1' pragma: @@ -844,36 +846,37 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"\ + enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\"\ + ,\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n\ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/84a90fc4-9f40-4f05-bc10-3e849cd0f1f3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea9155d0-3eb1-483a-a376-79057da85f1f?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1068' + - '1069' content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:26 GMT + - Fri, 16 Jun 2023 00:39:13 GMT expires: - '-1' pragma: @@ -885,7 +888,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -903,14 +906,158 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea9155d0-3eb1-483a-a376-79057da85f1f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d05591ea-b13e-3a48-a376-79057da85f1f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:39:13.3794398Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 00:39:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --labels --node-count --tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea9155d0-3eb1-483a-a376-79057da85f1f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d05591ea-b13e-3a48-a376-79057da85f1f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:39:13.3794398Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 00:39:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --labels --node-count --tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea9155d0-3eb1-483a-a376-79057da85f1f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d05591ea-b13e-3a48-a376-79057da85f1f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:39:13.3794398Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 00:40:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --labels --node-count --tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/84a90fc4-9f40-4f05-bc10-3e849cd0f1f3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea9155d0-3eb1-483a-a376-79057da85f1f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c40fa984-409f-054f-bc10-3e849cd0f1f3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:20:26.6829466Z\"\n }" + string: "{\n \"name\": \"d05591ea-b13e-3a48-a376-79057da85f1f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:39:13.3794398Z\"\n }" headers: cache-control: - no-cache @@ -919,7 +1066,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:56 GMT + - Fri, 16 Jun 2023 00:40:43 GMT expires: - '-1' pragma: @@ -951,14 +1098,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/84a90fc4-9f40-4f05-bc10-3e849cd0f1f3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea9155d0-3eb1-483a-a376-79057da85f1f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c40fa984-409f-054f-bc10-3e849cd0f1f3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:20:26.6829466Z\"\n }" + string: "{\n \"name\": \"d05591ea-b13e-3a48-a376-79057da85f1f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:39:13.3794398Z\"\n }" headers: cache-control: - no-cache @@ -967,7 +1114,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:21:26 GMT + - Fri, 16 Jun 2023 00:41:14 GMT expires: - '-1' pragma: @@ -999,14 +1146,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/84a90fc4-9f40-4f05-bc10-3e849cd0f1f3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea9155d0-3eb1-483a-a376-79057da85f1f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c40fa984-409f-054f-bc10-3e849cd0f1f3\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:20:26.6829466Z\"\n }" + string: "{\n \"name\": \"d05591ea-b13e-3a48-a376-79057da85f1f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:39:13.3794398Z\"\n }" headers: cache-control: - no-cache @@ -1015,7 +1162,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:21:56 GMT + - Fri, 16 Jun 2023 00:41:44 GMT expires: - '-1' pragma: @@ -1047,24 +1194,72 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/84a90fc4-9f40-4f05-bc10-3e849cd0f1f3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea9155d0-3eb1-483a-a376-79057da85f1f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c40fa984-409f-054f-bc10-3e849cd0f1f3\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:20:26.6829466Z\",\n \"endTime\": - \"2023-03-15T11:21:58.979488Z\"\n }" + string: "{\n \"name\": \"d05591ea-b13e-3a48-a376-79057da85f1f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:39:13.3794398Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 00:42:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --labels --node-count --tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ea9155d0-3eb1-483a-a376-79057da85f1f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d05591ea-b13e-3a48-a376-79057da85f1f\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T00:39:13.3794398Z\",\n \"\ + endTime\": \"2023-06-16T00:42:23.9214299Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:26 GMT + - Fri, 16 Jun 2023 00:42:44 GMT expires: - '-1' pragma: @@ -1096,34 +1291,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"\ + enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\"\ + ,\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n\ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1069' + - '1070' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:27 GMT + - Fri, 16 Jun 2023 00:42:45 GMT expires: - '-1' pragma: @@ -1155,48 +1351,48 @@ interactions: ParameterSetName: - --resource-group --cluster-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\": - \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n - \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\"\ + : {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2182' + - '2184' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:27 GMT + - Fri, 16 Jun 2023 00:42:48 GMT expires: - '-1' pragma: @@ -1228,48 +1424,48 @@ interactions: ParameterSetName: - --resource-group --cluster-name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\": - \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n - \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\"\ + : {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2182' + - '2184' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:28 GMT + - Fri, 16 Jun 2023 00:42:50 GMT expires: - '-1' pragma: @@ -1301,34 +1497,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"\ + enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\"\ + ,\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n\ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1069' + - '1070' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:29 GMT + - Fri, 16 Jun 2023 00:42:52 GMT expires: - '-1' pragma: @@ -1350,7 +1547,7 @@ interactions: body: '{"properties": {"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "scaleDownMode": "Delete", - "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.24.9", + "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "tags": {"key1": "value1"}, "nodeLabels": {"label1": "value1"}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' @@ -1370,36 +1567,37 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Scaling\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Scaling\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"\ + enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\"\ + ,\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n\ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dd9afdd8-b747-458a-a016-5bc6621da021?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6114ee9d-49f9-4e80-b0f8-62f12e2768db?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1067' + - '1068' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:33 GMT + - Fri, 16 Jun 2023 00:42:57 GMT expires: - '-1' pragma: @@ -1415,7 +1613,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool scale + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6114ee9d-49f9-4e80-b0f8-62f12e2768db?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9dee1461-f949-804e-b0f8-62f12e2768db\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:42:57.0676897Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 00:42:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -1433,14 +1679,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dd9afdd8-b747-458a-a016-5bc6621da021?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6114ee9d-49f9-4e80-b0f8-62f12e2768db?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d8fd9add-47b7-8a45-a016-5bc6621da021\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:33.3865088Z\"\n }" + string: "{\n \"name\": \"9dee1461-f949-804e-b0f8-62f12e2768db\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:42:57.0676897Z\"\n }" headers: cache-control: - no-cache @@ -1449,7 +1695,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:23:02 GMT + - Fri, 16 Jun 2023 00:43:27 GMT expires: - '-1' pragma: @@ -1481,14 +1727,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dd9afdd8-b747-458a-a016-5bc6621da021?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6114ee9d-49f9-4e80-b0f8-62f12e2768db?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d8fd9add-47b7-8a45-a016-5bc6621da021\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:33.3865088Z\"\n }" + string: "{\n \"name\": \"9dee1461-f949-804e-b0f8-62f12e2768db\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:42:57.0676897Z\"\n }" headers: cache-control: - no-cache @@ -1497,7 +1743,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:23:32 GMT + - Fri, 16 Jun 2023 00:43:57 GMT expires: - '-1' pragma: @@ -1529,15 +1775,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dd9afdd8-b747-458a-a016-5bc6621da021?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6114ee9d-49f9-4e80-b0f8-62f12e2768db?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d8fd9add-47b7-8a45-a016-5bc6621da021\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:22:33.3865088Z\",\n \"endTime\": - \"2023-03-15T11:24:01.7209298Z\"\n }" + string: "{\n \"name\": \"9dee1461-f949-804e-b0f8-62f12e2768db\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T00:42:57.0676897Z\",\n \"\ + endTime\": \"2023-06-16T00:44:27.0063487Z\"\n }" headers: cache-control: - no-cache @@ -1546,7 +1792,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:03 GMT + - Fri, 16 Jun 2023 00:44:27 GMT expires: - '-1' pragma: @@ -1578,34 +1824,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"\ + enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\"\ + ,\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n\ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1069' + - '1070' content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:03 GMT + - Fri, 16 Jun 2023 00:44:27 GMT expires: - '-1' pragma: @@ -1637,34 +1884,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"\ + enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\"\ + ,\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n\ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1069' + - '1070' content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:04 GMT + - Fri, 16 Jun 2023 00:44:29 GMT expires: - '-1' pragma: @@ -1696,26 +1944,26 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1/upgradeProfiles/default?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1/upgradeProfiles/default\",\n - \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools/upgradeProfiles\",\n - \ \"properties\": {\n \"kubernetesVersion\": \"1.24.9\",\n \"osType\": - \"Linux\",\n \"latestNodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\"\n - \ }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1/upgradeProfiles/default\"\ + ,\n \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools/upgradeProfiles\"\ + ,\n \"properties\": {\n \"kubernetesVersion\": \"1.25.6\",\n \"osType\"\ + : \"Linux\",\n \"latestNodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + \n }\n }" headers: cache-control: - no-cache content-length: - - '464' + - '465' content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:04 GMT + - Fri, 16 Jun 2023 00:44:29 GMT expires: - '-1' pragma: @@ -1747,26 +1995,26 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2/upgradeProfiles/default?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2/upgradeProfiles/default\",\n - \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools/upgradeProfiles\",\n - \ \"properties\": {\n \"kubernetesVersion\": \"1.24.9\",\n \"osType\": - \"Linux\",\n \"latestNodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\"\n - \ }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2/upgradeProfiles/default\"\ + ,\n \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools/upgradeProfiles\"\ + ,\n \"properties\": {\n \"kubernetesVersion\": \"1.25.6\",\n \"osType\"\ + : \"Linux\",\n \"latestNodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + \n }\n }" headers: cache-control: - no-cache content-length: - - '464' + - '465' content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:04 GMT + - Fri, 16 Jun 2023 00:44:31 GMT expires: - '-1' pragma: @@ -1798,34 +2046,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"\ + enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\"\ + ,\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n\ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1069' + - '1070' content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:04 GMT + - Fri, 16 Jun 2023 00:44:32 GMT expires: - '-1' pragma: @@ -1847,7 +2096,7 @@ interactions: body: '{"properties": {"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "scaleDownMode": "Delete", - "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.24.9", + "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "tags": {"key2": "value2"}, "nodeLabels": {"label1": "value1"}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' @@ -1867,36 +2116,37 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key2\": \"value2\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key2\"\ + : \"value2\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"\ + enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\"\ + ,\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n\ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59194419-3e02-4cea-93c6-62435787be3a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d24a6817-ab40-4155-8e60-618e62471731?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1068' + - '1069' content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:07 GMT + - Fri, 16 Jun 2023 00:44:36 GMT expires: - '-1' pragma: @@ -1912,7 +2162,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --tags + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d24a6817-ab40-4155-8e60-618e62471731?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"17684ad2-40ab-5541-8e60-618e62471731\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:44:36.3179652Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 00:44:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -1930,15 +2228,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/59194419-3e02-4cea-93c6-62435787be3a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d24a6817-ab40-4155-8e60-618e62471731?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"19441959-023e-ea4c-93c6-62435787be3a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:24:07.8867546Z\",\n \"endTime\": - \"2023-03-15T11:24:18.0033891Z\"\n }" + string: "{\n \"name\": \"17684ad2-40ab-5541-8e60-618e62471731\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T00:44:36.3179652Z\",\n \"\ + endTime\": \"2023-06-16T00:44:44.4028391Z\"\n }" headers: cache-control: - no-cache @@ -1947,7 +2245,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:37 GMT + - Fri, 16 Jun 2023 00:45:06 GMT expires: - '-1' pragma: @@ -1979,34 +2277,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key2\": \"value2\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key2\"\ + : \"value2\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"\ + enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\"\ + ,\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n\ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1069' + - '1070' content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:38 GMT + - Fri, 16 Jun 2023 00:45:07 GMT expires: - '-1' pragma: @@ -2038,48 +2337,48 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key2\": - \"value2\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n - \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"key2\": \"value2\"\n },\n \"nodeLabels\"\ + : {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2182' + - '2184' content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:39 GMT + - Fri, 16 Jun 2023 00:45:09 GMT expires: - '-1' pragma: @@ -2113,8 +2412,8 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: @@ -2122,17 +2421,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d28c27e1-ac25-4268-a465-e38295a0c70b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/079f672e-5b22-4e0f-b5ab-ca08fd48f128?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:24:39 GMT + - Fri, 16 Jun 2023 00:45:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/d28c27e1-ac25-4268-a465-e38295a0c70b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/079f672e-5b22-4e0f-b5ab-ca08fd48f128?api-version=2016-03-30 pragma: - no-cache server: @@ -2142,7 +2441,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14992' + - '14999' status: code: 202 message: Accepted @@ -2162,8 +2461,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -2171,17 +2470,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/28a26ec6-fa7c-4d7c-b8f9-7afdad8badeb?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/31bc9395-eac7-4640-bd6c-a218e305a97c?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:24:40 GMT + - Fri, 16 Jun 2023 00:45:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/28a26ec6-fa7c-4d7c-b8f9-7afdad8badeb?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/31bc9395-eac7-4640-bd6c-a218e305a97c?api-version=2016-03-30 pragma: - no-cache server: @@ -2191,7 +2490,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_scale_down_mode.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_scale_down_mode.yaml old mode 100755 new mode 100644 index a55bcd03694..62b5e25993c --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_scale_down_mode.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_scale_down_mode.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:14:02 GMT + - Fri, 16 Jun 2023 00:45:23 GMT expires: - '-1' pragma: @@ -53,12 +53,11 @@ interactions: "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -69,67 +68,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1440' + - '1732' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-g30j4cvl.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-g30j4cvl.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-rmgq1998.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-rmgq1998.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa3ca17d-1131-478b-bc26-1d32922c1b2a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ab20d84-3055-44a2-b708-a98d014ea58e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3211' + - '3539' content-type: - application/json date: - - Wed, 15 Mar 2023 11:14:06 GMT + - Fri, 16 Jun 2023 00:45:30 GMT expires: - '-1' pragma: @@ -141,7 +141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -159,23 +159,23 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa3ca17d-1131-478b-bc26-1d32922c1b2a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ab20d84-3055-44a2-b708-a98d014ea58e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7da13caa-3111-8b47-bc26-1d32922c1b2a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:14:06.9312388Z\"\n }" + string: "{\n \"name\": \"840db22a-5530-a244-b708-a98d014ea58e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:45:30.365018Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:14:36 GMT + - Fri, 16 Jun 2023 00:45:30 GMT expires: - '-1' pragma: @@ -207,23 +207,23 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa3ca17d-1131-478b-bc26-1d32922c1b2a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ab20d84-3055-44a2-b708-a98d014ea58e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7da13caa-3111-8b47-bc26-1d32922c1b2a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:14:06.9312388Z\"\n }" + string: "{\n \"name\": \"840db22a-5530-a244-b708-a98d014ea58e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:45:30.365018Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:15:06 GMT + - Fri, 16 Jun 2023 00:46:00 GMT expires: - '-1' pragma: @@ -255,23 +255,23 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa3ca17d-1131-478b-bc26-1d32922c1b2a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ab20d84-3055-44a2-b708-a98d014ea58e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7da13caa-3111-8b47-bc26-1d32922c1b2a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:14:06.9312388Z\"\n }" + string: "{\n \"name\": \"840db22a-5530-a244-b708-a98d014ea58e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:45:30.365018Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:15:37 GMT + - Fri, 16 Jun 2023 00:46:30 GMT expires: - '-1' pragma: @@ -303,23 +303,23 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa3ca17d-1131-478b-bc26-1d32922c1b2a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ab20d84-3055-44a2-b708-a98d014ea58e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7da13caa-3111-8b47-bc26-1d32922c1b2a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:14:06.9312388Z\"\n }" + string: "{\n \"name\": \"840db22a-5530-a244-b708-a98d014ea58e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:45:30.365018Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:16:07 GMT + - Fri, 16 Jun 2023 00:47:00 GMT expires: - '-1' pragma: @@ -351,23 +351,23 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa3ca17d-1131-478b-bc26-1d32922c1b2a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ab20d84-3055-44a2-b708-a98d014ea58e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7da13caa-3111-8b47-bc26-1d32922c1b2a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:14:06.9312388Z\"\n }" + string: "{\n \"name\": \"840db22a-5530-a244-b708-a98d014ea58e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:45:30.365018Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:16:37 GMT + - Fri, 16 Jun 2023 00:47:30 GMT expires: - '-1' pragma: @@ -399,23 +399,23 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa3ca17d-1131-478b-bc26-1d32922c1b2a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ab20d84-3055-44a2-b708-a98d014ea58e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7da13caa-3111-8b47-bc26-1d32922c1b2a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:14:06.9312388Z\"\n }" + string: "{\n \"name\": \"840db22a-5530-a244-b708-a98d014ea58e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:45:30.365018Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:17:07 GMT + - Fri, 16 Jun 2023 00:48:02 GMT expires: - '-1' pragma: @@ -447,23 +447,23 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa3ca17d-1131-478b-bc26-1d32922c1b2a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ab20d84-3055-44a2-b708-a98d014ea58e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7da13caa-3111-8b47-bc26-1d32922c1b2a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:14:06.9312388Z\"\n }" + string: "{\n \"name\": \"840db22a-5530-a244-b708-a98d014ea58e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:45:30.365018Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:17:37 GMT + - Fri, 16 Jun 2023 00:48:31 GMT expires: - '-1' pragma: @@ -495,15 +495,63 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aa3ca17d-1131-478b-bc26-1d32922c1b2a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ab20d84-3055-44a2-b708-a98d014ea58e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7da13caa-3111-8b47-bc26-1d32922c1b2a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:14:06.9312388Z\",\n \"endTime\": - \"2023-03-15T11:17:41.995459Z\"\n }" + string: "{\n \"name\": \"840db22a-5530-a244-b708-a98d014ea58e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:45:30.365018Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 00:49:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2ab20d84-3055-44a2-b708-a98d014ea58e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"840db22a-5530-a244-b708-a98d014ea58e\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T00:45:30.365018Z\",\n \"\ + endTime\": \"2023-06-16T00:49:16.8598501Z\"\n }" headers: cache-control: - no-cache @@ -512,7 +560,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:18:07 GMT + - Fri, 16 Jun 2023 00:49:32 GMT expires: - '-1' pragma: @@ -544,64 +592,65 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-g30j4cvl.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-g30j4cvl.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/fb6c231c-d2bd-4ea8-beb7-47722231414c\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-rmgq1998.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-rmgq1998.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/b980255a-fbb1-46fa-9946-e2239ac7f3f6\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3864' + - '4192' content-type: - application/json date: - - Wed, 15 Mar 2023 11:18:08 GMT + - Fri, 16 Jun 2023 00:49:32 GMT expires: - '-1' pragma: @@ -633,64 +682,65 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-g30j4cvl.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-g30j4cvl.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/fb6c231c-d2bd-4ea8-beb7-47722231414c\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-rmgq1998.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-rmgq1998.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/b980255a-fbb1-46fa-9946-e2239ac7f3f6\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3864' + - '4192' content-type: - application/json date: - - Wed, 15 Mar 2023 11:18:08 GMT + - Fri, 16 Jun 2023 00:49:34 GMT expires: - '-1' pragma: @@ -724,24 +774,24 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSVFdJd2NFWkhiMEpvVEZSV1MyaDRLMHc0V0hob2FrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCZWsxVVZYaE5WRUV3VGxST1lVZEJPSGxOUkZWNlRVUk5lRTVVUlhoTlZGRXhUVEZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVNeUNraENkVTFLTDFsNWFHTXlUV292Vm5kYVEyRjJSeTlMUzFodVFqRnhNMWg2UTIxdVdrVlBWbGhFWm1kWlkwaFpPRmN2TDBNemRHMUZVME40UjBkWU9IZ0tRVTF1UWt4UWEwcFFSeXR0TkVSVFExRTBUbFJJVWxWV2IwOU5WR1J2YW5CbkwxRmxObTFLY3poeWNUaHFRMll2WVVsc2JsbHFTbUlyTlVGQmVsbG1TQW81Y21wM1FVSmpjbWcyWjFnMGNsaENORTVFT1VjMVdsRjVXRlk0VVhaRmVFOVlTbGwwUm5kTlNUZDZabWs0YVd4T1NXeGtkVlFyUm1OellXa3labUpwQ2xoTk5uZHBPVXAzYldoaWNITkhRVmc0VW1oeFNUY3lha1JKZVVab1ZWazNhV1J1WjIwcmNtdExWV1pYZW1KU1NWQXdMMHhISzJSRldYUXpMekoxTUdvS1QzbFJlR3hyT0dzMlFsWjRUM0kwZFZaMk4zWmtXVlZKVnpWMmVYTmpTbU5MWXpWTE0xbEhha1V4VWpnMU9ETnBkMHB6ZUdOVWJGVkJNekJNTjJrMlN3cGFaalZ1ZURsNlVYQlBTVXRNV0doT1YzTlZibWhyYkVSc1REUktXREl4SzFGd1VFaGpLemh0U2t4cWJVNDVVVlZITjNwU1JXVk9kVmhZTVU0NU5rUktDbTFtUmtKeE9VOVNjbFl6V0VwU1pYUm1SSFJHTDNSbE9ISlpkMnA1VEdablIwUXlaRUUyYTBKSE9EbGpiSEUxVUhaNE1TOVdlbEppU0hKdWFHSk1iVlFLVVUwMmNYVjBZMDgyYVRKNU4xaFNVVVZFZFU1eEt6RTFXVTFVYTFCMlRqTk9PRmhGVGtKWU5IZG1TRkl2YjFaSVNtVkpOSFkyVDFSa1ZrbG9ja1ZoYmdwWk1rRndjblI0TVZoNFRGTjJSekJRYkVZMmNqQTRkVUl5U1ZOUE0wVkdOa1JNWVVsdWEwZE1hMjlaVlRWU1MyTlpTVzl4YWtkVmRIZFdlVWRRVjBKcUNqRmtOV1JuZGtoaWN6Y3JObUpUVmpnMU5YTnhaQzlrVjNWalIxWkhaRlozUmxObFlrWXpPVGRKYkM5ck5UTkVTRFJtYkZGRU9HRkliR0kwUm5kWU1Xa0tOMWN2TjFVNU1YazRVMHRSVWxWc1VXZEpkbTFTUlhsUlNUUnJUV2hGVlhsU1FXZExiVXRFUlZkM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWS1JGVlZWMVExU0hsVVRuUXZURkJKQ2tnMWFtbEhWR1JhYUdaemQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGR1JrMVlUVmR2Vm1waGNWcFVRMFkwV2pCUWVFMVhOVUpDV2xZS00xTlZSMjlJTVRSS1MzZDFRbkJOVjBzMFNucHFWRzlrUjJ4aVVXMHJTR1IwYUdsQ2RERkNTbkpXWm1kc05uRXhjSE55YTFCdFV6SnRSVTgxU2tZME5RcFVaUzlJVjFjeVdGWjViRnBZU1V4MVVuWmlaMWhVY3paNFZEWndVRFE1UnpKc1FtZzFaMDFDZFd4T04wNVJaMGhNY1U4d2IxSlBVelpyTUVvM1NXMHdDa2xtUVZCelExZElSM041YzFaT2RGcFNlVWhXWlRGR1RERmtjVU14VkRoT2RHRTBVREo1UzFWQk0wSkJVWGRwYWtseVJVMW9SVVY2TjJob1ptdG1WR2NLYW1oMk5WZEVUVGhTV0c1WlptMWthMWxXZFhsa1RHbDVZWEV2VUZCSE4ybDZTbEY0UTB0WlYzRm1NVWxTUkc5TGFHMVpNRmdyU1RVNWIza3dla2wzTUFwYVNsVk5ZMlp5Y1ZaSWIyaGFXSFZvSzJFNGQyMXJiRE5QVGxkclIxY3lXRUV5V1V4cVNXRlZTMHA0WkdGd0t6Z3ZlbUp6VXpoclNtRnJXa1p6TjNCTUNuUndUalJJTmxRNVNraGtXVkpWUVc1dlVEbEVUbkpLYmtwNFFraFJUMlp2ZFM5RWNVZG1VbVZyY1dGUGJ6VTRiVGt3VVRoNFZqTXhTRTFsVWpCdVZXd0tRbFI0T1RsNFZsVnZTV0V6Yml0cWJrMVdhWGwxVDI5Nk1EUXZiMUppY1cwemExbGhka281Um0xaE5tTmFXWEJQU1dkVlEwOXlVM2QyUkUxTk9WRk9aUXBXWmpoRVZWTXZjMGtyV1UxVlpFdEZVbXRUVjNsWlJWWlNZV040WjJsMFRtWklVWGwwUkRFMFlUUnRlVmd4YkRkRFpVMUhVblpZSzBjM1UxRndTVWxQQ2pBeVlWUlJjR3RrYW1KaWNrSTNRVWxUT1dsMFZsZDFhMmxaYlhsNk1XSnFkV0ZTTDNGSmVXVm1RazAyUzFKMU9GSlhaVFZtY1hWMFNUQk1lazFxVFZNS01qbHljeTlaT1VoTFEwRllTWEJYWjNab1lrcDVkMGhSVDI1cGJuQkdNRzlaWWxvcmMyaFNRUzgyWTBJMll6WklXazR3ZFVsU1FtSlJlWGg1U2pKTU9RcEJSVmhCTmtrNGVXUjJialZ1UzNodkNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2l0MjVzeGMtZzMwajRjdmwuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3RzZ3pwYnkKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3RzZ3pwYnkKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3QzbWk3bnVycGtkX2NsaWFrc3Rlc3RzZ3pwYnkKICBuYW1lOiBjbGlha3N0ZXN0c2d6cGJ5CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdHNnenBieQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3QzbWk3bnVycGtkX2NsaWFrc3Rlc3RzZ3pwYnkKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVWxzWTNGdGRta3JTRmRtYTJSblVFSmpSMEk0UzJOM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDE2UlRGTlZFVjNUa1JWZWxkb1kwNU5hbFYzVFhwRk1VMVVSWGhPUkZWNlYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCY0dKYVRuSlVjVm80UnpKTFVEaHZaaTh2UkhVS04wOHdZV0pRY1RKbWJFMDNka0ZOYTFsSE1qaDZaakJJWWsxUVlrbHFWMGxRVEhwYWJGZ3JhWFpMV1RNMVZUQnJaV2xCYUhGRVZtcEJVVTR5SzBnMFNBcHBVRWRKZWxWdVVsTm1SMUJvZEhBeVVUUnJlVGx6Ukc1bGNtSmtRM2xoTmt0dGVDOTJSMWM1TDB4cFVGTkxTVWQ1TVdGT05FMXJNRTlHVkc5V2MyZEVDbFl3ZEdzeWFEaFhSM1pIWkhJd2JIWnhXV1F4TDNsa2N6QndVVU14Y1U1YWFtVXJNMjAwV1ZGUVZsaE5XblIyVjFoc1oyTm5UR3BGZWsxVFlucFRjVllLTUdkQlNqUndVa2xRWTBjeFRHVmxTRk0yUzI5WVQzbzBRVU50WVhCVFVtWmxlR3QzUzBKSlVHdEpjMHR3T1RWa2JWaFlNV0l3UzB4a1RrbzJlR3N4VFFwM2RsZHlUbkZIYXpkS2F6aGtWWG81TTJ3emJITXZVa05EZDFSM1prcHFZa2N4YjJkbVZGUXdZVXRrY2pGUGQwUklXbUZOU210Mk4xRXZaREpGZFZGRUNuQlNTMEZJYzB0RVVHRXhNWE5IVVU1TFJWQkdkM2hWVGsxdVVYRTJTaTh6ZVVsSmVHeHZaR0Z6ZUhvMVNUaFpkRkZaVjB0QlFYRlVTMFZ6YjJaTk1FWUtXazlRV1ZZd05YWXlkR2RWWm1WbllsbDZXbE0wTjA5b1ZIQTNjV2RHTTNkWVRUWTBWMHhvTW1SRFpqWlVTVVVyWlRsTFNHTllUVlJFSzJvM2EwRkJRd281U1hsVlQwSnFkR3d6YVdSUlpqWkNNUzl3WmswMk1WWmtjRUpYUTFkcGF6RjVjalZtVTJsYWJGQlBSbkU0ZDBSR2JtVmhhbWRpUjNkV1N5OVdORllyQ21KTVV6UTJjRE5PWkZCWFRHVnZNRzkyU25GTVUzWlNkRTVsU1cxeWRqaE1XR05LUkRsS1prZzFSWEJWZVhSbFRDdHBaMjl2VEVaaFIzbDVWR2N3U25nS05IaEJlRGRNZFRoSE5WaE9aemhvYTI5bWVsZG1NMHB2WkZoSGIyNUhVVmRMZGtWS2IyOU9TM014YUROUk1XdHRjbWxWYTFKS2VFOXNWRlZ1WTJSSFRncHdZWEpUVVN0R01GTjBVbkpWZDJGSGIwNU9TV05tYTBOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWU2tSVlZWZFVOVWdLZVZST2RDOU1VRWxJTldwcFIxUmtXbWhtYzNkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCUkdKSWQwdzBZMnQzTkZoSU9WRlBXRXd6VVFwaVYwbFFUMDgyUzJsWlZVZFFMMVE0SzBNMWIyaFJiVWhNV0hwMlRIcElTMjlqU0N0S01uQlpSM0pEYzAxR1dqUkxTQzl5YlZFeGFGbExibTlUUjB0M0NtVmFWVFZNVG5STVQzbDZZVlphSzFsaVNWUnZlVEFyTkZGa1RVZEZSM1J3VGxvMVVtazNaMFZpU1VwelpHbE5hRVo2Vms1aU0yeHVWeXM1YzFWWGJrd0tjazk2UlhWaE4wdEZOM1k1WlZWNVoxSk5hamx0YnpsRWFWRmlMMFExYWxZMGFqSnpXVXBYTUhST01qbHVkVU5rYUZkUVJEVXpSSGszTDJoQ2MwZzVNZ3AyUlRKRU5XMHJaeTlwTkZOa1pEZFJaRkJQTTNOclpHaFBSMXBMVXpSSGVGWk9SbVIyUlM5d2N6QjRSME4yWmtaSVdIbFZXV3QwVkZSQ1IzUlVVak5NQ2poa1JrcGxNeTkyYjJKc1RtTkZNbU5RZFVaVEx6WndTVVE0U0hCaE5HRldNMmRyTUd0VlkwMHpZblpVVkdreE5XeGFVMlJTZFU5UmFuVmlUR2t6V0hnS2NqZHJWbnBsUmpsaFduTlNWVTFRYWpST1EzSk5jRmR0TVZOVU1GSk9iVXBQWnpsVllrbE1UM0JqUWxSV1NEWTJVRWhKT1cxSlJtZHJXall5VUdkV1JRcEphVVIxYkhGcE1GTjVVRFZYTkdOYVVHZzFRblpwVFZGSmREY3dhMEpGUjNWTFowVldSMk5RYldSU1EzQndSbUZ6U2xwbWFsVlVWMjg1VWpoemRsaFVDazFMWjA5UVdGTklWVE40WXl0MWFpdFdSVnBOUTJWak9VbHpRMlJyV1VsUE5HSlpUWEl3U0ZGMFNteDVlRzg1Tm01aVRpdE1jMHhCWm5CWFRuVkJlVGdLUVZVdlZ6WlBkSFZwY1dSWk5rTndSVEpoU2trNU4zWlhTRzlxZDFkYVFXNVpaVXBvUkRSalExZGxNbHBtYWpOeVNURkpka3h4VDBwRldEQlZUbFUxUlFvMFdHZ3JabUZxVWpKTmNXVlNUbTR2Ym5BMVdYVnZMM1o1U1UxekswMVNOMHhPU0hWaE9DOVNhSHBxV0RkUVpHWjZSM2xoUkc1bVp6bDZVVTlUYWt4M0NrSTBhalZwVTNaNFEyaFlXRVpWUnpSSlpqbGFORTlwVXdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCY0dKYVRuSlVjVm80UnpKTFVEaHZaaTh2UkhVM1R6QmhZbEJ4TW1ac1RUZDJRVTFyV1VjeU9IcG1NRWhpVFZCaUNrbHFWMGxRVEhwYWJGZ3JhWFpMV1RNMVZUQnJaV2xCYUhGRVZtcEJVVTR5SzBnMFNHbFFSMGw2Vlc1U1UyWkhVR2gwY0RKUk5HdDVPWE5FYm1WeVltUUtRM2xoTmt0dGVDOTJSMWM1TDB4cFVGTkxTVWQ1TVdGT05FMXJNRTlHVkc5V2MyZEVWakIwYXpKb09GZEhka2RrY2pCc2RuRlpaREV2ZVdSek1IQlJRd294Y1U1YWFtVXJNMjAwV1ZGUVZsaE5XblIyVjFoc1oyTm5UR3BGZWsxVFlucFRjVll3WjBGS05IQlNTVkJqUnpGTVpXVklVelpMYjFoUGVqUkJRMjFoQ25CVFVtWmxlR3QzUzBKSlVHdEpjMHR3T1RWa2JWaFlNV0l3UzB4a1RrbzJlR3N4VFhkMlYzSk9jVWRyTjBwck9HUlZlamt6YkROc2N5OVNRME4zVkhjS1prcHFZa2N4YjJkbVZGUXdZVXRrY2pGUGQwUklXbUZOU210Mk4xRXZaREpGZFZGRWNGSkxRVWh6UzBSUVlURXhjMGRSVGt0RlVFWjNlRlZPVFc1UmNRbzJTaTh6ZVVsSmVHeHZaR0Z6ZUhvMVNUaFpkRkZaVjB0QlFYRlVTMFZ6YjJaTk1FWmFUMUJaVmpBMWRqSjBaMVZtWldkaVdYcGFVelEzVDJoVWNEZHhDbWRHTTNkWVRUWTBWMHhvTW1SRFpqWlVTVVVyWlRsTFNHTllUVlJFSzJvM2EwRkJRemxKZVZWUFFtcDBiRE5wWkZGbU5rSXhMM0JtVFRZeFZtUndRbGNLUTFkcGF6RjVjalZtVTJsYWJGQlBSbkU0ZDBSR2JtVmhhbWRpUjNkV1N5OVdORllyWWt4VE5EWndNMDVrVUZkTVpXOHdiM1pLY1V4VGRsSjBUbVZKYlFweWRqaE1XR05LUkRsS1prZzFSWEJWZVhSbFRDdHBaMjl2VEVaaFIzbDVWR2N3U25nMGVFRjROMHgxT0VjMVdFNW5PR2hyYjJaNlYyWXpTbTlrV0VkdkNtNUhVVmRMZGtWS2IyOU9TM014YUROUk1XdHRjbWxWYTFKS2VFOXNWRlZ1WTJSSFRuQmhjbE5SSzBZd1UzUlNjbFYzWVVkdlRrNUpZMlpyUTBGM1JVRUtRVkZMUTBGblJVRnBVWE4xVkVJdlZuQldLMEkwVDFaUk9UUkxVM0JaUVd0NFdraEhSVTE2VnpkMFRVOWFNbm8xYjNOVmNVOWpibm94VDA4cmNYSlNiZ3B2Vm5CM1FrZElWMmRvZWpsSFREWjJPWGRPU0hkR1VGVk9VV1JPVW1aVGVXUlZkMmdyUjNZNGFtTk1ialJWZURaNVJsTmhWM2ROVmpWU015OUJaM2tyQ25sMGFUbGxWalZOY1ZBelQySnhWa1JMYlRWaVkwZGlVSGx6TUZrM2FqSmplREJNUlV4cU5EVmpVR2hxYW5sc1J6ZFdMekpuUjFGR2QwOXdVWEZ5UW1jS1FWRXJja3RJTlc1VU16RndWMHBoTXpRNFFuRnBVVzVxTmpWWVdGWXhaazh4VVVwaGFVUkNSbTVTVVVnNFVWbDRRazFETlVSTVJtSm5hekpHV2xSR1l3cG5VbU5IY0dwNFJ6aE1UbGRhZHpaR2FuRkVVelJwWTJKblFtNHpZa3BvZEVsMk5HeG1ZMGgzYmxCWGVWVm5PRWhaTXpaVGFUZG9ia0pxVVVoeFExRjFDa1ZFTkZkRWRVc3JjVGxWVUdOdk0wcHJMMXB6WTNwWldrRlBRblpJWlZOd1dIUlVNQ3Q2Um1GdVpFazVaV0ZrWm1waFQzSlVWa3B3UVVvdlduVnNNMW9LVFRGUGN5dGxNVlp3Y1hOcVNrbG1NMjl3VkU5MWRHWlpRM1pvVm1WNWF6Sm9jMmdyU1ZSeWJuZGljekUwTTFWTVdGaGpOWEV5VjFZMGRISnVhRkJVWWdwcU1rOXlRVkl3UjBnMlpUSXhla1psSzJwdVpFa3dhRXROTlV0blNWTlBabU00VEZCdE0zaHRWbEF5VGpFM1UwbHlWRWxaTkRabU5XcG5abHAzV2xGNkNtOUtVWFpTZW5kaGMweFdSM0ZsYm1Zdk4zQlRWamQzYURSeFluQXJUbFI2WVhWUWMwSkRWMFJuWjNkTlNtaENlRWRyVmpGeWIzWkRNV2MxWjJ4NVNsWUtOREoxU0VaRVJrWktVRnBRUmxWalFVRllLek5UUzFaV2VFOUNiV2cwZUVSeGNrUmtUMHRZZEdrdlNUTXphVVJxZERWYVJWTlRkVWhKYW5CSVkxbzRUUXBDYTJNeFFWRkVRbTE2VmpCYVJsVkViVXRYUVhKTU56bE1aM2haUzJwblIwaFhSRlpMVlV4U05tTnJja0p0YmpKNEt6QkRaMmRGUWtGTlFscFNaSEpOQ21Od1owZFRaazVPT1VGeFpsbFBLMVJHTkROb2FERTVORGQxVTJWdVFtbzBaV3h0VDJWeFdqUkZWMEk0VkdwMFFsWkpibEJOY1VwbGFuWktUbVZPVkV3S2JsZFJOMlpuTmtzelQwcFNaelpqVkRZMWNGQXdTalJtU1hSMFFXOHJhMWhFZW0xdVkwWklkMHRWVUVSVFEweEVaVmxOYkRKV1IyZDBNMkpWYTJWU053cGlWWFJHVW1Gek5XSllTVVl2UnpGNFNUbG5PRko1YVRjM05GbHFWblJoWjNSTmIwTjRjV0ZqYkRORVRqbEZNVmhtWnl0eGRtSnNjelkzZGxCRVYzRXhDbVJxY1c5TVVrOXJUV0pWUW1selRXSlZkSE0zZFVRMVZXWlpNRmw2YTBOdlVrd3ljV1IzYlVOR2FraHZWaXRPU1N0U05HdERRM1ZXV2xKSVoxUkZRM0VLUlROcFkweFhNV3d6YXk5V1pFWkhNRzlUTjNKRFJtSm1kVUZyYVdkVVdIYzBPV0ZOZW5KWmNFWXhZakoxZVhWUFMwMVljREpPYVd4SFIzVXlZbkV4TndwWWVXVm1kRkJHYTNaME5UZzBPV05EWjJkRlFrRk9lVTFvYWtKR1NXODNjM2xRVG5nME1rOUtVV05OWkVseU9GTmlZVGd6TTNodWRqRldlbmRaU1doSkNsVlVaMGx4VVM5RWRqUnBhMnhvZFRZNWRWSXpUR1kwWlVWVGNEUk1WMmNyUlRKVmNVaEVaMEZhYkdWeGRHZGFVVVZNUlcxVGFVSjFZV2hGYVZCbldsUUtiQzgyY0hBd1FYcDRWakIxU2xWWFkwcFlRMEpPZVVaSWRraE9Wak5oYVRWQ05HcExTWFphSzNKeU0xY3hXalJZZVhwdlR5OTRkMUF6UlZSSGJtZDNLd280YWs5Wk1HOXlRbGsyUW1oMVNEUjRNMmhxTWtkSVNDdDFheXMyU0d4S2IzcFBSVmxTYUZkV1VUQjFjamRGYlZOWVFsbFNSV1ptYlRkdmNXNUhjREZEQ2psTlNpOHdlSFpTZEZoTFlUbFZNelV2Wkd4eVJXbDFUbTR6VlM5UGFFOXRhMnBLVFhZcmQwSk5RV3N3VjBOTldIWXphV3htSzJkeFJVSjFkSHBOWkU0S2MwUlZSSEpJY1ZaeE1ISklabEUyTm5CS1lsaGliMVV3ZUd4NlVDOW9TMDF2YW5GM1VVTnVSMjV4T0VOblowVkJXbWsxUjJ4TVFYUmFRMDVpU0RWNFZ3cDFNVzVzYUdZcmRUaEtiRkppT1RsMmExSllUazlPY1haTVIyOXlURGh1ZVN0VU1uWXhXSGxyUzNveFpESmlSeTgwUjNCV1pWUXpaR3M0VTJrNU5Xa3ZDazVLT0ROQlFXWjFSR2xESzFrelIwazRPRFpKUWt0b1UxWjZPV2w0VEZJdlVqRmplazR2ZURsNllsUkxiVXhzTTBoUVNscDFibGg2U0hCNGFrbFZNakVLYmxoQlpYQkJhMHByVEV0ak0zSXZVSGMwVGpobGVrbFBUMGsxTWprd1YxTnJZMDV1VGpkeU1UVmtOaTlSVVZScGVXWmtOVmRwYldnNFFrVjBUMUpVZEFweWQyeDBja3MwVlU5NFEycHNUVVZRYmxkblJFVlpaMU5XUjNRNVNuaHFja3cwU1U1U2JHMWhkRmM1VVhjNE5YVlVZWFpKT1d0VmFtRk9kMWR4Wkc5SENqSnZVVGRqWW1kNVRrSnNOV0ZoVlZwUlFXdE1aVkowU2k5amVqVmtkakp1VUROU09VRXJkRmRNTmxaR2J5OXJORmQxWjJ0TVdtRjJaWFkwTVdkc1RWSUtjbTFJVFV0M1MwTkJVVUZRYkRGMVVrcEJTVXRoY0VSWFRGQklkbEZ0TDBWMFJsZFdabXc0UlhGUlZqZHNkVzVXWkZOVVRqTmFZbTlUUTNoNlkyUnZhZ3BrWTJOeE1Vc3ZTbVpQWkdsa1NYVjNTR1ZxVURKeWRWTlNhMVJUWWt0NlVHVTRSRGhrTUV0SE1ETmpaMFJqTkhaM1pWUjViVFIzSzAwME5HZFRjMmxyQ2tOeVVWWXhURVZOTkVGWFpYTTJlVTR4Y2pob2R6RnlWaTgzZDNwQmMyVnNiMlk1WkN0eU5tbE1lR016ZVRaTk9YUllSRTB5ZEVwVFpGaGFSVEoxUlVvS1NVZzVhbHBJUlZsQlMxY3ZkMVZ6TkdkaFlrNUhjREpLVDBOalZVNVpXVnBZYlVWSk0yNUViVWR1VkZSMWNEWlpZa3hJUkRscmVrcFNla2xOV1VkdVl3cFlWRzlGVG1rd1RUVnlXRlpKUjBSeFlpOXlVMFZ6T1RWQlRsZzRaME5VSzAxYVdXUm1VSFJNVFhndk1ITkxlVTB5Uml0SGJ6SmFWMmxTYW5wWVdYUk1DbU5SYWxaT2NuRldPREJ5WWpOa2R6aERXRkZxY1ZrNU5tRkxWbEZxY25JdlFXOUpRa0ZHUVdwb1RERkZlWGxzV1c5VFJGQkljV001YUVSYVV6VXdUMUlLWmtsSmJFOWhSbkJyWjJaNVpGUXZhR2MxVVRaa2IweHBhelZ2T1dVeWJYWnRhMlpVY0RNclVra3laRFZOUld4R04xSkpRbUZFVEZOWE0wNUJOMUl4WVFwck9ERm1Ta1pYVW5aeVp6SXJkMkZhYjFZNE9WSnpPR1J0YXpOU2VUSjRkelI0VlZGbVQwcERkR2RqZVU1a1ZISlVXRGh1VDJOd2ExWm1lVEZJVkUxQkNsbEJla1Z1YkVoYVVHOUJNbEpyVGxoc0t6Qk1kM0Z4VW1KMU1FcElPWFY2Ukd4UVlWRnpXbGw0U21kelFXaDBjRFJWWW14cGRrUkdlRWxRU0ZwR1NHd0tObGt3UVdWMlIwWmtaa2t6Tkd0WGVVWlJlRkJzUkVKNVdERnlhelV4Y0RaM1ZDdHpTbk5ZVW5SWlVsWTJZV1ZHVHpGTmVtOXpVWGhGZFdkS1FqQlpOUXBKTW1KME0wbHphbWRGYTBSTFkxQkxXbW8zVldaaFVrOUxkbGh0VmxoTWFFZFhNVEZSTlV4bGVIZFJNa3hyWTNaeFQySktLMDlZTm1kcVRUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogMTY4MGNzaWprbWJvc3Zja21nbG02dHU3bjlyNWV1NHoxNzJ2cXEzdnQ3eDNmZGt6ZnZ6ZGdhdXp0YjA3MGE1NXFjcm03d2h4NWhwam1sbmMyN243NWZsMWp0Nm83YnJlYWdlN3Ziem9ibGpwbXRmZXU1ZDZyMHhpNjVzYnlsMnIK\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVZBcmIwVXpaRTlvYkdwM1owdDJNeTgxZWt0U0wwVjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJUSk5SRUY2VG1wTk1GZG9aMUJOYWtFeFRYcEJNazFVV1hkTlJGRXlUWHBTWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNtdE9MeTlhTkRGWmVXOTFiV2N6Vm1OU1dIaEVUM295T1ZoYU9GTm5NMFpYUVhGVWNWQmhlV3MyZWpGWlJXSXdiMmxyVkhKd1NrSk5kMjVoYjB0VWN6UUtXSGRoVmpORlVITk1abmMyVkRKeksxRkJWbkZsVFhFM1ZITjBVa0V4TDJ0cVJYSm9ibkJtY0dwWWRISmFORE41SzNGb1J6YzJWbTFaT1NzNGVqZEhiQXB3VDNaMlZqWkVNMDF0YVZWNFJEZHVTa2xvVmtGcFJUVmlORUpEUWtNMkszbFpXRVF2ZVZoWk4wNWxVVmsxWTFOTGJuUklZVTVhV0hsdFFXdGliakU0Q21WWk5IaHViSGs0TTBvelkyRTVVVVJXYUhGRmRFWmtWRlpOZWxGb1RYTk5lR3RqV20xSFNXdDFMMUkyTUhOcFVUZGpNbkpsYVhGNllsQTRUR0pMUVVjS1ZtbFlXVVEzWlhWd01IQnNVbE52TlRNeFNGQnFOa1pWV1dkM1YyRklhSFJPWkRVMWJFeEVZamhYZUcxQ2NIQlFUWGh0Ym1KVWNEaFJSMEpNU2xGbU13cDVSbFpOTlRORWFuSmxjbnA0ZW1Gb1pYQkVjM2N5WVVWQmFtZDZVV05LTnpsRlJGQXlZMXBWYTNCTlJIUnlXVzVLTVhSR1lsVnhUVmxRZVhoNU9HNTRDbFV6Um5sQlpEbEZOMGh6T0Zwdk1HNVNaM0ZDUTJwUWFEQmhSMDlOUjNOemVrTXlURzV4WkU1SmJXdHFXRUZ2VFRNeGNWbFphM3BGZWxsMlZreERiM2dLWVRSVVZFSktMeTlOYjFOUU5qa3hRMjU0VmtadE56TXlXVnBoWkVocFUyVTNiRUpqVGxaU2QwRnZkakpVZFRVd1NESkpUVUZXWlRsS00zVkRNMnM0YWdwaVZuZDRXVUpJY1VRMmQzZFdObVV4UVZORlZYRmhlVkI1ZUVSR2JUTkVaekYwU205NmRWUkRaV0p5VjJsRWFqUXdPVE5NWXk5Q2JtNXJZVFJCVlRGb0NsWnJkbGg2UWk5SWNuZExSMlpDVWxkamFUaDZURVpPU1RWSVQyOHlhWGxaZWtkTlpWZFNRa0ZhWVRodlZGQkpNbFJNWldkbk9HTjJUemhKYWpsUFpIUUtiMll2TmxWa04zTmljemtyVmxsTk5tdEliV2xwV0doaUx6Z3JlbmRHVW5nM01uZFJRVzkwTjBzNFkwTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1RFOVBjVTlLVUdKUFJUWklMMDVyQ2pGUmNIVkZhMVZKYnpkWWVrMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFWWTRhRFp0UWl0Q2RERkROWEYzWmxWUmNtVlVUMWxzWkdvS1oxWnhNM1EzUmxKWE4yNHliVEpUVUZVMlZrRnNUM1p1Y2xOVFF6UllWbU12Vm1jNUswUnJUVzV5UzBZeWJWcHdjMVp3V0hSV1lWWkVSV05LVjJJM1pRbzFNMHQzV2toQ2NXaElUM0kyZFU5Sk5ESTVNWFowYTA5b2JERkNkVlJVVm5kUVZtdFZlakppV2swd1J6Tm1iSHBRYW0xNU1IQmFhVFUwYTFkQ01tWmFDamQwU1ZSM01GRlRSMDg1YXpKTWNYVjRPRUp5Y2pKS1QxVXZTWEZRZVRoM2FXaE1WM1ZQYWs4M2RYRTNlbXRHZFVFeE9GQlZSMWs1ZWpCb1pITXhWMllLTnpOME5XMU9hR1ZzZFZGWllWWTJOR05uZDJ0RVNUUm9NMnB1VnpkSmFubHhMM1p4YVZCeGRsWmlla3cxU0Zwa09Va3hlRkJ4YVhKM1pqQlROVFpYVFFwbFYxZERkbXRtV21sSE1EbFdWMlZ1UVhKTldsVTRhRWQ1U2pZd0sxSTNURkYwVDI1UFJIZDNUalo2U25NellVWjVRMFZ0V2tOWlQySkJWVUYyU1VoRENuZDRRM2RxVVRCWlRHVkJaR1ZPZFRWMGRVaEJVVkJDVld4cFRWVm5jWGxMTDNKdGVXRjZZbFp6WXpVNFdURkpWVWhDWnpaNVJrMXllRmMyUW10UlVYVUtMemN4Vm1OU2FHSXJlRTFGUmxCc1ZscEJaR3d6UTBVeGJVbG9SbmxXWkVWNVlTOXdVRTFzVW5aNU9VbFBkSFoyWkc0eVRUVkllRWcyUjAwM2NUSlJRZ3BSTTNCR1RVWXhOUzlMVkdFd2QySXpZVFZsTXpseFMzUkpZVWN2Wm5oc2JHRXJlVTUxV0VwWlUwMTFlVFpYUkc5SWFESkphVUo1TWs1RFpWRlFUWGQ1Q2poYVNHMVVaVU5qYVhsTWVGcHZlVzVSTWpRellrOWFjbEJSZHpKRk5YWlpUVWhxYUV4UE0wUlBRV0UxVFRGa05EZGhkbmRzUTJOT1pUSjBjM2MwUlZFS1FUYzFkekJTZGxsNlVTdEJSMHBzUzJ4MVoxUkhXSE5rYkZkM1FrOUJNM05DYjBnMFkzRTFUM0J1VDBwcFNXaHhXSFp5VEhGdFZIUllVMmhHYkRaSk9BcFpNRTlCUnpkaVoySlBlR0Z2ZVVSV1JFRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zbWV5dWptZi1ybWdxMTk5OC5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdHRndDNveApjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdHRndDNveAogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdHV1YXRxZTd5eHBfY2xpYWtzdGVzdHRndDNveAogIG5hbWU6IGNsaWFrc3Rlc3R0Z3Qzb3gKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0dGd0M294CmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdHV1YXRxZTd5eHBfY2xpYWtzdGVzdHRndDNveAogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVMW9LMWx4WWt4bFFXa3Jka3gxWjNCbVJrNXBOVGgzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwNXFSVEpOUkVGNlRtcE5NRmRvWTA1TmFsVjNUbXBGTWsxRVFUQk9hazB3VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJNVzFXY0RZMU5EVlJRamRHZDNoTVIyNW5RMjRLVUc5YU0xa3hhR0pDVVhvelFVNVJWbmxRZFZjdlNGWldRbmN4YkhSMWRHZHNRM05vUWxoMVpFaHBSMWh1ZDB4bldXOTJPV1ZHWlVKR1lsaHNZelp1VHdweUwwWnlaMVkzY1RaU2RWQk5NRE5WY0hoaFZIUTJWV2MyVlV4SlZFZHdZbTFWTkhacGRqUkVaVWN6U1ZRd1lUTlFWRGQxTTBsTU1HSmhOMUpCTVRCeUNuZHdkek5aWWpkR1VuZDRTR3RGYW1wTmVYWXJSVFJqWXpKRFlWTkNUMmM1YUd0dlJIbFhaR1F3Y2s1cllVdGpXaTlRUTI1TlRIUnZjRmxwZFZNNE1sUUtNSEZyVm5neFVESjVPREJITW05Rk9IVXZRbGhCY25kbVdsUldVMGxTVTFGSmMyWm5Oa2N5ZVhwd2JYY3ZTbTl4VEZScWJVNHhVMnAxZFhaYU0zZHpaUXBGVms5WVJrVjNXVVV4TVdkQlMxRmpkRVJaYlZGQkwyTnBZV2RCUTBSdGVHc3diSEV6ZG1oSFp5dGlWbkpOTW1aVE4ySjZNMHBZVFd4cGJHdGpjM05NQ2pCelZURkNjbXBqVjJVNFlYRlViMnBKWTBwdE9GVXlWRXAyZG1sbFoxSlJObUYzVlRsUUwzRTVXR0pVTkUxdFlVWjVURUphVnl0eVowWlRhVXhqVkZVS04yOXdaMG8yVWpWM0wzZFJabXhVWjJ0VE9XZHlZV2syWmpZMVlpdGpUbVptTVVaT1RFZGpXazlXY2poSVJrazNLM0I0TWtOUVNXVjFPSG93ZEZaclpncERZWGhVWlU1REsyNVRTVzVKSzB4V2NqZzNOa2RFUlVsdVZISldZVk5FTjJ0NFRqTkxhaXROUmxRd1kxZEVhelpCVUVVeWQxZEZSMnQwU1RCbWQxcG9DbTVKVTBGNVQwZHlVREkwT0dsd1YyNUtRVFY2VXl0VlZWRjJXbkl5ZHpoRWQzbzVUWFJyYmtSWk5HZFdOako1VG1RMVNGbG1WRmRTUTNZclRUUlBNWElLYjBGcVJHSkhRekpaUTFCbVUyZHZhM2REZGpJd1RWQnViakF4VVZoTlZWVlhZakYwY1VOTmJqUk1RV2hoTTAxMmFXeERabFJDVld4aGVsZHZjbk5DWXdveFltZGtjRWN4WlRKdFlrcFdMMVJFVDFoUFdEQlljME5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZjelEyYnpSck9YTUtORlJ2WmpneVZGWkRiVFJUVWxGcGFuUm1UWGRFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJSRmxHT0V3eVUxTk1VV1pyUW0xdlNsRTFid3BHTlhCVGJGTllkQ3N2U0VSeFVHcFRNRU5zT1V4M1JtZGljVGhFUm5CeldWUjVNelJUYjB4SkwzcEZTbWRMVDFSaVMwNXVSVkoxUzJFNVREQTNPWFp5Q2sxVGRIaEthVGxtY0hGTlFrc3pkMlp2VmxBdlowTXdORzVOTWtGQlZuQndRVUpKVkRkS2FHSTRlRFJDWXpNclJsRnZTMHQzY2s5TGVTOVdNSGxTUVRNS2RtUnFaVU5ZYTI1NGFEVmhlVTQxU0d4dksydERObGxTUkRoVlMzZFdTbXRWUlhsMmFEQTRLMEp5VGtnd0szY3hNWGRzVGpKbVJWSndNME55WlVGMmR3cHNjMlJhWnpKNFVtTllXV3N4VldOU1dtSXJTRUZGVDNobVpteDBNWEZ0YjB0blEzTTFNVlZCUzJVNE1VaFlUMmxLUWxkaU5rUkhTblY1YWxseU1tMTRDbU1yTjBWUlpHVkRXVkk0VEhndmF6bDNXbFZOUm5OTE5UQTFVSGsxTlZsd1VtVnNlRzQ0V2l0dWNtcG9Wa2hPVWxSd2VUQmpaV1pxY2xoUVZqQmxNM29LY0M5S2NHRmlNSFZFVEhGRlVtdHBhSFV4WjBOWVMwRTFjRUZPWkVZeVRUVkRhM1I2WWxCdmVVNHlSV0ZJVHk5d056SjZla051T1ZWVlNFOVdZMjFwZHdwNlFrRldWWFZOU1V3NE5rVklhREZXYW1oaldrY3dXRXRFTTBGbVFuWmtPWEYwTWpOSlVGZ3pTbVpETW1WWE4yeEJjakUyUzBOcWNsUTROelUwYzI5WkNpdFFiSEZIWWpOVU1qVkJaRTVYY0VOMU0wUTNNRzFhUVVGTk1WTldWM2R5UjNkTGJ6UlBkMDFSTDBJMVMzTkZlVXBsWTNKU2NIQTNUME5wVVd4bVVsZ0tZbEJUTVdkMk1qbHhjRXhWVG1WdGRsUjJiRTAwT0RoSU0xVmtZMWhUUm1SdWRUTjNaVWhZVFhNM1NrTmtObU5hVTNwRVkxZEtla1J0U3k5VWNVZFhSQXBLTm5wclIwTlJSMlZLV2l0d05UVk9NRk55YmtndmVrNU5iRlpVVmpnelYzQnlOVXQ1WldsblNucDNaRWhPUW1JeU0ySXhWMWRHZDFwTUt6SXlhMkZyQ21wRGEydFpWbFZuTDNaVFRWZzBkemxDUlZsQmJHMW5VUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJNVzFXY0RZMU5EVlJRamRHZDNoTVIyNW5RMjVRYjFveldURm9Za0pSZWpOQlRsRldlVkIxVnk5SVZsWkNkekZzQ25SMWRHZHNRM05vUWxoMVpFaHBSMWh1ZDB4bldXOTJPV1ZHWlVKR1lsaHNZelp1VDNJdlJuSm5WamR4TmxKMVVFMHdNMVZ3ZUdGVWREWlZaelpWVEVrS1ZFZHdZbTFWTkhacGRqUkVaVWN6U1ZRd1lUTlFWRGQxTTBsTU1HSmhOMUpCTVRCeWQzQjNNMWxpTjBaU2QzaElhMFZxYWsxNWRpdEZOR05qTWtOaFV3cENUMmM1YUd0dlJIbFhaR1F3Y2s1cllVdGpXaTlRUTI1TlRIUnZjRmxwZFZNNE1sUXdjV3RXZURGUU1uazRNRWN5YjBVNGRTOUNXRUZ5ZDJaYVZGWlRDa2xTVTFGSmMyWm5Oa2N5ZVhwd2JYY3ZTbTl4VEZScWJVNHhVMnAxZFhaYU0zZHpaVVZXVDFoR1JYZFpSVEV4WjBGTFVXTjBSRmx0VVVFdlkybGhaMEVLUTBSdGVHc3diSEV6ZG1oSFp5dGlWbkpOTW1aVE4ySjZNMHBZVFd4cGJHdGpjM05NTUhOVk1VSnlhbU5YWlRoaGNWUnZha2xqU20wNFZUSlVTbloyYVFwbFoxSlJObUYzVlRsUUwzRTVXR0pVTkUxdFlVWjVURUphVnl0eVowWlRhVXhqVkZVM2IzQm5TalpTTlhjdmQxRm1iRlJuYTFNNVozSmhhVFptTmpWaUNpdGpUbVptTVVaT1RFZGpXazlXY2poSVJrazNLM0I0TWtOUVNXVjFPSG93ZEZaclprTmhlRlJsVGtNcmJsTkpia2tyVEZaeU9EYzJSMFJGU1c1VWNsWUtZVk5FTjJ0NFRqTkxhaXROUmxRd1kxZEVhelpCVUVVeWQxZEZSMnQwU1RCbWQxcG9ia2xUUVhsUFIzSlFNalE0YVhCWGJrcEJOWHBUSzFWVlVYWmFjZ295ZHpoRWQzbzVUWFJyYmtSWk5HZFdOako1VG1RMVNGbG1WRmRTUTNZclRUUlBNWEp2UVdwRVlrZERNbGxEVUdaVFoyOXJkME4yTWpCTlVHNXVNREZSQ2xoTlZWVlhZakYwY1VOTmJqUk1RV2hoTTAxMmFXeERabFJDVld4aGVsZHZjbk5DWXpGaVoyUndSekZsTW0xaVNsWXZWRVJQV0U5WU1GaHpRMEYzUlVFS1FWRkxRMEZuUWpOMlUyZE5LMk01VEhGdFVWVTRUbGRSZUZKcGFUWlJTMmR5TWxsWFUyZHNhRzk0UjFCelJWQkNUamsyU0VVNGNIUkJUVkowZGtSRGVncEhWR3BGTjFWdU5pdDFXa3MwTldoeGNqWlNaV1JpY0hsblRFZzBkbU5MYlM5R1dVTllkWFkxV1ZWNVZrUlNlblpCWjBOQ2FHeFVUSEZPVFVSeGFFVlFDbVJhUzBkdVptMTZibEJGVml0aFNEVTRaMGRHYVVrNFptRTVabGN4ZEhoMlkwNWFTazlsYURKQmREaDRXWGsyUW5oWlNYTnFhelJpUVRSSWNFVkZiRklLU1V4UVlua3lhMWR6WTNwdU5GcG1aWFJoZUdGV2VETlNTa1F5WXprcldUYzNkamN4UkRoeU1rZG9ka3hqZHpKR1lqTXJlRlJNYUZReFYwbDVjWEZPU0FvM1NYaHBjWEFyV1ZaS2JXUnlRblZZV2pKUlUwd3djamxOVURWWUszWkdlakp3VUZCeVQxUkVUblZVTlVkUmVpOHhiSFkzV0dGTE1qbFdTR2g1Y1RCMkNsaHJXWHAzUzFsNE0zQXhTemhwUkRoWU5GWnNhMFJUVkd0RFpFaFRSVU5zY0dkSFlVRlpLMWRFY0ZkbWRIcFZiRVZYSzB0VFpTOVdXRkZ3V1dvMmVVY0tRWEE0Tm1KNU5ISkdRa2M0ZEU5NlJHTXpOMmRJTjBZeWRYaHhiaTh5ZW5SdFZ6Rm9lbkIyWjFGamMyZGFjbkZDTVRSd1p6ZHdla3Q2WVZoWVlVZEtXQXB4VlhsSFFVcGtORzFyT1ZWSE1sZHdOSHB0VGsxNllVaHVaMnBGUTJaR0wyVmFkbkI0ZEdSdk5TOW1UVFkxUTNVd1ZVSnBiVE12VTJkRmJ6VndSU3M1Q2xBdk56Rk5hemh3UmpFMlpYZEVhQzg1UkRoM2RFWlJhSG8wZURoaVFUZDFhR05yUmtSblExQktPVmx2VldGdVdHaDBaVTVrUWt4TldGWmlTMG81TVRRS1RscFNlV1kxY3pGRVFuWktVVTAzWVVrMVNUWlpabVpDUmpVcmQwWnNUMWx5YWsxd056VjVUbVUwUWxGbGFpdFBOVW8zYW5WeGExWTJXSGxHTHpob2FBcG1VRXBoWlhGUmVtWnZVRmMyWnpGbWVHNUhiM0UxZGs5R1FXZHJaVVV4UzJjMWFITkJZM3BOYlRFdldIQkxPR000VVV0RFFWRkZRVFp0YTJNM1luQnNDbGwwY1ZjNWJGTnFORlJGVlZsNFpWaE1jVUZ2VG5ReEt6VktlbFpoTHpKckswdEVlR2xGUW1NM09USTVaaTk0YVd4MFZEQldVMGMzWlVkQ2IxVnlTVUVLS3pocGJVRXJiRVJaUmxOeFdYRnBhRlJGUzNwU1NsWnJjMFV5UTJ0d05FbHJiazFWT1hkUVN6RjJNWFJNYkZwVE5XNUdVREp1UjFoWFRHOXJLekJUV0FvMVNuUkpZVEo0UzJKQ2JIbFRUVWxUYVdFeU1UVm9MMWxhY2tKM2IyeGhlR04wU3pWTGRrRTVSME5EVGpreFVYaDZibWh4WmtWSEsxZEJWa1Z5ZEVnNENtUjVlVkZwVG0wNVQyTnNiRFp2TUU5bFpsWkpaRzFqTkdWd1UwdFFXRk5qYkVaNVoweGxkMnBRYVZkd1drSk1RM0ZyZVRreE1HRnFhMWxsUTNwRWVUQUtkbVJWVWt4TFVscHZZM2xCVTAxamVYVk1XVmxzVDJ4eU1UZzNUamswZVU4elF6ZzRURU5PU3pZMWRqQkdNRkJaUTJaVlRGZE9SR05oV2pVMFNsSk5WUXBzWTNwT1lsUnFTbkV3YVVWeWQwdERRVkZGUVRacFVtNWhkblF4YlVscWN6Rk1jRXRZYmxOdWFqTjNSMlE1SzJwRVpsQXhXRWhqVUM5TFMwTTVZakJxQ2tsMVJGWjNSV3h5Um1SbFJWaHhSRXhhYm5od05FUjRla1JZT0dOdU9EUXhObWhMUjBkVllrcHdSSHBRVDJobldFb3JRVzR2U0ZNM1RWTmpTRWhyTUdZS1YxRnRjMHhoVkVkVFNFOTBLemQ0UlZsWGVtZFNVWEJWVUhWNUsweExObVYxUkdKMlIzZFhObVZJYWpoRVpHRjFRMmh4WmtGS1YydHdZMFZFVVhoTU5RcEpkMVpXVjFSWU4wcFpNQzlWWms5VFNra3liRGwzV1ZKQ2VVNTJhV1ZhSzFOMU0yaHdhbWx5VEd4V1UwWnZjbTl0UjFSRGJtOUhTV2RQUnpGMFJEZ3lDbTlZVDJ3MWVFTkxNMk5zVldjdlZHWllOWE5LUjA1MGRHdDZaVzlaY25jMmVUVldLM1pGZVZRMU1FZ3JXSEZvZVZSaWFsRTVOREJHYzFaS2VIb3JNRE1LZUhkU09EbFVaSE5aTVVJeldsTktiVmdyYUZwWlFUTkViV2RzTDNWRGNHdFdlRlZIYTNBMFN6bFJTME5CVVVWQmFua3lVa01yZGxWVVlVMTVibXhrYndwdFpqTXJZeXRDVHpaYU0wNXpiVlp6VVc1MFFrdFBjMDkyZDJGbVVWSm1MMHhGZDBkdFdYZDRUU3QyZWt0aFUyMHJORzR6WW5KMGJrOXRUaXRqT1d0bkNqTkdRV0Z0Y0ZKb2IxWkZSV0Z3Yms1dVNuQmlZazgyTWxWaE1sWlhjVTl2VnpsVlJIZFZMMk0xZDBSRVVUWjNjVkV6YlM5aFVFdHRla2N6UlhWRmFUSUtNVWg0WldZck5UWnZSRzVKV25veVFWVnZhbTAwTWtkTmJGcFFPRzlwZFVoU1duUnpNakowUkRKT1pGbFJNMnh6Y1VKeVpuSjFRalJGZEhKWWJGbzVXZ3B2TVdoUGRHZDBaV3RyVDNRNVVsSnlVRkZTU25jcmRtTlZRWEZpYkVSRmRDOWhTRWhoTW1KRFNFZzRkbGhpVXpVMlFWRmlZMjFEUzBSWlJqbE5aMVpaQ2pocGExWkhiRGhDY21rd1luRnhiRUYzT1hBdmJDOXlNSEkyZW5sV1ozUm5hMkpVTmxST1QxWjFPRGd2UmxGeVRqbHVNV2syVmtwVlQyOVBWRE50YWxnS1ZscFhMelZSUzBOQlVVVkJjekE0VUhWQ2F6aDBTVlJtZDJkWGMxbEhkVGQ1Y1VaNmJuRmxkMmxyV0hrclJUTm9LekZ3Umt0dldXVXJNVE4wZEVOV1JncHJaVTlNV25GRFJGSkZaM2hIVGpKVFUzQnhNbmhDWXpaeFRHaHZORGhEV0U5WFUzTlhiRkZMYmpadlJsWlZkbUk0TUdSMFNubEtkWGxHVVdzdlNYUTRDbTluTW1SQ2RsUnNPVk53V2tWbFdsbEpRbmhVWnpSd2VUSkxZVkpPUlU5T2VYbGllaXRJUlZsMFdHOTJia1pZT1ZWclltWkNZVmh3UkRRelRrUTVXRTBLVFV4VVlqaG9iWHBMVEZWc2FsZHBhVGMzUjA5blN5ODBkR000TlVOSUwweGpSamc0ZW5wRGRqaGplbmRWYTNwdGVXSlRVVE0yYlhSWU4xWmxUSFpqTXdwTllWRXlVMmgyYTFkTFdURk5SV3RUZDBSU1YybHpObFo0UlZWSVYzQk1WMnBpY1ROWU5uaHRXazlyVG1SNFkxUmlabTE1VjFWaVZXVlhRVkpvWjFaakNuaDVNMlpWV2podVoxaHNRbmRPUzNCdmFsSXlSVUZoS3poM1YxTkdRVkpsV2xGTFEwRlJRbk5OUVdOWk1sZHhZakUwZDJWRk5pdE1PSEJYVVdWT1oySUtNVzU2V0RJNVkwNUlTbUpJUm1WVVpGcG5iRE53VjFGM1pXdE1SSE13YUZaeWFEaDNaSGw0VG10RlIyeDVUMVY1V0VaSldqRnNPVFJSYm5keFlqWjFUQW92VVdsQ2NISnhjVXR0TW0xSVdFVlVabmMzWkVjMk1uQjVNM055VURNd2QzSldhSE5GTW1kbFJucHlZbXBYUW5jclIzWTVUbVUzTm1KV2EwUkZOalp5Q2s1V05IQTJZMWR3WkZsRlNWTklORk5tT1c1T09VdFpWV1ZHTUZWS2VXSnNXRGhIT1haMFdUWjJSbVZ6UlhocE1qSkdjMk01ZFVVNFNGVnZjREJLU1VZS1VGWkpaQzl0UkRrelNrMUtRa1l3YjJjMWFVOVhaVWcxUTJWRFdsaE9WemhzVm01eFVXWkNRMUJUYzNad2RTdFNWWE40UkhocVYwWkJlRU5pWjJOeVZncEtia2hGY3pFcmVGb3dZMFZVWnpRdmJGUkNkalZST0ZobGVUSjVRa2R3UlhaMldtdzJVSGh6ZEhKUU1YZEVia2RNVDNsWU9HdEtSblY2VUZJS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiByN3F2MDVjaWhsMTM1ZWNmem82dGRybHUya2NycTBqemEzaWtsOHBpdzg1bHczd3Roc3ViaGZjYzFycHd2MTVzNGNoczdocGQwdW9obTB0bzR5aTR3c2pwaDJ4cG5kZWUwbDgwNXhnenBhOXhqdndidTJpbTZ0b2UzZDI2d3VpdAo=\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13072' + - '13084' content-type: - application/json date: - - Wed, 15 Mar 2023 11:18:08 GMT + - Fri, 16 Jun 2023 00:49:35 GMT expires: - '-1' pragma: @@ -775,34 +825,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --scale-down-mode --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '1036' + - '1037' content-type: - application/json date: - - Wed, 15 Mar 2023 11:18:09 GMT + - Fri, 16 Jun 2023 00:49:37 GMT expires: - '-1' pragma: @@ -843,35 +893,36 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --scale-down-mode --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Deallocate\",\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Deallocate\"\ + ,\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a4183bd-3d3c-4ec7-9162-5b9e418020ef?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c360b5f9-b950-4995-bf76-94b0b3cc7c73?api-version=2016-03-30 cache-control: - no-cache content-length: - - '984' + - '985' content-type: - application/json date: - - Wed, 15 Mar 2023 11:18:11 GMT + - Fri, 16 Jun 2023 00:49:42 GMT expires: - '-1' pragma: @@ -883,7 +934,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -901,14 +952,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --scale-down-mode --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a4183bd-3d3c-4ec7-9162-5b9e418020ef?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c360b5f9-b950-4995-bf76-94b0b3cc7c73?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd83410a-3c3d-c74e-9162-5b9e418020ef\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:18:12.4949441Z\"\n }" + string: "{\n \"name\": \"f9b560c3-50b9-9549-bf76-94b0b3cc7c73\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:49:42.6937376Z\"\n }" headers: cache-control: - no-cache @@ -917,7 +968,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:18:42 GMT + - Fri, 16 Jun 2023 00:49:42 GMT expires: - '-1' pragma: @@ -949,14 +1000,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --scale-down-mode --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a4183bd-3d3c-4ec7-9162-5b9e418020ef?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c360b5f9-b950-4995-bf76-94b0b3cc7c73?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd83410a-3c3d-c74e-9162-5b9e418020ef\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:18:12.4949441Z\"\n }" + string: "{\n \"name\": \"f9b560c3-50b9-9549-bf76-94b0b3cc7c73\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:49:42.6937376Z\"\n }" headers: cache-control: - no-cache @@ -965,7 +1016,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:19:12 GMT + - Fri, 16 Jun 2023 00:50:12 GMT expires: - '-1' pragma: @@ -997,24 +1048,71 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --scale-down-mode --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0a4183bd-3d3c-4ec7-9162-5b9e418020ef?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c360b5f9-b950-4995-bf76-94b0b3cc7c73?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bd83410a-3c3d-c74e-9162-5b9e418020ef\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:18:12.4949441Z\",\n \"endTime\": - \"2023-03-15T11:19:41.111215Z\"\n }" + string: "{\n \"name\": \"f9b560c3-50b9-9549-bf76-94b0b3cc7c73\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:49:42.6937376Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 00:50:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --scale-down-mode --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c360b5f9-b950-4995-bf76-94b0b3cc7c73?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f9b560c3-50b9-9549-bf76-94b0b3cc7c73\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:49:42.6937376Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:19:42 GMT + - Fri, 16 Jun 2023 00:51:12 GMT expires: - '-1' pragma: @@ -1046,33 +1144,227 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --scale-down-mode --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c360b5f9-b950-4995-bf76-94b0b3cc7c73?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f9b560c3-50b9-9549-bf76-94b0b3cc7c73\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:49:42.6937376Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 00:51:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --scale-down-mode --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c360b5f9-b950-4995-bf76-94b0b3cc7c73?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f9b560c3-50b9-9549-bf76-94b0b3cc7c73\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:49:42.6937376Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 00:52:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --scale-down-mode --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c360b5f9-b950-4995-bf76-94b0b3cc7c73?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f9b560c3-50b9-9549-bf76-94b0b3cc7c73\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:49:42.6937376Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 00:52:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --scale-down-mode --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c360b5f9-b950-4995-bf76-94b0b3cc7c73?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"f9b560c3-50b9-9549-bf76-94b0b3cc7c73\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T00:49:42.6937376Z\",\n \"\ + endTime\": \"2023-06-16T00:52:52.0299218Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 00:53:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --scale-down-mode --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Deallocate\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Deallocate\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"\ + currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": false,\n\ + \ \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '985' + - '986' content-type: - application/json date: - - Wed, 15 Mar 2023 11:19:42 GMT + - Fri, 16 Jun 2023 00:53:14 GMT expires: - '-1' pragma: @@ -1104,33 +1396,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Deallocate\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Deallocate\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"\ + currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": false,\n\ + \ \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '985' + - '986' content-type: - application/json date: - - Wed, 15 Mar 2023 11:19:43 GMT + - Fri, 16 Jun 2023 00:53:17 GMT expires: - '-1' pragma: @@ -1152,7 +1445,7 @@ interactions: body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "scaleDownMode": "Deallocate", - "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.24.9", + "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' @@ -1172,35 +1465,36 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Deallocate\",\n - \ \"provisioningState\": \"Scaling\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Deallocate\"\ + ,\n \"provisioningState\": \"Scaling\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0353b9c0-63df-4f2a-b98a-10c64a78c685?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1daf5740-2054-46e7-83b6-6de96b8d4d54?api-version=2016-03-30 cache-control: - no-cache content-length: - - '983' + - '984' content-type: - application/json date: - - Wed, 15 Mar 2023 11:19:46 GMT + - Fri, 16 Jun 2023 00:53:21 GMT expires: - '-1' pragma: @@ -1216,7 +1510,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 200 message: OK @@ -1234,14 +1528,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0353b9c0-63df-4f2a-b98a-10c64a78c685?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1daf5740-2054-46e7-83b6-6de96b8d4d54?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c0b95303-df63-2a4f-b98a-10c64a78c685\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:19:46.9015552Z\"\n }" + string: "{\n \"name\": \"4057af1d-5420-e746-83b6-6de96b8d4d54\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:53:22.2098283Z\"\n }" headers: cache-control: - no-cache @@ -1250,7 +1544,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:16 GMT + - Fri, 16 Jun 2023 00:53:21 GMT expires: - '-1' pragma: @@ -1282,14 +1576,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0353b9c0-63df-4f2a-b98a-10c64a78c685?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1daf5740-2054-46e7-83b6-6de96b8d4d54?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c0b95303-df63-2a4f-b98a-10c64a78c685\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:19:46.9015552Z\"\n }" + string: "{\n \"name\": \"4057af1d-5420-e746-83b6-6de96b8d4d54\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T00:53:22.2098283Z\"\n }" headers: cache-control: - no-cache @@ -1298,7 +1592,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:46 GMT + - Fri, 16 Jun 2023 00:53:51 GMT expires: - '-1' pragma: @@ -1330,15 +1624,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0353b9c0-63df-4f2a-b98a-10c64a78c685?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1daf5740-2054-46e7-83b6-6de96b8d4d54?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c0b95303-df63-2a4f-b98a-10c64a78c685\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:19:46.9015552Z\",\n \"endTime\": - \"2023-03-15T11:20:55.6430776Z\"\n }" + string: "{\n \"name\": \"4057af1d-5420-e746-83b6-6de96b8d4d54\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T00:53:22.2098283Z\",\n \"\ + endTime\": \"2023-06-16T00:54:09.6861555Z\"\n }" headers: cache-control: - no-cache @@ -1347,7 +1641,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:21:17 GMT + - Fri, 16 Jun 2023 01:11:07 GMT expires: - '-1' pragma: @@ -1379,33 +1673,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Deallocate\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Deallocate\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"\ + currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": false,\n\ + \ \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '985' + - '986' content-type: - application/json date: - - Wed, 15 Mar 2023 11:21:18 GMT + - Fri, 16 Jun 2023 01:11:08 GMT expires: - '-1' pragma: @@ -1437,33 +1732,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Deallocate\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Deallocate\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"\ + currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": false,\n\ + \ \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '985' + - '986' content-type: - application/json date: - - Wed, 15 Mar 2023 11:21:18 GMT + - Fri, 16 Jun 2023 01:11:09 GMT expires: - '-1' pragma: @@ -1495,33 +1791,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Deallocate\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Deallocate\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"\ + currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": false,\n\ + \ \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '985' + - '986' content-type: - application/json date: - - Wed, 15 Mar 2023 11:21:18 GMT + - Fri, 16 Jun 2023 01:11:11 GMT expires: - '-1' pragma: @@ -1543,7 +1840,7 @@ interactions: body: '{"properties": {"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "scaleDownMode": "Deallocate", - "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.24.9", + "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' @@ -1563,35 +1860,36 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Deallocate\",\n - \ \"provisioningState\": \"Scaling\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Deallocate\"\ + ,\n \"provisioningState\": \"Scaling\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/711027ae-a15e-4206-bcf5-f4d5e721ea59?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a58dcf27-d92f-4279-93d4-a6c162f4616c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '983' + - '984' content-type: - application/json date: - - Wed, 15 Mar 2023 11:21:22 GMT + - Fri, 16 Jun 2023 01:11:16 GMT expires: - '-1' pragma: @@ -1607,7 +1905,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 200 message: OK @@ -1625,14 +1923,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/711027ae-a15e-4206-bcf5-f4d5e721ea59?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a58dcf27-d92f-4279-93d4-a6c162f4616c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae271071-5ea1-0642-bcf5-f4d5e721ea59\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:21:22.776876Z\"\n }" + string: "{\n \"name\": \"27cf8da5-2fd9-7942-93d4-a6c162f4616c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T01:11:16.618512Z\"\n }" headers: cache-control: - no-cache @@ -1641,7 +1939,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:21:52 GMT + - Fri, 16 Jun 2023 01:11:16 GMT expires: - '-1' pragma: @@ -1673,14 +1971,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/711027ae-a15e-4206-bcf5-f4d5e721ea59?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a58dcf27-d92f-4279-93d4-a6c162f4616c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae271071-5ea1-0642-bcf5-f4d5e721ea59\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:21:22.776876Z\"\n }" + string: "{\n \"name\": \"27cf8da5-2fd9-7942-93d4-a6c162f4616c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T01:11:16.618512Z\"\n }" headers: cache-control: - no-cache @@ -1689,7 +1987,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:22 GMT + - Fri, 16 Jun 2023 01:11:46 GMT expires: - '-1' pragma: @@ -1721,15 +2019,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/711027ae-a15e-4206-bcf5-f4d5e721ea59?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a58dcf27-d92f-4279-93d4-a6c162f4616c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae271071-5ea1-0642-bcf5-f4d5e721ea59\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:21:22.776876Z\",\n \"endTime\": - \"2023-03-15T11:22:32.6742107Z\"\n }" + string: "{\n \"name\": \"27cf8da5-2fd9-7942-93d4-a6c162f4616c\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T01:11:16.618512Z\",\n \"\ + endTime\": \"2023-06-16T01:12:13.7982002Z\"\n }" headers: cache-control: - no-cache @@ -1738,7 +2036,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:52 GMT + - Fri, 16 Jun 2023 01:12:16 GMT expires: - '-1' pragma: @@ -1770,33 +2068,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Deallocate\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Deallocate\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"\ + currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": false,\n\ + \ \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '985' + - '986' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:52 GMT + - Fri, 16 Jun 2023 01:12:17 GMT expires: - '-1' pragma: @@ -1828,33 +2127,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Deallocate\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Deallocate\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"\ + currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\": false,\n\ + \ \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '985' + - '986' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:53 GMT + - Fri, 16 Jun 2023 01:12:19 GMT expires: - '-1' pragma: @@ -1888,8 +2188,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -1897,17 +2197,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/312d0012-a322-4a45-abec-3d59525b373f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5d199a71-0c4a-4be0-a1ad-b7c9f5611e62?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:22:54 GMT + - Fri, 16 Jun 2023 01:12:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/312d0012-a322-4a45-abec-3d59525b373f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/5d199a71-0c4a-4be0-a1ad-b7c9f5611e62?api-version=2016-03-30 pragma: - no-cache server: @@ -1917,7 +2217,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_snapshot.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_snapshot.yaml old mode 100755 new mode 100644 index 5aaeb3f01e2..59f40bc5014 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_snapshot.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_snapshot.yaml @@ -13,54 +13,36 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators?api-version=2019-04-01&resource-type=managedClusters + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators\",\n - \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\",\n - \ \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.23.12\",\n \"upgrades\": - [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.9\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\",\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.6\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.5\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\",\n \"default\": true,\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.4\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.26.0\",\n \"isPreview\": true\n - \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n }\n }" + string: "{\n \"values\": [\n {\n \"version\": \"1.24\",\n \"capabilities\"\ + : {\n \"supportPlan\": [\n \"KubernetesOfficial\"\n ]\n },\n\ + \ \"patchVersions\": {\n \"1.24.10\": {\n \"upgrades\": [\n \ + \ \"1.25.5\",\n \"1.25.6\"\n ]\n },\n \"1.24.9\": {\n\ + \ \"upgrades\": [\n \"1.24.10\",\n \"1.25.5\",\n \"\ + 1.25.6\"\n ]\n }\n }\n },\n {\n \"version\": \"1.25\",\n\ + \ \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\"\ + \n ]\n },\n \"patchVersions\": {\n \"1.25.5\": {\n \"upgrades\"\ + : [\n \"1.25.6\",\n \"1.26.0\",\n \"1.26.3\"\n ]\n\ + \ },\n \"1.25.6\": {\n \"upgrades\": [\n \"1.26.0\",\n\ + \ \"1.26.3\"\n ]\n }\n }\n },\n {\n \"version\":\ + \ \"1.26\",\n \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\"\ + \n ]\n },\n \"patchVersions\": {\n \"1.26.0\": {\n \"upgrades\"\ + : [\n \"1.26.3\"\n ]\n },\n \"1.26.3\": {\n \"upgrades\"\ + : []\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2410' + - '957' content-type: - application/json date: - - Wed, 15 Mar 2023 11:18:58 GMT + - Fri, 16 Jun 2023 01:12:28 GMT expires: - '-1' pragma: @@ -93,8 +75,8 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -110,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:18:58 GMT + - Fri, 16 Jun 2023 01:35:23 GMT expires: - '-1' pragma: @@ -126,19 +108,18 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesteb2zcixze-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesti3cocrm3s-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "c000004"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -149,164 +130,78 @@ interactions: Connection: - keep-alive Content-Length: - - '1457' + - '1749' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesteb2zcixze-79a739\",\n \"fqdn\": \"cliakstest-clitesteb2zcixze-79a739-xe3qyob5.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesteb2zcixze-79a739-xe3qyob5.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000004\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitesti3cocrm3s-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesti3cocrm3s-8ecadf-nsv4kquw.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesti3cocrm3s-8ecadf-nsv4kquw.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"c000004\",\n \"\ + count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/319254ba-a0b6-46f7-932f-2922221f4624\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"defender\": {\n \"logAnalyticsWorkspaceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n }\n\ + \ },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"\ + oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95acc4cf-360b-43fb-a91b-79f08575cd40?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e51d5b0-c755-49e0-a48c-71341ea7112e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3266' + - '4577' content-type: - application/json date: - - Wed, 15 Mar 2023 11:19:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --nodepool-name --node-count --ssh-key-value - -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95acc4cf-360b-43fb-a91b-79f08575cd40?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"cfc4ac95-0b36-fb43-a91b-79f08575cd40\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:19:02.1045168Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:19:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --nodepool-name --node-count --ssh-key-value - -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95acc4cf-360b-43fb-a91b-79f08575cd40?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"cfc4ac95-0b36-fb43-a91b-79f08575cd40\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:19:02.1045168Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:20:02 GMT + - Fri, 16 Jun 2023 02:23:40 GMT expires: - '-1' pragma: @@ -321,6 +216,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -339,14 +236,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95acc4cf-360b-43fb-a91b-79f08575cd40?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e51d5b0-c755-49e0-a48c-71341ea7112e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cfc4ac95-0b36-fb43-a91b-79f08575cd40\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:19:02.1045168Z\"\n }" + string: "{\n \"name\": \"b0d5519e-55c7-e049-a48c-71341ea7112e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T02:23:39.3166008Z\"\n }" headers: cache-control: - no-cache @@ -355,7 +252,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:32 GMT + - Fri, 16 Jun 2023 02:23:40 GMT expires: - '-1' pragma: @@ -388,14 +285,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95acc4cf-360b-43fb-a91b-79f08575cd40?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e51d5b0-c755-49e0-a48c-71341ea7112e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cfc4ac95-0b36-fb43-a91b-79f08575cd40\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:19:02.1045168Z\"\n }" + string: "{\n \"name\": \"b0d5519e-55c7-e049-a48c-71341ea7112e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T02:23:39.3166008Z\"\n }" headers: cache-control: - no-cache @@ -404,7 +301,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:21:01 GMT + - Fri, 16 Jun 2023 02:24:10 GMT expires: - '-1' pragma: @@ -437,14 +334,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95acc4cf-360b-43fb-a91b-79f08575cd40?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e51d5b0-c755-49e0-a48c-71341ea7112e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cfc4ac95-0b36-fb43-a91b-79f08575cd40\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:19:02.1045168Z\"\n }" + string: "{\n \"name\": \"b0d5519e-55c7-e049-a48c-71341ea7112e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T02:23:39.3166008Z\"\n }" headers: cache-control: - no-cache @@ -453,7 +350,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:21:31 GMT + - Fri, 16 Jun 2023 02:24:40 GMT expires: - '-1' pragma: @@ -486,14 +383,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95acc4cf-360b-43fb-a91b-79f08575cd40?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e51d5b0-c755-49e0-a48c-71341ea7112e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cfc4ac95-0b36-fb43-a91b-79f08575cd40\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:19:02.1045168Z\"\n }" + string: "{\n \"name\": \"b0d5519e-55c7-e049-a48c-71341ea7112e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T02:23:39.3166008Z\"\n }" headers: cache-control: - no-cache @@ -502,7 +399,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:02 GMT + - Fri, 16 Jun 2023 02:25:10 GMT expires: - '-1' pragma: @@ -535,15 +432,15 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95acc4cf-360b-43fb-a91b-79f08575cd40?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9e51d5b0-c755-49e0-a48c-71341ea7112e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cfc4ac95-0b36-fb43-a91b-79f08575cd40\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:19:02.1045168Z\",\n \"endTime\": - \"2023-03-15T11:22:24.4015481Z\"\n }" + string: "{\n \"name\": \"b0d5519e-55c7-e049-a48c-71341ea7112e\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T02:23:39.3166008Z\",\n \"\ + endTime\": \"2023-06-16T02:25:20.6603663Z\"\n }" headers: cache-control: - no-cache @@ -552,7 +449,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:32 GMT + - Fri, 16 Jun 2023 02:41:48 GMT expires: - '-1' pragma: @@ -585,64 +482,69 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesteb2zcixze-79a739\",\n \"fqdn\": \"cliakstest-clitesteb2zcixze-79a739-xe3qyob5.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesteb2zcixze-79a739-xe3qyob5.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000004\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2da0daa1-8776-4fa7-ba9c-a3e860dfa5a5\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitesti3cocrm3s-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesti3cocrm3s-8ecadf-nsv4kquw.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesti3cocrm3s-8ecadf-nsv4kquw.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"c000004\",\n \"\ + count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/319254ba-a0b6-46f7-932f-2922221f4624\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"defender\": {\n \"logAnalyticsWorkspaceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n }\n\ + \ },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"\ + oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '3919' + - '4579' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:32 GMT + - Fri, 16 Jun 2023 02:41:50 GMT expires: - '-1' pragma: @@ -674,21 +576,21 @@ interactions: ParameterSetName: - --resource-group --name --location --nodepool-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T11:18:58Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"cause":"automation","date":"2023-06-16T01:12:25Z","deletion_due_time":"2023-06-16T09:36:46Z","gc_scenario":"standalone","module":"acs","product":"azurecli","test":"test_aks_nodepool_snapshot"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '426' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:22:32 GMT + - Fri, 16 Jun 2023 02:41:50 GMT expires: - '-1' pragma: @@ -722,33 +624,33 @@ interactions: ParameterSetName: - --resource-group --name --location --nodepool-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\",\n - \ \"type\": \"Microsoft.ContainerService/Snapshots\",\n \"location\": \"westus2\",\n - \ \"systemData\": {\n \"createdBy\": \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n - \ \"createdByType\": \"Application\",\n \"createdAt\": \"2023-03-15T11:22:33.9108653Z\",\n - \ \"lastModifiedBy\": \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n \"lastModifiedByType\": - \"Application\",\n \"lastModifiedAt\": \"2023-03-15T11:22:33.9108653Z\"\n - \ },\n \"properties\": {\n \"creationData\": {\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\n - \ },\n \"snapshotType\": \"NodePool\",\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"osType\": - \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\": \"Standard_DS2_v2\"\n - \ }\n }" + string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ + ,\n \"type\": \"Microsoft.ContainerService/Snapshots\",\n \"location\":\ + \ \"westus2\",\n \"systemData\": {\n \"createdBy\": \"henrychen@microsoft.com\"\ + ,\n \"createdByType\": \"User\",\n \"createdAt\": \"2023-06-16T02:41:53.6227841Z\"\ + ,\n \"lastModifiedBy\": \"henrychen@microsoft.com\",\n \"lastModifiedByType\"\ + : \"User\",\n \"lastModifiedAt\": \"2023-06-16T02:41:53.6227841Z\"\n },\n\ + \ \"properties\": {\n \"creationData\": {\n \"sourceResourceId\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\ + \n },\n \"snapshotType\": \"NodePool\",\n \"kubernetesVersion\": \"\ + 1.25.6\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"osType\": \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\": \"\ + Standard_DS2_v2\"\n }\n }" headers: cache-control: - no-cache content-length: - - '1013' + - '974' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:34 GMT + - Fri, 16 Jun 2023 02:41:53 GMT expires: - '-1' pragma: @@ -764,7 +666,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -784,8 +686,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -793,17 +695,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ed8707e5-59a1-4c8f-bc43-8ffa1662dbdc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/743ec309-5d90-49d5-9f4b-03296c908b7d?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:22:34 GMT + - Fri, 16 Jun 2023 02:41:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/ed8707e5-59a1-4c8f-bc43-8ffa1662dbdc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/743ec309-5d90-49d5-9f4b-03296c908b7d?api-version=2016-03-30 pragma: - no-cache server: @@ -831,33 +733,33 @@ interactions: ParameterSetName: - --resource-group --name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\",\n - \ \"type\": \"Microsoft.ContainerService/Snapshots\",\n \"location\": \"westus2\",\n - \ \"systemData\": {\n \"createdBy\": \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n - \ \"createdByType\": \"Application\",\n \"createdAt\": \"2023-03-15T11:22:33.9108653Z\",\n - \ \"lastModifiedBy\": \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n \"lastModifiedByType\": - \"Application\",\n \"lastModifiedAt\": \"2023-03-15T11:22:33.9108653Z\"\n - \ },\n \"properties\": {\n \"creationData\": {\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\n - \ },\n \"snapshotType\": \"NodePool\",\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"osType\": - \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\": \"Standard_DS2_v2\"\n - \ }\n }" + string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ + ,\n \"type\": \"Microsoft.ContainerService/Snapshots\",\n \"location\":\ + \ \"westus2\",\n \"systemData\": {\n \"createdBy\": \"henrychen@microsoft.com\"\ + ,\n \"createdByType\": \"User\",\n \"createdAt\": \"2023-06-16T02:41:53.6227841Z\"\ + ,\n \"lastModifiedBy\": \"henrychen@microsoft.com\",\n \"lastModifiedByType\"\ + : \"User\",\n \"lastModifiedAt\": \"2023-06-16T02:41:53.6227841Z\"\n },\n\ + \ \"properties\": {\n \"creationData\": {\n \"sourceResourceId\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\ + \n },\n \"snapshotType\": \"NodePool\",\n \"kubernetesVersion\": \"\ + 1.25.6\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"osType\": \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\": \"\ + Standard_DS2_v2\"\n }\n }" headers: cache-control: - no-cache content-length: - - '1013' + - '974' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:34 GMT + - Fri, 16 Jun 2023 02:41:56 GMT expires: - '-1' pragma: @@ -889,33 +791,34 @@ interactions: ParameterSetName: - --resource-group -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\",\n - \ \"type\": \"Microsoft.ContainerService/Snapshots\",\n \"location\": - \"westus2\",\n \"systemData\": {\n \"createdBy\": \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n - \ \"createdByType\": \"Application\",\n \"createdAt\": \"2023-03-15T11:22:33.9108653Z\",\n - \ \"lastModifiedBy\": \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n \"lastModifiedByType\": - \"Application\",\n \"lastModifiedAt\": \"2023-03-15T11:22:33.9108653Z\"\n - \ },\n \"properties\": {\n \"creationData\": {\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\n - \ },\n \"snapshotType\": \"NodePool\",\n \"kubernetesVersion\": - \"1.24.9\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"osType\": \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\": - \"Standard_DS2_v2\"\n }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"name\": \"s000006\",\n \"id\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ + ,\n \"type\": \"Microsoft.ContainerService/Snapshots\",\n \"location\"\ + : \"westus2\",\n \"systemData\": {\n \"createdBy\": \"henrychen@microsoft.com\"\ + ,\n \"createdByType\": \"User\",\n \"createdAt\": \"2023-06-16T02:41:53.6227841Z\"\ + ,\n \"lastModifiedBy\": \"henrychen@microsoft.com\",\n \"lastModifiedByType\"\ + : \"User\",\n \"lastModifiedAt\": \"2023-06-16T02:41:53.6227841Z\"\n \ + \ },\n \"properties\": {\n \"creationData\": {\n \"sourceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\ + \n },\n \"snapshotType\": \"NodePool\",\n \"kubernetesVersion\"\ + : \"1.25.6\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"osType\": \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\"\ + : \"Standard_DS2_v2\"\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '1086' + - '1047' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:34 GMT + - Fri, 16 Jun 2023 02:41:57 GMT expires: - '-1' pragma: @@ -948,8 +851,8 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: @@ -965,7 +868,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:22:35 GMT + - Fri, 16 Jun 2023 02:41:58 GMT expires: - '-1' pragma: @@ -994,33 +897,33 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\",\n - \ \"type\": \"Microsoft.ContainerService/Snapshots\",\n \"location\": \"westus2\",\n - \ \"systemData\": {\n \"createdBy\": \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n - \ \"createdByType\": \"Application\",\n \"createdAt\": \"2023-03-15T11:22:33.9108653Z\",\n - \ \"lastModifiedBy\": \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n \"lastModifiedByType\": - \"Application\",\n \"lastModifiedAt\": \"2023-03-15T11:22:33.9108653Z\"\n - \ },\n \"properties\": {\n \"creationData\": {\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\n - \ },\n \"snapshotType\": \"NodePool\",\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"osType\": - \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\": \"Standard_DS2_v2\"\n - \ }\n }" + string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ + ,\n \"type\": \"Microsoft.ContainerService/Snapshots\",\n \"location\":\ + \ \"westus2\",\n \"systemData\": {\n \"createdBy\": \"henrychen@microsoft.com\"\ + ,\n \"createdByType\": \"User\",\n \"createdAt\": \"2023-06-16T02:41:53.6227841Z\"\ + ,\n \"lastModifiedBy\": \"henrychen@microsoft.com\",\n \"lastModifiedByType\"\ + : \"User\",\n \"lastModifiedAt\": \"2023-06-16T02:41:53.6227841Z\"\n },\n\ + \ \"properties\": {\n \"creationData\": {\n \"sourceResourceId\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\ + \n },\n \"snapshotType\": \"NodePool\",\n \"kubernetesVersion\": \"\ + 1.25.6\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"osType\": \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\": \"\ + Standard_DS2_v2\"\n }\n }" headers: cache-control: - no-cache content-length: - - '1013' + - '974' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:34 GMT + - Fri, 16 Jun 2023 02:41:59 GMT expires: - '-1' pragma: @@ -1040,21 +943,20 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "1.24.9", "dnsPrefix": "cliakstest-clitesteb2zcixze-79a739", + {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliakstest-clitesti3cocrm3s-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": - "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.24.9", + "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "creationData": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006"}, "name": "c000004"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": - [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -1065,70 +967,72 @@ interactions: Connection: - keep-alive Content-Length: - - '1665' + - '1957' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesteb2zcixze-79a739\",\n \"fqdn\": \"cliakstest-clitesteb2zcixze-79a739-ovi3gtri.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesteb2zcixze-79a739-ovi3gtri.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000004\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false,\n \"creationData\": {\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\n - \ }\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitesti3cocrm3s-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesti3cocrm3s-8ecadf-uegoa9sh.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesti3cocrm3s-8ecadf-uegoa9sh.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"c000004\",\n \"\ + count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false,\n \"creationData\"\ + : {\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ + \n }\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"\ + azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4de90eae-2026-4fb8-9d24-107374dbac79?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2deeb943-c97f-4365-87b3-c62d2e8a29b6?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3461' + - '3789' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:39 GMT + - Fri, 16 Jun 2023 02:42:06 GMT expires: - '-1' pragma: @@ -1140,7 +1044,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -1159,14 +1063,14 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4de90eae-2026-4fb8-9d24-107374dbac79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2deeb943-c97f-4365-87b3-c62d2e8a29b6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae0ee94d-2620-b84f-9d24-107374dbac79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:39.0740013Z\"\n }" + string: "{\n \"name\": \"43b9ee2d-7fc9-6543-87b3-c62d2e8a29b6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T02:42:06.2257495Z\"\n }" headers: cache-control: - no-cache @@ -1175,7 +1079,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:23:09 GMT + - Fri, 16 Jun 2023 02:42:06 GMT expires: - '-1' pragma: @@ -1208,23 +1112,24 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4de90eae-2026-4fb8-9d24-107374dbac79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2deeb943-c97f-4365-87b3-c62d2e8a29b6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae0ee94d-2620-b84f-9d24-107374dbac79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:39.0740013Z\"\n }" + string: "{\n \"name\": \"43b9ee2d-7fc9-6543-87b3-c62d2e8a29b6\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T02:42:06.2257495Z\",\n \"\ + endTime\": \"2023-06-16T02:45:39.9269101Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 11:23:38 GMT + - Fri, 16 Jun 2023 02:55:28 GMT expires: - '-1' pragma: @@ -1257,23 +1162,68 @@ interactions: - --resource-group --name --location --nodepool-name --node-count --snapshot-id --ssh-key-value -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4de90eae-2026-4fb8-9d24-107374dbac79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"ae0ee94d-2620-b84f-9d24-107374dbac79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:39.0740013Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitesti3cocrm3s-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitesti3cocrm3s-8ecadf-uegoa9sh.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitesti3cocrm3s-8ecadf-uegoa9sh.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"c000004\",\n \"\ + count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false,\n \"creationData\"\ + : {\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ + \n }\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"\ + azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\"\ + : \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/d879f68b-d025-4a18-a336-cb6736c1971b\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '4442' content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:08 GMT + - Fri, 16 Jun 2023 02:55:29 GMT expires: - '-1' pragma: @@ -1295,34 +1245,45 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --nodepool-name --node-count --snapshot-id - --ssh-key-value -o + - --resource-group --cluster-name --name --node-count --snapshot-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4de90eae-2026-4fb8-9d24-107374dbac79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"ae0ee94d-2620-b84f-9d24-107374dbac79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:39.0740013Z\"\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000004\"\ + ,\n \"name\": \"c000004\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false,\n \"creationData\"\ + : {\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ + \n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '126' + - '1228' content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:38 GMT + - Fri, 16 Jun 2023 02:55:31 GMT expires: - '-1' pragma: @@ -1344,34 +1305,43 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --nodepool-name --node-count --snapshot-id - --ssh-key-value -o + - --resource-group --cluster-name --name --node-count --snapshot-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4de90eae-2026-4fb8-9d24-107374dbac79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"ae0ee94d-2620-b84f-9d24-107374dbac79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:39.0740013Z\"\n }" + string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ + ,\n \"type\": \"Microsoft.ContainerService/Snapshots\",\n \"location\":\ + \ \"westus2\",\n \"systemData\": {\n \"createdBy\": \"henrychen@microsoft.com\"\ + ,\n \"createdByType\": \"User\",\n \"createdAt\": \"2023-06-16T02:41:53.6227841Z\"\ + ,\n \"lastModifiedBy\": \"henrychen@microsoft.com\",\n \"lastModifiedByType\"\ + : \"User\",\n \"lastModifiedAt\": \"2023-06-16T02:41:53.6227841Z\"\n },\n\ + \ \"properties\": {\n \"creationData\": {\n \"sourceResourceId\": \"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\ + \n },\n \"snapshotType\": \"NodePool\",\n \"kubernetesVersion\": \"\ + 1.25.6\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"osType\": \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\": \"\ + Standard_DS2_v2\"\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '974' content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:08 GMT + - Fri, 16 Jun 2023 02:55:31 GMT expires: - '-1' pragma: @@ -1390,37 +1360,61 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": + 0, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "scaleDownMode": + "Delete", "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": + "1.25.6", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": + "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": + [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "creationData": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006"}}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks nodepool add Connection: - keep-alive + Content-Length: + - '668' + Content-Type: + - application/json ParameterSetName: - - --resource-group --name --location --nodepool-name --node-count --snapshot-id - --ssh-key-value -o + - --resource-group --cluster-name --name --node-count --snapshot-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4de90eae-2026-4fb8-9d24-107374dbac79?api-version=2016-03-30 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"ae0ee94d-2620-b84f-9d24-107374dbac79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:39.0740013Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005\"\ + ,\n \"name\": \"c000005\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false,\n \"creationData\": {\n \"sourceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ + \n }\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc2bf7f3-6982-48ed-b249-bb728a249e17?api-version=2016-03-30 cache-control: - no-cache content-length: - - '126' + - '1166' content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:39 GMT + - Fri, 16 Jun 2023 02:55:38 GMT expires: - '-1' pragma: @@ -1429,15 +1423,13 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -1446,21 +1438,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --nodepool-name --node-count --snapshot-id - --ssh-key-value -o + - --resource-group --cluster-name --name --node-count --snapshot-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4de90eae-2026-4fb8-9d24-107374dbac79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc2bf7f3-6982-48ed-b249-bb728a249e17?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae0ee94d-2620-b84f-9d24-107374dbac79\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:39.0740013Z\"\n }" + string: "{\n \"name\": \"f3f72bbc-8269-ed48-b249-bb728a249e17\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T02:55:38.6963394Z\"\n }" headers: cache-control: - no-cache @@ -1469,7 +1460,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:09 GMT + - Fri, 16 Jun 2023 02:55:38 GMT expires: - '-1' pragma: @@ -1495,31 +1486,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --nodepool-name --node-count --snapshot-id - --ssh-key-value -o + - --resource-group --cluster-name --name --node-count --snapshot-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4de90eae-2026-4fb8-9d24-107374dbac79?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc2bf7f3-6982-48ed-b249-bb728a249e17?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae0ee94d-2620-b84f-9d24-107374dbac79\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:22:39.0740013Z\",\n \"endTime\": - \"2023-03-15T11:26:19.4631175Z\"\n }" + string: "{\n \"name\": \"f3f72bbc-8269-ed48-b249-bb728a249e17\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T02:55:38.6963394Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:39 GMT + - Fri, 16 Jun 2023 02:56:09 GMT expires: - '-1' pragma: @@ -1545,133 +1534,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --nodepool-name --node-count --snapshot-id - --ssh-key-value -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesteb2zcixze-79a739\",\n \"fqdn\": \"cliakstest-clitesteb2zcixze-79a739-ovi3gtri.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesteb2zcixze-79a739-ovi3gtri.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000004\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false,\n \"creationData\": {\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\n - \ }\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n - \ \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/6ee49d7a-11d4-44b7-9bce-4fe4eaeb425f\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '4114' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:26:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - aks nodepool add Connection: - keep-alive ParameterSetName: - --resource-group --cluster-name --name --node-count --snapshot-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc2bf7f3-6982-48ed-b249-bb728a249e17?api-version=2016-03-30 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000004\",\n - \ \"name\": \"c000004\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false,\n \"creationData\": - {\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\n - \ }\n }\n }\n ]\n }" + string: "{\n \"name\": \"f3f72bbc-8269-ed48-b249-bb728a249e17\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T02:55:38.6963394Z\",\n \"\ + endTime\": \"2023-06-16T02:58:50.0987181Z\"\n }" headers: cache-control: - no-cache content-length: - - '1227' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:40 GMT + - Fri, 16 Jun 2023 03:17:17 GMT expires: - '-1' pragma: @@ -1693,7 +1579,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1703,33 +1589,36 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count --snapshot-id -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"s000006\",\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\",\n - \ \"type\": \"Microsoft.ContainerService/Snapshots\",\n \"location\": \"westus2\",\n - \ \"systemData\": {\n \"createdBy\": \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n - \ \"createdByType\": \"Application\",\n \"createdAt\": \"2023-03-15T11:22:33.9108653Z\",\n - \ \"lastModifiedBy\": \"3fac8b4e-cd90-4baa-a5d2-66d52bc8349d\",\n \"lastModifiedByType\": - \"Application\",\n \"lastModifiedAt\": \"2023-03-15T11:22:33.9108653Z\"\n - \ },\n \"properties\": {\n \"creationData\": {\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000004\"\n - \ },\n \"snapshotType\": \"NodePool\",\n \"kubernetesVersion\": \"1.24.9\",\n - \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"osType\": - \"Linux\",\n \"osSku\": \"Ubuntu\",\n \"vmSize\": \"Standard_DS2_v2\"\n - \ }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005\"\ + ,\n \"name\": \"c000005\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false,\n \"creationData\": {\n \"sourceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\ + \n }\n }\n }" headers: cache-control: - no-cache content-length: - - '1013' + - '1167' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:40 GMT + - Fri, 16 Jun 2023 03:17:18 GMT expires: - '-1' pragma: @@ -1748,62 +1637,41 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": - 0, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "scaleDownMode": - "Delete", "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": - "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": - [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "creationData": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006"}}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks nodepool add + - aks delete Connection: - keep-alive Content-Length: - - '668' - Content-Type: - - application/json + - '0' ParameterSetName: - - --resource-group --cluster-name --name --node-count --snapshot-id -o + - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005\",\n - \ \"name\": \"c000005\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false,\n \"creationData\": {\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\n - \ }\n }\n }" + string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7fc3c4cf-5047-45bf-ab4d-46888f5f7215?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20f95ded-169f-4fbd-9423-8dc4678b82f8?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1165' - content-type: - - application/json + - '0' date: - - Wed, 15 Mar 2023 11:26:44 GMT + - Fri, 16 Jun 2023 03:17:20 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/20f95ded-169f-4fbd-9423-8dc4678b82f8?api-version=2016-03-30 pragma: - no-cache server: @@ -1812,42 +1680,41 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' status: - code: 201 - message: Created + code: 202 + message: Accepted - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks nodepool add + - aks nodepool snapshot delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - --resource-group --cluster-name --name --node-count --snapshot-id -o + - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7fc3c4cf-5047-45bf-ab4d-46888f5f7215?api-version=2016-03-30 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"cfc4c37f-4750-bf45-ab4d-46888f5f7215\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:26:44.1997642Z\"\n }" + string: '' headers: cache-control: - no-cache content-length: - - '126' - content-type: - - application/json + - '0' date: - - Wed, 15 Mar 2023 11:27:14 GMT + - Fri, 16 Jun 2023 03:17:23 GMT expires: - '-1' pragma: @@ -1856,455 +1723,10 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --snapshot-id -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7fc3c4cf-5047-45bf-ab4d-46888f5f7215?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"cfc4c37f-4750-bf45-ab4d-46888f5f7215\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:26:44.1997642Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:27:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --snapshot-id -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7fc3c4cf-5047-45bf-ab4d-46888f5f7215?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"cfc4c37f-4750-bf45-ab4d-46888f5f7215\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:26:44.1997642Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:28:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --snapshot-id -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7fc3c4cf-5047-45bf-ab4d-46888f5f7215?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"cfc4c37f-4750-bf45-ab4d-46888f5f7215\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:26:44.1997642Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:28:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --snapshot-id -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7fc3c4cf-5047-45bf-ab4d-46888f5f7215?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"cfc4c37f-4750-bf45-ab4d-46888f5f7215\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:26:44.1997642Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:29:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --snapshot-id -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7fc3c4cf-5047-45bf-ab4d-46888f5f7215?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"cfc4c37f-4750-bf45-ab4d-46888f5f7215\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:26:44.1997642Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:29:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --snapshot-id -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7fc3c4cf-5047-45bf-ab4d-46888f5f7215?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"cfc4c37f-4750-bf45-ab4d-46888f5f7215\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:26:44.1997642Z\",\n \"endTime\": - \"2023-03-15T11:29:56.4350895Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '170' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:30:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --node-count --snapshot-id -o - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003/agentPools/c000005\",\n - \ \"name\": \"c000005\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false,\n \"creationData\": {\n \"sourceResourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006\"\n - \ }\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '1166' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:30:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -n --yes --no-wait - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/acce961b-a2bc-4de0-b789-95ac55c1e77a?api-version=2016-03-30 - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 15 Mar 2023 11:30:16 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/acce961b-a2bc-4de0-b789-95ac55c1e77a?api-version=2016-03-30 - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14989' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool snapshot delete - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - --resource-group --name --yes --no-wait - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/snapshots/s000006?api-version=2023-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 15 Mar 2023 11:30:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14990' + - '14999' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_stop_and_start.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_stop_and_start.yaml old mode 100755 new mode 100644 index 3de7c3a00b9..dfaa6a0f1fd --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_stop_and_start.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_stop_and_start.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:16:58 GMT + - Fri, 16 Jun 2023 03:17:27 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T11:16:57Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","test":"test_aks_nodepool_stop_and_start","date":"2023-06-16T03:17:26Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '368' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:16:58 GMT + - Fri, 16 Jun 2023 03:17:28 GMT expires: - '-1' pragma: @@ -87,20 +87,19 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestc2frc4nlp-79a739", + body: '{"location": "westcentralus", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestrp6ypij6l-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -111,67 +110,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1459' + - '1757' Content-Type: - application/json ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestc2frc4nlp-79a739\",\n \"fqdn\": \"cliakstest-clitestc2frc4nlp-79a739-zdmlsif2.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestc2frc4nlp-79a739-zdmlsif2.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestrp6ypij6l-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestrp6ypij6l-8ecadf-8weslkil.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestrp6ypij6l-8ecadf-8weslkil.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e65e9bbb-ad7c-45e5-a132-360d89ec2b32?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/11dda88d-647b-4cfd-aa45-661386ef1053?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3268' + - '3620' content-type: - application/json date: - - Wed, 15 Mar 2023 11:17:01 GMT + - Fri, 16 Jun 2023 03:17:35 GMT expires: - '-1' pragma: @@ -183,7 +184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1199' status: code: 201 message: Created @@ -201,23 +202,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e65e9bbb-ad7c-45e5-a132-360d89ec2b32?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/11dda88d-647b-4cfd-aa45-661386ef1053?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bb9b5ee6-7cad-e545-a132-360d89ec2b32\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:17:01.729024Z\"\n }" + string: "{\n \"name\": \"8da8dd11-7b64-fd4c-aa45-661386ef1053\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T03:17:35.8365807Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:17:31 GMT + - Fri, 16 Jun 2023 03:17:36 GMT expires: - '-1' pragma: @@ -249,23 +250,23 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e65e9bbb-ad7c-45e5-a132-360d89ec2b32?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/11dda88d-647b-4cfd-aa45-661386ef1053?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bb9b5ee6-7cad-e545-a132-360d89ec2b32\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:17:01.729024Z\"\n }" + string: "{\n \"name\": \"8da8dd11-7b64-fd4c-aa45-661386ef1053\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T03:17:35.8365807Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:18:01 GMT + - Fri, 16 Jun 2023 03:18:05 GMT expires: - '-1' pragma: @@ -297,23 +298,24 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e65e9bbb-ad7c-45e5-a132-360d89ec2b32?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/11dda88d-647b-4cfd-aa45-661386ef1053?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bb9b5ee6-7cad-e545-a132-360d89ec2b32\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:17:01.729024Z\"\n }" + string: "{\n \"name\": \"8da8dd11-7b64-fd4c-aa45-661386ef1053\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T03:17:35.8365807Z\",\n \"\ + endTime\": \"2023-06-16T03:21:23.9329911Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 11:18:31 GMT + - Fri, 16 Jun 2023 03:36:47 GMT expires: - '-1' pragma: @@ -345,23 +347,66 @@ interactions: ParameterSetName: - --resource-group --name --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e65e9bbb-ad7c-45e5-a132-360d89ec2b32?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"bb9b5ee6-7cad-e545-a132-360d89ec2b32\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:17:01.729024Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westcentralus\",\n \"name\": \"cliakstest000002\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestrp6ypij6l-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestrp6ypij6l-8ecadf-8weslkil.hcp.westcentralus.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestrp6ypij6l-8ecadf-8weslkil.portal.hcp.westcentralus.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westcentralus\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.Network/publicIPAddresses/e0e57e88-9863-416c-9a5e-dceaa0f7144e\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westcentralus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '125' + - '4285' content-type: - application/json date: - - Wed, 15 Mar 2023 11:19:02 GMT + - Fri, 16 Jun 2023 03:36:48 GMT expires: - '-1' pragma: @@ -383,81 +428,44 @@ interactions: body: null headers: Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --ssh-key-value - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e65e9bbb-ad7c-45e5-a132-360d89ec2b32?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"bb9b5ee6-7cad-e545-a132-360d89ec2b32\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:17:01.729024Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' - content-type: - application/json - date: - - Wed, 15 Mar 2023 11:19:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --ssh-key-value + - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e65e9bbb-ad7c-45e5-a132-360d89ec2b32?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"bb9b5ee6-7cad-e545-a132-360d89ec2b32\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:17:01.729024Z\"\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '125' + - '1037' content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:01 GMT + - Fri, 16 Jun 2023 03:36:49 GMT expires: - '-1' pragma: @@ -476,36 +484,58 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"count": 2, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": + 0, "osType": "Linux", "enableAutoScaling": false, "scaleDownMode": "Delete", + "type": "VirtualMachineScaleSets", "mode": "User", "upgradeSettings": {}, "enableNodePublicIP": + false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": + -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, + "enableFIPS": false}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks nodepool add Connection: - keep-alive + Content-Length: + - '439' + Content-Type: + - application/json ParameterSetName: - - --resource-group --name --ssh-key-value + - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e65e9bbb-ad7c-45e5-a132-360d89ec2b32?api-version=2016-03-30 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"bb9b5ee6-7cad-e545-a132-360d89ec2b32\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:17:01.729024Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\"\ + ,\n \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/8ae2cded-f1be-4a8d-a28a-a7b3995b2ea8?api-version=2016-03-30 cache-control: - no-cache content-length: - - '125' + - '977' content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:31 GMT + - Fri, 16 Jun 2023 03:36:56 GMT expires: - '-1' pragma: @@ -514,15 +544,13 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -531,30 +559,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --ssh-key-value + - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e65e9bbb-ad7c-45e5-a132-360d89ec2b32?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/8ae2cded-f1be-4a8d-a28a-a7b3995b2ea8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bb9b5ee6-7cad-e545-a132-360d89ec2b32\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:17:01.729024Z\",\n \"endTime\": - \"2023-03-15T11:20:35.9221314Z\"\n }" + string: "{\n \"name\": \"edcde28a-bef1-8d4a-a28a-a7b3995b2ea8\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T03:36:56.1668783Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:21:01 GMT + - Fri, 16 Jun 2023 03:36:56 GMT expires: - '-1' pragma: @@ -580,70 +607,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks nodepool add Connection: - keep-alive ParameterSetName: - - --resource-group --name --ssh-key-value + - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/8ae2cded-f1be-4a8d-a28a-a7b3995b2ea8?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestc2frc4nlp-79a739\",\n \"fqdn\": \"cliakstest-clitestc2frc4nlp-79a739-zdmlsif2.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestc2frc4nlp-79a739-zdmlsif2.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/80ebee2f-1dc8-40e7-a7b5-b04922888606\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"edcde28a-bef1-8d4a-a28a-a7b3995b2ea8\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T03:36:56.1668783Z\"\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:21:02 GMT + - Fri, 16 Jun 2023 03:37:26 GMT expires: - '-1' pragma: @@ -665,7 +651,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -675,34 +661,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/8ae2cded-f1be-4a8d-a28a-a7b3995b2ea8?api-version=2016-03-30 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"name\": \"edcde28a-bef1-8d4a-a28a-a7b3995b2ea8\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T03:36:56.1668783Z\"\n }" headers: cache-control: - no-cache content-length: - - '1036' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:21:03 GMT + - Fri, 16 Jun 2023 03:37:56 GMT expires: - '-1' pragma: @@ -720,73 +695,6 @@ interactions: status: code: 200 message: OK -- request: - body: '{"properties": {"count": 2, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": - 0, "osType": "Linux", "enableAutoScaling": false, "scaleDownMode": "Delete", - "type": "VirtualMachineScaleSets", "mode": "User", "upgradeSettings": {}, "enableNodePublicIP": - false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": - -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, - "enableFIPS": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - Content-Length: - - '439' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --cluster-name --name --node-count - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n - \ \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c27e40e1-f083-4ea1-99dc-cf059903e1ed?api-version=2016-03-30 - cache-control: - - no-cache - content-length: - - '976' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:21:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created - request: body: null headers: @@ -801,14 +709,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c27e40e1-f083-4ea1-99dc-cf059903e1ed?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/8ae2cded-f1be-4a8d-a28a-a7b3995b2ea8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e1407ec2-83f0-a14e-99dc-cf059903e1ed\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:21:06.6205754Z\"\n }" + string: "{\n \"name\": \"edcde28a-bef1-8d4a-a28a-a7b3995b2ea8\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T03:36:56.1668783Z\"\n }" headers: cache-control: - no-cache @@ -817,7 +725,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:21:35 GMT + - Fri, 16 Jun 2023 03:38:26 GMT expires: - '-1' pragma: @@ -849,14 +757,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c27e40e1-f083-4ea1-99dc-cf059903e1ed?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/8ae2cded-f1be-4a8d-a28a-a7b3995b2ea8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e1407ec2-83f0-a14e-99dc-cf059903e1ed\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:21:06.6205754Z\"\n }" + string: "{\n \"name\": \"edcde28a-bef1-8d4a-a28a-a7b3995b2ea8\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T03:36:56.1668783Z\"\n }" headers: cache-control: - no-cache @@ -865,7 +773,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:06 GMT + - Fri, 16 Jun 2023 03:38:56 GMT expires: - '-1' pragma: @@ -897,14 +805,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c27e40e1-f083-4ea1-99dc-cf059903e1ed?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/8ae2cded-f1be-4a8d-a28a-a7b3995b2ea8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e1407ec2-83f0-a14e-99dc-cf059903e1ed\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:21:06.6205754Z\"\n }" + string: "{\n \"name\": \"edcde28a-bef1-8d4a-a28a-a7b3995b2ea8\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T03:36:56.1668783Z\"\n }" headers: cache-control: - no-cache @@ -913,7 +821,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:36 GMT + - Fri, 16 Jun 2023 03:39:26 GMT expires: - '-1' pragma: @@ -945,23 +853,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c27e40e1-f083-4ea1-99dc-cf059903e1ed?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/8ae2cded-f1be-4a8d-a28a-a7b3995b2ea8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"e1407ec2-83f0-a14e-99dc-cf059903e1ed\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:21:06.6205754Z\"\n }" + string: "{\n \"name\": \"edcde28a-bef1-8d4a-a28a-a7b3995b2ea8\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T03:36:56.1668783Z\",\n \"\ + endTime\": \"2023-06-16T03:39:32.0138713Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 11:23:06 GMT + - Fri, 16 Jun 2023 03:39:56 GMT expires: - '-1' pragma: @@ -993,23 +902,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c27e40e1-f083-4ea1-99dc-cf059903e1ed?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"e1407ec2-83f0-a14e-99dc-cf059903e1ed\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:21:06.6205754Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\"\ + ,\n \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '978' content-type: - application/json date: - - Wed, 15 Mar 2023 11:23:36 GMT + - Fri, 16 Jun 2023 03:39:57 GMT expires: - '-1' pragma: @@ -1031,33 +951,57 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks nodepool add + - aks nodepool stop Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --node-count + - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c27e40e1-f083-4ea1-99dc-cf059903e1ed?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"e1407ec2-83f0-a14e-99dc-cf059903e1ed\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:21:06.6205754Z\"\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\"\ + ,\n \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '126' + - '2080' content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:06 GMT + - Fri, 16 Jun 2023 03:39:59 GMT expires: - '-1' pragma: @@ -1079,34 +1023,44 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks nodepool add + - aks nodepool stop Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --node-count + - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c27e40e1-f083-4ea1-99dc-cf059903e1ed?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"e1407ec2-83f0-a14e-99dc-cf059903e1ed\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:21:06.6205754Z\",\n \"endTime\": - \"2023-03-15T11:24:20.5107713Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\"\ + ,\n \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '170' + - '978' content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:36 GMT + - Fri, 16 Jun 2023 04:43:28 GMT expires: - '-1' pragma: @@ -1125,38 +1079,51 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"count": 2, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": + 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": + "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "scaleDownMode": "Delete", + "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.25.6", + "upgradeSettings": {}, "powerState": {"code": "Stopped"}, "enableNodePublicIP": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks nodepool add + - aks nodepool stop Connection: - keep-alive + Content-Length: + - '487' + Content-Type: + - application/json ParameterSetName: - - --resource-group --cluster-name --name --node-count + - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n - \ \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\"\ + ,\n \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 0,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Stopping\",\n \"powerState\": {\n \"code\"\ + : \"Stopped\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/15f94ddc-7771-4459-9ec8-79962ae525b1?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -1164,7 +1131,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:36 GMT + - Fri, 16 Jun 2023 04:43:32 GMT expires: - '-1' pragma: @@ -1179,6 +1146,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -1186,7 +1155,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1196,46 +1165,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/15f94ddc-7771-4459-9ec8-79962ae525b1?api-version=2016-03-30 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n - \ \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"name\": \"dc4df915-7177-5944-9ec8-79962ae525b1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T04:43:32.6741404Z\"\n }" headers: cache-control: - no-cache content-length: - - '2078' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:37 GMT + - Fri, 16 Jun 2023 04:43:32 GMT expires: - '-1' pragma: @@ -1257,7 +1203,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1267,33 +1213,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/15f94ddc-7771-4459-9ec8-79962ae525b1?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n - \ \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"name\": \"dc4df915-7177-5944-9ec8-79962ae525b1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T04:43:32.6741404Z\"\n }" headers: cache-control: - no-cache content-length: - - '977' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:38 GMT + - Fri, 16 Jun 2023 04:44:02 GMT expires: - '-1' pragma: @@ -1312,58 +1248,37 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"count": 2, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": - 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": - "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "scaleDownMode": "Delete", - "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.24.9", - "upgradeSettings": {}, "powerState": {"code": "Stopped"}, "enableNodePublicIP": - false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks nodepool stop Connection: - keep-alive - Content-Length: - - '487' - Content-Type: - - application/json ParameterSetName: - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/15f94ddc-7771-4459-9ec8-79962ae525b1?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n - \ \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 0,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Stopping\",\n \"powerState\": {\n \"code\": \"Stopped\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"name\": \"dc4df915-7177-5944-9ec8-79962ae525b1\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T04:43:32.6741404Z\",\n \"\ + endTime\": \"2023-06-16T04:44:09.3356536Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a54dd51f-8ed6-4d77-9777-db2acef54412?api-version=2016-03-30 cache-control: - no-cache content-length: - - '976' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:40 GMT + - Fri, 16 Jun 2023 04:44:32 GMT expires: - '-1' pragma: @@ -1378,8 +1293,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1192' status: code: 200 message: OK @@ -1397,23 +1310,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a54dd51f-8ed6-4d77-9777-db2acef54412?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"1fd54da5-d68e-774d-9777-db2acef54412\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:24:41.1366743Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\"\ + ,\n \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 0,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Stopped\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '978' content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:11 GMT + - Fri, 16 Jun 2023 04:44:33 GMT expires: - '-1' pragma: @@ -1435,34 +1359,57 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks nodepool stop + - aks nodepool start Connection: - keep-alive ParameterSetName: - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a54dd51f-8ed6-4d77-9777-db2acef54412?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"1fd54da5-d68e-774d-9777-db2acef54412\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:24:41.1366743Z\",\n \"endTime\": - \"2023-03-15T11:25:19.1130447Z\"\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\"\ + ,\n \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 0,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Stopped\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '170' + - '2080' content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:41 GMT + - Fri, 16 Jun 2023 04:44:35 GMT expires: - '-1' pragma: @@ -1484,43 +1431,44 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks nodepool stop + - aks nodepool start Connection: - keep-alive ParameterSetName: - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n - \ \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 0,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Stopped\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\"\ + ,\n \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 0,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Stopped\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '977' + - '978' content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:41 GMT + - Fri, 16 Jun 2023 04:44:35 GMT expires: - '-1' pragma: @@ -1539,7 +1487,13 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"count": 0, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": + 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": + "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "scaleDownMode": "Delete", + "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.25.6", + "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false}}' headers: Accept: - application/json @@ -1549,49 +1503,43 @@ interactions: - aks nodepool start Connection: - keep-alive + Content-Length: + - '487' + Content-Type: + - application/json ParameterSetName: - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n - \ \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 0,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Stopped\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\"\ + ,\n \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Starting\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c4f6e7be-d1a0-403b-9070-059f0aaac7d2?api-version=2016-03-30 cache-control: - no-cache content-length: - - '2078' + - '977' content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:42 GMT + - Fri, 16 Jun 2023 04:44:39 GMT expires: - '-1' pragma: @@ -1606,6 +1554,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -1613,7 +1563,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1623,33 +1573,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c4f6e7be-d1a0-403b-9070-059f0aaac7d2?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n - \ \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 0,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Stopped\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"name\": \"bee7f6c4-a0d1-3b40-9070-059f0aaac7d2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T04:44:40.2679995Z\"\n }" headers: cache-control: - no-cache content-length: - - '977' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:42 GMT + - Fri, 16 Jun 2023 04:44:40 GMT expires: - '-1' pragma: @@ -1668,58 +1608,36 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"count": 0, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": - 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": - "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "scaleDownMode": "Delete", - "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.24.9", - "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": - false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks nodepool start Connection: - keep-alive - Content-Length: - - '487' - Content-Type: - - application/json ParameterSetName: - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c4f6e7be-d1a0-403b-9070-059f0aaac7d2?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n - \ \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Starting\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"name\": \"bee7f6c4-a0d1-3b40-9070-059f0aaac7d2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T04:44:40.2679995Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dac191b2-68b9-4641-a88c-59f473371f99?api-version=2016-03-30 cache-control: - no-cache content-length: - - '976' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:44 GMT + - Fri, 16 Jun 2023 04:45:11 GMT expires: - '-1' pragma: @@ -1734,8 +1652,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' status: code: 200 message: OK @@ -1753,14 +1669,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dac191b2-68b9-4641-a88c-59f473371f99?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c4f6e7be-d1a0-403b-9070-059f0aaac7d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b291c1da-b968-4146-a88c-59f473371f99\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:25:45.3401643Z\"\n }" + string: "{\n \"name\": \"bee7f6c4-a0d1-3b40-9070-059f0aaac7d2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T04:44:40.2679995Z\"\n }" headers: cache-control: - no-cache @@ -1769,7 +1685,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:14 GMT + - Fri, 16 Jun 2023 04:45:41 GMT expires: - '-1' pragma: @@ -1801,14 +1717,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dac191b2-68b9-4641-a88c-59f473371f99?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c4f6e7be-d1a0-403b-9070-059f0aaac7d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b291c1da-b968-4146-a88c-59f473371f99\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:25:45.3401643Z\"\n }" + string: "{\n \"name\": \"bee7f6c4-a0d1-3b40-9070-059f0aaac7d2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T04:44:40.2679995Z\"\n }" headers: cache-control: - no-cache @@ -1817,7 +1733,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:44 GMT + - Fri, 16 Jun 2023 04:46:11 GMT expires: - '-1' pragma: @@ -1849,24 +1765,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/dac191b2-68b9-4641-a88c-59f473371f99?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/c4f6e7be-d1a0-403b-9070-059f0aaac7d2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b291c1da-b968-4146-a88c-59f473371f99\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:25:45.3401643Z\",\n \"endTime\": - \"2023-03-15T11:26:51.5756633Z\"\n }" + string: "{\n \"name\": \"bee7f6c4-a0d1-3b40-9070-059f0aaac7d2\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T04:44:40.2679995Z\",\n \"\ + endTime\": \"2023-06-16T04:46:38.71476Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '168' content-type: - application/json date: - - Wed, 15 Mar 2023 11:27:14 GMT + - Fri, 16 Jun 2023 05:04:27 GMT expires: - '-1' pragma: @@ -1898,33 +1814,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --nodepool-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\",\n - \ \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/agentPools/c000003\"\ + ,\n \"name\": \"c000003\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 2,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '977' + - '978' content-type: - application/json date: - - Wed, 15 Mar 2023 11:27:15 GMT + - Fri, 16 Jun 2023 05:04:28 GMT expires: - '-1' pragma: @@ -1958,8 +1875,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -1967,17 +1884,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0fa2e49b-845f-4d09-8959-92f15e5037ae?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operations/6d314990-e0b8-4b3f-8303-030602f93c40?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:27:16 GMT + - Fri, 16 Jun 2023 05:04:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/0fa2e49b-845f-4d09-8959-92f15e5037ae?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westcentralus/operationresults/6d314990-e0b8-4b3f-8303-030602f93c40?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_system_pool.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_system_pool.yaml old mode 100755 new mode 100644 index 0459db6ae2c..039fc8cbbcb --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_system_pool.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_system_pool.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:17:01 GMT + - Fri, 16 Jun 2023 05:04:43 GMT expires: - '-1' pragma: @@ -53,13 +53,12 @@ interactions: false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, - "storageProfile": {}}}' + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -70,66 +69,67 @@ interactions: Connection: - keep-alive Content-Length: - - '1504' + - '1796' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-439i1paz.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-439i1paz.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-3sqrdcbq.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-3sqrdcbq.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/746a0452-456d-4e82-b0e7-4d5d46b11050?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a74e3ec7-c73f-4b95-bc2c-c5173e019c57?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3050' + - '3378' content-type: - application/json date: - - Wed, 15 Mar 2023 11:17:05 GMT + - Fri, 16 Jun 2023 05:04:53 GMT expires: - '-1' pragma: @@ -141,7 +141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -160,121 +160,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/746a0452-456d-4e82-b0e7-4d5d46b11050?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a74e3ec7-c73f-4b95-bc2c-c5173e019c57?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"52046a74-6d45-824e-b0e7-4d5d46b11050\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:17:05.150914Z\"\n }" + string: "{\n \"name\": \"c73e4ea7-3fc7-954b-bc2c-c5173e019c57\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T05:04:53.5275488Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:17:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/746a0452-456d-4e82-b0e7-4d5d46b11050?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"52046a74-6d45-824e-b0e7-4d5d46b11050\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:17:05.150914Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:18:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --service-principal --client-secret - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/746a0452-456d-4e82-b0e7-4d5d46b11050?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"52046a74-6d45-824e-b0e7-4d5d46b11050\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:17:05.150914Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:18:35 GMT + - Fri, 16 Jun 2023 05:04:53 GMT expires: - '-1' pragma: @@ -307,23 +209,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/746a0452-456d-4e82-b0e7-4d5d46b11050?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a74e3ec7-c73f-4b95-bc2c-c5173e019c57?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"52046a74-6d45-824e-b0e7-4d5d46b11050\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:17:05.150914Z\"\n }" + string: "{\n \"name\": \"c73e4ea7-3fc7-954b-bc2c-c5173e019c57\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T05:04:53.5275488Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:19:05 GMT + - Fri, 16 Jun 2023 05:05:24 GMT expires: - '-1' pragma: @@ -356,23 +258,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/746a0452-456d-4e82-b0e7-4d5d46b11050?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a74e3ec7-c73f-4b95-bc2c-c5173e019c57?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"52046a74-6d45-824e-b0e7-4d5d46b11050\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:17:05.150914Z\"\n }" + string: "{\n \"name\": \"c73e4ea7-3fc7-954b-bc2c-c5173e019c57\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T05:04:53.5275488Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:19:36 GMT + - Fri, 16 Jun 2023 05:05:54 GMT expires: - '-1' pragma: @@ -405,15 +307,15 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/746a0452-456d-4e82-b0e7-4d5d46b11050?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a74e3ec7-c73f-4b95-bc2c-c5173e019c57?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"52046a74-6d45-824e-b0e7-4d5d46b11050\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:17:05.150914Z\",\n \"endTime\": - \"2023-03-15T11:19:41.5028735Z\"\n }" + string: "{\n \"name\": \"c73e4ea7-3fc7-954b-bc2c-c5173e019c57\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T05:04:53.5275488Z\",\n \"\ + endTime\": \"2023-06-16T05:08:09.092825Z\"\n }" headers: cache-control: - no-cache @@ -422,7 +324,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:05 GMT + - Fri, 16 Jun 2023 05:22:51 GMT expires: - '-1' pragma: @@ -455,59 +357,60 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --service-principal --client-secret User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-439i1paz.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-439i1paz.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f2e1ea3c-bd91-45f8-bc44-77f5d01ff555\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-3sqrdcbq.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-3sqrdcbq.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2ccf8101-9a43-44f2-848f-5101d9fd8574\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3314' + - '3642' content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:06 GMT + - Fri, 16 Jun 2023 05:22:52 GMT expires: - '-1' pragma: @@ -539,59 +442,60 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-439i1paz.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-439i1paz.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f2e1ea3c-bd91-45f8-bc44-77f5d01ff555\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-3sqrdcbq.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-3sqrdcbq.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2ccf8101-9a43-44f2-848f-5101d9fd8574\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3314' + - '3642' content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:06 GMT + - Fri, 16 Jun 2023 05:22:54 GMT expires: - '-1' pragma: @@ -625,24 +529,24 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVU1dFJWVkZPRUp6VEdNeldtdGpkRkptZFRVNWVXZDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDAxNlJURk5WRVYzVG5wSk1sZG9aMUJOYWtFeFRYcEJlazFVVlhoTlZFVXpUV3BhWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNtOUlaRUZqYWpoRWRYSlZOWEpNWkc1dVlVUnFZMnhpVGk5TWNrVkZWVzloTW5oUFYyRTJUMnhSWmpsMGJFUkVTVmxxUTB0SmFucENVak4wVEdGS01qQUtZalJLVVRSYU1USndRV1IwV0ZOV1JXNDRRVFpSZWpWV2RURmpibTVoWldNMk5sUTBZMWhoT0ZsQ05IbG9RbFZIZFhGTlRYVXJWMGt2ZW1VMFJGUllRd3B3TVV0cWNXcERXVFpVVERObWNtbHNNRGxVUm1OdGJrcEVLMEpZT0Vab1VXVk9MekZWTmtobGEwTnpaelJXTW5aaFIwUjFkR1kxVm1GYWVIbGhRa2hEQ205YU4xaG1OelpJZVVscFRHOVVjeTlSTmxZeGEySlBPR3hpTkZacWFrMXJXWFJFUWxwallWTkpVMFJRYUZka2ExQlhVbm95VlZveGNXUkNUbUpKVldJS1lteE1RWFZ3U21Obk1XbHBXalJaWVV0aVJTdHRlVXB2Y21vd2JVbGpiakJhUmpacFZXbE5lRXRQU0hkU09GSTFPR05CYVRNelluVktiRWxDUTJkRWRRcHJlRGxJYUZvMmVEVmlXblJGUnpSaE5HdFVXR3hPVVRCRksxWmxRbEFyUW5CNGVEUXlNQ3R4TDFONFRWRTFNalJ4TjBodFlqVk5XVkJUTlV0d1ZtWTJDa1J2TDBacWFtMXFOakV5ZHpaYVlpOWphR0ZSZEhaamFWQlFSbmhFYlV0b1pFaFVlbEV3ZG10dmNHWjRlR0ZhV21vMldsUkdkSEZsYlRobVdIaHhlRVVLWkM5YVIybFRXRFppWVhSclFrUmhjRTVRVG1kVk4waHVaa05qZUROTVVXNUZjRFJTWkRaMFdrSlZiVzlxVmxkM1lsaGxNR2szYkV4QmFrdDRiakJRZVFwTlpFNXJaeXRFTDJOek5uZG5aVzl2WTFJNVJWQjZTRUV2U0cxMEszUmlLMVIxYlVWYWJFWnVZMHczTkV4b1RYTkdNRUYzWm13d0szUlRia1V3YlZRNENtMXpNazVrZFZnMWJ6UTBWSGhXUTNjNWQzazJNbVZhVGpabFMwaFRhMHBEYzBkMVlucE9lRzVYY2pOTVZGTlNjaXRvVEZVMVJWQkNXbU52WTNwc2FHY0tXRTVKZGtGbGJWSldWbFY0WlVwQk9FUnNObmtyWkdkVldtWlFlV040S3pKaFNXbFZVamRGYWt0alJVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1RtYzNRMlpyZHpneU5FMXZTMHh6Q2tSclUwaDFSMVI0U1dGb1JFMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlExSkJkR2hSYWtkaU1sTXpTQzlOV1hJM1JtUkJSbGQxYWpJS1lrRm5iazFtTUdzM2RHNHdkR1Z3TW1KbVlYUm9SV1IwTXpCMlVDOVRkVVpEUkhGR2RWbEpabWxCV2pOWlpXTktXazFQU1VSVFpscEpTM1EzV2xaMk5BcE1kVTR4VW5WcGNDdG1kbTFFWW10T04xaE5ibmcxVms1NldrMHpWa0pXTjJzeWMyUnZOVmxGU20xSlNqaEZOR0pwVURsMGRYTmpkbEkwV0docVFWTk1DblUzS3pJemEweHpRVUpMWnpOdFZVbzFUM2RNVm1GMFRrMDNaRmQwUVhCMGJ6WjNkMlpPV1RsTFRqQTFkM1pyYnpaVVNVOWxWelV5ZDBodVowZFdObVFLVHpGQlJEQjNWbkpVY1hCR1lYTjNaaTlMUmtkek5rMHpUVWhMWm5wYVRHSlBLMDFtWWtJME1GZGhaVWxYVUdsNlVHa3dTVEIzVkhGUFRUWktaRmQ2UkFwSmRUZGpObEYxVm1kTVRrUkljR3RHZERObll6bHViM0Y1Vmpoa1YyRjRka05IWkVabVZXcFRieXRQVEd0NGEyNWhjalJ6UmxVek1VWlZOVmRCVmxWRkNtcFBObUl4WW5sSlFYRktjekJJVmpad1psTXJXRTVPWmxCNGVsVnFSRmhJVjNWYWNuUlljM0JMTWxCa1MwcDVTWE5uWW5OcVpHazNSbFJpYkZZNVZra0tSR1YzUm5abFNHMXFVekF6VTI1UVFsaDRNRXhyVGxSdlFuQkNiekZST1dwUU1GVndaV1V5ZDI5V01ETmpOVXRqWlVGRWFHOHdSSEJ2YVRkeFNtVmtWQXBtTlZwU1ZrMW1NamRoSzJNd1VWUjJOME4yU2paNmRsTklWVTVSZDFBelZtMUNSekoxWXpSeWVpdHpWRGhrTTAxSmIwYzJWa05MZVhKWk5WWmxlV1prQ21wMWVFMXpjbnAyVWtvd1RVdzNMMU56TWxOb1R6SjBUVTFEYWxFeU9XWkxSelozV1VKQlNUTTVaVEozVFd0WmNIUXZLMmgzVTJ0M1RVSjNNMjA1TWtFS2VHSkJXVVphYm14Tll5OHpjSEZTTjJWd2FUZDZVbXhNUTAxaWJETjZjVk01TUZocFJuRnpSVkpLUzFaTVdUSXhiV2s0TTFCUk1VRnJXSGxMTUdGamN3cFJLMUU0U2s5MGNHbDBObWxSVlM5U1VrRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zdTN2NXdiNC00MzlpMXBhei5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdG16dDUyYgpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdG16dDUyYgogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGNvanRkaDV5a2lfY2xpYWtzdGVzdG16dDUyYgogIG5hbWU6IGNsaWFrc3Rlc3RtenQ1MmIKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0bXp0NTJiCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGNvanRkaDV5a2lfY2xpYWtzdGVzdG16dDUyYgogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklha05EUVhkaFowRjNTVUpCWjBsU1FVdEhXUzl3YkdSUE1uVldMeklyU0dkNVRFVmhTVmwzUkZGWlNrdHZXa2xvZG1OT1FWRkZURUpSUVhjS1JGUkZURTFCYTBkQk1WVkZRWGhOUTFreVJYZElhR05PVFdwTmQwMTZSVEZOVkVWM1RucEpNbGRvWTA1TmFsVjNUWHBGTVUxVVJYaE9la2t5VjJwQmR3cE5VbU4zUmxGWlJGWlJVVXRGZHpWNlpWaE9NRnBYTURaaVYwWjZaRWRXZVdONlJWWk5RazFIUVRGVlJVRjRUVTFpVjBaNlpFZFdlVmt5ZUhCYVZ6VXdDazFKU1VOSmFrRk9RbWRyY1docmFVYzVkekJDUVZGRlJrRkJUME5CWnpoQlRVbEpRME5uUzBOQlowVkJkelIxVG5GV1RsbzRkRmRyVHpab2JUUnlWM0VLYVZaTGVUQklORkpZVVdkc09HVm1aMjlLUlhkbFFuRnBVM1IyVWxkblZGWTVhVXB2WTFCME1tSmFSVUZ4ZDJKTmJ6RnBjVTU0ZWtWeVkwOXBZV05JVHdwRmJraFVXa2hGVTNaTVVVbzRVVGhyWkVKWVJrcG1NMFpJUTFsVWFGSTFha2gwYWxsQ1NrWllUbk5HVldaM1lqUXhRVWhqVFZRMVozUTBjalowT1UxV0NrNUZLeloyYlVOSFIwdHlZVXd2TDAxUFRXTXhiR05KTXpKb09XVkJibVJuWkhGUmJHTkRNMWhsTjFkNU5GTlRka2RKVUhsMGVHcGhRMHBJUzJabVprVUtXVkJXVWpOak1ubFJTbFpaVnpReWJVaENjRzF0V0hGeVJVMTZhbU5xWVd4d09VaDVVMms1T0hOaVluQmpPRXc0TkdGemNVNUJVME16UTNKTFZ6TkdVZ3B1UVVoM05sWTVkRVZUT0ZOcllsUk9UbmRvWjJ0c2IwSk9kalpKYlhacWNqUndSbHBpZW5wcVNGbHVLMDlHY0VoRGJtbFlieTlTV1hVNFdrVlpiMVpIQ2xabVowRlhlV1o2U25GeGQzUnFjMWd4TUZSaFJIQnZVRUl6TjBOck4zcHJjR1ZxYlcxWE9XWmxWSGswWXpkNGNuTjJLMHRNU0ZkV2MzWklRM1JwTjJrS1dXazVka1E0TUZkcldtMTRLelpXVW5OSmRWSnZTRlkxT0ZWMFl6ZGtWaXRGTjFoUlIyUnZZMUoyU0RWcE5tZEVkRFZzUlhOUWIyeGFRamhqZW5wckt3cFhaVkZPYjI5TldXTlJRbHBDVEd4UWNtMDVZblF4WWtabE4zQnhMMVJMUzBGR1RFUmhRM2R4VVZGNlZGZEdWMVpVVFU5bVNWSm9Wa1JqZFZnMWJtUnVDbmh4TkdWc1NXbDZPWFJIZW5WUVZIWm1ibFZhT0dGVGFERTJZMjF2YW1kNmIwZzFjMVpYY0ZwMGNFMWhVbTh6YnpGdmVXZEZVbFV3ZVV4b1VGZGtlVThLTTNWUFYyTmplVWwySzJZd2JVd3lReTlDZDJOU05XYzJNMmsyV0ZCd1NVRkRUV0pvVm5nMVpGRTBLMXAzZG1sU1NEbDJTbkoxVFhodVNsazRVVVpKYWdwbWMwTnVaMlpIVVZOWVVuWnpiakZEVkhKRVRXNWthME5CZDBWQlFXRk9WMDFHVVhkRVoxbEVWbEl3VUVGUlNDOUNRVkZFUVdkWFowMUNUVWRCTVZWa0NrcFJVVTFOUVc5SFEwTnpSMEZSVlVaQ2QwMURUVUYzUjBFeFZXUkZkMFZDTDNkUlEwMUJRWGRJZDFsRVZsSXdha0pDWjNkR2IwRlZNa1J6U2l0VVJIb0tZbWQ1WjI5MWQwOVNTV1UwV2xCRmFIRkZUWGRFVVZsS1MyOWFTV2gyWTA1QlVVVk1RbEZCUkdkblNVSkJTWE42UWtzNFpVNTBMemR4TVdZclJXdG1kd28zVkVWMlZYZDJVMWw2UmpsMVZtRkNXWGRPUW1oTlJsQnNRbTB4Y25nMlVuaGpWMU5OU2tSMFRGTjBhbmhhTDFSMVF6WlJlVEJuUldwb2RHMVVUVzByQ2xOcFVFZGpZelJtVFRGRlQweEpTV2xKWTNwblVUVXphVlZDVWk5a2NtcEdSM2hLUmpnMVUzSmpRVFF5TVdKelMzSTBNMlZyV0hCNmFsTXZjV3B3YWt3S2VXYzNhM0k1Y1VaQlMzSjRRa2cyWVd4QmFGZEtVRmN4VjJoQlpWTnhSVWM0T1U1elRYSndWSFV5SzBSTGJVMW5jazVDYkRRNVlXaG5UbEI0WldwNFZ3cHNSMkZxZVM5NU5rSXZjU3N6VmxoNk9YTnJNRUZVVkdONlZ6ZFZiWEZ6VW1aeldTOXRjR3N3WVM5cVNFWmpZV1ZIVkU0eVVrZzJWbnB6VUdJeGNXYzJDbXR2VkRkT1ZHbzVkVFJuUWxka1JtOU5SRlpNWmxNMlJ5dEZRamRzUjJGVFkzZFhhRlZYZG1aUGMwdzRNMGxwYTFWaWFrZHpWMnhpVXpGQlJHbFpja1FLTUdoU1JIVmpNaXQ1Y0N0TE4waHFLMlp0VG5SUU9GVkNWV2hpVm5oRmFtZE1TamgwT1ZoNGVXVmxSbVpOUmtsd2JHeHRSMUl4Y0ZCaGVVMVBNMFZPYUFwTmJVMDNjMUU0T0dKSFNUa3dibVZUZWxwMFV6aEhhRlIxUVhNd1RtVndUbmt5TlZCUWJYUlZVWFZQYmpRM1lraHhMM293ZUVVMlVHOHdRa1JoYm5jekNqTkRkR0ZqYTNoM01ra3JTRWxIYW1kNVFVVmhWazlXTTBsRlRWVnFaVFJYYlZsdFFuQmpTSGhKZHpWSFdEQmhiSGMzVEZWRUx6Um9SVFIwYjFaQ2FUQUtkM1pLTVZCU01VVkVjelJDZW1ZMGNHYzROMk1yVkZoRVlYaG1ja05IU1dsTlMybG5jRXRCY1c4clRYRXlSUzl3Vlc1MGVXWktMMWM0YlZGWlZuSnVWd3BoYW10WVp5OVhibEJaVXpZNVVsWnJhVUZNU1hoMFIxSktaMk52SzFSVFNGSTRhems0UVhsQ1pTOVJkM0VyZVdkMWFEQm1Nak5rVVRBNVNuZHJRa1JFQ205VVZWaFFWMlZXYlZweloyRnBlazU1VUVsUkwzTlhjd290TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJkelIxVG5GV1RsbzRkRmRyVHpab2JUUnlWM0ZwVmt0NU1FZzBVbGhSWjJ3NFpXWm5iMHBGZDJWQ2NXbFRkSFpTQ2xkblZGWTVhVXB2WTFCME1tSmFSVUZ4ZDJKTmJ6RnBjVTU0ZWtWeVkwOXBZV05JVDBWdVNGUmFTRVZUZGt4UlNqaFJPR3RrUWxoR1NtWXpSa2hEV1ZRS2FGSTFha2gwYWxsQ1NrWllUbk5HVldaM1lqUXhRVWhqVFZRMVozUTBjalowT1UxV1RrVXJOblp0UTBkSFMzSmhUQzh2VFU5Tll6RnNZMGt6TW1nNVpRcEJibVJuWkhGUmJHTkRNMWhsTjFkNU5GTlRka2RKVUhsMGVHcGhRMHBJUzJabVprVlpVRlpTTTJNeWVWRktWbGxYTkRKdFNFSndiVzFZY1hKRlRYcHFDbU5xWVd4d09VaDVVMms1T0hOaVluQmpPRXc0TkdGemNVNUJVME16UTNKTFZ6TkdVbTVCU0hjMlZqbDBSVk00VTJ0aVZFNU9kMmhuYTJ4dlFrNTJOa2tLYlhacWNqUndSbHBpZW5wcVNGbHVLMDlHY0VoRGJtbFlieTlTV1hVNFdrVlpiMVpIVm1ablFWZDVabnBLY1hGM2RHcHpXREV3VkdGRWNHOVFRak0zUXdwck4zcHJjR1ZxYlcxWE9XWmxWSGswWXpkNGNuTjJLMHRNU0ZkV2MzWklRM1JwTjJsWmFUbDJSRGd3VjJ0YWJYZ3JObFpTYzBsMVVtOUlWalU0VlhSakNqZGtWaXRGTjFoUlIyUnZZMUoyU0RWcE5tZEVkRFZzUlhOUWIyeGFRamhqZW5wcksxZGxVVTV2YjAxWlkxRkNXa0pNYkZCeWJUbGlkREZpUm1VM2NIRUtMMVJMUzBGR1RFUmhRM2R4VVZGNlZGZEdWMVpVVFU5bVNWSm9Wa1JqZFZnMWJtUnVlSEUwWld4SmFYbzVkRWQ2ZFZCVWRtWnVWVm80WVZOb01UWmpiUXB2YW1kNmIwZzFjMVpYY0ZwMGNFMWhVbTh6YnpGdmVXZEZVbFV3ZVV4b1VGZGtlVTh6ZFU5WFkyTjVTWFlyWmpCdFRESkRMMEozWTFJMVp6WXphVFpZQ2xCd1NVRkRUV0pvVm5nMVpGRTBLMXAzZG1sU1NEbDJTbkoxVFhodVNsazRVVVpKYW1aelEyNW5aa2RSVTFoU2RuTnVNVU5VY2tSTmJtUnJRMEYzUlVFS1FWRkxRMEZuUW1vdllrSnhjbFo1U21WQlYweElRVzVCVlM5VWIxVTBiSE5aTkhGMFlqaFZNMlJqU3k5WFNEZFpZVFJaYUd0V1dEQkhhRlIxZWpWc2J3cGlTekpoVTFaT01rbFFkbnBoZUhSbVNYazNVRlJCU2pRMFkyeHRWbEkwY21ScllVZG9LMjEwWjI1cE5XYzBhRlZpVUdWc09WUktNa1kxZGtnMGEzQlVDbmsxTkRGUFdtSnFabU5WZGxrclVXTnhha1EyY1dVMllXOVRNWFZ0YmxvM1kzaEJaUzlRTm14SVRVSndTMFJUVjFvNFNETnVOa3RMTUVaQ1lsZHZVbkVLV1VsaFdHczRibk53Y2pKRFdUZGFlRTlvZDBReFkydGtjMDU1VTFZNUswMDRLMjQyWWtkUVMweFNlVXh6YkZKVmJIY3hlV2RrUzNOVVNsWlpkekZ4U2dvMVRUVXlZMWh1WlRSQk5DOTBlVGRXWlhCclVIcEVSemx2UzNsRFoyUjFWeXRzZW1wT1NtSnBUM1p1VlRocmRYWnBjV0ZyV1VoUGNVTjVPVlJ2T0RrdkNuVnFja2x0UVN0UE9GWnllVlk0Wm5rMWNtVmFSRlZHWVhZMWRTczFVbnBpYlZWak9WRTJiMDgxZDFCcFlUVTJORVpPVVhCT09IY3ZSWFZxSzNSS1RrRUtTV2RwWm1KMmNsbFNZVTgzVDNoNWRrOUJhRmh0Y2xCM2RXVkpNWGM0Tm5SSFZTc3ZXVW93T0ZZNVJTdHZkbU5RYUd4emVqa3lTbWhHVFVRek5uRXlUd293U1dadFRFRlRORU4wTDI4M05pODRURWQ0V2k5d1FXcEJlVGxMWkZsSlpISjNWbGRUTkdwSFRXbGxSR3RYTW5aWGN6aG1jRVJvVVVkVmVrVjVSMUpIQ2poU05tZGpkVFZvYkVkU1YzQk5OVlZpZVRsNlpscFhObEpaVW10WFVXbHdZekJ1VFROUGRVbDRkWGhyYWxoNFlpdDZWa2hqWkZGb2RsUklhRUV3VTFrS2VtVmpWQ3RKVDNreE1FdHZSbW96Ykdzd2MycHFhMk5sTW1oelNtcG5XRE5YTlZnMFRqQlNTV0ZKU3l0d1RqUnRVRXRRUkhsbmRpdHJVVEpXWjJOR1J3cEhlRkZEUlVVMFdVNHZjWFZ4ZWtwVWR6VnVURk5STDNrNEwyWmFPV05LWjFCUGEwZHJSR1JJT0RaSVRXRm1kR052VVV0RFFWRkZRVFpKUjNVclowdHRDa0pOWTBJM2JtSlJOVXhWZEZOV01DdFRkVlpaVmxabk1qZDJSRFYyZEROTlNuSTJaMmRyYTFCSFQxQnVVR1pwY0Zvdk0yTk5UMlZZZGpOU1NIUnNiWFlLUzJkWFpuSlpiM0ZNTUZSaVZFbFBTMVY0V0U1TlUwcDVaWEZZWkZnMk5WaERNMEZvU0hwd1NIVktPSEZvTnpGSWEwOTBhVkprTlhwaWMzRmlTV293ZUFwdmFFTkpkbmxCT1ZwSlFtaG5RM0ZrVkhKVlpHVk9aa0ZXVnk4MmRVZE9TMnRyUWxKamJYSlFaMjk1YjNweFpWbGlaalpPZGt3MGFsaHVNalZDYUhwekNqTjNTamhLVlVseVVuQmFOeXRXVmxWMU1VNWhZWGN6VkZscVpVVTVPV3gzWlM4NWJDOUljRkZxVjNRMldGTnBZMWhyVVdwaVJFa3hXRGxtZUhaS1VtY0tkVFZyU2tKUEwyUmpVM2xQTDFaMk5scExaREZ4U1dkdFN6aFJPVkZxTjBSdVNHUnRRVUZVTTFWMk4zaE9hazFyV1ZKT1JqUTNOVGgxV2poTUwwNW9kZ3B3VUVVd2VWQmtlRlZyTDFwMWQwdERRVkZGUVRFd00wYzVaaTgxYjA5bmIwdFJjRkJvSzNSdUszUjNNbWRMVVV0R09YVkJTM1ZXUmxWNU5tTTVTV1Z6Q2s4NVJHUmxhM2MzTlVkSGVrdGlkako1ZFRKdVpuZHdZblpKT1ZwMVdsZEhlRTlSYWtwS1ZUZEJVMmhSVGpGMlNIRjZPVGRtZWxCU2VXd3ZWV1puVFhVS2NHSkhSRlZJYlhSc2FHVnFaVU13YVhaQ2VVTXpiMWxNWkhSV01saFBTalZqZDFkdlpIUlZNekZCZWtSbldHVkNiVnBOTkUxR2FTOHlaMngzTnpaNU5BcG9VMFU0T1VsV05WZElLMHMxYkhZNWNGcGlUa1ZuZWtSV2VYcHBjVnBzVFdwNmJXTjZjek40ZVhKT00wMWpWMUZhU1RaQlNWWjFiV3RQSzJKUFVsbEhDa1ZaY21sa1FVY3llWHB6T1VabVIzZHBSRFJVT1hWSk1YWk9lWGhPVVM4emQydFNOV1U1Wm1SRlZtOHlTRGN4T0VSb2NXcGxNV2Q1YnpKUlFuRktUbkVLZWtGclZraGxXVkUzVkROd2NTOUJZemRuYkRaTlZtNVNSa2g1Y1ROa09EZEZZMll5U25WQ2VtVjNTME5CVVVJM1NHTnBXWHBJVVRaNlYwcG9ZMjV6VlFvd1JHUkdlRTlGY1dGYU1VaDFLMjFEZUhkdFNVaDNlSFZoTjNrd2IwcHJhemxtUmtvMlNGWlZRWEZJY0VvMGF6aE5VV1ZWVFVwT1NHSnBhbkZxVDBobUNtMDVaVUZCV25SeFpWZ3pjRU5pVDFNM1IyUXpkR1Z4VkhaUVJtUkNkRUphYlRkaE5tNHJhbGxtVkhaU1oxbFRaMWw0Y1ZsdE9Ia3ZXVE12TVhKTk1qRUtabE5IYWpZeWVsYzROa3hEYWxsU2FpdFhURXMxY0VScVRuSnRjVWMxVERoTWVERnZTMGRxV0haa1dYZ3piMFFyUmxKaE0yWlFUMVU1TUhwcWMyUkZWd3BzVEV4aVExZDBVSE5yYVV4eVdYVkZWVFV2VDFkck5YTTJiMWRJYkhkRk1tdFlXQzlDU0ZWbmJWaFphMWxqV0ZCc1duRkZORUpGUlRWWWJGbExkV1ZaQ21WU04xTllSRlZRZGxocVdrbENZMDlVSzBOalVtNHpkMU5YTUhscU1qWnFabE52Wmt0Q0sxbFpPSE0zVjBjdlZraHliMHhVYkZJMFFUa3lUMjFVUW1nS2FFeFVia0Z2U1VKQlVVUklZMVptSzBvMGJuaG5WREEyYW5vclVFWkJWVEZRSzNOS1JGZDNRVWcyYUVKc1JFczRNVWhCTW05TWRIVnBXazkzY0RRdlVBcG9jVll4TkhCWVFqZzFXakpQTXpCNFZtTldla0ZqTVdVNVJYRk9jQ3RQU25SbVRtYzFTbU0wZW10NWVsUTJhRzFDU2tkT2VscHlXR2xJUjNoRFdscEJDbVJHVGsxcWRITm1WVWhZTW1ScmRVZFpSVlZPTVVGc1dFRkpXRWN4YzNGd2JITXhRVlZDYW5kNk5IZzRWa3R2WWpaNVZVRkZTWEUxV1VWdVlqVlJlVGdLWVhsSFlrNU9ibkJITmtkS2RDdE1ORVJUT1Vkc2FXaDVaMHBpSzJnME5GWkVSbmM0T0dSMFNrZDVkMk5QYnpnMGMxbDVhblpCUVZKSVozVmhSazFDYXdvd1RrcE5WWEZCUzBKU09YWlZjWE5sT0Znd1ExQXpSblZPZDI5dFN6VmxkMkpHVnpRek1HeGpjekZhTDJWMmMyeHRaekZxVVVoUWN6TXZhamgzYkUxd0NuZFlSMFpuV2pjMk4ycExVVXB5YUd0a2RuVTVTR1l6VmtGa2RrZDBZVXRxUVc5SlFrRlJSRTVwVkROMmVEWndRakZqY1ZSME9HWnhXRk50TkZsNVkwWUtkRGhPZFhaQ1JUTnFWV2Q1ZUZsMk1qUmpOVlZ6Wm1odlNIQnFRMFJTWXpKWWJTczRXSFZSYTBGcFJIQldlVEJSWjFSeVpteFNaak4yTXlzNVZHc3pVQXBxVDB3eFJERnZTVFE0UVhZMGJrTmtibGxyYnk5MFNEWnFNRXBKZVVOMVRVSlVUekkyVUROd1ZXWXdkMlZYWmtod1dsVm1aeXR3YUZwYWRsUXJLMlF2Q2toVlJscE5ZVGdyT0ZCeVRsa3ZSM1owVmtSTWVEUXdLMHBLWW5CcU9GSlVjVzFoWjNKNFEwdEJRM2xEUWpOdk5GcFdUV2Q0Y0d4NFF6TktTV2RJUkVJS0x6ZEdSVmg1Wm1kWlJXaDVOSGxYT1ZFMVZVUnVTVEU1Vkc5TVoweEphVEJ1WnpOSlZsVjRRa2xMWldWaFpEZHRjbFpXSzJsVE5EWXdaVU5GTlhWU1R3b3JNMjlTT1dwcFNHZDJiVk5wZDJkU00yUnlaR1F2VmtFNVpXOUdVelEwTTNCS05HWXJZMkpEWVdkU0szQkNlbWR4U1RFdk5UUkdNMEpSUm5FS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBseG9zNXBtM2V4N29ieGpkcnFqMm10dmhqcnB5Mm94aHA2YmF3bzRsenhzcGIwcWd1cHdrM256b2k5eG9uZnpnN3ZhcmViOWt0Y2V4MmpqMGFpaml1eG5vZ3UxYnZkYWJ3cW51dDVudm5zaHJ6bHp1anV2Y3BtbXdzZnRnajhhbQo=\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUzBkQmNHTTBMMFZJVjNodWRFdFJVM0ZEWnpOU1JFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVdYZE9SRlV4VFdwc1lVZEJPSGxOUkZWNlRVUlplRTVxUVRGTlJGVjVUMVp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVRekNreHllbXR2WkdscmJTOHhWM04yYmxkS1VEUlFhM1ZJVGs5MVFrVm9ORTgyY0ZCS05ESmFVbmhzWlhGeWNGcFJWMmhNWTFSWk1EWTRiWHAzWkdOdlRVOEtWRWRuZGtsbGR6QkxSSHBhUkhsMlNEVlVjVkp4ZFVKVU1qTTNRbGQ0ZWtkRFMzUk5TWGhOVG1ka2RXMW1OVU50YzBnMlJHWlBUamxxVFZZMWFFWTBUUXBDUTFCQ2RFbzJjM2xaUVdnMFpITnRhekZVUlZaV1pGTnJNVmxsV0d4alVrOHJPRmhxVlhWSFVWUlVkRk5DVUhZd2IzSTVOMmcxTDNOeU9IVlBWbkY1Q20xdmRVbFZOMjlNVVU1aGFGbFRSRlp6WkZkSWRVTkRWVXBtYWtFcmNFZFJOblZ3ZVdKWFpFVXJiamx0WlRsUWMweHBlazluVmtGdU5FWnBOWGRoY0RFS1RVNTBSVEZIYm5nMlVuZzVLMGd4YmpKVlFYUnNXaTg0YTIxTE1GaFZPRUZVTkhwc1RHdGtXRWd6YTFWYWRXNXJaWGRhU1VwS1l6UTNkMUJ0VDFncmRncFpXWHBWYm1aWFRFNXdNSFZCTVhKeVVtTktTRlpuTUdoNlFsSmxjWGxZZURONU1EUnBaR295WVRKWmVHTjFSRkZMV2toTWEwdEZkR3BsT1VZMVNXODFDbUZZYUZkQk9UVlJLeXRqT0d0VVZ6aDBTR28yVkV3d2JrVkRaMEpYVlV0cU5VbHZSVlJHVTFOUUswZDBSWEZqTTFGUk5WVTJZMlZGY2pCalZXSjJXSGdLUzB4ck1uUTRRWFV2ZVhadVYwcDBLekkxU2pScFIxaEJRWGd5TXpOR1RrZEhLMkp6U1hwb2MxTkROamx4WTNZM1RsWlNRbGRMWm14VlRtSnRjSE5ZZWdwNmNXVlFkVlJxVTFWa1lWRmthMEkxWVRWUmVTdHJNV0p2ZUd3eFJYcE9UbVJzTUVKYVJtUjFLMHBOS3prNE5HRlllRFF3VkVwVFNVTTRRVlV5WlhOSUNrRnBPVVJEWkdSelprRnFXVUV6ZW10UWNWQnRXRGRRVG1WT1RWcHVVRFZYVjI4d1ZYaFNabUZFYjJ0a1EyeEhkMXBVWm5GUVRuQkNha1JrYWxKSlZta0tSV3QyZEhjNFpEbGpTbXR1VkdKM09XcFBabkk0UlVORFFsaERhV1ZxUkUxaU9YSnhSMkZSYTJGM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWeFRWSXJXazR5V0dkc05UVlBibEpsQ20xNU1WaFdaWFprUW10QmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGTFFXaEZhR2QzVG5wNVkyVmhUVlZ5TjJGc1VtWjRNRzFXUTFVS2RpOUVVVzFYUlZGVVZubHpTbFZHTjBoTFZWVnlkVGR3VlhCRVVYZE5ZVWx0ZUZoT1pYcGFjVGhxZUZaYVJYVmtXbVJrUkZGSWNWSkJVV1ZMZFRSVGRBcENWM1JoZFhwbGFtMXJaWGRIYm10T1VESmtTekIzTnpkS1VpdEpiaXRpYUV4blpGRnBjVU5UVTNaQlRVOXVNM0JNWkd3MlJrTXllbk4yVVVaT2NtaFZDazF6V1dwSlZHdEVORlZUY0VWNFR6TlNUa1Z2ZGpKaE9FZEJNMjF5ZUUwNWFHOURkWGc0Vkc5RVVWTk9hMGt6UkU1WFNuZDFNMEUzVWxkQ056ZGxMMDhLUkZCdldqTnZTVFZRTDNWUVNrdzJhR3RUY2s5a2VYcEtkRFJPTDBkcWFsUmhkRFJMYUZsSmR6WmxiMngwTWpjMFJ6aExTRlJSTldoSU9VOXhVWFY0WndwdUwyNHJaVlV6ZUc1cWNISmhkbWwyY25GT2VXdGtWQ3RCY21Sb05XbHhTMmxWYUZNMkswZDZOVVpUVVd0T1lUUTRWM1ZSYjNoclNFNVJOWGR2Umt0TkNrWXJkM1ZxTmt4WGJHZElPVTloY0dSd1lXRmlLMHd3YkdkeFZuWTJhVUpWTVc1YVRERk1kWFVyU2xGb2RHMDBTMmN6UzNFeU1rb3hVbWhaVUU0eGNFd0tkbWd6TUVjeFUzbFFUM3A0UmtGclluaG9LemR2Wm01R1ZrcHBkV1I1YmtoSllXMVJSQ3RHYldOUFRIZDVWR2N5YlZKSmFVVTBSMDFKTUZWNVRsZzVhUXB2TldZeGFHaEpkVFZNTUVKbFJWcElVRWRVVXpGeVpYZ3djbVl5UW5ZclNsRjRSa3AzVGl0NldVNDBOREY0WjFKMmJWSldWVVUxVW5GaUsyUk5VWEJTQ2pRMVRqVk5Xbk5RYnk4M1luUTJkRGxOVUU5dGQwTkVUV0pMWVZGaFNXZFNNVlIzTjJSdlEySjJUR3BTWnpadVJqTlVTSEZYU1VGaVpFNUlNazR3ZG5ZS1lsQm9RVGcyVldkNVRHbHhZMUpHU0ZaTlIzRmlSRmxsUVhKME4yazRjMUptUnpadmFYRXhRMDlGT0V0dldEZDJLemhDYlhCd09WcDZlRFZKWjNwaFdBbzFMMDl3UjJsTVdIQjFNVmxWYjJsWENpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc25id2JtbXctM3NxcmRjYnEuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3Q1cnJqc3gKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3Q1cnJqc3gKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RrYWx3ajNjZjd5X2NsaWFrc3Rlc3Q1cnJqc3gKICBuYW1lOiBjbGlha3N0ZXN0NXJyanN4CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdDVycmpzeApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RrYWx3ajNjZjd5X2NsaWFrc3Rlc3Q1cnJqc3gKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJYWtORFFYZGhaMEYzU1VKQlowbFNRVTA0VVU1cE9VMWtNVEZKWTNwT05sZ3ZhRWhJTUVsM1JGRlpTa3R2V2tsb2RtTk9RVkZGVEVKUlFYY0tSRlJGVEUxQmEwZEJNVlZGUVhoTlExa3lSWGRJYUdOT1RXcE5kMDVxUlRKTlJGRXhUbFJKTlZkb1kwNU5hbFYzVG1wRk1rMUVWWGRPVkVrMVYycEJkd3BOVW1OM1JsRlpSRlpSVVV0RmR6VjZaVmhPTUZwWE1EWmlWMFo2WkVkV2VXTjZSVlpOUWsxSFFURlZSVUY0VFUxaVYwWjZaRWRXZVZreWVIQmFWelV3Q2sxSlNVTkpha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRkZSa0ZCVDBOQlp6aEJUVWxKUTBOblMwTkJaMFZCZUROdVlVZEdUVGR0Y1RsYVVta3lWRVpUUVRnS2NURmpTMDByWkhkMVNUbHJlRzF5VVU4clNrRk1RbU5JTldOVVRsRlhSM3BYUmtabmVFMHZWREpKVlROaWFUUTRVV2h0VFc4clQwVmFUVXQ2TVhGS2JBcEJWbmhhYmxFMlpXRjBVbTEwTTJkSVYzbFhMM2t2WVRsWlRWZDBkVE5KYTA5eFRYTkJOa1ZyY214eFNWUkphWGM1YzA5TU5qaEtTMEZ6UW14dWFuVnRDakZGWkhadVRVUlllbEF5V1RnNFdXTnJVVWczYkV0a2FEYzFjRGhHV0hGNGVVTnZUR05zVFdVcmVESlpZbmxKYmxnNFEwWmplVXMzZDBrMGNFTjFUaThLZG0wM2FYVmpRbkpNUlVoek9FTXdRV3htTlhBeU1teFJaR2h4VG05WEszSTFlREJ6V0ZWME1GVmpNRnBuV2poeU5TODVTWEY1U2xJeWNVNXdOSGh6ZGdwRWF6TTNlUzlhVkhCaFdVOXNXV05UUldveVdIQm5lSGxETWl0S2FXcHNWV1ZzTVVGalowNHpaVmx6U1RWTlRFdHpRazFxZFZKU1QzRkZVbmxIY2taakNubDRaalp0TlcxcU1qTlBLM2RvTDFaaFZ6ZFRSRTl6TVRkYWEyMXVWRWszZVhJeE5HVTVPSGhwVlZJNGRHZEhNREJRYkhscVMzWTFNVU5aWVhWWk0yb0tURVl5VTBwblFqSjNOSFpFVHpoR1JXSnhMeTltZDBsNWJUUjBORUZSYVhSUVdFNVdja1JyUWtOc1oxUnJUVU5GUVN0d01VUndWRnBEZG1kS2VucGpjZ3BwYWtjeFpURjNkV0kwUjI1MmFrMUJOMjE0YjJWQksxSlpRMWxMYjFkRFEwOWllR1pCUjBkbU0xQlJhMHBhU1dGeWFGa3lla2hDVVRNelduSk9RblpPQ25Rd2RESlJaU3QzVVhZcmJUbGxia0prUTFNNU1VZFZWVEZ6T0RjNWFqVndhVUpyVVV0dk1UZFFNVUZEYkdneWEyUkhjbk5YYVRObmVTOXBibTVNVEVnS1pISTFSRmxWY0Rkd2JGRnBNMDVEUjFoU1IzWm1WRXhhU0ZBMlpUQTFWM1UxYVhWeGMwMXNWbkJQWldVMk9YSjNXQzl2UW1FeWRGaGxkMk0zZDBrd053cHRSbEJPTVVoS1RtVjFaWEpVV2xOVFFUWlNUeTlHTUVOQmQwVkJRV0ZPVjAxR1VYZEVaMWxFVmxJd1VFRlJTQzlDUVZGRVFXZFhaMDFDVFVkQk1WVmtDa3BSVVUxTlFXOUhRME56UjBGUlZVWkNkMDFEVFVGM1IwRXhWV1JGZDBWQ0wzZFJRMDFCUVhkSWQxbEVWbEl3YWtKQ1ozZEdiMEZWY1UxU0sxcE9NbGdLWjJ3MU5VOXVVbVZ0ZVRGWVZtVjJaRUpyUVhkRVVWbEtTMjlhU1doMlkwNUJVVVZNUWxGQlJHZG5TVUpCUWxBM2VsRXlibU5yTjNaSGNYTllhakk1VFFwb09UTldNMmw0UkVjMlIwZGpkVzlVZGtGVlJVRkZSemQ0Ykc1dGJYcFJZMWwwUjBKMmVXWlhWVzFLV0V0WWJYWkhlbWRWVjBaVk1VRk1UM0EyWjJOSUNsbE9LMEZSVEZOeE5XRjBkbGxYTUZrellXWjRRbmRaZG1VeWJIVXZTM040U2tack0yWlhVVkpuY0RKNWVtaEtSRTFtVmxBdlpXTkJkMDVSWnpGSE1DOEtNalpuZGtaR2FtNTBlakV3UzFGVE5Fc3dSRXBYTW5ocU1FeFBiVGxFY0ZobGVUZHdVWFowZWxGeldsVTFMMjB3UjBKdVMwdHFSamx6UjFkdlZYazRRd28yUkhWemIzSlhTR3MwTUhwclZrRjZOMXBZWWxOSFNHTmFNelJXYVRWSU5IbFBNVXBYU2poWmRYVm5VeXRMUW5kNVkwVXZPRXB5ZWtWeWNteHlUMjlWQ2k5eVkwVk9SV0ZJZUdobWVrUkJaMDg1ZUVSV1FrTmtjVXBOTm5VMlJVdzNjSGM0VnpVMFRtMUxTMlY0VFdVdlpIUXZURWd2YzA1alJHaE5NMVowUms0S1pXTjFlVnBuUWxSU1pHZEJUbGhpVHpsbFRITXhMMm9yS3paVlRYcE9ja3c1UVZKblJVdHZUMkkxTHpKNlVrOWhiemhSYVcxMGQyNWtWMmd3WkRsUVF3cEdTMUZLWVROUFNqaHFXWFprVUZkaVNtOXNVMUJ2Y0dkTlJrZ3ljekJXVUhneGMzSnFhMmhPTjNwb2VubHRjamROYmxwQ2VXTjJPVmhuTlRKV09GTlhDa2hNV25ocFNsRXdRemxFTjBwTFNUYzJZM2d3WkZRNU1WbE9Va05RVVdOUFQzSk9Sbmt2TUM5ek9Fd3lReTlTVjFOcVpUZ3pNVloxY0ZKTVZuUnBTVklLVlVObGJsUmpMMUowUVVKM2FqTkJaekJsTlVKMVRuZFZRbWhET0ZvME1uRk5kVXhQV2psaVpWTnZjVGx2YlU1R1NHdEdXbk5GVEM4NE1WWmlVV0pxVXdwalpFMVhTMnhsVmxKR01tRjZXVXAxYUZoTmJFaHlWblpLZDNsS2VWaGtkMjB5UnpsTlluQlNjMVJNU1RoNVdGazRZMFJZYTFKa2IwNTZUVWRIVEcxMENqRmlka2gxU0cxVVEwNXdLems0TjFWa1drUlNWMjVJUXdvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZUROdVlVZEdUVGR0Y1RsYVVta3lWRVpUUVRoeE1XTkxUU3RrZDNWSk9XdDRiWEpSVHl0S1FVeENZMGcxWTFST0NsRlhSM3BYUmtabmVFMHZWREpKVlROaWFUUTRVV2h0VFc4clQwVmFUVXQ2TVhGS2JFRldlRnB1VVRabFlYUlNiWFF6WjBoWGVWY3ZlUzloT1ZsTlYzUUtkVE5KYTA5eFRYTkJOa1ZyY214eFNWUkphWGM1YzA5TU5qaEtTMEZ6UW14dWFuVnRNVVZrZG01TlJGaDZVREpaT0RoWlkydFJTRGRzUzJSb056VndPQXBHV0hGNGVVTnZUR05zVFdVcmVESlpZbmxKYmxnNFEwWmplVXMzZDBrMGNFTjFUaTkyYlRkcGRXTkNja3hGU0hNNFF6QkJiR1kxY0RJeWJGRmthSEZPQ205WEszSTFlREJ6V0ZWME1GVmpNRnBuV2poeU5TODVTWEY1U2xJeWNVNXdOSGh6ZGtSck16ZDVMMXBVY0dGWlQyeFpZMU5GYWpKWWNHZDRlVU15SzBvS2FXcHNWV1ZzTVVGalowNHpaVmx6U1RWTlRFdHpRazFxZFZKU1QzRkZVbmxIY2taamVYaG1ObTAxYldveU0wOHJkMmd2Vm1GWE4xTkVUM014TjFwcmJRcHVWRWszZVhJeE5HVTVPSGhwVlZJNGRHZEhNREJRYkhscVMzWTFNVU5aWVhWWk0ycE1SakpUU21kQ01uYzBka1JQT0VaRlluRXZMMlozU1hsdE5IUTBDa0ZSYVhSUVdFNVdja1JyUWtOc1oxUnJUVU5GUVN0d01VUndWRnBEZG1kS2VucGpjbWxxUnpGbE1YZDFZalJIYm5acVRVRTNiWGh2WlVFclVsbERXVXNLYjFkRFEwOWllR1pCUjBkbU0xQlJhMHBhU1dGeWFGa3lla2hDVVRNelduSk9RblpPZERCME1sRmxLM2RSZGl0dE9XVnVRbVJEVXpreFIxVlZNWE00TndvNWFqVndhVUpyVVV0dk1UZFFNVUZEYkdneWEyUkhjbk5YYVRObmVTOXBibTVNVEVoa2NqVkVXVlZ3TjNCc1VXa3pUa05IV0ZKSGRtWlVURnBJVURabENqQTFWM1UxYVhWeGMwMXNWbkJQWldVMk9YSjNXQzl2UW1FeWRGaGxkMk0zZDBrd04yMUdVRTR4U0VwT1pYVmxjbFJhVTFOQk5sSlBMMFl3UTBGM1JVRUtRVkZMUTBGblFXd3ZVbGhGTldrd1IzY3paM0l2YTJaNGExRmpZekZ0UjNsRGRGTlVkMWhOSzNWc04xZ3lURzVDTmpoNmMxQkVUMlY2VURFM2VERjFNd3BtTmtSdWNtczRiRWsxWTBWUE5YUnRTblJGZVRRd1YyVnFZVlJSZDI5aGNXVXpjemtyZURsdmRESnZiazlMVVhwTmRGWlZSbUpIUm1KcVNuRklSMDF2Q21WamNtcHFXV2hDYTNoTGIyNUJjMDF3YURZd1RWaEliekZhUm5KQloxQkhhRms1Vkd0alVrMVJTMFl5UjBSMVUxUjFTU3MwUm5aaVRqRmxaVTlEZFdZS05WTmhWVk5yYldGbFNsZHdSR0ZCWTJ0cVVGSmpkMFp5SzI1R09HdGtLMG8wY0ZKSGFFaFBZMDVsV0ZSeGRsUTNMMU14SzI5SldIbG9Za3h0VHpnNFZRcEpWMlZSYjBrdlNDdE5iRU13U1VwR1dGTTNZbWhhTWtoNU9HbEdXQ3RMYUUxR1RYcDVPVVZvVG5Vd1FraHJka0ZMYzFOYVYzVXJSbkpIT1dwTmJHdDNDbTVYY0cxamF6QkxVeTlMVURNNFZrRXpVbGw0ZHpNNE4ybERWMVZxWW1KclZrTnJOblptVVhoU1FrbFZZa05sZFM5R1pESXdSelJGUjI1MlJEVjRZVWtLTUZWdk9XOWxPSGRvT1hjMmQwUlNRalZHVVRsdlUwWlhTbkpUYTBSalNsTllVa1ZFWldkWlUyRXJNMVZtY2pGRldraFNTVUkxZVVweFRtOHhUalJEVUFwWmNrWmpUbVJWTUdjMlpqaGhWa05ZVlV4eE5HNHphVzV6VWxWNWJVSmpNbk5LUlhoNFoyOUljMjU2TlM5UmJGUlhZa3N4YTNSYU9HbGpaRWgwUWxoR0NuVlVLM0V3VlRkdk4zZE1VVk5YYUN0VlYzZDJTV2htY2xkclYwbzBVbkk1Y2tReWJIUXhiWFp2YUVrcmFVWjNNMUl3T1VGdGVtcHJLMDR2TlV0TlUyc0thRlk0UlZsTVVUbHRNM3BEY2xSblJ5dDRhRFYxVG5wWFJFVmlUVUZZWVZaNWFIa3dlWGhHWVRSWVEwaDRlalJPUmxOU2IyOHdTRnBCT0RSU2IyaElSd281T0dzMUszVkpjbHBpTWk5YWNuVkdUSEE0ZFdGa1NERjBOVUpOVG5SaWFTOTViVGMwVG1ocGNHVlRTVmRTZFcxSVVVdERRVkZGUVRCaFZFZHdhMUZ4Q2s1WWVYRm9iR2RpVm5wR2ExVTRNbmxDWVV4dE4zb3hUbmREZFVGU1l6RnFTazB3ZEhNeU5VUmtPVUZwYjAxRVYyd3hWV1JRVjNGa2JWSk1iMUo1V2pnS1NtRklaR0V3TVcxaU5XTk9Za3R4WlVWWGJFOVlRM1ZFVGtveFFYcFZabnBZU2xoM2JGQlpOSEFyVFZJNFNXNUNTM2x0ZVVoWE9XaGpZakpKYlZCbGVRb3hkVUo1Wm5SeFNrTnBWbVJ3WkU5SU1Hc3lZbkozV25CblYwMVllR1Y2VkV0TWRGUklVWEE1U0ZZNFkxaHJMMUV3YURWcE1sazNaVTFOYURkS1YxWTNDbUZhY1hSVmRGQTBOemxPZGtkSFlXb3pRa1YwVUVKNFdrZFdXbVZUZWpoaGFtb3JjbFZLVWk5cFNIZDBPVXcxUlRONVYzZGljbkZIYmxNNFZtWjViRUlLV0c1M1lVVkNjMHh2UnpCTlZucDNXbWxaVjJodWJHTlZRa3RZWVdVdlUwUkdVamsxZUM5UVRtdzNOVzlCYUdaeWNuY3ZaR0ZVTlZkYWMxWnJPVmhsVndwVE4wOUJVWFJVYUd0M2NuTjVkMHREUVZGRlFUZzFWMFZ3Wm14RE9ESnZURWcxVjJaQ2EzTm1kM05rZUZGYVRuQnVlV1JOVEZGV2VFWjZPR2QxWTI5MkNpczRORnBRV0c1RFZsSnViR1ZHUVZsd2RtbEpTalUyZFhCdlUwTm1ZWEEyUVZZNGIzQmpaSGswWTNodWVuaFlTMFJJUTNweGNtUm5Uako1Tm1sT2FHZ0tZVXRXTjNCdFdIRmxOVEZxVDNVM1IyNUVjVFJSY25ONU0xVTFkek0xTmt4dlJqQklURkI2TTNJcmFUWmpOWGxNYlhaa1UxbDNhRmh2YjBKR2EwbDRTQW8zVTJ4UWRISm5VWEpuUWpSemQzWndUVkE1ZURWcVlrSk9UbVJUZEhGalMySk9aR0p0TW5CR1JVNUdiRE53UWt0blJFNUNkWGcyTUN0dE9VNTFWRWxRQ214VmFuVTJiM1pTVm1WNFdGSXZiSGhuVVROUllubElOSGx4TUVSM2QwZGlSbXhWUlc1TWJuQmhlV3N5VUM5M2NXdGFjMkkzWVZGSFEyMHhUWG8zYmt3S1ZFeFBOekEzYzNkd0syTkpZMVFyTjBvd0wxSjZlSEp0U0RRMWFqUTRWM1UwUVVGdmJta3hLMlIzUzBOQlVVVkJiWEYyV0ZwQ1VXMXJRUzlMVVVKUlFncEdMMDQwT0dSMGR6TklaWHB4WnpaM2NtNWtjSHBDV1dOaU5uQjRZbFpEVFhSdWFqVkZNa1Y1T0dKUU5sQnlXRXRWU1ZkRGJXWjJjVE5HYW5ZME5YSllDbGRNTURWVGJFMVlSRUZIUm5KeWNuSnpiMWhUY1dGSVRVTjVUVlYyVGtwelQyNUdkR0YxYnpObGIwUnZlVWszUldSbldrRkpXblZsWkhGd2FIcDJWM01LTldFNWNubEZlVzlwUzBJMWJrVm5LM3A0WTNSRmRtOUlWVXRZYTFSRGFsRTFhbkZzTURJNVVIZGlXbkJrT1c1UlZrY3lWbUpoU0ZKNU4yZDVOa1ZyT0FwQlRGVmtOR2RNV1VscFZVdEhjVGxRYWxWSlRHbzNhV1V2ZUZFMlkwNXJaWFp5VUdaMFFrbHpMMlpZZDJ4alJrbFVLeTlPUkVkVFJIUm9TVnB4U1doTUNuRTNSRWw1YUU5MFVUWnJlamxJTmt0YWJVNHpUSEo2V0dWV05HWnRNRnBzUTA4clUwUlFiRnBEVnk5TVEzcHlVM2hGUVdWdVNIWXJhSGgxU1VwallYRUtTbkpMU1hkUlMwTkJVVUZLUTBKM05VRjZjMGRTTkVwUFJUUkJiaTlhVlZvMVkyTXZVbFJZTDFoeVpXMVhOMDVNZURFeGVGSm9kblJZUlVRelZrcEtkUXBGVmpJcmVtdHNOM1F5T1dzclN6bEdTVlpwZEZSRGNtdzNhRGxXZEd0V0swNWtVVXhwTmxaSlVFMHlUVzlQZDBOWmFHVjNhREJXYkZkbE1YaDVRVzFtQ25RNFFUaExVM0JaUmtveFRXSkRRMEZ6UXpOcVVFd3JNRzVJTlhSdWNIVlpaa054WkhGemNFdFljVEZDVjNObVZrVkxhVVJ4V1M5d1RGVlVNVmt6U0VzS05HUXlXREZtVFRWcE9UaDJVMEY0TVRWNE16aEJPRzFTU3pWTlRDdHBOMEphZFVrclJrWXJUM3BXWlRoc2JrUnFZMFZyVkdWMFZ6RkdWbFV5WjFOVGNnbzJUekUzYWpkWmVuTk5NWFp6V0ZSSFNIaEJjWEJPTmxwUU1raERXbVZ3VUhaUFJqQkZaV1ZMUzNCUmIyaGFTbko0U1RJMmFtZHpTblIzYUZveU0wUTRDbUZOWVZwWVIwZFhTRnBIVEN0c1ZtRkRhU3RPTDBsQ01XTmpkMUIzVjFGV1FXOUpRa0ZHWjAxNmNYZHBWRmxqTkRKaVkzZGpVRkJRVWpSaE5FVnVUVXdLVmpkbFYwWlJTMG8xVUdSSFJqRXdTVTlwTDFJNFFucFNMMUl3WkdSQ05ETldkMnR1V0VjM1NXWTRUVGxWV1ZkV1lrOTBURzVQTjNkalkyd3ZXRFIxVVFwcFRrTkdUeXRsU1VsMVVFcHdXV1p4ZEhGQmRUaE1kRE4yVEUxb2EyWXdWRUY1Ukd0M1pEWlZZMkZ5VVc0eVR5OU5lRUZGVm5KSGJqbFhiM0lySzBOUUNsbDZiMVZHTWxCVFJYVXpXbFk1Ulhsd1VtaEJRekE1U3paRFVIWXdaRFJKYVZaVWMxWkJNa2RWUTBWek56RXdNRE5CWWxWSFpteFdTVkJNVldORGVpOEtaaTlTYmpSMVZHZHhhMk01U3pWdWNWTTNUamt5VlcweVVESm5jUzlyVEU5cGNFZzFSVmMwTlVsNVJWWjBTM1psTjJ4RU9IUnljSEpLYVdWeWQzcG5VZ3BJVXpWWmVFczFTM05IYkVKNU5VazNOVmt2ZVc1eU9VWjBZa3Q1TTJ4R2JuTjFUbkF3T0M5VFNEVmlWV3RoWm1KTlQzWkRPRGRxWVRWRVJUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogb3I1bG1saGJ0N2lzYWlyYXBpNDA2MnJndGE4MjlrNXJiYXltMGQ3MnBvbTI4M2UwYTRsNzhmcXYwaW00aGFxZmRmbWF2MWw0MWtwNzB3cXlxZ2pweWx3YmI0bzJxMTh0eGx2cDd3cXgzODA1MTEwMDR3YXRkamEyNWxleHF0czUK\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13084' + - '13072' content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:07 GMT + - Fri, 16 Jun 2023 05:22:56 GMT expires: - '-1' pragma: @@ -658,7 +562,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -676,34 +580,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '1036' + - '1037' content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:08 GMT + - Fri, 16 Jun 2023 05:22:58 GMT expires: - '-1' pragma: @@ -745,36 +649,37 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"\ + enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\"\ + ,\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n\ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e5f3941-7404-4237-a048-fa1018d96219?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/232be2e3-fc74-41f6-9df0-652dc79d4ab5?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1068' + - '1069' content-type: - application/json date: - - Wed, 15 Mar 2023 11:20:11 GMT + - Fri, 16 Jun 2023 05:23:05 GMT expires: - '-1' pragma: @@ -786,7 +691,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -804,215 +709,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e5f3941-7404-4237-a048-fa1018d96219?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"41395f0e-0474-3742-a048-fa1018d96219\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:20:12.511019Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:20:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e5f3941-7404-4237-a048-fa1018d96219?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"41395f0e-0474-3742-a048-fa1018d96219\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:20:12.511019Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:21:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e5f3941-7404-4237-a048-fa1018d96219?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"41395f0e-0474-3742-a048-fa1018d96219\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:20:12.511019Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:21:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e5f3941-7404-4237-a048-fa1018d96219?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"41395f0e-0474-3742-a048-fa1018d96219\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:20:12.511019Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:22:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e5f3941-7404-4237-a048-fa1018d96219?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/232be2e3-fc74-41f6-9df0-652dc79d4ab5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"41395f0e-0474-3742-a048-fa1018d96219\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:20:12.511019Z\"\n }" + string: "{\n \"name\": \"e3e22b23-74fc-f641-9df0-652dc79d4ab5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T05:23:04.6864108Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:42 GMT + - Fri, 16 Jun 2023 05:23:06 GMT expires: - '-1' pragma: @@ -1044,24 +757,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e5f3941-7404-4237-a048-fa1018d96219?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/232be2e3-fc74-41f6-9df0-652dc79d4ab5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"41395f0e-0474-3742-a048-fa1018d96219\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:20:12.511019Z\",\n \"endTime\": - \"2023-03-15T11:23:12.0940251Z\"\n }" + string: "{\n \"name\": \"e3e22b23-74fc-f641-9df0-652dc79d4ab5\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T05:23:04.6864108Z\",\n \"\ + endTime\": \"2023-06-16T05:26:03.4974217Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 11:23:12 GMT + - Fri, 16 Jun 2023 05:39:13 GMT expires: - '-1' pragma: @@ -1093,34 +806,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"\ + enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\"\ + ,\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n\ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1069' + - '1070' content-type: - application/json date: - - Wed, 15 Mar 2023 11:23:12 GMT + - Fri, 16 Jun 2023 05:39:14 GMT expires: - '-1' pragma: @@ -1152,48 +866,48 @@ interactions: ParameterSetName: - --resource-group --cluster-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\": - \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n - \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\"\ + : {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2182' + - '2184' content-type: - application/json date: - - Wed, 15 Mar 2023 11:23:13 GMT + - Fri, 16 Jun 2023 05:39:16 GMT expires: - '-1' pragma: @@ -1225,48 +939,48 @@ interactions: ParameterSetName: - --resource-group --cluster-name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\": - \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n - \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\"\ + : {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2182' + - '2184' content-type: - application/json date: - - Wed, 15 Mar 2023 11:23:14 GMT + - Fri, 16 Jun 2023 05:39:17 GMT expires: - '-1' pragma: @@ -1298,48 +1012,48 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\": - \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n - \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\"\ + : {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2182' + - '2184' content-type: - application/json date: - - Wed, 15 Mar 2023 11:23:14 GMT + - Fri, 16 Jun 2023 05:39:18 GMT expires: - '-1' pragma: @@ -1381,226 +1095,37 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3\",\n - \ \"name\": \"nodepool3\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3\"\ + ,\n \"name\": \"nodepool3\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f68cccf-21c9-4da7-9703-29255ca31d4e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a60ebec2-0eec-486c-8804-6ca0861059cc?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1070' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:23:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1192' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags --mode - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f68cccf-21c9-4da7-9703-29255ca31d4e?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"cfcc687f-c921-a74d-9703-29255ca31d4e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:23:17.8241127Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:23:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags --mode - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f68cccf-21c9-4da7-9703-29255ca31d4e?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"cfcc687f-c921-a74d-9703-29255ca31d4e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:23:17.8241127Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:24:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags --mode - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f68cccf-21c9-4da7-9703-29255ca31d4e?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"cfcc687f-c921-a74d-9703-29255ca31d4e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:23:17.8241127Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:24:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags --mode - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f68cccf-21c9-4da7-9703-29255ca31d4e?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"cfcc687f-c921-a74d-9703-29255ca31d4e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:23:17.8241127Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' + - '1071' content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:17 GMT + - Fri, 16 Jun 2023 06:16:36 GMT expires: - '-1' pragma: @@ -1615,6 +1140,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -1632,14 +1159,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f68cccf-21c9-4da7-9703-29255ca31d4e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a60ebec2-0eec-486c-8804-6ca0861059cc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cfcc687f-c921-a74d-9703-29255ca31d4e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:23:17.8241127Z\"\n }" + string: "{\n \"name\": \"c2be0ea6-ec0e-6c48-8804-6ca0861059cc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T06:16:37.1315924Z\"\n }" headers: cache-control: - no-cache @@ -1648,7 +1175,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:47 GMT + - Fri, 16 Jun 2023 06:16:36 GMT expires: - '-1' pragma: @@ -1680,24 +1207,24 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7f68cccf-21c9-4da7-9703-29255ca31d4e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a60ebec2-0eec-486c-8804-6ca0861059cc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"cfcc687f-c921-a74d-9703-29255ca31d4e\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:23:17.8241127Z\",\n \"endTime\": - \"2023-03-15T11:26:16.1707885Z\"\n }" + string: "{\n \"name\": \"c2be0ea6-ec0e-6c48-8804-6ca0861059cc\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T06:16:37.1315924Z\",\n \"\ + endTime\": \"2023-06-16T06:16:44.366592Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:17 GMT + - Fri, 16 Jun 2023 06:45:07 GMT expires: - '-1' pragma: @@ -1729,34 +1256,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3\",\n - \ \"name\": \"nodepool3\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3\"\ + ,\n \"name\": \"nodepool3\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1071' + - '1072' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:17 GMT + - Fri, 16 Jun 2023 06:45:07 GMT expires: - '-1' pragma: @@ -1788,34 +1316,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3\",\n - \ \"name\": \"nodepool3\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3\"\ + ,\n \"name\": \"nodepool3\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1071' + - '1072' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:19 GMT + - Fri, 16 Jun 2023 06:45:08 GMT expires: - '-1' pragma: @@ -1847,62 +1376,62 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\": - \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n - \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3\",\n - \ \"name\": \"nodepool3\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\": - \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n - \ },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\"\ + : {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3\"\ + ,\n \"name\": \"nodepool3\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\"\ + : {\n \"label1\": \"value1\"\n },\n \"mode\": \"System\",\n \ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '3330' + - '3333' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:19 GMT + - Fri, 16 Jun 2023 06:45:10 GMT expires: - '-1' pragma: @@ -1936,8 +1465,8 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 response: @@ -1945,17 +1474,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9f0b2e52-791b-473d-b58d-3b18bfe50b19?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0bc268c2-7554-4b75-91a1-94194880ceea?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:26:20 GMT + - Fri, 16 Jun 2023 06:45:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/9f0b2e52-791b-473d-b58d-3b18bfe50b19?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/0bc268c2-7554-4b75-91a1-94194880ceea?api-version=2016-03-30 pragma: - no-cache server: @@ -1983,34 +1512,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --mode User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"\ + enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\"\ + ,\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n\ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1069' + - '1070' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:21 GMT + - Fri, 16 Jun 2023 06:45:12 GMT expires: - '-1' pragma: @@ -2033,7 +1563,7 @@ interactions: 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "scaleDownMode": "Delete", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "tags": {"key1": "value1"}, "nodeLabels": {"label1": "value1"}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' headers: @@ -2052,36 +1582,37 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --mode User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26979675-b298-43f9-b535-50c9911d878b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ecd556ca-878f-48b4-8f90-06303c86a87a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1070' + - '1071' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:23 GMT + - Fri, 16 Jun 2023 06:45:16 GMT expires: - '-1' pragma: @@ -2115,15 +1646,63 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --mode User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ecd556ca-878f-48b4-8f90-06303c86a87a?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ca56d5ec-8f87-b448-8f90-06303c86a87a\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T06:45:16.6515045Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 06:45:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --mode + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/26979675-b298-43f9-b535-50c9911d878b?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ecd556ca-878f-48b4-8f90-06303c86a87a?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"75969726-98b2-f943-b535-50c9911d878b\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:26:23.8402668Z\",\n \"endTime\": - \"2023-03-15T11:26:33.7685435Z\"\n }" + string: "{\n \"name\": \"ca56d5ec-8f87-b448-8f90-06303c86a87a\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T06:45:16.6515045Z\",\n \"\ + endTime\": \"2023-06-16T06:45:20.4111099Z\"\n }" headers: cache-control: - no-cache @@ -2132,7 +1711,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:53 GMT + - Fri, 16 Jun 2023 07:17:59 GMT expires: - '-1' pragma: @@ -2164,34 +1743,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --mode User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1071' + - '1072' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:53 GMT + - Fri, 16 Jun 2023 07:18:00 GMT expires: - '-1' pragma: @@ -2223,34 +1803,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1071' + - '1072' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:54 GMT + - Fri, 16 Jun 2023 07:18:02 GMT expires: - '-1' pragma: @@ -2284,8 +1865,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -2293,17 +1874,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9aaa4f5-7cd0-42de-ac0f-a63f8fccb229?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/454237d4-1ff1-489c-95e8-fc02c9cd9d59?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:26:54 GMT + - Fri, 16 Jun 2023 07:18:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/e9aaa4f5-7cd0-42de-ac0f-a63f8fccb229?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/454237d4-1ff1-489c-95e8-fc02c9cd9d59?api-version=2016-03-30 pragma: - no-cache server: @@ -2313,7 +1894,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14995' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_system_pool_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_system_pool_msi.yaml old mode 100755 new mode 100644 index 1905e9b3a7e..13e7f1e47f8 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_system_pool_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_system_pool_msi.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:22:05 GMT + - Fri, 16 Jun 2023 07:18:10 GMT expires: - '-1' pragma: @@ -53,12 +53,11 @@ interactions: "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -69,67 +68,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1440' + - '1732' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-vhiv3vix.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-vhiv3vix.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-fvwi1wi7.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-fvwi1wi7.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e4193b3-c9d4-4929-936b-f56398fdde8a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63ffffd5-4ea0-4537-9242-514f9afe9dd1?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3211' + - '3539' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:09 GMT + - Fri, 16 Jun 2023 07:18:18 GMT expires: - '-1' pragma: @@ -141,7 +141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -159,158 +159,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e4193b3-c9d4-4929-936b-f56398fdde8a?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"b393412e-d4c9-2949-936b-f56398fdde8a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:09.2145288Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:22:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e4193b3-c9d4-4929-936b-f56398fdde8a?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"b393412e-d4c9-2949-936b-f56398fdde8a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:09.2145288Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:23:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e4193b3-c9d4-4929-936b-f56398fdde8a?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"b393412e-d4c9-2949-936b-f56398fdde8a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:09.2145288Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:23:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e4193b3-c9d4-4929-936b-f56398fdde8a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63ffffd5-4ea0-4537-9242-514f9afe9dd1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b393412e-d4c9-2949-936b-f56398fdde8a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:09.2145288Z\"\n }" + string: "{\n \"name\": \"d5ffff63-a04e-3745-9242-514f9afe9dd1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T07:18:17.9374167Z\"\n }" headers: cache-control: - no-cache @@ -319,7 +175,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:09 GMT + - Fri, 16 Jun 2023 07:18:18 GMT expires: - '-1' pragma: @@ -351,14 +207,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e4193b3-c9d4-4929-936b-f56398fdde8a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63ffffd5-4ea0-4537-9242-514f9afe9dd1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b393412e-d4c9-2949-936b-f56398fdde8a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:09.2145288Z\"\n }" + string: "{\n \"name\": \"d5ffff63-a04e-3745-9242-514f9afe9dd1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T07:18:17.9374167Z\"\n }" headers: cache-control: - no-cache @@ -367,7 +223,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:39 GMT + - Fri, 16 Jun 2023 07:19:49 GMT expires: - '-1' pragma: @@ -399,14 +255,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e4193b3-c9d4-4929-936b-f56398fdde8a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63ffffd5-4ea0-4537-9242-514f9afe9dd1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b393412e-d4c9-2949-936b-f56398fdde8a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:09.2145288Z\"\n }" + string: "{\n \"name\": \"d5ffff63-a04e-3745-9242-514f9afe9dd1\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T07:18:17.9374167Z\"\n }" headers: cache-control: - no-cache @@ -415,7 +271,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:09 GMT + - Fri, 16 Jun 2023 07:20:19 GMT expires: - '-1' pragma: @@ -447,15 +303,15 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e4193b3-c9d4-4929-936b-f56398fdde8a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/63ffffd5-4ea0-4537-9242-514f9afe9dd1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b393412e-d4c9-2949-936b-f56398fdde8a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:22:09.2145288Z\",\n \"endTime\": - \"2023-03-15T11:25:11.8330635Z\"\n }" + string: "{\n \"name\": \"d5ffff63-a04e-3745-9242-514f9afe9dd1\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T07:18:17.9374167Z\",\n \"\ + endTime\": \"2023-06-16T07:21:49.2751907Z\"\n }" headers: cache-control: - no-cache @@ -464,7 +320,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:39 GMT + - Fri, 16 Jun 2023 07:37:22 GMT expires: - '-1' pragma: @@ -496,64 +352,65 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-vhiv3vix.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-vhiv3vix.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9b089e4e-55df-44e9-8a52-502f0a275bbc\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-fvwi1wi7.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-fvwi1wi7.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/71f4b07b-2bde-435e-909f-677aa1f1a741\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3864' + - '4192' content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:39 GMT + - Fri, 16 Jun 2023 07:37:24 GMT expires: - '-1' pragma: @@ -585,64 +442,68 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-vhiv3vix.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-vhiv3vix.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/9b089e4e-55df-44e9-8a52-502f0a275bbc\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-fvwi1wi7.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-fvwi1wi7.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/71f4b07b-2bde-435e-909f-677aa1f1a741\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"defender\": {\n \"logAnalyticsWorkspaceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n }\n\ + \ },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"\ + oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '3864' + - '4524' content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:40 GMT + - Fri, 16 Jun 2023 08:16:08 GMT expires: - '-1' pragma: @@ -676,24 +537,24 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVVsRGIzZE9iMUIwTDJWRFdHVlBaRWRpUzA1bE5GRjNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDAxNlJURk5WRVY0VFdwVmQxZG9aMUJOYWtFeFRYcEJlazFVVlhoTlZFbDVUbFJDWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNqbEVWeXREUmtKcVFUbG9XSHBxVTJOMVUyOVliVVZKV205Vk4xQmpXUzlQVld3eVdHdzNSbWQxWjJ0cGRTdFVVREYwUTFwUlFVRjZNVzl5ZDJJdmNuY0tSMjFNZUdKS2QxcFRVVkI0YWpsaWJuRkVUR05CVEVaclNWTklZMWxvTjNSQ0wwNHJaelJpV2pKQlNWTm5SVUppYW5vMWVuYzFWM2hsT1hCRGJHNTBSUXAxTjFSRmNHeHpPWHBLY1dGSU1Dc3JPRUpsWkVNeFMwSnFWMDlKZFZCU2QwSldWaTlTTlU1NVNWbERNaTlwYjBKQ1RHOUxVMVpGTVU1d2JXbFhNV0p6Q2pSemNXRk9UVE5OTWpnMVl6aE9jMlI2ZEcxNFNERjBObGhaVEhoUVJYUjNiVklyTDNaWFNWTndlVkpDUzNSSVNtZHhWM0ppTml0dVlrSlRRMGh6VFhBS0x6Rk9VeTgzVDJNeVQweHhSV1JMTlRWSWFGTm5lVTVEY0dOTFJHaEplbkJ1Y1VSc05HeFdNMlJXWWxkaGNYUjNOemgwYkdWNmRrcDZVV2hRZUVaNU5ncHBTRVp1UzB4cVUwTmlUMjVhVlRCc2JHcHZVMDFXT0VobVNIVlBVa1JqTkZKUmQyaDNUbXB3UkRWRmVHVkpPV3N3SzFoUVVucGtUR1pRTkZkWFdGWkhDa014VUdSMVNqaG5WR3RCTm1rMlZsaGFhV2hVSzNWcWJsWjNTVGdySzBwbVpISnROMlpOUTA1QlFWUjFSMFJvTVZaTVF6TnFiV05EZDBOamFtTTNTV3NLVTFVclUxcHNaRTloUlhJME1XNVlSVWxoVlM5dmVHUXpSRWRWTUc1VE1WRkRha05oVjJZNVJYaFRPRGhQUWxWdE0waHVlbkIzYVM5WlpuRlBMMUYxYXdvMGIwRndVemxuYm5oaFZsY3JZMjQwTTJKQ05EbFhlSE5vTUVKTldYSTVVRk5yV2pkS1drNXpSa3BuZEZRM1pEVlJjRWcwYjJZelJDc3hVMkl5WjB4WUNsRkxOamRuZG14aGNscHFhRmhhWTB0NU0xQk5jVkZDWTNGeVVuYzRXaTlsYml0UFVqRkNhemhWZGpkRGFFVXpRbXBTVTNZMFZWcGFlbGhyYUdkM1JtOEtTSEJOU1hsYVdYZEJVV2w2VUdWa05EUTJUMVUxWjNCU2VrOTVUems1YmtseU9ESnRjRkJtUVVGeVZVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1FUVlZVSEZSZVVSeVlVeFJhbW9yQ2t4Q05UQnRUR3hQVERaTFEwMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFXZEliR0UxUTAwek9YSTJPR0pLYVV3NGN6RXJWamhTVFRVS1VIQlRURWhtYUZrclNpOVRMMUJaWkVRcmRHNW1ZbVpFUm5OV1dYVlBXRTV1ZW1aRE55dG5XRU54UmtWWGFHNVhha1JOVDBaQ1FXUmxNRWhzT1dsSWFRcGlaM3B5YUdKeU9EaE1hbVJFYzB3M1V6UkJhazR3VlZSbUwyRjRZVGhxY1hGeVp6aFlTbWRvZFVWaGJFWlBVbkZzY1VWbmJ6UnpOMDFMWkhWelFYTmxDbkIyVkc5S01IQjJaMFJPTWtaYVVrWnRWM0p2VVVSSFRVVlpPRkZGTjNjcmJscEdabGhTWm1aWEwxVlRZakl4Y0RZelRGa3ZVME5RZEdkVlUwZHdLek1LYjB4eWJHdHJSRTlLVXl0ck56SkJkbXN4VnpKRGVIUnBNM0ZRYWtJMFVpdHNPR2xRYkc1c1RISm1aMng1UkZoNVZETlZablV2VlRsaFNFODBOSFJ5WXdwaU1qZzNNSEphTUhsek1ITm1OSFEzZWk5QmNUVmtZbmx3Wm5nd2JUTklkV3h0Y2l0U1RrMUNlaXMwUkc1YVZHUnlNMEZ5VDJnNFNHRXJhRnA1TlVwVkNpdExhSGczTUZJeWNUVXlRMlEwYzBsNlZ6TmtVbGcwYTI0MVRXNTZjbkZyWkRGQ1UzcDJZM0k0UVd4M0wwTllUVXd2VlUxNlQydElabGxXYlVSQ1NIa0taMEUwWkcxc1lVWktkV1pRZDBWaE5XVnlRM0V5YUdGUVprTkVjVVJGU25SdVoxSkJVMEV3WWxsNWVEZG1NMkUxZERWS01EVXlPVkF4VWxWNFVteEVWd3BPTmsxWGNTdHFUbFJ0T1hvcmNXZGFUMHg2TVVkd1JsWnFaWEZCVVZkcmVYTjJhbkE1WVZVemREZExXbEEwWVdoclJtMXJWVFIzYWs4elJXdFhiazlEQ2pORGFHVTRReXRhTjBKTVVVdzJiVUpHTWxwcFpUSjRkV2xUUTNsNVVtbGtLelYxUmtwME0wWXJRVVZwTm1oaWJUTXZkMjgzVkVSUFRUVnZTVXBJZVdnS09WSTJTbE5ZTTJRcllreDVTRzlhZGtaUFRIQnlRbkZSYjBsTFZVNVZkSG92THpkMVIwUjNiWFZWYzFwdWJuWllhazlyVnlzMVJXODVlWGd4ZVZKbGNRcGFRVzFFYTNkUmFFZzJZVzF6YlRjM1YxRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zb2d6b3Y0by12aGl2M3ZpeC5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdDdzZWtlYQpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdDdzZWtlYQogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdG5sMnByYWpyNmtfY2xpYWtzdGVzdDdzZWtlYQogIG5hbWU6IGNsaWFrc3Rlc3Q3c2VrZWEKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0N3Nla2VhCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdG5sMnByYWpyNmtfY2xpYWtzdGVzdDdzZWtlYQogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlVFcDZhSFpxWjJ0SlZVSmhNVVpzZW5CNlR6RlJha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQmVrMVVWWGhOVkVWNVRsUkNZVVozTUhsT1ZFRjZUVlJWZUUxVVNYbE9WRUpoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVTnVUWGRFTVhOUVlWVlViMGhHTldsclNVdFFja2NLVkZoR1ZqZDFjRTlUVEVjdmRrUTFUa3hqU1hvMlFYbGtSWFpxSzJOWE5FMW1iams1YlZKS1QxaFRPWGN6ZDBaTGEzcHRPR0o1UjAwdmJIVmlhQ3R4TndwaGVFdFNSbk5KYWtsaVEzWmthVlJzTDI1UFkyWjNTaXRwYUU1Uk1GaFpZbVpKWmtKRVVXeDFRVTV5WW5SRWVtTkpka2h0UkhwMmVWSlpRMnQ2VFZkWENsZGpSbm9yY2t0SVJVeE9SMWxTZFhnMFFsQldVVmhrVEZWbWMyWnhNWEZ1SzJNMlltVktUREJqUzNWUlFuUm9lR2xNZUdwcE5rYzRUelV3ZWs1eVQxVUtSR3BCUTBGa2VXcFlVM2hZT1ZCaWRYSktOM3B4VEZGWlNYaHBNVnBQUldkNU1qRkRjV0paU1UxUmVHOWFPVUZpTDNwSGMzcHRZWEpCVDJ3NVRIRjVRUXBVTW1SUmNsTkVRME5uYUV0cU4yeExhQzlCY1dFM05EY3JkRFoxWkd4TVZXbG9TM0ZOVmtZME9WbHZPR3BSUnpGQlpXVklPRnBCUW13MFNtOXNiR1Y0Q2taUmNWTkZSSFV3UzBOSWQxQlFiRFZzVmtkNVYxQklaVUk0VVVKRE5GcDJXalZsUVRZMFlVOVJUWEJUY0UxaWFXTlljVEZCT0RaTVlVbG1UMUJYV0hvS056RkVTMlp4T0VOWWRVeGphRWQwU3pkU01uTmFSMWxEYWxNcmFXcGlkMHBrVDBkNWRYZFZWbVkwTURaNU4xcFpiVGRsZEc1RVNFcFpVemRCWTBkS01BcHhVVTQxT1dkaVF6TnRTMEV3SzA0MFdFcDJUbEpOVlU1V1dGRXdPVTlRU0cxalRHdEVlVlZ1VEZaamJFSmpLek5UYzNoVE5WZGFka3hOZERaeVZEWTFDa1ZuZFhCWUsxVXJZamh3UkVoVFpHdDRVbkpuWmpGdWRVSm5iMFUzV2pWUVNYQkdSbFpvYVd4d1ptcElWSGRDVDFCSlJFOXJVME56ZWtSeFJWcFdOMGtLVUU1NFFqVTVjVGx1TW5sU1JYRkdNV0ZWWTBOR1FtcHlRbU5EUjBrelIzWnhTVEI2VTFKbVdFUkZWRFI2VGxST2JrNXplVFozVjBaNVIyWndieXR1Undwa1VVbHJlblpsUW1wQk5FRjNOVzh3VFRjd1VHMVJTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsRlBWa1EyYTAxbk5qSUthVEJKTkM5cGQyVmtTbWsxVkdrcmFXZHFRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRk9ja0ZYY0hsTVIyc3ZPVk41UXpkV1ZYcE5kd3BaTURobmREVlNPV2RGVkc1cVdrTm1SRFJsTVZWRmMwaEdSbk5MVHk5QlUyRXhNSGRXTW1wWlNsSndlVTlsTkhOWVdUbFNWSEJKYTNkaFYwcEJOalpXQ2tobU5HWkdTWFJ1VjFKcmFXUnZiMm94V1ZOTVUySmphbFl5TW5aTk1YQkpRbnBsYmsxa1dqTXZhMnR0UjNWS05tVmxNbU00Vm10VFNIaHRPVU0zVFdVS2RFMTFMemRSZVU5SlUxbFpPVkpSTjBWUGR6RnRka0ZyWlRsMGVtUllla0pJTkhsdWVWcG9RemRQU1RCeVJYWlVVa2g2UW1wUmFHWkRkV1kwWW0weldRcHBUVkpLUkRoNk5YTkZTVUV5SzJWSE9UbE9lRTF5U3pscVduaFVWMk4xWlV3clNEaGpaVU5WZG10VFdEbGFWRnB5UXk5c1pVVXZRVTVRUmk4eE1IbGtDbmxQVEZkNVRFZFhTMHhQUW01SE9VSjZXbWgwWWxkek1tRnpZVXhoVkROa1FrWldOV1F6ZDJOdFJGUjRTakppUVVGWFVUbE9hRWxqYWpRdmQydDFSbFVLUzNOeWJGWmpjR3hZYTFaclpHUkdWRk5hT0VKUGJHOXBXRk13VEdjM2VrVkRaazlJUzJsNGRGWnNabmRoU0daTmJrbG9iM1Z4VHpjNE9VbHphM0JXTkFvek5WQkVRMUZ6V25ocGNIUnlVMjU2V0RSSVRIWnZTM2MyYlNzMVFVUkJabkp3YkROck9DdFdOREp2ZWxOWVluVk9NVWhHVWpCRGJsbExXRVpNWkROeUNrYzNTWEpTVmtJMGJ6RmxSemxEV1ZKeFJpdERhbEJYYWtsNFVUZEJUMlF4TjJseWVDOHdWa2R6UldaRGVuRlNRMGgyYjJWc2RWSnpRM0J2T1d3eFZVd0tlVU5UUjBGUWFrVlVXVEZ5SzNKUWRpOTFhM1JuYzNWcFNqTm1Ra1JYZFZodVpXaHRSWE4xZDA1c1drZFVibmxzZG1VelYxRm9PWE54VlVwQ1dWSXhXUXAyYjNadUx6RTRXRTAzTm5wWlNsaDVOUzlYSzFCSFlWVlZNR0l2YTJwbVJraHJReXM0UzA1UlVIRklWRTFLY1U5cVduVkZXVXhTTVZCQ01uTldXa2R2Q2tsWksweFhWUzlYYVZWaFlWcHBiVGx5YldkTlNsTkZQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1NuZEpRa0ZCUzBOQlowVkJjSHBOUVRsaVJESnNSVFpDZUdWWmNFTkRhalo0YXpGNFZtVTNjVlJyYVhoMk4zY3JWRk16UTAwclowMXVVa3cwQ2k5dVJuVkVTRFV2WmxwclUxUnNNSFpqVGpoQ1UzQk5OWFpIT0docVVEVmliVFJtY1hVeWMxTnJVbUpEU1hsSGQzSXpXV3MxWmpWNmJrZzRRMlp2YjFRS1ZVNUdNa2N6ZVVoM1VUQktZbWRFWVRJM1VUZ3pRMHg0TldjNE56aHJWMEZ3VFhwR2JHeHVRbU12Y1hsb2VFTjZVbTFGWW5ObFFWUXhWVVl6VXpGSU53cElOblJoY0M5dVQyMHphVk01U0VOeWEwRmlXV05aYVRoWk5IVm9ka1IxWkUxNllYcHNRVFIzUVdkSVkyOHhNSE5XTDFReU4zRjVaVGcyYVRCSFEwMVpDblJYVkdoSlRYUjBVWEZ0TWtORVJVMWhSMlpSUnk4NGVISk5OVzF4ZDBSd1psTTJjMmRGT1c1VlN6Qm5kMmR2U1ZOdkt6VlRiMlozUzIxMUswOHZjbVVLY201YVV6RkpiMU54YWtaU1pWQlhTMUJKTUVKMFVVaHVhQzlIVVVGYVpVTmhTbHBZYzFKVlMydG9RVGQwUTJkb09FUjZOV1ZhVmxKemJHcDRNMmRtUlFwQlVYVkhZakpsV0dkUGRVZHFhMFJMVlhGVVJ6UnVSalowVVZCUGFUSnBTSHBxTVd3NEt6bFJlVzQyZGtGc04ya3pTVkp5VTNVd1pISkhVbTFCYnpCMkNtOXZNamhEV0ZSb2MzSnpSa1pZSzA1UGMzVXlWMHAxTTNKYWQzaDVWMFYxZDBoQ2FXUkxhMFJsWmxsSGQzUTFhV2RPVUdwbFJubGllbFZVUmtSV1ZqQUtUbEJVYW5nMWJrTTFRVGhzU25reFdFcFJXRkIwTUhKTlZYVldiV0o1ZWt4bGNUQXJkVkpKVEhGV0wyeFFiUzlMVVhnd2JscE5WV0UwU0RsYU4yZFpTd3BDVHpKbFZIbExVbEpXV1Zsd1lWZzBlREE0UVZScWVVRjZjRVZuY2sxM05taEhWbVY1UkhwalVXVm1ZWFphT1hOclVrdG9aRmRzU0VGb1VWazJkMWhCQ21ocFRuaHlObWxPVFRCcldERjNlRVVyVFhwVmVscDZZazExYzBab1kyaHVObUZRY0hodVZVTktUVGN6WjFsM1QwRk5UMkZPUkU4NVJEVnJRMEYzUlVFS1FWRkxRMEZuUVdGdUswTlVVSGszUlhoM2RXSlBPVGxyTUZWSE9YVnBPVWRCT1cxRWVHTmxiMUpKTWxoT1MxbHpTbVJPT0ZnM01FOXdNMnhwZFM5SlNncFRaM0pGVGpoeFMwdHlha1kyTVZCVFZXUkJRalUyT0cxM1UyNDNNV293UzNCYWEyTm9kM3BtYnl0NVZWRXdVMlJ6ZDNaMWIyOVpXVFZKU0hWT2NFcFlDbWd6TDNNMlJ6TjRaRzAwUzJvdldEbE5TV1pZVDBsSldIWkNVSEZ6VkdoQ1FUZGlVMFY2U3pWRWJGZGxjVnBRS3pkWlNGWnRTMUp2YTNCNlNrTjBjQzhLYmpFcmJsWlNiVGgzV25CT01tWjRSbnBqU21abGR6WTFWRkZwYW14MU4wZEpkek5FV21RM1pEQnpRbEJ0VjFadFdEUk1kVXBSYVZkUFp6UjJZbkpXYWdwWVEzTkZaWFZ6UXpWVFZXRnJSRk5WTUM5ck9WZGtVRlZtTURSM01FaFJabEZNU25Gek4xcEhVMVZUTUZCYWJHTTFMMDVRUldNdlREaEZUMWxZVEZKRkNreGlOVkJwUzI5UGIyeFhXRkZWY0doT00wazNSSEZzVW1ocU9VbFVXaXQxZUU1cGQwWm5aMUJvYkdaTWFYWnFjWEZNSzJocVFqbDBSM1ptSzFoMFZXUUtWelV4YUdWRmFVdFhWMlptU0RWUWFHcElZbFJNU1RKMVptVmxSR2RFUzJGMlEzTkhiREZwVlRGeE5ITklaRUoxVXpCcVJFaGlOazUxTW1kNlJXUlljQXA2VTFJMlVtUlNhak5GY2pKTWMxZHNUVTA0U20xTU4zbEdRVlkyUTJoYVdTc3hOekpDWjNWM1MyWk9jbFF2ZWxSUGMxQjVhUzlaZW5CU2JYSnZNQzlIQ25OUmEySmpkRkJPUkU5SlZUUkJiMUZsVVhGSlVUWlZlVmhSTVROMVkxWjBRM2wwYmxFek4zVkdRM0ZYZDJKS2VVeDJRaTlVY2xkSlNFOTZVRGt6U0VvS1RrSnFjRUozTmxJd1FWa3pXWGxrWkdkM1RrcEdlREo0V21STE4zVlFXV3BJYjJzeFVIaENia1JVSzFjck1WZHBXbVoyUVhoeFEzTkhWbE0wYVVjcldncGpia2xOVkZkTkszSmhhRTEyV2tSd1QyOVlkblZtWWxWNlNXSnFOWEpJVkhocFNVZFJZM0I0Y0ZaaVozZFhaVlJyVVV0RFFWRkZRVEpMU1ZKaFVuTnRDamN6VEVKalpDdHVXbHBXV25sWVlsZGtXR3hKWVdOSWJTOVZWa05PVUVwRVdXOW1XbXhYY1VOU1RuRjJVVlZ4TDNBMmR6Y3dRVkl4WTJaNE1EVnpSR0lLVFRjeFZ5dDRVMU0zUm05M0swWTFlamN4WlhGMk9GWnFWV1V4U0ZZelZXeHRSWFUwVEZocFJraHNSVFZ6YzNoVUwxQm1Ra2x1TDFWQ2JYZzJNaklyVndvdk5FUnVhMjh4ZHpNM0x6QXJaekJoZUROdlJqa3dURlJQYzNNemQzcHJkRUZhVVZKaVV6QTVSWGMyVkc1emNtSnVjalE0TjJaR2QycFRVV0ZqWjJoU0NuWTViaXRHTHpNM1NXOTFWVGRHYURNNFJtVkRORlV3U1RaelptZHBhVlJqT1Zkc2RIRjJZbmRCVDBoa1dubEpXV0ZaZFRSUGJrRkRUV3hLYlVVMmRUQUtabHBLYzFsUU9HMURVa3BJZVRsT1lYaGlZMUJ2ZUhKdGVUVXlSV0pYZVRWUVNqSnlhbFp5ZUdadmRFOUhTMUlyTUZoU1ZrZFBkM2h1T0VsaFQzSjBSUW81U0VnMFdYaDVTR2wzYVhKeGQwdERRVkZGUVhoYVZUaHBlRkJsTDFGWVNsSnpRa3B2V1hVNFZEQkRkMWRPTTJaMVZXODVaWEE1UlVZME16aGlXa1ZDQ2tGc2NYZ3dNRXQxVlhsTmJtNUdXR0U0ZUVwbWJIQm1aVlJ5UVhKdU4zaFZiRE0wV1Zjclpra3lUalowT1VRNUx6Sm1kM1ZaVERsWlRHbEVTR2hOV1RZS1UxSnVRazFzWkZoNVpWUkVRWFF4V0haTldXWklMM0p2VkVOVE5rZ3laRWt5YlhGaGJHdFVZWGRWVldNeVQzbE9OVVZtZDI1clZUbEJZVmxDU1RaTWJBcFNRazEwU1Rsck1XSTNOMFpLY2tkTWVrRXZXRUZ6VWtSa1dGUmlSRmRWV1VkcU0xcE5WWGQxZVcxRU5rWkJTVEpRVGpFek9WcDNUSEFyVUVSTmFHTTJDbEp5YWxSRUwzazJPRlZMYzJSMWVpdG9RamxQVm5kamIybDVlRXhMVmpNemJsa3hibWxyYWk5RmVuVjJRVWxSSzI1MU4xUTNRMUpWUXpWQ01WRkhaMk1LUlZKaWF6VXhURVV5VWtwblYzbDBXVUpJYTJKUFNuSjNheXRYVmpSNk5rcFZTSFl3WldrdlRubDNTME5CVVVFMVNUVmFRVU5PT1dWTVVVTkdSSEEzVXdwc2JrRlhVMWhuVEdsREwyNWFWRTlPTDJsVFYxaHZaMVJvZHpKSE9GazNiWEJzSzNaamR6TlhTbWRIYjNadFVsUTJiV3BVVEVjNGF6SklORWQyT0dnMENpdDBhMHg1WVRNcmNGUnlkVlpvZGpaVlowZE9UMlZNZFhCd2IzWjBRMmMwWkU5bmNFWjFabGxSTW1vemRHOTFkMGhvUkZKeVJEbENjVlJvY2xkVk9EWUtWbE5HUTJsM05WUkxkMXBFZWpaYWVsUlpTM0I0V0hwMlpUWlRWa1JYWldOcVV6SXljRzQ0UkVGa05rVlVSR2xLYjJOdmRqVmhNMkZWY0RsSmNVdzRRd3AyTlhCTFRrcE9LMGQ2WWpCUmFVNXNLMk0xY0RSWmN5dFdPRFpNVmpWTE5sTk9hbXBEVVZWNldWcDZORWhQT0ZoWmRFSXhkemhhV210TVRuaGhhSE5aQ2t4WVFYVm1Ua3h0WWpSQ05saDJRV1JMVEVSNlVUaG5aME4wTldrM1IyWnBTSFJCT0djM1lraG1SVEowZDNrM1ltMXdSR05wVDFOS1RGUTFPSFJrZFhrS1pXeHFPVUZ2U1VKQlIyc3ZZVGRoZURaU1FtazJjWEZVWkhsV2Exb3ZWRmhuY0doNk5UazJkRzE2TkdOYVNYTm1hVkl4WTBwdGREUnZSWHB0YzJwR053cEJibWxYYVRCRU4zZHZkRmhpYjFndk9XUjZjVEY1ZVhwalNYQlZWak54WldNME9IUXpRVGRxT1Vab05ERkxTVTUwTDI5VlJtRjNiVEptUkZVNFpVTk1DbmxSTVZoc2IzSnhRbXcxYTNGNVZWVlZNR2w2U0dVeWNUVTFiWGRLT0RkWU16bDJNV1JyWm5CM2JGTnphMU5wTVc5MGJUSjRaVmRVVTFoS1ZrYzRMMmNLYTA5b2FHNTRVV1ZSSzNkdVZ6Y3ZVR1JZWjFoS09WZHBjVWhXU1VoWmVWVlNLMGx6YnpOUFkycFhMelZ3V1ZCVVNWbEZiazlzVnprd2EwRnlOR1pFZFFwRlUzaDNXbU56TDFka01tdzFTVlIxU0ZWT01USktZa2RaYVdOYVducGFOV3B0YWpaRFRteHJXWFZNYUVoNGRtZzBXRTVxWjJJdlozTkRTa0Y0Y21KVENuZFNNRkJaTlRGUFdGb3JlbVZRT1haU2JqVTRTekl3UWl0dFMzbzBRekJEWjJkRlFWTmxTRlo0UVhvNFRUVlNSRlJxUldoR1pqZ3ZiSE5KWXpkRU9Vd0tRMjUxWlc1UlUwTXpXak01WlRGR2FHeFRWbkZOZW5WTFJuZDRTMnhhVFV4TlpHUnNRV2d2TUhJdlVWTm5NVU0zZFhkMVJHMHdPRzR2UWxGQmIzZHljQXBoYkZGUGVIaFdNRUphY0cxR1lVOTNhVlpsTjBaRFZYRTNPV3A1Y2pkbWJsbFdlbmhuVUZnMkwxTTVOVVpNZURGc1lqUmFSbVJMYkhoblMzWmllbFV2Q2xwSWIwdFhhSE5GVFVKUmR6QnRZMVpGYlROcVJuWkxaM2hRVGxOVVVWSm5TSFUxTUZKc2MxVkJVak5IVGpOS1NrbElPVVYxSzBORlRYUTNRemxRVkZvS1RrdDVaSGRwTUdrMFZXZHFWSEpPYmsxMGNGQXdVelp5ZG5GRE9XNXhSVWhDT0dSclZYaG1Ua2xETlZsUmR6ZFdSMUI0YzNkMU16VmlZV3BzY2pKamNncENTamc1Y1RWaFFYYzRWMkZZWm14dFJYaGFaVEo1UjFkVVJUY3pVemhuWWsxR2EyTkZkVEJ1WW1GRlNpdE1hMm81YkhkYU5IQlFRVU5CUFQwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBndjV5MTllbHF6M2UxeHV1c3hpYWk1M2FrdDRydGF2Z2wzb2ZnZm11bDhxam91NTJub2F6OXI2dXVuajl2Z3ZjZTh5eGNkNGNsOHcxdHo3dW02ZTUzcmY5YWt0emlxZTZydHY2YXgwaHE2ZDFiM2tqNDV4cGRmM2piaGZ4bmdtbAo=\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSV21Ob2VEVkpXSFpOZEVGV1YyNVVjVzFOTTNGUWVrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVdYZE9la0UxVFVSa1lVZEJPSGxOUkZWNlRVUlplRTVxUVROTlZHdDNUakZ2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVONENpdHJLMU5uVGxSQldGY3ZObFJTUlZCMlRGZENTelUyUjFKM2VDOUxVVU51UTFSVVprdG5heTl1YldoTWJuRkdaVFUwY0Uwck5HcGxORVZqV1VGNVMzQUtaRUV6WjFaYVdsRjVjMHhoUmxJeWJEaEhaeXRQWVVNclpUSklhR3d3ZFZCeU5GZE9lRzg0WkhkR1IwdGFkVU5HVXlzMWRXdDBNVUpsV1hOcVFtWXJSUXAwYkZReFVuZGtlbkpqUWs5b1VIaHhWRE5pZGpkM2NrVmtabVZWT0VWelFVSjVjeXN6TTFoS2NsZE5XalZYWTBaUVRGZ3ZSRFo1VGxkeU5sTnBhRWQ0Q25NNFJ6TmlPSEZYYldnd1ZqTjNaWFphYTJaak4weDZSVFpwYmxKbVIxTTNUU3RZY25OU2NHSnlXV2gyWm5SWmIwUlNaVEZqTHpsMVJUQjNWVUkyUTBzS1YyY3hSa05zZW5saldYcERSMlF3TTNKU2VIbHhMemxNVEZWRlZWQkpWbmxHVERCa1RpdEVhaTk0WmpOQ2J6SkZhbTlIV1c5a0swVmlNWEIwZUZseFFRcFNRbFZ2ZEdOTVdVUlFaRmxrZDJ3M1ZrczFPRmxCTUdNM2EyMVVXWEJRUzJ4dFNYbzNOSFZvYkhRMVVHYzVZMUJUYW1OdVJtbE9LeXRTYkRGUU1VTkJDbVJwVnpjMFZrdG1MMWRSTVdwRWVXMVdOVTFDYm5sck0yaFRNalpZU2xCM2FuZzBTRXhtZDFNNE9IZzBUVVJsT0ZwbmNXUlllVEptY1RWQmFsUkxiMGNLT1U1bFJXODFSMVZIYkZoSlFXeFNORFF4YWl0a1dDOXVNbVE1V0hjNVl5dElNRWhQYkZjMlZFZ3ZTbTUzY210d1QyUk9ja0o2TUV4eGVuUjZhRkEzTlFwWVptOVpMMWRMYTJrdlFuTkNhVk5vZEVWSVpFZHROVEJsUnpCTWVIcGlRMU50V1d0VlpGZ3dXVWgxU2s5alpuQnljMmNyWVV0amFsTktZbHAyY0ZsNENrWllSR1p5ZUVwNVNqUllNMlJETHpoMWEweHBMekpUVFZGNk9HTTJSVWc1UjNOdmVXbDBNRzFHZFdaMVdHaHZVVlEzT0hkR1ExQnZPVkZQWjBaU2VYWUtjVlJpVUV3eWRYQjRjVkpFZHpjcmFIbEZaMHN6TUZCQmJqYzRMMkowVlVjdkszb3lhV1pPYkcxUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWNVprbGFLeTh5TXpCeVowdzRVekZVQ25oRFZHZ3Zaa3hOUXl0M2QwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGSVdrOHpiVTEyVm5GelVYWlFiRlpwUzFKc1REVTBRa0ZLY1hRS1YxRlNOVTlHY0ZBM1ZtNU5Za0prV1RjNWNYcDRkazFYYm0xcllVMXVhVnAwVGxGMWRHUTNjVGhaZVROUGF6UnVPRkYyV1VwalYwOTZVR1V2YWxveFNBb3hVSEE0TUdGcVF6WXpMMFJuUlcxSGJrbDZSRTR4VGtoVldpOU1iVGxxVkdJNWIwSm5abGMxV0ZZemFtVjFRazAzTm1zMFYxcHRZbU4xWVZKTWNuaEhDamxaUlZwd05tSjJaVmt2U1RoUGJVeGxhRkJIWWxCd01qQmlLMGRGZGpsaUwwb3haR0p5VlZoTVlXUlViVkJPWkZodGRVZGpWV3B6Y1Zoak1UVTJTWElLTTBGUE0xTlhabEppV21GelIxcENiVWRtYVU1aVQzTTFaMll2Tm5OdFJtOUZTWHBHTmpWTVFXWnRWell5VG5kV1EycDZkM1JpYUVRM1FsaFNkR2xMVHdwUVpscFhabnB2TUVjM1dIbHJPVE5PV0hJM2RGZDRiaTk1UkVKak9Va3hNek5ZYTJwdE5HTjRUa1lyWkUxR1dTOXBUekJIYW5wUVVWSllNMHMwWW5WNENteHVXWEJWTURSNFlWaFdVMnhhUzBreFdETTNhVGRNYUVGRFVqUkVhMk53T1VGWlNrSkNiRUZJZVV4NGNsZHRZbGRQVURoRmRTdEtaVGRPYzFsdFEzZ0thbTVDVm5CcU9WTmxXQzlKUzNjclFtd3ZXVVJJZDJnd00yRkllV1JyY3psSGNFaEhVbVoyWTNoQ2VUazVPRTFSY1V0R1lqVjBiVU42TDFCbGVqZFpTUXBYWlhONU5IaHpaRFpSWVRSclVpOXNUR0l2Tld0Q05YRnhZMXB0UjA1cFZVWXlTVkEwUVVGbWJYRjNNSEJvVkZOaVYzUjJXVk5hYjFnelowcDNVakpGQ2xwbWNuRk1hVTlzZVZJNFYwMUxRMGhCZVdWQ01ISXdZamhuZDNGemFVeFBNVmxhZW5CbVVXVm9iVWxaYTFObVN6QjBXVlZDVERobVFtNXBNbWcwVlRFS1NWcDRjV2xIZFRJeU5pOUxaRXB2ZDFFMldrTktWREp2VHpkdVlTOWlVMWxrZEhwNk9VWkpkRTVUYkVsVGIyTXpWVE5MWm1KcVlXVk9XVVZUVXpkcFpncFBXWGR5TUZCVmQzTXlWV3QxYVVsTUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2RuczdzczNnd3AtZnZ3aTF3aTcuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3R2YW9idHUKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3R2YW9idHUKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RnYTI2dWdwc3lpX2NsaWFrc3Rlc3R2YW9idHUKICBuYW1lOiBjbGlha3N0ZXN0dmFvYnR1CmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdHZhb2J0dQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RnYTI2dWdwc3lpX2NsaWFrc3Rlc3R2YW9idHUKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJVbk4yUnk5Q09VVm1WSElyTlN0VWIzWk5hbFpLZWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVV1hkT2VrRTFUVVJrWVVaM01IbE9WRUV5VFZSWmQwNTZSVFZOUkdSaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJGTUc5U2QzSnJPWE0wVWxwaFpIVm9VemxZSzJVS1FrY3lNMHhWU0U1aVJuaERPSGx4Wm1GU2JHcDJUbHBUTldGb1prSlBZbUZPWldoNVJrc3hibXhFVkZOWFZrSjJWU3RoV0U1T1dFbEhaR3Q0VjJzdk9BcExlbnBDZVZoSVdIcGlhRUUzY2xZdmRrNUdhR2hpVWxvckx5dFFhREpKT0VkaGRucDVWRlZNTDJwRFNVSkhWazk0U1UxME1qSTJVM2RtYWtoQ0sxVnVDblY0Wlc5YUsyNTVORlpNVGtZdlYwRjBRWFJ5VlhoSU0xZG9Na1JUUjFWTFZuTkJVbXMzWm5WVVlWbHJhM0J6UVVFNVJYVmxkMnRXYUVaQ2RIaGtTRGNLWVV0Tk5pOTRUMDVPWmpjNVVHRm5WazF2U1ZKNVFuVlRhREpKVTBwaFJsZHdNVzQ0YkU1MWNtdGhaMWxVVW5wbGExWjFNM1p0Y1dSTWVHaHBORk40YmdvdlRreFFOVWNyTlRsQ1owMU1aM0ZLVVdGMGRYWkpabTFCY1RReE0zTm5OSEkwY0RCaFkxTnhkVTVPUVhORlZtTk1SRGcwTWxsSEsybzNlazh3ZGxWYUNpdDFTVkF3TUROWU1UQTJSMkpHT1V0bFJqZzFaR3BITkRKQ2RUaENWa1ZDTUVGUlkwNWtaV05HVlVGcVZFZFhka3RzWlRsdVZVTjRla0ZxUVZaNlFYRUtTbGRzY1dwck0yUnhVWFpsUWxJM00zWlBiRVZ1Tms5YVJXVXZNRUZ4YkZsUE1taDVjVzQyUzJKYU5EWm9UbkpOVjBkcFRYQndUbFYxUmtOck9YbFhkd3B4UVRGa1YxbDBVSEJyU1VzeGNrUXdWWFZIVmpobVQzRXdOa2hKYUdoU1UyOVpkVFZtYmxSMk4yMUhXWGswZEhBNVpHRlRiVEZ4ZUVzd2F6QXdNMGx6Q21VeVRtY3ZXVTVCZDBNNVlURXlSaloxWVdoaFFWUkJkRE5OVkZBeVowNDFkbVJ1UldVNGVGaDROV3BHUzNKWGMxcG5hRUpTVTJwNGVYQkhjMlU0ZEhNS1RFSTJOMjQwVTBwR1lWVkxWbVpGY1VsRE9WVTRkemxMZGxsTVZWRjFVMVJMUlROSlFrbENWblJ2VW05M1F6bHRSMHRvZFhGcVYzWjRiWEpOYlhscFVBbzVWbVo2YVhGVllsVmlSVTB4TVdoNVVtMUJUM1ozU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbFJLT0dodU55OWlabE1LZFVGMmVFeFdVRVZLVDBnNU9ITjNURGRFUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZDUzB0TlEybEdTRnAyZDFBM2VXeFVOazVoZVFwRVUyaEpaMU55TjNoSVIzZENNMlpaY21sdGVYWnBlWGRTYjBsemRXeE5MelZ4VjJJdmNGVlRNM1ZWWWxBelNUWk1iVXRHWlcweFpqaFJURkEzZGtwd0NtdDBORXR2WkRkbFJGRnJjMUI1UjFrelZHcFRUbmQzTUVOWVJtbGhOM1oxVGxWWFFUZG9USFIwZFZveWVrWXJRMGxUUzBkSk1sTkpXa0ozTjJ4UFRtd0tRbGcwYVd4dU5HNVdPRTkxTTFnek5qazBaR0V6VlhsUGMzaDBXRFJYVXpVME4yWkhPRGxoVldKRWJTczJMMUpRZUdwRWVEQm5UbkpDTjNjck1tVndPUXBtYzNwWVlreE1abnA0TDB4NFZsWlpNVkl5TUZSS1NrWlJXVTV3ZDNveE1qRXdWVWcyYWpaaGJISkxUV0ZWTUdaRmNXY3hkM0o0YzFjNVNWSllUbU13Q25odFJtbHNiRWh5VjBGR2EySmhhQ3R0Umt0RE9YTnVkR0ZDWm1ZMlJERjRjWEZVYkhZMlYzbGFZMmQxV2xGS1RrVkJVM2RrTXpoSE9FeEdVME5wZWpjS1NERm1lbFJRYXpoRGNUZGxkV0ZzZEVJNGVXRjVXVU5RTVdGRFJWSXdPSFJ5YlM5dWVGTXliM0ZSVVZKalVraDZjVEowTTFkSFZVUnJTa0ZZWTFCVVJ3b3hZWGxUYTJGMWNUTnNZamx6VFRaT2FtZFVTVEk1Tm1Sd1NHZDRWbWd4YlRReE1GVmhjWFZKVlhwNU5qbG1XVEpCY21KcFRrMDVWRFpUUjJkQk1EaFJDa2RZYzJGQ1ZuVmlXaTlLU25Sb1oyeFFWQzl3TkV0VFQycHlNVlJ0YlUxVlNsVk9abU16VFcxUmRsZ3pOa0pPYUdjd2RHeExOUzlETjNnMGQzaEhlVlFLUTA5RFMzaHZSRmR1VjBnNVdrZFBVRGxLVmtkcVlrVkxPRVpoWW1ZNWNFbDNlbUppWVZOSFdTdHBZVGhEWTNKM2NYYzNiVTFrYUhaSVYwdE5MMnBsVFFwSVRHZ3llVUV6VVdKV2FrZE1aV3M0V21OU1ZWZ3lZVVZtT1VVNGVVOHZSak5ZTVRsT2RUQkZaMEk0ZHpVNGNtSnhTMXBCZHpWb2JWTk1hVGcwTmpsdUNsVkhZaXMxUVdKbFdVWlJXSFYxYVRWVWJIRlRNVWMwUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTbmRKUWtGQlMwTkJaMFZCZUU1TFJXTkxOVkJpVDBWWFYyNWliMVYyVmk5dVoxSjBkSGt4UW5wWGVHTlJkazF4YmpKcldsazNlbGRWZFZkdkNsaDNWRzB5YWxodlkyaFRkRm8xVVRBd2JHeFJZakZRYld4NlZGWjVRbTVhVFZad1VDOURjemgzWTJ4NE1UZ3lORkZQTmpGbU4zcFNXVmxYTUZkbWRpOEthalJrYVZCQ2JYSTRPR3N4UXk4MGQybEJVbXhVYzFORVRHUjBkV3R6U0RSNGQyWnNTamR6V0hGSFpuQTRkVVpUZWxKbU1XZE1VVXhoTVUxU09URnZaQXBuTUdoc1EyeGlRVVZhVHpNM2F6SnRTa3BMWWtGQlVGSk1ibk5LUmxsU1VXSmpXRklyTW1scVQzWTRWR3BVV0NzdlZESnZSbFJMUTBWaloySnJiMlJwQ2tWcFYyaFdjV1JhTDBwVVluRTFSMjlIUlRCak0zQkdZblEzTlhGdVV6aFpXWFZGYzFvdmVsTjZLMUoyZFdaUldVUkRORXRwVlVkeVluSjVTRFZuUzNVS1RtUTNTVTlMSzB0a1IyNUZjWEpxVkZGTVFrWllRM2N2VDA1dFFuWnZLemg2ZEV3eFIyWnlhVVE1VGs0eE9XUlBhRzE0WmxOdWFHWlBXRmw0ZFU1bllncDJRVlpTUVdSQlJVaEVXRmh1UWxaQlNUQjRiSEo1Y0ZoMldqRkJjMk4zU1hkR1kzZExhVlp3WVc4MVRqTmhhMHd6WjFWbE9UZDZjRkpLSzJwdFVraDJDamxCUzNCWFJIUnZZM0Z3SzJsdE1tVlBiMVJoZWtab2IycExZVlJXVEdoUmNGQmpiSE5MWjA1WVZtMU1WRFphUTBOMFlYYzVSa3hvYkdaSWVuRjBUMmdLZVVsWlZWVnhSMHgxV0RVd055czFhRzFOZFV4aFpsaFhhM0IwWVhOVGRFcE9UazU1VEVoMGFsbFFNa1JSVFVGMlYzUmthR1Z5Ylc5WFowVjNUR1I2UlFwNk9XOUVaV0l6V25oSWRrMVdPR1ZaZUZOeE1YSkhXVWxSVlZWdk9HTnhVbkpJZGt4aVEzZGxkVFVyUldsU1YyeERiRmg0UzJsQmRsWlFUVkJUY2pKRENqRkZUR3RyZVdoT2VVRlRRVlppWVVWaFRVRjJXbWhwYjJKeGJ6RnlPRnB4ZWtwemIyb3ZWbGc0TkhGc1J6RkhlRVJPWkZsamExcG5SSEk0UTBGM1JVRUtRVkZMUTBGblFqRlVXVFF6V21aMllWSldRa0ZRUlhZNFdGZHdaM0l2ZWk5NFp6VkpjM2RPVG5RMFZUUnRjbVpUUmtwTFluUXhiMmQyTVdkcGVIbDNlQXBEV21aTVpYRXpPR2s1VWk5a1ZEWm9PRnBDVlVGUGRrMUhVM0JCWmxSb2NIVnVhVXREU1Zvck1VbFpRbWx1VVhweWFUaDBlbWd5YVRKcGJ6STNXVzV2Q2podmMxZERZbTA0TlhadVJqbDVURVJoZEhNNGVHcFNVakJ4Wmtab1UwUXhZMjVGYUVkNE9YaE5iekZVTVc1d1ZIcGFLMUZxZG0weE5qWnBhMlk0TVdFS04waEpZbkZrVjFOVFNHNTFhVlptWWxoMVMzTkhlalpuU0dRd2JTOUdZMFZoTUN0dmQyNTViRk15Ukc5MVZVTkNMMjlTU1ZWVU1tMHlVbmxPS3pWSFRBcEZkVVJXU1ZOMFVYbEhlV3BVV0dsbVUzWktXbTFrTjNJeE5ETlRjMEZEYjJaR2IwZE9jVGcyVjNod1YyTllaMDUxU0dzMlNWaEVXV3hHTURaUk5Ia3JDa1YxWkhWYVJtTnlXRFpOUnpaNWQwYzBjMDFNTkhKcVFtWXdUWEF5ZUZOMVQweHRVR2hFYzJoR1NFSndLMUZYZEdwSU1rZDNUMWhJWmpsWU1HZEZkbFlLWkhac1dqVjJXSFEzWVRCRkswczJPWGhUY1dWMVVVZGxSWGt4YjNneVdrSjRXWFpHVGtWalpVNXJWMDFMWTJGdFpGZGtOVk5uUWxoeFJsRkJLMHhNZHdwME0ySlBhMGRzYTNCaVJDOUxlQ3RTZEd4Uk9HOXdjR1ZUYlU1eVVVZDBMMHhTYTA5eWJ6TTFiaXRDUnpVMmEyZFJOVTkxZWxGWGQzZHBWVVUyYms1cUNsWXhWakZtY0hoTE9GbEhZVlIxVjA1clEyRlZhbVFyV1ZCSFdHdE5ka2gxZDIxdVNpdDBUbm8wWW1KbFlXMHhNMjlKVDBORGJqQnljRWxyTWpSamR6Z0thbHA0ZEd4TlZVbERjelJOYzJWemFHUTBkVGxIVFc5b1FTOHpkMlYwWlZSUFdUVjRkWFowZEhONkwydG9ZMWxUUVdGMFVHOUdhbXg1U0hocFoyZE5NQXBZUzAxdVMyeE9TemcwYnpGVE9EaG9TMlV2ZWtNd2JtUnlMMGxPUldSSWRuQjJNSEZJYzJ4eVNEQlVPVlpST1RWSlVVdERRVkZGUVhwVlRFMWtkRTlPQ2xaSmRVUm5aREZNYjBWcFJYVnhTR0ZLWnpCaVptODFWazF0WlhkRmJXSlhTSEpvUjJ4TVRYTlBSMFJoVFhFMmNHWlhTRmxxTDJkSlJ6bG9WRkZIVHk4S00zaHRhRFpGTlZBclMyUkxSSGRhY0VZM09UVnJPREZGTjFSTU1ESm5aekJJYUZCa0szaEJSRmxOWlZZcmIwWTJRMUo2YVdobVlXcHNNbTF0YjFSMlJRb3paR3hzU0RCc1VEZEJlR0pVTVdscmFXNXhXVkJJTVZaUlNreEtaMHQ0YzBOWmFXVjVVMUZ2T0dsMVIzbE9NMkl5TkVablQwaGxOazFFVmtnd2JtdFJDblpCWTBselFUUjBSMWhtYVdwU0wwRkNVbFpCY1ZVMWVsUTFjV3hUTUhOeFVERnNlRUUxTURrM0wyaE9TRE5uTUVWRmRqQnpWRXRxYVdKYVJsSnBRMHdLV0daeFVXbFJjWHBpVEdkWGFrRkJhblpPZVhOdGJYUkJibEZIV1ZOWlRtWjJOelF6VDBsbFJWZEhPUzl4UlRocVFYcEZkVWxCWkdoWlprNTRVR3hIYndwR1ZtMDRZVXMwVkRFM1dYaEVkMHREUVZGRlFUbFliVEpWTVd4b1ozTlBZa1pNVkRjdmVXdFhUa3BrVkhSSFV6ZDJaVFE0TTFoclRGbDNVbmR2UWpGdUNrOTBVRWxoYW5GclpubGxVekJpT0doRWJuZ3ZMMmsyVWxCM01UUndhbEpEVEVSR1dYSnZUV016VGs5WloyTlhUMDA1TDB3eFdVOW5kRTFaWjNKVFdFMEtNbUZ1ZFVJNGMwcE9WVTF1YzI1a1ZtVjJhVm8yVEUxMlRFOTJXa04wYmxCcVdVeGFibHBTZHk4eEt6SnNjbTF2UkRCNFpYUktWVXRPTW5Cbk5rVkJiUXBKT1c5NVMyNU5MMVUzVUZkbmFFaHJXQzlPVW1ObVdGbG1WR2RoYUhjck4xSk5SbVEyVkZGdlFVODJNRkZ5T0N0SVpYZzNOR0pFTVdwMWNqQlpiM3BqQ2tFdmJ6bFhRMVJEZG0wNGVtMDFZelJrVEV0eVlqbHllRzlGVG1kS1ZITjRkblZ4VW1KdFRXOUhRVlZ3WW1kcU1WYzVaR054VlZCdFVtRnZkMk13ZWprS01qVm5aWFp1WnpaUmVEQjJhVTFoUTBSdlVIUllibGxDWWtoVGRtbHZWeXR2VkM4dlVGTnlibFZSUzBOQlVVRjBVbEYzTDAxTk1EZ3hhMEU0ZUdkbVJnbzBMMmxUUTA1NFMwSkNORXRRVnpSQk0yVnNlRkpaYWpNMFdVSXZhbnA1ZW1WdWFteE5TM2hyTkUweVdXZDNWMWQ2Y0VWa05VZEpUek5IU21aRU9XRklDbUZ4TTJ0MmJUaDZUVFpIYlhaWFJEQlNOR0pHUWpSWmJrWkJObXBNY0dKM1NURlRjVzFTTDBoSWNqSXJLMlpTSzJ0dGFWUnhkRVI1WkU0elpXeHdZWFlLTkhSSVNXOURORFU1UjNaaEt6TkdkaXR0TDBOc01GTkZibU5OV0dKWlozbFZVRTAzU0dWTk9XVkVNREprZDBaNldFZDZiM1ZLWVN0UldHSnFSRll4V1FvdmNETlRjbWwyTVdOM2FEbDZjbGRVTW5aSFZuUTFRWEo0U21kMVUyVkhPVXRVUVhCUWNVOU5OMHBQWXl0VFVXdFlWRlJQUlV0T2MwdE1WSG8xU1RWS0NqZG9abUUzVEZReFJrWTFheXRFTmxvMGFEUnhTMGhXV0c1eFdXcExOVUVyZVU5cFNYZEdkR2xsZEdoSVlrSnNTVTU0TjBWMFpFZDVWVGhaTHl0Q1UyTUtVVXQ0TVVGdlNVSkJSMUEwVmpOeFIxVnBTSGhETXpGYVdEWTVRWGxzZUUxeVRHZDNkR2Q2V25Nd2RqSXJaRFIyWkhKaFpXZDFXVUZVWjFOR1RWZDZaZ3BpZG0xbmRuaFBjRkJIT0VkQkx6Qk1kbGhFYVc4emFHWXJSaTlLTkdJeFJrcDZlbWxsWkVaRFpWUTNVbEp0WlZselRVbFVVRTlSUVZGdlNrWXJPVUZJQ2sweWJVcEZMMVJ4ZG1KT05VWmxUbFJuWVdKaWIxb3haVUp6V1ZsTFFsTTBjRU5IY1VwdWJHdG1jMVpKVmxWeVVVNW1jMlk1VDJoM0sycEZlbXRxZWtNS1duSXJLMFJoV0U0NFFVNWlVR1pzZUVkamVXSmhXV0pOZDFSUmVVYzBRMVowYVM5bmRIRnNNVWc1WVVGUVQwVm9ZWEp0WmpaQ1NuVnVVVVZEY0RWVWNRcHpUR1pUTVVKcmFXdHdUVkpPV1c5NFNtcDZSR0ZNVkRWNmNGTkpTMVpJZFN0RWNIQjROVXhLYlVkRlR6RXZOMVJIY25jMlVrMUNhbkZXUjJ0dlVWZHZDa2w1TW5WMWJGTjZRV0kyVVdwSEwyYzNXVk5oYURGSloxRkNRbTVKY1VWRFoyZEZRVTVSVTBORlJURkVRVk5tTVRSbE1tWmlWVEprYkhreFN5dGlLMjBLUXl0d09UUkdkMnQwTmxCYWVqQlZWSGhQZWpkMU9VaFFVVkF4S3pkUFlYTTBTSEZaYldwQmFIRkRWakJLVnpCUFFUTmFWUzlWY3k4clVYaDVLMHhKZWdwS1kwVmpXVVZ6U1hCRkswaERkazUyVkZvNFVpODNaSEphTTBjelpsbFlRblp2UW5FM1MxWjNjbTVWT0hNcldUSjVjbkk1TnpKSmRYaFBRVlV6TDFoQ0NrbHJOSFJ5UmtKYVdrdDNhbEk0UVdoaVVHVmxRMko2VkZCcWVrbzNNakF4YTFORVVYTkxRbGh5UkdaRE1VWmlRazlwVUU1aFNFUlpaVUZQVFU4ek4xWUtNM0JaVEZaTE1DdDRUbmgwTlVZNFJXSnJjRWRWUnpJMVVWSlpVbGxYWjJKd1JUUjZMM1p2TUcxYVRYaG5ZamhMY2pCdWIzUlpRMk5IYm1GaVZIcGxVUXBxVEhWeFV5dHhTVUpWVjFvM2VIaG5Xa1EyYWtaeVkxY3ZORmRYWWtSMWNtUXhkVGx6YW10UFZIUTFkeXRCU0hOelQzUnNNMDlEWTBKM1BUMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogdWg3NXEydzVrNzJzZTU0cjVkM2NoNXJib2duOXVrajk0OGs4NXA5cXAyeW92djcybmdvajUzbnN3d3VvNjFzY21sa3RjbmI3eWc5NGJyaDdla3Zvc283eHpkeGkycXFvNXhtMW1leGx2ZjRvN3o3ZGo4ZGxoaTV4amp6dmMycWwK\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '13084' + - '13072' content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:41 GMT + - Fri, 16 Jun 2023 08:16:08 GMT expires: - '-1' pragma: @@ -727,34 +588,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '1036' + - '1037' content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:41 GMT + - Fri, 16 Jun 2023 08:16:10 GMT expires: - '-1' pragma: @@ -796,36 +657,37 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"\ + enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\"\ + ,\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n\ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e5ab610-1340-461f-b0c4-16e41aebd69f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8172bd25-b527-4627-933e-0a154d4e7c95?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1068' + - '1069' content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:45 GMT + - Fri, 16 Jun 2023 08:16:17 GMT expires: - '-1' pragma: @@ -837,7 +699,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -855,254 +717,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e5ab610-1340-461f-b0c4-16e41aebd69f?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"10b65a0e-4013-1f46-b0c4-16e41aebd69f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:25:45.1214081Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:26:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e5ab610-1340-461f-b0c4-16e41aebd69f?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"10b65a0e-4013-1f46-b0c4-16e41aebd69f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:25:45.1214081Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:26:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e5ab610-1340-461f-b0c4-16e41aebd69f?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"10b65a0e-4013-1f46-b0c4-16e41aebd69f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:25:45.1214081Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:27:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e5ab610-1340-461f-b0c4-16e41aebd69f?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"10b65a0e-4013-1f46-b0c4-16e41aebd69f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:25:45.1214081Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:27:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e5ab610-1340-461f-b0c4-16e41aebd69f?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"10b65a0e-4013-1f46-b0c4-16e41aebd69f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:25:45.1214081Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:28:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e5ab610-1340-461f-b0c4-16e41aebd69f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8172bd25-b527-4627-933e-0a154d4e7c95?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"10b65a0e-4013-1f46-b0c4-16e41aebd69f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:25:45.1214081Z\"\n }" + string: "{\n \"name\": \"25bd7281-27b5-2746-933e-0a154d4e7c95\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T08:16:17.6177408Z\"\n }" headers: cache-control: - no-cache @@ -1111,7 +733,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:28:44 GMT + - Fri, 16 Jun 2023 08:16:17 GMT expires: - '-1' pragma: @@ -1143,15 +765,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/0e5ab610-1340-461f-b0c4-16e41aebd69f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8172bd25-b527-4627-933e-0a154d4e7c95?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"10b65a0e-4013-1f46-b0c4-16e41aebd69f\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:25:45.1214081Z\",\n \"endTime\": - \"2023-03-15T11:28:53.6165828Z\"\n }" + string: "{\n \"name\": \"25bd7281-27b5-2746-933e-0a154d4e7c95\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T08:16:17.6177408Z\",\n \"\ + endTime\": \"2023-06-16T08:19:29.2068931Z\"\n }" headers: cache-control: - no-cache @@ -1160,7 +782,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:29:15 GMT + - Fri, 16 Jun 2023 08:52:03 GMT expires: - '-1' pragma: @@ -1192,34 +814,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"\ + enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\"\ + ,\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n\ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1069' + - '1070' content-type: - application/json date: - - Wed, 15 Mar 2023 11:29:15 GMT + - Fri, 16 Jun 2023 08:52:04 GMT expires: - '-1' pragma: @@ -1251,48 +874,48 @@ interactions: ParameterSetName: - --resource-group --cluster-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\": - \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n - \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\"\ + : {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2182' + - '2184' content-type: - application/json date: - - Wed, 15 Mar 2023 11:29:16 GMT + - Fri, 16 Jun 2023 08:52:06 GMT expires: - '-1' pragma: @@ -1324,48 +947,48 @@ interactions: ParameterSetName: - --resource-group --cluster-name -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\": - \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n - \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\"\ + : {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2182' + - '2184' content-type: - application/json date: - - Wed, 15 Mar 2023 11:29:16 GMT + - Fri, 16 Jun 2023 08:52:06 GMT expires: - '-1' pragma: @@ -1397,48 +1020,48 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\": - \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n - \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\"\ + : {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2182' + - '2184' content-type: - application/json date: - - Wed, 15 Mar 2023 11:29:17 GMT + - Fri, 16 Jun 2023 08:52:08 GMT expires: - '-1' pragma: @@ -1480,36 +1103,37 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3\",\n - \ \"name\": \"nodepool3\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3\"\ + ,\n \"name\": \"nodepool3\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b4bb0269-9549-48c4-9ace-7307495f28cb?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7eea2829-fde5-43e8-9c46-9c7d84ffb906?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1070' + - '1071' content-type: - application/json date: - - Wed, 15 Mar 2023 11:29:21 GMT + - Fri, 16 Jun 2023 08:52:13 GMT expires: - '-1' pragma: @@ -1521,7 +1145,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 201 message: Created @@ -1539,110 +1163,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b4bb0269-9549-48c4-9ace-7307495f28cb?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"6902bbb4-4995-c448-9ace-7307495f28cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:29:21.3408266Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:29:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags --mode - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b4bb0269-9549-48c4-9ace-7307495f28cb?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"6902bbb4-4995-c448-9ace-7307495f28cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:29:21.3408266Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:30:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - ParameterSetName: - - --resource-group --cluster-name --name --labels --node-count --tags --mode - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b4bb0269-9549-48c4-9ace-7307495f28cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7eea2829-fde5-43e8-9c46-9c7d84ffb906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6902bbb4-4995-c448-9ace-7307495f28cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:29:21.3408266Z\"\n }" + string: "{\n \"name\": \"2928ea7e-e5fd-e843-9c46-9c7d84ffb906\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T08:52:14.2010541Z\"\n }" headers: cache-control: - no-cache @@ -1651,7 +1179,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:30:50 GMT + - Fri, 16 Jun 2023 08:52:13 GMT expires: - '-1' pragma: @@ -1683,14 +1211,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b4bb0269-9549-48c4-9ace-7307495f28cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7eea2829-fde5-43e8-9c46-9c7d84ffb906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6902bbb4-4995-c448-9ace-7307495f28cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:29:21.3408266Z\"\n }" + string: "{\n \"name\": \"2928ea7e-e5fd-e843-9c46-9c7d84ffb906\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T08:52:14.2010541Z\"\n }" headers: cache-control: - no-cache @@ -1699,7 +1227,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:20 GMT + - Fri, 16 Jun 2023 08:52:43 GMT expires: - '-1' pragma: @@ -1731,15 +1259,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b4bb0269-9549-48c4-9ace-7307495f28cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7eea2829-fde5-43e8-9c46-9c7d84ffb906?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6902bbb4-4995-c448-9ace-7307495f28cb\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:29:21.3408266Z\",\n \"endTime\": - \"2023-03-15T11:31:31.5449745Z\"\n }" + string: "{\n \"name\": \"2928ea7e-e5fd-e843-9c46-9c7d84ffb906\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T08:52:14.2010541Z\",\n \"\ + endTime\": \"2023-06-16T08:55:25.6412306Z\"\n }" headers: cache-control: - no-cache @@ -1748,7 +1276,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:51 GMT + - Fri, 16 Jun 2023 09:09:37 GMT expires: - '-1' pragma: @@ -1780,34 +1308,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels --node-count --tags --mode User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3\",\n - \ \"name\": \"nodepool3\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3\"\ + ,\n \"name\": \"nodepool3\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1071' + - '1072' content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:52 GMT + - Fri, 16 Jun 2023 09:09:38 GMT expires: - '-1' pragma: @@ -1839,34 +1368,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3\",\n - \ \"name\": \"nodepool3\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3\"\ + ,\n \"name\": \"nodepool3\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1071' + - '1072' content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:52 GMT + - Fri, 16 Jun 2023 10:19:12 GMT expires: - '-1' pragma: @@ -1898,62 +1428,62 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\": - \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n - \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3\",\n - \ \"name\": \"nodepool3\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\": - \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n - \ },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\"\ + : {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n },\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool3\"\ + ,\n \"name\": \"nodepool3\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\"\ + : {\n \"label1\": \"value1\"\n },\n \"mode\": \"System\",\n \ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n\ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '3330' + - '3333' content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:53 GMT + - Fri, 16 Jun 2023 10:19:12 GMT expires: - '-1' pragma: @@ -1987,8 +1517,8 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 response: @@ -1996,17 +1526,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4d6c4436-e808-45be-8d18-ce5c5498883e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/44d98ea7-7d78-47ba-962a-78cbc8bb170d?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:31:53 GMT + - Fri, 16 Jun 2023 10:19:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/4d6c4436-e808-45be-8d18-ce5c5498883e?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/44d98ea7-7d78-47ba-962a-78cbc8bb170d?api-version=2016-03-30 pragma: - no-cache server: @@ -2016,7 +1546,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -2034,34 +1564,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --mode User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"\ + enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\"\ + ,\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n\ + \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1069' + - '1070' content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:54 GMT + - Fri, 16 Jun 2023 10:19:17 GMT expires: - '-1' pragma: @@ -2084,7 +1615,7 @@ interactions: 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "scaleDownMode": "Delete", "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "tags": {"key1": "value1"}, "nodeLabels": {"label1": "value1"}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' headers: @@ -2103,36 +1634,37 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --mode User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fc2c1ced-9282-4a81-8232-b0fdd37c3e4f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20637c65-b9f7-4073-a4cd-fff062c36f4e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1070' + - '1071' content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:57 GMT + - Fri, 16 Jun 2023 10:19:21 GMT expires: - '-1' pragma: @@ -2148,7 +1680,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -2166,24 +1698,72 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --mode User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fc2c1ced-9282-4a81-8232-b0fdd37c3e4f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20637c65-b9f7-4073-a4cd-fff062c36f4e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ed1c2cfc-8292-814a-8232-b0fdd37c3e4f\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:31:57.5293507Z\",\n \"endTime\": - \"2023-03-15T11:32:04.7014382Z\"\n }" + string: "{\n \"name\": \"657c6320-f7b9-7340-a4cd-fff062c36f4e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T10:19:22.1042503Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 10:19:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --mode + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/20637c65-b9f7-4073-a4cd-fff062c36f4e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"657c6320-f7b9-7340-a4cd-fff062c36f4e\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T10:19:22.1042503Z\",\n \"\ + endTime\": \"2023-06-16T10:19:32.843575Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' content-type: - application/json date: - - Wed, 15 Mar 2023 11:32:26 GMT + - Fri, 16 Jun 2023 10:19:52 GMT expires: - '-1' pragma: @@ -2215,34 +1795,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --mode User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1071' + - '1072' content-type: - application/json date: - - Wed, 15 Mar 2023 11:32:27 GMT + - Fri, 16 Jun 2023 10:19:53 GMT expires: - '-1' pragma: @@ -2274,34 +1855,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\",\n - \ \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"tags\": {\n \"key1\": \"value1\"\n },\n \"nodeLabels\": - {\n \"label1\": \"value1\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": - false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool2\"\ + ,\n \"name\": \"nodepool2\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"tags\": {\n \"key1\"\ + : \"value1\"\n },\n \"nodeLabels\": {\n \"label1\": \"value1\"\n \ + \ },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1071' + - '1072' content-type: - application/json date: - - Wed, 15 Mar 2023 11:32:28 GMT + - Fri, 16 Jun 2023 10:19:54 GMT expires: - '-1' pragma: @@ -2335,8 +1917,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -2344,17 +1926,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4a553d33-bf6f-4928-aef2-c227dbe440bb?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/05ef745c-10ec-46e9-a725-82f31e8babc4?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:32:28 GMT + - Fri, 16 Jun 2023 10:20:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/4a553d33-bf6f-4928-aef2-c227dbe440bb?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/05ef745c-10ec-46e9-a725-82f31e8babc4?api-version=2016-03-30 pragma: - no-cache server: @@ -2364,7 +1946,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_update_label_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_update_label_msi.yaml old mode 100755 new mode 100644 index 5003bb6acd0..975ccc09e64 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_update_label_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_update_label_msi.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:22:55 GMT + - Fri, 16 Jun 2023 15:25:18 GMT expires: - '-1' pragma: @@ -53,12 +53,11 @@ interactions: "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -69,67 +68,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1440' + - '1732' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-f2m1sst7.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-f2m1sst7.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-u6mgj2i5.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-u6mgj2i5.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e65257d9-f92f-43db-ace5-532cce07cba7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c919e762-6a9d-48e7-ae71-ec9230c16499?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3211' + - '3539' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:58 GMT + - Fri, 16 Jun 2023 15:25:25 GMT expires: - '-1' pragma: @@ -141,7 +141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 201 message: Created @@ -159,14 +159,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e65257d9-f92f-43db-ace5-532cce07cba7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c919e762-6a9d-48e7-ae71-ec9230c16499?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d95752e6-2ff9-db43-ace5-532cce07cba7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:59.2771761Z\"\n }" + string: "{\n \"name\": \"62e719c9-9d6a-e748-ae71-ec9230c16499\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:25:26.2424199Z\"\n }" headers: cache-control: - no-cache @@ -175,7 +175,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:23:28 GMT + - Fri, 16 Jun 2023 15:25:26 GMT expires: - '-1' pragma: @@ -207,14 +207,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e65257d9-f92f-43db-ace5-532cce07cba7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c919e762-6a9d-48e7-ae71-ec9230c16499?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d95752e6-2ff9-db43-ace5-532cce07cba7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:59.2771761Z\"\n }" + string: "{\n \"name\": \"62e719c9-9d6a-e748-ae71-ec9230c16499\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:25:26.2424199Z\"\n }" headers: cache-control: - no-cache @@ -223,7 +223,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:23:59 GMT + - Fri, 16 Jun 2023 15:25:57 GMT expires: - '-1' pragma: @@ -255,14 +255,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e65257d9-f92f-43db-ace5-532cce07cba7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c919e762-6a9d-48e7-ae71-ec9230c16499?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d95752e6-2ff9-db43-ace5-532cce07cba7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:59.2771761Z\"\n }" + string: "{\n \"name\": \"62e719c9-9d6a-e748-ae71-ec9230c16499\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:25:26.2424199Z\"\n }" headers: cache-control: - no-cache @@ -271,7 +271,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:29 GMT + - Fri, 16 Jun 2023 15:26:27 GMT expires: - '-1' pragma: @@ -303,14 +303,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e65257d9-f92f-43db-ace5-532cce07cba7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c919e762-6a9d-48e7-ae71-ec9230c16499?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d95752e6-2ff9-db43-ace5-532cce07cba7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:59.2771761Z\"\n }" + string: "{\n \"name\": \"62e719c9-9d6a-e748-ae71-ec9230c16499\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:25:26.2424199Z\"\n }" headers: cache-control: - no-cache @@ -319,7 +319,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:59 GMT + - Fri, 16 Jun 2023 15:26:57 GMT expires: - '-1' pragma: @@ -351,14 +351,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e65257d9-f92f-43db-ace5-532cce07cba7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c919e762-6a9d-48e7-ae71-ec9230c16499?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d95752e6-2ff9-db43-ace5-532cce07cba7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:59.2771761Z\"\n }" + string: "{\n \"name\": \"62e719c9-9d6a-e748-ae71-ec9230c16499\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:25:26.2424199Z\"\n }" headers: cache-control: - no-cache @@ -367,7 +367,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:29 GMT + - Fri, 16 Jun 2023 15:27:27 GMT expires: - '-1' pragma: @@ -399,14 +399,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e65257d9-f92f-43db-ace5-532cce07cba7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c919e762-6a9d-48e7-ae71-ec9230c16499?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d95752e6-2ff9-db43-ace5-532cce07cba7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:59.2771761Z\"\n }" + string: "{\n \"name\": \"62e719c9-9d6a-e748-ae71-ec9230c16499\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:25:26.2424199Z\"\n }" headers: cache-control: - no-cache @@ -415,7 +415,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:59 GMT + - Fri, 16 Jun 2023 15:27:57 GMT expires: - '-1' pragma: @@ -447,15 +447,63 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e65257d9-f92f-43db-ace5-532cce07cba7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c919e762-6a9d-48e7-ae71-ec9230c16499?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d95752e6-2ff9-db43-ace5-532cce07cba7\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:22:59.2771761Z\",\n \"endTime\": - \"2023-03-15T11:26:12.8596208Z\"\n }" + string: "{\n \"name\": \"62e719c9-9d6a-e748-ae71-ec9230c16499\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:25:26.2424199Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 15:28:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c919e762-6a9d-48e7-ae71-ec9230c16499?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"62e719c9-9d6a-e748-ae71-ec9230c16499\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T15:25:26.2424199Z\",\n \"\ + endTime\": \"2023-06-16T15:28:33.0768672Z\"\n }" headers: cache-control: - no-cache @@ -464,7 +512,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:29 GMT + - Fri, 16 Jun 2023 15:28:57 GMT expires: - '-1' pragma: @@ -496,64 +544,65 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-f2m1sst7.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-f2m1sst7.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/47e9a9ae-3863-4993-8cc7-c2ffae92a5fd\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-u6mgj2i5.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-u6mgj2i5.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/1fb56e68-9f57-4ea4-a070-51774dd25156\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3864' + - '4192' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:30 GMT + - Fri, 16 Jun 2023 15:28:58 GMT expires: - '-1' pragma: @@ -585,64 +634,65 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-f2m1sst7.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-f2m1sst7.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/47e9a9ae-3863-4993-8cc7-c2ffae92a5fd\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-u6mgj2i5.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-u6mgj2i5.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/1fb56e68-9f57-4ea4-a070-51774dd25156\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3864' + - '4192' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:30 GMT + - Fri, 16 Jun 2023 15:28:59 GMT expires: - '-1' pragma: @@ -676,15 +726,15 @@ interactions: ParameterSetName: - -g -n --file User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSWkdwRWRqSTBkV05TTURsUlEyWTFZa2hqV1ZWU1JFRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCZWsxVVZYaE5WRVY2VFhwQ1lVZEJPSGxOUkZWNlRVUk5lRTVVUlhoTmFrMTZUVVp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVSbkNrSjNTMnRxYzNwalMyWnJkV0ZIYXpKSFVWWjBSamhFYmpoSmJpOW1VMUowY3pOQ09YWklaVzVJZWxKeFYwVlljRzVCVlhKMlEzZFdVa3haVkVoaFdEZ0tZa0ZOTld3d1pYZHZOMFpYWlRZeU1XaEJjSGRhTkd0dk9XRkhjRk5HVlV4WVNuZFRXVEJvWW1KVFpqWTNhbmx4UjFGbFIxb3JhRE00UkV4eGFYZHlkd295UmpSck0wUkNjRmhzUm5OU1VGTm1TMGwzU0VReWFFUXhSbVl4T1VsVmEzUkZNRTVoUzBaQlJFTnhaRFpqUzJsVmRXeDRlbmRJY2pkVk4wbE5iSE5NQ2pCVVFubEhTMUJ0VHl0MWRWQlFNREJSTlRSdmVUSnNNWFZwYVhoT2VERkdRekZGTlVaeVduSjBhMEpUZUVSUVltNUhkbGN4Y1RsTlMxaE5UVU5XTlhjS00yeFJTVFJwZVc1WllsUkNUbUpVVnpkWWJVTXlRVkpPTlhsVU9UVm9jWE0yZEhZMU1XSlNTSFF3UkdWYU1GRkNiM1ZtZWxGMVZFSldjSGt2ZWpnMVZncHFaRkl4VkVGcU9VcDFhWGROZG01TFNqTnlSMGRWY1hKNFIyTklkbkJPYmxObGFGVXJia2h3UkhFNVoxZG1OVFJ5VkdoSWRrZFBhbFF5VEdwdWQyMVdDbXN4VEVOVWJYSm5MMEZuUm05ck1qWXJXVzVEUm1wRWJFSmxla3BrVEdkNlRHWklXRnBJV2paSlRUSlRiRzlMWVdWeVpESXdiV2hPU3k5UmIzZFNWMFFLVFUxbFlVTldOMDVrWjNwM1JrdG1XV3BNYm5CUlVqVjFNSEpIUWs5NVNYUnhUemR4UjB4QmVXMTNSWE5PSzBrMU5qaHlUVWhJUWk5WlJqaGhNelUyU0FwT09VMUtjazVHUkV4dEwyaFJUa0pJTVZsSldEYzBZakJMY2xncldsWm5jMDh6ZDFWU1pYRnhMemxOYUZwWVR5dFlSVEkwVFd4SVVXcEtSVTUxWlRGWkNtbzNXVzFoVFZsdWREQkNZVFEyU2l0ck56QlZUVlJEZVZWU01teHNSVmRzTVRCbVRHcFRaR3RNV0cxQ2IwTkNORGxDYzNodlpYVkxWWHBDTm1GT1kwY0tWMWRTTjJwNVpuRTNRMVZoZFVsV2JreFdORXQwTkRWSVowVnFSMjVyU2k5SmJsRlVaVzh3Y1VoM1NVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZVMGJXVnNTVEJVV1VoQ05XbEljMVZOQ2toeVFVZ3ZWa1ozVW14UmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGSFIxTXpUek41Y25kTFVXSlhiMmQzUjFCUlQzTkhVMUpYUjNVS2QyZDRVSEIyYTBkMlRTOVNVekJsZURsbU5sUTBiVk5CU2pSSVoydDRXazB4YURndmR6ZG9URXhVU2t0eFJGbHJPV1pvTVhVeWJXZFVaVzFXVVVkcmNncG5lRmMxTkc5M05tZFZORTFWYlRremNUZHhiakpwT0hkTmIyWmFNVGR3VGtwS04zRlNjRWRuVTFOV01XSmFUbGRqUzAxNGFpOXBRM1ZXVEdKTlUwWm9DbFl5YzBjelNFRjVZV3h6T1hwM1JHWTVPVlYwU2l0U1UyRndTVWxIUkRreU9VWmhiRzR5VjBoa2EwWm5aVzB3Um5sdFJHWmtVSFZYWkhkTlowY3dhMklLU0VoTGFFNUlkSGx3T1ZCRmMxbHpkbUoxV0VwRGQzbHlUV2sxVG05YVFqRnNOVmx3VjJFeWJ6WXhTalpUY2tkMVNFUTFkVkl6VWpSbU1tTTJRMjV3YVFwR2VYaGxibGh4ZFRaUlVVdFBRWHBMVjBWdmVsQlVRM2hITjNodWRIbzJRemN3UzNCV2EyUndSWGw2YmswNFpVSkVRMUl4T1VWQldqUjZNa1poYUhwcUNtaDBPVnBoTlc1bU1XSklZMWhTZFZrMmFUbFBWbEU0TjNwS1UzUk1NRVp4YmpsTlJuUnliVXBFU1ZGNU1VaDZTRWtyUVRVNGFHbDNlVVJ2VUV4SlIzWUtPRk5wVG5jdmJrMXhUemxaTkVWNFRtWlBTemcxUm1abmJVNVFlRGQwT0hoU1FXRTRTVEpESzBwNWMxcHZURlZNYVU1TlVEWTViVGNyWVVodFMxcEJkUXBpYTFScllWWTVZblZ5WVhST2VtUm9NbVJQVEZNNFdHbzBkSE41WlhkU01VdGpTa1F5SzNkemIzWXZOa0ZZY1hwb1FuZDBSR3QxYVZkek5uRjFTRUYwQ2tGcldIVnZkSFF4V25GNk5XTTBOVVU1SzFacVZEQldNWEZpU2swME9USllObXhYV0hjd1YyWk5LM1lyUVdrdlduTTBaVTUxWldzeWFtSlVaSFEzVDBnS2FrTTJWVzF3TDNkblVGVXZUMnd2ZDB4TlYwdEVORWRVTjNFNFptWm5RaTlSWVRsek9FdElTbUpsUm5WSVVXRkNPSGc0VDA1dVptTlFNSEJRTDIxUk1RcGpUVEpRZHpONlZsZFZPR2h6VEZGWUNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc3hkcGhzNWQtZjJtMXNzdDcuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3R3YnA0Mm8KY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3R3YnA0Mm8KICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3RxeWtwMjdoZG9hX2NsaWFrc3Rlc3R3YnA0Mm8KICBuYW1lOiBjbGlha3N0ZXN0d2JwNDJvCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdHdicDQybwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3RxeWtwMjdoZG9hX2NsaWFrc3Rlc3R3YnA0Mm8KICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJTWEpYUzJWalltVTBSVUZMV0ZSWldXNWhSVUZpZWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJlazFVVlhoTlZFVjZUWHBDWVVaM01IbE9WRUY2VFZSVmVFMVVTWHBOZWtKaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJrYkdnelpXcFlhbmtyVm5vdldFSTNRMUpuWTFBS2RYWnhOemxvY1VGVE5YZDBaR1YwVVZWdFRYRlZkRFY0U1VkUVppOTVWRmhMSzBVeE9HTlZXVGRoTVdONVJVeDNkVTlrU2pKT2F6WlVPVXdyY25aT1N3cFRTVFZ5VTIxMWRISnZWM2RYVG0xVVNubGxaQzlOVGxsSWExRk9ZbEJuUnpCVWVrUjRkblpVVEdoR05uWjJkUzk2TTBaeFlXbzFlRTV2VjNscGNGWkVDamhqTDJkYVl6STVaVlpRVWt0bk5rYzJjMWcxVFdOU1FsTmpPV2h4UmpWTmVISk1hRnBJZURKYWRUSlpjVkZYYW5Ob1F6ZDBVRlIyUVdaamIyYzFNRWtLUlRKbUwyVk1iaTh2ZEZCeE5VNVZWV1YxVlZWSVNsRk5UbGxEY0U4dldURmFhMEZwVldwMU4xSkVkMUZUYlZwa1Ywd3ZkSGRNTWtOVldIUnFZekY0UVFwU1dHMXBiemhzT0ZCMk1rYzNWalZrZWt4SlNtbHBNR1J5TTJKWUsxa3dNVzFVZERsRFdHZFBRa2xrVVZwT1ZIRjJhbFJvYkVOVFNsZHhWVVJDVUhCRkNuRktVMVJhT1dOQlYyZ3ljR0ZGWWt0eU5YbFRSMGxLWjBwMVJtUkZTeTlVU20wM1RIaG1lSEpIVEZaS2QxZEJVSGhzVFdSUVZWQm9NVFpYUlZwcU0wa0tWSEV4VTJsQ1dFNTFhMGRhZDNkcFJHcEVPSGhXZG1GWVkzaHhaRkJIU0cweVUxTmpWMU53TmxodWVtMWhNRklyZURKRGN6SlRaamRhU21GRmIwMXROQXBKUTNwMFpVRnpOMEV4UlVoQmNrbGphRnBqUWtweUwwaHFhVmRpTVZZNGREUmFOM1JsSzJaMVUxSlpkVlJ4YWtjeFZIQkpNMVJzTlhkWmNqQldSbTVRQ2tKMldVTk5RV1pGT1ZNdlRuTnhWa2h2SzBKRmRFSllSbEp6Y0VaSVlsSkdXSG94VVZBMWQwUk1PVGRqZFZodVFUVXZiR2wzZW5VeFNIVlZORVJIUXpnS1FYSnRlVGhMVTBGdFRsRkpTelozUVRST1RIaEJSWGxoTURWTGVVWktRWFZUZDJ0VGNHUnlOR3hMWWxkMWFrRXhlRmRtU1ZVclJsUTRkRTB3YTAxRGF3cEtOMHd5TTBneGNuVTRhazFtTlc5MmRXaG5OMWhSU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbFJwV2paVmFsSk9aMk1LU0cxSlpYaFJkMlZ6UVdZNVZWaENSMVpFUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUYzY2t0R1NVUmxXamR1YWpaRVRsbFZhVUpPTVFwcVMwSklXa3htV0dORGN5dFRObnBKYXpWak5YWnlTSFZTVEVWQ2FGbHNWMnBIVGtoMFFrTXpaRzFuZW1jNVJGTnZkR3BQVkZvMmNWSjVLMUZrZEM5SENtNUNkVGhTZDA5bEsyMVNTVzlDZWxwQk5XRnNPSEpXYzI5VVYwcHBZak40SzFFMmMxQTNZbGxsUW1sM2JtTlljMVJFZVcxck1FUm5jM1ozT1VWTWRXSUtkbUp4TmtjM1NrdFRhSFpMWjA1alNXOVJiVGxXTTFSNGVIQTJTMG8xTlRCS2J6SlZSMU5QVUhFemJHTjVPVzlZUVcxdGRXRnpSRWMxTTNKTGRXMUlOQXB3ZW5OR1YwcHVUMUYxWWpKT1ZIWjBVSFY0VFU0M2NVSnNTa2swZEZwUWFFZDFaa1JuU0d3emJXdE1jRU5oV0VGWmNVOXFRbVUzWTFsUVVrbEthbk12Q2xoMGFuWlFiMVpqVEV0bk1uVXdlVkpwVlROb1VWTmxRekkxUVUwMmVuSkxaMVpZTmtaRFJrcDRhbmg2VWtZNWJscHlObUpZVjNFd2J6RlBWbGwxVkZRS00xSlBWbTlCU2xnMFIydzNhblU1YTJKNFNETklSa2QxUkZabU1tcEpWalJHTDFsNlEyMTZXQzlaWVVKalUyeDFMMGh2UWxwTGFWbzNlamRsSzJSS1FRcFBkSEpNU210S1lVMTVkbTFFT1hkRFZrTTFPSGhQYmt4UlNWVjRjbk53UVdKU2EwZG5jV1YxTjJ3ek1YQk9VVFJ6VkdJNFpsaDBlSGN3WTJoMFkxSm1DalkyYlZCNFFURkRZVWx0VXpSSFMwSnJXSEZtWmtKc1kwbG1XVlJCV25CdE5YazBUVWxVY0drMWNqSlpPRVZNUVZKTFpIQTNXblZPWVhWRWRYbHRjVEFLVWpaWVl6VldjR3AzWVZVeE1uVjNWMnRHVlZCVVl5OVBkRmxRYnpCdE5VbDZjelZwTUhJMGJqUnNUSFprZG5KU05FdFpjWFZ1UkhkRldTODRaa0ppUndwSE1pdFZZVkJHTVZkbGFWWlJVRTFEVERsM1NFTmxWR1k0TWxkelRrZEVTMmQ1VjNGclVGQkZaVVpZYzBaR01IazNSMnh5ZGxOVlRsWjVkVll4Tmxac0NrcGpkbkpaV25SemR6SlpWR016V21rMVluSlNhblpqUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMmRKUWtGQlMwTkJaMFZCTTFwWlpETnZNVFE0ZG14akx6RjNaWGRyV1VoRU4zSTJkUzlaWVdkRmRXTk1XRmh5VlVaS2FrdHNUR1ZqVTBKcUNqTXZPR3N4ZVhab1RtWklSa2RQTW5SWVRXaERPRXhxYmxOa2FscFBheTlUTDNFM2VsTnJhVTloTUhCeWNtRTJSbk5HYWxwcmVXTnVibVo2UkZkQ05VVUtSRmQ2TkVKMFJUaDNPR0kzTUhrMFVtVnlOemQyT0RsNFlXMXZLMk5VWVVaemIzRldVUzlJVURSSFdFNTJXR3hVTUZOdlQyaDFja1lyVkVoRlVWVnVVQXBaWVdobFZFMWhlVFJYVWpoa2JXSjBiVXRyUm04M1NWRjFOMVF3TjNkSU0wdEpUMlJEUWs1dUx6TnBOUzh2TjFRMmRWUldSa2h5YkVaQ2VWVkVSRmRCQ25GVWRqSk9WMXBCU1d4Sk4zVXdVVGhGUlhCdFdGWnBMemRqUXpsbmJFWTNXVE5PWTFGRlZqVnZjVkJLWmtRM09XaDFNV1ZZWTNsNVExbHZkRWhoT1RJS01TOXRUazVhYXpkbVVXdzBSR2RUU0ZWSFZGVTJjalF3TkZwUmEybFdjV3hCZDFRMlVrdHBWV3N5WmxoQlJtOWtjVmRvUjNseEsyTnJhR2xEV1VOaWFBcFlVa04yTUhsYWRYazRXRGhoZUdreFUyTkdaMFE0V2xSSVZERkVOR1JsYkdoSFdUbDVSVFowVlc5blZucGljRUp0WTAxSlp6UjNMMDFXWWpKc00wMWhDbTVVZUdnMWRHdHJia1pyY1dWc05UZzFiWFJGWm5Oa1ozSk9hMjRyTWxOWGFFdEVTblZEUVhNM1dHZE1UM2RPVWtKM1MzbElTVmRZUVZOaEwzZzBOR3dLYlRsV1preGxSMlUzV0hadU4ydHJWMHhyTm05NGRGVTJVMDR3TldWalIwczVSbEphZW5kaU1rRnFRVWg0VUZWMmVtSkxiRkkyVUdkU1RGRldlRlZpU3dwU1VqSXdVbFk0T1ZWRUsyTkJlUzlsTTB4c05YZFBaalZaYzAwM2RGSTNiRTlCZUdkMlFVczFjM1pEYTJkS2FsVkRRM1Z6UVU5RVV6aFJRazF0ZEU5VENuTm9VMUZNYTNOS1JYRllZU3RLVTIweGNtOTNUbU5XYm5sR1VHaFZMMHhVVGtwRVFYQkRaWGs1ZEhnNVlUZDJTWHBJSzJGTU4yOVpUekV3UTBGM1JVRUtRVkZMUTBGblFXdFlaa3hvUWpnNFJqaGhPREZ4WlZSVFpHSlFTeTlUUlZKdlJEWlNUamxsVjBSdWFHdFpiVVZ6U0ZKWGN6Z3labmMxTW5OblpGYzRjd28zTVZWME1XcFNVblZtZUdscVlscEpRa2hOUTJkMk9XRkdWbE5SY1VndldGWkJkVUZKWkdsSVRFMHpiM1pPUW1aMVdrSkdPR2hIZUUxdFZYbHRWSGxxQ2pGU1ExaG9SVkZUU2xNMGEwOVBUMmRXTTJWUlJsTmhNRTkwU25OeFJUZzFkMUIxV0ZWVldsVlhaR0YzYUdVclowTnROM1pYUkVoV1JWWkZTWGROVDNvS1FXczNOMFE0UjBoQlNtRlJWM3BWY2pKWVRYQnNkVlE1YmxSM01HbDRjbE5pZG00ek4yUmlVMEZ0VTBkVEwxVXdOamgyVVdoVFpITnVkell4YWs5aFVncDFNMVpoVFhOVE5ERTNNR1JNVDJWNlIyRk5RWFJIWWxBeE5uTlpWVlUyTlZKeVFsY3hLeXM0UzFaRlNHcEJWR05WTDFVM2JtZFRabEppU0V4VWFUZGFDbEZ4YVZab1IwUkJOMUYxVlhrd2NtRnBkbTVGU1ZWQ1lqQnZSbEZZVWxOYVNYWm5lVFJJTm1kQlQySTFWalJsTDNWa1pHcFBkVWRUV1doNllXVjFhMVlLV1hZM01ERkhjVE5rZDFCb05WSnpZelkyZG5CYWJteFdOR3hLTldSSWRUQnRhMnM0YTNsNk1uUlhZWE5UYW5GWEt6aFBSbk40YlRkVVUxWjNlR0ZDUWdwU1VYaFFXQzlPTjJwc05GTkNiQzlaYTFCd2IyVkJNalpDTlRKUWFqSk1XRlF5YkhOeE5XRkhZWGQyUmxabGFqQTVjMUZXWTA5aGVGRjRSSFU1YUV4R0NrbG1RMlJsTTNKU2VWaExTMEV5ZWxWWmMySkJjVUZ4UjJ0ek5rWlNNVXRVTUhObFNDdG9VV1Z2VVdVeWFrRnRRM0l5ZWtoek1XMW1PSGhPUXprNFVFWUtRbEY0TDFVNGFuRlhiR0Z0UkVKVGJsQnJZa3cxY0ZkUFkybHZVazVwWVdFMllrbFBOa2d2WVV4RWIwUk1OMU15VUdJeVNqUmFUbmxZVlM5a2NsaE5NZ3BDVlhWMVZtTkJaRlp4VGxGWU1GcFFRbXhDVkd3MFZHTktWVlJSVnpKQloyeE1jalUzV0c1SllXdFdUMU5aTW1OQlVVdERRVkZGUVM5aWVuSkJORlY1Q25wM1FUaDJOM0JhUmpkcGQzSkVZMlZPTWtoTEx6ZGhhVWRWU213MWJrRmxkRUZVT0hOemJYSnpSelIwYkRkNlZFNUxSMEY1T1M5M1ZDdGFZMWRwUjBnS09HdGpNVXc0YUhSNmRHbFBOMmhJUkRSM01FUlpkalpoZVVWV1JFSTRVbVJvVUU5eUsycDRlSHBZYTBGWGJFTlFRMDA1U1dkaE4wdFVNRzlhZWs5aFZ3cEdaWHBWWlZvMWFUQnpkMjB3YW5oRFUzWkVRelZNZEN0bldVbFJPWEp3YnpaM2NrdG1PRlp5TWpkeGJIRXZOakp2WVRGeVVUZzFPVzVxUzJoWFZFeDZDbkV3ZDFBeFptRnJUblJwYlhBeFZVWTJXSGx4ZVRnclNuQnFVMFZ0VmtvNFJpdEZTRWsxVDFGSWFqWXdla1phTUZoeGFuZDNkMDRyVDFkeU9VWTRTV0VLTDBwMmNIcDNjeTkyWldSUE9FaHpaRE13VVhCb1puZ3dVVzVZU0RjemRYSkNaM0UzUlZjNVlra3dhVmRMTWxGUFdVeHlhbVJHTnpCR1NHdERMek5MT0Fvdk16a3pPRFpSVGxFdk56UlJVVXREUVZGRlFUTTBMMU5sTVU5d2RYY3JNRVZzWmxkdk5VdzFNbWt6VVdaelNtWmlVVEV3Y0hGaFNrMVJhVXQ0UW1WNENuQlNOVkpzTjI5TU9ESkpkMHc0Um1SSFoxcGliSGhNYjFVclZubDBVRGhFVlZOWFZVUlhXRmxFUlhkWFNrZFNNbloyTDBSM1oxVnljakZQU25kWFJ6Y0tTRWw0U0VsdGNYbHhaalJwTldjME1ESnhiMHA1U0U0MFoxbFhibGxQVVhsbU5FVjZRM0pUUW5wR2JGaFJXbGN5Vm5VMFZqRnNRWGg2WnlzNFprMXRjZ3BtVlhGd2QxaFBiR1pKTkhOWGFWbGpOR1ppVFhZek9FeENNemRKY25CNVluZEpjWEJpWm5JNFdEVmxUSEZ3VGk5cVUwUmhWR3hsWVhsdldEUTRkM2RSQ2xZcldEbHpZMVJvTkVKbWVITjVhSHB4UmpGQ2JIUnhObUZQWTJ0b2NVNUJNSE5WYVhoblJrc3ZVR3Q1Vm1sVE9YRllaR2hZYkZSNVYybDZla1pLYWswS1RXUlNhelZ5VERseU9HMXpiRmR4VldSeVZFTXdNVll6Ylc5R2RYQXdSRzlVVFRCWGVEQTRZMGhSUzBOQlVVVkJNR2RFYlhaWk5HcGFRMGM1U21Fek1BcHBUMkZMUTNFMkwzRnVVMk42TlVZemFtUktabWhvTlhKMWRrTmFkVTUxYVRWeE16VjJRMnhETkV3NUsxZHlOVzlLWVdwNE4wbE1kVUZxTm1aTVdVbEZDa292YzJsTFRGYzFWelZVYzNCaFZURnpLMVp1VDJWc2VYZFdVSFpzV0dOeVpGUlVaR0oxU2xoNk5raElWRGxYTjJsWE5EVTViRlYxUTAweGRtVlplaklLUnpaT2RIbG1hVzV2VjBOek0xTlRNRFpxYTJSRmVXUnlTMGxXVVRObWEyMWpUVU5GTVRsd1JHazBTamxWWVhnMFYxWk9jMHRQWnpkMGFESkplV0o1VGdwWmRuUnBlWGRHWVcxRmJHWkVjbTlvU1dSak4yMDJOR2xIU2pGa1JFUjJXVkJ6UVVaWlZURTBiVTVRV1VkSU9IVnVRbFZLYW1ZeFVESndlWE5KV0d0akNqZ3lObUUzWm5adU1rWTJVWGN4TUZSV0swbHNZbEJpT0hORk5UTlVNVWhNY1RKTmNreHdVbk5PWmtSWWVXWjJRWEJoVlZkTWVHWnRhSE4zV1VkcFZTOEtLMWhRZDFGUlMwTkJVVVZCZW0xTWFEazBVMWhFZFVKRFdubFRPRkJEYnpGcGRIWTRkazlyU1ZjME5uVm5RMDFEVTBWblVXY3hUVEJhY2tWRmRHdFFSZ3BSU2pCSGVYa3JRbTFqVFVGNmQyeG1abWRSTW5wNU1GWnFUbHBoVW1KM1pIQmplV2RNUm5seE1qQXdXRVpaYW1ObFdFWjJibEl4ZVU1aWNYa3JUM3A2Q200NFprUjRRWEZrWkV4cVFtRXhTbVZxTkZGd2NqSk5OekF3V1dSTWRXSlNXbE4xWkZORGFrVlBjVUl4WmtoS2QyRkZSbE41ZDJ0TGVtaEpaR2RWUVZrS1MwWk1RVlV3UlZsTVQzUkJkbWhETUhncmFXUnlPRlpaWWtodlYxUkVaMGQzVDBWUmVWSndLME5JVjNBd0sxWkJUek5PVUVSdFJ6SjJUVGRSVmtWeWF3cEZOVTVJVTFKUmVFbGtPV3cyTjFKc2JuVTJNRmsyT1ZjMmNqSm1hWEJuY1N0RWRUazBjRlJ6YlhkU1p6SlZjMjF4VjFWU2VUVlFOeTl2ZVV3d1oyRjJDaXRLWTBGUmNtZDJPSGcyVWs1aVUxUlNRVzR4WXpKaFUycHJVbEJ2VWxKQ1lWRkxRMEZSUlVFNVZuQm9SemRSVFVsWVdrNUZkelJDVFd0UFZ5OXZjV2NLWTBveksySjFObEZWTUd4dVRrNW1iV2hVYjJaTFVYcHZVbTgxTWtGTmJYZzBha2RQUm5wRU1tdHJUMWMyUkRKVGFqUTVSbTB4VFZSNGNuSndRWFZ6UlFvMmEycHZReTlyUzB4aFZXazRiRk16WVVsaEsxUktRWFl3UkdadWNVOTNUV3Q0VG1weVFqSjRSSFZqVVVOVmEwRklhbGhTWW1WeVV6QkViRTFHV21sM0NuTXhaMGxoTmtSbVpURkRkMmhsTDNFelVURmFXRlU0VUZkNVNXNWhjbHBKWmpOUFMza3dibkl4T0ZkbFdsb3lUV2R1U1d4RlZrdGljMFk1U2pCdk5rUUtNbU0wZFc4NVQzQjVWWGRtT0VwM2JGVkVSRnAyWm1SbldFSm1hVXc1YWpkaWVFVldVV3RIY1cxa01GbFBLMWxDUm5sbVl5dG5jM1ZqZUVKa0szcHpRUXBtVDJwa1RrdDZVbkJ1VXpGU1p5czNhbmRrYldSSmIzRnFWWFJwV2pseFVsRlRhbmQ2UVdoUk9IWkxSMDR2UmxaWmNrSTFRblpwYlVKbVZXWXdaejA5Q2kwdExTMHRSVTVFSUZKVFFTQlFVa2xXUVZSRklFdEZXUzB0TFMwdENnPT0KICAgIHRva2VuOiBhbHh1NDRhYWZsd3FlZHRwM2NxdHBqdndjeDE2dW9yNDRmMzduNG54ZWp0Zno5a3hxeHM5MTRsd2tndjNrejNkaGxjcW5lMTh5cmIzb3ppYnlqejZpZnZmdDI1dzNwZTliNGY5bTdkd2tneDZybWh0NGZsNTRwZHE5NGhvZThxaQo=\"\n - \ }\n ]\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVVrM1dHbEljV1ZaVUcxV2JrUnBlRVF5U1RaRWRtOTNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDA1cVJUSk5WRlY0VG1wRmVGZG9aMUJOYWtFeFRYcEJNazFVV1hoT1ZFa3lUVlJHWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNqRTFOM2xZWVN0b2VVcG9jWHB0UWtZMlMxUjBWMHRrUWtRd1IyaENjVEYzZEc1SlduUnNPVlpIY21sT1JrdGFka3Q2T0dkb2VVTkVkRkJsT0hkWVZGY0taamx6U2pkNGRtTllZeXR0Wm14VU1XZzFMM2gwVVZjNVlYaHdZa00zVVZvM2FEa3diVkI1Ym5selYxTlNibTFYVkcwclVIUmthVlJvTmpoelRWRmFOUXBIZWpWa1NHSlJUSFJKTWtrd2RGaERWemhrYnpKNVFYUldURTA1U21OT01qUkhkR00xWWtKSmN5OWxhM2xRYVZKblZFUmtVRXRGUlZCd1oyUnhPSHBsQ25WMGEzVTNNV3BJYlU1TGVqRlNNSEZuY0RoM2VFSmpkbXRHYWpkb1kxQnhiaXRtWTNaWGFqRlhSek5CYTBZeGFYUTNZVXBoUkhKTk5GbGhkM2g0TTBzS1RsRmxaVVE0VWxad1drOVBTbGRLYlN0YU9YSjZXVnBIU0VFdmFteE5Oa2hOWkZRclNGQkxaMWdyVWpoTWVHcENSSGt6VTJGYWMwcFhXREIwUmxGTFR3cGlURXcxY3pKc1FrUXpjVVI0TWxjcmVEaE1lR3gxV1Zvek5XTTNWbXR6VkRJMmVERjZMM2xTZUVFMVVUSXlVMlp6V21GSlowcElXSFpxUVRZNGJsRjNDamgyVTFkVGJsZFViRXRCY1ZKc1VIVk9kMmxpUVhaalVsTlFibGRtTTFwSVF6WlBUbFpCZFZaSE5IUlhXVlEzT1RaeWJuYzJiVXhKVWtsUk9YZGtaVXdLYXpkTVUwSkdOSGhsTjFJemIyZGpaMkl5YW5kWmJHdGlkR2x3YjFKTFpuZ3hUMHRCVFVweE9IcFdOVTlJTUZoME5FSnVORTlWTmxoa01rMVZjRVZWZGdveWJEZE9NVTVFUjNacmNESmhMeXRNYWpBeGVtNTZZME5YVWxZMU1tOVZhbFJaVTFsdFdUUnlaaTl3VkhKamNuSk9ZM2hVZFVGeGRVcGxWVEpTZGtZM0NpOURjWGxhZVVOWU5FZFdlbWhQYVRSVFVGSmlkbGhSZGtkUlVFeHBlRE5IV0hsNmFFMUxWMjl3U1ZwNlVsRnZWa3gwVGpkVmVqVk9jV294VW5sSlNFNEtjSHBOTkZCamJHSjVXbEZpWmsxMFJHZGtjakp2TjFkWVJIbHFWRkEwVmk5RE5rVnJXVE5hYlVKTVJVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1FqbFpVVE5LVTNsNFowWTRNVEJ1Q2l0dU0zVnNkMnRUYTNoTFNFMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFVdEJUaXR6TTAxdGFGcE1aVVJ2ZUhwb1dVNDFNblUxVUZJS2FtTlpPRGwxV25wWFdXNWxkME5wYUhCak9VdE1NSGhuZVVkb2IwVTVOR3BIVlRObWNVWlVTVXBYU1ZwbWVEQmtiR2ROTjNGWlNsTXlka3hJVDFrMFV3cFdLM0kxTkhsU1ZuSlRZV2gxTVc4NVpWbExWR0pOYUVoaFpHbHFRa05FVFVkT2VGVnJkelJDYlRkU2FqWk5PWGxsZVRKaE9WQjZNbWxQTVhGaFVHYzVDaXRUT0dWelNURm5NUzlaWlhkS2FtRXJOVVozZEhkMVpDOUJTRXBXVG5sQldGaDNXSEl3Y0ROS2FqRXlWa3BWUVROcWJXUjFlRFZWT0dab1JXODNia0lLYldOR2NrWTNiazFhU25sTFRtaFRUMFI1TjNsTGJXeG5RVkpST1c5emFIVjVVa2N5TTJaTWFIWmxLekJzYVdsWFIyRk1aazU1YTNSblUwWjZRa1prS3dwRWNUbFRTVlZQWkZrd2VUUlFlR3RwT0VKMWJXdFVNa3BFZVhBeWRGcEVTV2R4ZVVwVGRFcHRjV0pQTlhSSmFsQnVVREpSY1RrMFEwWTRNV2gwVm1wV0NsVnVRemRwV213dkwwVXdTelZIUTI0ME0ybG9NVUpaTlZkbWREWjVZMDlDT1hNck9FUnphR3hOTlVwcVlrRTJNVVpZT0VGeU1USkNhMHR1TTBnNFpWb0thSGR6VFRrMmVtMWxVVU5oUlZSVUswMHlkRnByY1VSM1ZFdFFZek5HTlhkellUbFFiVWMwZEdjM2RqZHRlbTB4YlRFME9HZ3lZWE13VWxGb1RFOURaQXBFV2l0cmJYaDBXbEl2YkUxUVEyZEVaVmxpWWtoeU9EWnlaMGgyU0hOV2NrSmphQ3RyVUhOU2MyZFZjbXRtVkRWNE1FeGtiREZYUzJaVU1UTnlTVkZSQ21kWVdFbEpkbFJZVEVwMUwxa3plREl3T0dSd2NFNHJSR1E0TVRjeU9HcHJhMHhEWmlzd1NXdHJkSEJqV0VoSVMyRlRSVmg2UlhoWVUyOUxRbmx3ZFdnS2JqWTBVMmR0TWk5SWEyaEhSalZNTms5SFVWUTBaQ3RDUW5vd1ZHeExla280U0VOeWVrUkdWM05aY0doblJHbGFkRE54SzJsUEsyUkJSRlpYY1VGT09RcDZXVE5vTUdKR1drWlpabk5oYkdOSkwxRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zc3ljc3R3ei11Nm1najJpNS5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdGgzZmwyYwpjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdGgzZmwyYwogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdHN4eGx2eGNkNDJfY2xpYWtzdGVzdGgzZmwyYwogIG5hbWU6IGNsaWFrc3Rlc3RoM2ZsMmMKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0aDNmbDJjCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdHN4eGx2eGNkNDJfY2xpYWtzdGVzdGgzZmwyYwogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUlVIQk9WREJrT1RGU2VrZFVkelpRUkc1WVVHa3pWRUZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQk1rMVVXWGhPVkVVeVRWUkdZVVozTUhsT1ZFRXlUVlJaZUU1VVNUSk5WRVpoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVUkJkWE0xZVhFd2RFRnNZamxZV1RWV1prRlZRVTRLYm0xdVJEUnNjRzlDYjJwbFVHNWFOV3BrVFdkNEsyOUNTMmxRZERCR1kxRndLM3AzTVdJd1kxUm5jVkFyUVUwMFNtNXhSMXBvZEhZeVptSnZMMDlKTmdwWWVUUjVXaTlTZEVKNFRUWm1PVlZQYUV3eFVGRXlVRWhsVURCV2NYTktRV2hTVUhwbFRUaDNUa2RVYzBwbWVFZzBkbUowYTNSdlpsUlRhVnA0VUVOaENuWkZSV05XVVdWelppOUJjbGhIYjNKaVEyWlNZMEY1VW00eFZUSTBRbTFWY0d3d1dFMURUVGQwVWpSU016ZzJiMmRJVVVSc2NsZzNSalo2WlhRMFVXVUtNblpIVkc5T2VWaE9VVUpOYjNsemJFeDBVRzVHWWs5QmEzcFBkRmx1YmtwM1lqQTNWRTFWUzNSUlRVaFZNRWh1TDNobE5HOUplbGRWTUcwMGFtcERUd3BVYTBsWmRuaG9WWFp6VW1KNFdVMTBVbkU1WmtOeE5tMVlWWGwzUkdwUGJtdERWMnB3TlRsWlQyeGtORkJXTkRCeUwzTlFRbUV4T0ZKVWJGTllRVlJyQ210bmJqTXllbFZZTkRCUmFFSnRRVFJ2VG1odFZtOHdNM0ZWWlZaVmFHWm5hMU5QWkRkeVZEZElaMVZ2TUc5Qk1tdHpObG9yTkZWWVZXNW5PU3RRZUhJS0szcE9VbEZFT0VjMVkyMU9aVVZ6WlRoWE4wMUlaVmxFT1ZGWlRsUnZiakZPUXpSTVNWbGphbk5pWTNJME1YbDZORUpSWmt4dWVGVkZXWEYwVWpCTVpBcE9XR3R5YkhvMU1VOW9WMFpsWW5kSldUYzRTbGRMZFNzemRrWXJObEp0WWxaYUszSTVUREpZU0ZoNWFFb3ZNM1JoUjB4aGFtVjFkRTlVT1RSWlprOTBDa054TVRaSmJFUlRjMGs0Tm1JMk9XaERWR1JLU0ZCemNrTnJWVXMwVjBZeFlXWnFhV2xJTURFdlQxZ3JhR3BwZUhGWE5qWlRSMEZZWTJrNGNrOURVMWtLVlVodFRYUjNTazg1TlZrNGMwRjZjR1l4Ulc5SVNTczNaMGRVUlhvM1RqSnFaRkJJUlV0d1RqbGlkWFpNVDFCcFZ6azJUeXRpWTNWVlFuSnFhbEZWY2dwVGJqbFNkaXRwVFRsdFFsbGpjMXBoUTB4T1IyUlJTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsRm1WMFZPZVZWemMxa0tRbVpPWkVvdmNEazNjR05LUlhCTlUyaDZRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRlpZWEpGT0ZOTlNrTnpORGhKZWpSeVFrVllSZ296V1RoaE9DdENVRWhtU3k5U1ZWSm9jVlIzZG1SbldYTldORFZZVTNkQmRXRTFOamw0YlVKQ1JXNTBXbVYyTm1WaFFVbEVUVFF2SzFZeE1IZHhLMU00Q2pSbFNIbEVWelZJZVhJNU1FUkZZM05UYlRkd1dDdExVbUpSTWpScFExSmFaRVowVUdGcmJucDFSR0Z6Y1VZM1EwSjZNekZ0V2t3emIwTlVhbk5vY1VzS1YxbE5jazFuYVVoUlVHVlFPVk0zTVZVNGEySnhVRUprWVVwcFlUVXhRakF5VG1KQlUwMURVM2MzUTBvM01UWlFTRVJ1ZFVaS1YySmxiWGxqTm10QmVRb3dibU53VGpFME1IVnRXVlExWmxvMlNWaHRhM2hWVVhRMEwwNTRNVFpuUjBKWlNXVmxjVkJST1dOM00wOU5SMGQwWTBOdVVGTndLM0pSTDFFMVprTmFDbmxrVGtkRlZuRktaMU00Ym1GdlZHOU5Tbk5YTlU1R2JFTndSa1ZJTTFCd1Nsa3lSMHRNZHpkTlZIaExVRTFoUW5wbVNYRk1PRXhvU2xKQ1IwUlJWWEFLT0ROcWR6VjJTSFZKVFV3emIzazFTbTQ1V2tWblpqQTROM2RRZVV4cE0zRldZV1UzVm1GWGVsZGxOVk4zUWsxNlRsTlVUMVEzWTNFMVJrcDJUVVozYWdwVVYxbFNRM2hSV0RoNFptaE1ORmRNU2s1MUwzZFZNMjFIVjBSbVprMUJlSGR4VWpsc1dXWlRUbTlDTm5VNE9ESlVlbXRyYzNwTGFWZ3dkbVo1UmxOMUNtUldNVEZFUzNOdFlreHZVblEwYUc5MmIwNTNSelZLTUcxSE5IRlpaRTRyVmpOSVpYVjJRbEIzSzIxck5FMXJUUzk0YVZSWVUwOURMMjB3YzJodFRGVUtlakJ0T0dKVE1ra3ZWbTE2WXpjd1dESXJSMFYwWWtWSWNFSkpWSGRLVHlzM1RuWjFaVTlQUnpkT2VuQnVkbVFyZUc0M2RDdFNPVlZ5Ulhsd1oyNUhZUXAwYXpCeVFqUmhRbkYwWnpaM1MxWnFNR3hhWTI5Uk1WWldSVVpOUldKRUt6UkJRV1pRTnl0TWRFazRRVE5zTWs0eVdETjJVMVpoYTB4RldUbGhObTFYQ25GQ1IzSmFUVVJqY2pGWVRucFFlR3AxYTFreFExaG5QUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MxRkpRa0ZCUzBOQlowVkJkMHh5VDJOeGRFeFJTbGN2VmpKUFZsaDNSa0ZFV2pWd2R5dEtZV0ZCWVVremFqVXlaVmt6VkVsTlpuRkJVMjlxQ2pka1FsaEZTMlp6T0U1WE9VaEZORXRxTDJkRVQwTmFObWh0V1dKaU9XNHlObEI2YVU5c09IVk5iV1l3WWxGalZFOXVMMVpFYjFNNVZEQk9hbmd6YWprS1JtRnlRMUZKVlZRNE0ycFFUVVJTYXpkRFdEaFNLMHd5TjFwTVlVZ3dNRzl0WTFSM2JYSjRRa2hHVlVoeVNDOTNTekY0Y1VzeWQyNHdXRUZOYTFvNVZncE9kVUZhYkV0YVpFWjZRV3BQTjFWbFJXUXZUM0ZKUWpCQk5XRXhLM2hsY3pOeVpVVklkSEo0YXpaRVkyeDZWVUZVUzAxeVNsTTNWRFY0VjNwblNrMTZDbkpYU2pWNVkwYzVUekI2UmtOeVZVUkNNVTVDTlM4NFdIVkxRMDB4YkU1S2RVazBkMnByTlVOSFREaFpWa3czUlZjNFYwUk1WV0YyV0hkeGRYQnNNVTBLYzBFMGVuQTFRV3h2Tm1WbVYwUndXR1ZFTVdWT1N5ODNSSGRYZEdaRlZUVlZiSGRGTlVwSlNqazVjekZHSzA1RlNWRmFaMDlMUkZsYWJHRk9UalpzU0Fwc1ZrbFlORXBGYW01bE5qQXJlRFJHUzA1TFFVNXdURTl0Wm5WR1JqRktORkJtYWpoaEwzTjZWVlZCTDBKMVdFcHFXR2hNU0haR2RYcENNMjFCTDFWSENrUlZOa281VkZGMVEzbEhTRWszUnpOTEswNWpjeXRCVlVoNU5UaFdRa2RMY2xWa1F6TlVWalZMTldNclpGUnZWbWhZYlRoRFIwOHZRMVpwY25aME4zZ0tablZyV20weFYyWnhMMU01YkhneE9HOVRaamszVjJocE1tOHpjbkpVYXk5bFIwaDZjbEZ4ZEdWcFNsRXdja05RVDIwcmRsbFJhek5UVW5vM1MzZHdSZ3BEZFVab1pGZHVORFJ2YURsT1pucHNMMjlaTkhOaGJIVjFhMmhuUmpOSmRrdDZaMnR0UmtJMWFreGpRMVIyWlZkUVRFRk5ObGc1VWt0Q2VWQjFORUpyQ25oTkszcGtiek5VZUhoRGNWUm1WemR5ZVhwcU5HeDJaV3AyYlROTWJFRmhORFF3Umtzd2NDOVZZaTl2YWxCYVoxZElURWRYWjJsNlVtNVZRMEYzUlVFS1FWRkxRMEZuUlVGcU1uQjZUbVZHUW01ck0xRnNUR05HT0VONE9TOWhVbXRFT1M5bldtOW9NbFZQYzNGUWEyNU1WV2hzZUdsSGVGUlZRMUUwY0dGNFVRcEtUMkp2VlhGbVFVNUhTR0ZCTWpabGRtMVJPVUp1Tm5KMllsSjNieTg0ZGpSV1NqWkZTMlY2U2pGVU5IUnNWVkZwYlhOaVZrNVJlbWRIZDFKSlVFaHRDbHB6WWk5YWJDdFhkV2xQUzBZdlVrMTVNM28zTURBNFdGb3hWMngwV0Rsbk9VUlNVMEZaYzNseVVrZFlOemRuVERaVk16UkVSMVZGYUVaRkszUTVPRlVLV25GNmNtbDNTemN6V2tWMGRIcFlaa2h6ZVVodWRFWXZWV3AzT1d4TWFGbEVRVTF2U1RGNlRsaEViMUJaVW5ZemF6TTBVMnhTY2pBeVdrUjFSRGRUWWdwdVFWVkZiVE5OV0ZSa2QyMXlkbmxyUzJvNVQycHBOWE5NVjIxb2RVVlBSRFlyV2toMFRXaEJWbWR2YTBWM01FZGpla3d2ZHpoNWNIaEdhazVHTWs5ekNtNXdkV1JrTkc1NWFsRmpaR3Q0WkdoUE1IZ3JWRWh6TW5KS1RFNUVMM2dyTjI1T1QyZGFSSEJTTmsxalZ5OHlTVEZET1dSUU5VY3JSMnB3WlVkTVdWUUtjVko0VjA5VWNWUklhMGxwVGpCWlkwWk9Oa2xNTW1veWNXeE5Tak5FWTFKYVVXcFhla2N5ZW5SdGRUVjRNWE5IYkd0cU56SkhZbTh4UW5sYVRIbGtNUXBuVmxZeFlVRTNRemhvTUZwV1NWTklSVkZtYzBkc00zQXhLeXN5Y2trMGJVbFFVbFpQT1M5WVJqbDRkVWhWZGpCTVZsQjRjMDVYU1RoRlEyVmtZMXB4Q2k5elZXb3pXVEZoYjNWU1pXRlNPWGRzYVRaek1qRk1iRlpqWnpObFNVaHFUR3RtYm5sTFMyaG5lRVZPVFhGRVpqUXpWM05rU3pCdVJFNUxVMGwwVDI4S2NXTkhhR1pyY21WM2RWWk5OMmQ2UVZsclduVlNZVkl4Y1V0Tk0xRkNhREI1VURGNmQyOVllRzF0WjIxWU5YWjRhRFYwZUVGWGIyaEpZa0Y0YjFKb2Jnb3ljRkZtTkdwaFpIZHhNM1k0YzNSbFRFNWthalpOYWtwUFpTdHhSemx1T0N0alowWllkRGRhWTI0clRHZHZjazR3UVVWRFoyZEZRa0ZOVWtkYVFUbFhDbGh1ZVdoNFRubHVZMkpzWVZGWVRUbExOa1ZaVDNWU1owY3ZaR0Z0VDJzd05uSjRMMk5FWjJWdVNHOXFlVFJDT1dNMmRsZGxaR0p4Y2tVMGJYTTVTSFlLV25KdFIyTktkMVZpUmpWWVRETmpkbkZKWTFWSU1WSTNjbVE0YjFvemQwbDRjbFpTU0UxTk1IaHVWRlJpTlhkbllUZ3pURlozUWxST1VIRmhRUzlNVkFwTlZDOHdkSEZsTkRWQmNsSnlTbnB0YUVJMVkzRjRkR1ZwVW1OWWNucGtkR0oxUldSUFVHTktTMWxYY1VsWFZtaE1SRGRNUVZOM2RuRnZPVW92UVVwdENuaFFiMWhqVm1GSVRVdHZXREVyVTNObFpIZFBRMVpIT0dkTVVYQktjakZtVFdSS1JXODRlR2x0U0VJME1EUlBSU3QwTWxCSlZFUTROazlOWVZGbFYza0tNalJUTWtOaFlXTjNaM2d5U1VWb01HUkdNMDl5WW1RM09IaE9ORlJTTDFKcVIwYzBjV3hPTVc5dlZuSm5SRXh0VUdkSGIwNDFPRkV5ZVZKdVdVcFRUd295V0ZwRlUwZExjazVXY21OdlFqQkRaMmRGUWtGUWRHZFFiMnRJZUZBMldrdFJhRVkwYkVWblZWcDVRV2MzYW5CUWFqbHNWell3U25Ob0t6RllhbmR4Q21rNE9HWjVaVEEyU0c1bFJXbDBOSHBsU0ROYVJEQnpUSGsyWmtsSU0yOHdTa0paVlRGWFpYVk5jalJwV0VWR1Ftc3JiR0pLY2pKdFFURmFRbXRXSzJRS01IUkpibFpNZVNzMVNrMU1lRThyT0Zoa05qSmFWbXhaYUdvMVZ6SjFSWEUzYVVaRlYyTjFOM0pRZDJOcVlrbHhLMFk1TVd4Q1JVSlFZVzFzVkhaTVZ3cDNWRzEyU25GemJsUjBWR1pJVGpBMVNEVTRkakpVUjNKSmIxTldLMmwzY1M5VU5FYzJUMmRaY3pCd1pHeHZSbXBFUm1ocFptVnpja2xNU0dOblZEYzBDbTlhWkRoVE9VVTVOSEpQYVcwemJIWTNZVEZLWW05R1FXa3lWRkZJTXpSSFZrTnNXbTF4ZFVzMGN6UmFTRVpPTUdKeVFrNDNjR2xNTjBSQlNrd3hSaXNLUVRobGVEaFBiVU5xV0hwU1VtaFBObXBYVlVoMlVIQktOVmRLZW5NMlZuY3JRbEZzTkdkeVVVbEVhME5uWjBWQlUwNDFSbE5pYUhORVpVNVdTR2RMUVFwWmVYTlNMelJIYmxWQlExbzFTekpXTVVkb2NrOXlSblJ6U25WNlozWktRMkk0YjFsU1JsUlBLeXN6T1dZdkwxTkNjRmQ0ZW5aQlRtVkVWbXRYTVROMENuVmllWFZ1TlZsMlFVTTVSbFJ0TURSaFVrRnpSVEF5UXpCR1FWUXlTbXRuVlUxRmNYWTFSRGt4VVVvMFFUSlFaekpIVlZSelJGRmxTbUowY0d0TE1VRUtOVWs1YUdkVlRFaHlRMjlHVlVoNmVHTnZVbFpvWTA0MFJtUldkV28zUWpCSVR6ZEVlRlZ4YkZSWk5qWnRZbVk0YmpSUU9VeHljMDk1UkdGd01teEZTUXBxVXpKaE9XOW1aVWRuWlZGRFEzUjFjMUJTVTAxS05VWTVaVmRNTVd4aFNXUTRSWG8zWWtWVFNHVXlSV2xvV25KTk9URk5kRGhYUjFsRFptaFFNVEJXQ2xsbFJEbE1WV3R0TlhGcVZISTNiM2g2V0cxMFZVaElVWEF6YzFOeFZHVlZTbVZ3TmxKMWRGb3JLekpET0U5bmJVazRZa3BuV0ROcVYwWm5WR00yV2xNS1oySkNSazVSUzBOQlVVSmpkRkpCWWtwWWVHNXJWVVJ4ZUdsMFJGWkVTVVpFTDJsRlpEZEVNMWhKUWtVdmRrSnpaRlV3T1hvd2MydHdhM0Z2WWs5cVZBcHNNVkpJZDNBdlRHVm5VVVF6TWxCTGFYbHVaM1prTkZwTWNraE9kbEpqUm5aR1NtUXhjblZuVFc1bVJrNWlZa0pXZDJ0M1VrWndLMGQyWkV4aVVFOU1DbkkyYkM4MlR6Wk9kSEZOUjBsdWJsQXZLMUpXWVhGdVRVcDRUV1UyYVZwUlJFa3ZUbWczT1RKS1ZIcHZWVXBpV0ZCQ2IzcDNWRkZrTDBKVE9IaHdRbmtLVUZvMk9XbzVWM3AwWTJaaFdUUXdiR0pPUzBrck5HNVBSMGR3U2xCMVRGRnhSbVJpWmtwWlR5dHlVVXA1VTNkVWNrbHJWMGRyWjNWUlF6aFBRMnMzVkFwb1ZVeHNkRWgyY0dwek1YTmhZM1FyT0V0eVRYQmlWR2RWZVZkU05HNVVia2xoWlhGME5sRnBOMWh5ZWxVMVpGWXhLekZXYkhFek5rNW5kblJqY2t0UUNuUXZZWEZVUVVSa2J6ZzNNRlk1UWpkVlRWTlBXRmN5UVhOTUx5c3dUMk40UVc5SlFrRlJRMnhOVjJNMUt6UTRPV1E0U1c1MlF6RkJZbXB1Vm1kYVkxUUtUU3R1U0U5VGRGVmlLMUZyYkRSa2RqazJVeXRYZVM5eVVqQndibGxuTHk5eFJIUTNkSEIwT1ZreldrbG9UekJYZG1Kc0wzTnJjVkpaTkdrdlRGRmhad3BvTTNOVk5IY3JZMGROTm0wMVJYUk9Oa0pyTldOVE5FdDNPWHB0YUM5TGFYb3plWGhUUzJsSGNWTlVSMUEyWWpaMkwydERVRVJpTkZGSWMzVmpaaTlwQ2xoWGRUQlRSbTFWTmsxalQwUjJLMlV6VTFZd0x6UTBaRGN4UmpKbGMySkRLMWhLWjI5TVJHSXhiMlpwWWpGcmIxbzRSREIwYm1OemFEVnRVVWd6VFdNS01TOVNZbkI1VUhJMVZGbHNjMEZoVUhCaVoxbHlNMmt2U2xSR1V6WkZPVFIxTDFBMWVIZEdWbEpEVUhWdVpXY3hUVTlIYkdVeFlsRmlRblo0V2l0TVR3cE5kbVYyZEU1eVlYUXphVE53YjI5ellVVmlUVWhvYUVGWlNGTkphVkl6ZDA5RFYzUnlSakprWldWNWMyVlRXRVYyVDFWV2VWcHlRUzl4S3pjS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiByc2JyanVpOTh3dGt3bnNheXpmNWoycjJxeTQ4Z3FmM2hvajI2dzFtd2Z0MTdxbGswbnJkamJnM284d2M4ODU4Z3ExeXVjaWF2aml4cnVlMDNvbnIzaXQ0ZnF1bDVsd3FkYnhxZnBxN3RobG8wNDYzOHlneXM3bzJpMGE4MDJnbAo=\"\ + \n }\n ]\n }" headers: cache-control: - no-cache @@ -693,7 +743,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:31 GMT + - Fri, 16 Jun 2023 15:29:01 GMT expires: - '-1' pragma: @@ -727,33 +777,33 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n - \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '953' + - '954' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:32 GMT + - Fri, 16 Jun 2023 15:29:03 GMT expires: - '-1' pragma: @@ -775,7 +825,7 @@ interactions: body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": + "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "nodeLabels": {"label1": "value1"}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' headers: @@ -794,36 +844,36 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"nodeLabels\": {\n \"label1\": \"value1\"\n },\n \"mode\": - \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"nodeLabels\": {\n \"label1\": \"value1\"\n },\n \"mode\"\ + : \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3a06dfd6-e8fb-4101-9bac-f448124ffc7c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/264fabe5-532f-4659-925e-858531260ce6?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1000' + - '1001' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:34 GMT + - Fri, 16 Jun 2023 15:29:07 GMT expires: - '-1' pragma: @@ -839,7 +889,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1199' status: code: 200 message: OK @@ -857,15 +907,63 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3a06dfd6-e8fb-4101-9bac-f448124ffc7c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/264fabe5-532f-4659-925e-858531260ce6?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d6df063a-fbe8-0141-9bac-f448124ffc7c\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:26:34.8871766Z\",\n \"endTime\": - \"2023-03-15T11:26:44.2689871Z\"\n }" + string: "{\n \"name\": \"e5ab4f26-2f53-5946-925e-858531260ce6\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:29:07.3835825Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 15:29:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --labels + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/264fabe5-532f-4659-925e-858531260ce6?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"e5ab4f26-2f53-5946-925e-858531260ce6\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T15:29:07.3835825Z\",\n \"\ + endTime\": \"2023-06-16T15:29:18.1264967Z\"\n }" headers: cache-control: - no-cache @@ -874,7 +972,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:27:04 GMT + - Fri, 16 Jun 2023 15:29:37 GMT expires: - '-1' pragma: @@ -906,34 +1004,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"nodeLabels\": {\n \"label1\": \"value1\"\n },\n \"mode\": - \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"nodeLabels\": {\n \"label1\": \"value1\"\n },\n \"mode\"\ + : \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1001' + - '1002' content-type: - application/json date: - - Wed, 15 Mar 2023 11:27:05 GMT + - Fri, 16 Jun 2023 15:29:37 GMT expires: - '-1' pragma: @@ -965,34 +1063,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"nodeLabels\": {\n \"label1\": \"value1\"\n },\n \"mode\": - \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"nodeLabels\": {\n \"label1\": \"value1\"\n },\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '1090' + - '1091' content-type: - application/json date: - - Wed, 15 Mar 2023 11:27:05 GMT + - Fri, 16 Jun 2023 15:29:40 GMT expires: - '-1' pragma: @@ -1024,34 +1123,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"nodeLabels\": {\n \"label1\": \"value1\"\n },\n \"mode\": - \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"nodeLabels\": {\n \"label1\": \"value1\"\n },\n \"mode\"\ + : \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1001' + - '1002' content-type: - application/json date: - - Wed, 15 Mar 2023 11:27:06 GMT + - Fri, 16 Jun 2023 15:29:41 GMT expires: - '-1' pragma: @@ -1073,7 +1172,7 @@ interactions: body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": + "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "nodeLabels": {"label1": "value2"}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' headers: @@ -1092,36 +1191,36 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"nodeLabels\": {\n \"label1\": \"value2\"\n },\n \"mode\": - \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"nodeLabels\": {\n \"label1\": \"value2\"\n },\n \"mode\"\ + : \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/119b291c-f232-4d13-a9a0-b842925f99e3?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/32bfdfdd-f308-41cc-8c9b-f7d342a42561?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1000' + - '1001' content-type: - application/json date: - - Wed, 15 Mar 2023 11:27:08 GMT + - Fri, 16 Jun 2023 15:29:47 GMT expires: - '-1' pragma: @@ -1137,7 +1236,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 200 message: OK @@ -1155,24 +1254,72 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/119b291c-f232-4d13-a9a0-b842925f99e3?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/32bfdfdd-f308-41cc-8c9b-f7d342a42561?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"1c299b11-32f2-134d-a9a0-b842925f99e3\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:27:08.8872668Z\",\n \"endTime\": - \"2023-03-15T11:27:14.7195018Z\"\n }" + string: "{\n \"name\": \"dddfbf32-08f3-cc41-8c9b-f7d342a42561\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:29:45.3994086Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 15:29:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --labels + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/32bfdfdd-f308-41cc-8c9b-f7d342a42561?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"dddfbf32-08f3-cc41-8c9b-f7d342a42561\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T15:29:45.3994086Z\",\n \"\ + endTime\": \"2023-06-16T15:29:50.570677Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' content-type: - application/json date: - - Wed, 15 Mar 2023 11:27:38 GMT + - Fri, 16 Jun 2023 15:30:17 GMT expires: - '-1' pragma: @@ -1204,34 +1351,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"nodeLabels\": {\n \"label1\": \"value2\"\n },\n \"mode\": - \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"nodeLabels\": {\n \"label1\": \"value2\"\n },\n \"mode\"\ + : \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1001' + - '1002' content-type: - application/json date: - - Wed, 15 Mar 2023 11:27:38 GMT + - Fri, 16 Jun 2023 15:30:18 GMT expires: - '-1' pragma: @@ -1263,34 +1410,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"nodeLabels\": {\n \"label1\": \"value2\"\n },\n \"mode\": - \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"nodeLabels\": {\n \"label1\": \"value2\"\n },\n \"mode\"\ + : \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1001' + - '1002' content-type: - application/json date: - - Wed, 15 Mar 2023 11:27:39 GMT + - Fri, 16 Jun 2023 15:30:20 GMT expires: - '-1' pragma: @@ -1322,34 +1469,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"nodeLabels\": {\n \"label1\": \"value2\"\n },\n \"mode\": - \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"nodeLabels\": {\n \"label1\": \"value2\"\n },\n \"mode\"\ + : \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1001' + - '1002' content-type: - application/json date: - - Wed, 15 Mar 2023 11:27:40 GMT + - Fri, 16 Jun 2023 15:30:22 GMT expires: - '-1' pragma: @@ -1371,7 +1518,7 @@ interactions: body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": + "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "nodeLabels": {}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' headers: @@ -1390,35 +1537,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n - \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c1e2a73-cd7a-4731-851a-614d7ad282fa?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/90a34d76-2838-4257-96d7-5baf4c349ca8?api-version=2016-03-30 cache-control: - no-cache content-length: - - '952' + - '953' content-type: - application/json date: - - Wed, 15 Mar 2023 11:27:42 GMT + - Fri, 16 Jun 2023 15:30:25 GMT expires: - '-1' pragma: @@ -1434,7 +1581,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 200 message: OK @@ -1452,24 +1599,72 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6c1e2a73-cd7a-4731-851a-614d7ad282fa?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/90a34d76-2838-4257-96d7-5baf4c349ca8?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"732a1e6c-7acd-3147-851a-614d7ad282fa\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:27:42.5436076Z\",\n \"endTime\": - \"2023-03-15T11:27:51.8608519Z\"\n }" + string: "{\n \"name\": \"764da390-3828-5742-96d7-5baf4c349ca8\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:30:25.8057774Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 15:30:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --labels + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/90a34d76-2838-4257-96d7-5baf4c349ca8?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"764da390-3828-5742-96d7-5baf4c349ca8\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T15:30:25.8057774Z\",\n \"\ + endTime\": \"2023-06-16T15:30:32.581068Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' content-type: - application/json date: - - Wed, 15 Mar 2023 11:28:12 GMT + - Fri, 16 Jun 2023 15:30:55 GMT expires: - '-1' pragma: @@ -1501,33 +1696,33 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n - \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '953' + - '954' content-type: - application/json date: - - Wed, 15 Mar 2023 11:28:12 GMT + - Fri, 16 Jun 2023 15:30:56 GMT expires: - '-1' pragma: @@ -1559,33 +1754,33 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n - \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '953' + - '954' content-type: - application/json date: - - Wed, 15 Mar 2023 11:28:12 GMT + - Fri, 16 Jun 2023 15:30:58 GMT expires: - '-1' pragma: @@ -1619,8 +1814,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -1628,17 +1823,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/425df73b-2ae9-4525-bcff-46e617331d70?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b3f6c4ad-acb8-4a15-9c52-467ca625d9b5?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:28:14 GMT + - Fri, 16 Jun 2023 15:31:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/425df73b-2ae9-4525-bcff-46e617331d70?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/b3f6c4ad-acb8-4a15-9c52-467ca625d9b5?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_update_taints_msi.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_update_taints_msi.yaml old mode 100755 new mode 100644 index 3d2e893330b..00aad495455 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_update_taints_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_nodepool_update_taints_msi.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:22:38 GMT + - Fri, 16 Jun 2023 15:31:07 GMT expires: - '-1' pragma: @@ -53,12 +53,11 @@ interactions: "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -69,67 +68,68 @@ interactions: Connection: - keep-alive Content-Length: - - '1440' + - '1732' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-i279bml7.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-i279bml7.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-xw3fepd0.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-xw3fepd0.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a86206a0-9300-4a5e-9022-f006c309ac70?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cde77f4f-148f-4b1a-b57b-c42a53e4ce4b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3211' + - '3539' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:42 GMT + - Fri, 16 Jun 2023 15:31:16 GMT expires: - '-1' pragma: @@ -159,14 +159,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a86206a0-9300-4a5e-9022-f006c309ac70?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cde77f4f-148f-4b1a-b57b-c42a53e4ce4b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a00662a8-0093-5e4a-9022-f006c309ac70\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:42.4958782Z\"\n }" + string: "{\n \"name\": \"4f7fe7cd-8f14-1a4b-b57b-c42a53e4ce4b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:31:15.4309378Z\"\n }" headers: cache-control: - no-cache @@ -175,7 +175,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:23:12 GMT + - Fri, 16 Jun 2023 15:31:16 GMT expires: - '-1' pragma: @@ -207,14 +207,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a86206a0-9300-4a5e-9022-f006c309ac70?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cde77f4f-148f-4b1a-b57b-c42a53e4ce4b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a00662a8-0093-5e4a-9022-f006c309ac70\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:42.4958782Z\"\n }" + string: "{\n \"name\": \"4f7fe7cd-8f14-1a4b-b57b-c42a53e4ce4b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:31:15.4309378Z\"\n }" headers: cache-control: - no-cache @@ -223,7 +223,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:23:42 GMT + - Fri, 16 Jun 2023 15:31:46 GMT expires: - '-1' pragma: @@ -255,14 +255,14 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a86206a0-9300-4a5e-9022-f006c309ac70?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cde77f4f-148f-4b1a-b57b-c42a53e4ce4b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a00662a8-0093-5e4a-9022-f006c309ac70\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:42.4958782Z\"\n }" + string: "{\n \"name\": \"4f7fe7cd-8f14-1a4b-b57b-c42a53e4ce4b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:31:15.4309378Z\"\n }" headers: cache-control: - no-cache @@ -271,7 +271,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:12 GMT + - Fri, 16 Jun 2023 15:32:16 GMT expires: - '-1' pragma: @@ -303,23 +303,24 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a86206a0-9300-4a5e-9022-f006c309ac70?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cde77f4f-148f-4b1a-b57b-c42a53e4ce4b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"a00662a8-0093-5e4a-9022-f006c309ac70\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:42.4958782Z\"\n }" + string: "{\n \"name\": \"4f7fe7cd-8f14-1a4b-b57b-c42a53e4ce4b\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T15:31:15.4309378Z\",\n \"\ + endTime\": \"2023-06-16T15:34:38.6775613Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:43 GMT + - Fri, 16 Jun 2023 15:37:52 GMT expires: - '-1' pragma: @@ -351,23 +352,65 @@ interactions: ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a86206a0-9300-4a5e-9022-f006c309ac70?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"a00662a8-0093-5e4a-9022-f006c309ac70\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:42.4958782Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-xw3fepd0.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-xw3fepd0.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/b0a29c8c-c509-405d-b73c-d918c4fe7c2c\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '4192' content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:12 GMT + - Fri, 16 Jun 2023 15:37:53 GMT expires: - '-1' pragma: @@ -389,34 +432,75 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks show Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a86206a0-9300-4a5e-9022-f006c309ac70?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"a00662a8-0093-5e4a-9022-f006c309ac70\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:22:42.4958782Z\",\n \"endTime\": - \"2023-03-15T11:25:36.9445379Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-xw3fepd0.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-xw3fepd0.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/b0a29c8c-c509-405d-b73c-d918c4fe7c2c\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '170' + - '4192' content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:42 GMT + - Fri, 16 Jun 2023 15:37:54 GMT expires: - '-1' pragma: @@ -438,74 +522,36 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks get-credentials Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value + - -g -n --file User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-i279bml7.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-i279bml7.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/54cd2497-73c9-4165-85ec-5bf4767affa9\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \ + \ \"value\": \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlJFTkRRWFJEWjBGM1NVSkJaMGxSUm5sbE1FWm5OalJ2YkZobVQyMXJWSEpNVjI1M2FrRk9RbWRyY1docmFVYzVkekJDUVZGelJrRkVRVTRLVFZGemQwTlJXVVJXVVZGRVJYZEthbGxVUVdkR2R6QjVUWHBCTWsxVVdYaE9WRWw0VGxSb1lVZEJPSGxOUkZWNlRVUlplRTVxUlRGTmVrVXhUMFp2ZHdwRVZFVk1UVUZyUjBFeFZVVkJlRTFEV1RKRmQyZG5TV2xOUVRCSFExTnhSMU5KWWpORVVVVkNRVkZWUVVFMFNVTkVkMEYzWjJkSlMwRnZTVU5CVVVNd0NsQXJVa1ZSZUhrcmJ6aFRlbVJ5TTBkblozTkJTMDlvT0ZkeFRsaG5URGsxU1ZOeVNGVTBXVWhDZWtaRlRrbFpUa3BHUW1OVlpGUkNZM1F3YWpaYVdrb0tOVEozTmk4MmJFeFliQ3N4UWtSTlFUWnRXRkJoU0hZM2VESlpaMVl5YjNsaGMzcFBlbXRrUVhBMlRYZEJSbEZ4V2xKM1V6VXJhWGdyYlVSS1RHSmFWd3B3UjJOTVEyeFpSRWt2YUROSWVrVnJlbEpUU1hwb2RIQm5lbkJCY0VrNVZUZG1LMWhsU0RkS04wUkVTRFpxV21GbGVFSkVhWHBuYVhBeE1sZGpjazVPQ21GNGFtcGFlbEU1VG5ScU5EUnJWR1l5TWpSRFZ5OU1jQ3N5Y0hsSWNIRlhjM1EzUzBsR2FISTBLMlZDVm5GWmIzTlJibkV3Y1hKalVHRXdUVE5qV0RFS2VXVlVTa3hWYVhwdlpEQjZZeTl3V2toVFQzQktjVkpTZURaMmVsazVaRkY2V1ZCdGIwdHlWbk5XUzNJNE5XSXpOekpFWVV0NFJGZHpNa2hCT0ZVeVNncERha2N5UzFwV1pFcGxiamh4ZUV3emRYTmhabTlCTDBsaWVUaHdkazlFZEZKd2QxcHdURVEwY0hFd2FFdHZhVGRWV1hWU1dVWmpZVzVGWkdSelJuZDVDbTk0V2xnNGFsaEhWWFI1TUdJNVFXdEtaMVpaS3poSkswRkhhMlJpYTAxWFlWZFRUVzlIZDJ4T2RrNXZkV3BtYUhCcFZXaEtkMWRWTjNKalNtaHlSSGNLTm5sNFdYWmtZVTFpWXpkNVVVRnRObmx2VUZKbWFrSlZNVlUzWXpkMU5XeFdTbFZoYlRSQmNVaGhkV1ZoTTFRNFJGWnVVRFJSYVU5UWVWaHFTREI1ZFFwTlRURllaVE01YmpSWVRXdGxRMFJUVFdSSldEQkVabmRRTkVkWVZtUm1NbHBXVW5sbE1EUXpOMUJPTkM5Mk9GcFdTa1JJTld0cVpIaGFXVVIxVFdGb0NtZEdZa1V5YVdsQldVUTNiSHBHUzNOeVRrODBSVWhrUTBWcUt6TjRSMGMwVUZkcWVuSlpSMGhLYWxKSWREVXZhVlIxVVVKaFRYaDVORkEwVlUxdVptTUtXVmxCWlZWT01GTnlaREZ4Y0M4MmFFeFdibmRFYUhNMFIwTnplRXh2Wkc5MmNuSlFLMWhKWWtWUlNVUkJVVUZDYnpCSmQxRkVRVTlDWjA1V1NGRTRRZ3BCWmpoRlFrRk5RMEZ4VVhkRWQxbEVWbEl3VkVGUlNDOUNRVlYzUVhkRlFpOTZRV1JDWjA1V1NGRTBSVVpuVVZWWGNqQnBaWEJOY1V4Q2VuVmhVM1I0Q21wMldYVlFlbmxQZEdsUmQwUlJXVXBMYjFwSmFIWmpUa0ZSUlV4Q1VVRkVaMmRKUWtGTE1GWkJVa00wYUVKMldWbG9OSGhUUVZWWlpEUkRjaXR0TVRRS09FRkpkbXB2Y2s1WGNUWlRVa1J0SzBGbmJtOHlWbUZFVldGdWNUQkZlR3RQU205UFNHeGlVekpEVjJsWFYwWnlNa1pMSzBoRFFuaG5ZbEZRVkd4c0x3cFZTV05oTkU1RmNIcHNjRmhEVW5jMlVtVkJkVTl2ZUdkVVVuQlhVREEyWVZaQ1ZrcFpjMjVMVFhCT2VtUXhSRWMwYm5kVWVGcHNhbU5aVEU1NGQwWnJDbEU1VVZGQmFqUjZWVmRSVm5aa1ZUWkZlWGxUV0RRdmEyTnhSa3hOY1dwNlVDOXdRbTkzYld4NWFrbHZRbWxXUTFkRk0xTjNhRWt2YUVsMU9UVXlVR3NLTUc5RmRFc3dWbmhaWms4dmRWSlRUSEZqTm1FdlZVdEplVlI2ZGxKMmNVUldjV2g1U1M5SUwybGxaemhSTTIxTFYyRktVRzkwYjBGNlZ5OXhNakpFWmdwVldFUldNek5STW5odVREbGlSVTB2ZWxwc01qSmlORXBDU2pCNFRUSnFXVmhrWVZkRFdXVnlOaXQ2Y2xGNk5rRnFLMkUyVFdOcGJsTlpVR0ZzTlhGRUNqVk1PVVZqYVVSRFVWVjRWbkpVV1dkWVl6VktSMmhCU2pSMGNsZ3ZLM3BEVXpSd2VtOVBUeTlKTXpSMWEwcFJkRmRzUmxKNkwzUlVlVFkwUlZrdk4xRUtSelpZWkVKWlpHWjZlRnA0TnpSQmNUZFRUV1ZtY1dnMmQyZDZiMWR1TUU1VVNWSnlNM0kyVldSb2FtcDFkV1J5V1VZd1EyUkhSMnBPY1RKa2RrTkNkUXBaVERkVGJ6UlJWMUI2U1cxWFMzUjFOelJ0YkhBdmR6TklXVnByVXpZM1puZFVObXN5VVZoS1FYbEpWWGQyWVVsdGRWZGFkVTlJUjNFNE5tc3JiR2wxQ21GNFRtWnJMekpPYlRSVlNVNVZWV3N3YmtFeVNrdFBSa05qUjNOdVltWjZOR0l5VkdVNGNXTkRhbWRFTnpCcVJYUXJiek52YmxoUFZsaFNaRkppWVU0S09URkJhR1pqVTNseGFXaFVWMnRrVEhNNVdua3ZOVGRSUjFkUVFtWm1SelY0UkVkNmRubDFWSGxTVWtaeE9VZHVZblZ1U1VnNFZHaEZha1Z6WVc1MFlRcFlVa3RTU1hsT1l5dFhiMVF4VUhWTkNpMHRMUzB0UlU1RUlFTkZVbFJKUmtsRFFWUkZMUzB0TFMwSwogICAgc2VydmVyOiBodHRwczovL2NsaWFrc2Ruc2w1ZnF1NGsteHczZmVwZDAuaGNwLndlc3R1czIuYXptazhzLmlvOjQ0MwogIG5hbWU6IGNsaWFrc3Rlc3R4dGI1bjMKY29udGV4dHM6Ci0gY29udGV4dDoKICAgIGNsdXN0ZXI6IGNsaWFrc3Rlc3R4dGI1bjMKICAgIHVzZXI6IGNsdXN0ZXJVc2VyX2NsaXRlc3Rua2Q0bnl2djdvX2NsaWFrc3Rlc3R4dGI1bjMKICBuYW1lOiBjbGlha3N0ZXN0eHRiNW4zCmN1cnJlbnQtY29udGV4dDogY2xpYWtzdGVzdHh0YjVuMwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGNsdXN0ZXJVc2VyX2NsaXRlc3Rua2Q0bnl2djdvX2NsaWFrc3Rlc3R4dGI1bjMKICB1c2VyOgogICAgY2xpZW50LWNlcnRpZmljYXRlLWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVVpJVkVORFFYZFhaMEYzU1VKQlowbFJUbFpyZUVweGNUSk1TREoxTTBVMFRHcGpNMnhwVkVGT1FtZHJjV2hyYVVjNWR6QkNRVkZ6UmtGRVFVNEtUVkZ6ZDBOUldVUldVVkZFUlhkS2FsbFVRV1ZHZHpCNVRYcEJNazFVV1hoT1ZFbDRUbFJvWVVaM01IbE9WRUV5VFZSWmVFNVVUWGhPVkdoaFRVUkJlQXBHZWtGV1FtZE9Wa0pCYjFSRWJrNDFZek5TYkdKVWNIUlpXRTR3V2xoS2VrMVNWWGRGZDFsRVZsRlJSRVYzZUhSWldFNHdXbGhLYW1KSGJHeGlibEYzQ21kblNXbE5RVEJIUTFOeFIxTkpZak5FVVVWQ1FWRlZRVUUwU1VORWQwRjNaMmRKUzBGdlNVTkJVVVJPYWl0YVVub3phVmhIZUdWdlpsQmFNVWQzY3pNS2RUSXhTamxqUldSc1ZsbHpTU3MzVmxoUmNqWnllSGd2Um5FeVZtNHJWRkZzYWxCTmF6VkJjR1Z3VFVORlkxaDRXa1F5VHpGdVlucFZNRE5OWlhCWU1BcFJSbFUwUW1sU05WRXlOalptU3pOVU5tcEdTM05sVTNKSlp5dHhReXRVWjNaNVZsTkhWVm96T1ZaamFWUXlVRGhhUm5GaGExRXdXRGMxWWtkQ1pFMXRDbEpMTW0xdFJtMHdXR1ZxY0dOVE1ERmpNamRLV21sV1F6UkVSRGROWldaTlFXTnVWMmRYVjFGYVowWXZXak1yWmk5M2FsQlhOWGt5ZDFsQ1NFdFlWeklLUVVsVVppOHJObFZIVVVzcmQzYzJSRGN3YlU1VlNXa3dRMDQ0TmxaSGJWVkZhbEpHYkhSNlRUaE9TRlJNU0RGUGFXZzRjVWhDWjA0NWRIUk1TR0ZMZHdvcmEweFdUWEZwUTFSTGExSkhNMVV5YlhaSlRDdHdiM0pLYWtJMWVWVjVTa2RVYkVoYVRDOVpkazl3VlRGQlpUVkZOVXd6ZEVwT1VHZ3hPWGRRVDJnekNtOHZWMVJrZUU1MU1IWlFlRTVPWlhSNk1UZE5NRlZOTDNSNFZEQnVSMlo1Y0RoT1JXWkpaVWxIUjBKb1pqTklWbWhRZW5WM1JsTlNiVkYxVkdOb1VYa0thbkpGTW5SRGJrTkdRUzlQZEZaWFZGVmpXV3BxTmt0d1lWZzJjMjlNYTBrck5WQjJabTlOTkdzM2JrZG9abEpDT0RWRk5tWkdWVEpJYWpocGRWUnlVQXA1TUZwa0wyOU5jV2xOZFVwMmJYQklibkpYTm01M2FsZzFkazVhYmt0SlpsbHlRbmNyVUhsMFNFeEZabEUzTDJGU04wWkVhRk5CUVhsa2RVeERhRU5qQ2tSTFFXdzFVVXBxTnpSRk5WQlBRbTh2ZUZaeVpIQmxTRGRGZFVscGRuWk5iak5oU2tNMVRXSnpNVkpQZW1OaVRsUkJORzlsU2l0elUwc3pjbVJVVVZrS1NrVkVUMWNyVldoRVNuUmpiek5pVHk5T1VsVjVXbGh3WkRObU5tUm1OazFZZDFwRVJHbERhRWhEY1hCbU1sVTJOa1ptWTI5NFpFOHZaMnQxYjNKemVBb3pUVzFqYWtWWU9XWnBRWEZQVmxWR2FsbHNRbFJSU1VSQlVVRkNiekZaZDFaRVFVOUNaMDVXU0ZFNFFrRm1PRVZDUVUxRFFtRkJkMFYzV1VSV1VqQnNDa0pCZDNkRFoxbEpTM2RaUWtKUlZVaEJkMGwzUkVGWlJGWlNNRlJCVVVndlFrRkpkMEZFUVdaQ1owNVdTRk5OUlVkRVFWZG5RbEpoZGxOS05tdDViM01LU0U4MWNFc3pSMDg1YVRRdlVFazJNa3BFUVU1Q1oydHhhR3RwUnpsM01FSkJVWE5HUVVGUFEwRm5SVUZxZW10WVNIZ3lSM1ZqZEhWNk56VnhUbU16Ymdvd2RuQlpNRWQzUkRaclZXMTFSVTR5VTAwdlExSTBXRFUyT1VSa09FbGpjMUJCVTFoc1EyWjFTQzlEVWxWNFdHZFZWV3QxTkVneVFXNUhObGg0WmtScUNtaFljVWwwTWpOUVJ6ZEtURmQxYTI1eU5XWmFZa3ByUkVwRGFYQnNVbVIxU2xWaFltd3daa2hLVURBeWQzSlRZa2R4WVhCMGRHNXRRVTlTZHpsV1Nsa0tVVXBXYkVKaE9GVlhUbTlVUkV4Uk9EbGxNalZuZFhRNU16bEhUbTlFWkRCclUzRXpOVVo2YzJFMGJFbExOMk5xWVhWcVNHRXhPR2R0UjBoS1pHbFRZUXB0WVVkVGRIUnNLekk0Vm1wQ1puRkllWGc0VTJ0cVFtVmxWMW96YWs1M2RESTJSR3hUUkV4S1dXTkRla3hKYjI5VldVYzNlVmMxVHpnd1NraFdkSEF4Q25GQkwyaG5hRWhKV2paVWFpdHRWR2hJZEROS1oyMTRkSGRuY1RKWkt6bHNVM0JOYzNoelVrVTRNVXBNVjFkaFVESTViSEZ3ZFVwV1RISm5TMnhNVkdrS09GcExhWEZDZFhGTU1tZ3dOak5MTkd3MlRYTTJaVXQzTDNOVlZDOU9hRmRrU2xScmRHZG1Oek5CTlV4eVFWZHhUV2QyYjA1SVlXaDFURWwxUTBSS1V3b3lWRU5YTkVveFRIUjJaVWd4YmxGMlFrMVZOSEEzZEVJeWVVbHBPRVF5YXl0bE1VVTBNbHBEZVdoNmFTOVpOMDFuUjJKUWFGWnBXakJYYkV0S05GcGlDa2x0TjBOdmJWRmhVbVZFWWpCbVRYZDNVM2hFUlV4TlJ6Tm5WazlDVG1sTFJ6SXdZbEZQWkVONmNUa3pTVlpGZUZOQ1lUbDVWV1JGY21GbU5VWm9kM0VLV1VZdksxWmpjazFHUkRCVlZ6Z3hVRFJHWXpkVE9UQlFTRUpLUW1OVGFHNTZWMkZ3V2paallVVlVXVFpJU2tscFlscFZhR3RMV0M5MWNVSTFjbXQxUlFwaFl6VTVVRGhGUVZZMU5WcFZVM2RIYURsdksySnZjWE52VmxWTlNtbFpVSGhIVG5sWU5EYzVPRGRPTVM5T2VteDJMMFY2Wm10TlpWQjFRVEZPVGtFMUNsUXhiR05hSzJadmRIVkdXRXhUYjFsRFEwNTFNM05WUFFvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgY2xpZW50LWtleS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJTVTBFZ1VGSkpWa0ZVUlNCTFJWa3RMUzB0TFFwTlNVbEtTMEZKUWtGQlMwTkJaMFZCZWxrdmJWVmpPVFJzZUhOWWNVaDZNbVJTYzB4T04zUjBVMlpZUWtoYVZsZE1RMUIxTVZZd1N5dHhPR05tZUdGMENteGFMMnN3U2xsNmVrcFBVVXRZY1ZSQmFFaEdPRmRST1dwMFdqSTRNVTVPZWtoeFZqbEZRbFpQUVZsclpWVk9kWFZ1ZVhRd0syOTRVM0pJYTNGNVNWQUtjV2QyYXpSTU9HeFZhR3hIWkM5V1dFbHJPV292UjFKaGJYQkZUa1lySzFkNFoxaFVTbXRUZEhCd2FGcDBSak52TmxoRmRFNVlUblY1VjFsc1VYVkJkd29yZWtodWVrRklTakZ2Um14clIxbENaakprTDI0dk9FbDZNWFZqZEhOSFFWSjViREYwWjBORk15OHZkV3hDYTBOMmMwMVBaeXM1U21wV1EwbDBRV3BtQ2s5c1VuQnNRa2t3VWxwaVkzcFFSRkl3ZVhnNVZHOXZaa3RvZDFsRVptSmlVM2d5YVhOUWNFTXhWRXR2WjJ0NWNFVlNkREZPY0hKNVF5OXhZVXQ1V1hjS1pXTnNUV2xTYXpWU01sTXZNa3g2Y1ZaT1VVaDFVazlUT1RkVFZGUTBaR1pqUkhwdlpEWlFNV3N6WTFSaWRFeDZPRlJVV0hKak9XVjZUa1pFVURkalZRbzVTbmh1T0hGbVJGSkllVWhwUW1obldWZzVlREZaVkRnM2MwSlZhMXByVEdzelNWVk5ielo0VG5KUmNIZG9VVkI2Y2xaV2F6RklSMGswSzJseFYyd3JDbkpMUXpWRFVIVlVOek0yUkU5S1R6VjRiMWd3VVdaUFVrOXVlRlpPYURRdlNYSnJObm80ZEVkWVpqWkVTMjlxVEdsaU5YRlNOVFl4ZFhBNFNURXJZbm9LVjFwNWFVZ3lTM2RqVUdvNGNsSjVlRWd3VHk4eWEyVjRVVFJWWjBGTmJtSnBkMjlSYmtGNVowcGxWVU5aS3l0Q1QxUjZaMkZRT0ZaaE0yRllhQ3Q0VEFwcFNYSTNla281TW1sUmRWUkhOMDVWVkhNelIzcFZkMDlMU0dsbWNrVnBkRFl6VlRCSFExSkJlbXgyYkVsUmVXSllTMDR5ZW5aNlZWWk5iVlkyV0dRekNpdHVXQ3RxUmpoSFVYYzBaMjlTZDNGeFdEbHNUM1ZvV0ROTFRWaFVkalJLVEhGTE4wMWtla3B1U1hoR0wxZzBaMHRxYkZaQ1dUSktVVlV3UTBGM1JVRUtRVkZMUTBGblJVRnNiVzl6WlRCTFdVWXJSM2RNZHpZMVpreHJPRkJTZVRsbVRHZERRbXBoYmtwdlpHOXNUMGRRVkdnemFXVlVRa3c1YTJSWmRFUlRhd3BXU21KS2FqQkNjek0zTDBodGNtNW9kbGR2TjBGb1R6ZDNkSE5WWWxCVVEwcHpkQzh4ZFdVM01USlBlVUZ1V0VWbFkyRjJOek5XZFVKMGVreE1jRlpRQ25CelNuUTJVWE41U21nek0zRk9RalUxT0RSd2VWcEVPRkEwZHpGc1JGQXJObEE1YWpkSVNXNUpkVWswTVZoeVVUTjZaMHRJWlZKVmEzZHdVMlJrYmprS1MybFFia0ZKUmxSeFZHc3ZhbmREWTBoeVkwaGthMk5xUzFjNGVDOWxjR3hWUlRsRE9GVldXREVyVWpnNE5XVmtkRE5VZEdkMVpGaERTMU5LTWs1d01RcFBNVXRJTkUxS05teHpOV2RLY0Rnd04wdG9RVUppTDFSbFUxTklWRzQzYUdSdlYzQXZhVnBCVGtFNWJXUnVNWE5xWXpGcVJVSXpVM0pPY21GVlVuVlBDalpUYmxWdk4wTm5kVEFyYmtWM2N6WnhSbmxQZVd0MmFGUjNlVk5uVDBSRWJGTmtaRFIxTWxkTlFXbEpTMDh3VEhwYVRGTlpkblF6Y3pKclJqRjNRU3NLUTI5dlZqZGtVMk15TldjeVZ6UnZUVmRIY1VKeGIxbERTVTg1VkZZNFNqTlViRkpXVkdaeVJIQTRSbTV6YjBWcmVrb3ZSbmhQWkN0NGJ6RjFhR05EVndwTWIwMXhNVnA1WlcxaGMxVXZSRGhzYjJ3cmRYWlNUbTQwU1hseFEwRkthREJvV2pKc1VHODRNakZ2UlVSU2FUSlZjMFZuUW5SU00xSXJObkkzYkVwQkNtTm1jWFpSY1dzMWN6QXpXQ3M0ZDBVelZIaDFPRTF2U205V1UxZDZUa2RaY1VOaGVsWklURk50Vlc5bVFtZHJhakpEUXpkbFVWWnRaMEZ2ZWtSUVVrWUtTWFpNYVRNMWJtMVlUMjlhWlRsU1QyVXZiMk4wZDNOM2RqQTFjamQ0TVVOdU9HaFlWRFJNV2tOb05ESnNPRU12WkdSbVdTdDRSa0ZUTVhGaU5VeDFad28zUmpKSVYzcHFlQ3RaTlhCSFRsTXhOVTFPTlRaTmVuVnRaR2RCYkRsbFpHOVVUblIxVDJ0aVMwVktVMmd4TXk5YWEwVkRaMmRGUWtGUVRYSjRRbTA0Q25vdmNYUkhVM0Y0ZUZkYU1sRjFSbE5aUkdOVVprOU5SMVk0UVcxNlJrRjBOamhZYTBKbU5WVk9WM2RtYVZCNUwxSlNjRFJMUzFZMllscExSbEk0TDNZS09XTTFUU3QyY0d4dmVqRXZObTF0V1RNd01sRmphbVpRVUdGemQyYzVNRXcxVFZGT1IyOVlOMWhaYzI5d1kwOTVWMFZoUkZVd05XVkZTQ3R5T0dGTVV3cHBWemhLVDJoc1dHSTVabnBhTm1STVEwVkNlVVpZUzBSUkwzbFVNMmN6TkVaTk56SmFPR2RwT0RCcFZuSnFNMGhWYWpOSlNqUTRLMHRIVUVRNU1IWk9DakJQU0ZKcVNXWXpXVVJJZHpGMmJGZGtWamR2TDI1TlRXVnBaM05rZFhrNWNXRnFSRTEyVlRGYVptRm1UVzFYUWtabFRVVjZTMVoyTlV0VVJqbHpNR29LT1U4eWNVMUhNSHBEYTI5SWQwOWxZbTVFT1hoaGEwcFFOalppWkhJeVdIcFBZMFJFUm14V2NrRkxTVEJ1TVVwcGEyeElNbWxFZWxnelNEQXZXbVp0U2dwVGRGaE5LekF5Y2tWbFpHOXZOekJEWjJkRlFrRk9hRzlOV2tKSlMzZFJlREIwVXpOTmRUWlJNV3hxVDNSQ1JuUXlUMWtyVTNKbFZTdDRlQzltWlRjMUNuVk5kalYxWmxGM05tUkNZek5LY2toME5Xd3liSFZFTjNKUWJrUlBTbkJuUzNBelptVkVTblF3UldRM1JqVlFhRWxMZDNWYWMzSnFUblZHTkdvNE1GSUtaVmRQU1hWblZrODJWazkwVkVsdGJuaFVWVzU2TjFabmQxbDFPRzVKZUVsb1QxVTJVa0pKTld4SUszZFZUMnRLVHpCeVprOVdNRU13U3k5Mk9HTlJid3ByVUZGRVNXbG1kRXhzUlV4c1JIRjVTa3h1TXpsUEsyWllPVnBsYkdoemRXRldiRnA2VUZCT2VFUjZWbFZIYVVaWGJ6RkhkMHR6T1RGMWFGRmtSVmxtQ2toQmRtVkNiazFKWVZGWFpHVlVOakZQUkRrd1RIQlRVRGxrVDBKeVNFWnVOR0Z4UkdvNGJsSkpUWGRWYzBsTE9VNU1iVUk0ZHpSaWFXMVNOM1p6VUhjS1YyVkNVR0UzTjFKVVpEUlRaMDlFV0VablZEVk9NV0YxVjNNelpYbHpURk01ZUV4aGFuaHJOVXBPUlVOblowVkJVbXB6ZEhWQlJrRlZSRmxQVUhKYU5RcFFUVFpNU1cxcFdWRlZMM1pyWlVsVVJtWjNaWEJyYldNdmRIRk5iMHBtVW14b2FrWm9OMjR5VXpFM1NUTnZTWFJuTVZCaVIyTk9SVk4zUlZGMU5rUXZDazVLVUhSTUwwcHVSRUV2WWpkVFNqbDJVMDlXT0doSGRGVk1TVFJLZEc5cFpXbzJWRWxoU1hkMlMzcFNUWEZGV1ZGelpESlZiMEpqUlZOWGNFVm5hV1VLTVU1QlNEYzViRXd5VGtWaFVVdHBTWGxxYjNGMEx6UmxhRWRtUjAxYVpHMXFSMEYxYjNOclpXZzFiRE5WTTJWM1ZYRkJWMjVHTkd4S2FFNVFZM3BYVUFwSmRERmpUMVZqZGxCMWIzTkZlVFZZVjJGTU9UbG5TVkpNYUhsNVlYWXJlRWw2YkROYVRHMVVhVXN5Y1V4V00xUjFORTE0WkVzMFpETXdXalJHYUVoWUNuUjFibTFZVURSclkyMDFaazFwWmtNNU56WjJSMlJNVm5Fd1lYTXZTalpoTkVRMGVXaGhhbE5sWW0xeFVESm9XVEZvVDNCalFtbHRPVWhxZGxjNE9EZ0tja2xyWTFGUlMwTkJVVUZLZFV0VFFsWnllVmc0TmxWRk5sUllaMmRoUldaWVEyMDJibkpUWm05NWVUUkZibXN4Vkc5VVduUXhORlo1TmtsUE1XbFBjUXAxU1VWM1kzTm9UVzVKWTNGc1EwOTRSa3BRTWxjeGRVOTFMM054VTAxVFUyTllWV1J5TXpsSlVFMHhhRlE1VDI1VVZVMXZZM2xEUVRKRFQwUkhXV2hvQ25WbFl6SlNPVTFWUlVSWVJXTkNVa0p6Y21SV2JHVjRhVmczZFhaR1pXTldNVlpZVGtsb01FaDJMemxVY210NWVHMXdXRUoxYUVSSk5WWnphbU5CVVdzS2JpdERTWGR1Wm1vMGNpdGxRa0Z5UzBadVYyNTNkVE0wYkZwQlpsazFOM1JJUzJkQlEyWXlTRmQ1V2sxcGRuRmpaRkZFUlVwaFIyTTFkSGhxVkc0eGNBcFJlVzEyU2pOVVpscE9hWGt3T0ZNelR6VjNSR1pEWTI1QlkwaDZlblpGY1U5alR6QkhPSFpEYVZwUWFHcHNjM0JMUjFod1dqSkxhVTFQT0cxSk1FUmpDazlRYVZKSlVtaGpTVTVZWW1wMmJVWlNabnBXZHpaU1ZuUklkVFZLYkdkQ1FXOUpRa0ZFVDFKeVdsbHdWMWhrV1ZaSmJHWnNjM1ZvU1M4NGVIWnJVRFFLTkc1clRESmhTMkpuUTNsTE1qTnBaRU5CYzBsVUt6bEZSbnB5U0N0Rk1Ga3ZlV0pQZEdnMk0wSXlZVXhrZFVGQ1REZHlaMDVyTURobllrSnVZbkZyTHdwak1VbG5LM1EyU0ZOMk5URmxZVTFxUmpScGRXeGFXRTlOVlZwV1ltbHhkRVJKYXpCMk1UTktaVVo0VWpKWGJVNXNNRWx1VDJoelFYSlBWR3g2YjNkb0NqWnRRa3czUVhwVk1WTTBiazR6SzBsdFJtMUVWekJVV0ZsV00xUnhiV3N2YW1jelVXWkliMFJ4T1RFd2NuTnFUa3c1WkRWMmVHeFBUVmt5VEVoQ00wZ0tUMWRKVDNGc2FWQmtjelZKYUVzdlFqVjVLMU5YVUdOcFJWb3piRVU0Y0U5T1prUkpZMFpuTlhkeGEyTnBOSGRNTUVOM1lUVnRaRWN4UjFaTlZXVnZjZ3B0YTFGNVpFdFpWbk5SU0VKT2VVTk9OV0oyZEhaU2RVaE5UVWhzZERaR1JuaG5Oa1U0V0dsQ09ETlFhbXhYVFZWTmJUZ3ZXa1F6Wkc1V09EMEtMUzB0TFMxRlRrUWdVbE5CSUZCU1NWWkJWRVVnUzBWWkxTMHRMUzBLCiAgICB0b2tlbjogazl6Ynhwd2ZwNmI4MWhpN3hiaHZucXVrc21tdDVhOHd1ZTFtbmhrMHVmOXBrYjlucWp3MWd5dm5xMnhpNDdvZHV2ZmY2MWJ5OXoydGl2d2d6a2F2YTdrY3BqeWw1aW51dHNncTR1NWF4dm1tNHFvMG5sMHhueTRpb3J5MmxzZWgK\"\ + \n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '3864' + - '13072' content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:43 GMT + - Fri, 16 Jun 2023 15:37:55 GMT expires: - '-1' pragma: @@ -520,6 +566,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -531,70 +579,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks show + - aks nodepool update Connection: - keep-alive ParameterSetName: - - -g -n + - --resource-group --cluster-name --name --node-taints User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-i279bml7.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-i279bml7.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/54cd2497-73c9-4165-85ec-5bf4767affa9\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '3864' + - '954' content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:44 GMT + - Fri, 16 Jun 2023 15:37:57 GMT expires: - '-1' pragma: @@ -613,39 +630,58 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": + 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": + "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": + {"code": "Running"}, "enableNodePublicIP": false, "nodeTaints": ["key1=value1:PreferNoSchedule"], + "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks get-credentials + - aks nodepool update Connection: - keep-alive Content-Length: - - '0' + - '510' + Content-Type: + - application/json ParameterSetName: - - -g -n --file + - --resource-group --cluster-name --name --node-taints User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/listClusterUserCredential?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 response: body: - string: "{\n \"kubeconfigs\": [\n {\n \"name\": \"clusterUser\",\n \"value\": - \"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VVMlZFTkRRWFJIWjBGM1NVSkJaMGxTUVVsbFdHTmpPREpwZEVwblNXeEZaSFpCVjFoR2FXdDNSRkZaU2t0dldrbG9kbU5PUVZGRlRFSlJRWGNLUkZSRlRFMUJhMGRCTVZWRlFYaE5RMWt5UlhkSlFtTk9UV3BOZDAxNlJURk5WRVY0VFhwSmVWZG9aMUJOYWtFeFRYcEJlazFVVlhoTlZFbDZUV3BLWVFwTlFUQjRRM3BCU2tKblRsWkNRVTFVUVcxT2FFMUpTVU5KYWtGT1FtZHJjV2hyYVVjNWR6QkNRVkZGUmtGQlQwTkJaemhCVFVsSlEwTm5TME5CWjBWQkNqQlRTSFZuY0hNMVdVeElWSE4xUmxRNU1tVXJVMWx2WnpGbVRXNVJTSGhvUTBwblVtTm1Ta3RaUW5sVmRGRlFVREp3YkZwcllrcHROWFkwTjNoc1Jqa0tNbGRIZURWWlpHeFZja0ZoYUZkUVJHbE9abGxCVFc0d09Hd3dUakpNYzBObmJGcDZaa0ZSZUZsQ1RHaG5MMVoyYVhadFlucHhlbEpYZWpGdlJYRkdTQW9yUWxkNU1UbFpWRUZTV0ZaMFVuWllXbWs0Tkc1S1J6ZDVWbG95YkUxdVpreGlWamN6WkU1SGNqYzFOV2x0U0RsUVdHa3hkbnBJUlRoME1GcE5kV2RxQ20xU2VIVlJiQzl1T1VRclpUbFNRMk5CU1RKdVNHZHlabGhNWkhGbFpWTnViRUpvZGxwT04wTnRhM0VyY1Vnd2RGSXpiV05oZFc5SmNXUnJOM1JpVjJnS1dXUlNMM0puVGtZM09IbGpiUzg0WVd0R1oyaG5RMjF0VDNvd2FtMVJZalkzT0c5Q1RuTlFhRzVhWjI4eFluWjVRbE4zZG1KcmRuUnFRVTlzU25aclNBcDRUWFZ6VVVsS2JHd3ZUa2RqVUVoRmFqVkxSV1pSUzBzM1NYWjZhekpxY2xsbmFUVjVTMU5uZVVwd1ltMXJTVWN6UTNCRmRXVklPRkpOTm5sMGNHUlVDazlSV1hsbk5YSjRORk5OWlhaWlJqWnNTakpSZVVKelVtSlRNalZPUXpoNlVEZENielZ5WW5RdlZFVXJPREpOYTFaWU0wcHJZelpSUVV0UE9DOWtlVkVLVERGUk9VazJaWFJhVHpGb2FHZzJXSG92WWtWV1NHeGhRWEZ6VHpCVVVUZG5hWFUyZVdOeFpYaEVjemt5SzFkbmJYVTJNbkpaWmxOQk1saHRURFJhTUFwNVpERmpZM3BsYm5JemVHY3dRMGw0VEdKaFNYTlJZWFJ2V0dwWVRrNVVaV3h6TTNOc1duWk1OazkzWWtkNUwyb3dZV3BuV0ZGS1JGaGpUbnBUY1U5R0NqUlFkMEZhWVRKT2RIazRaRGxNVG01UVMwTjZiMFpsTWtoUUx6VnpTelk0ZFZRM2FqSnFTa0ZrVW1wcE16UldRMm80UWxOSFQweFBOamh0Y3pSTmNWb0tURFJ5VURORGFuaEtXVUZXVFZGWlJFNTNLMEo2TWtrMVVtSXpjVkpzVWxwbFZuQkhSR2szVlZSWVRVTkJkMFZCUVdGT1EwMUZRWGRFWjFsRVZsSXdVQXBCVVVndlFrRlJSRUZuUzJ0TlFUaEhRVEZWWkVWM1JVSXZkMUZHVFVGTlFrRm1PSGRJVVZsRVZsSXdUMEpDV1VWR1R5dFhWQzlKU2s1U1dVcFBNa3RMQ2xkVWJrcHNRa1F2Y20xSU9FMUJNRWREVTNGSFUwbGlNMFJSUlVKRGQxVkJRVFJKUTBGUlFYZFZTVkptTUhkV1dGTXJSMG9yUkZwVlUzRTBiRWsyTldNS1dWQlJTbkZ2Vm5nelMxRmFSWGhFVjBKVGQwUTRabmgyZG5SYWMwRkNlVTVXVlhCV1dFY3ZVbTFtU2s1NGJUZFBWVGR1Y0ZCeWJqRkhNbk5WVlU5MWNRcHBaRmw2YVRWT05reG1Ua1JRUVVGb1R6ZERVSEZaVm5admJHZ3hORXBhTldwU2JHWjNOSGRZVlROV05XcFRUWEpWY1dOV2NXczNXRkl6VHpaNFJFMUlDbTFXWWxwTVp6bDNTVGMyZUhkb2RtWmpVREZpWVhRd1JVeG9TazEyTlhaMVZDOVhUMkU0UTJkU1ZXWklRVTVFV0hWRVJVRktlV280WldaQ2RITkhkbllLVDJsb1REaGhXbUprT1d4amJYRTViM2x2Vm5CUlVGRTViMjVEVHpaRWFqQlNZaXRaYVc5SVYycGFOVU5qUzFOc1lYWXdOSEYwYTFGbk5qZG5SWEJvYkFweFNESmpPVVJqVkVWSlExUldhR1Z3WTFkbEwxcHlVemxDY0RkSlNVNUhLMjFDU1ZocU5sVTFiVXRWZFVzeFVUVkZiRnBXS3l0TmNsaGtXV000ZVRsVENuVm5XWGRIUTFkVGF6aDZRVFpvYkZSUE16Uk1ZM1kxTlhBemVVUjRVRUZxVlZRclJVWlJlRkJyY2tZMVZ6UlpiMUZJUlRWclNsWlBZMWQyYTNCeVNETUtlSFk1YkUxcFNVVTRjRlZEYUZJMFVYWmlhV3hNVVhWMGVqQktVRWRsWW14RmFFaG1TSFY0VFRkWWFFaHRXVE15YlZCdWEwRTBNMUIxV0hrdlpsVmtSZ3AyVFVremRWaDFOVmx5Um1RMlMyUTBaa3N3Ym5KS1NrNXFTWE0yYUdOQmVVRTBWek5zWlhwRVNUaGlORWxNWTIxRUwwaHJWWEowVlV4cU0zZG5jREp2Q2pjMFdXaHdObEpCUWpSeFNUQlhjbk5MU0M5UWQwUnlOMUJWVEdOYWVIZDJaVlJaWWpORVpXNWtaMEpOVG5CdVMzQjJNa05XTlZac04wZHNialJzVVRrS1psTnBVbFJ4T1VoT2FIRjNNelYyZGpCV1kydDFiRE4zU25BNEsxaENjazVaWVZJclNUTTBNbHBrUVU5WU1VOTFSVEZITldad0t6QmhNMXB1ZVhBclpRcFBkamR1TTJwTWREUmhaa294VUdoeksxRTlQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBzZXJ2ZXI6IGh0dHBzOi8vY2xpYWtzZG5zb3BwcHgybi1pMjc5Ym1sNy5oY3Aud2VzdHVzMi5hem1rOHMuaW86NDQzCiAgbmFtZTogY2xpYWtzdGVzdDVoNHY2cApjb250ZXh0czoKLSBjb250ZXh0OgogICAgY2x1c3RlcjogY2xpYWtzdGVzdDVoNHY2cAogICAgdXNlcjogY2x1c3RlclVzZXJfY2xpdGVzdGl3d3N4dGhheWVfY2xpYWtzdGVzdDVoNHY2cAogIG5hbWU6IGNsaWFrc3Rlc3Q1aDR2NnAKY3VycmVudC1jb250ZXh0OiBjbGlha3N0ZXN0NWg0djZwCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogY2x1c3RlclVzZXJfY2xpdGVzdGl3d3N4dGhheWVfY2xpYWtzdGVzdDVoNHY2cAogIHVzZXI6CiAgICBjbGllbnQtY2VydGlmaWNhdGUtZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVWklWRU5EUVhkWFowRjNTVUpCWjBsUldIaFljbkJCVjJzeEsycGFOU3RPVWtoamFVZDFha0ZPUW1kcmNXaHJhVWM1ZHpCQ1FWRnpSa0ZFUVU0S1RWRnpkME5SV1VSV1VWRkVSWGRLYWxsVVFXVkdkekI1VFhwQmVrMVVWWGhOVkVWNlRXcEtZVVozTUhsT1ZFRjZUVlJWZUUxVVNYcE5ha3BoVFVSQmVBcEdla0ZXUW1kT1ZrSkJiMVJFYms0MVl6TlNiR0pVY0hSWldFNHdXbGhLZWsxU1ZYZEZkMWxFVmxGUlJFVjNlSFJaV0U0d1dsaEthbUpIYkd4aWJsRjNDbWRuU1dsTlFUQkhRMU54UjFOSllqTkVVVVZDUVZGVlFVRTBTVU5FZDBGM1oyZEpTMEZ2U1VOQlVVUkdRazFJWlhwS1oyMXZlVUkxTjJReU9USm9lWGdLV0ZSVE5HWjViRlpHYmxac016TmFhQ3M0WWxSVFIxbHBSV0pOYVRCTFlsVkxZemx0VVhWUk5URnRiWGh0VDNWUldtdzFLME5aTkVkaFdXMW5VSFl5YXdwVU1XbFRXVWxFYTJKdlVqVmpLMHRGVUhkSWJHOTNhSEZCT0VGVVdFOXVVMkphY1RGM1NtWlROM1JMT0RWVFZtMTVkVWxhVVhBME5HeEpVa2hrUVdGekNrWmlOSFZITVRsME1rUmlWVzluWkc5T1YyMDJaREV5U0dsbFVVbFFiMjVwTlc1Nk5ra3ZWR0ZsVW5adFNETnpZbHBaUmtGWldtWmlVbXQwY1UxM1dUZ0tkMkpIVFhoTFZuVnphVTB2TldkeFRqSmlTa2xtTjJjd1QweHFXR3huTVd4VmNFNUNRMFowYlhCdFJqWkNXR3Q1Y2pCRFQwWTFSRmxTZDJGUk5VaFFSZ3AzYjJoNU1GRkhhMGw1UVVGelpuTkhRV3hrV1c4M01ESTJUVEpPVkhrdlZWZEJUMnRNZG13MFdHeFBVbWN3VVdKaUx6UmtRamR1YjNaUlYzUk1URk5XQ2pGMk5IRlFaRFp4YVRSRFEyTllSR0l4VlRNMWFsWmlXVkZ4UmxwT1VuUlVaaXRQU25odE5VbEpkbTFLTHpGd05XMHlWVkpKVFVoc1pFeEtSSFV4TWxJS09VOU5OWFZ3VVhWd1UzQkpVbGhCY2pnclJrWkpjSFJCWm14VU5sZDJaUzlaY0hjNVNXWmtPUzlHY0cxNE5WTTNWSEV2Y1VOc1RuUTFVREIxUTNWbk5nbzJabU5JU3k5dWVVcHRUR1ZHYWsxWlJXTXJUR1p5VmpVMmRrMXRXRlppWm5sbmVrdE1TMjlVZDNwSU5VVkNZblZMU1dKbWExSmxUMDVQUVVsUVJXdEhDbFZhUWtOdGJrbzRWRzkzZERWSVYyRnJXVGh6VTFaS2VsSnFOazlYZW1OMmRrSmhhV2htZVVNMlRYRmpZMWh1WjAxSFdGaG5OMUZXYkVJeWNuWmtZMElLZVRZdmMydEdNVlkxVWsweWNUZDJNWEozYUZwaVVUUlJWME0xTUc1QlVWaEJkRzVLVFdKM1VHVnVSMkp1YkZGSU9Wb3lNMUprYmpsaGFVUmxkMWR0VVFwTmEycDBjM2hWYkVvd2VEZzNNVUowUjNST2F6SlJTVVJCVVVGQ2J6RlpkMVpFUVU5Q1owNVdTRkU0UWtGbU9FVkNRVTFEUW1GQmQwVjNXVVJXVWpCc0NrSkJkM2REWjFsSlMzZFpRa0pSVlVoQmQwbDNSRUZaUkZaU01GUkJVVWd2UWtGSmQwRkVRV1pDWjA1V1NGTk5SVWRFUVZkblFsUjJiR3N2ZVVOVVZWY0tRMVIwYVdsc2F6VjVXbEZSTHpZMWFDOUVRVTVDWjJ0eGFHdHBSemwzTUVKQlVYTkdRVUZQUTBGblJVRkxjMEp6V21sR1VWSlBZbWNyU1c1V1ZFVlJjUXBhWkZBclZ6TTFPVmxDU1doYWR6Um5hVkp6YWxoT1ptcDVNRE5KVEc5SWVIcG9kRXB1YUhWM2IwSmhOR2d6YjB4VlRpczRWSEpXUzBoVE5VVXJVazFDQ2xWTWEzVTFaeTlGWTJoQk0yNUJOVkJaTVVrelJVZEdXa0ZRVWpsVU0wWnJVeXQwTkdvNVJYcDVaMlJpTVU5WlMzUk5XVEZFYkhKU01UZG5ObUZQTnpBS2VFSm5Uems1V0hKTloyOWhUVUpZTlc1bVUzUlBiVmt2VGtac01IUTBkbGhYWkRWeE9EWXZZbmcwYzB4dlRuRk1aVkoxSzBSTU5WQm5hbEU1Ym1SUmNRcG5VRkZ2YW1nNWFXRjRSSE0wTkZoWFpqQnFMMFZUY25wa2JFUkJOR2huTkZac1RGaEtVakI1TUVWVFpVOU1kVU5qU0RGbVZHWTFTVWhvZEVjdmMweGxDakUzVlZWcWNGQm9ka2N3WWxNMVVtWnFPVFJHY0VWQ0swWXhTVlpCZUdoelpHdzFkRGRIUXpaT2JGaExabXh5ZGtoTVZ5dEtSMEZLVjNGV09USm1TRmNLU1RKNmVuaEtSVVY0Tmt0MFVuZDNSbXBsTmtWbFREQnBVWEl4UWs1aGVYTkxUM2cxYzB0YVRpOXBXWHBsVTNVeU5ITlNNa0pRUVdKVFdETmFibk0zVkFwUGRrcGpWWE0yWjFWeWNtSTNZMlZSYjFCbmNUUk1SSFpYTDIxcVprcE5ObXQwUjJwTlZuUjVPRGxsYlROMVNuVXlhSGxETldzMlRqTXpValJ1ZVdsWUNrUkVTalZsZVZWMFJITnFRMUZKWld4bFkxQlROekJzV0dGRGFWTnpWVTR4ZDJwT1oxQXZRMjgzUzBscmFYVk1jRzl4TVVKb1FUbFVaMkl5VDNwTGJHUUtlRWRJWkVkTk0xTlJOMnBRZVZCQlMwVmxOWGRXVm1wTlFVRnFaRWxvYWxWeU9ETnFaRzFNU1ZrMGFXNXRTMk0zVUhSc2JGTk9aV3hrTjNCcmJUVnVkd281Wnl0NVJsTnVXRWxuT1V4UWNXVk1aVzFSVWxwU1Z6RnlSM3BFVjBSdVRXdG1hakF2Y1ZOaGVVZHFaVFpKUW5sVVozRXdaVkpLY1ROS1VVOU1kRFV4Q21sNFQwbHZVRTlCVG1OeWRHRTNORTVtUmxkeE0xRmpQUW90TFMwdExVVk9SQ0JEUlZKVVNVWkpRMEZVUlMwdExTMHRDZz09CiAgICBjbGllbnQta2V5LWRhdGE6IExTMHRMUzFDUlVkSlRpQlNVMEVnVUZKSlZrRlVSU0JMUlZrdExTMHRMUXBOU1VsS1MwRkpRa0ZCUzBOQlowVkJlRkZVUWpOemVWbEtjVTFuWldVelpIWmtiMk56VmpBd2RVZzRjRlpTV2pGYVpEa3lXV1oyUnpBd2FHMUphRWQ2Q2tsMFEyMHhRMjVRV210TWEwOWtXbkJ6V21weWEwZGFaV1puYlU5Q2JXMUtiMFEzT1hCRk9WbHJiVU5CTlVjMlJXVllVR2xvUkRoQ05XRk5TV0ZuVUVFS1JURjZjREJ0TW1GMFkwTllNSFUzVTNaUFZXeGFjM0pwUjFWTFpVOUtVMFZTTTFGSGNrSlhLMHhvZEdaaVpHY3lNVXRKU0dGRVZuQjFibVJrYURSdWF3cERSRFpLTkhWYU9DdHBVREF5Ym10aU5XZzVOMGN5VjBKUlIwZFlNakJhVEdGcVRVZFFUVWQ0YWsxVGJHSnlTV3BRSzFsTGFtUnRlVk5JS3pST1JHazBDakUxV1U1YVZrdFVVVkZvWWxweFdtaGxaMVkxVFhFNVFXcG9aVkV5UldOSGEwOVNlbmhqUzBsamRFVkNjRU5OWjBGTVNEZENaMHBZVjB0UE9VNTFhazRLYWxVNGRqRkdaMFJ3UXpjMVpVWTFWR3RaVGtWSE1pOHJTRkZsTlRaTU1FWnlVM2t3YkdSaUswdHFNMlZ4YjNWQloyNUdkekk1Vms0cldURlhNa1ZMYUFwWFZGVmlWVE12YW1salduVlRRMHcxYVdZNVlXVmFkR3hGVTBSQ05WaFRlVkUzZEdSclpsUnFUMkp4VlV4eFZYRlRSVlozU3k5UWFGSlRTMkpSU0RWVkNpdHNjak4yTWt0alVGTklNMlptZUdGYWMyVlZkVEEyZGpabmNGUmlaVlE1VEdkeWIwOTFiak5DZVhZMU9HbGFhVE5vV1hwSFFraFFhVE0yTVdWbGNub0tTbXd4VnpNNGIwMTVhWGx4UlRoTmVDdFNRVmMzYVdsSE16VkZXR3BxVkdkRFJIaEtRbXhIVVZGd2NIbG1SVFpOVEdWU01XMXdSMUJNUld4VFl6QlpLd3BxYkhNelREZDNWMjl2V0RobmRXcExia2hHTlRSRVFtd3hORTh3UmxwUlpIRTNNMWhCWTNWMk4wcENaRlpsVlZST2NYVTNPV0U0U1ZkWE1FOUZSbWQxQ21SS2QwVkdkMHhhZVZSSE9FUXpjSGh0TlRWVlFpOVhaSFF3V0ZvdlYyOW5NM05HY0d0RVNrazNZazFXU2xOa1RXWlBPVkZpVW5KVVdrNXJRMEYzUlVFS1FWRkxRMEZuUW1SalowRjVSMGxCYURnd1ZUUkVObGxaYjJoaWVESlBPV3RuYjNWelJ6bGlZVEZ5TldwbmRrOTFlWEYzUjJoTVlXVlZURU5RSzB4VGVRcEpRUzh6YW5OaVlYZFdhMXBUUkZOU1QzZzNkREEyYVM5S1MwWlNRMWxHVGtSQ1ExZFRRVlF4VW1jeWRVRXJVakpqYm14UVRIcEJkUzkxWVRSTk9YZHdDbFZKZFhsT1EzZHZRVGxrVm1obGVuWmFhbFk1VTBwUWJFRkNZMkZFT0ZsQlVVZE9iWGxwU2xobUwwcGlZblJ2VXpSM1MzUm5jVEY0WVRWbmFUQnZaRGdLWWxGc05XaGxMMEp0YWxSa2NtRnpPRk5uTW05d2VFdHNPRVZYU2tVMlYwOTVjMXBqVm05c05XbFVZVUZUVkhwVFVHbEhNRkY1VFVsMlpHSnJjeXRITndvcmNXRXZZbFJNVjIxVWJpc3pSR2xYVEVnNE5qRmFWVGR4T1RsMFkxQk5aVFJvYzFKTGMyWklSRXRQZGtkbVZYSjVXakkxUzFodk1VSTVXRGQwVkUxckNqaEdURXN3U2tvMlpHWlJZbll5WVdKb2EzRmlTazk0U1ZWMVptcFJOVEZ4VG5KRFFWZDJNVlJGUVUxWU1tVjRlRkF5WjBOUk4wcGlTa0ptV25JMlNqQUtkazFVVG1WbFYwTnpOa3RHU1hkeWRYRjBkemx4ZDNVdlJsWnVNVXhITUcxdVFWZzJjM2hFVERWSVMwcDFiWE41TlZORlVsRXpVVmh5Y2tsYVF6aG5Vd3B6Yld4bFkweFdaRmRtWkVkWk1rVkxjM1ZwYzNJeFpFcHFLMnA2WkZOYWRYWlNVSEk1Y3pWV2VWQmlVbVZYWXpocWFGSklhVGt5VXpobFlpOVFUa1V4Q2l0eWNteHdhMW93YUZKNlFtcEhSVUpUWjJ0eU5FaEpjWFp0UVRCeVVHWlVaamxMUmxwV2RuWXhSbFYyVFVwWlpGbzRTMjFvVFVSbVdtWnNWRXhLV1VjS2VDOUZNRXRpSzNaMU56RkNjMGN4ZHpCSGEyOTJhbmhwWVVwMGNXNDRWRkkwV1VSWmJUQllOMkUyUkhFeGIyRkVaVWRpU1V0dVEwSlBSbk4xWkc1RVNRcHNkREZ3ZVRVNFJDOVBZME41VFcxWlJXdERVblJ3Wm1OTlJrSnVWelpwYWt3dlNXeFFiSEJCZUdJNFVUUTVSWGhOVVV0RFFWRkZRWGxVUzFWbmRVRklDbG8wVVV0RFdsbFNLMGcwTTNSb0wzaENOM0oxYzBkRVRYQkdSbEZwUTI1blZXcG1XbEU0S3pSbk4ya3JhVlJzUm1GTmFETmFNSFV6VEVGUVVUSmlPWE1LYTNSMVlVMUNTV3BHYUhaelFqbHBOVGxTYzNoTWIycDZPV1JzTDFsdVNsWXdlVEoxZEdGdVduZHliazRyYTJwQ1YwcG9XWEZ6YlhGWlJ5ODNXSEJrYXdwekswRjFkVEExY2xSbWJtVXJNRlptY0c4MmNIQklZMk5hVkdwaU4yVmhSRGRxWlVOTk4yZEhVU3QzY25rMmMwUlZVa1EyVW5kSFNYZGtORTFNYzFkSkNuRldSazFXVFM5eVlrUnJRMGhoUkRnelJHaFZVR3hyV2xKTGRtZFJjVUZTVEZSVE9YTTRObWhVYzBZeGMwRktPRlYxZEZCb2RIZzVOblpJT1dwNmJWQUtZM0phY0dvemIzTnBkMnhSV1dsRVRVOWxhWE50YlRGNGVrOTFXa2xqWW0xM1lreHpaalUyWmlzMVZtaGpPRU5QZUdkVlFVUkNZV0o1YTNkRVptVk9TUXBYUkRSSlJURlpha1ZOTTFGWGQwdERRVkZGUVN0eE4waEdRVkp3UVVKcWVTdGlNMDEzVFRZclNuWXpNbmxDWVhZMlRVSTFhbGtyWlU5RmNUSlRPVGt6Q2xKVlVTOHJaSFo0YzFKMFFVSm5iWEpaUm14U09DdHFORzFWTmxoblExTTBTSFU0U1VscVowUkNXbEJ6Y0RZdlZEUTVaeTlVV1ZkRVVWQjRUaTl6WkZjS1NYTXZiREY1VWxsTWVIbDVaV3d2VW13dmFGTnlOV2RWUnpaTE0yaHhZMVpDWkhwSlEycHdaRlJ6UmxSdWNWZHZaMlp0WkU1MVlsSklPRWhuTjFreVVRcHFNV0p3V21sWWJqRkVjR3BPY0ZCc1VrOUVVVzlyVjFsbWNYSkZaVTVvUmpOek1FWnZOM0JyTURaTVdtNUZVakJtTUhWVmMwUk9jbVZhTlV3ME9EbG5DbFlyV21ReFdEVkxUVkZ0TWt4M1F5dEtWMlZ3V0RZd1JrMUdkVWgzVm1GdE1GUTBNVWxsUW5sdmEyZEZPVTUxVkdKQk5sSlVUSFY0YzJsalNHZGlSRUVLYmxGVmVWZE9PVkZoTVdoS2NIbHFZME5rYmxSa2JrMTNhMkpvT1c5bFZsSlpWRTVVU1M4NGJESjNTME5CVVVKc1RFdFpOVEpsV21aVE5uRjNaakpMZVFwRWRWbzVSWHB5YkhCRU56ZFBka2wwWm5sYU9FVnVURmhhV0Zrdkx6SnFUamxGZWpoUVIzbEhPRXRtTm5KaWVVTjVZbWgzYUhrMVZpc3hRbWc0TDNwdkNqRlZiWFlyU0VGeGNsY3phRGxOVTFwVlRFbGhSVEY2VGxGU0syMUJjU3RoYlVWNldVY3hXQ3M0ZWpGRVVsQTBSVmROZFZSSFdscDFWR05IZVU1NFJVY0tkVk40UlU1MlMwOXJlR05FZFZaSWVVcE9SMVJ3UjA5aWJYaGFRMWszZG1reFFsTkNObkJHVlZweVJUQnROMVJzY1VnNUx6RmFNbEJhTWpVelFqaGtaZ3BQU25WNmQyOTZiRkZRTkRoRVFtOUZlV3h0VUhBeVdqY3dVbGhGU1Zwb1JWQnJlWE5KWkZCaE4zSkhha2syVnl0VE9HOTVRamhRTWpjemRrNTRjVmt6Q214SmRIcHFVVXRzTjBSakwzZFBSMFpLYzFKMWF6bE1aV1pPWTI5d1pDOVdXalV3UmpGRlRETnRVRkZhU1VKV1ptVlVTVmxVTHpkR1VWRjRWMnBQTkRrS1QxRkpXa0Z2U1VKQlVVTlBZa0pKY1RaNk5rVnJZV2R3THpReEt6RllZblpVUldGVE9ESkVTbmxsUkVaaWNEQnFkV28zVERaS1FXOTVSbVpaY1hZNGNnbzRhVVo2ZWt4aFZFeFBkMFYxV1ROVUt5OVVWRVozYlUxbFdqSlVXVEpPUlVoblJFMVlTR0o2T0dZME1VZDFLM2hWYVdNeE5IbGhjVGRLWWxkdWJ6SkVDbHB5YURSRmEzaFJTRkZPVGxKQlpsbHJOUzlXV0hOUWR6WnlhVEJLZFdsM1VDdEpNRTVyV1VGWmEweFNNa1l4YW5ZMVJEbEtabkpHYkZWc1VtZGhUM1VLZW1WV2EwMXhOa1ppV0hwaVZrNU5TVEZDYUM4eE9VRkxaakI2S3podU1IRlRSa1lyUjA0MVpraENMMFEwT1V4b05pc3JUalZHYjBkV2NHeHNTRVJWYlFwdGVTOXZhMGhHTTJGMVpYUjBaVEZIZUdodVp6TkZkekpuVkU1TGNHVjNOME4wVUZkRldra3lVME5wUWtGbWJ6VkVlbVZUYkZWek5XRnhVbkZJWVZobkNqbDFORkpxU1U1SVJGaDVOSGhWVlVrMVZuQnlVMjh2Y25VeU9ESXJiRlZXUVc5SlFrRkhMMnBXWjFwR2RXMTNhbUpGT0doTGFrOUZWVU13VXpaM05VTUtNemR5T0ZaRVlVZFZTVUpIUkdVemRrMTNaR2hyTjNaU1FUaGpOelp4Tkd0WUt6TmlXVXBuYkc1WmNVcHhjbGcwVTBsdU1sSlZjVGRyZDA1bmRYcHBVZ295UkVGaFpEaDZTR3MwU0dRdldHbEtOMlZwY0RCcVlrWkhLM1I0Y2pCTU0zUkVPV2R4ZDNWRk16QTBiWEJ6Y1c5d2RuSTNSVFZGTjJwb0swcDNZVzg0Q21GTWFHWlhUVU5vVFU1YUszSlpTbTFMUzNBMmFISnFlVU5FWTNGaWIyOXhRM2s1V25wa1NYUlpUVGhpY2todFNVTmhTbkp6Y2poS1FsTmtORWgyUWlzS1p6VlBUVkEyYlVKaGJYTnlUakJsVjNKemEyWlVZV2xoVEhwVmNYRnBWa0Z0U0dGUlZWbDVNbGhzZVdFMldGWkdkR1ZFVjJSSmEwOHpla050TTJSQ1V3cDJSbmRoVVhCM05HazBhV3RGWWxvMlEyczNaRmxLTms5RlpsSk5XVTlxTTJsT1YxbFFlVms0TkZSc1QyWkxXVVpUWW5kalpVZEJWaTl3U1QwS0xTMHRMUzFGVGtRZ1VsTkJJRkJTU1ZaQlZFVWdTMFZaTFMwdExTMEsKICAgIHRva2VuOiBsMHN4Z3R6M2dteGI0NzBieXd3cjltczFrcHdvazl0N2x0bjBwMnhyOWlycDdiMjF4eTJuMHptMjBsazc4eG52a3VlaTVhdWM0M29oOThwZjFscTB2c2h6ZTg0ajRnejhwbm1iZ3I4ZXVnb2NvbTU3YWhuNmZoMnVrNDI2dWo1awo=\"\n - \ }\n ]\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"nodeTaints\": [\n \"key1=value1:PreferNoSchedule\"\n ],\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/36d1b0f0-c9d9-4910-bc2b-3e3b5f6297f9?api-version=2016-03-30 cache-control: - no-cache content-length: - - '13084' + - '1013' content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:43 GMT + - Fri, 16 Jun 2023 15:38:01 GMT expires: - '-1' pragma: @@ -661,7 +697,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -669,7 +705,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -679,33 +715,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-taints User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/36d1b0f0-c9d9-4910-bc2b-3e3b5f6297f9?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n - \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"name\": \"f0b0d136-d9c9-1049-bc2b-3e3b5f6297f9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:38:01.6038811Z\"\n }" headers: cache-control: - no-cache content-length: - - '953' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:45 GMT + - Fri, 16 Jun 2023 15:38:01 GMT expires: - '-1' pragma: @@ -724,58 +750,37 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": - 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": - "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": - {"code": "Running"}, "enableNodePublicIP": false, "nodeTaints": ["key1=value1:PreferNoSchedule"], - "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks nodepool update Connection: - keep-alive - Content-Length: - - '510' - Content-Type: - - application/json ParameterSetName: - --resource-group --cluster-name --name --node-taints User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/36d1b0f0-c9d9-4910-bc2b-3e3b5f6297f9?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"nodeTaints\": [\n \"key1=value1:PreferNoSchedule\"\n ],\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"name\": \"f0b0d136-d9c9-1049-bc2b-3e3b5f6297f9\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T15:38:01.6038811Z\",\n \"\ + endTime\": \"2023-06-16T15:38:10.9468571Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ea8f541-0469-4a83-9410-3ea01a85fbeb?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1012' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:47 GMT + - Fri, 16 Jun 2023 15:38:31 GMT expires: - '-1' pragma: @@ -790,8 +795,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' status: code: 200 message: OK @@ -809,24 +812,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-taints User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4ea8f541-0469-4a83-9410-3ea01a85fbeb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"41f5a84e-6904-834a-9410-3ea01a85fbeb\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:25:47.6057933Z\",\n \"endTime\": - \"2023-03-15T11:25:56.0799434Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"nodeTaints\": [\n \"key1=value1:PreferNoSchedule\"\n ],\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '170' + - '1014' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:17 GMT + - Fri, 16 Jun 2023 15:38:32 GMT expires: - '-1' pragma: @@ -848,44 +861,45 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks nodepool update + - aks nodepool list Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name --name --node-taints + - --resource-group --cluster-name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"nodeTaints\": [\n \"key1=value1:PreferNoSchedule\"\n ],\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"nodeTaints\": [\n \"key1=value1:PreferNoSchedule\"\n\ + \ ],\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '1013' + - '1103' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:17 GMT + - Fri, 16 Jun 2023 15:38:34 GMT expires: - '-1' pragma: @@ -911,40 +925,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks nodepool list + - aks nodepool update Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name + - --resource-group --cluster-name --name --node-taints User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"nodeTaints\": [\n \"key1=value1:PreferNoSchedule\"\n ],\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }\n ]\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"nodeTaints\": [\n \"key1=value1:PreferNoSchedule\"\n ],\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1102' + - '1014' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:18 GMT + - Fri, 16 Jun 2023 15:38:35 GMT expires: - '-1' pragma: @@ -963,7 +977,12 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": + 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": + "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", + "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": + {"code": "Running"}, "enableNodePublicIP": false, "nodeTaints": ["key1=value2:PreferNoSchedule"], + "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' headers: Accept: - application/json @@ -973,29 +992,35 @@ interactions: - aks nodepool update Connection: - keep-alive + Content-Length: + - '510' + Content-Type: + - application/json ParameterSetName: - --resource-group --cluster-name --name --node-taints User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"nodeTaints\": [\n \"key1=value1:PreferNoSchedule\"\n ],\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"nodeTaints\": [\n \"key1=value2:PreferNoSchedule\"\n ],\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9df4f14-7b78-4e89-8822-27c5d5a1ea86?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -1003,7 +1028,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:19 GMT + - Fri, 16 Jun 2023 15:38:39 GMT expires: - '-1' pragma: @@ -1018,62 +1043,42 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK - request: - body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": - 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": - "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": - {"code": "Running"}, "enableNodePublicIP": false, "nodeTaints": ["key1=value2:PreferNoSchedule"], - "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks nodepool update Connection: - keep-alive - Content-Length: - - '510' - Content-Type: - - application/json ParameterSetName: - --resource-group --cluster-name --name --node-taints User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9df4f14-7b78-4e89-8822-27c5d5a1ea86?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"nodeTaints\": [\n \"key1=value2:PreferNoSchedule\"\n ],\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"name\": \"144fdfc9-787b-894e-8822-27c5d5a1ea86\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:38:39.6977308Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d464a627-cc23-450c-a20d-b89239fa59a7?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1012' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:21 GMT + - Fri, 16 Jun 2023 15:38:39 GMT expires: - '-1' pragma: @@ -1088,8 +1093,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' status: code: 200 message: OK @@ -1107,15 +1110,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-taints User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d464a627-cc23-450c-a20d-b89239fa59a7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9df4f14-7b78-4e89-8822-27c5d5a1ea86?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"27a664d4-23cc-0c45-a20d-b89239fa59a7\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:26:22.3900363Z\",\n \"endTime\": - \"2023-03-15T11:26:32.8630545Z\"\n }" + string: "{\n \"name\": \"144fdfc9-787b-894e-8822-27c5d5a1ea86\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T15:38:39.6977308Z\",\n \"\ + endTime\": \"2023-06-16T15:38:48.5099663Z\"\n }" headers: cache-control: - no-cache @@ -1124,7 +1127,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:52 GMT + - Fri, 16 Jun 2023 15:39:09 GMT expires: - '-1' pragma: @@ -1156,34 +1159,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-taints User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"nodeTaints\": [\n \"key1=value2:PreferNoSchedule\"\n ],\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"nodeTaints\": [\n \"key1=value2:PreferNoSchedule\"\n ],\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1013' + - '1014' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:53 GMT + - Fri, 16 Jun 2023 15:39:10 GMT expires: - '-1' pragma: @@ -1215,34 +1218,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"nodeTaints\": [\n \"key1=value2:PreferNoSchedule\"\n ],\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"nodeTaints\": [\n \"key1=value2:PreferNoSchedule\"\n ],\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1013' + - '1014' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:54 GMT + - Fri, 16 Jun 2023 15:39:12 GMT expires: - '-1' pragma: @@ -1274,34 +1277,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-taints User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"nodeTaints\": [\n \"key1=value2:PreferNoSchedule\"\n ],\n - \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"nodeTaints\": [\n \"key1=value2:PreferNoSchedule\"\n ],\n\ + \ \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\"\ + : false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '1013' + - '1014' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:55 GMT + - Fri, 16 Jun 2023 15:39:14 GMT expires: - '-1' pragma: @@ -1323,7 +1326,7 @@ interactions: body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": + "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' headers: @@ -1342,35 +1345,35 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-taints User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n - \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74921913-0207-40c3-9d0f-bdadc957d16a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8143839-2ae6-43a2-9fe5-75bb87f8cbf2?api-version=2016-03-30 cache-control: - no-cache content-length: - - '952' + - '953' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:58 GMT + - Fri, 16 Jun 2023 15:39:17 GMT expires: - '-1' pragma: @@ -1386,7 +1389,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1404,15 +1407,63 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-taints User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74921913-0207-40c3-9d0f-bdadc957d16a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8143839-2ae6-43a2-9fe5-75bb87f8cbf2?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"13199274-0702-c340-9d0f-bdadc957d16a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:26:58.7934908Z\",\n \"endTime\": - \"2023-03-15T11:27:05.4427253Z\"\n }" + string: "{\n \"name\": \"393814a8-e62a-a243-9fe5-75bb87f8cbf2\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:39:17.6665685Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 15:39:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --node-taints + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a8143839-2ae6-43a2-9fe5-75bb87f8cbf2?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"393814a8-e62a-a243-9fe5-75bb87f8cbf2\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T15:39:17.6665685Z\",\n \"\ + endTime\": \"2023-06-16T15:39:26.2305839Z\"\n }" headers: cache-control: - no-cache @@ -1421,7 +1472,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:27:28 GMT + - Fri, 16 Jun 2023 15:39:47 GMT expires: - '-1' pragma: @@ -1453,33 +1504,33 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --node-taints User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n - \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '953' + - '954' content-type: - application/json date: - - Wed, 15 Mar 2023 11:27:28 GMT + - Fri, 16 Jun 2023 15:39:48 GMT expires: - '-1' pragma: @@ -1511,33 +1562,33 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n - \ \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"\ + Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '953' + - '954' content-type: - application/json date: - - Wed, 15 Mar 2023 11:27:30 GMT + - Fri, 16 Jun 2023 15:39:49 GMT expires: - '-1' pragma: @@ -1571,8 +1622,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -1580,17 +1631,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af541cf7-cd80-415f-bd26-e7b260dc3972?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/02d412ae-d605-4122-9cb8-1aed7109761d?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:27:30 GMT + - Fri, 16 Jun 2023 15:39:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/af541cf7-cd80-415f-bd26-e7b260dc3972?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/02d412ae-d605-4122-9cb8-1aed7109761d?api-version=2016-03-30 pragma: - no-cache server: @@ -1600,7 +1651,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_private_cluster.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_private_cluster.yaml old mode 100755 new mode 100644 index 576d35700b6..0fa36ffc7c4 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_private_cluster.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_private_cluster.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:24:41 GMT + - Fri, 16 Jun 2023 15:39:56 GMT expires: - '-1' pragma: @@ -54,13 +54,12 @@ interactions: "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "apiServerAccessProfile": - {"authorizedIPRanges": [], "enablePrivateCluster": true}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "apiServerAccessProfile": {"authorizedIPRanges": [], "enablePrivateCluster": + true}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -71,74 +70,75 @@ interactions: Connection: - keep-alive Content-Length: - - '1524' + - '1816' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-0okxtzxx.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"0857721a2fca559fce11a5881511491c-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliaksdns000003-xv7d15t8.abb0fd8d-2ec7-4c6c-b31c-7da87f14ff31.privatelink.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"privateLinkResources\": [\n {\n - \ \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n - \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n - \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": - true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\": - true\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-25c2t1wi.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"f7bb4f8a60f755cc5caa3453308d722a-priv.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"privateFQDN\": \"cliaksdns000003-caivo368.91eea64a-d327-46e9-bdf2-6b7738230b2c.privatelink.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"privateLinkResources\"\ + : [\n {\n \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\"\ + ,\n \"groupId\": \"management\",\n \"requiredMembers\": [\n \"\ + management\"\n ]\n }\n ],\n \"apiServerAccessProfile\": {\n \ + \ \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"system\",\n \ + \ \"enablePrivateClusterPublicFQDN\": true\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01bdfb04-a90d-496e-af9b-bda180f294c5?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9b52d89-16b4-4cea-b1d8-385b4e2ef142?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3719' + - '4047' content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:44 GMT + - Fri, 16 Jun 2023 15:40:03 GMT expires: - '-1' pragma: @@ -150,7 +150,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 201 message: Created @@ -169,121 +169,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01bdfb04-a90d-496e-af9b-bda180f294c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9b52d89-16b4-4cea-b1d8-385b4e2ef142?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"04fbbd01-0da9-6e49-af9b-bda180f294c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:24:44.699214Z\"\n }" + string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:25:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --load-balancer-sku --enable-private-cluster - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01bdfb04-a90d-496e-af9b-bda180f294c5?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"04fbbd01-0da9-6e49-af9b-bda180f294c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:24:44.699214Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:25:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value - --load-balancer-sku --enable-private-cluster - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01bdfb04-a90d-496e-af9b-bda180f294c5?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"04fbbd01-0da9-6e49-af9b-bda180f294c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:24:44.699214Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:14 GMT + - Fri, 16 Jun 2023 15:40:04 GMT expires: - '-1' pragma: @@ -316,23 +218,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01bdfb04-a90d-496e-af9b-bda180f294c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9b52d89-16b4-4cea-b1d8-385b4e2ef142?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"04fbbd01-0da9-6e49-af9b-bda180f294c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:24:44.699214Z\"\n }" + string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:44 GMT + - Fri, 16 Jun 2023 15:40:33 GMT expires: - '-1' pragma: @@ -365,23 +267,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01bdfb04-a90d-496e-af9b-bda180f294c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9b52d89-16b4-4cea-b1d8-385b4e2ef142?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"04fbbd01-0da9-6e49-af9b-bda180f294c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:24:44.699214Z\"\n }" + string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:27:15 GMT + - Fri, 16 Jun 2023 15:41:04 GMT expires: - '-1' pragma: @@ -414,23 +316,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01bdfb04-a90d-496e-af9b-bda180f294c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9b52d89-16b4-4cea-b1d8-385b4e2ef142?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"04fbbd01-0da9-6e49-af9b-bda180f294c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:24:44.699214Z\"\n }" + string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:27:45 GMT + - Fri, 16 Jun 2023 15:41:34 GMT expires: - '-1' pragma: @@ -463,23 +365,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01bdfb04-a90d-496e-af9b-bda180f294c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9b52d89-16b4-4cea-b1d8-385b4e2ef142?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"04fbbd01-0da9-6e49-af9b-bda180f294c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:24:44.699214Z\"\n }" + string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:28:14 GMT + - Fri, 16 Jun 2023 15:42:04 GMT expires: - '-1' pragma: @@ -512,23 +414,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01bdfb04-a90d-496e-af9b-bda180f294c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9b52d89-16b4-4cea-b1d8-385b4e2ef142?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"04fbbd01-0da9-6e49-af9b-bda180f294c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:24:44.699214Z\"\n }" + string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:28:44 GMT + - Fri, 16 Jun 2023 15:42:34 GMT expires: - '-1' pragma: @@ -561,23 +463,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01bdfb04-a90d-496e-af9b-bda180f294c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9b52d89-16b4-4cea-b1d8-385b4e2ef142?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"04fbbd01-0da9-6e49-af9b-bda180f294c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:24:44.699214Z\"\n }" + string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:29:14 GMT + - Fri, 16 Jun 2023 15:43:04 GMT expires: - '-1' pragma: @@ -610,23 +512,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01bdfb04-a90d-496e-af9b-bda180f294c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9b52d89-16b4-4cea-b1d8-385b4e2ef142?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"04fbbd01-0da9-6e49-af9b-bda180f294c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:24:44.699214Z\"\n }" + string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:29:45 GMT + - Fri, 16 Jun 2023 15:43:35 GMT expires: - '-1' pragma: @@ -659,23 +561,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01bdfb04-a90d-496e-af9b-bda180f294c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9b52d89-16b4-4cea-b1d8-385b4e2ef142?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"04fbbd01-0da9-6e49-af9b-bda180f294c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:24:44.699214Z\"\n }" + string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:30:15 GMT + - Fri, 16 Jun 2023 15:44:04 GMT expires: - '-1' pragma: @@ -708,23 +610,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01bdfb04-a90d-496e-af9b-bda180f294c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9b52d89-16b4-4cea-b1d8-385b4e2ef142?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"04fbbd01-0da9-6e49-af9b-bda180f294c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:24:44.699214Z\"\n }" + string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:30:45 GMT + - Fri, 16 Jun 2023 15:44:35 GMT expires: - '-1' pragma: @@ -757,23 +659,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01bdfb04-a90d-496e-af9b-bda180f294c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9b52d89-16b4-4cea-b1d8-385b4e2ef142?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"04fbbd01-0da9-6e49-af9b-bda180f294c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:24:44.699214Z\"\n }" + string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:15 GMT + - Fri, 16 Jun 2023 15:45:05 GMT expires: - '-1' pragma: @@ -806,23 +708,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01bdfb04-a90d-496e-af9b-bda180f294c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9b52d89-16b4-4cea-b1d8-385b4e2ef142?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"04fbbd01-0da9-6e49-af9b-bda180f294c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:24:44.699214Z\"\n }" + string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:44 GMT + - Fri, 16 Jun 2023 15:46:14 GMT expires: - '-1' pragma: @@ -855,23 +757,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01bdfb04-a90d-496e-af9b-bda180f294c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9b52d89-16b4-4cea-b1d8-385b4e2ef142?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"04fbbd01-0da9-6e49-af9b-bda180f294c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:24:44.699214Z\"\n }" + string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:32:15 GMT + - Fri, 16 Jun 2023 15:46:44 GMT expires: - '-1' pragma: @@ -904,23 +806,23 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01bdfb04-a90d-496e-af9b-bda180f294c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9b52d89-16b4-4cea-b1d8-385b4e2ef142?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"04fbbd01-0da9-6e49-af9b-bda180f294c5\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:24:44.699214Z\"\n }" + string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:32:45 GMT + - Fri, 16 Jun 2023 15:47:15 GMT expires: - '-1' pragma: @@ -953,24 +855,24 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/01bdfb04-a90d-496e-af9b-bda180f294c5?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e9b52d89-16b4-4cea-b1d8-385b4e2ef142?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"04fbbd01-0da9-6e49-af9b-bda180f294c5\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:24:44.699214Z\",\n \"endTime\": - \"2023-03-15T11:32:49.6344141Z\"\n }" + string: "{\n \"name\": \"892db5e9-b416-ea4c-b1d8-385b4e2ef142\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T15:40:03.3853441Z\",\n \"\ + endTime\": \"2023-06-16T15:47:32.6220163Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 11:33:15 GMT + - Fri, 16 Jun 2023 15:47:45 GMT expires: - '-1' pragma: @@ -1003,70 +905,72 @@ interactions: - --resource-group --name --location --dns-name-prefix --node-count --ssh-key-value --load-balancer-sku --enable-private-cluster User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-0okxtzxx.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"0857721a2fca559fce11a5881511491c-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliaksdns000003-xv7d15t8.abb0fd8d-2ec7-4c6c-b31c-7da87f14ff31.privatelink.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/50a2a0e4-7555-421b-97b1-6df2ede35656\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"privateLinkResources\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/privateLinkResources/management\",\n - \ \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n - \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n - \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": - true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\": - true\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-25c2t1wi.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"f7bb4f8a60f755cc5caa3453308d722a-priv.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"privateFQDN\": \"cliaksdns000003-caivo368.91eea64a-d327-46e9-bdf2-6b7738230b2c.privatelink.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/61abbad7-70a6-494e-b21e-3d3856c83ced\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"privateLinkResources\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/privateLinkResources/management\"\ + ,\n \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\"\ + ,\n \"groupId\": \"management\",\n \"requiredMembers\": [\n \"\ + management\"\n ]\n }\n ],\n \"apiServerAccessProfile\": {\n \ + \ \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"system\",\n \ + \ \"enablePrivateClusterPublicFQDN\": true\n },\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4569' + - '4897' content-type: - application/json date: - - Wed, 15 Mar 2023 11:33:15 GMT + - Fri, 16 Jun 2023 15:47:45 GMT expires: - '-1' pragma: @@ -1098,70 +1002,72 @@ interactions: ParameterSetName: - -g -n --api-server-authorized-ip-ranges User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-0okxtzxx.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"0857721a2fca559fce11a5881511491c-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliaksdns000003-xv7d15t8.abb0fd8d-2ec7-4c6c-b31c-7da87f14ff31.privatelink.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/50a2a0e4-7555-421b-97b1-6df2ede35656\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"privateLinkResources\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/privateLinkResources/management\",\n - \ \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n - \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n - \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": - true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\": - true\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-25c2t1wi.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"f7bb4f8a60f755cc5caa3453308d722a-priv.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"privateFQDN\": \"cliaksdns000003-caivo368.91eea64a-d327-46e9-bdf2-6b7738230b2c.privatelink.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/61abbad7-70a6-494e-b21e-3d3856c83ced\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"privateLinkResources\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/privateLinkResources/management\"\ + ,\n \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\"\ + ,\n \"groupId\": \"management\",\n \"requiredMembers\": [\n \"\ + management\"\n ]\n }\n ],\n \"apiServerAccessProfile\": {\n \ + \ \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"system\",\n \ + \ \"enablePrivateClusterPublicFQDN\": true\n },\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4569' + - '4897' content-type: - application/json date: - - Wed, 15 Mar 2023 11:33:16 GMT + - Fri, 16 Jun 2023 15:47:47 GMT expires: - '-1' pragma: @@ -1193,70 +1099,72 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-0okxtzxx.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"0857721a2fca559fce11a5881511491c-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliaksdns000003-xv7d15t8.abb0fd8d-2ec7-4c6c-b31c-7da87f14ff31.privatelink.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/50a2a0e4-7555-421b-97b1-6df2ede35656\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"privateLinkResources\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/privateLinkResources/management\",\n - \ \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n - \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n - \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": - true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\": - true\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-25c2t1wi.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"f7bb4f8a60f755cc5caa3453308d722a-priv.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"privateFQDN\": \"cliaksdns000003-caivo368.91eea64a-d327-46e9-bdf2-6b7738230b2c.privatelink.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/61abbad7-70a6-494e-b21e-3d3856c83ced\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"privateLinkResources\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/privateLinkResources/management\"\ + ,\n \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\"\ + ,\n \"groupId\": \"management\",\n \"requiredMembers\": [\n \"\ + management\"\n ]\n }\n ],\n \"apiServerAccessProfile\": {\n \ + \ \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"system\",\n \ + \ \"enablePrivateClusterPublicFQDN\": true\n },\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4569' + - '4897' content-type: - application/json date: - - Wed, 15 Mar 2023 11:33:17 GMT + - Fri, 16 Jun 2023 15:47:49 GMT expires: - '-1' pragma: @@ -1275,23 +1183,22 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000003", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": - "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.24.9", + "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, - "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": - true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", - "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": - "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", - "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/50a2a0e4-7555-421b-97b1-6df2ede35656"}]}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": + "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "supportPlan": + "KubernetesOfficial", "networkProfile": {"networkPlugin": "kubenet", "podCidr": + "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": + {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/61abbad7-70a6-494e-b21e-3d3856c83ced"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "apiServerAccessProfile": {"enablePrivateCluster": true, "privateDNSZone": "system", "enablePrivateClusterPublicFQDN": true}, "identityProfile": {"kubeletidentity": @@ -1313,79 +1220,80 @@ interactions: Connection: - keep-alive Content-Length: - - '2999' + - '3327' Content-Type: - application/json ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-0okxtzxx.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"0857721a2fca559fce11a5881511491c-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliaksdns000003-xv7d15t8.abb0fd8d-2ec7-4c6c-b31c-7da87f14ff31.privatelink.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/50a2a0e4-7555-421b-97b1-6df2ede35656\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"privateLinkResources\": [\n {\n \"name\": \"management\",\n - \ \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n - \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n - \ ],\n \"privateLinkServiceID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hcp-underlay-westus2-cx-217/providers/Microsoft.Network/privateLinkServices/ab407f0a817a240c594d22b573b86da9\"\n - \ }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": - true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\": - true\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-25c2t1wi.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"f7bb4f8a60f755cc5caa3453308d722a-priv.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"privateFQDN\": \"cliaksdns000003-caivo368.91eea64a-d327-46e9-bdf2-6b7738230b2c.privatelink.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/61abbad7-70a6-494e-b21e-3d3856c83ced\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"privateLinkResources\"\ + : [\n {\n \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\"\ + ,\n \"groupId\": \"management\",\n \"requiredMembers\": [\n \"\ + management\"\n ],\n \"privateLinkServiceID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hcp-underlay-westus2-cx-227/providers/Microsoft.Network/privateLinkServices/a06917910b3b846589e756c642144c88\"\ + \n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\"\ + : true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\"\ + : true\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \ + \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e389449-50ac-4bd3-a333-44a260c80b60?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/970c5ac4-8c52-41e8-8477-492a84771638?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4578' + - '4906' content-type: - application/json date: - - Wed, 15 Mar 2023 11:33:21 GMT + - Fri, 16 Jun 2023 15:47:56 GMT expires: - '-1' pragma: @@ -1401,7 +1309,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 200 message: OK @@ -1419,14 +1327,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e389449-50ac-4bd3-a333-44a260c80b60?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/970c5ac4-8c52-41e8-8477-492a84771638?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4994382e-ac50-d34b-a333-44a260c80b60\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:33:21.8579005Z\"\n }" + string: "{\n \"name\": \"c45a0c97-528c-e841-8477-492a84771638\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:47:55.7771013Z\"\n }" headers: cache-control: - no-cache @@ -1435,7 +1343,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:33:51 GMT + - Fri, 16 Jun 2023 15:47:56 GMT expires: - '-1' pragma: @@ -1467,14 +1375,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e389449-50ac-4bd3-a333-44a260c80b60?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/970c5ac4-8c52-41e8-8477-492a84771638?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4994382e-ac50-d34b-a333-44a260c80b60\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:33:21.8579005Z\"\n }" + string: "{\n \"name\": \"c45a0c97-528c-e841-8477-492a84771638\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:47:55.7771013Z\"\n }" headers: cache-control: - no-cache @@ -1483,7 +1391,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:34:22 GMT + - Fri, 16 Jun 2023 15:49:06 GMT expires: - '-1' pragma: @@ -1515,14 +1423,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e389449-50ac-4bd3-a333-44a260c80b60?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/970c5ac4-8c52-41e8-8477-492a84771638?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4994382e-ac50-d34b-a333-44a260c80b60\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:33:21.8579005Z\"\n }" + string: "{\n \"name\": \"c45a0c97-528c-e841-8477-492a84771638\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:47:55.7771013Z\"\n }" headers: cache-control: - no-cache @@ -1531,7 +1439,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:34:52 GMT + - Fri, 16 Jun 2023 15:49:36 GMT expires: - '-1' pragma: @@ -1563,14 +1471,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e389449-50ac-4bd3-a333-44a260c80b60?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/970c5ac4-8c52-41e8-8477-492a84771638?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4994382e-ac50-d34b-a333-44a260c80b60\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:33:21.8579005Z\"\n }" + string: "{\n \"name\": \"c45a0c97-528c-e841-8477-492a84771638\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:47:55.7771013Z\"\n }" headers: cache-control: - no-cache @@ -1579,7 +1487,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:35:21 GMT + - Fri, 16 Jun 2023 15:50:06 GMT expires: - '-1' pragma: @@ -1611,14 +1519,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e389449-50ac-4bd3-a333-44a260c80b60?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/970c5ac4-8c52-41e8-8477-492a84771638?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4994382e-ac50-d34b-a333-44a260c80b60\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:33:21.8579005Z\"\n }" + string: "{\n \"name\": \"c45a0c97-528c-e841-8477-492a84771638\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:47:55.7771013Z\"\n }" headers: cache-control: - no-cache @@ -1627,7 +1535,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:35:51 GMT + - Fri, 16 Jun 2023 15:50:36 GMT expires: - '-1' pragma: @@ -1659,14 +1567,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e389449-50ac-4bd3-a333-44a260c80b60?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/970c5ac4-8c52-41e8-8477-492a84771638?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4994382e-ac50-d34b-a333-44a260c80b60\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:33:21.8579005Z\"\n }" + string: "{\n \"name\": \"c45a0c97-528c-e841-8477-492a84771638\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:47:55.7771013Z\"\n }" headers: cache-control: - no-cache @@ -1675,7 +1583,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:36:22 GMT + - Fri, 16 Jun 2023 15:51:07 GMT expires: - '-1' pragma: @@ -1707,14 +1615,14 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e389449-50ac-4bd3-a333-44a260c80b60?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/970c5ac4-8c52-41e8-8477-492a84771638?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4994382e-ac50-d34b-a333-44a260c80b60\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:33:21.8579005Z\"\n }" + string: "{\n \"name\": \"c45a0c97-528c-e841-8477-492a84771638\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:47:55.7771013Z\"\n }" headers: cache-control: - no-cache @@ -1723,7 +1631,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:36:52 GMT + - Fri, 16 Jun 2023 15:51:37 GMT expires: - '-1' pragma: @@ -1755,15 +1663,15 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2e389449-50ac-4bd3-a333-44a260c80b60?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/970c5ac4-8c52-41e8-8477-492a84771638?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"4994382e-ac50-d34b-a333-44a260c80b60\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:33:21.8579005Z\",\n \"endTime\": - \"2023-03-15T11:37:16.4924138Z\"\n }" + string: "{\n \"name\": \"c45a0c97-528c-e841-8477-492a84771638\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T15:47:55.7771013Z\",\n \"\ + endTime\": \"2023-06-16T15:51:48.5943753Z\"\n }" headers: cache-control: - no-cache @@ -1772,7 +1680,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:37:22 GMT + - Fri, 16 Jun 2023 15:52:07 GMT expires: - '-1' pragma: @@ -1804,70 +1712,72 @@ interactions: ParameterSetName: - -g -n --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-0okxtzxx.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"0857721a2fca559fce11a5881511491c-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliaksdns000003-xv7d15t8.abb0fd8d-2ec7-4c6c-b31c-7da87f14ff31.privatelink.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/50a2a0e4-7555-421b-97b1-6df2ede35656\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"privateLinkResources\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/privateLinkResources/management\",\n - \ \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n - \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n - \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": - true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\": - true\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-25c2t1wi.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"f7bb4f8a60f755cc5caa3453308d722a-priv.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"privateFQDN\": \"cliaksdns000003-caivo368.91eea64a-d327-46e9-bdf2-6b7738230b2c.privatelink.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/61abbad7-70a6-494e-b21e-3d3856c83ced\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"privateLinkResources\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/privateLinkResources/management\"\ + ,\n \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\"\ + ,\n \"groupId\": \"management\",\n \"requiredMembers\": [\n \"\ + management\"\n ]\n }\n ],\n \"apiServerAccessProfile\": {\n \ + \ \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"system\",\n \ + \ \"enablePrivateClusterPublicFQDN\": true\n },\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4569' + - '4897' content-type: - application/json date: - - Wed, 15 Mar 2023 11:37:22 GMT + - Fri, 16 Jun 2023 15:52:07 GMT expires: - '-1' pragma: @@ -1899,70 +1809,72 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-0okxtzxx.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"0857721a2fca559fce11a5881511491c-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliaksdns000003-xv7d15t8.abb0fd8d-2ec7-4c6c-b31c-7da87f14ff31.privatelink.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/50a2a0e4-7555-421b-97b1-6df2ede35656\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"privateLinkResources\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/privateLinkResources/management\",\n - \ \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n - \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n - \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": - true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\": - true\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000003\",\n \"fqdn\": \"cliaksdns000003-25c2t1wi.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"f7bb4f8a60f755cc5caa3453308d722a-priv.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"privateFQDN\": \"cliaksdns000003-caivo368.91eea64a-d327-46e9-bdf2-6b7738230b2c.privatelink.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/61abbad7-70a6-494e-b21e-3d3856c83ced\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"privateLinkResources\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/privateLinkResources/management\"\ + ,\n \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\"\ + ,\n \"groupId\": \"management\",\n \"requiredMembers\": [\n \"\ + management\"\n ]\n }\n ],\n \"apiServerAccessProfile\": {\n \ + \ \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"system\",\n \ + \ \"enablePrivateClusterPublicFQDN\": true\n },\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4569' + - '4897' content-type: - application/json date: - - Wed, 15 Mar 2023 11:37:23 GMT + - Fri, 16 Jun 2023 15:52:09 GMT expires: - '-1' pragma: @@ -1996,8 +1908,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -2005,17 +1917,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/82f20790-343e-48d2-bf63-f0891a510ffb?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/949b60f9-776e-4faf-85b4-22444392305e?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:37:23 GMT + - Fri, 16 Jun 2023 15:52:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/82f20790-343e-48d2-bf63-f0891a510ffb?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/949b60f9-776e-4faf-85b4-22444392305e?api-version=2016-03-30 pragma: - no-cache server: @@ -2025,7 +1937,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_private_cluster_without_public_fqdn.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_private_cluster_without_public_fqdn.yaml old mode 100755 new mode 100644 index 34fac1e58e1..2f849b1d046 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_private_cluster_without_public_fqdn.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_private_cluster_without_public_fqdn.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:22:32 GMT + - Fri, 16 Jun 2023 15:52:15 GMT expires: - '-1' pragma: @@ -47,20 +47,20 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestqdr4f5zlj-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestxecpa7plu-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "apiServerAccessProfile": - {"authorizedIPRanges": [], "enablePrivateCluster": true, "enablePrivateClusterPublicFQDN": - false}, "disableLocalAccounts": false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "apiServerAccessProfile": {"authorizedIPRanges": [], "enablePrivateCluster": + true, "enablePrivateClusterPublicFQDN": false}, "disableLocalAccounts": false, + "storageProfile": {}}}' headers: Accept: - application/json @@ -71,73 +71,75 @@ interactions: Connection: - keep-alive Content-Length: - - '1584' + - '1876' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestqdr4f5zlj-79a739\",\n \"azurePortalFQDN\": \"dede678f5de5b428fa6de7c95ba34958-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest-clitestqdr4f5zlj-79a739-kz0wu0md.617692f8-075c-4e55-a8b7-24af906efebd.privatelink.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"privateLinkResources\": [\n {\n - \ \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n - \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n - \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": - true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\": - false\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestxecpa7plu-8ecadf\",\n\ + \ \"azurePortalFQDN\": \"88cb5aac046df5abe0bee15c1bbdbc7b-priv.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"privateFQDN\": \"cliakstest-clitestxecpa7plu-8ecadf-zyf20i2k.753530e5-ba9b-4dc9-967b-0ab973987aa9.privatelink.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"privateLinkResources\"\ + : [\n {\n \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\"\ + ,\n \"groupId\": \"management\",\n \"requiredMembers\": [\n \"\ + management\"\n ]\n }\n ],\n \"apiServerAccessProfile\": {\n \ + \ \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"system\",\n \ + \ \"enablePrivateClusterPublicFQDN\": false\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74b65503-5c39-414f-9bc8-31561c44400c?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/963d47b1-1eb6-45d0-af9e-aae7a31f0246?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3697' + - '4025' content-type: - application/json date: - - Wed, 15 Mar 2023 11:22:35 GMT + - Fri, 16 Jun 2023 15:52:23 GMT expires: - '-1' pragma: @@ -149,7 +151,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -168,23 +170,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74b65503-5c39-414f-9bc8-31561c44400c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/963d47b1-1eb6-45d0-af9e-aae7a31f0246?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0355b674-395c-4f41-9bc8-31561c44400c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:36.2927382Z\"\n }" + string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:23:06 GMT + - Fri, 16 Jun 2023 15:52:23 GMT expires: - '-1' pragma: @@ -217,23 +219,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74b65503-5c39-414f-9bc8-31561c44400c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/963d47b1-1eb6-45d0-af9e-aae7a31f0246?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0355b674-395c-4f41-9bc8-31561c44400c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:36.2927382Z\"\n }" + string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:23:36 GMT + - Fri, 16 Jun 2023 15:52:53 GMT expires: - '-1' pragma: @@ -266,23 +268,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74b65503-5c39-414f-9bc8-31561c44400c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/963d47b1-1eb6-45d0-af9e-aae7a31f0246?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0355b674-395c-4f41-9bc8-31561c44400c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:36.2927382Z\"\n }" + string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:06 GMT + - Fri, 16 Jun 2023 15:53:23 GMT expires: - '-1' pragma: @@ -315,23 +317,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74b65503-5c39-414f-9bc8-31561c44400c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/963d47b1-1eb6-45d0-af9e-aae7a31f0246?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0355b674-395c-4f41-9bc8-31561c44400c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:36.2927382Z\"\n }" + string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:24:36 GMT + - Fri, 16 Jun 2023 15:53:54 GMT expires: - '-1' pragma: @@ -364,23 +366,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74b65503-5c39-414f-9bc8-31561c44400c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/963d47b1-1eb6-45d0-af9e-aae7a31f0246?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0355b674-395c-4f41-9bc8-31561c44400c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:36.2927382Z\"\n }" + string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:06 GMT + - Fri, 16 Jun 2023 15:54:24 GMT expires: - '-1' pragma: @@ -413,23 +415,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74b65503-5c39-414f-9bc8-31561c44400c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/963d47b1-1eb6-45d0-af9e-aae7a31f0246?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0355b674-395c-4f41-9bc8-31561c44400c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:36.2927382Z\"\n }" + string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:25:36 GMT + - Fri, 16 Jun 2023 15:54:54 GMT expires: - '-1' pragma: @@ -462,23 +464,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74b65503-5c39-414f-9bc8-31561c44400c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/963d47b1-1eb6-45d0-af9e-aae7a31f0246?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0355b674-395c-4f41-9bc8-31561c44400c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:36.2927382Z\"\n }" + string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:06 GMT + - Fri, 16 Jun 2023 15:55:24 GMT expires: - '-1' pragma: @@ -511,23 +513,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74b65503-5c39-414f-9bc8-31561c44400c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/963d47b1-1eb6-45d0-af9e-aae7a31f0246?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0355b674-395c-4f41-9bc8-31561c44400c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:36.2927382Z\"\n }" + string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:26:36 GMT + - Fri, 16 Jun 2023 15:55:55 GMT expires: - '-1' pragma: @@ -560,23 +562,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74b65503-5c39-414f-9bc8-31561c44400c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/963d47b1-1eb6-45d0-af9e-aae7a31f0246?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0355b674-395c-4f41-9bc8-31561c44400c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:36.2927382Z\"\n }" + string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:27:06 GMT + - Fri, 16 Jun 2023 15:56:24 GMT expires: - '-1' pragma: @@ -609,23 +611,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74b65503-5c39-414f-9bc8-31561c44400c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/963d47b1-1eb6-45d0-af9e-aae7a31f0246?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0355b674-395c-4f41-9bc8-31561c44400c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:36.2927382Z\"\n }" + string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:27:36 GMT + - Fri, 16 Jun 2023 15:56:54 GMT expires: - '-1' pragma: @@ -658,23 +660,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74b65503-5c39-414f-9bc8-31561c44400c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/963d47b1-1eb6-45d0-af9e-aae7a31f0246?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0355b674-395c-4f41-9bc8-31561c44400c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:36.2927382Z\"\n }" + string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:28:07 GMT + - Fri, 16 Jun 2023 15:57:25 GMT expires: - '-1' pragma: @@ -707,23 +709,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74b65503-5c39-414f-9bc8-31561c44400c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/963d47b1-1eb6-45d0-af9e-aae7a31f0246?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0355b674-395c-4f41-9bc8-31561c44400c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:36.2927382Z\"\n }" + string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:28:37 GMT + - Fri, 16 Jun 2023 15:57:55 GMT expires: - '-1' pragma: @@ -756,23 +758,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74b65503-5c39-414f-9bc8-31561c44400c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/963d47b1-1eb6-45d0-af9e-aae7a31f0246?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0355b674-395c-4f41-9bc8-31561c44400c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:36.2927382Z\"\n }" + string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:29:07 GMT + - Fri, 16 Jun 2023 15:58:25 GMT expires: - '-1' pragma: @@ -805,23 +807,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74b65503-5c39-414f-9bc8-31561c44400c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/963d47b1-1eb6-45d0-af9e-aae7a31f0246?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0355b674-395c-4f41-9bc8-31561c44400c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:36.2927382Z\"\n }" + string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:29:37 GMT + - Fri, 16 Jun 2023 15:58:55 GMT expires: - '-1' pragma: @@ -854,23 +856,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74b65503-5c39-414f-9bc8-31561c44400c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/963d47b1-1eb6-45d0-af9e-aae7a31f0246?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0355b674-395c-4f41-9bc8-31561c44400c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:36.2927382Z\"\n }" + string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:30:06 GMT + - Fri, 16 Jun 2023 15:59:26 GMT expires: - '-1' pragma: @@ -903,23 +905,23 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74b65503-5c39-414f-9bc8-31561c44400c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/963d47b1-1eb6-45d0-af9e-aae7a31f0246?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0355b674-395c-4f41-9bc8-31561c44400c\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:22:36.2927382Z\"\n }" + string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:30:37 GMT + - Fri, 16 Jun 2023 15:59:56 GMT expires: - '-1' pragma: @@ -952,24 +954,24 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/74b65503-5c39-414f-9bc8-31561c44400c?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/963d47b1-1eb6-45d0-af9e-aae7a31f0246?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0355b674-395c-4f41-9bc8-31561c44400c\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:22:36.2927382Z\",\n \"endTime\": - \"2023-03-15T11:30:44.1682084Z\"\n }" + string: "{\n \"name\": \"b1473d96-b61e-d045-af9e-aae7a31f0246\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T15:52:22.871421Z\",\n \"\ + endTime\": \"2023-06-16T16:00:03.9487341Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '169' content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:07 GMT + - Fri, 16 Jun 2023 16:00:26 GMT expires: - '-1' pragma: @@ -1002,69 +1004,72 @@ interactions: - --resource-group --name --location --enable-private-cluster --disable-public-fqdn --node-count --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestqdr4f5zlj-79a739\",\n \"azurePortalFQDN\": \"dede678f5de5b428fa6de7c95ba34958-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest-clitestqdr4f5zlj-79a739-kz0wu0md.617692f8-075c-4e55-a8b7-24af906efebd.privatelink.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fd45b17a-4f07-4c82-a7a5-ee6b81d0ed8d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"privateLinkResources\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/privateLinkResources/management\",\n - \ \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n - \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n - \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": - true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\": - false\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestxecpa7plu-8ecadf\",\n\ + \ \"azurePortalFQDN\": \"88cb5aac046df5abe0bee15c1bbdbc7b-priv.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"privateFQDN\": \"cliakstest-clitestxecpa7plu-8ecadf-zyf20i2k.753530e5-ba9b-4dc9-967b-0ab973987aa9.privatelink.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d3fb3c65-4093-4672-b3e8-01347a24b02d\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"privateLinkResources\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/privateLinkResources/management\"\ + ,\n \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\"\ + ,\n \"groupId\": \"management\",\n \"requiredMembers\": [\n \"\ + management\"\n ]\n }\n ],\n \"apiServerAccessProfile\": {\n \ + \ \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"system\",\n \ + \ \"enablePrivateClusterPublicFQDN\": false\n },\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4547' + - '4875' content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:08 GMT + - Fri, 16 Jun 2023 16:00:27 GMT expires: - '-1' pragma: @@ -1096,69 +1101,72 @@ interactions: ParameterSetName: - --resource-group --name --enable-public-fqdn User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestqdr4f5zlj-79a739\",\n \"azurePortalFQDN\": \"dede678f5de5b428fa6de7c95ba34958-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest-clitestqdr4f5zlj-79a739-kz0wu0md.617692f8-075c-4e55-a8b7-24af906efebd.privatelink.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fd45b17a-4f07-4c82-a7a5-ee6b81d0ed8d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"privateLinkResources\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/privateLinkResources/management\",\n - \ \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n - \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n - \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": - true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\": - false\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestxecpa7plu-8ecadf\",\n\ + \ \"azurePortalFQDN\": \"88cb5aac046df5abe0bee15c1bbdbc7b-priv.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"privateFQDN\": \"cliakstest-clitestxecpa7plu-8ecadf-zyf20i2k.753530e5-ba9b-4dc9-967b-0ab973987aa9.privatelink.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d3fb3c65-4093-4672-b3e8-01347a24b02d\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"privateLinkResources\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/privateLinkResources/management\"\ + ,\n \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\"\ + ,\n \"groupId\": \"management\",\n \"requiredMembers\": [\n \"\ + management\"\n ]\n }\n ],\n \"apiServerAccessProfile\": {\n \ + \ \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"system\",\n \ + \ \"enablePrivateClusterPublicFQDN\": false\n },\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4547' + - '4875' content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:09 GMT + - Fri, 16 Jun 2023 16:00:32 GMT expires: - '-1' pragma: @@ -1177,23 +1185,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestqdr4f5zlj-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestxecpa7plu-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fd45b17a-4f07-4c82-a7a5-ee6b81d0ed8d"}]}, + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d3fb3c65-4093-4672-b3e8-01347a24b02d"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "apiServerAccessProfile": {"enablePrivateCluster": true, "privateDNSZone": "system", "enablePrivateClusterPublicFQDN": true}, "identityProfile": {"kubeletidentity": @@ -1214,79 +1222,81 @@ interactions: Connection: - keep-alive Content-Length: - - '2987' + - '3315' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-public-fqdn User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestqdr4f5zlj-79a739\",\n \"fqdn\": \"cliakstest-clitestqdr4f5zlj-79a739-3n4m00d3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"dede678f5de5b428fa6de7c95ba34958-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest-clitestqdr4f5zlj-79a739-kz0wu0md.617692f8-075c-4e55-a8b7-24af906efebd.privatelink.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fd45b17a-4f07-4c82-a7a5-ee6b81d0ed8d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"privateLinkResources\": [\n {\n \"name\": \"management\",\n - \ \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n - \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n - \ ],\n \"privateLinkServiceID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hcp-underlay-westus2-cx-215/providers/Microsoft.Network/privateLinkServices/a3fad44a4cf2c4f29a69b1feb30b6f70\"\n - \ }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": - true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\": - true\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestxecpa7plu-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestxecpa7plu-8ecadf-kx5hclcc.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"88cb5aac046df5abe0bee15c1bbdbc7b-priv.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"privateFQDN\": \"cliakstest-clitestxecpa7plu-8ecadf-zyf20i2k.753530e5-ba9b-4dc9-967b-0ab973987aa9.privatelink.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d3fb3c65-4093-4672-b3e8-01347a24b02d\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"privateLinkResources\"\ + : [\n {\n \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\"\ + ,\n \"groupId\": \"management\",\n \"requiredMembers\": [\n \"\ + management\"\n ],\n \"privateLinkServiceID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hcp-underlay-westus2-cx-227/providers/Microsoft.Network/privateLinkServices/a1d8ecc89311242dc896df4e47a5a3aa\"\ + \n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\"\ + : true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\"\ + : true\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \ + \ \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f2c69-a7af-44c6-a6b0-7d8887a6647f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69f76f49-2661-4fb3-b03f-9dee4e22d0ac?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4635' + - '4963' content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:11 GMT + - Fri, 16 Jun 2023 16:00:38 GMT expires: - '-1' pragma: @@ -1302,7 +1312,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 200 message: OK @@ -1320,14 +1330,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-public-fqdn User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f2c69-a7af-44c6-a6b0-7d8887a6647f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69f76f49-2661-4fb3-b03f-9dee4e22d0ac?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"692c6f11-afa7-c644-a6b0-7d8887a6647f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:31:11.4509624Z\"\n }" + string: "{\n \"name\": \"496ff769-6126-b34f-b03f-9dee4e22d0ac\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:00:37.7475096Z\"\n }" headers: cache-control: - no-cache @@ -1336,7 +1346,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:41 GMT + - Fri, 16 Jun 2023 16:00:38 GMT expires: - '-1' pragma: @@ -1368,14 +1378,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-public-fqdn User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f2c69-a7af-44c6-a6b0-7d8887a6647f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69f76f49-2661-4fb3-b03f-9dee4e22d0ac?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"692c6f11-afa7-c644-a6b0-7d8887a6647f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:31:11.4509624Z\"\n }" + string: "{\n \"name\": \"496ff769-6126-b34f-b03f-9dee4e22d0ac\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:00:37.7475096Z\"\n }" headers: cache-control: - no-cache @@ -1384,7 +1394,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:32:11 GMT + - Fri, 16 Jun 2023 16:01:08 GMT expires: - '-1' pragma: @@ -1416,14 +1426,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-public-fqdn User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f2c69-a7af-44c6-a6b0-7d8887a6647f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69f76f49-2661-4fb3-b03f-9dee4e22d0ac?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"692c6f11-afa7-c644-a6b0-7d8887a6647f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:31:11.4509624Z\"\n }" + string: "{\n \"name\": \"496ff769-6126-b34f-b03f-9dee4e22d0ac\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:00:37.7475096Z\"\n }" headers: cache-control: - no-cache @@ -1432,7 +1442,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:32:41 GMT + - Fri, 16 Jun 2023 16:01:38 GMT expires: - '-1' pragma: @@ -1464,14 +1474,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-public-fqdn User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f2c69-a7af-44c6-a6b0-7d8887a6647f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69f76f49-2661-4fb3-b03f-9dee4e22d0ac?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"692c6f11-afa7-c644-a6b0-7d8887a6647f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:31:11.4509624Z\"\n }" + string: "{\n \"name\": \"496ff769-6126-b34f-b03f-9dee4e22d0ac\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:00:37.7475096Z\"\n }" headers: cache-control: - no-cache @@ -1480,7 +1490,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:33:12 GMT + - Fri, 16 Jun 2023 16:02:09 GMT expires: - '-1' pragma: @@ -1512,14 +1522,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-public-fqdn User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f2c69-a7af-44c6-a6b0-7d8887a6647f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69f76f49-2661-4fb3-b03f-9dee4e22d0ac?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"692c6f11-afa7-c644-a6b0-7d8887a6647f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:31:11.4509624Z\"\n }" + string: "{\n \"name\": \"496ff769-6126-b34f-b03f-9dee4e22d0ac\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:00:37.7475096Z\"\n }" headers: cache-control: - no-cache @@ -1528,7 +1538,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:33:41 GMT + - Fri, 16 Jun 2023 16:02:39 GMT expires: - '-1' pragma: @@ -1560,14 +1570,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-public-fqdn User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f2c69-a7af-44c6-a6b0-7d8887a6647f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69f76f49-2661-4fb3-b03f-9dee4e22d0ac?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"692c6f11-afa7-c644-a6b0-7d8887a6647f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:31:11.4509624Z\"\n }" + string: "{\n \"name\": \"496ff769-6126-b34f-b03f-9dee4e22d0ac\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:00:37.7475096Z\"\n }" headers: cache-control: - no-cache @@ -1576,7 +1586,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:34:11 GMT + - Fri, 16 Jun 2023 16:03:09 GMT expires: - '-1' pragma: @@ -1608,14 +1618,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-public-fqdn User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f2c69-a7af-44c6-a6b0-7d8887a6647f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69f76f49-2661-4fb3-b03f-9dee4e22d0ac?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"692c6f11-afa7-c644-a6b0-7d8887a6647f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:31:11.4509624Z\"\n }" + string: "{\n \"name\": \"496ff769-6126-b34f-b03f-9dee4e22d0ac\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:00:37.7475096Z\"\n }" headers: cache-control: - no-cache @@ -1624,7 +1634,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:34:42 GMT + - Fri, 16 Jun 2023 16:03:39 GMT expires: - '-1' pragma: @@ -1656,15 +1666,15 @@ interactions: ParameterSetName: - --resource-group --name --enable-public-fqdn User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/116f2c69-a7af-44c6-a6b0-7d8887a6647f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/69f76f49-2661-4fb3-b03f-9dee4e22d0ac?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"692c6f11-afa7-c644-a6b0-7d8887a6647f\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:31:11.4509624Z\",\n \"endTime\": - \"2023-03-15T11:34:48.2055097Z\"\n }" + string: "{\n \"name\": \"496ff769-6126-b34f-b03f-9dee4e22d0ac\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T16:00:37.7475096Z\",\n \"\ + endTime\": \"2023-06-16T16:03:47.6040891Z\"\n }" headers: cache-control: - no-cache @@ -1673,7 +1683,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:35:12 GMT + - Fri, 16 Jun 2023 16:04:09 GMT expires: - '-1' pragma: @@ -1705,70 +1715,73 @@ interactions: ParameterSetName: - --resource-group --name --enable-public-fqdn User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestqdr4f5zlj-79a739\",\n \"fqdn\": \"cliakstest-clitestqdr4f5zlj-79a739-3n4m00d3.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"dede678f5de5b428fa6de7c95ba34958-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest-clitestqdr4f5zlj-79a739-kz0wu0md.617692f8-075c-4e55-a8b7-24af906efebd.privatelink.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/fd45b17a-4f07-4c82-a7a5-ee6b81d0ed8d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"privateLinkResources\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/privateLinkResources/management\",\n - \ \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n - \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n - \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": - true,\n \"privateDNSZone\": \"system\",\n \"enablePrivateClusterPublicFQDN\": - true\n },\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestxecpa7plu-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestxecpa7plu-8ecadf-kx5hclcc.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"88cb5aac046df5abe0bee15c1bbdbc7b-priv.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"privateFQDN\": \"cliakstest-clitestxecpa7plu-8ecadf-zyf20i2k.753530e5-ba9b-4dc9-967b-0ab973987aa9.privatelink.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/d3fb3c65-4093-4672-b3e8-01347a24b02d\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"privateLinkResources\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/privateLinkResources/management\"\ + ,\n \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\"\ + ,\n \"groupId\": \"management\",\n \"requiredMembers\": [\n \"\ + management\"\n ]\n }\n ],\n \"apiServerAccessProfile\": {\n \ + \ \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"system\",\n \ + \ \"enablePrivateClusterPublicFQDN\": true\n },\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4626' + - '4954' content-type: - application/json date: - - Wed, 15 Mar 2023 11:35:12 GMT + - Fri, 16 Jun 2023 16:04:10 GMT expires: - '-1' pragma: @@ -1802,8 +1815,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -1811,17 +1824,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4dc8dfda-05b1-4ae9-ab74-9947814f576b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/7ac87b8d-785b-4f82-980d-fa7742c274ca?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:35:13 GMT + - Fri, 16 Jun 2023 16:04:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/4dc8dfda-05b1-4ae9-ab74-9947814f576b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/7ac87b8d-785b-4f82-980d-fa7742c274ca?api-version=2016-03-30 pragma: - no-cache server: @@ -1831,7 +1844,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14994' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_private_dns_zone.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_private_dns_zone.yaml old mode 100755 new mode 100644 index f9c55448aea..05474eaa25c --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_private_dns_zone.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_private_dns_zone.yaml @@ -19,7 +19,7 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-privatedns/1.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-mgmt-privatedns/1.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io?api-version=2018-09-01 response: @@ -27,7 +27,7 @@ interactions: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTswNmM2NWFiYy1lNWM3LTRkYzUtYjkxYy0xY2U1MmViY2NjYmZfNzlhNzM5MGQtM2E4NS00MzJkLTlmNmYtYTExYTcwM2M4Yjgz?api-version=2018-09-01 + - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTtjYTY1NGIzYy02NjQzLTQzZGMtOWY2Ni0zMTdlMWU1YTVkMWVfOGVjYWRmYzktZDFhMy00ZWE0LWI4NDQtMGQ5Zjg3ZTRkN2M4?api-version=2018-09-01 cache-control: - private content-length: @@ -35,9 +35,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:27:19 GMT + - Fri, 16 Jun 2023 16:04:22 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTswNmM2NWFiYy1lNWM3LTRkYzUtYjkxYy0xY2U1MmViY2NjYmZfNzlhNzM5MGQtM2E4NS00MzJkLTlmNmYtYTExYTcwM2M4Yjgz?api-version=2018-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTtjYTY1NGIzYy02NjQzLTQzZGMtOWY2Ni0zMTdlMWU1YTVkMWVfOGVjYWRmYzktZDFhMy00ZWE0LWI4NDQtMGQ5Zjg3ZTRkN2M4?api-version=2018-09-01 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -67,9 +67,57 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-privatedns/1.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-mgmt-privatedns/1.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTswNmM2NWFiYy1lNWM3LTRkYzUtYjkxYy0xY2U1MmViY2NjYmZfNzlhNzM5MGQtM2E4NS00MzJkLTlmNmYtYTExYTcwM2M4Yjgz?api-version=2018-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTtjYTY1NGIzYy02NjQzLTQzZGMtOWY2Ni0zMTdlMWU1YTVkMWVfOGVjYWRmYzktZDFhMy00ZWE0LWI4NDQtMGQ5Zjg3ZTRkN2M4?api-version=2018-09-01 + response: + body: + string: '{"status":"InProgress"}' + headers: + azure-asyncoperation: + - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTtjYTY1NGIzYy02NjQzLTQzZGMtOWY2Ni0zMTdlMWU1YTVkMWVfOGVjYWRmYzktZDFhMy00ZWE0LWI4NDQtMGQ5Zjg3ZTRkN2M4?api-version=2018-09-01 + cache-control: + - private + content-length: + - '23' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 16 Jun 2023 16:04:22 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTtjYTY1NGIzYy02NjQzLTQzZGMtOWY2Ni0zMTdlMWU1YTVkMWVfOGVjYWRmYzktZDFhMy00ZWE0LWI4NDQtMGQ5Zjg3ZTRkN2M4?api-version=2018-09-01 + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '499' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-dns zone create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.49.0 azsdk-python-mgmt-privatedns/1.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTtjYTY1NGIzYy02NjQzLTQzZGMtOWY2Ni0zMTdlMWU1YTVkMWVfOGVjYWRmYzktZDFhMy00ZWE0LWI4NDQtMGQ5Zjg3ZTRkN2M4?api-version=2018-09-01 response: body: string: '{"status":"Succeeded"}' @@ -81,7 +129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:27:49 GMT + - Fri, 16 Jun 2023 16:04:52 GMT server: - Microsoft-IIS/10.0 strict-transport-security: @@ -95,7 +143,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '498' x-powered-by: - ASP.NET status: @@ -115,12 +163,12 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-mgmt-privatedns/1.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-mgmt-privatedns/1.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io?api-version=2018-09-01 response: body: - string: '{"id":"\/subscriptions\/00000000-0000-0000-0000-000000000000\/resourceGroups\/clitest000001\/providers\/Microsoft.Network\/privateDnsZones\/privatelink.westus2.azmk8s.io","name":"privatelink.westus2.azmk8s.io","type":"Microsoft.Network\/privateDnsZones","etag":"af86fb97-037e-4aee-8f0c-5e347a450b02","location":"global","properties":{"maxNumberOfRecordSets":25000,"maxNumberOfVirtualNetworkLinks":1000,"maxNumberOfVirtualNetworkLinksWithRegistration":100,"numberOfRecordSets":1,"numberOfVirtualNetworkLinks":0,"numberOfVirtualNetworkLinksWithRegistration":0,"provisioningState":"Succeeded"}}' + string: '{"id":"\/subscriptions\/00000000-0000-0000-0000-000000000000\/resourceGroups\/clitest000001\/providers\/Microsoft.Network\/privateDnsZones\/privatelink.westus2.azmk8s.io","name":"privatelink.westus2.azmk8s.io","type":"Microsoft.Network\/privateDnsZones","etag":"eeb6abef-680b-4161-9980-ba0dc3eaded8","location":"global","properties":{"maxNumberOfRecordSets":25000,"maxNumberOfVirtualNetworkLinks":1000,"maxNumberOfVirtualNetworkLinksWithRegistration":100,"numberOfRecordSets":1,"numberOfVirtualNetworkLinks":0,"numberOfVirtualNetworkLinksWithRegistration":0,"provisioningState":"Succeeded"}}' headers: cache-control: - private @@ -129,9 +177,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:27:49 GMT + - Fri, 16 Jun 2023 16:04:52 GMT etag: - - af86fb97-037e-4aee-8f0c-5e347a450b02 + - eeb6abef-680b-4161-9980-ba0dc3eaded8 server: - Microsoft-IIS/10.0 strict-transport-security: @@ -165,21 +213,21 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T11:27:17Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_private_dns_zone","date":"2023-06-16T16:04:16Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '355' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:27:49 GMT + - Fri, 16 Jun 2023 16:04:53 GMT expires: - '-1' pragma: @@ -211,12 +259,12 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003?api-version=2023-01-31 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003","name":"cliakstest000003","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001"}}' + string: '{"location":"westus2","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003","name":"cliakstest000003","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"00000000-0000-0000-0000-000000000001","clientId":"00000000-0000-0000-0000-000000000001"}}' headers: cache-control: - no-cache @@ -225,7 +273,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:27:50 GMT + - Fri, 16 Jun 2023 16:04:56 GMT expires: - '-1' location: @@ -237,7 +285,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -255,8 +303,8 @@ interactions: ParameterSetName: - --assignee-object-id --role --scope --assignee-principal-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20%27Private%20DNS%20Zone%20Contributor%27&api-version=2022-04-01 response: @@ -272,7 +320,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:27:51 GMT + - Fri, 16 Jun 2023 16:04:57 GMT expires: - '-1' pragma: @@ -311,13 +359,13 @@ interactions: ParameterSetName: - --assignee-object-id --role --scope --assignee-principal-type User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-authorization/3.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2022-04-01 response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b12aa53e-6015-4669-85d0-8515ebb3ae7f","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io","condition":null,"conditionVersion":null,"createdOn":"2023-03-15T11:27:51.5848106Z","updatedOn":"2023-03-15T11:27:52.0648141Z","createdBy":null,"updatedBy":"119e1aeb-4592-42d6-9507-c66df857924f","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b12aa53e-6015-4669-85d0-8515ebb3ae7f","principalId":"00000000-0000-0000-0000-000000000001","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io","condition":null,"conditionVersion":null,"createdOn":"2023-06-16T16:04:58.8691297Z","updatedOn":"2023-06-16T16:04:59.2121343Z","createdBy":null,"updatedBy":"4d730cf1-e190-49af-af02-ea52983c017e","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -326,7 +374,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:27:53 GMT + - Fri, 16 Jun 2023 16:05:01 GMT expires: - '-1' pragma: @@ -336,7 +384,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -356,8 +404,8 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -373,7 +421,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:27:53 GMT + - Fri, 16 Jun 2023 16:05:02 GMT expires: - '-1' pragma: @@ -403,21 +451,21 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T11:27:17Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_private_dns_zone","date":"2023-06-16T16:04:16Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '355' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:27:53 GMT + - Fri, 16 Jun 2023 16:05:03 GMT expires: - '-1' pragma: @@ -441,12 +489,12 @@ interactions: false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "apiServerAccessProfile": - {"authorizedIPRanges": [], "enablePrivateCluster": true, "privateDNSZone": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io"}, + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "apiServerAccessProfile": {"authorizedIPRanges": [], "enablePrivateCluster": + true, "privateDNSZone": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: @@ -458,7 +506,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1895' + - '2187' Content-Type: - application/json ParameterSetName: @@ -466,68 +514,70 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"fqdn\": \"cliakstest000004-j8mt944t.hcp.westus2.azmk8s.io\",\n - \ \"fqdnSubdomain\": \"cliakstest000004\",\n \"azurePortalFQDN\": \"9adf6021ad832adb352788965ade824d-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest000004.privatelink.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"privateLinkResources\": [\n {\n - \ \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n - \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n - \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": - true,\n \"privateDNSZone\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io\",\n - \ \"enablePrivateClusterPublicFQDN\": true\n },\n \"disableLocalAccounts\": - false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": - {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": - true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n - \ },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": - {}\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": - {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003\": - {\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n }\n - \ }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n - \ }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"fqdn\": \"cliakstest000004-8zk5uy5o.hcp.westus2.azmk8s.io\"\ + ,\n \"fqdnSubdomain\": \"cliakstest000004\",\n \"azurePortalFQDN\": \"\ + e4cb6821fe4dfab97c16b0849e52d367-priv.portal.hcp.westus2.azmk8s.io\",\n \ + \ \"privateFQDN\": \"cliakstest000004.privatelink.westus2.azmk8s.io\",\n \ + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"\ + count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"privateLinkResources\"\ + : [\n {\n \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\"\ + ,\n \"groupId\": \"management\",\n \"requiredMembers\": [\n \"\ + management\"\n ]\n }\n ],\n \"apiServerAccessProfile\": {\n \ + \ \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io\"\ + ,\n \"enablePrivateClusterPublicFQDN\": true\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003\"\ + : {\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n }\n\ + \ }\n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n\ + \ }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af72dd22-0041-45ea-a090-db1d16e16a06?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2300ad0-27e3-4f62-a1f4-84759164ff0c?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3981' + - '4309' content-type: - application/json date: - - Wed, 15 Mar 2023 11:27:58 GMT + - Fri, 16 Jun 2023 16:05:12 GMT expires: - '-1' pragma: @@ -539,7 +589,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -559,14 +609,64 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2300ad0-27e3-4f62-a1f4-84759164ff0c?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d00a30d2-e327-624f-a1f4-84759164ff0c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:05:12.4983488Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 16:05:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --node-count --fqdn-subdomain --load-balancer-sku + --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity + --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af72dd22-0041-45ea-a090-db1d16e16a06?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2300ad0-27e3-4f62-a1f4-84759164ff0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22dd72af-4100-ea45-a090-db1d16e16a06\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:58.3717788Z\"\n }" + string: "{\n \"name\": \"d00a30d2-e327-624f-a1f4-84759164ff0c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:05:12.4983488Z\"\n }" headers: cache-control: - no-cache @@ -575,7 +675,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:28:28 GMT + - Fri, 16 Jun 2023 16:05:42 GMT expires: - '-1' pragma: @@ -609,14 +709,14 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af72dd22-0041-45ea-a090-db1d16e16a06?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2300ad0-27e3-4f62-a1f4-84759164ff0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22dd72af-4100-ea45-a090-db1d16e16a06\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:58.3717788Z\"\n }" + string: "{\n \"name\": \"d00a30d2-e327-624f-a1f4-84759164ff0c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:05:12.4983488Z\"\n }" headers: cache-control: - no-cache @@ -625,7 +725,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:28:58 GMT + - Fri, 16 Jun 2023 16:06:13 GMT expires: - '-1' pragma: @@ -659,14 +759,14 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af72dd22-0041-45ea-a090-db1d16e16a06?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2300ad0-27e3-4f62-a1f4-84759164ff0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22dd72af-4100-ea45-a090-db1d16e16a06\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:58.3717788Z\"\n }" + string: "{\n \"name\": \"d00a30d2-e327-624f-a1f4-84759164ff0c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:05:12.4983488Z\"\n }" headers: cache-control: - no-cache @@ -675,7 +775,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:29:27 GMT + - Fri, 16 Jun 2023 16:06:43 GMT expires: - '-1' pragma: @@ -709,14 +809,14 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af72dd22-0041-45ea-a090-db1d16e16a06?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2300ad0-27e3-4f62-a1f4-84759164ff0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22dd72af-4100-ea45-a090-db1d16e16a06\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:58.3717788Z\"\n }" + string: "{\n \"name\": \"d00a30d2-e327-624f-a1f4-84759164ff0c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:05:12.4983488Z\"\n }" headers: cache-control: - no-cache @@ -725,7 +825,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:29:57 GMT + - Fri, 16 Jun 2023 16:07:13 GMT expires: - '-1' pragma: @@ -759,14 +859,14 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af72dd22-0041-45ea-a090-db1d16e16a06?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2300ad0-27e3-4f62-a1f4-84759164ff0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22dd72af-4100-ea45-a090-db1d16e16a06\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:58.3717788Z\"\n }" + string: "{\n \"name\": \"d00a30d2-e327-624f-a1f4-84759164ff0c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:05:12.4983488Z\"\n }" headers: cache-control: - no-cache @@ -775,7 +875,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:30:28 GMT + - Fri, 16 Jun 2023 16:07:43 GMT expires: - '-1' pragma: @@ -809,14 +909,14 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af72dd22-0041-45ea-a090-db1d16e16a06?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2300ad0-27e3-4f62-a1f4-84759164ff0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22dd72af-4100-ea45-a090-db1d16e16a06\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:58.3717788Z\"\n }" + string: "{\n \"name\": \"d00a30d2-e327-624f-a1f4-84759164ff0c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:05:12.4983488Z\"\n }" headers: cache-control: - no-cache @@ -825,7 +925,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:30:58 GMT + - Fri, 16 Jun 2023 16:08:20 GMT expires: - '-1' pragma: @@ -859,14 +959,14 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af72dd22-0041-45ea-a090-db1d16e16a06?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2300ad0-27e3-4f62-a1f4-84759164ff0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22dd72af-4100-ea45-a090-db1d16e16a06\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:58.3717788Z\"\n }" + string: "{\n \"name\": \"d00a30d2-e327-624f-a1f4-84759164ff0c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:05:12.4983488Z\"\n }" headers: cache-control: - no-cache @@ -875,7 +975,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:28 GMT + - Fri, 16 Jun 2023 16:08:50 GMT expires: - '-1' pragma: @@ -909,14 +1009,14 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af72dd22-0041-45ea-a090-db1d16e16a06?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2300ad0-27e3-4f62-a1f4-84759164ff0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22dd72af-4100-ea45-a090-db1d16e16a06\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:58.3717788Z\"\n }" + string: "{\n \"name\": \"d00a30d2-e327-624f-a1f4-84759164ff0c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:05:12.4983488Z\"\n }" headers: cache-control: - no-cache @@ -925,7 +1025,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:58 GMT + - Fri, 16 Jun 2023 16:09:20 GMT expires: - '-1' pragma: @@ -959,14 +1059,14 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af72dd22-0041-45ea-a090-db1d16e16a06?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2300ad0-27e3-4f62-a1f4-84759164ff0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22dd72af-4100-ea45-a090-db1d16e16a06\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:58.3717788Z\"\n }" + string: "{\n \"name\": \"d00a30d2-e327-624f-a1f4-84759164ff0c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:05:12.4983488Z\"\n }" headers: cache-control: - no-cache @@ -975,7 +1075,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:32:29 GMT + - Fri, 16 Jun 2023 16:09:50 GMT expires: - '-1' pragma: @@ -1009,14 +1109,14 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af72dd22-0041-45ea-a090-db1d16e16a06?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2300ad0-27e3-4f62-a1f4-84759164ff0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22dd72af-4100-ea45-a090-db1d16e16a06\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:58.3717788Z\"\n }" + string: "{\n \"name\": \"d00a30d2-e327-624f-a1f4-84759164ff0c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:05:12.4983488Z\"\n }" headers: cache-control: - no-cache @@ -1025,7 +1125,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:32:58 GMT + - Fri, 16 Jun 2023 16:10:21 GMT expires: - '-1' pragma: @@ -1059,14 +1159,14 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af72dd22-0041-45ea-a090-db1d16e16a06?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2300ad0-27e3-4f62-a1f4-84759164ff0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22dd72af-4100-ea45-a090-db1d16e16a06\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:58.3717788Z\"\n }" + string: "{\n \"name\": \"d00a30d2-e327-624f-a1f4-84759164ff0c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:05:12.4983488Z\"\n }" headers: cache-control: - no-cache @@ -1075,7 +1175,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:33:28 GMT + - Fri, 16 Jun 2023 16:10:51 GMT expires: - '-1' pragma: @@ -1109,14 +1209,14 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af72dd22-0041-45ea-a090-db1d16e16a06?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2300ad0-27e3-4f62-a1f4-84759164ff0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22dd72af-4100-ea45-a090-db1d16e16a06\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:58.3717788Z\"\n }" + string: "{\n \"name\": \"d00a30d2-e327-624f-a1f4-84759164ff0c\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:05:12.4983488Z\"\n }" headers: cache-control: - no-cache @@ -1125,7 +1225,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:33:58 GMT + - Fri, 16 Jun 2023 16:11:21 GMT expires: - '-1' pragma: @@ -1159,15 +1259,15 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/af72dd22-0041-45ea-a090-db1d16e16a06?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d2300ad0-27e3-4f62-a1f4-84759164ff0c?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"22dd72af-4100-ea45-a090-db1d16e16a06\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:27:58.3717788Z\",\n \"endTime\": - \"2023-03-15T11:34:27.7230411Z\"\n }" + string: "{\n \"name\": \"d00a30d2-e327-624f-a1f4-84759164ff0c\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T16:05:12.4983488Z\",\n \"\ + endTime\": \"2023-06-16T16:11:47.4929183Z\"\n }" headers: cache-control: - no-cache @@ -1176,7 +1276,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:34:29 GMT + - Fri, 16 Jun 2023 16:11:51 GMT expires: - '-1' pragma: @@ -1210,70 +1310,74 @@ interactions: --enable-private-cluster --private-dns-zone --enable-managed-identity --assign-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"fqdn\": \"cliakstest000004-j8mt944t.hcp.westus2.azmk8s.io\",\n - \ \"fqdnSubdomain\": \"cliakstest000004\",\n \"azurePortalFQDN\": \"9adf6021ad832adb352788965ade824d-priv.portal.hcp.westus2.azmk8s.io\",\n - \ \"privateFQDN\": \"cliakstest000004.privatelink.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/e1eaeae4-79fb-4d47-bf68-4eecc7d62589\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"privateLinkResources\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/privateLinkResources/management\",\n - \ \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\",\n - \ \"groupId\": \"management\",\n \"requiredMembers\": [\n \"management\"\n - \ ]\n }\n ],\n \"apiServerAccessProfile\": {\n \"enablePrivateCluster\": - true,\n \"privateDNSZone\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io\",\n - \ \"enablePrivateClusterPublicFQDN\": true\n },\n \"identityProfile\": - {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n }\n },\n \"sku\": {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n - \ }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"fqdn\": \"cliakstest000004-8zk5uy5o.hcp.westus2.azmk8s.io\"\ + ,\n \"fqdnSubdomain\": \"cliakstest000004\",\n \"azurePortalFQDN\": \"\ + e4cb6821fe4dfab97c16b0849e52d367-priv.portal.hcp.westus2.azmk8s.io\",\n \ + \ \"privateFQDN\": \"cliakstest000004.privatelink.westus2.azmk8s.io\",\n \ + \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"\ + count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/b9c77bfb-1fcd-4f19-bad2-caf29cee51ff\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"privateLinkResources\"\ + : [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/privateLinkResources/management\"\ + ,\n \"name\": \"management\",\n \"type\": \"Microsoft.ContainerService/managedClusters/privateLinkResources\"\ + ,\n \"groupId\": \"management\",\n \"requiredMembers\": [\n \"\ + management\"\n ]\n }\n ],\n \"apiServerAccessProfile\": {\n \ + \ \"enablePrivateCluster\": true,\n \"privateDNSZone\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Network/privateDnsZones/privatelink.westus2.azmk8s.io\"\ + ,\n \"enablePrivateClusterPublicFQDN\": true\n },\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"\ + principalId\":\"00000000-0000-0000-0000-000000000001\"\n }\n }\n },\n\ + \ \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4887' + - '5215' content-type: - application/json date: - - Wed, 15 Mar 2023 11:34:29 GMT + - Fri, 16 Jun 2023 16:11:52 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_run_command.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_run_command.yaml old mode 100755 new mode 100644 index 9bbe9a1d8d0..21a571db534 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_run_command.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_run_command.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --nodepool-name --generate-ssh-keys --vm-set-type --node-count -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cmdtest000002?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:26:56 GMT + - Fri, 16 Jun 2023 16:11:57 GMT expires: - '-1' pragma: @@ -60,21 +60,21 @@ interactions: - --resource-group --name --nodepool-name --generate-ssh-keys --vm-set-type --node-count -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T11:26:55Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_run_command","date":"2023-06-16T16:11:55Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '350' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:26:55 GMT + - Fri, 16 Jun 2023 16:11:57 GMT expires: - '-1' pragma: @@ -90,19 +90,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cmdtest45a-clitestj7dhglg2d-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cmdtestyc2-clitestvbdcyimze-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "c000003"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsUNxyxr64cgmW2DeA1l9gyK/y7ju7yByewyVXKzMCyus691v155Wlojgjf55QrjZEeh3CyY0sOMiUZeTTFNs9AeJuFeaOBn1uWTSbFB/cyoaVwyGCxt3BGxc4g8viIllhVgAo4ZCo9sVLm3t+89irXsvWmQnKUl3eKY5tmp47q8XjWowWtANK/26rpawOXwJlVxoL9dZaKmp6WBF8uL2LwULpZr+vOurWd1qSyJprcxFMjnK+3wFEfQuaSuEHfXIPuVBv34wHFMALj4hz5xZ0fiZAUrFNhUo4pfNFtcdV+rfV7mCYcPReLm9pUTv+Lqkk0sdRc4XBI5iUVxrtQtuL"}]}}, - "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": - "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": - "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": - {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDpX1rdEYwy8z3kRUtRfwnjcaa5sVBDlUyteEiAVG60B6vO74sUT/s0cmvOGRY56u17SQxCQdf7Y8rapBYnkCybdcP8Vh6SoQszHc2N5LbcfHLoeA9wrFvW74ZZHmld34yo1OeU3xKZVlGB+xP54En93j1zYZa7WFQz20r/R4JR2koF6h1W4jxneKXzRTs/KoZyBAHhM1YuqQiEohJHxccmFlAm1pvzwaEtBMeGQdu3wjSL9CGOGsBTcnSo06LkZ1EXdd9zgSO5Vma/qBA4ZcP7rG6ght3ajBs5b7TqabuISOeWiu9y8GxY+lxiolSmE/MyKAaoJJ8nxHrbjom+gLtsGhW79FqoqySDkN+qK1h/L5YEIjgfx0L4bJkeKGXWNXmGGJE1tEkV0ob9EBpJAMEza46N+LImo/q465+vUG2nOS/cgFkMG4yclVe6f7kyOWWbijFMTcInThhtMoJUBfikOTguGlAIIjMphhaWyAXIjmbpiyDppctW0OrF4ljGx9E= + henrychen@microsoft.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -113,67 +112,70 @@ interactions: Connection: - keep-alive Content-Length: - - '1423' + - '1584' Content-Type: - application/json ParameterSetName: - --resource-group --name --nodepool-name --generate-ssh-keys --vm-set-type --node-count -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cmdtest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cmdtest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cmdtest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cmdtest45a-clitestj7dhglg2d-79a739\",\n \"fqdn\": \"cmdtest45a-clitestj7dhglg2d-79a739-276ujp0r.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cmdtest45a-clitestj7dhglg2d-79a739-276ujp0r.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsUNxyxr64cgmW2DeA1l9gyK/y7ju7yByewyVXKzMCyus691v155Wlojgjf55QrjZEeh3CyY0sOMiUZeTTFNs9AeJuFeaOBn1uWTSbFB/cyoaVwyGCxt3BGxc4g8viIllhVgAo4ZCo9sVLm3t+89irXsvWmQnKUl3eKY5tmp47q8XjWowWtANK/26rpawOXwJlVxoL9dZaKmp6WBF8uL2LwULpZr+vOurWd1qSyJprcxFMjnK+3wFEfQuaSuEHfXIPuVBv34wHFMALj4hz5xZ0fiZAUrFNhUo4pfNFtcdV+rfV7mCYcPReLm9pUTv+Lqkk0sdRc4XBI5iUVxrtQtuL\"\n - \ }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cmdtest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": - \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cmdtest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cmdtest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cmdtestyc2-clitestvbdcyimze-8ecadf\",\n\ + \ \"fqdn\": \"cmdtestyc2-clitestvbdcyimze-8ecadf-7fi1wdv8.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cmdtestyc2-clitestvbdcyimze-8ecadf-7fi1wdv8.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"\ + count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDpX1rdEYwy8z3kRUtRfwnjcaa5sVBDlUyteEiAVG60B6vO74sUT/s0cmvOGRY56u17SQxCQdf7Y8rapBYnkCybdcP8Vh6SoQszHc2N5LbcfHLoeA9wrFvW74ZZHmld34yo1OeU3xKZVlGB+xP54En93j1zYZa7WFQz20r/R4JR2koF6h1W4jxneKXzRTs/KoZyBAHhM1YuqQiEohJHxccmFlAm1pvzwaEtBMeGQdu3wjSL9CGOGsBTcnSo06LkZ1EXdd9zgSO5Vma/qBA4ZcP7rG6ght3ajBs5b7TqabuISOeWiu9y8GxY+lxiolSmE/MyKAaoJJ8nxHrbjom+gLtsGhW79FqoqySDkN+qK1h/L5YEIjgfx0L4bJkeKGXWNXmGGJE1tEkV0ob9EBpJAMEza46N+LImo/q465+vUG2nOS/cgFkMG4yclVe6f7kyOWWbijFMTcInThhtMoJUBfikOTguGlAIIjMphhaWyAXIjmbpiyDppctW0OrF4ljGx9E=\ + \ henrychen@microsoft.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cmdtest000002_westus2\",\n \"\ + enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\"\ + : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8ab0e1b7-b58a-476c-9ab1-ffddcd14b0a6?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f163a61-60bf-4351-9745-133af6a830af?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3223' + - '3420' content-type: - application/json date: - - Wed, 15 Mar 2023 11:27:00 GMT + - Fri, 16 Jun 2023 16:12:06 GMT expires: - '-1' pragma: @@ -185,7 +187,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -204,14 +206,14 @@ interactions: - --resource-group --name --nodepool-name --generate-ssh-keys --vm-set-type --node-count -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8ab0e1b7-b58a-476c-9ab1-ffddcd14b0a6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f163a61-60bf-4351-9745-133af6a830af?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b7e1b08a-8ab5-6c47-9ab1-ffddcd14b0a6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:00.9341173Z\"\n }" + string: "{\n \"name\": \"613a166f-bf60-5143-9745-133af6a830af\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:12:05.6087442Z\"\n }" headers: cache-control: - no-cache @@ -220,7 +222,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:27:30 GMT + - Fri, 16 Jun 2023 16:12:06 GMT expires: - '-1' pragma: @@ -253,14 +255,14 @@ interactions: - --resource-group --name --nodepool-name --generate-ssh-keys --vm-set-type --node-count -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8ab0e1b7-b58a-476c-9ab1-ffddcd14b0a6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f163a61-60bf-4351-9745-133af6a830af?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b7e1b08a-8ab5-6c47-9ab1-ffddcd14b0a6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:00.9341173Z\"\n }" + string: "{\n \"name\": \"613a166f-bf60-5143-9745-133af6a830af\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:12:05.6087442Z\"\n }" headers: cache-control: - no-cache @@ -269,7 +271,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:28:00 GMT + - Fri, 16 Jun 2023 16:12:36 GMT expires: - '-1' pragma: @@ -302,14 +304,14 @@ interactions: - --resource-group --name --nodepool-name --generate-ssh-keys --vm-set-type --node-count -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8ab0e1b7-b58a-476c-9ab1-ffddcd14b0a6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f163a61-60bf-4351-9745-133af6a830af?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b7e1b08a-8ab5-6c47-9ab1-ffddcd14b0a6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:00.9341173Z\"\n }" + string: "{\n \"name\": \"613a166f-bf60-5143-9745-133af6a830af\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:12:05.6087442Z\"\n }" headers: cache-control: - no-cache @@ -318,7 +320,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:28:31 GMT + - Fri, 16 Jun 2023 16:13:06 GMT expires: - '-1' pragma: @@ -351,14 +353,14 @@ interactions: - --resource-group --name --nodepool-name --generate-ssh-keys --vm-set-type --node-count -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8ab0e1b7-b58a-476c-9ab1-ffddcd14b0a6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f163a61-60bf-4351-9745-133af6a830af?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b7e1b08a-8ab5-6c47-9ab1-ffddcd14b0a6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:00.9341173Z\"\n }" + string: "{\n \"name\": \"613a166f-bf60-5143-9745-133af6a830af\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:12:05.6087442Z\"\n }" headers: cache-control: - no-cache @@ -367,7 +369,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:29:00 GMT + - Fri, 16 Jun 2023 16:13:36 GMT expires: - '-1' pragma: @@ -400,14 +402,14 @@ interactions: - --resource-group --name --nodepool-name --generate-ssh-keys --vm-set-type --node-count -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8ab0e1b7-b58a-476c-9ab1-ffddcd14b0a6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f163a61-60bf-4351-9745-133af6a830af?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b7e1b08a-8ab5-6c47-9ab1-ffddcd14b0a6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:00.9341173Z\"\n }" + string: "{\n \"name\": \"613a166f-bf60-5143-9745-133af6a830af\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:12:05.6087442Z\"\n }" headers: cache-control: - no-cache @@ -416,7 +418,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:29:30 GMT + - Fri, 16 Jun 2023 16:14:06 GMT expires: - '-1' pragma: @@ -449,14 +451,14 @@ interactions: - --resource-group --name --nodepool-name --generate-ssh-keys --vm-set-type --node-count -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8ab0e1b7-b58a-476c-9ab1-ffddcd14b0a6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f163a61-60bf-4351-9745-133af6a830af?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b7e1b08a-8ab5-6c47-9ab1-ffddcd14b0a6\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:00.9341173Z\"\n }" + string: "{\n \"name\": \"613a166f-bf60-5143-9745-133af6a830af\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T16:12:05.6087442Z\"\n }" headers: cache-control: - no-cache @@ -465,7 +467,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:30:00 GMT + - Fri, 16 Jun 2023 16:14:36 GMT expires: - '-1' pragma: @@ -498,15 +500,15 @@ interactions: - --resource-group --name --nodepool-name --generate-ssh-keys --vm-set-type --node-count -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8ab0e1b7-b58a-476c-9ab1-ffddcd14b0a6?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6f163a61-60bf-4351-9745-133af6a830af?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b7e1b08a-8ab5-6c47-9ab1-ffddcd14b0a6\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:27:00.9341173Z\",\n \"endTime\": - \"2023-03-15T11:30:29.9755763Z\"\n }" + string: "{\n \"name\": \"613a166f-bf60-5143-9745-133af6a830af\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T16:12:05.6087442Z\",\n \"\ + endTime\": \"2023-06-16T16:15:28.9631587Z\"\n }" headers: cache-control: - no-cache @@ -515,7 +517,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:30:31 GMT + - Fri, 16 Jun 2023 16:17:31 GMT expires: - '-1' pragma: @@ -548,63 +550,66 @@ interactions: - --resource-group --name --nodepool-name --generate-ssh-keys --vm-set-type --node-count -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cmdtest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cmdtest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cmdtest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cmdtest45a-clitestj7dhglg2d-79a739\",\n \"fqdn\": \"cmdtest45a-clitestj7dhglg2d-79a739-276ujp0r.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cmdtest45a-clitestj7dhglg2d-79a739-276ujp0r.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsUNxyxr64cgmW2DeA1l9gyK/y7ju7yByewyVXKzMCyus691v155Wlojgjf55QrjZEeh3CyY0sOMiUZeTTFNs9AeJuFeaOBn1uWTSbFB/cyoaVwyGCxt3BGxc4g8viIllhVgAo4ZCo9sVLm3t+89irXsvWmQnKUl3eKY5tmp47q8XjWowWtANK/26rpawOXwJlVxoL9dZaKmp6WBF8uL2LwULpZr+vOurWd1qSyJprcxFMjnK+3wFEfQuaSuEHfXIPuVBv34wHFMALj4hz5xZ0fiZAUrFNhUo4pfNFtcdV+rfV7mCYcPReLm9pUTv+Lqkk0sdRc4XBI5iUVxrtQtuL\"\n - \ }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cmdtest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cmdtest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2672effe-3872-4557-a3f0-fa3890d9cd95\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cmdtest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmdtest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cmdtest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cmdtest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cmdtestyc2-clitestvbdcyimze-8ecadf\",\n\ + \ \"fqdn\": \"cmdtestyc2-clitestvbdcyimze-8ecadf-7fi1wdv8.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cmdtestyc2-clitestvbdcyimze-8ecadf-7fi1wdv8.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"\ + count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDpX1rdEYwy8z3kRUtRfwnjcaa5sVBDlUyteEiAVG60B6vO74sUT/s0cmvOGRY56u17SQxCQdf7Y8rapBYnkCybdcP8Vh6SoQszHc2N5LbcfHLoeA9wrFvW74ZZHmld34yo1OeU3xKZVlGB+xP54En93j1zYZa7WFQz20r/R4JR2koF6h1W4jxneKXzRTs/KoZyBAHhM1YuqQiEohJHxccmFlAm1pvzwaEtBMeGQdu3wjSL9CGOGsBTcnSo06LkZ1EXdd9zgSO5Vma/qBA4ZcP7rG6ght3ajBs5b7TqabuISOeWiu9y8GxY+lxiolSmE/MyKAaoJJ8nxHrbjom+gLtsGhW79FqoqySDkN+qK1h/L5YEIjgfx0L4bJkeKGXWNXmGGJE1tEkV0ob9EBpJAMEza46N+LImo/q465+vUG2nOS/cgFkMG4yclVe6f7kyOWWbijFMTcInThhtMoJUBfikOTguGlAIIjMphhaWyAXIjmbpiyDppctW0OrF4ljGx9E=\ + \ henrychen@microsoft.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cmdtest000002_westus2\",\n \"\ + enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\"\ + : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cmdtest000002_westus2/providers/Microsoft.Network/publicIPAddresses/26d6583f-cc95-494c-8f6a-fe7fc4ec935e\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cmdtest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmdtest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3867' + - '4064' content-type: - application/json date: - - Wed, 15 Mar 2023 11:30:32 GMT + - Fri, 16 Jun 2023 16:17:32 GMT expires: - '-1' pragma: @@ -636,63 +641,66 @@ interactions: ParameterSetName: - -g -n -o -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cmdtest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cmdtest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cmdtest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cmdtest45a-clitestj7dhglg2d-79a739\",\n \"fqdn\": \"cmdtest45a-clitestj7dhglg2d-79a739-276ujp0r.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cmdtest45a-clitestj7dhglg2d-79a739-276ujp0r.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsUNxyxr64cgmW2DeA1l9gyK/y7ju7yByewyVXKzMCyus691v155Wlojgjf55QrjZEeh3CyY0sOMiUZeTTFNs9AeJuFeaOBn1uWTSbFB/cyoaVwyGCxt3BGxc4g8viIllhVgAo4ZCo9sVLm3t+89irXsvWmQnKUl3eKY5tmp47q8XjWowWtANK/26rpawOXwJlVxoL9dZaKmp6WBF8uL2LwULpZr+vOurWd1qSyJprcxFMjnK+3wFEfQuaSuEHfXIPuVBv34wHFMALj4hz5xZ0fiZAUrFNhUo4pfNFtcdV+rfV7mCYcPReLm9pUTv+Lqkk0sdRc4XBI5iUVxrtQtuL\"\n - \ }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cmdtest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cmdtest000002_westus2/providers/Microsoft.Network/publicIPAddresses/2672effe-3872-4557-a3f0-fa3890d9cd95\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cmdtest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmdtest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cmdtest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cmdtest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cmdtestyc2-clitestvbdcyimze-8ecadf\",\n\ + \ \"fqdn\": \"cmdtestyc2-clitestvbdcyimze-8ecadf-7fi1wdv8.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cmdtestyc2-clitestvbdcyimze-8ecadf-7fi1wdv8.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"c000003\",\n \"\ + count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDpX1rdEYwy8z3kRUtRfwnjcaa5sVBDlUyteEiAVG60B6vO74sUT/s0cmvOGRY56u17SQxCQdf7Y8rapBYnkCybdcP8Vh6SoQszHc2N5LbcfHLoeA9wrFvW74ZZHmld34yo1OeU3xKZVlGB+xP54En93j1zYZa7WFQz20r/R4JR2koF6h1W4jxneKXzRTs/KoZyBAHhM1YuqQiEohJHxccmFlAm1pvzwaEtBMeGQdu3wjSL9CGOGsBTcnSo06LkZ1EXdd9zgSO5Vma/qBA4ZcP7rG6ght3ajBs5b7TqabuISOeWiu9y8GxY+lxiolSmE/MyKAaoJJ8nxHrbjom+gLtsGhW79FqoqySDkN+qK1h/L5YEIjgfx0L4bJkeKGXWNXmGGJE1tEkV0ob9EBpJAMEza46N+LImo/q465+vUG2nOS/cgFkMG4yclVe6f7kyOWWbijFMTcInThhtMoJUBfikOTguGlAIIjMphhaWyAXIjmbpiyDppctW0OrF4ljGx9E=\ + \ henrychen@microsoft.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cmdtest000002_westus2\",\n \"\ + enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \"networkProfile\"\ + : {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": \"Standard\"\ + ,\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": {\n \"\ + count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n \"\ + id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cmdtest000002_westus2/providers/Microsoft.Network/publicIPAddresses/26d6583f-cc95-494c-8f6a-fe7fc4ec935e\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cmdtest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cmdtest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3867' + - '4064' content-type: - application/json date: - - Wed, 15 Mar 2023 11:30:32 GMT + - Fri, 16 Jun 2023 16:17:34 GMT expires: - '-1' pragma: @@ -728,8 +736,8 @@ interactions: ParameterSetName: - -g -n -o -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cmdtest000002/runCommand?api-version=2023-04-01 response: @@ -741,11 +749,11 @@ interactions: content-length: - '0' date: - - Wed, 15 Mar 2023 11:30:32 GMT + - Fri, 16 Jun 2023 16:17:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclusters/cmdtest000002/commandResults/3692ca762b244f49929563003ed10b8a?api-version=2023-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclusters/cmdtest000002/commandResults/a366ff400a51466199123f687a2d6313?api-version=2023-04-01 pragma: - no-cache server: @@ -773,14 +781,14 @@ interactions: ParameterSetName: - -g -n -o -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclusters/cmdtest000002/commandResults/3692ca762b244f49929563003ed10b8a?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclusters/cmdtest000002/commandResults/a366ff400a51466199123f687a2d6313?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"3692ca762b244f49929563003ed10b8a\",\n \"properties\": - {\n \"provisioningState\": \"Running\"\n }\n }" + string: "{\n \"id\": \"a366ff400a51466199123f687a2d6313\",\n \"properties\"\ + : {\n \"provisioningState\": \"Running\"\n }\n }" headers: cache-control: - no-cache @@ -789,58 +797,11 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:30:37 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclusters/cmdtest000002/commandResults/3692ca762b244f49929563003ed10b8a?api-version=2023-04-01 - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks command invoke - Connection: - - keep-alive - ParameterSetName: - - -g -n -o -c - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclusters/cmdtest000002/commandResults/3692ca762b244f49929563003ed10b8a?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"3692ca762b244f49929563003ed10b8a\",\n \"properties\": - {\n \"provisioningState\": \"Running\",\n \"startedAt\": \"2023-03-15T11:30:39Z\"\n - \ }\n }" - headers: - cache-control: - - no-cache - content-length: - - '144' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:30:42 GMT + - Fri, 16 Jun 2023 16:17:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclusters/cmdtest000002/commandResults/3692ca762b244f49929563003ed10b8a?api-version=2023-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclusters/cmdtest000002/commandResults/a366ff400a51466199123f687a2d6313?api-version=2023-04-01 pragma: - no-cache server: @@ -866,43 +827,40 @@ interactions: ParameterSetName: - -g -n -o -c User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclusters/cmdtest000002/commandResults/3692ca762b244f49929563003ed10b8a?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedclusters/cmdtest000002/commandResults/a366ff400a51466199123f687a2d6313?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"3692ca762b244f49929563003ed10b8a\",\n \"properties\": - {\n \"provisioningState\": \"Succeeded\",\n \"exitCode\": 0,\n \"startedAt\": - \"2023-03-15T11:30:39Z\",\n \"finishedAt\": \"2023-03-15T11:30:40Z\",\n - \ \"logs\": \"NAMESPACE NAME READY - \ STATUS RESTARTS AGE\\naks-command command-3692ca762b244f49929563003ed10b8a - \ 0/1 ContainerCreating 0 7s\\nkube-system azure-ip-masq-agent-x4qw9 - \ 1/1 Running 0 83s\\nkube-system - \ cloud-node-manager-2wpzj 1/1 Running 0 - \ 83s\\nkube-system coredns-59b6bf8b4f-5zv8r 1/1 - \ Running 0 13s\\nkube-system coredns-59b6bf8b4f-pn54z - \ 1/1 Running 0 93s\\nkube-system - \ coredns-autoscaler-5655d66f64-wtqkz 1/1 Running 0 - \ 93s\\nkube-system csi-azuredisk-node-j7rcj 3/3 - \ Running 0 83s\\nkube-system csi-azurefile-node-bphs7 - \ 3/3 Running 0 83s\\nkube-system - \ konnectivity-agent-5fb9d8944d-g4sfm 1/1 Running 0 - \ 92s\\nkube-system konnectivity-agent-5fb9d8944d-vrmxj 1/1 - \ Running 0 92s\\nkube-system kube-proxy-q6f9p 1/1 - \ Running 0 83s\\nkube-system metrics-server-58df99c858-9dgnv - \ 1/2 Running 0 92s\\nkube-system metrics-server-7dd74d8758-cwqtm - \ 1/2 Running 0 8s\\nkube-system metrics-server-7dd74d8758-qsr6m - \ 1/2 Running 0 7s\\n\"\n }\n }" + string: "{\n \"id\": \"a366ff400a51466199123f687a2d6313\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"exitCode\": 0,\n \"\ + startedAt\": \"2023-06-16T16:17:39Z\",\n \"finishedAt\": \"2023-06-16T16:17:39Z\"\ + ,\n \"logs\": \"NAMESPACE NAME \ + \ READY STATUS RESTARTS AGE\\naks-command command-a366ff400a51466199123f687a2d6313\ + \ 1/1 Running 0 3s\\nkube-system azure-ip-masq-agent-2lpzw\ + \ 1/1 Running 0 3m13s\\nkube-system cloud-node-manager-lv2z2\ + \ 1/1 Running 0 3m13s\\nkube-system coredns-6749dfb98f-jhdpg\ + \ 1/1 Running 0 3m44s\\nkube-system coredns-6749dfb98f-nh722\ + \ 1/1 Running 0 2m18s\\nkube-system coredns-autoscaler-7cf74c58db-pskt9\ + \ 1/1 Running 0 3m44s\\nkube-system csi-azuredisk-node-hskpx\ + \ 3/3 Running 0 3m13s\\nkube-system csi-azurefile-node-p42xx\ + \ 3/3 Running 0 3m13s\\nkube-system konnectivity-agent-7786fc5776-6sf9t\ + \ 1/1 Running 0 3m28s\\nkube-system konnectivity-agent-7786fc5776-cqsql\ + \ 1/1 Running 0 2m17s\\nkube-system kube-proxy-h6vsh\ + \ 1/1 Running 0 3m13s\\nkube-system\ + \ metrics-server-7c47dbfd57-2pdc2 2/2 Running 0 \ + \ 2m11s\\nkube-system metrics-server-7c47dbfd57-zqw2h 2/2 \ + \ Running 0 2m11s\\n\"\n }\n }" headers: cache-control: - no-cache content-length: - - '1732' + - '1517' content-type: - application/json date: - - Wed, 15 Mar 2023 11:30:47 GMT + - Fri, 16 Jun 2023 16:17:41 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_stop_and_start.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_stop_and_start.yaml index be2698fe8d3..cf8b5ceeb37 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_stop_and_start.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_stop_and_start.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --generate-ssh-keys User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:30:17 GMT + - Sat, 17 Jun 2023 16:07:29 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --generate-ssh-keys User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T11:30:17Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_stop_and_start","date":"2023-06-17T16:07:27Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '353' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:30:17 GMT + - Sat, 17 Jun 2023 16:07:29 GMT expires: - '-1' pragma: @@ -88,19 +88,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesttb7hyrvit-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestppruyplz5-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsUNxyxr64cgmW2DeA1l9gyK/y7ju7yByewyVXKzMCyus691v155Wlojgjf55QrjZEeh3CyY0sOMiUZeTTFNs9AeJuFeaOBn1uWTSbFB/cyoaVwyGCxt3BGxc4g8viIllhVgAo4ZCo9sVLm3t+89irXsvWmQnKUl3eKY5tmp47q8XjWowWtANK/26rpawOXwJlVxoL9dZaKmp6WBF8uL2LwULpZr+vOurWd1qSyJprcxFMjnK+3wFEfQuaSuEHfXIPuVBv34wHFMALj4hz5xZ0fiZAUrFNhUo4pfNFtcdV+rfV7mCYcPReLm9pUTv+Lqkk0sdRc4XBI5iUVxrtQtuL"}]}}, - "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": - "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": - "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": - {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDpX1rdEYwy8z3kRUtRfwnjcaa5sVBDlUyteEiAVG60B6vO74sUT/s0cmvOGRY56u17SQxCQdf7Y8rapBYnkCybdcP8Vh6SoQszHc2N5LbcfHLoeA9wrFvW74ZZHmld34yo1OeU3xKZVlGB+xP54En93j1zYZa7WFQz20r/R4JR2koF6h1W4jxneKXzRTs/KoZyBAHhM1YuqQiEohJHxccmFlAm1pvzwaEtBMeGQdu3wjSL9CGOGsBTcnSo06LkZ1EXdd9zgSO5Vma/qBA4ZcP7rG6ght3ajBs5b7TqabuISOeWiu9y8GxY+lxiolSmE/MyKAaoJJ8nxHrbjom+gLtsGhW79FqoqySDkN+qK1h/L5YEIjgfx0L4bJkeKGXWNXmGGJE1tEkV0ob9EBpJAMEza46N+LImo/q465+vUG2nOS/cgFkMG4yclVe6f7kyOWWbijFMTcInThhtMoJUBfikOTguGlAIIjMphhaWyAXIjmbpiyDppctW0OrF4ljGx9E= + henrychen@microsoft.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -111,66 +110,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1425' + - '1586' Content-Type: - application/json ParameterSetName: - --resource-group --name --generate-ssh-keys User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesttb7hyrvit-79a739\",\n \"fqdn\": \"cliakstest-clitesttb7hyrvit-79a739-oamo65yw.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesttb7hyrvit-79a739-oamo65yw.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsUNxyxr64cgmW2DeA1l9gyK/y7ju7yByewyVXKzMCyus691v155Wlojgjf55QrjZEeh3CyY0sOMiUZeTTFNs9AeJuFeaOBn1uWTSbFB/cyoaVwyGCxt3BGxc4g8viIllhVgAo4ZCo9sVLm3t+89irXsvWmQnKUl3eKY5tmp47q8XjWowWtANK/26rpawOXwJlVxoL9dZaKmp6WBF8uL2LwULpZr+vOurWd1qSyJprcxFMjnK+3wFEfQuaSuEHfXIPuVBv34wHFMALj4hz5xZ0fiZAUrFNhUo4pfNFtcdV+rfV7mCYcPReLm9pUTv+Lqkk0sdRc4XBI5iUVxrtQtuL\"\n - \ }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": - \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestppruyplz5-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestppruyplz5-8ecadf-a7cbmo25.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestppruyplz5-8ecadf-a7cbmo25.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDpX1rdEYwy8z3kRUtRfwnjcaa5sVBDlUyteEiAVG60B6vO74sUT/s0cmvOGRY56u17SQxCQdf7Y8rapBYnkCybdcP8Vh6SoQszHc2N5LbcfHLoeA9wrFvW74ZZHmld34yo1OeU3xKZVlGB+xP54En93j1zYZa7WFQz20r/R4JR2koF6h1W4jxneKXzRTs/KoZyBAHhM1YuqQiEohJHxccmFlAm1pvzwaEtBMeGQdu3wjSL9CGOGsBTcnSo06LkZ1EXdd9zgSO5Vma/qBA4ZcP7rG6ght3ajBs5b7TqabuISOeWiu9y8GxY+lxiolSmE/MyKAaoJJ8nxHrbjom+gLtsGhW79FqoqySDkN+qK1h/L5YEIjgfx0L4bJkeKGXWNXmGGJE1tEkV0ob9EBpJAMEza46N+LImo/q465+vUG2nOS/cgFkMG4yclVe6f7kyOWWbijFMTcInThhtMoJUBfikOTguGlAIIjMphhaWyAXIjmbpiyDppctW0OrF4ljGx9E=\ + \ henrychen@microsoft.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2011695-c147-4f43-967c-0340b21bc712?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d087091-d423-4e85-9442-d5f5d37fc6e5?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3234' + - '3431' content-type: - application/json date: - - Wed, 15 Mar 2023 11:30:20 GMT + - Sat, 17 Jun 2023 16:07:36 GMT expires: - '-1' pragma: @@ -182,7 +184,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1199' status: code: 201 message: Created @@ -200,14 +202,14 @@ interactions: ParameterSetName: - --resource-group --name --generate-ssh-keys User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2011695-c147-4f43-967c-0340b21bc712?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d087091-d423-4e85-9442-d5f5d37fc6e5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"951601a2-47c1-434f-967c-0340b21bc712\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:30:21.5443817Z\"\n }" + string: "{\n \"name\": \"9170081d-23d4-854e-9442-d5f5d37fc6e5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-17T16:07:36.5819684Z\"\n }" headers: cache-control: - no-cache @@ -216,7 +218,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:30:51 GMT + - Sat, 17 Jun 2023 16:07:36 GMT expires: - '-1' pragma: @@ -248,14 +250,14 @@ interactions: ParameterSetName: - --resource-group --name --generate-ssh-keys User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2011695-c147-4f43-967c-0340b21bc712?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d087091-d423-4e85-9442-d5f5d37fc6e5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"951601a2-47c1-434f-967c-0340b21bc712\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:30:21.5443817Z\"\n }" + string: "{\n \"name\": \"9170081d-23d4-854e-9442-d5f5d37fc6e5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-17T16:07:36.5819684Z\"\n }" headers: cache-control: - no-cache @@ -264,7 +266,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:21 GMT + - Sat, 17 Jun 2023 16:08:07 GMT expires: - '-1' pragma: @@ -296,14 +298,14 @@ interactions: ParameterSetName: - --resource-group --name --generate-ssh-keys User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2011695-c147-4f43-967c-0340b21bc712?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d087091-d423-4e85-9442-d5f5d37fc6e5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"951601a2-47c1-434f-967c-0340b21bc712\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:30:21.5443817Z\"\n }" + string: "{\n \"name\": \"9170081d-23d4-854e-9442-d5f5d37fc6e5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-17T16:07:36.5819684Z\"\n }" headers: cache-control: - no-cache @@ -312,7 +314,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:51 GMT + - Sat, 17 Jun 2023 16:08:37 GMT expires: - '-1' pragma: @@ -344,14 +346,14 @@ interactions: ParameterSetName: - --resource-group --name --generate-ssh-keys User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2011695-c147-4f43-967c-0340b21bc712?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d087091-d423-4e85-9442-d5f5d37fc6e5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"951601a2-47c1-434f-967c-0340b21bc712\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:30:21.5443817Z\"\n }" + string: "{\n \"name\": \"9170081d-23d4-854e-9442-d5f5d37fc6e5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-17T16:07:36.5819684Z\"\n }" headers: cache-control: - no-cache @@ -360,7 +362,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:32:21 GMT + - Sat, 17 Jun 2023 16:09:07 GMT expires: - '-1' pragma: @@ -392,14 +394,14 @@ interactions: ParameterSetName: - --resource-group --name --generate-ssh-keys User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2011695-c147-4f43-967c-0340b21bc712?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d087091-d423-4e85-9442-d5f5d37fc6e5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"951601a2-47c1-434f-967c-0340b21bc712\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:30:21.5443817Z\"\n }" + string: "{\n \"name\": \"9170081d-23d4-854e-9442-d5f5d37fc6e5\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-17T16:07:36.5819684Z\"\n }" headers: cache-control: - no-cache @@ -408,7 +410,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:32:52 GMT + - Sat, 17 Jun 2023 16:09:37 GMT expires: - '-1' pragma: @@ -440,111 +442,15 @@ interactions: ParameterSetName: - --resource-group --name --generate-ssh-keys User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2011695-c147-4f43-967c-0340b21bc712?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1d087091-d423-4e85-9442-d5f5d37fc6e5?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"951601a2-47c1-434f-967c-0340b21bc712\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:30:21.5443817Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:33:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --generate-ssh-keys - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2011695-c147-4f43-967c-0340b21bc712?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"951601a2-47c1-434f-967c-0340b21bc712\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:30:21.5443817Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:33:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --generate-ssh-keys - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a2011695-c147-4f43-967c-0340b21bc712?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"951601a2-47c1-434f-967c-0340b21bc712\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:30:21.5443817Z\",\n \"endTime\": - \"2023-03-15T11:34:12.0379313Z\"\n }" + string: "{\n \"name\": \"9170081d-23d4-854e-9442-d5f5d37fc6e5\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-17T16:07:36.5819684Z\",\n \"\ + endTime\": \"2023-06-17T16:10:41.4914064Z\"\n }" headers: cache-control: - no-cache @@ -553,7 +459,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:34:21 GMT + - Sat, 17 Jun 2023 17:07:23 GMT expires: - '-1' pragma: @@ -585,63 +491,69 @@ interactions: ParameterSetName: - --resource-group --name --generate-ssh-keys User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesttb7hyrvit-79a739\",\n \"fqdn\": \"cliakstest-clitesttb7hyrvit-79a739-oamo65yw.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesttb7hyrvit-79a739-oamo65yw.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsUNxyxr64cgmW2DeA1l9gyK/y7ju7yByewyVXKzMCyus691v155Wlojgjf55QrjZEeh3CyY0sOMiUZeTTFNs9AeJuFeaOBn1uWTSbFB/cyoaVwyGCxt3BGxc4g8viIllhVgAo4ZCo9sVLm3t+89irXsvWmQnKUl3eKY5tmp47q8XjWowWtANK/26rpawOXwJlVxoL9dZaKmp6WBF8uL2LwULpZr+vOurWd1qSyJprcxFMjnK+3wFEfQuaSuEHfXIPuVBv34wHFMALj4hz5xZ0fiZAUrFNhUo4pfNFtcdV+rfV7mCYcPReLm9pUTv+Lqkk0sdRc4XBI5iUVxrtQtuL\"\n - \ }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/3b00aa5b-e0ff-4c8e-b6a5-90bac427683d\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestppruyplz5-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestppruyplz5-8ecadf-a7cbmo25.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestppruyplz5-8ecadf-a7cbmo25.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDpX1rdEYwy8z3kRUtRfwnjcaa5sVBDlUyteEiAVG60B6vO74sUT/s0cmvOGRY56u17SQxCQdf7Y8rapBYnkCybdcP8Vh6SoQszHc2N5LbcfHLoeA9wrFvW74ZZHmld34yo1OeU3xKZVlGB+xP54En93j1zYZa7WFQz20r/R4JR2koF6h1W4jxneKXzRTs/KoZyBAHhM1YuqQiEohJHxccmFlAm1pvzwaEtBMeGQdu3wjSL9CGOGsBTcnSo06LkZ1EXdd9zgSO5Vma/qBA4ZcP7rG6ght3ajBs5b7TqabuISOeWiu9y8GxY+lxiolSmE/MyKAaoJJ8nxHrbjom+gLtsGhW79FqoqySDkN+qK1h/L5YEIjgfx0L4bJkeKGXWNXmGGJE1tEkV0ob9EBpJAMEza46N+LImo/q465+vUG2nOS/cgFkMG4yclVe6f7kyOWWbijFMTcInThhtMoJUBfikOTguGlAIIjMphhaWyAXIjmbpiyDppctW0OrF4ljGx9E=\ + \ henrychen@microsoft.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/4e7e9ce8-0ae0-455f-9f9b-b9b3dcb044cd\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"defender\": {\n \"logAnalyticsWorkspaceResourceId\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DefaultResourceGroup-WUS2/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8-WUS2\"\ + ,\n \"securityMonitoring\": {\n \"enabled\": true\n }\n }\n\ + \ },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n\ + \ \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"\ + oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\"\ + : {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\"\ + :\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\ + \n },\n \"sku\": {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n\ + \ }" headers: cache-control: - no-cache content-length: - - '3887' + - '4416' content-type: - application/json date: - - Wed, 15 Mar 2023 11:34:22 GMT + - Sat, 17 Jun 2023 17:07:24 GMT expires: - '-1' pragma: @@ -675,8 +587,8 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/stop?api-version=2023-04-01 response: @@ -684,17 +596,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/491f5dd2-bec1-40bf-a618-fc530c90f842?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64439713-0de3-440c-b2ee-86e82a8aa3c7?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:34:23 GMT + - Sat, 17 Jun 2023 17:07:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/491f5dd2-bec1-40bf-a618-fc530c90f842?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/64439713-0de3-440c-b2ee-86e82a8aa3c7?api-version=2016-03-30 pragma: - no-cache server: @@ -722,62 +634,14 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/491f5dd2-bec1-40bf-a618-fc530c90f842?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"d25d1f49-c1be-bf40-a618-fc530c90f842\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:34:23.4519249Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:34:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks stop - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/491f5dd2-bec1-40bf-a618-fc530c90f842?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64439713-0de3-440c-b2ee-86e82a8aa3c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d25d1f49-c1be-bf40-a618-fc530c90f842\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:34:23.4519249Z\"\n }" + string: "{\n \"name\": \"13974364-e30d-0c44-b2ee-86e82a8aa3c7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-17T17:07:26.6534341Z\"\n }" headers: cache-control: - no-cache @@ -786,7 +650,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:35:23 GMT + - Sat, 17 Jun 2023 17:07:26 GMT expires: - '-1' pragma: @@ -818,15 +682,15 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/491f5dd2-bec1-40bf-a618-fc530c90f842?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/64439713-0de3-440c-b2ee-86e82a8aa3c7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d25d1f49-c1be-bf40-a618-fc530c90f842\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:34:23.4519249Z\",\n \"endTime\": - \"2023-03-15T11:35:41.3771842Z\"\n }" + string: "{\n \"name\": \"13974364-e30d-0c44-b2ee-86e82a8aa3c7\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-17T17:07:26.6534341Z\",\n \"\ + endTime\": \"2023-06-17T17:08:50.9465197Z\"\n }" headers: cache-control: - no-cache @@ -835,7 +699,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:35:53 GMT + - Sat, 17 Jun 2023 18:06:54 GMT expires: - '-1' pragma: @@ -867,10 +731,10 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/491f5dd2-bec1-40bf-a618-fc530c90f842?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/64439713-0de3-440c-b2ee-86e82a8aa3c7?api-version=2016-03-30 response: body: string: '' @@ -880,11 +744,11 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:35:53 GMT + - Sat, 17 Jun 2023 18:06:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/491f5dd2-bec1-40bf-a618-fc530c90f842?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/64439713-0de3-440c-b2ee-86e82a8aa3c7?api-version=2016-03-30 pragma: - no-cache server: @@ -912,8 +776,8 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002/start?api-version=2023-04-01 response: @@ -921,17 +785,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2b866f07-3194-4cbb-93fd-3502d8a50664?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d60b4c2-0874-428d-b98c-2aaf6203887e?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:35:54 GMT + - Sat, 17 Jun 2023 18:06:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/2b866f07-3194-4cbb-93fd-3502d8a50664?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/3d60b4c2-0874-428d-b98c-2aaf6203887e?api-version=2016-03-30 pragma: - no-cache server: @@ -959,23 +823,27 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2b866f07-3194-4cbb-93fd-3502d8a50664?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d60b4c2-0874-428d-b98c-2aaf6203887e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"076f862b-9431-bb4c-93fd-3502d8a50664\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:54.4991704Z\"\n }" + string: "{\n \"name\": \"c2b4603d-7408-8d42-b98c-2aaf6203887e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-17T18:06:56.4587838Z\",\n \"\ + error\": {\n \"code\": \"NotLatestOperation\",\n \"message\": \"Cannot\ + \ proceed with the operation. Either the operation has been preempted by another\ + \ one, or the information needed by the operation failed to be saved (or hasn't\ + \ been saved yet).\"\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '374' content-type: - application/json date: - - Wed, 15 Mar 2023 11:36:24 GMT + - Sat, 17 Jun 2023 18:06:55 GMT expires: - '-1' pragma: @@ -1007,216 +875,28 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2b866f07-3194-4cbb-93fd-3502d8a50664?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3d60b4c2-0874-428d-b98c-2aaf6203887e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"076f862b-9431-bb4c-93fd-3502d8a50664\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:54.4991704Z\"\n }" + string: "{\n \"name\": \"c2b4603d-7408-8d42-b98c-2aaf6203887e\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-17T18:06:56.4587838Z\",\n \"\ + endTime\": \"2023-06-17T18:10:21.5116924Z\",\n \"error\": {\n \"code\"\ + : \"NotLatestOperation\",\n \"message\": \"Cannot proceed with the operation.\ + \ Either the operation has been preempted by another one, or the information\ + \ needed by the operation failed to be saved (or hasn't been saved yet).\"\ + \n }\n }" headers: cache-control: - no-cache content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:36:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks start - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2b866f07-3194-4cbb-93fd-3502d8a50664?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"076f862b-9431-bb4c-93fd-3502d8a50664\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:54.4991704Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:37:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks start - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2b866f07-3194-4cbb-93fd-3502d8a50664?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"076f862b-9431-bb4c-93fd-3502d8a50664\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:54.4991704Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:37:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks start - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2b866f07-3194-4cbb-93fd-3502d8a50664?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"076f862b-9431-bb4c-93fd-3502d8a50664\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:54.4991704Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:38:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks start - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2b866f07-3194-4cbb-93fd-3502d8a50664?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"076f862b-9431-bb4c-93fd-3502d8a50664\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:35:54.4991704Z\",\n \"endTime\": - \"2023-03-15T11:38:39.4648025Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '170' + - '418' content-type: - application/json date: - - Wed, 15 Mar 2023 11:38:54 GMT + - Sat, 17 Jun 2023 19:44:16 GMT expires: - '-1' pragma: @@ -1248,10 +928,10 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/2b866f07-3194-4cbb-93fd-3502d8a50664?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/3d60b4c2-0874-428d-b98c-2aaf6203887e?api-version=2016-03-30 response: body: string: '' @@ -1261,11 +941,11 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:38:54 GMT + - Sat, 17 Jun 2023 19:44:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/2b866f07-3194-4cbb-93fd-3502d8a50664?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/3d60b4c2-0874-428d-b98c-2aaf6203887e?api-version=2016-03-30 pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_labels.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_labels.yaml index f4148e44ff2..4f45cf98005 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_labels.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_labels.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:32:29 GMT + - Sat, 29 Apr 2023 11:35:40 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T11:32:30Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_update_labels","date":"2023-04-29T11:35:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '337' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:32:29 GMT + - Sat, 29 Apr 2023 11:35:40 GMT expires: - '-1' pragma: @@ -88,14 +88,14 @@ interactions: message: OK - request: body: '{"location": "westus2", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliakstest-clitestscfaaei26-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + "cliakstest-clitestcfckpohck-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", @@ -118,7 +118,7 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -128,49 +128,49 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestscfaaei26-79a739\",\n \"fqdn\": \"cliakstest-clitestscfaaei26-79a739-0vpoj608.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestscfaaei26-79a739-0vpoj608.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestcfckpohck-79a739\",\n \"fqdn\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/541c8ece-49cc-4fa9-8f5b-dfc2b02aaec9?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad6924fe-0d0f-4729-8d0b-b168a2d81e2d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3107' + - '3145' content-type: - application/json date: - - Wed, 15 Mar 2023 11:32:32 GMT + - Sat, 29 Apr 2023 11:35:44 GMT expires: - '-1' pragma: @@ -182,7 +182,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -200,14 +200,206 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad6924fe-0d0f-4729-8d0b-b168a2d81e2d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"fe2469ad-0f0d-2947-8d0b-b168a2d81e2d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:35:44.5758013Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:35:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --service-principal --client-secret --ssh-key-value + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad6924fe-0d0f-4729-8d0b-b168a2d81e2d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"fe2469ad-0f0d-2947-8d0b-b168a2d81e2d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:35:44.5758013Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:36:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --service-principal --client-secret --ssh-key-value + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad6924fe-0d0f-4729-8d0b-b168a2d81e2d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"fe2469ad-0f0d-2947-8d0b-b168a2d81e2d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:35:44.5758013Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:36:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --service-principal --client-secret --ssh-key-value + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad6924fe-0d0f-4729-8d0b-b168a2d81e2d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"fe2469ad-0f0d-2947-8d0b-b168a2d81e2d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:35:44.5758013Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:37:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --service-principal --client-secret --ssh-key-value + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/541c8ece-49cc-4fa9-8f5b-dfc2b02aaec9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad6924fe-0d0f-4729-8d0b-b168a2d81e2d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ce8e1c54-cc49-a94f-8f5b-dfc2b02aaec9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:32:33.4826658Z\"\n }" + string: "{\n \"name\": \"fe2469ad-0f0d-2947-8d0b-b168a2d81e2d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:35:44.5758013Z\"\n }" headers: cache-control: - no-cache @@ -216,7 +408,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:33:03 GMT + - Sat, 29 Apr 2023 11:37:44 GMT expires: - '-1' pragma: @@ -248,14 +440,14 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/541c8ece-49cc-4fa9-8f5b-dfc2b02aaec9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad6924fe-0d0f-4729-8d0b-b168a2d81e2d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ce8e1c54-cc49-a94f-8f5b-dfc2b02aaec9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:32:33.4826658Z\"\n }" + string: "{\n \"name\": \"fe2469ad-0f0d-2947-8d0b-b168a2d81e2d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:35:44.5758013Z\"\n }" headers: cache-control: - no-cache @@ -264,7 +456,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:33:33 GMT + - Sat, 29 Apr 2023 11:38:14 GMT expires: - '-1' pragma: @@ -296,14 +488,14 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/541c8ece-49cc-4fa9-8f5b-dfc2b02aaec9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad6924fe-0d0f-4729-8d0b-b168a2d81e2d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ce8e1c54-cc49-a94f-8f5b-dfc2b02aaec9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:32:33.4826658Z\"\n }" + string: "{\n \"name\": \"fe2469ad-0f0d-2947-8d0b-b168a2d81e2d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:35:44.5758013Z\"\n }" headers: cache-control: - no-cache @@ -312,7 +504,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:34:04 GMT + - Sat, 29 Apr 2023 11:38:44 GMT expires: - '-1' pragma: @@ -344,14 +536,14 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/541c8ece-49cc-4fa9-8f5b-dfc2b02aaec9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad6924fe-0d0f-4729-8d0b-b168a2d81e2d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ce8e1c54-cc49-a94f-8f5b-dfc2b02aaec9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:32:33.4826658Z\"\n }" + string: "{\n \"name\": \"fe2469ad-0f0d-2947-8d0b-b168a2d81e2d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:35:44.5758013Z\"\n }" headers: cache-control: - no-cache @@ -360,7 +552,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:34:33 GMT + - Sat, 29 Apr 2023 11:39:14 GMT expires: - '-1' pragma: @@ -392,14 +584,14 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/541c8ece-49cc-4fa9-8f5b-dfc2b02aaec9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad6924fe-0d0f-4729-8d0b-b168a2d81e2d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ce8e1c54-cc49-a94f-8f5b-dfc2b02aaec9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:32:33.4826658Z\"\n }" + string: "{\n \"name\": \"fe2469ad-0f0d-2947-8d0b-b168a2d81e2d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:35:44.5758013Z\"\n }" headers: cache-control: - no-cache @@ -408,7 +600,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:35:03 GMT + - Sat, 29 Apr 2023 11:39:44 GMT expires: - '-1' pragma: @@ -440,24 +632,23 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/541c8ece-49cc-4fa9-8f5b-dfc2b02aaec9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad6924fe-0d0f-4729-8d0b-b168a2d81e2d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ce8e1c54-cc49-a94f-8f5b-dfc2b02aaec9\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:32:33.4826658Z\",\n \"endTime\": - \"2023-03-15T11:35:20.628224Z\"\n }" + string: "{\n \"name\": \"fe2469ad-0f0d-2947-8d0b-b168a2d81e2d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:35:44.5758013Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:35:33 GMT + - Sat, 29 Apr 2023 11:40:15 GMT expires: - '-1' pragma: @@ -489,7 +680,152 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad6924fe-0d0f-4729-8d0b-b168a2d81e2d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"fe2469ad-0f0d-2947-8d0b-b168a2d81e2d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:35:44.5758013Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:40:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --service-principal --client-secret --ssh-key-value + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad6924fe-0d0f-4729-8d0b-b168a2d81e2d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"fe2469ad-0f0d-2947-8d0b-b168a2d81e2d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:35:44.5758013Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:41:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --service-principal --client-secret --ssh-key-value + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ad6924fe-0d0f-4729-8d0b-b168a2d81e2d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"fe2469ad-0f0d-2947-8d0b-b168a2d81e2d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-04-29T11:35:44.5758013Z\",\n \"endTime\": + \"2023-04-29T11:41:41.7673991Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:41:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --service-principal --client-secret --ssh-key-value + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -499,29 +835,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestscfaaei26-79a739\",\n \"fqdn\": \"cliakstest-clitestscfaaei26-79a739-0vpoj608.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestscfaaei26-79a739-0vpoj608.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestcfckpohck-79a739\",\n \"fqdn\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/04afc80a-28de-485a-82fd-63fd8905478b\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a4ecc658-c165-4bfc-89a4-daa665163278\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -532,16 +868,16 @@ interactions: {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3371' + - '3409' content-type: - application/json date: - - Wed, 15 Mar 2023 11:35:33 GMT + - Sat, 29 Apr 2023 11:41:46 GMT expires: - '-1' pragma: @@ -573,7 +909,7 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -583,29 +919,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestscfaaei26-79a739\",\n \"fqdn\": \"cliakstest-clitestscfaaei26-79a739-0vpoj608.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestscfaaei26-79a739-0vpoj608.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestcfckpohck-79a739\",\n \"fqdn\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/04afc80a-28de-485a-82fd-63fd8905478b\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a4ecc658-c165-4bfc-89a4-daa665163278\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -616,16 +952,16 @@ interactions: {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3371' + - '3409' content-type: - application/json date: - - Wed, 15 Mar 2023 11:35:34 GMT + - Sat, 29 Apr 2023 11:41:46 GMT expires: - '-1' pragma: @@ -644,23 +980,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "properties": - {"kubernetesVersion": "1.24.9", "dnsPrefix": "cliakstest-clitestscfaaei26-79a739", + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "properties": + {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliakstest-clitestcfckpohck-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": + "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "nodeLabels": {"label1": "value1", "label2": "value2"}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/04afc80a-28de-485a-82fd-63fd8905478b"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a4ecc658-c165-4bfc-89a4-daa665163278"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, "workloadAutoScalerProfile": {}}}' @@ -674,13 +1010,13 @@ interactions: Connection: - keep-alive Content-Length: - - '2144' + - '2143' Content-Type: - application/json ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -690,30 +1026,30 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestscfaaei26-79a739\",\n \"fqdn\": \"cliakstest-clitestscfaaei26-79a739-0vpoj608.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestscfaaei26-79a739-0vpoj608.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestcfckpohck-79a739\",\n \"fqdn\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n \ \"label1\": \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/04afc80a-28de-485a-82fd-63fd8905478b\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a4ecc658-c165-4bfc-89a4-daa665163278\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -724,18 +1060,18 @@ interactions: {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55a80b97-745c-442c-a325-b67efaab00f4?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1cb4a4c6-cea1-45cb-b0b5-54b8eef41c59?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3449' + - '3487' content-type: - application/json date: - - Wed, 15 Mar 2023 11:35:38 GMT + - Sat, 29 Apr 2023 11:41:50 GMT expires: - '-1' pragma: @@ -751,7 +1087,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1196' status: code: 200 message: OK @@ -769,14 +1105,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55a80b97-745c-442c-a325-b67efaab00f4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1cb4a4c6-cea1-45cb-b0b5-54b8eef41c59?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"970ba855-5c74-2c44-a325-b67efaab00f4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:38.4834827Z\"\n }" + string: "{\n \"name\": \"c6a4b41c-a1ce-cb45-b0b5-54b8eef41c59\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:41:51.1412916Z\"\n }" headers: cache-control: - no-cache @@ -785,7 +1121,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:36:07 GMT + - Sat, 29 Apr 2023 11:41:51 GMT expires: - '-1' pragma: @@ -817,14 +1153,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55a80b97-745c-442c-a325-b67efaab00f4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1cb4a4c6-cea1-45cb-b0b5-54b8eef41c59?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"970ba855-5c74-2c44-a325-b67efaab00f4\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:38.4834827Z\"\n }" + string: "{\n \"name\": \"c6a4b41c-a1ce-cb45-b0b5-54b8eef41c59\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:41:51.1412916Z\"\n }" headers: cache-control: - no-cache @@ -833,7 +1169,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:36:37 GMT + - Sat, 29 Apr 2023 11:42:21 GMT expires: - '-1' pragma: @@ -865,24 +1201,23 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/55a80b97-745c-442c-a325-b67efaab00f4?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1cb4a4c6-cea1-45cb-b0b5-54b8eef41c59?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"970ba855-5c74-2c44-a325-b67efaab00f4\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:35:38.4834827Z\",\n \"endTime\": - \"2023-03-15T11:37:01.701323Z\"\n }" + string: "{\n \"name\": \"c6a4b41c-a1ce-cb45-b0b5-54b8eef41c59\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:41:51.1412916Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:37:08 GMT + - Sat, 29 Apr 2023 11:42:50 GMT expires: - '-1' pragma: @@ -914,7 +1249,56 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1cb4a4c6-cea1-45cb-b0b5-54b8eef41c59?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"c6a4b41c-a1ce-cb45-b0b5-54b8eef41c59\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-04-29T11:41:51.1412916Z\",\n \"endTime\": + \"2023-04-29T11:43:18.2024836Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:43:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --nodepool-labels + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -924,30 +1308,30 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestscfaaei26-79a739\",\n \"fqdn\": \"cliakstest-clitestscfaaei26-79a739-0vpoj608.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestscfaaei26-79a739-0vpoj608.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestcfckpohck-79a739\",\n \"fqdn\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n \ \"label1\": \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/04afc80a-28de-485a-82fd-63fd8905478b\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a4ecc658-c165-4bfc-89a4-daa665163278\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -958,16 +1342,16 @@ interactions: {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3451' + - '3489' content-type: - application/json date: - - Wed, 15 Mar 2023 11:37:09 GMT + - Sat, 29 Apr 2023 11:43:21 GMT expires: - '-1' pragma: @@ -999,7 +1383,7 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -1009,30 +1393,30 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestscfaaei26-79a739\",\n \"fqdn\": \"cliakstest-clitestscfaaei26-79a739-0vpoj608.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestscfaaei26-79a739-0vpoj608.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestcfckpohck-79a739\",\n \"fqdn\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"nodeLabels\": {\n \ \"label1\": \"value1\",\n \"label2\": \"value2\"\n },\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/04afc80a-28de-485a-82fd-63fd8905478b\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a4ecc658-c165-4bfc-89a4-daa665163278\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1043,16 +1427,16 @@ interactions: {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3451' + - '3489' content-type: - application/json date: - - Wed, 15 Mar 2023 11:37:09 GMT + - Sat, 29 Apr 2023 11:43:22 GMT expires: - '-1' pragma: @@ -1071,23 +1455,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "properties": - {"kubernetesVersion": "1.24.9", "dnsPrefix": "cliakstest-clitestscfaaei26-79a739", + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "properties": + {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliakstest-clitestcfckpohck-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "1.24.9", "upgradeSettings": {}, "powerState": + "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "nodeLabels": {}, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": - "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/04afc80a-28de-485a-82fd-63fd8905478b"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a4ecc658-c165-4bfc-89a4-daa665163278"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, "workloadAutoScalerProfile": {}}}' @@ -1101,13 +1485,13 @@ interactions: Connection: - keep-alive Content-Length: - - '2106' + - '2105' Content-Type: - application/json ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -1117,29 +1501,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestscfaaei26-79a739\",\n \"fqdn\": \"cliakstest-clitestscfaaei26-79a739-0vpoj608.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestscfaaei26-79a739-0vpoj608.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestcfckpohck-79a739\",\n \"fqdn\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/04afc80a-28de-485a-82fd-63fd8905478b\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a4ecc658-c165-4bfc-89a4-daa665163278\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1150,18 +1534,18 @@ interactions: {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fcf9c238-70d7-4ab3-b5f0-665d19f10027?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f66409ff-8167-4829-8564-51d67b0c5927?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3369' + - '3407' content-type: - application/json date: - - Wed, 15 Mar 2023 11:37:12 GMT + - Sat, 29 Apr 2023 11:43:28 GMT expires: - '-1' pragma: @@ -1177,7 +1561,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1191' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --nodepool-labels + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f66409ff-8167-4829-8564-51d67b0c5927?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"ff0964f6-6781-2948-8564-51d67b0c5927\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:43:29.0171184Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:43:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -1195,14 +1627,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fcf9c238-70d7-4ab3-b5f0-665d19f10027?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f66409ff-8167-4829-8564-51d67b0c5927?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"38c2f9fc-d770-b34a-b5f0-665d19f10027\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:37:13.3119518Z\"\n }" + string: "{\n \"name\": \"ff0964f6-6781-2948-8564-51d67b0c5927\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:43:29.0171184Z\"\n }" headers: cache-control: - no-cache @@ -1211,7 +1643,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:37:42 GMT + - Sat, 29 Apr 2023 11:43:59 GMT expires: - '-1' pragma: @@ -1243,14 +1675,14 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fcf9c238-70d7-4ab3-b5f0-665d19f10027?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f66409ff-8167-4829-8564-51d67b0c5927?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"38c2f9fc-d770-b34a-b5f0-665d19f10027\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:37:13.3119518Z\"\n }" + string: "{\n \"name\": \"ff0964f6-6781-2948-8564-51d67b0c5927\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:43:29.0171184Z\"\n }" headers: cache-control: - no-cache @@ -1259,7 +1691,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:38:12 GMT + - Sat, 29 Apr 2023 11:44:29 GMT expires: - '-1' pragma: @@ -1291,15 +1723,15 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fcf9c238-70d7-4ab3-b5f0-665d19f10027?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f66409ff-8167-4829-8564-51d67b0c5927?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"38c2f9fc-d770-b34a-b5f0-665d19f10027\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:37:13.3119518Z\",\n \"endTime\": - \"2023-03-15T11:38:36.1999871Z\"\n }" + string: "{\n \"name\": \"ff0964f6-6781-2948-8564-51d67b0c5927\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-04-29T11:43:29.0171184Z\",\n \"endTime\": + \"2023-04-29T11:44:57.7210334Z\"\n }" headers: cache-control: - no-cache @@ -1308,7 +1740,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:38:43 GMT + - Sat, 29 Apr 2023 11:44:58 GMT expires: - '-1' pragma: @@ -1340,7 +1772,7 @@ interactions: ParameterSetName: - --resource-group --name --nodepool-labels User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -1350,29 +1782,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestscfaaei26-79a739\",\n \"fqdn\": \"cliakstest-clitestscfaaei26-79a739-0vpoj608.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestscfaaei26-79a739-0vpoj608.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestcfckpohck-79a739\",\n \"fqdn\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestcfckpohck-79a739-8cisynif.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/04afc80a-28de-485a-82fd-63fd8905478b\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/a4ecc658-c165-4bfc-89a4-daa665163278\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1383,16 +1815,16 @@ interactions: {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3371' + - '3409' content-type: - application/json date: - - Wed, 15 Mar 2023 11:38:43 GMT + - Sat, 29 Apr 2023 11:44:59 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_to_msi_cluster.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_to_msi_cluster.yaml index c5505ad0480..dff5091ed9e 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_to_msi_cluster.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_to_msi_cluster.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:35:13 GMT + - Fri, 16 Jun 2023 18:18:53 GMT expires: - '-1' pragma: @@ -58,21 +58,21 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T11:35:14Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westeurope","tags":{"product":"azurecli","cause":"automation","test":"test_aks_update_to_msi_cluster","date":"2023-06-16T18:18:45Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '363' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:35:14 GMT + - Fri, 16 Jun 2023 18:18:53 GMT expires: - '-1' pragma: @@ -87,21 +87,20 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "properties": {"kubernetesVersion": "", "dnsPrefix": - "cliakstest-clitest64dssh6qb-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + body: '{"location": "westeurope", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliakstest-clitestzc5eolkio-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, - "storageProfile": {}}}' + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -112,65 +111,296 @@ interactions: Connection: - keep-alive Content-Length: - - '1523' + - '1818' Content-Type: - application/json ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest64dssh6qb-79a739\",\n \"fqdn\": \"cliakstest-clitest64dssh6qb-79a739-7i7vhfrs.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest64dssh6qb-79a739-7i7vhfrs.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"details\": null,\n\ + \ \"message\": \"Service principal clientID: 4e3c8f5f-1755-4d61-9c64-6f7d40611ca7\ + \ not found in Active Directory tenant 72f988bf-86f1-41af-91ab-2d7cd011db47,\ + \ Please see https://aka.ms/aks-sp-help for more details.\",\n \"subcode\"\ + : \"ServicePrincipalNotFound\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '313' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 18:18:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westeurope", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliakstest-clitestzc5eolkio-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": + false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": + "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": + [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1818' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --service-principal --client-secret --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 + response: + body: + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"details\": null,\n\ + \ \"message\": \"Service principal clientID: 4e3c8f5f-1755-4d61-9c64-6f7d40611ca7\ + \ not found in Active Directory tenant 72f988bf-86f1-41af-91ab-2d7cd011db47,\ + \ Please see https://aka.ms/aks-sp-help for more details.\",\n \"subcode\"\ + : \"ServicePrincipalNotFound\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c823abc2-c9b1-4400-b44d-2cd34692aa9f?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3107' + - '313' content-type: - application/json date: - - Wed, 15 Mar 2023 11:35:17 GMT + - Fri, 16 Jun 2023 18:19:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westeurope", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliakstest-clitestzc5eolkio-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": + false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": + "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": + [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1818' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --service-principal --client-secret --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 + response: + body: + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"details\": null,\n\ + \ \"message\": \"Service principal clientID: 4e3c8f5f-1755-4d61-9c64-6f7d40611ca7\ + \ not found in Active Directory tenant 72f988bf-86f1-41af-91ab-2d7cd011db47,\ + \ Please see https://aka.ms/aks-sp-help for more details.\",\n \"subcode\"\ + : \"ServicePrincipalNotFound\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '313' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 18:19:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westeurope", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliakstest-clitestzc5eolkio-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": + false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": + "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": + [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1818' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --service-principal --client-secret --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 + response: + body: + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"details\": null,\n\ + \ \"message\": \"Service principal clientID: 4e3c8f5f-1755-4d61-9c64-6f7d40611ca7\ + \ not found in Active Directory tenant 72f988bf-86f1-41af-91ab-2d7cd011db47,\ + \ Please see https://aka.ms/aks-sp-help for more details.\",\n \"subcode\"\ + : \"ServicePrincipalNotFound\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '313' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 18:19:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westeurope", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliakstest-clitestzc5eolkio-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": + false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": + "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": + [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1818' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --service-principal --client-secret --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 + response: + body: + string: "{\n \"code\": \"ServicePrincipalNotFound\",\n \"details\": null,\n\ + \ \"message\": \"Service principal clientID: 4e3c8f5f-1755-4d61-9c64-6f7d40611ca7\ + \ not found in Active Directory tenant 72f988bf-86f1-41af-91ab-2d7cd011db47,\ + \ Please see https://aka.ms/aks-sp-help for more details.\",\n \"subcode\"\ + : \"ServicePrincipalNotFound\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '313' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 18:19:30 GMT expires: - '-1' pragma: @@ -183,6 +413,107 @@ interactions: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1195' + status: + code: 404 + message: Not Found +- request: + body: '{"location": "westeurope", "properties": {"kubernetesVersion": "", "dnsPrefix": + "cliakstest-clitestzc5eolkio-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": + "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": + false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": + "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": + [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001", + "secret":"fake-secret"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + Content-Length: + - '1818' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --service-principal --client-secret --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westeurope\",\n \"name\": \"cliakstest000003\",\n \"\ + type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestzc5eolkio-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestzc5eolkio-8ecadf-qynzd8h7.hcp.westeurope.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestzc5eolkio-8ecadf-qynzd8h7.portal.hcp.westeurope.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westeurope\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/c0fb98f1-c18b-4da6-8bcb-3e9597122dee?api-version=2017-08-31 + cache-control: + - no-cache + content-length: + - '3447' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 18:19:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1194' status: code: 201 message: Created @@ -200,14 +531,62 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/c0fb98f1-c18b-4da6-8bcb-3e9597122dee?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"f198fbc0-8bc1-a64d-8bcb-3e9597122dee\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T18:19:38.9301375Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 18:19:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --service-principal --client-secret --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c823abc2-c9b1-4400-b44d-2cd34692aa9f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/c0fb98f1-c18b-4da6-8bcb-3e9597122dee?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"c2ab23c8-b1c9-0044-b44d-2cd34692aa9f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:18.0302796Z\"\n }" + string: "{\n \"name\": \"f198fbc0-8bc1-a64d-8bcb-3e9597122dee\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T18:19:38.9301375Z\"\n }" headers: cache-control: - no-cache @@ -216,7 +595,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:35:48 GMT + - Fri, 16 Jun 2023 18:20:29 GMT expires: - '-1' pragma: @@ -248,14 +627,14 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c823abc2-c9b1-4400-b44d-2cd34692aa9f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/c0fb98f1-c18b-4da6-8bcb-3e9597122dee?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"c2ab23c8-b1c9-0044-b44d-2cd34692aa9f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:18.0302796Z\"\n }" + string: "{\n \"name\": \"f198fbc0-8bc1-a64d-8bcb-3e9597122dee\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T18:19:38.9301375Z\"\n }" headers: cache-control: - no-cache @@ -264,7 +643,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:36:17 GMT + - Fri, 16 Jun 2023 18:20:59 GMT expires: - '-1' pragma: @@ -296,14 +675,14 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c823abc2-c9b1-4400-b44d-2cd34692aa9f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/c0fb98f1-c18b-4da6-8bcb-3e9597122dee?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"c2ab23c8-b1c9-0044-b44d-2cd34692aa9f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:18.0302796Z\"\n }" + string: "{\n \"name\": \"f198fbc0-8bc1-a64d-8bcb-3e9597122dee\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T18:19:38.9301375Z\"\n }" headers: cache-control: - no-cache @@ -312,7 +691,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:36:47 GMT + - Fri, 16 Jun 2023 18:21:29 GMT expires: - '-1' pragma: @@ -344,14 +723,14 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c823abc2-c9b1-4400-b44d-2cd34692aa9f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/c0fb98f1-c18b-4da6-8bcb-3e9597122dee?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"c2ab23c8-b1c9-0044-b44d-2cd34692aa9f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:18.0302796Z\"\n }" + string: "{\n \"name\": \"f198fbc0-8bc1-a64d-8bcb-3e9597122dee\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T18:19:38.9301375Z\"\n }" headers: cache-control: - no-cache @@ -360,7 +739,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:37:17 GMT + - Fri, 16 Jun 2023 18:21:59 GMT expires: - '-1' pragma: @@ -392,14 +771,14 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c823abc2-c9b1-4400-b44d-2cd34692aa9f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/c0fb98f1-c18b-4da6-8bcb-3e9597122dee?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"c2ab23c8-b1c9-0044-b44d-2cd34692aa9f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:18.0302796Z\"\n }" + string: "{\n \"name\": \"f198fbc0-8bc1-a64d-8bcb-3e9597122dee\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T18:19:38.9301375Z\"\n }" headers: cache-control: - no-cache @@ -408,7 +787,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:37:48 GMT + - Fri, 16 Jun 2023 18:22:29 GMT expires: - '-1' pragma: @@ -440,15 +819,15 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c823abc2-c9b1-4400-b44d-2cd34692aa9f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/c0fb98f1-c18b-4da6-8bcb-3e9597122dee?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"c2ab23c8-b1c9-0044-b44d-2cd34692aa9f\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:35:18.0302796Z\",\n \"endTime\": - \"2023-03-15T11:38:02.9431644Z\"\n }" + string: "{\n \"name\": \"f198fbc0-8bc1-a64d-8bcb-3e9597122dee\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T18:19:38.9301375Z\",\n \"\ + endTime\": \"2023-06-16T18:22:44.0461042Z\"\n }" headers: cache-control: - no-cache @@ -457,7 +836,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:38:18 GMT + - Fri, 16 Jun 2023 18:23:15 GMT expires: - '-1' pragma: @@ -489,59 +868,61 @@ interactions: ParameterSetName: - --resource-group --name --service-principal --client-secret --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest64dssh6qb-79a739\",\n \"fqdn\": \"cliakstest-clitest64dssh6qb-79a739-7i7vhfrs.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest64dssh6qb-79a739-7i7vhfrs.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/3fd33f73-4b54-4a33-833a-7a2939eaf7ad\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westeurope\",\n \"name\": \"cliakstest000003\",\n \"\ + type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestzc5eolkio-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestzc5eolkio-8ecadf-qynzd8h7.hcp.westeurope.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestzc5eolkio-8ecadf-qynzd8h7.portal.hcp.westeurope.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westeurope\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westeurope/providers/Microsoft.Network/publicIPAddresses/693a73f4-2f73-4dd2-9d13-e81bb41688f6\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3371' + - '3714' content-type: - application/json date: - - Wed, 15 Mar 2023 11:38:18 GMT + - Fri, 16 Jun 2023 18:23:15 GMT expires: - '-1' pragma: @@ -573,59 +954,61 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest64dssh6qb-79a739\",\n \"fqdn\": \"cliakstest-clitest64dssh6qb-79a739-7i7vhfrs.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest64dssh6qb-79a739-7i7vhfrs.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/3fd33f73-4b54-4a33-833a-7a2939eaf7ad\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westeurope\",\n \"name\": \"cliakstest000003\",\n \"\ + type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestzc5eolkio-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestzc5eolkio-8ecadf-qynzd8h7.hcp.westeurope.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestzc5eolkio-8ecadf-qynzd8h7.portal.hcp.westeurope.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westeurope\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westeurope/providers/Microsoft.Network/publicIPAddresses/693a73f4-2f73-4dd2-9d13-e81bb41688f6\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"sku\": {\n \"name\": \"\ + Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3371' + - '3714' content-type: - application/json date: - - Wed, 15 Mar 2023 11:38:19 GMT + - Fri, 16 Jun 2023 18:23:18 GMT expires: - '-1' pragma: @@ -644,23 +1027,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitest64dssh6qb-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + body: '{"location": "westeurope", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestzc5eolkio-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, - "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000003_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/3fd33f73-4b54-4a33-833a-7a2939eaf7ad"}]}, + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000003_westeurope", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westeurope/providers/Microsoft.Network/publicIPAddresses/693a73f4-2f73-4dd2-9d13-e81bb41688f6"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, "workloadAutoScalerProfile": {}}}' @@ -674,69 +1057,71 @@ interactions: Connection: - keep-alive Content-Length: - - '2128' + - '2465' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest64dssh6qb-79a739\",\n \"fqdn\": \"cliakstest-clitest64dssh6qb-79a739-7i7vhfrs.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest64dssh6qb-79a739-7i7vhfrs.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/3fd33f73-4b54-4a33-833a-7a2939eaf7ad\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westeurope\",\n \"name\": \"cliakstest000003\",\n \"\ + type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestzc5eolkio-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestzc5eolkio-8ecadf-qynzd8h7.hcp.westeurope.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestzc5eolkio-8ecadf-qynzd8h7.portal.hcp.westeurope.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westeurope\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westeurope/providers/Microsoft.Network/publicIPAddresses/693a73f4-2f73-4dd2-9d13-e81bb41688f6\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fbd5464a-4dcd-4a5e-9f28-470c007788f9?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/000d653f-0ed2-4682-8c53-d3255ff93a05?api-version=2017-08-31 cache-control: - no-cache content-length: - - '3530' + - '3873' content-type: - application/json date: - - Wed, 15 Mar 2023 11:38:23 GMT + - Fri, 16 Jun 2023 18:23:26 GMT expires: - '-1' pragma: @@ -752,7 +1137,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-managed-identity --yes + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/000d653f-0ed2-4682-8c53-d3255ff93a05?api-version=2017-08-31 + response: + body: + string: "{\n \"name\": \"3f650d00-d20e-8246-8c53-d3255ff93a05\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T18:23:24.6799578Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 18:23:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -770,14 +1203,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fbd5464a-4dcd-4a5e-9f28-470c007788f9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/000d653f-0ed2-4682-8c53-d3255ff93a05?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"4a46d5fb-cd4d-5e4a-9f28-470c007788f9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:38:23.1871814Z\"\n }" + string: "{\n \"name\": \"3f650d00-d20e-8246-8c53-d3255ff93a05\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T18:23:24.6799578Z\"\n }" headers: cache-control: - no-cache @@ -786,7 +1219,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:38:53 GMT + - Fri, 16 Jun 2023 18:23:56 GMT expires: - '-1' pragma: @@ -818,14 +1251,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fbd5464a-4dcd-4a5e-9f28-470c007788f9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/000d653f-0ed2-4682-8c53-d3255ff93a05?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"4a46d5fb-cd4d-5e4a-9f28-470c007788f9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:38:23.1871814Z\"\n }" + string: "{\n \"name\": \"3f650d00-d20e-8246-8c53-d3255ff93a05\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T18:23:24.6799578Z\"\n }" headers: cache-control: - no-cache @@ -834,7 +1267,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:39:22 GMT + - Fri, 16 Jun 2023 18:24:26 GMT expires: - '-1' pragma: @@ -866,14 +1299,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fbd5464a-4dcd-4a5e-9f28-470c007788f9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/000d653f-0ed2-4682-8c53-d3255ff93a05?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"4a46d5fb-cd4d-5e4a-9f28-470c007788f9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:38:23.1871814Z\"\n }" + string: "{\n \"name\": \"3f650d00-d20e-8246-8c53-d3255ff93a05\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T18:23:24.6799578Z\"\n }" headers: cache-control: - no-cache @@ -882,7 +1315,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:39:53 GMT + - Fri, 16 Jun 2023 18:24:56 GMT expires: - '-1' pragma: @@ -914,14 +1347,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fbd5464a-4dcd-4a5e-9f28-470c007788f9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/000d653f-0ed2-4682-8c53-d3255ff93a05?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"4a46d5fb-cd4d-5e4a-9f28-470c007788f9\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:38:23.1871814Z\"\n }" + string: "{\n \"name\": \"3f650d00-d20e-8246-8c53-d3255ff93a05\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T18:23:24.6799578Z\"\n }" headers: cache-control: - no-cache @@ -930,7 +1363,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:40:23 GMT + - Fri, 16 Jun 2023 18:25:27 GMT expires: - '-1' pragma: @@ -962,15 +1395,15 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fbd5464a-4dcd-4a5e-9f28-470c007788f9?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/000d653f-0ed2-4682-8c53-d3255ff93a05?api-version=2017-08-31 response: body: - string: "{\n \"name\": \"4a46d5fb-cd4d-5e4a-9f28-470c007788f9\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:38:23.1871814Z\",\n \"endTime\": - \"2023-03-15T11:40:28.0763092Z\"\n }" + string: "{\n \"name\": \"3f650d00-d20e-8246-8c53-d3255ff93a05\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T18:23:24.6799578Z\",\n \"\ + endTime\": \"2023-06-16T18:25:29.6413828Z\"\n }" headers: cache-control: - no-cache @@ -979,7 +1412,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:40:53 GMT + - Fri, 16 Jun 2023 18:25:57 GMT expires: - '-1' pragma: @@ -1011,64 +1444,66 @@ interactions: ParameterSetName: - --resource-group --name --enable-managed-identity --yes User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000003\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest64dssh6qb-79a739\",\n \"fqdn\": \"cliakstest-clitest64dssh6qb-79a739-7i7vhfrs.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest64dssh6qb-79a739-7i7vhfrs.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000003_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.Network/publicIPAddresses/3fd33f73-4b54-4a33-833a-7a2939eaf7ad\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000003_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003\"\ + ,\n \"location\": \"westeurope\",\n \"name\": \"cliakstest000003\",\n \"\ + type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestzc5eolkio-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestzc5eolkio-8ecadf-qynzd8h7.hcp.westeurope.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestzc5eolkio-8ecadf-qynzd8h7.portal.hcp.westeurope.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000003_westeurope\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000003_westeurope/providers/Microsoft.Network/publicIPAddresses/693a73f4-2f73-4dd2-9d13-e81bb41688f6\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000003_westeurope/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000003-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4267' content-type: - application/json date: - - Wed, 15 Mar 2023 11:40:53 GMT + - Fri, 16 Jun 2023 18:25:58 GMT expires: - '-1' pragma: @@ -1102,8 +1537,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000003?api-version=2023-04-01 response: @@ -1111,17 +1546,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aee70570-d35b-487b-856f-c95a200f3e6d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operations/f799fd3c-93a3-463c-9840-1d724fedea64?api-version=2017-08-31 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:40:54 GMT + - Fri, 16 Jun 2023 18:25:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/aee70570-d35b-487b-856f-c95a200f3e6d?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westeurope/operationresults/f799fd3c-93a3-463c-9840-1d724fedea64?api-version=2017-08-31 pragma: - no-cache server: @@ -1131,7 +1566,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_image_cleaner.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_image_cleaner.yaml index 174ca5ea354..7ef0fbb51c7 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_image_cleaner.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_image_cleaner.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 28 Mar 2023 09:19:41 GMT + - Fri, 16 Jun 2023 18:26:06 GMT expires: - '-1' pragma: @@ -47,20 +47,19 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest37vzk6pjw-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest6xff4iy5r-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_D4s_v3", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCaFda/2VPKhr6ttdQKHEWxlOuN62Ffyl7UF461XFdh2FAnRbE/lDaCXtNsRQFlYoYkc1TAMmmoBBdwnLL8GyL7y/wza45x75x9Sl/1YsEFfQFiS/SyZzzPPLXVvYdHQNhO7tsIokl7Ozjs8dY44Qwu02Vo9dZKfroaItc57zUi4s6i5gtxGw+FoDiPx0c8Fkwn+a/yJ4fdYNUDg2qHMSwYxnwWbsy8TXgna+7Ld6MazcNmIxAkZ4GmfrMdbJdKx9JDoqU1NdetxV6SvxbFkb9UZrUZd9GvvmrQC08soMPjMZr+TJ3rDaqLfdEoOdMZmrcFYWeOBVQX4aPNboPnOffh - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "securityProfile": {"imageCleaner": {"enabled": true, "intervalHours": - 168}}, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "securityProfile": {"imageCleaner": + {"enabled": true, "intervalHours": 168}}, "storageProfile": {}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/EnableImageCleanerPreview @@ -73,69 +72,71 @@ interactions: Connection: - keep-alive Content-Length: - - '1537' + - '1829' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest37vzk6pjw-79a739\",\n \"fqdn\": \"cliakstest-clitest37vzk6pjw-79a739-yyn0dle8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest37vzk6pjw-79a739-yyn0dle8.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCaFda/2VPKhr6ttdQKHEWxlOuN62Ffyl7UF461XFdh2FAnRbE/lDaCXtNsRQFlYoYkc1TAMmmoBBdwnLL8GyL7y/wza45x75x9Sl/1YsEFfQFiS/SyZzzPPLXVvYdHQNhO7tsIokl7Ozjs8dY44Qwu02Vo9dZKfroaItc57zUi4s6i5gtxGw+FoDiPx0c8Fkwn+a/yJ4fdYNUDg2qHMSwYxnwWbsy8TXgna+7Ld6MazcNmIxAkZ4GmfrMdbJdKx9JDoqU1NdetxV6SvxbFkb9UZrUZd9GvvmrQC08soMPjMZr+TJ3rDaqLfdEoOdMZmrcFYWeOBVQX4aPNboPnOffh - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"imageCleaner\": {\n \"enabled\": true,\n \"intervalHours\": - 168\n }\n },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6xff4iy5r-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6xff4iy5r-8ecadf-2dl7w94b.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6xff4iy5r-8ecadf-2dl7w94b.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"imageCleaner\": {\n \"enabled\"\ + : true,\n \"intervalHours\": 168\n }\n },\n \"storageProfile\"\ + : {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80b3c36b-1e7f-4372-aa0d-c05ec759a330?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e7930fc6-516c-4f88-abab-cd4361b91474?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3348' + - '3676' content-type: - application/json date: - - Tue, 28 Mar 2023 09:19:46 GMT + - Fri, 16 Jun 2023 18:26:13 GMT expires: - '-1' pragma: @@ -147,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -166,464 +167,23 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80b3c36b-1e7f-4372-aa0d-c05ec759a330?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e7930fc6-516c-4f88-abab-cd4361b91474?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6bc3b380-7f1e-7243-aa0d-c05ec759a330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:47.281062Z\"\n }" + string: "{\n \"name\": \"c60f93e7-6c51-884f-abab-cd4361b91474\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T18:26:13.6907355Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:20:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80b3c36b-1e7f-4372-aa0d-c05ec759a330?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"6bc3b380-7f1e-7243-aa0d-c05ec759a330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:47.281062Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:20:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80b3c36b-1e7f-4372-aa0d-c05ec759a330?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"6bc3b380-7f1e-7243-aa0d-c05ec759a330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:47.281062Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:21:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80b3c36b-1e7f-4372-aa0d-c05ec759a330?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"6bc3b380-7f1e-7243-aa0d-c05ec759a330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:47.281062Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:21:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80b3c36b-1e7f-4372-aa0d-c05ec759a330?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"6bc3b380-7f1e-7243-aa0d-c05ec759a330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:47.281062Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:22:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80b3c36b-1e7f-4372-aa0d-c05ec759a330?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"6bc3b380-7f1e-7243-aa0d-c05ec759a330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:47.281062Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:22:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80b3c36b-1e7f-4372-aa0d-c05ec759a330?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"6bc3b380-7f1e-7243-aa0d-c05ec759a330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:47.281062Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:23:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80b3c36b-1e7f-4372-aa0d-c05ec759a330?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"6bc3b380-7f1e-7243-aa0d-c05ec759a330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:47.281062Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:23:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80b3c36b-1e7f-4372-aa0d-c05ec759a330?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"6bc3b380-7f1e-7243-aa0d-c05ec759a330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:47.281062Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' - content-type: - - application/json - date: - - Tue, 28 Mar 2023 09:24:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80b3c36b-1e7f-4372-aa0d-c05ec759a330?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"6bc3b380-7f1e-7243-aa0d-c05ec759a330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:47.281062Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' + - '126' content-type: - application/json date: - - Tue, 28 Mar 2023 09:24:48 GMT + - Fri, 16 Jun 2023 18:26:14 GMT expires: - '-1' pragma: @@ -656,23 +216,24 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80b3c36b-1e7f-4372-aa0d-c05ec759a330?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e7930fc6-516c-4f88-abab-cd4361b91474?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6bc3b380-7f1e-7243-aa0d-c05ec759a330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:47.281062Z\"\n }" + string: "{\n \"name\": \"c60f93e7-6c51-884f-abab-cd4361b91474\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T18:26:13.6907355Z\",\n \"\ + endTime\": \"2023-06-16T18:29:37.7593461Z\"\n }" headers: cache-control: - no-cache content-length: - - '125' + - '170' content-type: - application/json date: - - Tue, 28 Mar 2023 09:25:18 GMT + - Fri, 16 Jun 2023 18:36:05 GMT expires: - '-1' pragma: @@ -705,23 +266,67 @@ interactions: - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80b3c36b-1e7f-4372-aa0d-c05ec759a330?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"6bc3b380-7f1e-7243-aa0d-c05ec759a330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:47.281062Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6xff4iy5r-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6xff4iy5r-8ecadf-2dl7w94b.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6xff4iy5r-8ecadf-2dl7w94b.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/296d23e1-0701-491f-b0e8-e31ce1c8410f\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"imageCleaner\": {\n \"enabled\"\ + : true,\n \"intervalHours\": 168\n }\n },\n \"storageProfile\"\ + : {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '125' + - '4329' content-type: - application/json date: - - Tue, 28 Mar 2023 09:25:47 GMT + - Fri, 16 Jun 2023 18:36:07 GMT expires: - '-1' pragma: @@ -743,83 +348,77 @@ interactions: body: null headers: Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80b3c36b-1e7f-4372-aa0d-c05ec759a330?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"6bc3b380-7f1e-7243-aa0d-c05ec759a330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:47.281062Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' - content-type: - application/json - date: - - Tue, 28 Mar 2023 09:26:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --ssh-key-value --aks-custom-headers + - --resource-group --name --image-cleaner-interval-hours --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80b3c36b-1e7f-4372-aa0d-c05ec759a330?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"6bc3b380-7f1e-7243-aa0d-c05ec759a330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:47.281062Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6xff4iy5r-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6xff4iy5r-8ecadf-2dl7w94b.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6xff4iy5r-8ecadf-2dl7w94b.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/296d23e1-0701-491f-b0e8-e31ce1c8410f\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"imageCleaner\": {\n \"enabled\"\ + : true,\n \"intervalHours\": 168\n }\n },\n \"storageProfile\"\ + : {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '125' + - '4329' content-type: - application/json date: - - Tue, 28 Mar 2023 09:26:48 GMT + - Fri, 16 Jun 2023 18:36:08 GMT expires: - '-1' pragma: @@ -838,86 +437,66 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitest6xff4iy5r-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + "Standard_D4s_v3", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": + "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": + false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/296d23e1-0701-491f-b0e8-e31ce1c8410f"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false, "securityProfile": {"imageCleaner": {"enabled": + true, "intervalHours": 24}}, "storageProfile": {}, "workloadAutoScalerProfile": + {}}}' headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/EnableImageCleanerPreview Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80b3c36b-1e7f-4372-aa0d-c05ec759a330?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"6bc3b380-7f1e-7243-aa0d-c05ec759a330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:47.281062Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '125' - content-type: - application/json - date: - - Tue, 28 Mar 2023 09:27:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive + Content-Length: + - '2866' + Content-Type: + - application/json ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --ssh-key-value --aks-custom-headers + - --resource-group --name --image-cleaner-interval-hours --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80b3c36b-1e7f-4372-aa0d-c05ec759a330?api-version=2016-03-30 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"6bc3b380-7f1e-7243-aa0d-c05ec759a330\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:19:47.281062Z\"\n }" + string: "{\n \"code\": \"GetSKUStoreError\",\n \"message\": \"Internal server\ + \ error\"\n }" headers: cache-control: - no-cache + connection: + - close content-length: - - '125' + - '71' content-type: - application/json date: - - Tue, 28 Mar 2023 09:27:48 GMT + - Fri, 16 Jun 2023 18:37:08 GMT expires: - '-1' pragma: @@ -926,48 +505,120 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-failure-cause: + - service + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 500 + message: Internal Server Error - request: - body: null + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitest6xff4iy5r-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + "Standard_D4s_v3", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": + "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": + false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/296d23e1-0701-491f-b0e8-e31ce1c8410f"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false, "securityProfile": {"imageCleaner": {"enabled": + true, "intervalHours": 24}}, "storageProfile": {}, "workloadAutoScalerProfile": + {}}}' headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/EnableImageCleanerPreview Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive + Content-Length: + - '2866' + Content-Type: + - application/json ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --ssh-key-value --aks-custom-headers + - --resource-group --name --image-cleaner-interval-hours --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/80b3c36b-1e7f-4372-aa0d-c05ec759a330?api-version=2016-03-30 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"6bc3b380-7f1e-7243-aa0d-c05ec759a330\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-28T09:19:47.281062Z\",\n \"endTime\": - \"2023-03-28T09:28:14.3462927Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6xff4iy5r-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6xff4iy5r-8ecadf-2dl7w94b.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6xff4iy5r-8ecadf-2dl7w94b.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/296d23e1-0701-491f-b0e8-e31ce1c8410f\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"imageCleaner\": {\n \"enabled\"\ + : true,\n \"intervalHours\": 24\n }\n },\n \"storageProfile\":\ + \ {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cea54a19-7452-4997-9553-cd6fa5edc8a9?api-version=2016-03-30 cache-control: - no-cache content-length: - - '169' + - '4326' content-type: - application/json date: - - Tue, 28 Mar 2023 09:28:18 GMT + - Fri, 16 Jun 2023 18:37:15 GMT expires: - '-1' pragma: @@ -982,6 +633,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -993,72 +646,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --node-vm-size --node-count --enable-image-cleaner - --ssh-key-value --aks-custom-headers + - --resource-group --name --image-cleaner-interval-hours --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cea54a19-7452-4997-9553-cd6fa5edc8a9?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest37vzk6pjw-79a739\",\n \"fqdn\": \"cliakstest-clitest37vzk6pjw-79a739-yyn0dle8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest37vzk6pjw-79a739-yyn0dle8.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCaFda/2VPKhr6ttdQKHEWxlOuN62Ffyl7UF461XFdh2FAnRbE/lDaCXtNsRQFlYoYkc1TAMmmoBBdwnLL8GyL7y/wza45x75x9Sl/1YsEFfQFiS/SyZzzPPLXVvYdHQNhO7tsIokl7Ozjs8dY44Qwu02Vo9dZKfroaItc57zUi4s6i5gtxGw+FoDiPx0c8Fkwn+a/yJ4fdYNUDg2qHMSwYxnwWbsy8TXgna+7Ld6MazcNmIxAkZ4GmfrMdbJdKx9JDoqU1NdetxV6SvxbFkb9UZrUZd9GvvmrQC08soMPjMZr+TJ3rDaqLfdEoOdMZmrcFYWeOBVQX4aPNboPnOffh - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3e0bfeba-02c7-44eb-a7aa-e91ebfcf8d55\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"imageCleaner\": {\n \"enabled\": true,\n \"intervalHours\": - 168\n }\n },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"194aa5ce-5274-9749-9553-cd6fa5edc8a9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T18:37:15.1764413Z\"\n }" headers: cache-control: - no-cache content-length: - - '4001' + - '126' content-type: - application/json date: - - Tue, 28 Mar 2023 09:28:19 GMT + - Fri, 16 Jun 2023 18:37:15 GMT expires: - '-1' pragma: @@ -1080,7 +690,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1090,65 +700,23 @@ interactions: ParameterSetName: - --resource-group --name --image-cleaner-interval-hours --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cea54a19-7452-4997-9553-cd6fa5edc8a9?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest37vzk6pjw-79a739\",\n \"fqdn\": \"cliakstest-clitest37vzk6pjw-79a739-yyn0dle8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest37vzk6pjw-79a739-yyn0dle8.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCaFda/2VPKhr6ttdQKHEWxlOuN62Ffyl7UF461XFdh2FAnRbE/lDaCXtNsRQFlYoYkc1TAMmmoBBdwnLL8GyL7y/wza45x75x9Sl/1YsEFfQFiS/SyZzzPPLXVvYdHQNhO7tsIokl7Ozjs8dY44Qwu02Vo9dZKfroaItc57zUi4s6i5gtxGw+FoDiPx0c8Fkwn+a/yJ4fdYNUDg2qHMSwYxnwWbsy8TXgna+7Ld6MazcNmIxAkZ4GmfrMdbJdKx9JDoqU1NdetxV6SvxbFkb9UZrUZd9GvvmrQC08soMPjMZr+TJ3rDaqLfdEoOdMZmrcFYWeOBVQX4aPNboPnOffh - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3e0bfeba-02c7-44eb-a7aa-e91ebfcf8d55\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"imageCleaner\": {\n \"enabled\": true,\n \"intervalHours\": - 168\n }\n },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"194aa5ce-5274-9749-9553-cd6fa5edc8a9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T18:37:15.1764413Z\"\n }" headers: cache-control: - no-cache content-length: - - '4001' + - '126' content-type: - application/json date: - - Tue, 28 Mar 2023 09:28:20 GMT + - Fri, 16 Jun 2023 18:37:45 GMT expires: - '-1' pragma: @@ -1167,108 +735,36 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitest37vzk6pjw-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": - "Standard_D4s_v3", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": - "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": - false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": - false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCaFda/2VPKhr6ttdQKHEWxlOuN62Ffyl7UF461XFdh2FAnRbE/lDaCXtNsRQFlYoYkc1TAMmmoBBdwnLL8GyL7y/wza45x75x9Sl/1YsEFfQFiS/SyZzzPPLXVvYdHQNhO7tsIokl7Ozjs8dY44Qwu02Vo9dZKfroaItc57zUi4s6i5gtxGw+FoDiPx0c8Fkwn+a/yJ4fdYNUDg2qHMSwYxnwWbsy8TXgna+7Ld6MazcNmIxAkZ4GmfrMdbJdKx9JDoqU1NdetxV6SvxbFkb9UZrUZd9GvvmrQC08soMPjMZr+TJ3rDaqLfdEoOdMZmrcFYWeOBVQX4aPNboPnOffh - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, - "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3e0bfeba-02c7-44eb-a7aa-e91ebfcf8d55"}]}, - "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": - ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", - "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "securityProfile": {"imageCleaner": {"enabled": - true, "intervalHours": 24}}, "storageProfile": {}, "workloadAutoScalerProfile": - {}}}' + body: null headers: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableImageCleanerPreview Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks update Connection: - keep-alive - Content-Length: - - '2537' - Content-Type: - - application/json ParameterSetName: - --resource-group --name --image-cleaner-interval-hours --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cea54a19-7452-4997-9553-cd6fa5edc8a9?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest37vzk6pjw-79a739\",\n \"fqdn\": \"cliakstest-clitest37vzk6pjw-79a739-yyn0dle8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest37vzk6pjw-79a739-yyn0dle8.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCaFda/2VPKhr6ttdQKHEWxlOuN62Ffyl7UF461XFdh2FAnRbE/lDaCXtNsRQFlYoYkc1TAMmmoBBdwnLL8GyL7y/wza45x75x9Sl/1YsEFfQFiS/SyZzzPPLXVvYdHQNhO7tsIokl7Ozjs8dY44Qwu02Vo9dZKfroaItc57zUi4s6i5gtxGw+FoDiPx0c8Fkwn+a/yJ4fdYNUDg2qHMSwYxnwWbsy8TXgna+7Ld6MazcNmIxAkZ4GmfrMdbJdKx9JDoqU1NdetxV6SvxbFkb9UZrUZd9GvvmrQC08soMPjMZr+TJ3rDaqLfdEoOdMZmrcFYWeOBVQX4aPNboPnOffh - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3e0bfeba-02c7-44eb-a7aa-e91ebfcf8d55\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"imageCleaner\": {\n \"enabled\": true,\n \"intervalHours\": - 24\n }\n },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"194aa5ce-5274-9749-9553-cd6fa5edc8a9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T18:37:15.1764413Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd5b938f-5751-4a8e-b5b3-68999413331e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3998' + - '126' content-type: - application/json date: - - Tue, 28 Mar 2023 09:28:24 GMT + - Fri, 16 Jun 2023 18:38:16 GMT expires: - '-1' pragma: @@ -1283,8 +779,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: code: 200 message: OK @@ -1302,14 +796,14 @@ interactions: ParameterSetName: - --resource-group --name --image-cleaner-interval-hours --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd5b938f-5751-4a8e-b5b3-68999413331e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cea54a19-7452-4997-9553-cd6fa5edc8a9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8f935bfd-5157-8e4a-b5b3-68999413331e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:28:24.0487048Z\"\n }" + string: "{\n \"name\": \"194aa5ce-5274-9749-9553-cd6fa5edc8a9\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T18:37:15.1764413Z\"\n }" headers: cache-control: - no-cache @@ -1318,7 +812,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 09:28:53 GMT + - Fri, 16 Jun 2023 18:38:46 GMT expires: - '-1' pragma: @@ -1350,23 +844,24 @@ interactions: ParameterSetName: - --resource-group --name --image-cleaner-interval-hours --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd5b938f-5751-4a8e-b5b3-68999413331e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cea54a19-7452-4997-9553-cd6fa5edc8a9?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"8f935bfd-5157-8e4a-b5b3-68999413331e\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:28:24.0487048Z\"\n }" + string: "{\n \"name\": \"194aa5ce-5274-9749-9553-cd6fa5edc8a9\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T18:37:15.1764413Z\",\n \"\ + endTime\": \"2023-06-16T18:39:01.3051595Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '170' content-type: - application/json date: - - Tue, 28 Mar 2023 09:29:24 GMT + - Fri, 16 Jun 2023 18:39:16 GMT expires: - '-1' pragma: @@ -1398,24 +893,67 @@ interactions: ParameterSetName: - --resource-group --name --image-cleaner-interval-hours --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd5b938f-5751-4a8e-b5b3-68999413331e?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"8f935bfd-5157-8e4a-b5b3-68999413331e\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-28T09:28:24.0487048Z\",\n \"endTime\": - \"2023-03-28T09:29:49.2417344Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6xff4iy5r-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6xff4iy5r-8ecadf-2dl7w94b.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6xff4iy5r-8ecadf-2dl7w94b.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/296d23e1-0701-491f-b0e8-e31ce1c8410f\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"imageCleaner\": {\n \"enabled\"\ + : true,\n \"intervalHours\": 24\n }\n },\n \"storageProfile\":\ + \ {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '170' + - '4328' content-type: - application/json date: - - Tue, 28 Mar 2023 09:29:54 GMT + - Fri, 16 Jun 2023 18:39:17 GMT expires: - '-1' pragma: @@ -1437,7 +975,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1445,67 +983,69 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --image-cleaner-interval-hours --aks-custom-headers + - --resource-group --name --disable-image-cleaner --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest37vzk6pjw-79a739\",\n \"fqdn\": \"cliakstest-clitest37vzk6pjw-79a739-yyn0dle8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest37vzk6pjw-79a739-yyn0dle8.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCaFda/2VPKhr6ttdQKHEWxlOuN62Ffyl7UF461XFdh2FAnRbE/lDaCXtNsRQFlYoYkc1TAMmmoBBdwnLL8GyL7y/wza45x75x9Sl/1YsEFfQFiS/SyZzzPPLXVvYdHQNhO7tsIokl7Ozjs8dY44Qwu02Vo9dZKfroaItc57zUi4s6i5gtxGw+FoDiPx0c8Fkwn+a/yJ4fdYNUDg2qHMSwYxnwWbsy8TXgna+7Ld6MazcNmIxAkZ4GmfrMdbJdKx9JDoqU1NdetxV6SvxbFkb9UZrUZd9GvvmrQC08soMPjMZr+TJ3rDaqLfdEoOdMZmrcFYWeOBVQX4aPNboPnOffh - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3e0bfeba-02c7-44eb-a7aa-e91ebfcf8d55\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"imageCleaner\": {\n \"enabled\": true,\n \"intervalHours\": - 24\n }\n },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6xff4iy5r-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6xff4iy5r-8ecadf-2dl7w94b.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6xff4iy5r-8ecadf-2dl7w94b.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/296d23e1-0701-491f-b0e8-e31ce1c8410f\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"imageCleaner\": {\n \"enabled\"\ + : true,\n \"intervalHours\": 24\n }\n },\n \"storageProfile\":\ + \ {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4000' + - '4328' content-type: - application/json date: - - Tue, 28 Mar 2023 09:29:54 GMT + - Fri, 16 Jun 2023 18:39:19 GMT expires: - '-1' pragma: @@ -1524,8 +1064,32 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitest6xff4iy5r-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": + "Standard_D4s_v3", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": + "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": + false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": + false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/296d23e1-0701-491f-b0e8-e31ce1c8410f"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false, "securityProfile": {"imageCleaner": {"enabled": + false, "intervalHours": 24}}, "storageProfile": {}, "workloadAutoScalerProfile": + {}}}' headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/EnableImageCleanerPreview Accept: - application/json Accept-Encoding: @@ -1534,68 +1098,76 @@ interactions: - aks update Connection: - keep-alive + Content-Length: + - '2867' + Content-Type: + - application/json ParameterSetName: - --resource-group --name --disable-image-cleaner --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest37vzk6pjw-79a739\",\n \"fqdn\": \"cliakstest-clitest37vzk6pjw-79a739-yyn0dle8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest37vzk6pjw-79a739-yyn0dle8.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCaFda/2VPKhr6ttdQKHEWxlOuN62Ffyl7UF461XFdh2FAnRbE/lDaCXtNsRQFlYoYkc1TAMmmoBBdwnLL8GyL7y/wza45x75x9Sl/1YsEFfQFiS/SyZzzPPLXVvYdHQNhO7tsIokl7Ozjs8dY44Qwu02Vo9dZKfroaItc57zUi4s6i5gtxGw+FoDiPx0c8Fkwn+a/yJ4fdYNUDg2qHMSwYxnwWbsy8TXgna+7Ld6MazcNmIxAkZ4GmfrMdbJdKx9JDoqU1NdetxV6SvxbFkb9UZrUZd9GvvmrQC08soMPjMZr+TJ3rDaqLfdEoOdMZmrcFYWeOBVQX4aPNboPnOffh - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3e0bfeba-02c7-44eb-a7aa-e91ebfcf8d55\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"imageCleaner\": {\n \"enabled\": true,\n \"intervalHours\": - 24\n }\n },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6xff4iy5r-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6xff4iy5r-8ecadf-2dl7w94b.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6xff4iy5r-8ecadf-2dl7w94b.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/296d23e1-0701-491f-b0e8-e31ce1c8410f\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"imageCleaner\": {\n \"enabled\"\ + : false,\n \"intervalHours\": 24\n }\n },\n \"storageProfile\"\ + : {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/256ed6b3-078d-4715-8842-4079df2e302e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4000' + - '4327' content-type: - application/json date: - - Tue, 28 Mar 2023 09:29:55 GMT + - Fri, 16 Jun 2023 18:39:24 GMT expires: - '-1' pragma: @@ -1610,112 +1182,42 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitest37vzk6pjw-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": - "Standard_D4s_v3", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": - "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": - false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": - false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCaFda/2VPKhr6ttdQKHEWxlOuN62Ffyl7UF461XFdh2FAnRbE/lDaCXtNsRQFlYoYkc1TAMmmoBBdwnLL8GyL7y/wza45x75x9Sl/1YsEFfQFiS/SyZzzPPLXVvYdHQNhO7tsIokl7Ozjs8dY44Qwu02Vo9dZKfroaItc57zUi4s6i5gtxGw+FoDiPx0c8Fkwn+a/yJ4fdYNUDg2qHMSwYxnwWbsy8TXgna+7Ld6MazcNmIxAkZ4GmfrMdbJdKx9JDoqU1NdetxV6SvxbFkb9UZrUZd9GvvmrQC08soMPjMZr+TJ3rDaqLfdEoOdMZmrcFYWeOBVQX4aPNboPnOffh - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, - "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3e0bfeba-02c7-44eb-a7aa-e91ebfcf8d55"}]}, - "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": - ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", - "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "securityProfile": {"imageCleaner": {"enabled": - false, "intervalHours": 24}}, "storageProfile": {}, "workloadAutoScalerProfile": - {}}}' + body: null headers: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableImageCleanerPreview Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks update Connection: - keep-alive - Content-Length: - - '2538' - Content-Type: - - application/json ParameterSetName: - --resource-group --name --disable-image-cleaner --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/256ed6b3-078d-4715-8842-4079df2e302e?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest37vzk6pjw-79a739\",\n \"fqdn\": \"cliakstest-clitest37vzk6pjw-79a739-yyn0dle8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest37vzk6pjw-79a739-yyn0dle8.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCaFda/2VPKhr6ttdQKHEWxlOuN62Ffyl7UF461XFdh2FAnRbE/lDaCXtNsRQFlYoYkc1TAMmmoBBdwnLL8GyL7y/wza45x75x9Sl/1YsEFfQFiS/SyZzzPPLXVvYdHQNhO7tsIokl7Ozjs8dY44Qwu02Vo9dZKfroaItc57zUi4s6i5gtxGw+FoDiPx0c8Fkwn+a/yJ4fdYNUDg2qHMSwYxnwWbsy8TXgna+7Ld6MazcNmIxAkZ4GmfrMdbJdKx9JDoqU1NdetxV6SvxbFkb9UZrUZd9GvvmrQC08soMPjMZr+TJ3rDaqLfdEoOdMZmrcFYWeOBVQX4aPNboPnOffh - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3e0bfeba-02c7-44eb-a7aa-e91ebfcf8d55\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"imageCleaner\": {\n \"enabled\": false,\n \"intervalHours\": - 24\n }\n },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"b3d66e25-8d07-1547-8842-4079df2e302e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T18:39:23.9269131Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fed4c2a-e631-47aa-a1a3-c987129e585f?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3999' + - '126' content-type: - application/json date: - - Tue, 28 Mar 2023 09:29:58 GMT + - Fri, 16 Jun 2023 18:39:24 GMT expires: - '-1' pragma: @@ -1730,8 +1232,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: code: 200 message: OK @@ -1749,14 +1249,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-image-cleaner --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fed4c2a-e631-47aa-a1a3-c987129e585f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/256ed6b3-078d-4715-8842-4079df2e302e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2a4ced4f-31e6-aa47-a1a3-c987129e585f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:29:58.7990746Z\"\n }" + string: "{\n \"name\": \"b3d66e25-8d07-1547-8842-4079df2e302e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T18:39:23.9269131Z\"\n }" headers: cache-control: - no-cache @@ -1765,7 +1265,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 09:30:28 GMT + - Fri, 16 Jun 2023 18:39:55 GMT expires: - '-1' pragma: @@ -1797,14 +1297,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-image-cleaner --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fed4c2a-e631-47aa-a1a3-c987129e585f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/256ed6b3-078d-4715-8842-4079df2e302e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2a4ced4f-31e6-aa47-a1a3-c987129e585f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:29:58.7990746Z\"\n }" + string: "{\n \"name\": \"b3d66e25-8d07-1547-8842-4079df2e302e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T18:39:23.9269131Z\"\n }" headers: cache-control: - no-cache @@ -1813,7 +1313,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 09:30:58 GMT + - Fri, 16 Jun 2023 18:40:25 GMT expires: - '-1' pragma: @@ -1845,14 +1345,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-image-cleaner --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fed4c2a-e631-47aa-a1a3-c987129e585f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/256ed6b3-078d-4715-8842-4079df2e302e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2a4ced4f-31e6-aa47-a1a3-c987129e585f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-28T09:29:58.7990746Z\"\n }" + string: "{\n \"name\": \"b3d66e25-8d07-1547-8842-4079df2e302e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T18:39:23.9269131Z\"\n }" headers: cache-control: - no-cache @@ -1861,7 +1361,7 @@ interactions: content-type: - application/json date: - - Tue, 28 Mar 2023 09:31:29 GMT + - Fri, 16 Jun 2023 18:40:55 GMT expires: - '-1' pragma: @@ -1893,24 +1393,24 @@ interactions: ParameterSetName: - --resource-group --name --disable-image-cleaner --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fed4c2a-e631-47aa-a1a3-c987129e585f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/256ed6b3-078d-4715-8842-4079df2e302e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"2a4ced4f-31e6-aa47-a1a3-c987129e585f\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-28T09:29:58.7990746Z\",\n \"endTime\": - \"2023-03-28T09:31:30.142535Z\"\n }" + string: "{\n \"name\": \"b3d66e25-8d07-1547-8842-4079df2e302e\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T18:39:23.9269131Z\",\n \"\ + endTime\": \"2023-06-16T18:41:09.9158766Z\"\n }" headers: cache-control: - no-cache content-length: - - '169' + - '170' content-type: - application/json date: - - Tue, 28 Mar 2023 09:31:59 GMT + - Fri, 16 Jun 2023 18:41:25 GMT expires: - '-1' pragma: @@ -1942,65 +1442,67 @@ interactions: ParameterSetName: - --resource-group --name --disable-image-cleaner --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest37vzk6pjw-79a739\",\n \"fqdn\": \"cliakstest-clitest37vzk6pjw-79a739-yyn0dle8.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest37vzk6pjw-79a739-yyn0dle8.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCaFda/2VPKhr6ttdQKHEWxlOuN62Ffyl7UF461XFdh2FAnRbE/lDaCXtNsRQFlYoYkc1TAMmmoBBdwnLL8GyL7y/wza45x75x9Sl/1YsEFfQFiS/SyZzzPPLXVvYdHQNhO7tsIokl7Ozjs8dY44Qwu02Vo9dZKfroaItc57zUi4s6i5gtxGw+FoDiPx0c8Fkwn+a/yJ4fdYNUDg2qHMSwYxnwWbsy8TXgna+7Ld6MazcNmIxAkZ4GmfrMdbJdKx9JDoqU1NdetxV6SvxbFkb9UZrUZd9GvvmrQC08soMPjMZr+TJ3rDaqLfdEoOdMZmrcFYWeOBVQX4aPNboPnOffh - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/3e0bfeba-02c7-44eb-a7aa-e91ebfcf8d55\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"imageCleaner\": {\n \"enabled\": false,\n \"intervalHours\": - 24\n }\n },\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest6xff4iy5r-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest6xff4iy5r-8ecadf-2dl7w94b.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest6xff4iy5r-8ecadf-2dl7w94b.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_D4s_v3\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/296d23e1-0701-491f-b0e8-e31ce1c8410f\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"imageCleaner\": {\n \"enabled\"\ + : false,\n \"intervalHours\": 24\n }\n },\n \"storageProfile\"\ + : {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"\ + enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\"\ + : false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\"\ + : {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4001' + - '4329' content-type: - application/json date: - - Tue, 28 Mar 2023 09:31:59 GMT + - Fri, 16 Jun 2023 18:41:26 GMT expires: - '-1' pragma: @@ -2019,4 +1521,3 @@ interactions: code: 200 message: OK version: 1 - diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_keda.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_keda.yaml old mode 100755 new mode 100644 index 20ab712bcfb..fb7dcf8cca5 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_keda.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_keda.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 08:47:47 GMT + - Sat, 29 Apr 2023 11:38:51 GMT expires: - '-1' pragma: @@ -46,14 +46,14 @@ interactions: message: Not Found - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest6qvqb3xu7-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestiab2dj4ub-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDQKjOpzEmu8CQ5T4ZCJbS4ZILrj9ANtsvn7CoX7xUmZl7hOHqTUG3rfii32urettLIWEuAcNqddeV3OQPKPfk1CVpYxZCtzuvAHKXCYkerubiiJEa4zijZGPr8NLKDD9ynn+8LcNCR0BM/awB1zoHXUhSq3/pc+H1BQdi4jae6cuD7O2qluTxBTceWx6aQCUafw0l8jMiRrBeWL4udr/U2H516t2qAwgp29gKgOy7ZxFuUwzHQvlP77Vom0Ys0YUAd082nLFsW6vHzkOimlTBNR8auwiS+m4TmjrJ1vB1x57LGFIIKiDd/YibiA1SkqNv3lTlG58cocMWAeGvYCpoZ + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", @@ -75,7 +75,7 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 @@ -85,31 +85,31 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest6qvqb3xu7-79a739\",\n \"fqdn\": \"cliakstest-clitest6qvqb3xu7-79a739-gr8am1gs.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest6qvqb3xu7-79a739-gr8am1gs.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestiab2dj4ub-79a739\",\n \"fqdn\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDQKjOpzEmu8CQ5T4ZCJbS4ZILrj9ANtsvn7CoX7xUmZl7hOHqTUG3rfii32urettLIWEuAcNqddeV3OQPKPfk1CVpYxZCtzuvAHKXCYkerubiiJEa4zijZGPr8NLKDD9ynn+8LcNCR0BM/awB1zoHXUhSq3/pc+H1BQdi4jae6cuD7O2qluTxBTceWx6aQCUafw0l8jMiRrBeWL4udr/U2H516t2qAwgp29gKgOy7ZxFuUwzHQvlP77Vom0Ys0YUAd082nLFsW6vHzkOimlTBNR8auwiS+m4TmjrJ1vB1x57LGFIIKiDd/YibiA1SkqNv3lTlG58cocMWAeGvYCpoZ + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": @@ -118,18 +118,18 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f329009-62e7-405e-988f-70b2d96fcc5f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd6ee89d-a766-4e65-9fe2-e85fabe22983?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3268' + - '3306' content-type: - application/json date: - - Wed, 15 Mar 2023 08:47:51 GMT + - Sat, 29 Apr 2023 11:38:55 GMT expires: - '-1' pragma: @@ -141,7 +141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 201 message: Created @@ -159,14 +159,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f329009-62e7-405e-988f-70b2d96fcc5f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd6ee89d-a766-4e65-9fe2-e85fabe22983?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0990322f-e762-5e40-988f-70b2d96fcc5f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T08:47:52.4279697Z\"\n }" + string: "{\n \"name\": \"9de86efd-66a7-654e-9fe2-e85fabe22983\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:38:55.7491711Z\"\n }" headers: cache-control: - no-cache @@ -175,7 +175,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 08:48:22 GMT + - Sat, 29 Apr 2023 11:38:55 GMT expires: - '-1' pragma: @@ -207,14 +207,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f329009-62e7-405e-988f-70b2d96fcc5f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd6ee89d-a766-4e65-9fe2-e85fabe22983?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0990322f-e762-5e40-988f-70b2d96fcc5f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T08:47:52.4279697Z\"\n }" + string: "{\n \"name\": \"9de86efd-66a7-654e-9fe2-e85fabe22983\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:38:55.7491711Z\"\n }" headers: cache-control: - no-cache @@ -223,7 +223,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 08:48:52 GMT + - Sat, 29 Apr 2023 11:39:25 GMT expires: - '-1' pragma: @@ -255,14 +255,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f329009-62e7-405e-988f-70b2d96fcc5f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd6ee89d-a766-4e65-9fe2-e85fabe22983?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0990322f-e762-5e40-988f-70b2d96fcc5f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T08:47:52.4279697Z\"\n }" + string: "{\n \"name\": \"9de86efd-66a7-654e-9fe2-e85fabe22983\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:38:55.7491711Z\"\n }" headers: cache-control: - no-cache @@ -271,7 +271,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 08:49:22 GMT + - Sat, 29 Apr 2023 11:39:55 GMT expires: - '-1' pragma: @@ -303,14 +303,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f329009-62e7-405e-988f-70b2d96fcc5f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd6ee89d-a766-4e65-9fe2-e85fabe22983?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0990322f-e762-5e40-988f-70b2d96fcc5f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T08:47:52.4279697Z\"\n }" + string: "{\n \"name\": \"9de86efd-66a7-654e-9fe2-e85fabe22983\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:38:55.7491711Z\"\n }" headers: cache-control: - no-cache @@ -319,7 +319,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 08:49:51 GMT + - Sat, 29 Apr 2023 11:40:25 GMT expires: - '-1' pragma: @@ -351,14 +351,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f329009-62e7-405e-988f-70b2d96fcc5f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd6ee89d-a766-4e65-9fe2-e85fabe22983?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0990322f-e762-5e40-988f-70b2d96fcc5f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T08:47:52.4279697Z\"\n }" + string: "{\n \"name\": \"9de86efd-66a7-654e-9fe2-e85fabe22983\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:38:55.7491711Z\"\n }" headers: cache-control: - no-cache @@ -367,7 +367,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 08:50:22 GMT + - Sat, 29 Apr 2023 11:40:56 GMT expires: - '-1' pragma: @@ -399,14 +399,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f329009-62e7-405e-988f-70b2d96fcc5f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd6ee89d-a766-4e65-9fe2-e85fabe22983?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0990322f-e762-5e40-988f-70b2d96fcc5f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T08:47:52.4279697Z\"\n }" + string: "{\n \"name\": \"9de86efd-66a7-654e-9fe2-e85fabe22983\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:38:55.7491711Z\"\n }" headers: cache-control: - no-cache @@ -415,7 +415,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 08:50:52 GMT + - Sat, 29 Apr 2023 11:41:26 GMT expires: - '-1' pragma: @@ -447,14 +447,14 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f329009-62e7-405e-988f-70b2d96fcc5f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd6ee89d-a766-4e65-9fe2-e85fabe22983?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0990322f-e762-5e40-988f-70b2d96fcc5f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T08:47:52.4279697Z\"\n }" + string: "{\n \"name\": \"9de86efd-66a7-654e-9fe2-e85fabe22983\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:38:55.7491711Z\"\n }" headers: cache-control: - no-cache @@ -463,7 +463,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 08:51:22 GMT + - Sat, 29 Apr 2023 11:41:56 GMT expires: - '-1' pragma: @@ -495,15 +495,159 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/2f329009-62e7-405e-988f-70b2d96fcc5f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd6ee89d-a766-4e65-9fe2-e85fabe22983?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"0990322f-e762-5e40-988f-70b2d96fcc5f\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T08:47:52.4279697Z\",\n \"endTime\": - \"2023-03-15T08:51:35.3106451Z\"\n }" + string: "{\n \"name\": \"9de86efd-66a7-654e-9fe2-e85fabe22983\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:38:55.7491711Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:42:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --ssh-key-value --output + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd6ee89d-a766-4e65-9fe2-e85fabe22983?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9de86efd-66a7-654e-9fe2-e85fabe22983\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:38:55.7491711Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:42:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --ssh-key-value --output + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd6ee89d-a766-4e65-9fe2-e85fabe22983?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9de86efd-66a7-654e-9fe2-e85fabe22983\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:38:55.7491711Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:43:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --ssh-key-value --output + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/fd6ee89d-a766-4e65-9fe2-e85fabe22983?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9de86efd-66a7-654e-9fe2-e85fabe22983\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-04-29T11:38:55.7491711Z\",\n \"endTime\": + \"2023-04-29T11:43:47.1366153Z\"\n }" headers: cache-control: - no-cache @@ -512,7 +656,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 08:51:52 GMT + - Sat, 29 Apr 2023 11:43:57 GMT expires: - '-1' pragma: @@ -544,7 +688,7 @@ interactions: ParameterSetName: - --resource-group --name --location --ssh-key-value --output User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 @@ -554,29 +698,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest6qvqb3xu7-79a739\",\n \"fqdn\": \"cliakstest-clitest6qvqb3xu7-79a739-gr8am1gs.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest6qvqb3xu7-79a739-gr8am1gs.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestiab2dj4ub-79a739\",\n \"fqdn\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDQKjOpzEmu8CQ5T4ZCJbS4ZILrj9ANtsvn7CoX7xUmZl7hOHqTUG3rfii32urettLIWEuAcNqddeV3OQPKPfk1CVpYxZCtzuvAHKXCYkerubiiJEa4zijZGPr8NLKDD9ynn+8LcNCR0BM/awB1zoHXUhSq3/pc+H1BQdi4jae6cuD7O2qluTxBTceWx6aQCUafw0l8jMiRrBeWL4udr/U2H516t2qAwgp29gKgOy7ZxFuUwzHQvlP77Vom0Ys0YUAd082nLFsW6vHzkOimlTBNR8auwiS+m4TmjrJ1vB1x57LGFIIKiDd/YibiA1SkqNv3lTlG58cocMWAeGvYCpoZ + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/374ceacb-e92a-4b34-a18e-f531b46bb387\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5bab91fb-536b-4171-8e38-8f7303b407a5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -592,16 +736,16 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '3959' content-type: - application/json date: - - Wed, 15 Mar 2023 08:51:53 GMT + - Sat, 29 Apr 2023 11:43:57 GMT expires: - '-1' pragma: @@ -633,7 +777,7 @@ interactions: ParameterSetName: - --resource-group --name --yes --output --aks-custom-headers --enable-keda User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 @@ -643,29 +787,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest6qvqb3xu7-79a739\",\n \"fqdn\": \"cliakstest-clitest6qvqb3xu7-79a739-gr8am1gs.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest6qvqb3xu7-79a739-gr8am1gs.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestiab2dj4ub-79a739\",\n \"fqdn\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDQKjOpzEmu8CQ5T4ZCJbS4ZILrj9ANtsvn7CoX7xUmZl7hOHqTUG3rfii32urettLIWEuAcNqddeV3OQPKPfk1CVpYxZCtzuvAHKXCYkerubiiJEa4zijZGPr8NLKDD9ynn+8LcNCR0BM/awB1zoHXUhSq3/pc+H1BQdi4jae6cuD7O2qluTxBTceWx6aQCUafw0l8jMiRrBeWL4udr/U2H516t2qAwgp29gKgOy7ZxFuUwzHQvlP77Vom0Ys0YUAd082nLFsW6vHzkOimlTBNR8auwiS+m4TmjrJ1vB1x57LGFIIKiDd/YibiA1SkqNv3lTlG58cocMWAeGvYCpoZ + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/374ceacb-e92a-4b34-a18e-f531b46bb387\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5bab91fb-536b-4171-8e38-8f7303b407a5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -681,16 +825,16 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '3959' content-type: - application/json date: - - Wed, 15 Mar 2023 08:51:54 GMT + - Sat, 29 Apr 2023 11:43:57 GMT expires: - '-1' pragma: @@ -709,23 +853,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitest6qvqb3xu7-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestiab2dj4ub-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDQKjOpzEmu8CQ5T4ZCJbS4ZILrj9ANtsvn7CoX7xUmZl7hOHqTUG3rfii32urettLIWEuAcNqddeV3OQPKPfk1CVpYxZCtzuvAHKXCYkerubiiJEa4zijZGPr8NLKDD9ynn+8LcNCR0BM/awB1zoHXUhSq3/pc+H1BQdi4jae6cuD7O2qluTxBTceWx6aQCUafw0l8jMiRrBeWL4udr/U2H516t2qAwgp29gKgOy7ZxFuUwzHQvlP77Vom0Ys0YUAd082nLFsW6vHzkOimlTBNR8auwiS+m4TmjrJ1vB1x57LGFIIKiDd/YibiA1SkqNv3lTlG58cocMWAeGvYCpoZ + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/374ceacb-e92a-4b34-a18e-f531b46bb387"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5bab91fb-536b-4171-8e38-8f7303b407a5"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -743,13 +887,13 @@ interactions: Connection: - keep-alive Content-Length: - - '2509' + - '2508' Content-Type: - application/json ParameterSetName: - --resource-group --name --yes --output --aks-custom-headers --enable-keda User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 @@ -759,29 +903,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest6qvqb3xu7-79a739\",\n \"fqdn\": \"cliakstest-clitest6qvqb3xu7-79a739-gr8am1gs.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest6qvqb3xu7-79a739-gr8am1gs.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestiab2dj4ub-79a739\",\n \"fqdn\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDQKjOpzEmu8CQ5T4ZCJbS4ZILrj9ANtsvn7CoX7xUmZl7hOHqTUG3rfii32urettLIWEuAcNqddeV3OQPKPfk1CVpYxZCtzuvAHKXCYkerubiiJEa4zijZGPr8NLKDD9ynn+8LcNCR0BM/awB1zoHXUhSq3/pc+H1BQdi4jae6cuD7O2qluTxBTceWx6aQCUafw0l8jMiRrBeWL4udr/U2H516t2qAwgp29gKgOy7ZxFuUwzHQvlP77Vom0Ys0YUAd082nLFsW6vHzkOimlTBNR8auwiS+m4TmjrJ1vB1x57LGFIIKiDd/YibiA1SkqNv3lTlG58cocMWAeGvYCpoZ + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/374ceacb-e92a-4b34-a18e-f531b46bb387\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5bab91fb-536b-4171-8e38-8f7303b407a5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -798,18 +942,18 @@ interactions: true\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4891af49-39ab-40b4-901b-c929eb21c2ad?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8ba6f78a-73d4-4010-9887-8c704b855b2d?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3964' + - '4002' content-type: - application/json date: - - Wed, 15 Mar 2023 08:51:57 GMT + - Sat, 29 Apr 2023 11:44:01 GMT expires: - '-1' pragma: @@ -825,7 +969,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' status: code: 200 message: OK @@ -843,14 +987,14 @@ interactions: ParameterSetName: - --resource-group --name --yes --output --aks-custom-headers --enable-keda User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4891af49-39ab-40b4-901b-c929eb21c2ad?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8ba6f78a-73d4-4010-9887-8c704b855b2d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"49af9148-ab39-b440-901b-c929eb21c2ad\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T08:51:57.3661712Z\"\n }" + string: "{\n \"name\": \"8af7a68b-d473-1040-9887-8c704b855b2d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:44:01.7205156Z\"\n }" headers: cache-control: - no-cache @@ -859,7 +1003,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 08:52:27 GMT + - Sat, 29 Apr 2023 11:44:01 GMT expires: - '-1' pragma: @@ -891,14 +1035,14 @@ interactions: ParameterSetName: - --resource-group --name --yes --output --aks-custom-headers --enable-keda User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4891af49-39ab-40b4-901b-c929eb21c2ad?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8ba6f78a-73d4-4010-9887-8c704b855b2d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"49af9148-ab39-b440-901b-c929eb21c2ad\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T08:51:57.3661712Z\"\n }" + string: "{\n \"name\": \"8af7a68b-d473-1040-9887-8c704b855b2d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:44:01.7205156Z\"\n }" headers: cache-control: - no-cache @@ -907,7 +1051,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 08:52:56 GMT + - Sat, 29 Apr 2023 11:44:31 GMT expires: - '-1' pragma: @@ -939,14 +1083,14 @@ interactions: ParameterSetName: - --resource-group --name --yes --output --aks-custom-headers --enable-keda User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4891af49-39ab-40b4-901b-c929eb21c2ad?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8ba6f78a-73d4-4010-9887-8c704b855b2d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"49af9148-ab39-b440-901b-c929eb21c2ad\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T08:51:57.3661712Z\"\n }" + string: "{\n \"name\": \"8af7a68b-d473-1040-9887-8c704b855b2d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:44:01.7205156Z\"\n }" headers: cache-control: - no-cache @@ -955,7 +1099,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 08:53:27 GMT + - Sat, 29 Apr 2023 11:45:02 GMT expires: - '-1' pragma: @@ -987,24 +1131,23 @@ interactions: ParameterSetName: - --resource-group --name --yes --output --aks-custom-headers --enable-keda User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4891af49-39ab-40b4-901b-c929eb21c2ad?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8ba6f78a-73d4-4010-9887-8c704b855b2d?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"49af9148-ab39-b440-901b-c929eb21c2ad\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T08:51:57.3661712Z\",\n \"endTime\": - \"2023-03-15T08:53:51.5725874Z\"\n }" + string: "{\n \"name\": \"8af7a68b-d473-1040-9887-8c704b855b2d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:44:01.7205156Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 08:53:57 GMT + - Sat, 29 Apr 2023 11:45:32 GMT expires: - '-1' pragma: @@ -1036,7 +1179,152 @@ interactions: ParameterSetName: - --resource-group --name --yes --output --aks-custom-headers --enable-keda User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8ba6f78a-73d4-4010-9887-8c704b855b2d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8af7a68b-d473-1040-9887-8c704b855b2d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:44:01.7205156Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:46:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --yes --output --aks-custom-headers --enable-keda + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8ba6f78a-73d4-4010-9887-8c704b855b2d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8af7a68b-d473-1040-9887-8c704b855b2d\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:44:01.7205156Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:46:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --yes --output --aks-custom-headers --enable-keda + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/8ba6f78a-73d4-4010-9887-8c704b855b2d?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"8af7a68b-d473-1040-9887-8c704b855b2d\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-04-29T11:44:01.7205156Z\",\n \"endTime\": + \"2023-04-29T11:46:45.762279Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:47:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --yes --output --aks-custom-headers --enable-keda + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 @@ -1046,29 +1334,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest6qvqb3xu7-79a739\",\n \"fqdn\": \"cliakstest-clitest6qvqb3xu7-79a739-gr8am1gs.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest6qvqb3xu7-79a739-gr8am1gs.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestiab2dj4ub-79a739\",\n \"fqdn\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDQKjOpzEmu8CQ5T4ZCJbS4ZILrj9ANtsvn7CoX7xUmZl7hOHqTUG3rfii32urettLIWEuAcNqddeV3OQPKPfk1CVpYxZCtzuvAHKXCYkerubiiJEa4zijZGPr8NLKDD9ynn+8LcNCR0BM/awB1zoHXUhSq3/pc+H1BQdi4jae6cuD7O2qluTxBTceWx6aQCUafw0l8jMiRrBeWL4udr/U2H516t2qAwgp29gKgOy7ZxFuUwzHQvlP77Vom0Ys0YUAd082nLFsW6vHzkOimlTBNR8auwiS+m4TmjrJ1vB1x57LGFIIKiDd/YibiA1SkqNv3lTlG58cocMWAeGvYCpoZ + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/374ceacb-e92a-4b34-a18e-f531b46bb387\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5bab91fb-536b-4171-8e38-8f7303b407a5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1085,16 +1373,16 @@ interactions: true\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3966' + - '4004' content-type: - application/json date: - - Wed, 15 Mar 2023 08:53:57 GMT + - Sat, 29 Apr 2023 11:47:02 GMT expires: - '-1' pragma: @@ -1126,7 +1414,7 @@ interactions: ParameterSetName: - --resource-group --name --yes --output --disable-keda User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 @@ -1136,29 +1424,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest6qvqb3xu7-79a739\",\n \"fqdn\": \"cliakstest-clitest6qvqb3xu7-79a739-gr8am1gs.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest6qvqb3xu7-79a739-gr8am1gs.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestiab2dj4ub-79a739\",\n \"fqdn\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDQKjOpzEmu8CQ5T4ZCJbS4ZILrj9ANtsvn7CoX7xUmZl7hOHqTUG3rfii32urettLIWEuAcNqddeV3OQPKPfk1CVpYxZCtzuvAHKXCYkerubiiJEa4zijZGPr8NLKDD9ynn+8LcNCR0BM/awB1zoHXUhSq3/pc+H1BQdi4jae6cuD7O2qluTxBTceWx6aQCUafw0l8jMiRrBeWL4udr/U2H516t2qAwgp29gKgOy7ZxFuUwzHQvlP77Vom0Ys0YUAd082nLFsW6vHzkOimlTBNR8auwiS+m4TmjrJ1vB1x57LGFIIKiDd/YibiA1SkqNv3lTlG58cocMWAeGvYCpoZ + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/374ceacb-e92a-4b34-a18e-f531b46bb387\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5bab91fb-536b-4171-8e38-8f7303b407a5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1175,16 +1463,16 @@ interactions: true\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3966' + - '4004' content-type: - application/json date: - - Wed, 15 Mar 2023 08:53:58 GMT + - Sat, 29 Apr 2023 11:47:03 GMT expires: - '-1' pragma: @@ -1203,23 +1491,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitest6qvqb3xu7-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitestiab2dj4ub-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDQKjOpzEmu8CQ5T4ZCJbS4ZILrj9ANtsvn7CoX7xUmZl7hOHqTUG3rfii32urettLIWEuAcNqddeV3OQPKPfk1CVpYxZCtzuvAHKXCYkerubiiJEa4zijZGPr8NLKDD9ynn+8LcNCR0BM/awB1zoHXUhSq3/pc+H1BQdi4jae6cuD7O2qluTxBTceWx6aQCUafw0l8jMiRrBeWL4udr/U2H516t2qAwgp29gKgOy7ZxFuUwzHQvlP77Vom0Ys0YUAd082nLFsW6vHzkOimlTBNR8auwiS+m4TmjrJ1vB1x57LGFIIKiDd/YibiA1SkqNv3lTlG58cocMWAeGvYCpoZ + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000002_westus2", "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/374ceacb-e92a-4b34-a18e-f531b46bb387"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5bab91fb-536b-4171-8e38-8f7303b407a5"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000002-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -1235,13 +1523,13 @@ interactions: Connection: - keep-alive Content-Length: - - '2510' + - '2509' Content-Type: - application/json ParameterSetName: - --resource-group --name --yes --output --disable-keda User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 @@ -1251,29 +1539,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest6qvqb3xu7-79a739\",\n \"fqdn\": \"cliakstest-clitest6qvqb3xu7-79a739-gr8am1gs.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest6qvqb3xu7-79a739-gr8am1gs.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestiab2dj4ub-79a739\",\n \"fqdn\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDQKjOpzEmu8CQ5T4ZCJbS4ZILrj9ANtsvn7CoX7xUmZl7hOHqTUG3rfii32urettLIWEuAcNqddeV3OQPKPfk1CVpYxZCtzuvAHKXCYkerubiiJEa4zijZGPr8NLKDD9ynn+8LcNCR0BM/awB1zoHXUhSq3/pc+H1BQdi4jae6cuD7O2qluTxBTceWx6aQCUafw0l8jMiRrBeWL4udr/U2H516t2qAwgp29gKgOy7ZxFuUwzHQvlP77Vom0Ys0YUAd082nLFsW6vHzkOimlTBNR8auwiS+m4TmjrJ1vB1x57LGFIIKiDd/YibiA1SkqNv3lTlG58cocMWAeGvYCpoZ + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/374ceacb-e92a-4b34-a18e-f531b46bb387\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5bab91fb-536b-4171-8e38-8f7303b407a5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1290,18 +1578,18 @@ interactions: false\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ddeaccb5-5b7e-4b53-a9ce-3fc95348da31?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3b4a7d0-8a21-4fa3-b198-dd595d44cc49?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3965' + - '4003' content-type: - application/json date: - - Wed, 15 Mar 2023 08:54:01 GMT + - Sat, 29 Apr 2023 11:47:07 GMT expires: - '-1' pragma: @@ -1317,7 +1605,103 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --yes --output --disable-keda + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3b4a7d0-8a21-4fa3-b198-dd595d44cc49?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d0a7b4c3-218a-a34f-b198-dd595d44cc49\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:47:07.5345147Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:47:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --yes --output --disable-keda + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3b4a7d0-8a21-4fa3-b198-dd595d44cc49?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"d0a7b4c3-218a-a34f-b198-dd595d44cc49\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:47:07.5345147Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:47:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -1335,14 +1719,14 @@ interactions: ParameterSetName: - --resource-group --name --yes --output --disable-keda User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ddeaccb5-5b7e-4b53-a9ce-3fc95348da31?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3b4a7d0-8a21-4fa3-b198-dd595d44cc49?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b5cceadd-7e5b-534b-a9ce-3fc95348da31\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T08:54:01.6477475Z\"\n }" + string: "{\n \"name\": \"d0a7b4c3-218a-a34f-b198-dd595d44cc49\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:47:07.5345147Z\"\n }" headers: cache-control: - no-cache @@ -1351,7 +1735,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 08:54:31 GMT + - Sat, 29 Apr 2023 11:48:07 GMT expires: - '-1' pragma: @@ -1383,14 +1767,14 @@ interactions: ParameterSetName: - --resource-group --name --yes --output --disable-keda User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ddeaccb5-5b7e-4b53-a9ce-3fc95348da31?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3b4a7d0-8a21-4fa3-b198-dd595d44cc49?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b5cceadd-7e5b-534b-a9ce-3fc95348da31\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T08:54:01.6477475Z\"\n }" + string: "{\n \"name\": \"d0a7b4c3-218a-a34f-b198-dd595d44cc49\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:47:07.5345147Z\"\n }" headers: cache-control: - no-cache @@ -1399,7 +1783,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 08:55:01 GMT + - Sat, 29 Apr 2023 11:48:38 GMT expires: - '-1' pragma: @@ -1431,15 +1815,15 @@ interactions: ParameterSetName: - --resource-group --name --yes --output --disable-keda User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/ddeaccb5-5b7e-4b53-a9ce-3fc95348da31?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c3b4a7d0-8a21-4fa3-b198-dd595d44cc49?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"b5cceadd-7e5b-534b-a9ce-3fc95348da31\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T08:54:01.6477475Z\",\n \"endTime\": - \"2023-03-15T08:55:20.2107082Z\"\n }" + string: "{\n \"name\": \"d0a7b4c3-218a-a34f-b198-dd595d44cc49\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-04-29T11:47:07.5345147Z\",\n \"endTime\": + \"2023-04-29T11:48:43.9003329Z\"\n }" headers: cache-control: - no-cache @@ -1448,7 +1832,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 08:55:31 GMT + - Sat, 29 Apr 2023 11:49:08 GMT expires: - '-1' pragma: @@ -1480,7 +1864,7 @@ interactions: ParameterSetName: - --resource-group --name --yes --output --disable-keda User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 @@ -1490,29 +1874,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000002\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitest6qvqb3xu7-79a739\",\n \"fqdn\": \"cliakstest-clitest6qvqb3xu7-79a739-gr8am1gs.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitest6qvqb3xu7-79a739-gr8am1gs.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitestiab2dj4ub-79a739\",\n \"fqdn\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitestiab2dj4ub-79a739-tmx3t761.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDQKjOpzEmu8CQ5T4ZCJbS4ZILrj9ANtsvn7CoX7xUmZl7hOHqTUG3rfii32urettLIWEuAcNqddeV3OQPKPfk1CVpYxZCtzuvAHKXCYkerubiiJEa4zijZGPr8NLKDD9ynn+8LcNCR0BM/awB1zoHXUhSq3/pc+H1BQdi4jae6cuD7O2qluTxBTceWx6aQCUafw0l8jMiRrBeWL4udr/U2H516t2qAwgp29gKgOy7ZxFuUwzHQvlP77Vom0Ys0YUAd082nLFsW6vHzkOimlTBNR8auwiS+m4TmjrJ1vB1x57LGFIIKiDd/YibiA1SkqNv3lTlG58cocMWAeGvYCpoZ + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000002_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/374ceacb-e92a-4b34-a18e-f531b46bb387\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000002_westus2/providers/Microsoft.Network/publicIPAddresses/5bab91fb-536b-4171-8e38-8f7303b407a5\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1529,16 +1913,16 @@ interactions: false\n }\n }\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \ \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": {\n \"name\": - \"Basic\",\n \"tier\": \"Free\"\n }\n }" + \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3967' + - '4005' content-type: - application/json date: - - Wed, 15 Mar 2023 08:55:32 GMT + - Sat, 29 Apr 2023 11:49:08 GMT expires: - '-1' pragma: @@ -1572,7 +1956,7 @@ interactions: ParameterSetName: - --resource-group --name --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000002?api-version=2023-04-01 @@ -1581,17 +1965,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f05949c6-e8ca-4f5c-971b-0b5bc4eb982b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/801cb4cf-3420-4e0e-aa59-202135a5bbb3?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 08:55:33 GMT + - Sat, 29 Apr 2023 11:49:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/f05949c6-e8ca-4f5c-971b-0b5bc4eb982b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/801cb4cf-3420-4e0e-aa59-202135a5bbb3?api-version=2016-03-30 pragma: - no-cache server: @@ -1601,7 +1985,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14995' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_oidc_issuer_enabled.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_oidc_issuer_enabled.yaml old mode 100755 new mode 100644 index 73baed04568..fa82dc814ee --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_oidc_issuer_enabled.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_oidc_issuer_enabled.yaml @@ -13,8 +13,8 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:27:31 GMT + - Fri, 16 Jun 2023 19:14:15 GMT expires: - '-1' pragma: @@ -45,20 +45,19 @@ interactions: code: 404 message: Not Found - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitesttylcentgb-79a739", + body: '{"location": "centraluseuap", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestx2dvvg2f4-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -69,67 +68,69 @@ interactions: Connection: - keep-alive Content-Length: - - '1459' + - '1757' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --enable-managed-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesttylcentgb-79a739\",\n \"fqdn\": \"cliakstest-clitesttylcentgb-79a739-a4g1kob5.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesttylcentgb-79a739-a4g1kob5.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestx2dvvg2f4-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestx2dvvg2f4-8ecadf-rmzar138.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestx2dvvg2f4-8ecadf-rmzar138.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ea2ffd4-b333-4c3e-8e4e-9f6e7f65dfbf?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/17619f34-a058-4329-b5c4-93c79b819220?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3268' + - '3620' content-type: - application/json date: - - Wed, 15 Mar 2023 11:27:35 GMT + - Fri, 16 Jun 2023 19:14:19 GMT expires: - '-1' pragma: @@ -141,7 +142,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 201 message: Created @@ -159,14 +160,14 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ea2ffd4-b333-4c3e-8e4e-9f6e7f65dfbf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/17619f34-a058-4329-b5c4-93c79b819220?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d4ffa29e-33b3-3e4c-8e4e-9f6e7f65dfbf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:35.4342164Z\"\n }" + string: "{\n \"name\": \"349f6117-58a0-2943-b5c4-93c79b819220\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:14:19.9487618Z\"\n }" headers: cache-control: - no-cache @@ -175,7 +176,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:28:05 GMT + - Fri, 16 Jun 2023 19:14:20 GMT expires: - '-1' pragma: @@ -207,14 +208,14 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ea2ffd4-b333-4c3e-8e4e-9f6e7f65dfbf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/17619f34-a058-4329-b5c4-93c79b819220?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d4ffa29e-33b3-3e4c-8e4e-9f6e7f65dfbf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:35.4342164Z\"\n }" + string: "{\n \"name\": \"349f6117-58a0-2943-b5c4-93c79b819220\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:14:19.9487618Z\"\n }" headers: cache-control: - no-cache @@ -223,7 +224,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:28:35 GMT + - Fri, 16 Jun 2023 19:14:50 GMT expires: - '-1' pragma: @@ -255,14 +256,14 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ea2ffd4-b333-4c3e-8e4e-9f6e7f65dfbf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/17619f34-a058-4329-b5c4-93c79b819220?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d4ffa29e-33b3-3e4c-8e4e-9f6e7f65dfbf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:35.4342164Z\"\n }" + string: "{\n \"name\": \"349f6117-58a0-2943-b5c4-93c79b819220\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:14:19.9487618Z\"\n }" headers: cache-control: - no-cache @@ -271,7 +272,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:29:05 GMT + - Fri, 16 Jun 2023 19:15:20 GMT expires: - '-1' pragma: @@ -303,14 +304,14 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ea2ffd4-b333-4c3e-8e4e-9f6e7f65dfbf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/17619f34-a058-4329-b5c4-93c79b819220?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d4ffa29e-33b3-3e4c-8e4e-9f6e7f65dfbf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:35.4342164Z\"\n }" + string: "{\n \"name\": \"349f6117-58a0-2943-b5c4-93c79b819220\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:14:19.9487618Z\"\n }" headers: cache-control: - no-cache @@ -319,7 +320,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:29:35 GMT + - Fri, 16 Jun 2023 19:15:50 GMT expires: - '-1' pragma: @@ -351,14 +352,14 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ea2ffd4-b333-4c3e-8e4e-9f6e7f65dfbf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/17619f34-a058-4329-b5c4-93c79b819220?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d4ffa29e-33b3-3e4c-8e4e-9f6e7f65dfbf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:35.4342164Z\"\n }" + string: "{\n \"name\": \"349f6117-58a0-2943-b5c4-93c79b819220\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:14:19.9487618Z\"\n }" headers: cache-control: - no-cache @@ -367,7 +368,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:30:05 GMT + - Fri, 16 Jun 2023 19:16:20 GMT expires: - '-1' pragma: @@ -399,14 +400,14 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ea2ffd4-b333-4c3e-8e4e-9f6e7f65dfbf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/17619f34-a058-4329-b5c4-93c79b819220?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d4ffa29e-33b3-3e4c-8e4e-9f6e7f65dfbf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:35.4342164Z\"\n }" + string: "{\n \"name\": \"349f6117-58a0-2943-b5c4-93c79b819220\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:14:19.9487618Z\"\n }" headers: cache-control: - no-cache @@ -415,7 +416,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:30:35 GMT + - Fri, 16 Jun 2023 19:16:51 GMT expires: - '-1' pragma: @@ -447,23 +448,24 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ea2ffd4-b333-4c3e-8e4e-9f6e7f65dfbf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/17619f34-a058-4329-b5c4-93c79b819220?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d4ffa29e-33b3-3e4c-8e4e-9f6e7f65dfbf\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:27:35.4342164Z\"\n }" + string: "{\n \"name\": \"349f6117-58a0-2943-b5c4-93c79b819220\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T19:14:19.9487618Z\",\n \"\ + endTime\": \"2023-06-16T19:17:50.2365832Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:05 GMT + - Fri, 16 Jun 2023 19:23:23 GMT expires: - '-1' pragma: @@ -495,24 +497,66 @@ interactions: ParameterSetName: - --resource-group --name --location --enable-managed-identity --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9ea2ffd4-b333-4c3e-8e4e-9f6e7f65dfbf?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"d4ffa29e-33b3-3e4c-8e4e-9f6e7f65dfbf\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:27:35.4342164Z\",\n \"endTime\": - \"2023-03-15T11:31:25.9142913Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestx2dvvg2f4-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestx2dvvg2f4-8ecadf-rmzar138.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestx2dvvg2f4-8ecadf-rmzar138.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/cee14349-bf16-41c7-9831-7f3d8662652b\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '170' + - '4285' content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:35 GMT + - Fri, 16 Jun 2023 19:23:23 GMT expires: - '-1' pragma: @@ -534,74 +578,76 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --enable-managed-identity --ssh-key-value + - --resource-group --name --aks-custom-headers --enable-oidc-issuer User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesttylcentgb-79a739\",\n \"fqdn\": \"cliakstest-clitesttylcentgb-79a739-a4g1kob5.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesttylcentgb-79a739-a4g1kob5.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5abba08a-ae06-4f23-88d4-6bf3300182c4\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestx2dvvg2f4-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestx2dvvg2f4-8ecadf-rmzar138.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestx2dvvg2f4-8ecadf-rmzar138.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/cee14349-bf16-41c7-9831-7f3d8662652b\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '4285' content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:35 GMT + - Fri, 16 Jun 2023 19:23:24 GMT expires: - '-1' pragma: @@ -620,8 +666,32 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "centraluseuap", "sku": {"name": "Base", "tier": "Free"}, + "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": + "1.25.6", "dnsPrefix": "cliakstest-clitestx2dvvg2f4-8ecadf", "agentPoolProfiles": + [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": + "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": + "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": + "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": + {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "oidcIssuerProfile": {"enabled": true}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_centraluseuap", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/cee14349-bf16-41c7-9831-7f3d8662652b"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, + "workloadAutoScalerProfile": {}}}' headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - application/json Accept-Encoding: @@ -630,67 +700,76 @@ interactions: - aks update Connection: - keep-alive + Content-Length: + - '2835' + Content-Type: + - application/json ParameterSetName: - --resource-group --name --aks-custom-headers --enable-oidc-issuer User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesttylcentgb-79a739\",\n \"fqdn\": \"cliakstest-clitesttylcentgb-79a739-a4g1kob5.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesttylcentgb-79a739-a4g1kob5.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5abba08a-ae06-4f23-88d4-6bf3300182c4\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestx2dvvg2f4-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestx2dvvg2f4-8ecadf-rmzar138.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestx2dvvg2f4-8ecadf-rmzar138.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/cee14349-bf16-41c7-9831-7f3d8662652b\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n \"issuerURL\"\ + : \"https://centraluseuap.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/f69d4f99-4667-4787-97d1-f23ac20e7622/\"\ + \n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/1bc0caea-f148-4fa6-8ef6-c84eddd20a98?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3921' + - '4422' content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:36 GMT + - Fri, 16 Jun 2023 19:23:27 GMT expires: - '-1' pragma: @@ -705,111 +784,90 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitesttylcentgb-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": - "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": - "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": - false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": - false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, - "oidcIssuerProfile": {"enabled": true}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5abba08a-ae06-4f23-88d4-6bf3300182c4"}]}, - "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": - ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", - "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "securityProfile": {}, "storageProfile": {}, - "workloadAutoScalerProfile": {}}}' + body: null headers: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks update Connection: - keep-alive - Content-Length: - - '2483' - Content-Type: + ParameterSetName: + - --resource-group --name --aks-custom-headers --enable-oidc-issuer + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/1bc0caea-f148-4fa6-8ef6-c84eddd20a98?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"eacac01b-48f1-a64f-8ef6-c84eddd20a98\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:23:27.8774422Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: - application/json + date: + - Fri, 16 Jun 2023 19:23:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive ParameterSetName: - --resource-group --name --aks-custom-headers --enable-oidc-issuer User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/1bc0caea-f148-4fa6-8ef6-c84eddd20a98?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesttylcentgb-79a739\",\n \"fqdn\": \"cliakstest-clitesttylcentgb-79a739-a4g1kob5.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesttylcentgb-79a739-a4g1kob5.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5abba08a-ae06-4f23-88d4-6bf3300182c4\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - true,\n \"issuerURL\": \"https://westus2.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/33e8824e-003d-41d5-8750-1c2536e3ec7a/\"\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"eacac01b-48f1-a64f-8ef6-c84eddd20a98\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:23:27.8774422Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4290e555-c470-4b80-90c6-659e979fc7a8?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4052' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:39 GMT + - Fri, 16 Jun 2023 19:23:58 GMT expires: - '-1' pragma: @@ -824,8 +882,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1195' status: code: 200 message: OK @@ -843,14 +899,14 @@ interactions: ParameterSetName: - --resource-group --name --aks-custom-headers --enable-oidc-issuer User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4290e555-c470-4b80-90c6-659e979fc7a8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/1bc0caea-f148-4fa6-8ef6-c84eddd20a98?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"55e59042-70c4-804b-90c6-659e979fc7a8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:31:40.1698774Z\"\n }" + string: "{\n \"name\": \"eacac01b-48f1-a64f-8ef6-c84eddd20a98\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:23:27.8774422Z\"\n }" headers: cache-control: - no-cache @@ -859,7 +915,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:32:09 GMT + - Fri, 16 Jun 2023 19:24:28 GMT expires: - '-1' pragma: @@ -891,14 +947,14 @@ interactions: ParameterSetName: - --resource-group --name --aks-custom-headers --enable-oidc-issuer User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4290e555-c470-4b80-90c6-659e979fc7a8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/1bc0caea-f148-4fa6-8ef6-c84eddd20a98?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"55e59042-70c4-804b-90c6-659e979fc7a8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:31:40.1698774Z\"\n }" + string: "{\n \"name\": \"eacac01b-48f1-a64f-8ef6-c84eddd20a98\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:23:27.8774422Z\"\n }" headers: cache-control: - no-cache @@ -907,7 +963,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:32:40 GMT + - Fri, 16 Jun 2023 19:24:59 GMT expires: - '-1' pragma: @@ -939,14 +995,14 @@ interactions: ParameterSetName: - --resource-group --name --aks-custom-headers --enable-oidc-issuer User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4290e555-c470-4b80-90c6-659e979fc7a8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/1bc0caea-f148-4fa6-8ef6-c84eddd20a98?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"55e59042-70c4-804b-90c6-659e979fc7a8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:31:40.1698774Z\"\n }" + string: "{\n \"name\": \"eacac01b-48f1-a64f-8ef6-c84eddd20a98\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:23:27.8774422Z\"\n }" headers: cache-control: - no-cache @@ -955,7 +1011,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:33:09 GMT + - Fri, 16 Jun 2023 19:25:29 GMT expires: - '-1' pragma: @@ -987,15 +1043,15 @@ interactions: ParameterSetName: - --resource-group --name --aks-custom-headers --enable-oidc-issuer User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4290e555-c470-4b80-90c6-659e979fc7a8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/1bc0caea-f148-4fa6-8ef6-c84eddd20a98?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"55e59042-70c4-804b-90c6-659e979fc7a8\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:31:40.1698774Z\",\n \"endTime\": - \"2023-03-15T11:33:37.1523085Z\"\n }" + string: "{\n \"name\": \"eacac01b-48f1-a64f-8ef6-c84eddd20a98\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T19:23:27.8774422Z\",\n \"\ + endTime\": \"2023-06-16T19:25:35.0859247Z\"\n }" headers: cache-control: - no-cache @@ -1004,7 +1060,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:33:40 GMT + - Fri, 16 Jun 2023 19:25:59 GMT expires: - '-1' pragma: @@ -1036,65 +1092,67 @@ interactions: ParameterSetName: - --resource-group --name --aks-custom-headers --enable-oidc-issuer User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitesttylcentgb-79a739\",\n \"fqdn\": \"cliakstest-clitesttylcentgb-79a739-a4g1kob5.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitesttylcentgb-79a739-a4g1kob5.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/5abba08a-ae06-4f23-88d4-6bf3300182c4\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - true,\n \"issuerURL\": \"https://westus2.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/33e8824e-003d-41d5-8750-1c2536e3ec7a/\"\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitestx2dvvg2f4-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitestx2dvvg2f4-8ecadf-rmzar138.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitestx2dvvg2f4-8ecadf-rmzar138.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/cee14349-bf16-41c7-9831-7f3d8662652b\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n \"issuerURL\"\ + : \"https://centraluseuap.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/f69d4f99-4667-4787-97d1-f23ac20e7622/\"\ + \n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4054' + - '4424' content-type: - application/json date: - - Wed, 15 Mar 2023 11:33:40 GMT + - Fri, 16 Jun 2023 19:25:59 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_windows_gmsa.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_windows_gmsa.yaml old mode 100755 new mode 100644 index 3323c0d240f..9f63419c6d5 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_windows_gmsa.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_windows_gmsa.yaml @@ -15,8 +15,8 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:28:15 GMT + - Fri, 16 Jun 2023 19:26:03 GMT expires: - '-1' pragma: @@ -55,12 +55,11 @@ interactions: "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser1", "adminPassword": "replace-Password1234$"}, "addonProfiles": {}, - "enableRBAC": true, "networkProfile": {"networkPlugin": "azure", "outboundType": - "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": false, - "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "adminPassword": + "replace-Password1234$"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "azure", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -71,7 +70,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1407' + - '1736' Content-Type: - application/json ParameterSetName: @@ -79,61 +78,63 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-rxrx39t4.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-rxrx39t4.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n - \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8kv9gdo9.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-8kv9gdo9.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n\ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \ + \ \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dbd1dda-0d08-4f81-a2ee-f74188cb234a?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc8f7162-376c-4777-8212-8abfa0a4c80e?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3221' + - '3582' content-type: - application/json date: - - Wed, 15 Mar 2023 11:28:19 GMT + - Fri, 16 Jun 2023 19:26:10 GMT expires: - '-1' pragma: @@ -145,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -165,14 +166,14 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dbd1dda-0d08-4f81-a2ee-f74188cb234a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc8f7162-376c-4777-8212-8abfa0a4c80e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"da1dbd1d-080d-814f-a2ee-f74188cb234a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:28:19.4963025Z\"\n }" + string: "{\n \"name\": \"62718fbc-6c37-7747-8212-8abfa0a4c80e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:26:10.4647954Z\"\n }" headers: cache-control: - no-cache @@ -181,7 +182,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:28:49 GMT + - Fri, 16 Jun 2023 19:26:10 GMT expires: - '-1' pragma: @@ -215,14 +216,14 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dbd1dda-0d08-4f81-a2ee-f74188cb234a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc8f7162-376c-4777-8212-8abfa0a4c80e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"da1dbd1d-080d-814f-a2ee-f74188cb234a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:28:19.4963025Z\"\n }" + string: "{\n \"name\": \"62718fbc-6c37-7747-8212-8abfa0a4c80e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:26:10.4647954Z\"\n }" headers: cache-control: - no-cache @@ -231,7 +232,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:29:19 GMT + - Fri, 16 Jun 2023 19:26:40 GMT expires: - '-1' pragma: @@ -265,14 +266,14 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dbd1dda-0d08-4f81-a2ee-f74188cb234a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc8f7162-376c-4777-8212-8abfa0a4c80e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"da1dbd1d-080d-814f-a2ee-f74188cb234a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:28:19.4963025Z\"\n }" + string: "{\n \"name\": \"62718fbc-6c37-7747-8212-8abfa0a4c80e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:26:10.4647954Z\"\n }" headers: cache-control: - no-cache @@ -281,7 +282,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:29:49 GMT + - Fri, 16 Jun 2023 19:27:11 GMT expires: - '-1' pragma: @@ -315,14 +316,14 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dbd1dda-0d08-4f81-a2ee-f74188cb234a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc8f7162-376c-4777-8212-8abfa0a4c80e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"da1dbd1d-080d-814f-a2ee-f74188cb234a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:28:19.4963025Z\"\n }" + string: "{\n \"name\": \"62718fbc-6c37-7747-8212-8abfa0a4c80e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:26:10.4647954Z\"\n }" headers: cache-control: - no-cache @@ -331,7 +332,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:30:20 GMT + - Fri, 16 Jun 2023 19:27:41 GMT expires: - '-1' pragma: @@ -365,14 +366,14 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dbd1dda-0d08-4f81-a2ee-f74188cb234a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc8f7162-376c-4777-8212-8abfa0a4c80e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"da1dbd1d-080d-814f-a2ee-f74188cb234a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:28:19.4963025Z\"\n }" + string: "{\n \"name\": \"62718fbc-6c37-7747-8212-8abfa0a4c80e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:26:10.4647954Z\"\n }" headers: cache-control: - no-cache @@ -381,7 +382,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:30:49 GMT + - Fri, 16 Jun 2023 19:28:10 GMT expires: - '-1' pragma: @@ -415,14 +416,14 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dbd1dda-0d08-4f81-a2ee-f74188cb234a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc8f7162-376c-4777-8212-8abfa0a4c80e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"da1dbd1d-080d-814f-a2ee-f74188cb234a\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:28:19.4963025Z\"\n }" + string: "{\n \"name\": \"62718fbc-6c37-7747-8212-8abfa0a4c80e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:26:10.4647954Z\"\n }" headers: cache-control: - no-cache @@ -431,7 +432,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:19 GMT + - Fri, 16 Jun 2023 19:28:41 GMT expires: - '-1' pragma: @@ -465,15 +466,15 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/1dbd1dda-0d08-4f81-a2ee-f74188cb234a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/bc8f7162-376c-4777-8212-8abfa0a4c80e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"da1dbd1d-080d-814f-a2ee-f74188cb234a\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:28:19.4963025Z\",\n \"endTime\": - \"2023-03-15T11:31:32.1877123Z\"\n }" + string: "{\n \"name\": \"62718fbc-6c37-7747-8212-8abfa0a4c80e\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T19:26:10.4647954Z\",\n \"\ + endTime\": \"2023-06-16T19:29:00.0258097Z\"\n }" headers: cache-control: - no-cache @@ -482,7 +483,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:50 GMT + - Fri, 16 Jun 2023 19:29:11 GMT expires: - '-1' pragma: @@ -516,64 +517,65 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-rxrx39t4.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-rxrx39t4.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n - \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/556fc8be-6191-4c03-a54f-0f0c25722fca\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8kv9gdo9.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-8kv9gdo9.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ + effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f3e5c751-2003-457a-9e53-d38905ffe2cb\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \ + \ \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3874' + - '4235' content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:50 GMT + - Fri, 16 Jun 2023 19:29:12 GMT expires: - '-1' pragma: @@ -605,34 +607,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '1035' + - '1036' content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:51 GMT + - Fri, 16 Jun 2023 19:29:13 GMT expires: - '-1' pragma: @@ -673,35 +675,36 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n - \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"osSKU\": \"Windows2019\",\n \"nodeImageVersion\": - \"AKSWindows-2019-containerd-17763.4010.230223\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ + ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n\ + \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"\ + provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"\ + Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Windows\",\n \"osSKU\": \"Windows2022\",\n \"nodeImageVersion\"\ + : \"AKSWindows-2022-containerd-gen2-20348.1787.230614\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a9363259-edf9-413b-b400-89c8a31012cc?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/920e689f-a4d2-4625-8c7e-e6c5919a862b?api-version=2016-03-30 cache-control: - no-cache content-length: - - '983' + - '988' content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:54 GMT + - Fri, 16 Jun 2023 19:29:19 GMT expires: - '-1' pragma: @@ -713,7 +716,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 201 message: Created @@ -731,23 +734,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a9363259-edf9-413b-b400-89c8a31012cc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/920e689f-a4d2-4625-8c7e-e6c5919a862b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"593236a9-f9ed-3b41-b400-89c8a31012cc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:31:54.6074582Z\"\n }" + string: "{\n \"name\": \"9f680e92-d2a4-2546-8c7e-e6c5919a862b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:29:20.371575Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:32:24 GMT + - Fri, 16 Jun 2023 19:29:20 GMT expires: - '-1' pragma: @@ -779,23 +782,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a9363259-edf9-413b-b400-89c8a31012cc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/920e689f-a4d2-4625-8c7e-e6c5919a862b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"593236a9-f9ed-3b41-b400-89c8a31012cc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:31:54.6074582Z\"\n }" + string: "{\n \"name\": \"9f680e92-d2a4-2546-8c7e-e6c5919a862b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:29:20.371575Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:32:53 GMT + - Fri, 16 Jun 2023 19:29:50 GMT expires: - '-1' pragma: @@ -827,23 +830,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a9363259-edf9-413b-b400-89c8a31012cc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/920e689f-a4d2-4625-8c7e-e6c5919a862b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"593236a9-f9ed-3b41-b400-89c8a31012cc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:31:54.6074582Z\"\n }" + string: "{\n \"name\": \"9f680e92-d2a4-2546-8c7e-e6c5919a862b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:29:20.371575Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:33:24 GMT + - Fri, 16 Jun 2023 19:30:19 GMT expires: - '-1' pragma: @@ -875,23 +878,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a9363259-edf9-413b-b400-89c8a31012cc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/920e689f-a4d2-4625-8c7e-e6c5919a862b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"593236a9-f9ed-3b41-b400-89c8a31012cc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:31:54.6074582Z\"\n }" + string: "{\n \"name\": \"9f680e92-d2a4-2546-8c7e-e6c5919a862b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:29:20.371575Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:33:54 GMT + - Fri, 16 Jun 2023 19:30:50 GMT expires: - '-1' pragma: @@ -923,23 +926,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a9363259-edf9-413b-b400-89c8a31012cc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/920e689f-a4d2-4625-8c7e-e6c5919a862b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"593236a9-f9ed-3b41-b400-89c8a31012cc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:31:54.6074582Z\"\n }" + string: "{\n \"name\": \"9f680e92-d2a4-2546-8c7e-e6c5919a862b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:29:20.371575Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:34:24 GMT + - Fri, 16 Jun 2023 19:31:20 GMT expires: - '-1' pragma: @@ -971,23 +974,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a9363259-edf9-413b-b400-89c8a31012cc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/920e689f-a4d2-4625-8c7e-e6c5919a862b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"593236a9-f9ed-3b41-b400-89c8a31012cc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:31:54.6074582Z\"\n }" + string: "{\n \"name\": \"9f680e92-d2a4-2546-8c7e-e6c5919a862b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:29:20.371575Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:34:54 GMT + - Fri, 16 Jun 2023 19:31:50 GMT expires: - '-1' pragma: @@ -1019,23 +1022,23 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a9363259-edf9-413b-b400-89c8a31012cc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/920e689f-a4d2-4625-8c7e-e6c5919a862b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"593236a9-f9ed-3b41-b400-89c8a31012cc\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:31:54.6074582Z\"\n }" + string: "{\n \"name\": \"9f680e92-d2a4-2546-8c7e-e6c5919a862b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:29:20.371575Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:35:24 GMT + - Fri, 16 Jun 2023 19:32:20 GMT expires: - '-1' pragma: @@ -1067,24 +1070,312 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a9363259-edf9-413b-b400-89c8a31012cc?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/920e689f-a4d2-4625-8c7e-e6c5919a862b?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"593236a9-f9ed-3b41-b400-89c8a31012cc\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:31:54.6074582Z\",\n \"endTime\": - \"2023-03-15T11:35:29.8513635Z\"\n }" + string: "{\n \"name\": \"9f680e92-d2a4-2546-8c7e-e6c5919a862b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:29:20.371575Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '125' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 19:32:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/920e689f-a4d2-4625-8c7e-e6c5919a862b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9f680e92-d2a4-2546-8c7e-e6c5919a862b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:29:20.371575Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 19:33:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/920e689f-a4d2-4625-8c7e-e6c5919a862b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9f680e92-d2a4-2546-8c7e-e6c5919a862b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:29:20.371575Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 19:33:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/920e689f-a4d2-4625-8c7e-e6c5919a862b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9f680e92-d2a4-2546-8c7e-e6c5919a862b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:29:20.371575Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 19:34:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/920e689f-a4d2-4625-8c7e-e6c5919a862b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9f680e92-d2a4-2546-8c7e-e6c5919a862b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:29:20.371575Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 19:34:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/920e689f-a4d2-4625-8c7e-e6c5919a862b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9f680e92-d2a4-2546-8c7e-e6c5919a862b\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:29:20.371575Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 19:35:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/920e689f-a4d2-4625-8c7e-e6c5919a862b?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"9f680e92-d2a4-2546-8c7e-e6c5919a862b\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T19:29:20.371575Z\",\n \"\ + endTime\": \"2023-06-16T19:35:30.8118675Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' content-type: - application/json date: - - Wed, 15 Mar 2023 11:35:54 GMT + - Fri, 16 Jun 2023 19:35:52 GMT expires: - '-1' pragma: @@ -1116,33 +1407,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n - \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"osSKU\": \"Windows2019\",\n \"nodeImageVersion\": - \"AKSWindows-2019-containerd-17763.4010.230223\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ + ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n\ + \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"\ + provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"\ + Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Windows\",\n \"osSKU\": \"Windows2022\",\n \"nodeImageVersion\"\ + : \"AKSWindows-2022-containerd-gen2-20348.1787.230614\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '984' + - '989' content-type: - application/json date: - - Wed, 15 Mar 2023 11:35:55 GMT + - Fri, 16 Jun 2023 19:35:53 GMT expires: - '-1' pragma: @@ -1174,74 +1466,76 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-rxrx39t4.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-rxrx39t4.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"scaleDownMode\": - \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\": - \"Windows2019\",\n \"nodeImageVersion\": \"AKSWindows-2019-containerd-17763.4010.230223\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n - \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/556fc8be-6191-4c03-a54f-0f0c25722fca\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8kv9gdo9.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-8kv9gdo9.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n },\n \ + \ {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\"\ + : \"Windows2022\",\n \"nodeImageVersion\": \"AKSWindows-2022-containerd-gen2-20348.1787.230614\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ + effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f3e5c751-2003-457a-9e53-d38905ffe2cb\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \ + \ \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4650' + - '5016' content-type: - application/json date: - - Wed, 15 Mar 2023 11:35:55 GMT + - Fri, 16 Jun 2023 19:35:55 GMT expires: - '-1' pragma: @@ -1260,30 +1554,30 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": - "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.24.9", + "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}, {"count": 1, "vmSize": "Standard_D2s_v3", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 30, "osType": - "Windows", "osSKU": "Windows2019", "enableAutoScaling": false, "scaleDownMode": + "Windows", "osSKU": "Windows2022", "enableAutoScaling": false, "scaleDownMode": "Delete", "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "npwin"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": - {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser1", "enableCSIProxy": true, "gmsaProfile": {"enabled": true}}, "servicePrincipalProfile": - {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": - false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": - true, "networkProfile": {"networkPlugin": "azure", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/556fc8be-6191-4c03-a54f-0f0c25722fca"}]}, + {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "enableCSIProxy": + true, "gmsaProfile": {"enabled": true}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "azure", "networkDataplane": "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f3e5c751-2003-457a-9e53-d38905ffe2cb"}]}, "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -1301,84 +1595,86 @@ interactions: Connection: - keep-alive Content-Length: - - '3008' + - '3365' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Upgrading\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-rxrx39t4.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-rxrx39t4.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"scaleDownMode\": - \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\": - \"Windows2019\",\n \"nodeImageVersion\": \"AKSWindows-2019-containerd-17763.4010.230223\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true,\n - \ \"gmsaProfile\": {\n \"enabled\": true,\n \"dnsServer\": \"\",\n - \ \"rootDomainName\": \"\"\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/556fc8be-6191-4c03-a54f-0f0c25722fca\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Upgrading\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8kv9gdo9.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-8kv9gdo9.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n },\n \ + \ {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\"\ + : \"Windows2022\",\n \"nodeImageVersion\": \"AKSWindows-2022-containerd-gen2-20348.1787.230614\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true,\n\ + \ \"gmsaProfile\": {\n \"enabled\": true,\n \"dnsServer\": \"\"\ + ,\n \"rootDomainName\": \"\"\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ + effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f3e5c751-2003-457a-9e53-d38905ffe2cb\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \ + \ \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a70496c3-d9c0-4a50-a8f4-80e62b9e62cb?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4748' + - '5114' content-type: - application/json date: - - Wed, 15 Mar 2023 11:35:58 GMT + - Fri, 16 Jun 2023 19:36:00 GMT expires: - '-1' pragma: @@ -1394,7 +1690,439 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 19:36:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 19:36:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 19:37:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 19:37:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 19:38:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 19:38:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 19:39:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 19:39:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 19:40:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -1412,14 +2140,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a70496c3-d9c0-4a50-a8f4-80e62b9e62cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c39604a7-c0d9-504a-a8f4-80e62b9e62cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:59.5616885Z\"\n }" + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" headers: cache-control: - no-cache @@ -1428,7 +2156,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:36:29 GMT + - Fri, 16 Jun 2023 19:40:32 GMT expires: - '-1' pragma: @@ -1460,14 +2188,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a70496c3-d9c0-4a50-a8f4-80e62b9e62cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c39604a7-c0d9-504a-a8f4-80e62b9e62cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:59.5616885Z\"\n }" + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" headers: cache-control: - no-cache @@ -1476,7 +2204,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:36:59 GMT + - Fri, 16 Jun 2023 19:41:02 GMT expires: - '-1' pragma: @@ -1508,14 +2236,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a70496c3-d9c0-4a50-a8f4-80e62b9e62cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c39604a7-c0d9-504a-a8f4-80e62b9e62cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:59.5616885Z\"\n }" + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" headers: cache-control: - no-cache @@ -1524,7 +2252,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:37:29 GMT + - Fri, 16 Jun 2023 19:41:33 GMT expires: - '-1' pragma: @@ -1556,14 +2284,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a70496c3-d9c0-4a50-a8f4-80e62b9e62cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c39604a7-c0d9-504a-a8f4-80e62b9e62cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:59.5616885Z\"\n }" + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" headers: cache-control: - no-cache @@ -1572,7 +2300,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:37:59 GMT + - Fri, 16 Jun 2023 19:42:04 GMT expires: - '-1' pragma: @@ -1604,14 +2332,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a70496c3-d9c0-4a50-a8f4-80e62b9e62cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c39604a7-c0d9-504a-a8f4-80e62b9e62cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:59.5616885Z\"\n }" + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" headers: cache-control: - no-cache @@ -1620,7 +2348,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:38:29 GMT + - Fri, 16 Jun 2023 19:42:34 GMT expires: - '-1' pragma: @@ -1652,14 +2380,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a70496c3-d9c0-4a50-a8f4-80e62b9e62cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c39604a7-c0d9-504a-a8f4-80e62b9e62cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:59.5616885Z\"\n }" + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" headers: cache-control: - no-cache @@ -1668,7 +2396,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:39:00 GMT + - Fri, 16 Jun 2023 19:43:04 GMT expires: - '-1' pragma: @@ -1700,14 +2428,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a70496c3-d9c0-4a50-a8f4-80e62b9e62cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c39604a7-c0d9-504a-a8f4-80e62b9e62cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:59.5616885Z\"\n }" + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" headers: cache-control: - no-cache @@ -1716,7 +2444,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:39:29 GMT + - Fri, 16 Jun 2023 19:43:34 GMT expires: - '-1' pragma: @@ -1748,14 +2476,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a70496c3-d9c0-4a50-a8f4-80e62b9e62cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c39604a7-c0d9-504a-a8f4-80e62b9e62cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:59.5616885Z\"\n }" + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" headers: cache-control: - no-cache @@ -1764,7 +2492,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:40:00 GMT + - Fri, 16 Jun 2023 19:44:05 GMT expires: - '-1' pragma: @@ -1796,14 +2524,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a70496c3-d9c0-4a50-a8f4-80e62b9e62cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c39604a7-c0d9-504a-a8f4-80e62b9e62cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:59.5616885Z\"\n }" + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" headers: cache-control: - no-cache @@ -1812,7 +2540,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:40:29 GMT + - Fri, 16 Jun 2023 19:44:35 GMT expires: - '-1' pragma: @@ -1844,14 +2572,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a70496c3-d9c0-4a50-a8f4-80e62b9e62cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c39604a7-c0d9-504a-a8f4-80e62b9e62cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:59.5616885Z\"\n }" + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" headers: cache-control: - no-cache @@ -1860,7 +2588,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:41:00 GMT + - Fri, 16 Jun 2023 19:45:05 GMT expires: - '-1' pragma: @@ -1892,14 +2620,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a70496c3-d9c0-4a50-a8f4-80e62b9e62cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c39604a7-c0d9-504a-a8f4-80e62b9e62cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:59.5616885Z\"\n }" + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" headers: cache-control: - no-cache @@ -1908,7 +2636,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:41:29 GMT + - Fri, 16 Jun 2023 19:45:35 GMT expires: - '-1' pragma: @@ -1940,14 +2668,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a70496c3-d9c0-4a50-a8f4-80e62b9e62cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c39604a7-c0d9-504a-a8f4-80e62b9e62cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:59.5616885Z\"\n }" + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" headers: cache-control: - no-cache @@ -1956,7 +2684,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:42:00 GMT + - Fri, 16 Jun 2023 19:46:05 GMT expires: - '-1' pragma: @@ -1988,14 +2716,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a70496c3-d9c0-4a50-a8f4-80e62b9e62cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c39604a7-c0d9-504a-a8f4-80e62b9e62cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:59.5616885Z\"\n }" + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" headers: cache-control: - no-cache @@ -2004,7 +2732,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:42:30 GMT + - Fri, 16 Jun 2023 19:46:35 GMT expires: - '-1' pragma: @@ -2036,14 +2764,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a70496c3-d9c0-4a50-a8f4-80e62b9e62cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c39604a7-c0d9-504a-a8f4-80e62b9e62cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:59.5616885Z\"\n }" + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" headers: cache-control: - no-cache @@ -2052,7 +2780,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:43:00 GMT + - Fri, 16 Jun 2023 19:47:05 GMT expires: - '-1' pragma: @@ -2084,14 +2812,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a70496c3-d9c0-4a50-a8f4-80e62b9e62cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c39604a7-c0d9-504a-a8f4-80e62b9e62cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:59.5616885Z\"\n }" + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" headers: cache-control: - no-cache @@ -2100,7 +2828,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:43:30 GMT + - Fri, 16 Jun 2023 19:47:36 GMT expires: - '-1' pragma: @@ -2132,14 +2860,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a70496c3-d9c0-4a50-a8f4-80e62b9e62cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c39604a7-c0d9-504a-a8f4-80e62b9e62cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:59.5616885Z\"\n }" + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" headers: cache-control: - no-cache @@ -2148,7 +2876,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:44:00 GMT + - Fri, 16 Jun 2023 19:48:06 GMT expires: - '-1' pragma: @@ -2180,14 +2908,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a70496c3-d9c0-4a50-a8f4-80e62b9e62cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c39604a7-c0d9-504a-a8f4-80e62b9e62cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:59.5616885Z\"\n }" + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" headers: cache-control: - no-cache @@ -2196,7 +2924,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:44:30 GMT + - Fri, 16 Jun 2023 19:48:36 GMT expires: - '-1' pragma: @@ -2228,14 +2956,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a70496c3-d9c0-4a50-a8f4-80e62b9e62cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c39604a7-c0d9-504a-a8f4-80e62b9e62cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:59.5616885Z\"\n }" + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" headers: cache-control: - no-cache @@ -2244,7 +2972,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:45:00 GMT + - Fri, 16 Jun 2023 19:49:06 GMT expires: - '-1' pragma: @@ -2276,14 +3004,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a70496c3-d9c0-4a50-a8f4-80e62b9e62cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c39604a7-c0d9-504a-a8f4-80e62b9e62cb\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:35:59.5616885Z\"\n }" + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\"\n }" headers: cache-control: - no-cache @@ -2292,7 +3020,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:45:30 GMT + - Fri, 16 Jun 2023 19:49:37 GMT expires: - '-1' pragma: @@ -2324,15 +3052,15 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/a70496c3-d9c0-4a50-a8f4-80e62b9e62cb?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5872b9ca-1122-468b-9272-984a11f16bfc?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"c39604a7-c0d9-504a-a8f4-80e62b9e62cb\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:35:59.5616885Z\",\n \"endTime\": - \"2023-03-15T11:45:55.3888322Z\"\n }" + string: "{\n \"name\": \"cab97258-2211-8b46-9272-984a11f16bfc\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T19:36:00.0287951Z\",\n \"\ + endTime\": \"2023-06-16T19:49:47.3090717Z\"\n }" headers: cache-control: - no-cache @@ -2341,7 +3069,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:46:00 GMT + - Fri, 16 Jun 2023 19:50:08 GMT expires: - '-1' pragma: @@ -2373,76 +3101,78 @@ interactions: ParameterSetName: - --resource-group --name --enable-windows-gmsa --yes --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-rxrx39t4.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-rxrx39t4.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"scaleDownMode\": - \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\": - \"Windows2019\",\n \"nodeImageVersion\": \"AKSWindows-2019-containerd-17763.4010.230223\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true,\n - \ \"gmsaProfile\": {\n \"enabled\": true,\n \"dnsServer\": \"\",\n - \ \"rootDomainName\": \"\"\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/556fc8be-6191-4c03-a54f-0f0c25722fca\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-8kv9gdo9.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-8kv9gdo9.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n },\n \ + \ {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\"\ + : \"Windows2022\",\n \"nodeImageVersion\": \"AKSWindows-2022-containerd-gen2-20348.1787.230614\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true,\n\ + \ \"gmsaProfile\": {\n \"enabled\": true,\n \"dnsServer\": \"\"\ + ,\n \"rootDomainName\": \"\"\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ + effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f3e5c751-2003-457a-9e53-d38905ffe2cb\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \ + \ \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4748' + - '5114' content-type: - application/json date: - - Wed, 15 Mar 2023 11:46:01 GMT + - Fri, 16 Jun 2023 19:50:09 GMT expires: - '-1' pragma: @@ -2474,46 +3204,47 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n - \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"osSKU\": \"Windows2019\",\n \"nodeImageVersion\": - \"AKSWindows-2019-containerd-17763.4010.230223\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ + ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\"\ + : \"Windows2022\",\n \"nodeImageVersion\": \"AKSWindows-2022-containerd-gen2-20348.1787.230614\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '2084' + - '2090' content-type: - application/json date: - - Wed, 15 Mar 2023 11:46:01 GMT + - Fri, 16 Jun 2023 19:50:12 GMT expires: - '-1' pragma: @@ -2547,8 +3278,8 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-04-01 response: @@ -2556,17 +3287,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/57ce8c7b-7bf4-4fc7-89a5-da179486e22b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/333478c9-5842-4ab7-a2f4-66149283de93?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:46:01 GMT + - Fri, 16 Jun 2023 19:50:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/57ce8c7b-7bf4-4fc7-89a5-da179486e22b?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/333478c9-5842-4ab7-a2f4-66149283de93?api-version=2016-03-30 pragma: - no-cache server: @@ -2576,7 +3307,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14999' status: code: 202 message: Accepted @@ -2596,8 +3327,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -2605,17 +3336,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6cb9f551-857c-44d6-877f-33f2b17b6a12?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4716e71e-a89b-4960-b8af-a7558dd2d3b5?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:46:02 GMT + - Fri, 16 Jun 2023 19:50:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/6cb9f551-857c-44d6-877f-33f2b17b6a12?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/4716e71e-a89b-4960-b8af-a7558dd2d3b5?api-version=2016-03-30 pragma: - no-cache server: @@ -2625,7 +3356,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_windows_password.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_windows_password.yaml old mode 100755 new mode 100644 index bb08ef47943..71ad252e047 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_windows_password.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_windows_password.yaml @@ -15,8 +15,8 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:37:24 GMT + - Fri, 16 Jun 2023 19:50:31 GMT expires: - '-1' pragma: @@ -55,12 +55,11 @@ interactions: "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser1", "adminPassword": "p@0A000003"}, "addonProfiles": {}, "enableRBAC": - true, "networkProfile": {"networkPlugin": "azure", "outboundType": "loadBalancer", - "loadBalancerSku": "standard"}, "disableLocalAccounts": false, "storageProfile": - {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "adminPassword": + "p@0A000003"}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": + "azure", "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": + false, "storageProfile": {}}}' headers: Accept: - application/json @@ -71,7 +70,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1396' + - '1725' Content-Type: - application/json ParameterSetName: @@ -79,61 +78,63 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-bj77729u.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-bj77729u.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n - \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-23dtlguj.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-23dtlguj.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n\ + \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\": [\n \ + \ \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ + \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \ + \ \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/098b9178-6d92-4729-bdab-50b4dc4653c7?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f20d2777-b9ea-4ffb-add1-ce7f4678f606?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3221' + - '3582' content-type: - application/json date: - - Wed, 15 Mar 2023 11:37:28 GMT + - Fri, 16 Jun 2023 19:50:38 GMT expires: - '-1' pragma: @@ -145,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 201 message: Created @@ -165,23 +166,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/098b9178-6d92-4729-bdab-50b4dc4653c7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f20d2777-b9ea-4ffb-add1-ce7f4678f606?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"78918b09-926d-2947-bdab-50b4dc4653c7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:37:29.7807608Z\"\n }" + string: "{\n \"name\": \"77270df2-eab9-fb4f-add1-ce7f4678f606\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:50:38.515323Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:37:59 GMT + - Fri, 16 Jun 2023 19:50:38 GMT expires: - '-1' pragma: @@ -215,23 +216,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/098b9178-6d92-4729-bdab-50b4dc4653c7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f20d2777-b9ea-4ffb-add1-ce7f4678f606?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"78918b09-926d-2947-bdab-50b4dc4653c7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:37:29.7807608Z\"\n }" + string: "{\n \"name\": \"77270df2-eab9-fb4f-add1-ce7f4678f606\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:50:38.515323Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:38:29 GMT + - Fri, 16 Jun 2023 19:51:08 GMT expires: - '-1' pragma: @@ -265,23 +266,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/098b9178-6d92-4729-bdab-50b4dc4653c7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f20d2777-b9ea-4ffb-add1-ce7f4678f606?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"78918b09-926d-2947-bdab-50b4dc4653c7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:37:29.7807608Z\"\n }" + string: "{\n \"name\": \"77270df2-eab9-fb4f-add1-ce7f4678f606\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:50:38.515323Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:38:59 GMT + - Fri, 16 Jun 2023 19:51:38 GMT expires: - '-1' pragma: @@ -315,23 +316,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/098b9178-6d92-4729-bdab-50b4dc4653c7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f20d2777-b9ea-4ffb-add1-ce7f4678f606?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"78918b09-926d-2947-bdab-50b4dc4653c7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:37:29.7807608Z\"\n }" + string: "{\n \"name\": \"77270df2-eab9-fb4f-add1-ce7f4678f606\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:50:38.515323Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:39:30 GMT + - Fri, 16 Jun 2023 19:52:08 GMT expires: - '-1' pragma: @@ -365,23 +366,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/098b9178-6d92-4729-bdab-50b4dc4653c7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f20d2777-b9ea-4ffb-add1-ce7f4678f606?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"78918b09-926d-2947-bdab-50b4dc4653c7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:37:29.7807608Z\"\n }" + string: "{\n \"name\": \"77270df2-eab9-fb4f-add1-ce7f4678f606\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:50:38.515323Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:39:59 GMT + - Fri, 16 Jun 2023 19:52:39 GMT expires: - '-1' pragma: @@ -415,23 +416,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/098b9178-6d92-4729-bdab-50b4dc4653c7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f20d2777-b9ea-4ffb-add1-ce7f4678f606?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"78918b09-926d-2947-bdab-50b4dc4653c7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:37:29.7807608Z\"\n }" + string: "{\n \"name\": \"77270df2-eab9-fb4f-add1-ce7f4678f606\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:50:38.515323Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:40:30 GMT + - Fri, 16 Jun 2023 19:53:09 GMT expires: - '-1' pragma: @@ -465,23 +466,23 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/098b9178-6d92-4729-bdab-50b4dc4653c7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f20d2777-b9ea-4ffb-add1-ce7f4678f606?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"78918b09-926d-2947-bdab-50b4dc4653c7\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:37:29.7807608Z\"\n }" + string: "{\n \"name\": \"77270df2-eab9-fb4f-add1-ce7f4678f606\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:50:38.515323Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '125' content-type: - application/json date: - - Wed, 15 Mar 2023 11:40:59 GMT + - Fri, 16 Jun 2023 19:53:39 GMT expires: - '-1' pragma: @@ -515,24 +516,74 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/098b9178-6d92-4729-bdab-50b4dc4653c7?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f20d2777-b9ea-4ffb-add1-ce7f4678f606?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"78918b09-926d-2947-bdab-50b4dc4653c7\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:37:29.7807608Z\",\n \"endTime\": - \"2023-03-15T11:41:18.6738141Z\"\n }" + string: "{\n \"name\": \"77270df2-eab9-fb4f-add1-ce7f4678f606\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:50:38.515323Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '125' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 19:54:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --dns-name-prefix --node-count --windows-admin-username + --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin + --ssh-key-value + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f20d2777-b9ea-4ffb-add1-ce7f4678f606?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"77270df2-eab9-fb4f-add1-ce7f4678f606\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T19:50:38.515323Z\",\n \"\ + endTime\": \"2023-06-16T19:54:15.4822993Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '169' content-type: - application/json date: - - Wed, 15 Mar 2023 11:41:30 GMT + - Fri, 16 Jun 2023 19:54:39 GMT expires: - '-1' pragma: @@ -566,64 +617,65 @@ interactions: --windows-admin-password --load-balancer-sku --vm-set-type --network-plugin --ssh-key-value User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-bj77729u.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-bj77729u.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n - \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2b91f9e9-fc3b-4506-9bec-e60b053252fd\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-23dtlguj.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-23dtlguj.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ + effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/1d5a19a6-53ff-4bc8-a0ea-eb6435815299\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \ + \ \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '3874' + - '4235' content-type: - application/json date: - - Wed, 15 Mar 2023 11:41:31 GMT + - Fri, 16 Jun 2023 19:54:40 GMT expires: - '-1' pragma: @@ -655,34 +707,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '1035' + - '1036' content-type: - application/json date: - - Wed, 15 Mar 2023 11:41:30 GMT + - Fri, 16 Jun 2023 19:54:42 GMT expires: - '-1' pragma: @@ -723,35 +775,36 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n - \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"osSKU\": \"Windows2019\",\n \"nodeImageVersion\": - \"AKSWindows-2019-containerd-17763.4010.230223\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ + ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n\ + \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"\ + provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"\ + Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Windows\",\n \"osSKU\": \"Windows2022\",\n \"nodeImageVersion\"\ + : \"AKSWindows-2022-containerd-gen2-20348.1787.230614\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9283a77-8225-42f9-824d-288a1ef3fe05?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7701f74-6ce1-40b1-b2a0-44e3f5ebead7?api-version=2016-03-30 cache-control: - no-cache content-length: - - '983' + - '988' content-type: - application/json date: - - Wed, 15 Mar 2023 11:41:34 GMT + - Fri, 16 Jun 2023 19:54:48 GMT expires: - '-1' pragma: @@ -763,7 +816,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 201 message: Created @@ -781,14 +834,206 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7701f74-6ce1-40b1-b2a0-44e3f5ebead7?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"741f70f7-e16c-b140-b2a0-44e3f5ebead7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:54:47.9689768Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 19:54:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7701f74-6ce1-40b1-b2a0-44e3f5ebead7?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"741f70f7-e16c-b140-b2a0-44e3f5ebead7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:54:47.9689768Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 19:55:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7701f74-6ce1-40b1-b2a0-44e3f5ebead7?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"741f70f7-e16c-b140-b2a0-44e3f5ebead7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:54:47.9689768Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 19:55:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7701f74-6ce1-40b1-b2a0-44e3f5ebead7?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"741f70f7-e16c-b140-b2a0-44e3f5ebead7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:54:47.9689768Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 19:56:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks nodepool add + Connection: + - keep-alive + ParameterSetName: + - --resource-group --cluster-name --name --os-type --node-count + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9283a77-8225-42f9-824d-288a1ef3fe05?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7701f74-6ce1-40b1-b2a0-44e3f5ebead7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"773a28b9-2582-f942-824d-288a1ef3fe05\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:41:34.8752626Z\"\n }" + string: "{\n \"name\": \"741f70f7-e16c-b140-b2a0-44e3f5ebead7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:54:47.9689768Z\"\n }" headers: cache-control: - no-cache @@ -797,7 +1042,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:42:04 GMT + - Fri, 16 Jun 2023 19:56:48 GMT expires: - '-1' pragma: @@ -829,14 +1074,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9283a77-8225-42f9-824d-288a1ef3fe05?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7701f74-6ce1-40b1-b2a0-44e3f5ebead7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"773a28b9-2582-f942-824d-288a1ef3fe05\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:41:34.8752626Z\"\n }" + string: "{\n \"name\": \"741f70f7-e16c-b140-b2a0-44e3f5ebead7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:54:47.9689768Z\"\n }" headers: cache-control: - no-cache @@ -845,7 +1090,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:42:34 GMT + - Fri, 16 Jun 2023 19:57:19 GMT expires: - '-1' pragma: @@ -877,14 +1122,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9283a77-8225-42f9-824d-288a1ef3fe05?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7701f74-6ce1-40b1-b2a0-44e3f5ebead7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"773a28b9-2582-f942-824d-288a1ef3fe05\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:41:34.8752626Z\"\n }" + string: "{\n \"name\": \"741f70f7-e16c-b140-b2a0-44e3f5ebead7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:54:47.9689768Z\"\n }" headers: cache-control: - no-cache @@ -893,7 +1138,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:43:04 GMT + - Fri, 16 Jun 2023 19:57:49 GMT expires: - '-1' pragma: @@ -925,14 +1170,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9283a77-8225-42f9-824d-288a1ef3fe05?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7701f74-6ce1-40b1-b2a0-44e3f5ebead7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"773a28b9-2582-f942-824d-288a1ef3fe05\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:41:34.8752626Z\"\n }" + string: "{\n \"name\": \"741f70f7-e16c-b140-b2a0-44e3f5ebead7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:54:47.9689768Z\"\n }" headers: cache-control: - no-cache @@ -941,7 +1186,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:43:35 GMT + - Fri, 16 Jun 2023 19:58:18 GMT expires: - '-1' pragma: @@ -973,14 +1218,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9283a77-8225-42f9-824d-288a1ef3fe05?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7701f74-6ce1-40b1-b2a0-44e3f5ebead7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"773a28b9-2582-f942-824d-288a1ef3fe05\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:41:34.8752626Z\"\n }" + string: "{\n \"name\": \"741f70f7-e16c-b140-b2a0-44e3f5ebead7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:54:47.9689768Z\"\n }" headers: cache-control: - no-cache @@ -989,7 +1234,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:44:04 GMT + - Fri, 16 Jun 2023 19:58:49 GMT expires: - '-1' pragma: @@ -1021,14 +1266,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9283a77-8225-42f9-824d-288a1ef3fe05?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7701f74-6ce1-40b1-b2a0-44e3f5ebead7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"773a28b9-2582-f942-824d-288a1ef3fe05\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:41:34.8752626Z\"\n }" + string: "{\n \"name\": \"741f70f7-e16c-b140-b2a0-44e3f5ebead7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:54:47.9689768Z\"\n }" headers: cache-control: - no-cache @@ -1037,7 +1282,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:44:34 GMT + - Fri, 16 Jun 2023 19:59:20 GMT expires: - '-1' pragma: @@ -1069,14 +1314,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9283a77-8225-42f9-824d-288a1ef3fe05?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7701f74-6ce1-40b1-b2a0-44e3f5ebead7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"773a28b9-2582-f942-824d-288a1ef3fe05\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:41:34.8752626Z\"\n }" + string: "{\n \"name\": \"741f70f7-e16c-b140-b2a0-44e3f5ebead7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:54:47.9689768Z\"\n }" headers: cache-control: - no-cache @@ -1085,7 +1330,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:45:04 GMT + - Fri, 16 Jun 2023 19:59:50 GMT expires: - '-1' pragma: @@ -1117,14 +1362,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9283a77-8225-42f9-824d-288a1ef3fe05?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7701f74-6ce1-40b1-b2a0-44e3f5ebead7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"773a28b9-2582-f942-824d-288a1ef3fe05\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:41:34.8752626Z\"\n }" + string: "{\n \"name\": \"741f70f7-e16c-b140-b2a0-44e3f5ebead7\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T19:54:47.9689768Z\"\n }" headers: cache-control: - no-cache @@ -1133,7 +1378,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:45:34 GMT + - Fri, 16 Jun 2023 20:00:20 GMT expires: - '-1' pragma: @@ -1165,15 +1410,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b9283a77-8225-42f9-824d-288a1ef3fe05?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f7701f74-6ce1-40b1-b2a0-44e3f5ebead7?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"773a28b9-2582-f942-824d-288a1ef3fe05\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:41:34.8752626Z\",\n \"endTime\": - \"2023-03-15T11:45:42.9318327Z\"\n }" + string: "{\n \"name\": \"741f70f7-e16c-b140-b2a0-44e3f5ebead7\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T19:54:47.9689768Z\",\n \"\ + endTime\": \"2023-06-16T20:00:29.2983765Z\"\n }" headers: cache-control: - no-cache @@ -1182,7 +1427,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:46:05 GMT + - Fri, 16 Jun 2023 20:00:51 GMT expires: - '-1' pragma: @@ -1214,33 +1459,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --os-type --node-count User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n - \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Windows\",\n \"osSKU\": \"Windows2019\",\n \"nodeImageVersion\": - \"AKSWindows-2019-containerd-17763.4010.230223\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ + ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n\ + \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"\ + provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"\ + Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Windows\",\n \"osSKU\": \"Windows2022\",\n \"nodeImageVersion\"\ + : \"AKSWindows-2022-containerd-gen2-20348.1787.230614\",\n \"upgradeSettings\"\ + : {},\n \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '984' + - '989' content-type: - application/json date: - - Wed, 15 Mar 2023 11:46:05 GMT + - Fri, 16 Jun 2023 20:00:52 GMT expires: - '-1' pragma: @@ -1272,74 +1518,76 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-bj77729u.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-bj77729u.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"scaleDownMode\": - \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\": - \"Windows2019\",\n \"nodeImageVersion\": \"AKSWindows-2019-containerd-17763.4010.230223\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n - \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2b91f9e9-fc3b-4506-9bec-e60b053252fd\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-23dtlguj.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-23dtlguj.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n },\n \ + \ {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\"\ + : \"Windows2022\",\n \"nodeImageVersion\": \"AKSWindows-2022-containerd-gen2-20348.1787.230614\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ + effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/1d5a19a6-53ff-4bc8-a0ea-eb6435815299\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \ + \ \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4650' + - '5016' content-type: - application/json date: - - Wed, 15 Mar 2023 11:46:06 GMT + - Fri, 16 Jun 2023 20:00:53 GMT expires: - '-1' pragma: @@ -1358,30 +1606,30 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": "cliaksdns000002", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 30, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": - "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.24.9", + "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}, {"count": 1, "vmSize": "Standard_D2s_v3", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 30, "osType": - "Windows", "osSKU": "Windows2019", "enableAutoScaling": false, "scaleDownMode": + "Windows", "osSKU": "Windows2022", "enableAutoScaling": false, "scaleDownMode": "Delete", "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "npwin"}], "linuxProfile": {"adminUsername": "azureuser", "ssh": - {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "windowsProfile": {"adminUsername": - "azureuser1", "adminPassword": "n!C3000004", "enableCSIProxy": true}, "servicePrincipalProfile": - {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": - false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": - true, "networkProfile": {"networkPlugin": "azure", "serviceCidr": "10.0.0.0/16", - "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": - "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": - {"count": 1}, "effectiveOutboundIPs": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2b91f9e9-fc3b-4506-9bec-e60b053252fd"}]}, + {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "windowsProfile": {"adminUsername": "azureuser1", "adminPassword": + "n!C3000004", "enableCSIProxy": true}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "azure", "networkDataplane": "azure", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/1d5a19a6-53ff-4bc8-a0ea-eb6435815299"}]}, "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, @@ -1397,82 +1645,84 @@ interactions: Connection: - keep-alive Content-Length: - - '3005' + - '3362' Content-Type: - application/json ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-bj77729u.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-bj77729u.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"scaleDownMode\": - \"Delete\",\n \"provisioningState\": \"Updating\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\": - \"Windows2019\",\n \"nodeImageVersion\": \"AKSWindows-2019-containerd-17763.4010.230223\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n - \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2b91f9e9-fc3b-4506-9bec-e60b053252fd\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-23dtlguj.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-23dtlguj.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n },\n \ + \ {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\"\ + : \"Windows2022\",\n \"nodeImageVersion\": \"AKSWindows-2022-containerd-gen2-20348.1787.230614\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ + effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/1d5a19a6-53ff-4bc8-a0ea-eb6435815299\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \ + \ \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9ce5bae-1dff-4cac-af5b-96cff069441f?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4647' + - '5013' content-type: - application/json date: - - Wed, 15 Mar 2023 11:46:09 GMT + - Fri, 16 Jun 2023 20:00:59 GMT expires: - '-1' pragma: @@ -1488,7 +1738,391 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --windows-admin-password + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 20:00:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --windows-admin-password + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 20:01:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --windows-admin-password + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 20:01:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --windows-admin-password + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 20:02:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --windows-admin-password + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 20:03:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --windows-admin-password + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 20:03:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --windows-admin-password + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 20:04:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --windows-admin-password + User-Agent: + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '125' + content-type: + - application/json + date: + - Fri, 16 Jun 2023 20:04:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -1506,14 +2140,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9ce5bae-1dff-4cac-af5b-96cff069441f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae5bcec9-ff1d-ac4c-af5b-96cff069441f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:46:09.141721Z\"\n }" + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" headers: cache-control: - no-cache @@ -1522,7 +2156,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:46:39 GMT + - Fri, 16 Jun 2023 20:05:01 GMT expires: - '-1' pragma: @@ -1554,14 +2188,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9ce5bae-1dff-4cac-af5b-96cff069441f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae5bcec9-ff1d-ac4c-af5b-96cff069441f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:46:09.141721Z\"\n }" + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" headers: cache-control: - no-cache @@ -1570,7 +2204,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:47:09 GMT + - Fri, 16 Jun 2023 20:05:31 GMT expires: - '-1' pragma: @@ -1602,14 +2236,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9ce5bae-1dff-4cac-af5b-96cff069441f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae5bcec9-ff1d-ac4c-af5b-96cff069441f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:46:09.141721Z\"\n }" + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" headers: cache-control: - no-cache @@ -1618,7 +2252,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:47:39 GMT + - Fri, 16 Jun 2023 20:06:01 GMT expires: - '-1' pragma: @@ -1650,14 +2284,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9ce5bae-1dff-4cac-af5b-96cff069441f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae5bcec9-ff1d-ac4c-af5b-96cff069441f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:46:09.141721Z\"\n }" + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" headers: cache-control: - no-cache @@ -1666,7 +2300,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:48:09 GMT + - Fri, 16 Jun 2023 20:06:31 GMT expires: - '-1' pragma: @@ -1698,14 +2332,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9ce5bae-1dff-4cac-af5b-96cff069441f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae5bcec9-ff1d-ac4c-af5b-96cff069441f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:46:09.141721Z\"\n }" + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" headers: cache-control: - no-cache @@ -1714,7 +2348,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:48:39 GMT + - Fri, 16 Jun 2023 20:07:01 GMT expires: - '-1' pragma: @@ -1746,14 +2380,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9ce5bae-1dff-4cac-af5b-96cff069441f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae5bcec9-ff1d-ac4c-af5b-96cff069441f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:46:09.141721Z\"\n }" + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" headers: cache-control: - no-cache @@ -1762,7 +2396,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:49:08 GMT + - Fri, 16 Jun 2023 20:07:32 GMT expires: - '-1' pragma: @@ -1794,14 +2428,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9ce5bae-1dff-4cac-af5b-96cff069441f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae5bcec9-ff1d-ac4c-af5b-96cff069441f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:46:09.141721Z\"\n }" + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" headers: cache-control: - no-cache @@ -1810,7 +2444,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:49:39 GMT + - Fri, 16 Jun 2023 20:08:02 GMT expires: - '-1' pragma: @@ -1842,14 +2476,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9ce5bae-1dff-4cac-af5b-96cff069441f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae5bcec9-ff1d-ac4c-af5b-96cff069441f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:46:09.141721Z\"\n }" + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" headers: cache-control: - no-cache @@ -1858,7 +2492,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:50:09 GMT + - Fri, 16 Jun 2023 20:08:32 GMT expires: - '-1' pragma: @@ -1890,14 +2524,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9ce5bae-1dff-4cac-af5b-96cff069441f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae5bcec9-ff1d-ac4c-af5b-96cff069441f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:46:09.141721Z\"\n }" + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" headers: cache-control: - no-cache @@ -1906,7 +2540,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:50:39 GMT + - Fri, 16 Jun 2023 20:09:02 GMT expires: - '-1' pragma: @@ -1938,14 +2572,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9ce5bae-1dff-4cac-af5b-96cff069441f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae5bcec9-ff1d-ac4c-af5b-96cff069441f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:46:09.141721Z\"\n }" + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" headers: cache-control: - no-cache @@ -1954,7 +2588,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:51:09 GMT + - Fri, 16 Jun 2023 20:09:33 GMT expires: - '-1' pragma: @@ -1986,14 +2620,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9ce5bae-1dff-4cac-af5b-96cff069441f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae5bcec9-ff1d-ac4c-af5b-96cff069441f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:46:09.141721Z\"\n }" + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" headers: cache-control: - no-cache @@ -2002,7 +2636,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:51:39 GMT + - Fri, 16 Jun 2023 20:10:03 GMT expires: - '-1' pragma: @@ -2034,14 +2668,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9ce5bae-1dff-4cac-af5b-96cff069441f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae5bcec9-ff1d-ac4c-af5b-96cff069441f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:46:09.141721Z\"\n }" + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" headers: cache-control: - no-cache @@ -2050,7 +2684,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:52:09 GMT + - Fri, 16 Jun 2023 20:10:33 GMT expires: - '-1' pragma: @@ -2082,14 +2716,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9ce5bae-1dff-4cac-af5b-96cff069441f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae5bcec9-ff1d-ac4c-af5b-96cff069441f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:46:09.141721Z\"\n }" + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" headers: cache-control: - no-cache @@ -2098,7 +2732,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:52:40 GMT + - Fri, 16 Jun 2023 20:11:03 GMT expires: - '-1' pragma: @@ -2130,14 +2764,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9ce5bae-1dff-4cac-af5b-96cff069441f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae5bcec9-ff1d-ac4c-af5b-96cff069441f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:46:09.141721Z\"\n }" + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" headers: cache-control: - no-cache @@ -2146,7 +2780,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:53:10 GMT + - Fri, 16 Jun 2023 20:11:33 GMT expires: - '-1' pragma: @@ -2178,14 +2812,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9ce5bae-1dff-4cac-af5b-96cff069441f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae5bcec9-ff1d-ac4c-af5b-96cff069441f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:46:09.141721Z\"\n }" + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" headers: cache-control: - no-cache @@ -2194,7 +2828,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:53:40 GMT + - Fri, 16 Jun 2023 20:12:03 GMT expires: - '-1' pragma: @@ -2226,14 +2860,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9ce5bae-1dff-4cac-af5b-96cff069441f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae5bcec9-ff1d-ac4c-af5b-96cff069441f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:46:09.141721Z\"\n }" + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" headers: cache-control: - no-cache @@ -2242,7 +2876,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:54:09 GMT + - Fri, 16 Jun 2023 20:12:34 GMT expires: - '-1' pragma: @@ -2274,14 +2908,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9ce5bae-1dff-4cac-af5b-96cff069441f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae5bcec9-ff1d-ac4c-af5b-96cff069441f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:46:09.141721Z\"\n }" + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" headers: cache-control: - no-cache @@ -2290,7 +2924,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:54:40 GMT + - Fri, 16 Jun 2023 20:13:04 GMT expires: - '-1' pragma: @@ -2322,14 +2956,14 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9ce5bae-1dff-4cac-af5b-96cff069441f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae5bcec9-ff1d-ac4c-af5b-96cff069441f\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:46:09.141721Z\"\n }" + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\"\n }" headers: cache-control: - no-cache @@ -2338,7 +2972,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:55:10 GMT + - Fri, 16 Jun 2023 20:13:34 GMT expires: - '-1' pragma: @@ -2370,15 +3004,15 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c9ce5bae-1dff-4cac-af5b-96cff069441f?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/729c6f38-1797-4bd2-8a42-6ca2b7bf536f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"ae5bcec9-ff1d-ac4c-af5b-96cff069441f\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:46:09.141721Z\",\n \"endTime\": - \"2023-03-15T11:55:39.4542319Z\"\n }" + string: "{\n \"name\": \"386f9c72-9717-d24b-8a42-6ca2b7bf536f\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T20:00:58.579142Z\",\n \"\ + endTime\": \"2023-06-16T20:13:58.6232763Z\"\n }" headers: cache-control: - no-cache @@ -2387,7 +3021,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:55:40 GMT + - Fri, 16 Jun 2023 20:14:05 GMT expires: - '-1' pragma: @@ -2419,74 +3053,76 @@ interactions: ParameterSetName: - --resource-group --name --windows-admin-password User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-bj77729u.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliaksdns000002-bj77729u.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n - \ \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n },\n {\n \"name\": \"npwin\",\n \"count\": - 1,\n \"vmSize\": \"Standard_D2s_v3\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": - \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \"scaleDownMode\": - \"Delete\",\n \"provisioningState\": \"Succeeded\",\n \"powerState\": - {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n - \ \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\": - \"Windows2019\",\n \"nodeImageVersion\": \"AKSWindows-2019-containerd-17763.4010.230223\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n - \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": - {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\": - {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n - \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n - \ },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n - \ \"enableRBAC\": true,\n \"networkProfile\": {\n \"networkPlugin\": - \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": - {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": - [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/2b91f9e9-fc3b-4506-9bec-e60b053252fd\"\n - \ }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": - \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": - \"loadBalancer\",\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n - \ \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliaksdns000002\",\n \"fqdn\": \"cliaksdns000002-23dtlguj.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliaksdns000002-23dtlguj.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n },\n \ + \ {\n \"name\": \"npwin\",\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\"\ + : \"Windows2022\",\n \"nodeImageVersion\": \"AKSWindows-2022-containerd-gen2-20348.1787.230614\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"windowsProfile\"\ + : {\n \"adminUsername\": \"azureuser1\",\n \"enableCSIProxy\": true\n\ + \ },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\ + \n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"azure\",\n \"networkDataplane\"\ + : \"azure\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\"\ + : {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"\ + effectiveOutboundIPs\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/1d5a19a6-53ff-4bc8-a0ea-eb6435815299\"\ + \n }\n ]\n },\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\"\ + : \"10.0.0.10\",\n \"outboundType\": \"loadBalancer\",\n \"serviceCidrs\"\ + : [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n\ + \ ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\": {\n \ + \ \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4650' + - '5016' content-type: - application/json date: - - Wed, 15 Mar 2023 11:55:40 GMT + - Fri, 16 Jun 2023 20:14:06 GMT expires: - '-1' pragma: @@ -2518,46 +3154,47 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.24.9\",\n \"currentOrchestratorVersion\": \"1.24.9\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n - \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\",\n - \ \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Windows\",\n \"osSKU\": \"Windows2019\",\n \"nodeImageVersion\": - \"AKSWindows-2019-containerd-17763.4010.230223\",\n \"upgradeSettings\": - {},\n \"enableFIPS\": false\n }\n }\n ]\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n },\n\ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin\"\ + ,\n \"name\": \"npwin\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_D2s_v3\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 30,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\"\ + ,\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \ + \ \"code\": \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\"\ + ,\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Windows\",\n \"osSKU\"\ + : \"Windows2022\",\n \"nodeImageVersion\": \"AKSWindows-2022-containerd-gen2-20348.1787.230614\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '2084' + - '2090' content-type: - application/json date: - - Wed, 15 Mar 2023 11:55:41 GMT + - Fri, 16 Jun 2023 20:14:06 GMT expires: - '-1' pragma: @@ -2591,8 +3228,8 @@ interactions: ParameterSetName: - --resource-group --cluster-name --name --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/npwin?api-version=2023-04-01 response: @@ -2600,17 +3237,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/4fe6d39e-c83c-4118-b391-6b4553535075?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/5d749a3d-2185-4055-bbe2-c1cc0c57ee79?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:55:41 GMT + - Fri, 16 Jun 2023 20:14:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/4fe6d39e-c83c-4118-b391-6b4553535075?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/5d749a3d-2185-4055-bbe2-c1cc0c57ee79?api-version=2016-03-30 pragma: - no-cache server: @@ -2620,7 +3257,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14999' status: code: 202 message: Accepted @@ -2640,8 +3277,8 @@ interactions: ParameterSetName: - -g -n --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -2649,17 +3286,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/cf933562-6f96-48e4-a3ff-950caa602ce0?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/c8d88694-c8f1-438d-84f2-666b51bd4224?api-version=2016-03-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 15 Mar 2023 11:55:42 GMT + - Fri, 16 Jun 2023 20:14:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/cf933562-6f96-48e4-a3ff-950caa602ce0?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operationresults/c8d88694-c8f1-438d-84f2-666b51bd4224?api-version=2016-03-30 pragma: - no-cache server: @@ -2669,7 +3306,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14988' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_workload_identity.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_workload_identity.yaml index b8265e0e37f..ccc403e50bc 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_workload_identity.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_update_with_workload_identity.yaml @@ -14,8 +14,8 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 07:56:38 GMT + - Fri, 16 Jun 2023 20:14:20 GMT expires: - '-1' pragma: @@ -46,21 +46,20 @@ interactions: code: 404 message: Not Found - request: - body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestjljknpmb2-79a739", + body: '{"location": "centraluseuap", "identity": {"type": "SystemAssigned"}, "properties": + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest22d6y6qui-8ecadf", "agentPoolProfiles": [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1APSwd4b1Nkvz51SaXAa9Qt6nJuyUA9Xq177Bnl0ldJ+XenW2Ky/LHLiDGTam878w1O77kkcxMke4q9eNPAhklDKeGdKz66Wvjyci79CMwcrAg7d1xf87JK9s/O+qYslgfvXG57jrZOBHGZaxR3rQfMsp//epA6RUh/VCiDs1KYGlvumo9zjsETFUWk2OSoN9Hk+/zIEGzvdCbgcsbdI2IrAaTq1BS6KF5/DfzYb4PlsDh6PfZnwPzYuXfDOMULsSECcuu10OiOT7hMG64Smd6RNVDcPol1qp8AnT8CU63deGR8hw9TcBByq986re8UAv9gph+tzhP4yvcGy/mMGP - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "oidcIssuerProfile": - {"enabled": true}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", - "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "standard"}, "disableLocalAccounts": false, "securityProfile": {"workloadIdentity": - {"enabled": false}}, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "oidcIssuerProfile": {"enabled": + true}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": + "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", + "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": + false, "storageProfile": {}}}' headers: AKSHTTPCustomFeatures: - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview @@ -73,70 +72,71 @@ interactions: Connection: - keep-alive Content-Length: - - '1560' + - '1797' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestjljknpmb2-79a739\",\n \"fqdn\": \"cliakstest-clitestjljknpmb2-79a739-ew5hvs8o.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestjljknpmb2-79a739-ew5hvs8o.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1APSwd4b1Nkvz51SaXAa9Qt6nJuyUA9Xq177Bnl0ldJ+XenW2Ky/LHLiDGTam878w1O77kkcxMke4q9eNPAhklDKeGdKz66Wvjyci79CMwcrAg7d1xf87JK9s/O+qYslgfvXG57jrZOBHGZaxR3rQfMsp//epA6RUh/VCiDs1KYGlvumo9zjsETFUWk2OSoN9Hk+/zIEGzvdCbgcsbdI2IrAaTq1BS6KF5/DfzYb4PlsDh6PfZnwPzYuXfDOMULsSECcuu10OiOT7hMG64Smd6RNVDcPol1qp8AnT8CU63deGR8hw9TcBByq986re8UAv9gph+tzhP4yvcGy/mMGP - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"workloadIdentity\": {\n \"enabled\": false\n }\n },\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n - \ \"issuerURL\": \"https://westus2.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/3c4e26f4-18d8-4467-9f60-d6ae6d73afb4/\"\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest22d6y6qui-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest22d6y6qui-8ecadf-72vwiliv.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest22d6y6qui-8ecadf-72vwiliv.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n \"issuerURL\"\ + : \"https://centraluseuap.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/d9d04d25-5e2b-4bc3-89c2-0b7f8a1bdcda/\"\ + \n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ceffd6e-95d2-40b5-9f9e-3f93d9321569?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/23db4d11-22dc-4540-97b1-6ec598a52707?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3459' + - '3759' content-type: - application/json date: - - Wed, 29 Mar 2023 07:56:44 GMT + - Fri, 16 Jun 2023 20:14:25 GMT expires: - '-1' pragma: @@ -148,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -167,14 +167,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ceffd6e-95d2-40b5-9f9e-3f93d9321569?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/23db4d11-22dc-4540-97b1-6ec598a52707?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6efdef3c-d295-b540-9f9e-3f93d9321569\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:44.2558761Z\"\n }" + string: "{\n \"name\": \"114ddb23-dc22-4045-97b1-6ec598a52707\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:14:25.3394606Z\"\n }" headers: cache-control: - no-cache @@ -183,7 +183,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 07:57:14 GMT + - Fri, 16 Jun 2023 20:14:25 GMT expires: - '-1' pragma: @@ -216,14 +216,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ceffd6e-95d2-40b5-9f9e-3f93d9321569?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/23db4d11-22dc-4540-97b1-6ec598a52707?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6efdef3c-d295-b540-9f9e-3f93d9321569\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:44.2558761Z\"\n }" + string: "{\n \"name\": \"114ddb23-dc22-4045-97b1-6ec598a52707\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:14:25.3394606Z\"\n }" headers: cache-control: - no-cache @@ -232,7 +232,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 07:57:44 GMT + - Fri, 16 Jun 2023 20:14:56 GMT expires: - '-1' pragma: @@ -265,14 +265,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ceffd6e-95d2-40b5-9f9e-3f93d9321569?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/23db4d11-22dc-4540-97b1-6ec598a52707?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6efdef3c-d295-b540-9f9e-3f93d9321569\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:44.2558761Z\"\n }" + string: "{\n \"name\": \"114ddb23-dc22-4045-97b1-6ec598a52707\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:14:25.3394606Z\"\n }" headers: cache-control: - no-cache @@ -281,7 +281,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 07:58:13 GMT + - Fri, 16 Jun 2023 20:15:25 GMT expires: - '-1' pragma: @@ -314,14 +314,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ceffd6e-95d2-40b5-9f9e-3f93d9321569?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/23db4d11-22dc-4540-97b1-6ec598a52707?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6efdef3c-d295-b540-9f9e-3f93d9321569\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:44.2558761Z\"\n }" + string: "{\n \"name\": \"114ddb23-dc22-4045-97b1-6ec598a52707\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:14:25.3394606Z\"\n }" headers: cache-control: - no-cache @@ -330,7 +330,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 07:58:44 GMT + - Fri, 16 Jun 2023 20:15:55 GMT expires: - '-1' pragma: @@ -363,14 +363,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ceffd6e-95d2-40b5-9f9e-3f93d9321569?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/23db4d11-22dc-4540-97b1-6ec598a52707?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6efdef3c-d295-b540-9f9e-3f93d9321569\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:44.2558761Z\"\n }" + string: "{\n \"name\": \"114ddb23-dc22-4045-97b1-6ec598a52707\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:14:25.3394606Z\"\n }" headers: cache-control: - no-cache @@ -379,7 +379,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 07:59:14 GMT + - Fri, 16 Jun 2023 20:16:25 GMT expires: - '-1' pragma: @@ -412,14 +412,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ceffd6e-95d2-40b5-9f9e-3f93d9321569?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/23db4d11-22dc-4540-97b1-6ec598a52707?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6efdef3c-d295-b540-9f9e-3f93d9321569\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:44.2558761Z\"\n }" + string: "{\n \"name\": \"114ddb23-dc22-4045-97b1-6ec598a52707\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:14:25.3394606Z\"\n }" headers: cache-control: - no-cache @@ -428,7 +428,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 07:59:44 GMT + - Fri, 16 Jun 2023 20:16:55 GMT expires: - '-1' pragma: @@ -461,14 +461,14 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ceffd6e-95d2-40b5-9f9e-3f93d9321569?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/23db4d11-22dc-4540-97b1-6ec598a52707?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6efdef3c-d295-b540-9f9e-3f93d9321569\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:44.2558761Z\"\n }" + string: "{\n \"name\": \"114ddb23-dc22-4045-97b1-6ec598a52707\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:14:25.3394606Z\"\n }" headers: cache-control: - no-cache @@ -477,7 +477,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 08:00:14 GMT + - Fri, 16 Jun 2023 20:17:25 GMT expires: - '-1' pragma: @@ -510,23 +510,24 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ceffd6e-95d2-40b5-9f9e-3f93d9321569?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/23db4d11-22dc-4540-97b1-6ec598a52707?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6efdef3c-d295-b540-9f9e-3f93d9321569\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:44.2558761Z\"\n }" + string: "{\n \"name\": \"114ddb23-dc22-4045-97b1-6ec598a52707\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T20:14:25.3394606Z\",\n \"\ + endTime\": \"2023-06-16T20:17:56.3279723Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '170' content-type: - application/json date: - - Wed, 29 Mar 2023 08:00:44 GMT + - Fri, 16 Jun 2023 20:17:56 GMT expires: - '-1' pragma: @@ -559,23 +560,67 @@ interactions: - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer --ssh-key-value --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ceffd6e-95d2-40b5-9f9e-3f93d9321569?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"6efdef3c-d295-b540-9f9e-3f93d9321569\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:44.2558761Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest22d6y6qui-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest22d6y6qui-8ecadf-72vwiliv.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest22d6y6qui-8ecadf-72vwiliv.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/f3b8d704-8c4e-464b-8165-a0b66c17f31e\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n \"issuerURL\"\ + : \"https://centraluseuap.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/d9d04d25-5e2b-4bc3-89c2-0b7f8a1bdcda/\"\ + \n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '4424' content-type: - application/json date: - - Wed, 29 Mar 2023 08:01:14 GMT + - Fri, 16 Jun 2023 20:17:57 GMT expires: - '-1' pragma: @@ -597,83 +642,77 @@ interactions: body: null headers: Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer - --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ceffd6e-95d2-40b5-9f9e-3f93d9321569?api-version=2016-03-30 - response: - body: - string: "{\n \"name\": \"6efdef3c-d295-b540-9f9e-3f93d9321569\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:44.2558761Z\"\n }" - headers: - cache-control: - - no-cache - content-length: - - '126' - content-type: - application/json - date: - - Wed, 29 Mar 2023 08:01:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer - --ssh-key-value --aks-custom-headers + - --resource-group --name --enable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ceffd6e-95d2-40b5-9f9e-3f93d9321569?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"6efdef3c-d295-b540-9f9e-3f93d9321569\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:44.2558761Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest22d6y6qui-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest22d6y6qui-8ecadf-72vwiliv.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest22d6y6qui-8ecadf-72vwiliv.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/f3b8d704-8c4e-464b-8165-a0b66c17f31e\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n \"issuerURL\"\ + : \"https://centraluseuap.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/d9d04d25-5e2b-4bc3-89c2-0b7f8a1bdcda/\"\ + \n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '126' + - '4424' content-type: - application/json date: - - Wed, 29 Mar 2023 08:02:14 GMT + - Fri, 16 Jun 2023 20:17:58 GMT expires: - '-1' pragma: @@ -692,37 +731,111 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "centraluseuap", "sku": {"name": "Base", "tier": "Free"}, + "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": + "1.25.6", "dnsPrefix": "cliakstest-clitest22d6y6qui-8ecadf", "agentPoolProfiles": + [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": + "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": + "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": + "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": + {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "oidcIssuerProfile": {"enabled": true}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_centraluseuap", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/f3b8d704-8c4e-464b-8165-a0b66c17f31e"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false, "securityProfile": {"workloadIdentity": {"enabled": + true}}, "storageProfile": {}, "workloadAutoScalerProfile": {}}}' headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive + Content-Length: + - '2872' + Content-Type: + - application/json ParameterSetName: - - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer - --ssh-key-value --aks-custom-headers + - --resource-group --name --enable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ceffd6e-95d2-40b5-9f9e-3f93d9321569?api-version=2016-03-30 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"6efdef3c-d295-b540-9f9e-3f93d9321569\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:44.2558761Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest22d6y6qui-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest22d6y6qui-8ecadf-72vwiliv.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest22d6y6qui-8ecadf-72vwiliv.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/f3b8d704-8c4e-464b-8165-a0b66c17f31e\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"workloadIdentity\": {\n \"\ + enabled\": true\n }\n },\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n \"issuerURL\"\ + : \"https://centraluseuap.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/d9d04d25-5e2b-4bc3-89c2-0b7f8a1bdcda/\"\ + \n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/bcabd567-8f08-498d-8843-f9d4da820c14?api-version=2016-03-30 cache-control: - no-cache content-length: - - '126' + - '4479' content-type: - application/json date: - - Wed, 29 Mar 2023 08:02:45 GMT + - Fri, 16 Jun 2023 20:18:01 GMT expires: - '-1' pragma: @@ -737,6 +850,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -748,21 +863,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer - --ssh-key-value --aks-custom-headers + - --resource-group --name --enable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ceffd6e-95d2-40b5-9f9e-3f93d9321569?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/bcabd567-8f08-498d-8843-f9d4da820c14?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6efdef3c-d295-b540-9f9e-3f93d9321569\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:44.2558761Z\"\n }" + string: "{\n \"name\": \"67d5abbc-088f-8d49-8843-f9d4da820c14\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:18:01.5143246Z\"\n }" headers: cache-control: - no-cache @@ -771,7 +885,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 08:03:15 GMT + - Fri, 16 Jun 2023 20:18:01 GMT expires: - '-1' pragma: @@ -797,21 +911,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer - --ssh-key-value --aks-custom-headers + - --resource-group --name --enable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ceffd6e-95d2-40b5-9f9e-3f93d9321569?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/bcabd567-8f08-498d-8843-f9d4da820c14?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6efdef3c-d295-b540-9f9e-3f93d9321569\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:44.2558761Z\"\n }" + string: "{\n \"name\": \"67d5abbc-088f-8d49-8843-f9d4da820c14\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:18:01.5143246Z\"\n }" headers: cache-control: - no-cache @@ -820,7 +933,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 08:03:45 GMT + - Fri, 16 Jun 2023 20:18:31 GMT expires: - '-1' pragma: @@ -846,21 +959,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer - --ssh-key-value --aks-custom-headers + - --resource-group --name --enable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ceffd6e-95d2-40b5-9f9e-3f93d9321569?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/bcabd567-8f08-498d-8843-f9d4da820c14?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6efdef3c-d295-b540-9f9e-3f93d9321569\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T07:56:44.2558761Z\"\n }" + string: "{\n \"name\": \"67d5abbc-088f-8d49-8843-f9d4da820c14\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:18:01.5143246Z\"\n }" headers: cache-control: - no-cache @@ -869,7 +981,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 08:04:15 GMT + - Fri, 16 Jun 2023 20:19:02 GMT expires: - '-1' pragma: @@ -895,31 +1007,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create + - aks update Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer - --ssh-key-value --aks-custom-headers + - --resource-group --name --enable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/3ceffd6e-95d2-40b5-9f9e-3f93d9321569?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/bcabd567-8f08-498d-8843-f9d4da820c14?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"6efdef3c-d295-b540-9f9e-3f93d9321569\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-29T07:56:44.2558761Z\",\n \"endTime\": - \"2023-03-29T08:04:39.1691439Z\"\n }" + string: "{\n \"code\": \"EntityStoreOperationError\",\n \"message\": \"Failed\ + \ to get subscription 8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8. A database operation\ + \ failed. Please retry later. If this error persists, contact AKS support.\"\ + \n }" headers: cache-control: - no-cache + connection: + - close content-length: - - '170' + - '217' content-type: - application/json date: - - Wed, 29 Mar 2023 08:04:44 GMT + - Fri, 16 Jun 2023 20:19:35 GMT expires: - '-1' pragma: @@ -928,15 +1042,13 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-failure-cause: + - service status: - code: 200 - message: OK + code: 500 + message: Internal Server Error - request: body: null headers: @@ -945,164 +1057,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - aks create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --enable-managed-identity --enable-oidc-issuer - --ssh-key-value --aks-custom-headers - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestjljknpmb2-79a739\",\n \"fqdn\": \"cliakstest-clitestjljknpmb2-79a739-ew5hvs8o.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestjljknpmb2-79a739-ew5hvs8o.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1APSwd4b1Nkvz51SaXAa9Qt6nJuyUA9Xq177Bnl0ldJ+XenW2Ky/LHLiDGTam878w1O77kkcxMke4q9eNPAhklDKeGdKz66Wvjyci79CMwcrAg7d1xf87JK9s/O+qYslgfvXG57jrZOBHGZaxR3rQfMsp//epA6RUh/VCiDs1KYGlvumo9zjsETFUWk2OSoN9Hk+/zIEGzvdCbgcsbdI2IrAaTq1BS6KF5/DfzYb4PlsDh6PfZnwPzYuXfDOMULsSECcuu10OiOT7hMG64Smd6RNVDcPol1qp8AnT8CU63deGR8hw9TcBByq986re8UAv9gph+tzhP4yvcGy/mMGP - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f5d879cc-ca0b-4862-bfee-298f1dd7bdf9\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"workloadIdentity\": {\n \"enabled\": false\n }\n },\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n - \ \"issuerURL\": \"https://westus2.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/3c4e26f4-18d8-4467-9f60-d6ae6d73afb4/\"\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" - headers: - cache-control: - - no-cache - content-length: - - '4112' - content-type: - - application/json - date: - - Wed, 29 Mar 2023 08:04:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - aks update Connection: - keep-alive ParameterSetName: - --resource-group --name --enable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/bcabd567-8f08-498d-8843-f9d4da820c14?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestjljknpmb2-79a739\",\n \"fqdn\": \"cliakstest-clitestjljknpmb2-79a739-ew5hvs8o.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestjljknpmb2-79a739-ew5hvs8o.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1APSwd4b1Nkvz51SaXAa9Qt6nJuyUA9Xq177Bnl0ldJ+XenW2Ky/LHLiDGTam878w1O77kkcxMke4q9eNPAhklDKeGdKz66Wvjyci79CMwcrAg7d1xf87JK9s/O+qYslgfvXG57jrZOBHGZaxR3rQfMsp//epA6RUh/VCiDs1KYGlvumo9zjsETFUWk2OSoN9Hk+/zIEGzvdCbgcsbdI2IrAaTq1BS6KF5/DfzYb4PlsDh6PfZnwPzYuXfDOMULsSECcuu10OiOT7hMG64Smd6RNVDcPol1qp8AnT8CU63deGR8hw9TcBByq986re8UAv9gph+tzhP4yvcGy/mMGP - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f5d879cc-ca0b-4862-bfee-298f1dd7bdf9\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"workloadIdentity\": {\n \"enabled\": false\n }\n },\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n - \ \"issuerURL\": \"https://westus2.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/3c4e26f4-18d8-4467-9f60-d6ae6d73afb4/\"\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"67d5abbc-088f-8d49-8843-f9d4da820c14\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:18:01.5143246Z\"\n }" headers: cache-control: - no-cache content-length: - - '4112' + - '126' content-type: - application/json date: - - Wed, 29 Mar 2023 08:04:46 GMT + - Fri, 16 Jun 2023 20:19:36 GMT expires: - '-1' pragma: @@ -1121,108 +1098,36 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestjljknpmb2-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": - "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": - "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": - false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": - false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1APSwd4b1Nkvz51SaXAa9Qt6nJuyUA9Xq177Bnl0ldJ+XenW2Ky/LHLiDGTam878w1O77kkcxMke4q9eNPAhklDKeGdKz66Wvjyci79CMwcrAg7d1xf87JK9s/O+qYslgfvXG57jrZOBHGZaxR3rQfMsp//epA6RUh/VCiDs1KYGlvumo9zjsETFUWk2OSoN9Hk+/zIEGzvdCbgcsbdI2IrAaTq1BS6KF5/DfzYb4PlsDh6PfZnwPzYuXfDOMULsSECcuu10OiOT7hMG64Smd6RNVDcPol1qp8AnT8CU63deGR8hw9TcBByq986re8UAv9gph+tzhP4yvcGy/mMGP - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, - "oidcIssuerProfile": {"enabled": true}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f5d879cc-ca0b-4862-bfee-298f1dd7bdf9"}]}, - "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": - ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", - "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "securityProfile": {"workloadIdentity": {"enabled": - true}}, "storageProfile": {}, "workloadAutoScalerProfile": {}}}' + body: null headers: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks update Connection: - keep-alive - Content-Length: - - '2519' - Content-Type: - - application/json ParameterSetName: - --resource-group --name --enable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/bcabd567-8f08-498d-8843-f9d4da820c14?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestjljknpmb2-79a739\",\n \"fqdn\": \"cliakstest-clitestjljknpmb2-79a739-ew5hvs8o.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestjljknpmb2-79a739-ew5hvs8o.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1APSwd4b1Nkvz51SaXAa9Qt6nJuyUA9Xq177Bnl0ldJ+XenW2Ky/LHLiDGTam878w1O77kkcxMke4q9eNPAhklDKeGdKz66Wvjyci79CMwcrAg7d1xf87JK9s/O+qYslgfvXG57jrZOBHGZaxR3rQfMsp//epA6RUh/VCiDs1KYGlvumo9zjsETFUWk2OSoN9Hk+/zIEGzvdCbgcsbdI2IrAaTq1BS6KF5/DfzYb4PlsDh6PfZnwPzYuXfDOMULsSECcuu10OiOT7hMG64Smd6RNVDcPol1qp8AnT8CU63deGR8hw9TcBByq986re8UAv9gph+tzhP4yvcGy/mMGP - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f5d879cc-ca0b-4862-bfee-298f1dd7bdf9\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"workloadIdentity\": {\n \"enabled\": true\n }\n },\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n - \ \"issuerURL\": \"https://westus2.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/3c4e26f4-18d8-4467-9f60-d6ae6d73afb4/\"\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"67d5abbc-088f-8d49-8843-f9d4da820c14\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:18:01.5143246Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b3115df4-8667-4483-8ea2-3d4e252c0226?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4109' + - '126' content-type: - application/json date: - - Wed, 29 Mar 2023 08:04:50 GMT + - Fri, 16 Jun 2023 20:20:06 GMT expires: - '-1' pragma: @@ -1237,8 +1142,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: code: 200 message: OK @@ -1256,14 +1159,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b3115df4-8667-4483-8ea2-3d4e252c0226?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/bcabd567-8f08-498d-8843-f9d4da820c14?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f45d11b3-6786-8344-8ea2-3d4e252c0226\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T08:04:50.2103308Z\"\n }" + string: "{\n \"name\": \"67d5abbc-088f-8d49-8843-f9d4da820c14\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:18:01.5143246Z\"\n }" headers: cache-control: - no-cache @@ -1272,7 +1175,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 08:05:20 GMT + - Fri, 16 Jun 2023 20:20:36 GMT expires: - '-1' pragma: @@ -1304,23 +1207,24 @@ interactions: ParameterSetName: - --resource-group --name --enable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b3115df4-8667-4483-8ea2-3d4e252c0226?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/bcabd567-8f08-498d-8843-f9d4da820c14?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f45d11b3-6786-8344-8ea2-3d4e252c0226\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T08:04:50.2103308Z\"\n }" + string: "{\n \"name\": \"67d5abbc-088f-8d49-8843-f9d4da820c14\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T20:18:01.5143246Z\",\n \"\ + endTime\": \"2023-06-16T20:20:38.3539104Z\"\n }" headers: cache-control: - no-cache content-length: - - '126' + - '170' content-type: - application/json date: - - Wed, 29 Mar 2023 08:05:49 GMT + - Fri, 16 Jun 2023 20:21:07 GMT expires: - '-1' pragma: @@ -1352,24 +1256,68 @@ interactions: ParameterSetName: - --resource-group --name --enable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b3115df4-8667-4483-8ea2-3d4e252c0226?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"f45d11b3-6786-8344-8ea2-3d4e252c0226\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-29T08:04:50.2103308Z\",\n \"endTime\": - \"2023-03-29T08:06:10.2218825Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest22d6y6qui-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest22d6y6qui-8ecadf-72vwiliv.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest22d6y6qui-8ecadf-72vwiliv.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/f3b8d704-8c4e-464b-8165-a0b66c17f31e\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"workloadIdentity\": {\n \"\ + enabled\": true\n }\n },\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n \"issuerURL\"\ + : \"https://centraluseuap.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/d9d04d25-5e2b-4bc3-89c2-0b7f8a1bdcda/\"\ + \n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '170' + - '4481' content-type: - application/json date: - - Wed, 29 Mar 2023 08:06:20 GMT + - Fri, 16 Jun 2023 20:21:07 GMT expires: - '-1' pragma: @@ -1391,7 +1339,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1399,68 +1347,70 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --enable-workload-identity --aks-custom-headers + - --resource-group --name --disable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestjljknpmb2-79a739\",\n \"fqdn\": \"cliakstest-clitestjljknpmb2-79a739-ew5hvs8o.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestjljknpmb2-79a739-ew5hvs8o.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1APSwd4b1Nkvz51SaXAa9Qt6nJuyUA9Xq177Bnl0ldJ+XenW2Ky/LHLiDGTam878w1O77kkcxMke4q9eNPAhklDKeGdKz66Wvjyci79CMwcrAg7d1xf87JK9s/O+qYslgfvXG57jrZOBHGZaxR3rQfMsp//epA6RUh/VCiDs1KYGlvumo9zjsETFUWk2OSoN9Hk+/zIEGzvdCbgcsbdI2IrAaTq1BS6KF5/DfzYb4PlsDh6PfZnwPzYuXfDOMULsSECcuu10OiOT7hMG64Smd6RNVDcPol1qp8AnT8CU63deGR8hw9TcBByq986re8UAv9gph+tzhP4yvcGy/mMGP - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f5d879cc-ca0b-4862-bfee-298f1dd7bdf9\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"workloadIdentity\": {\n \"enabled\": true\n }\n },\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n - \ \"issuerURL\": \"https://westus2.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/3c4e26f4-18d8-4467-9f60-d6ae6d73afb4/\"\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest22d6y6qui-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest22d6y6qui-8ecadf-72vwiliv.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest22d6y6qui-8ecadf-72vwiliv.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/f3b8d704-8c4e-464b-8165-a0b66c17f31e\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"workloadIdentity\": {\n \"\ + enabled\": true\n }\n },\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n \"issuerURL\"\ + : \"https://centraluseuap.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/d9d04d25-5e2b-4bc3-89c2-0b7f8a1bdcda/\"\ + \n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4111' + - '4481' content-type: - application/json date: - - Wed, 29 Mar 2023 08:06:20 GMT + - Fri, 16 Jun 2023 20:21:09 GMT expires: - '-1' pragma: @@ -1479,8 +1429,32 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "centraluseuap", "sku": {"name": "Base", "tier": "Free"}, + "identity": {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": + "1.25.6", "dnsPrefix": "cliakstest-clitest22d6y6qui-8ecadf", "agentPoolProfiles": + [{"count": 3, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": + "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": + "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": + "System", "orchestratorVersion": "1.25.6", "upgradeSettings": {}, "powerState": + {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": + false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], + "linuxProfile": {"adminUsername": "azureuser", "ssh": {"publicKeys": [{"keyData": + "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, + "oidcIssuerProfile": {"enabled": true}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_centraluseuap", + "enableRBAC": true, "supportPlan": "KubernetesOfficial", "networkProfile": {"networkPlugin": + "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": + "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", + "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/f3b8d704-8c4e-464b-8165-a0b66c17f31e"}]}, + "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": + ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", + "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, + "disableLocalAccounts": false, "securityProfile": {"workloadIdentity": {"enabled": + false}}, "storageProfile": {}, "workloadAutoScalerProfile": {}}}' headers: + AKSHTTPCustomFeatures: + - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - application/json Accept-Encoding: @@ -1489,69 +1463,77 @@ interactions: - aks update Connection: - keep-alive + Content-Length: + - '2873' + Content-Type: + - application/json ParameterSetName: - --resource-group --name --disable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestjljknpmb2-79a739\",\n \"fqdn\": \"cliakstest-clitestjljknpmb2-79a739-ew5hvs8o.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestjljknpmb2-79a739-ew5hvs8o.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1APSwd4b1Nkvz51SaXAa9Qt6nJuyUA9Xq177Bnl0ldJ+XenW2Ky/LHLiDGTam878w1O77kkcxMke4q9eNPAhklDKeGdKz66Wvjyci79CMwcrAg7d1xf87JK9s/O+qYslgfvXG57jrZOBHGZaxR3rQfMsp//epA6RUh/VCiDs1KYGlvumo9zjsETFUWk2OSoN9Hk+/zIEGzvdCbgcsbdI2IrAaTq1BS6KF5/DfzYb4PlsDh6PfZnwPzYuXfDOMULsSECcuu10OiOT7hMG64Smd6RNVDcPol1qp8AnT8CU63deGR8hw9TcBByq986re8UAv9gph+tzhP4yvcGy/mMGP - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f5d879cc-ca0b-4862-bfee-298f1dd7bdf9\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"workloadIdentity\": {\n \"enabled\": true\n }\n },\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n - \ \"issuerURL\": \"https://westus2.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/3c4e26f4-18d8-4467-9f60-d6ae6d73afb4/\"\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest22d6y6qui-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest22d6y6qui-8ecadf-72vwiliv.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest22d6y6qui-8ecadf-72vwiliv.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Updating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/f3b8d704-8c4e-464b-8165-a0b66c17f31e\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"workloadIdentity\": {\n \"\ + enabled\": false\n }\n },\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n \"issuerURL\"\ + : \"https://centraluseuap.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/d9d04d25-5e2b-4bc3-89c2-0b7f8a1bdcda/\"\ + \n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/2ed1cd3b-d7bf-4cc0-82c4-14a506d7d7ee?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4111' + - '4480' content-type: - application/json date: - - Wed, 29 Mar 2023 08:06:21 GMT + - Fri, 16 Jun 2023 20:21:13 GMT expires: - '-1' pragma: @@ -1566,112 +1548,42 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestjljknpmb2-79a739", "agentPoolProfiles": [{"count": 3, "vmSize": - "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": - "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": - false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": - false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": - false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1APSwd4b1Nkvz51SaXAa9Qt6nJuyUA9Xq177Bnl0ldJ+XenW2Ky/LHLiDGTam878w1O77kkcxMke4q9eNPAhklDKeGdKz66Wvjyci79CMwcrAg7d1xf87JK9s/O+qYslgfvXG57jrZOBHGZaxR3rQfMsp//epA6RUh/VCiDs1KYGlvumo9zjsETFUWk2OSoN9Hk+/zIEGzvdCbgcsbdI2IrAaTq1BS6KF5/DfzYb4PlsDh6PfZnwPzYuXfDOMULsSECcuu10OiOT7hMG64Smd6RNVDcPol1qp8AnT8CU63deGR8hw9TcBByq986re8UAv9gph+tzhP4yvcGy/mMGP - azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, - "oidcIssuerProfile": {"enabled": true}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", - "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": - "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", - "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": - "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f5d879cc-ca0b-4862-bfee-298f1dd7bdf9"}]}, - "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": - ["IPv4"]}, "identityProfile": {"kubeletidentity": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool", - "clientId":"00000000-0000-0000-0000-000000000001", "objectId":"00000000-0000-0000-0000-000000000001"}}, - "disableLocalAccounts": false, "securityProfile": {"workloadIdentity": {"enabled": - false}}, "storageProfile": {}, "workloadAutoScalerProfile": {}}}' + body: null headers: - AKSHTTPCustomFeatures: - - Microsoft.ContainerService/EnableWorkloadIdentityPreview,Microsoft.ContainerService/EnableOIDCIssuerPreview Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - aks update Connection: - keep-alive - Content-Length: - - '2520' - Content-Type: - - application/json ParameterSetName: - --resource-group --name --disable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/2ed1cd3b-d7bf-4cc0-82c4-14a506d7d7ee?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestjljknpmb2-79a739\",\n \"fqdn\": \"cliakstest-clitestjljknpmb2-79a739-ew5hvs8o.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestjljknpmb2-79a739-ew5hvs8o.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1APSwd4b1Nkvz51SaXAa9Qt6nJuyUA9Xq177Bnl0ldJ+XenW2Ky/LHLiDGTam878w1O77kkcxMke4q9eNPAhklDKeGdKz66Wvjyci79CMwcrAg7d1xf87JK9s/O+qYslgfvXG57jrZOBHGZaxR3rQfMsp//epA6RUh/VCiDs1KYGlvumo9zjsETFUWk2OSoN9Hk+/zIEGzvdCbgcsbdI2IrAaTq1BS6KF5/DfzYb4PlsDh6PfZnwPzYuXfDOMULsSECcuu10OiOT7hMG64Smd6RNVDcPol1qp8AnT8CU63deGR8hw9TcBByq986re8UAv9gph+tzhP4yvcGy/mMGP - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f5d879cc-ca0b-4862-bfee-298f1dd7bdf9\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"workloadIdentity\": {\n \"enabled\": false\n }\n },\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n - \ \"issuerURL\": \"https://westus2.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/3c4e26f4-18d8-4467-9f60-d6ae6d73afb4/\"\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"3bcdd12e-bfd7-c04c-82c4-14a506d7d7ee\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:21:12.9032828Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6586369c-851a-4c2e-a102-90350b009e90?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4110' + - '126' content-type: - application/json date: - - Wed, 29 Mar 2023 08:06:25 GMT + - Fri, 16 Jun 2023 20:21:13 GMT expires: - '-1' pragma: @@ -1686,8 +1598,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: code: 200 message: OK @@ -1705,14 +1615,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6586369c-851a-4c2e-a102-90350b009e90?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/2ed1cd3b-d7bf-4cc0-82c4-14a506d7d7ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9c368665-1a85-2e4c-a102-90350b009e90\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T08:06:25.0397638Z\"\n }" + string: "{\n \"name\": \"3bcdd12e-bfd7-c04c-82c4-14a506d7d7ee\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:21:12.9032828Z\"\n }" headers: cache-control: - no-cache @@ -1721,7 +1631,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 08:06:54 GMT + - Fri, 16 Jun 2023 20:21:43 GMT expires: - '-1' pragma: @@ -1753,14 +1663,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6586369c-851a-4c2e-a102-90350b009e90?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/2ed1cd3b-d7bf-4cc0-82c4-14a506d7d7ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9c368665-1a85-2e4c-a102-90350b009e90\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T08:06:25.0397638Z\"\n }" + string: "{\n \"name\": \"3bcdd12e-bfd7-c04c-82c4-14a506d7d7ee\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:21:12.9032828Z\"\n }" headers: cache-control: - no-cache @@ -1769,7 +1679,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 08:07:25 GMT + - Fri, 16 Jun 2023 20:22:13 GMT expires: - '-1' pragma: @@ -1801,14 +1711,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6586369c-851a-4c2e-a102-90350b009e90?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/2ed1cd3b-d7bf-4cc0-82c4-14a506d7d7ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9c368665-1a85-2e4c-a102-90350b009e90\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-29T08:06:25.0397638Z\"\n }" + string: "{\n \"name\": \"3bcdd12e-bfd7-c04c-82c4-14a506d7d7ee\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:21:12.9032828Z\"\n }" headers: cache-control: - no-cache @@ -1817,7 +1727,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 08:07:55 GMT + - Fri, 16 Jun 2023 20:22:43 GMT expires: - '-1' pragma: @@ -1849,15 +1759,15 @@ interactions: ParameterSetName: - --resource-group --name --disable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/6586369c-851a-4c2e-a102-90350b009e90?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/centraluseuap/operations/2ed1cd3b-d7bf-4cc0-82c4-14a506d7d7ee?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"9c368665-1a85-2e4c-a102-90350b009e90\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-29T08:06:25.0397638Z\",\n \"endTime\": - \"2023-03-29T08:08:02.0276894Z\"\n }" + string: "{\n \"name\": \"3bcdd12e-bfd7-c04c-82c4-14a506d7d7ee\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T20:21:12.9032828Z\",\n \"\ + endTime\": \"2023-06-16T20:23:03.5039052Z\"\n }" headers: cache-control: - no-cache @@ -1866,7 +1776,7 @@ interactions: content-type: - application/json date: - - Wed, 29 Mar 2023 08:08:25 GMT + - Fri, 16 Jun 2023 20:23:13 GMT expires: - '-1' pragma: @@ -1898,66 +1808,68 @@ interactions: ParameterSetName: - --resource-group --name --disable-workload-identity --aks-custom-headers User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/22.0.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestjljknpmb2-79a739\",\n \"fqdn\": \"cliakstest-clitestjljknpmb2-79a739-ew5hvs8o.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestjljknpmb2-79a739-ew5hvs8o.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-202303.06.0\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1APSwd4b1Nkvz51SaXAa9Qt6nJuyUA9Xq177Bnl0ldJ+XenW2Ky/LHLiDGTam878w1O77kkcxMke4q9eNPAhklDKeGdKz66Wvjyci79CMwcrAg7d1xf87JK9s/O+qYslgfvXG57jrZOBHGZaxR3rQfMsp//epA6RUh/VCiDs1KYGlvumo9zjsETFUWk2OSoN9Hk+/zIEGzvdCbgcsbdI2IrAaTq1BS6KF5/DfzYb4PlsDh6PfZnwPzYuXfDOMULsSECcuu10OiOT7hMG64Smd6RNVDcPol1qp8AnT8CU63deGR8hw9TcBByq986re8UAv9gph+tzhP4yvcGy/mMGP - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/f5d879cc-ca0b-4862-bfee-298f1dd7bdf9\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {\n \"workloadIdentity\": {\n \"enabled\": false\n }\n },\n \"storageProfile\": - {\n \"diskCSIDriver\": {\n \"enabled\": true\n },\n \"fileCSIDriver\": - {\n \"enabled\": true\n },\n \"snapshotController\": {\n \"enabled\": - true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n - \ \"issuerURL\": \"https://westus2.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/3c4e26f4-18d8-4467-9f60-d6ae6d73afb4/\"\n - \ },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": - \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"centraluseuap\",\n \"name\": \"cliakstest000001\",\n\ + \ \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"\ + code\": \"Running\"\n },\n \"kubernetesVersion\": \"1.25.6\",\n \"currentKubernetesVersion\"\ + : \"1.25.6\",\n \"dnsPrefix\": \"cliakstest-clitest22d6y6qui-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest22d6y6qui-8ecadf-72vwiliv.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest22d6y6qui-8ecadf-72vwiliv.portal.hcp.centraluseuap.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 3,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.25.6\",\n \"currentOrchestratorVersion\": \"1.25.6\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.07.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_centraluseuap\"\ + ,\n \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n\ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.Network/publicIPAddresses/f3b8d704-8c4e-464b-8165-a0b66c17f31e\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_centraluseuap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {\n \"workloadIdentity\": {\n \"\ + enabled\": false\n }\n },\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": true,\n \"issuerURL\"\ + : \"https://centraluseuap.oic.prod-aks.azure.com/72f988bf-86f1-41af-91ab-2d7cd011db47/d9d04d25-5e2b-4bc3-89c2-0b7f8a1bdcda/\"\ + \n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \ + \ \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4112' + - '4482' content-type: - application/json date: - - Wed, 29 Mar 2023 08:08:25 GMT + - Fri, 16 Jun 2023 20:23:13 GMT expires: - '-1' pragma: @@ -1976,4 +1888,3 @@ interactions: code: 200 message: OK version: 1 - diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_upgrade_kubernetes_version_nodepool.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_upgrade_kubernetes_version_nodepool.yaml old mode 100755 new mode 100644 index 944d8b8e6e6..40e071076b1 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_upgrade_kubernetes_version_nodepool.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_aks_upgrade_kubernetes_version_nodepool.yaml @@ -13,54 +13,36 @@ interactions: ParameterSetName: - -l --query User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators?api-version=2019-04-01&resource-type=managedClusters + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/kubernetesVersions?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/orchestrators\",\n - \ \"name\": \"default\",\n \"type\": \"Microsoft.ContainerService/locations/orchestrators\",\n - \ \"properties\": {\n \"orchestrators\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.23.12\",\n \"upgrades\": - [\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.9\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.23.15\",\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.24.6\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.24.6\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\"\n },\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.5\"\n }\n ]\n - \ },\n {\n \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.24.9\",\n \"default\": true,\n \"upgrades\": [\n {\n \"orchestratorType\": - \"Kubernetes\",\n \"orchestratorVersion\": \"1.25.4\"\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.4\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.25.5\"\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.26.0\",\n \"isPreview\": true\n - \ }\n ]\n },\n {\n \"orchestratorType\": \"Kubernetes\",\n - \ \"orchestratorVersion\": \"1.25.5\",\n \"upgrades\": [\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n },\n {\n - \ \"orchestratorType\": \"Kubernetes\",\n \"orchestratorVersion\": - \"1.26.0\",\n \"isPreview\": true\n }\n ]\n }\n }" + string: "{\n \"values\": [\n {\n \"version\": \"1.25\",\n \"capabilities\"\ + : {\n \"supportPlan\": [\n \"KubernetesOfficial\"\n ]\n },\n\ + \ \"patchVersions\": {\n \"1.25.5\": {\n \"upgrades\": [\n \ + \ \"1.25.6\",\n \"1.26.0\",\n \"1.26.3\"\n ]\n },\n\ + \ \"1.25.6\": {\n \"upgrades\": [\n \"1.26.0\",\n \"\ + 1.26.3\"\n ]\n }\n }\n },\n {\n \"version\": \"1.26\",\n\ + \ \"capabilities\": {\n \"supportPlan\": [\n \"KubernetesOfficial\"\ + \n ]\n },\n \"patchVersions\": {\n \"1.26.0\": {\n \"upgrades\"\ + : [\n \"1.26.3\"\n ]\n },\n \"1.26.3\": {\n \"upgrades\"\ + : []\n }\n }\n },\n {\n \"version\": \"1.24\",\n \"capabilities\"\ + : {\n \"supportPlan\": [\n \"KubernetesOfficial\"\n ]\n },\n\ + \ \"patchVersions\": {\n \"1.24.10\": {\n \"upgrades\": [\n \ + \ \"1.25.6\",\n \"1.25.5\"\n ]\n },\n \"1.24.9\": {\n\ + \ \"upgrades\": [\n \"1.25.6\",\n \"1.24.10\",\n \"\ + 1.25.5\"\n ]\n }\n }\n }\n ]\n }" headers: cache-control: - no-cache content-length: - - '2410' + - '957' content-type: - application/json date: - - Wed, 15 Mar 2023 11:30:49 GMT + - Fri, 16 Jun 2023 20:23:18 GMT expires: - '-1' pragma: @@ -93,8 +75,8 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: @@ -110,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:30:49 GMT + - Fri, 16 Jun 2023 20:23:18 GMT expires: - '-1' pragma: @@ -139,21 +121,21 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.16 (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T11:30:48Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_aks_upgrade_kubernetes_version_nodepool","date":"2023-06-16T20:23:16Z","module":"acs"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '374' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:30:49 GMT + - Fri, 16 Jun 2023 20:23:18 GMT expires: - '-1' pragma: @@ -169,19 +151,18 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "1.26.0", "dnsPrefix": "cliakstest-clitestwpjuigsos-79a739", + {"kubernetesVersion": "1.26.3", "dnsPrefix": "cliakstest-clitest5ng7x5jyb-8ecadf", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", - "mode": "System", "orchestratorVersion": "1.26.0", "upgradeSettings": {}, "enableNodePublicIP": + "mode": "System", "orchestratorVersion": "1.26.3", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, - "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": - "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", - "outboundType": "loadBalancer", "loadBalancerSku": "standard"}, "disableLocalAccounts": - false, "storageProfile": {}}}' + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ== + test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": + {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", + "dnsServiceIP": "10.0.0.10", "outboundType": "loadBalancer", "loadBalancerSku": + "standard"}, "disableLocalAccounts": false, "storageProfile": {}}}' headers: Accept: - application/json @@ -192,68 +173,70 @@ interactions: Connection: - keep-alive Content-Length: - - '1471' + - '1763' Content-Type: - application/json ParameterSetName: - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.26.0\",\n \"currentKubernetesVersion\": \"1.26.0\",\n \"dnsPrefix\": - \"cliakstest-clitestwpjuigsos-79a739\",\n \"fqdn\": \"cliakstest-clitestwpjuigsos-79a739-zmchhhdq.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwpjuigsos-79a739-zmchhhdq.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.26.0\",\n \"currentOrchestratorVersion\": - \"1.26.0\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": - [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n - \ },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.26.3\",\n \"currentKubernetesVersion\"\ + : \"1.26.3\",\n \"dnsPrefix\": \"cliakstest-clitest5ng7x5jyb-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest5ng7x5jyb-8ecadf-3xrq3st9.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest5ng7x5jyb-8ecadf-3xrq3st9.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Creating\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.26.3\",\n \"currentOrchestratorVersion\": \"1.26.3\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\"\ + ,\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\"\ + ,\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\ + \n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d48101f0-a258-496d-8a6b-882f59dcb3d8?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95b75310-de0d-4712-ade8-831dfeb7a965?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3268' + - '3596' content-type: - application/json date: - - Wed, 15 Mar 2023 11:30:52 GMT + - Fri, 16 Jun 2023 20:23:25 GMT expires: - '-1' pragma: @@ -265,7 +248,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -284,14 +267,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d48101f0-a258-496d-8a6b-882f59dcb3d8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95b75310-de0d-4712-ade8-831dfeb7a965?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f00181d4-58a2-6d49-8a6b-882f59dcb3d8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:30:52.7477151Z\"\n }" + string: "{\n \"name\": \"1053b795-0dde-1247-ade8-831dfeb7a965\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:23:25.8793952Z\"\n }" headers: cache-control: - no-cache @@ -300,7 +283,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:22 GMT + - Fri, 16 Jun 2023 20:23:26 GMT expires: - '-1' pragma: @@ -333,14 +316,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d48101f0-a258-496d-8a6b-882f59dcb3d8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95b75310-de0d-4712-ade8-831dfeb7a965?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f00181d4-58a2-6d49-8a6b-882f59dcb3d8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:30:52.7477151Z\"\n }" + string: "{\n \"name\": \"1053b795-0dde-1247-ade8-831dfeb7a965\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:23:25.8793952Z\"\n }" headers: cache-control: - no-cache @@ -349,7 +332,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:31:52 GMT + - Fri, 16 Jun 2023 20:23:56 GMT expires: - '-1' pragma: @@ -382,14 +365,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d48101f0-a258-496d-8a6b-882f59dcb3d8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95b75310-de0d-4712-ade8-831dfeb7a965?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f00181d4-58a2-6d49-8a6b-882f59dcb3d8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:30:52.7477151Z\"\n }" + string: "{\n \"name\": \"1053b795-0dde-1247-ade8-831dfeb7a965\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:23:25.8793952Z\"\n }" headers: cache-control: - no-cache @@ -398,7 +381,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:32:22 GMT + - Fri, 16 Jun 2023 20:24:26 GMT expires: - '-1' pragma: @@ -431,14 +414,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d48101f0-a258-496d-8a6b-882f59dcb3d8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95b75310-de0d-4712-ade8-831dfeb7a965?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f00181d4-58a2-6d49-8a6b-882f59dcb3d8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:30:52.7477151Z\"\n }" + string: "{\n \"name\": \"1053b795-0dde-1247-ade8-831dfeb7a965\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:23:25.8793952Z\"\n }" headers: cache-control: - no-cache @@ -447,7 +430,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:32:52 GMT + - Fri, 16 Jun 2023 20:24:56 GMT expires: - '-1' pragma: @@ -480,14 +463,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d48101f0-a258-496d-8a6b-882f59dcb3d8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95b75310-de0d-4712-ade8-831dfeb7a965?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f00181d4-58a2-6d49-8a6b-882f59dcb3d8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:30:52.7477151Z\"\n }" + string: "{\n \"name\": \"1053b795-0dde-1247-ade8-831dfeb7a965\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:23:25.8793952Z\"\n }" headers: cache-control: - no-cache @@ -496,7 +479,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:33:23 GMT + - Fri, 16 Jun 2023 20:25:27 GMT expires: - '-1' pragma: @@ -529,14 +512,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d48101f0-a258-496d-8a6b-882f59dcb3d8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95b75310-de0d-4712-ade8-831dfeb7a965?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f00181d4-58a2-6d49-8a6b-882f59dcb3d8\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:30:52.7477151Z\"\n }" + string: "{\n \"name\": \"1053b795-0dde-1247-ade8-831dfeb7a965\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:23:25.8793952Z\"\n }" headers: cache-control: - no-cache @@ -545,7 +528,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:33:52 GMT + - Fri, 16 Jun 2023 20:25:57 GMT expires: - '-1' pragma: @@ -578,24 +561,23 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d48101f0-a258-496d-8a6b-882f59dcb3d8?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95b75310-de0d-4712-ade8-831dfeb7a965?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f00181d4-58a2-6d49-8a6b-882f59dcb3d8\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:30:52.7477151Z\",\n \"endTime\": - \"2023-03-15T11:34:14.6131005Z\"\n }" + string: "{\n \"name\": \"1053b795-0dde-1247-ade8-831dfeb7a965\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:23:25.8793952Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Wed, 15 Mar 2023 11:34:23 GMT + - Fri, 16 Jun 2023 20:26:27 GMT expires: - '-1' pragma: @@ -628,64 +610,24 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/95b75310-de0d-4712-ade8-831dfeb7a965?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\",\n - \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": - \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.26.0\",\n \"currentKubernetesVersion\": \"1.26.0\",\n \"dnsPrefix\": - \"cliakstest-clitestwpjuigsos-79a739\",\n \"fqdn\": \"cliakstest-clitestwpjuigsos-79a739-zmchhhdq.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestwpjuigsos-79a739-zmchhhdq.portal.hcp.westus2.azmk8s.io\",\n - \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": - 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": - \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n - \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n - \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.26.0\",\n \"currentOrchestratorVersion\": - \"1.26.0\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n - \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n - \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": - \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob - azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": - {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": - \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/c8399399-a779-457b-a093-2673420d4b02\"\n - \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": - \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": - \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": - [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n - \ ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": - 100,\n \"identityProfile\": {\n \"kubeletidentity\": {\n \"resourceId\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\",\n - \ \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\":\"00000000-0000-0000-0000-000000000001\"\n - \ }\n },\n \"disableLocalAccounts\": false,\n \"securityProfile\": - {},\n \"storageProfile\": {\n \"diskCSIDriver\": {\n \"enabled\": - true\n },\n \"fileCSIDriver\": {\n \"enabled\": true\n },\n \"snapshotController\": - {\n \"enabled\": true\n }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": - false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": - {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n - \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + string: "{\n \"name\": \"1053b795-0dde-1247-ade8-831dfeb7a965\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T20:23:25.8793952Z\",\n \"\ + endTime\": \"2023-06-16T20:26:47.2294202Z\"\n }" headers: cache-control: - no-cache content-length: - - '3921' + - '170' content-type: - application/json date: - - Wed, 15 Mar 2023 11:34:23 GMT + - Fri, 16 Jun 2023 20:26:57 GMT expires: - '-1' pragma: @@ -707,44 +649,77 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - aks nodepool add + - aks create Connection: - keep-alive ParameterSetName: - - --resource-group --cluster-name -n --node-count --kubernetes-version + - --resource-group --name --vm-set-type --node-count --ssh-key-value --kubernetes-version + -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\",\n - \ \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\",\n - \ \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.26.0\",\n \"currentOrchestratorVersion\": \"1.26.0\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n - \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\": - \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n - \ \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n ]\n - }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001\"\ + ,\n \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\"\ + : \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"kubernetesVersion\": \"1.26.3\",\n \"currentKubernetesVersion\"\ + : \"1.26.3\",\n \"dnsPrefix\": \"cliakstest-clitest5ng7x5jyb-8ecadf\",\n\ + \ \"fqdn\": \"cliakstest-clitest5ng7x5jyb-8ecadf-3xrq3st9.hcp.westus2.azmk8s.io\"\ + ,\n \"azurePortalFQDN\": \"cliakstest-clitest5ng7x5jyb-8ecadf-3xrq3st9.portal.hcp.westus2.azmk8s.io\"\ + ,\n \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \ + \ \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\"\ + : 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\"\ + ,\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n \ + \ \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.26.3\",\n \"currentOrchestratorVersion\": \"1.26.3\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n ],\n\ + \ \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\"\ + : {\n \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\ + \ test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\"\ + : {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \ + \ \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n\ + \ \"enableRBAC\": true,\n \"supportPlan\": \"KubernetesOfficial\",\n \ + \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\"\ + : \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\"\ + : {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n \ + \ {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/318bd3bb-6d16-4a83-b536-8e271a6c5f57\"\ + \n }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\"\ + : \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"outboundType\"\ + : \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n\ + \ \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\"\ + : [\n \"IPv4\"\n ]\n },\n \"maxAgentPools\": 100,\n \"identityProfile\"\ + : {\n \"kubeletidentity\": {\n \"resourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliakstest000001-agentpool\"\ + ,\n \"clientId\":\"00000000-0000-0000-0000-000000000001\",\n \"objectId\"\ + :\"00000000-0000-0000-0000-000000000001\"\n }\n },\n \"disableLocalAccounts\"\ + : false,\n \"securityProfile\": {},\n \"storageProfile\": {\n \"diskCSIDriver\"\ + : {\n \"enabled\": true\n },\n \"fileCSIDriver\": {\n \"enabled\"\ + : true\n },\n \"snapshotController\": {\n \"enabled\": true\n \ + \ }\n },\n \"oidcIssuerProfile\": {\n \"enabled\": false\n },\n\ + \ \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\"\ + : \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\"\ + ,\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\"\ + : {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '1036' + - '4249' content-type: - application/json date: - - Wed, 15 Mar 2023 11:34:23 GMT + - Fri, 16 Jun 2023 20:26:57 GMT expires: - '-1' pragma: @@ -762,78 +737,11 @@ interactions: status: code: 200 message: OK -- request: - body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": - 0, "osType": "Linux", "enableAutoScaling": false, "scaleDownMode": "Delete", - "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.25.5", - "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", - "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], - "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - aks nodepool add - Connection: - - keep-alive - Content-Length: - - '472' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --cluster-name -n --node-count --kubernetes-version - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2023-04-01 - response: - body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\",\n - \ \"name\": \"c000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.25.5\",\n \"currentOrchestratorVersion\": \"1.25.5\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/77528ef6-1270-482c-9bcb-f5a6ef749c89?api-version=2016-03-30 - cache-control: - - no-cache - content-length: - - '976' - content-type: - - application/json - date: - - Wed, 15 Mar 2023 11:34:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1189' - status: - code: 201 - message: Created - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -843,23 +751,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --node-count --kubernetes-version User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/77528ef6-1270-482c-9bcb-f5a6ef749c89?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"f68e5277-7012-2c48-9bcb-f5a6ef749c89\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:34:27.5613172Z\"\n }" + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/nodepool1\"\ + ,\n \"name\": \"nodepool1\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"\ + kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"provisioningState\": \"Succeeded\"\ + ,\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\"\ + : \"1.26.3\",\n \"currentOrchestratorVersion\": \"1.26.3\",\n \"enableNodePublicIP\"\ + : false,\n \"mode\": \"System\",\n \"enableEncryptionAtHost\": false,\n\ + \ \"enableUltraSSD\": false,\n \"osType\": \"Linux\",\n \"osSKU\"\ + : \"Ubuntu\",\n \"nodeImageVersion\": \"AKSUbuntu-2204gen2containerd-202306.01.0\"\ + ,\n \"upgradeSettings\": {},\n \"enableFIPS\": false\n }\n }\n\ + \ ]\n }" headers: cache-control: - no-cache content-length: - - '126' + - '1037' content-type: - application/json date: - - Wed, 15 Mar 2023 11:34:57 GMT + - Fri, 16 Jun 2023 20:26:59 GMT expires: - '-1' pragma: @@ -878,36 +797,58 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": + 0, "osType": "Linux", "enableAutoScaling": false, "scaleDownMode": "Delete", + "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.25.6", + "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", + "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], + "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - aks nodepool add Connection: - keep-alive + Content-Length: + - '472' + Content-Type: + - application/json ParameterSetName: - --resource-group --cluster-name -n --node-count --kubernetes-version User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/77528ef6-1270-482c-9bcb-f5a6ef749c89?api-version=2016-03-30 + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2023-04-01 response: body: - string: "{\n \"name\": \"f68e5277-7012-2c48-9bcb-f5a6ef749c89\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:34:27.5613172Z\"\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\"\ + ,\n \"name\": \"c000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d255400a-830c-423f-91dd-d2c987f2c8dd?api-version=2016-03-30 cache-control: - no-cache content-length: - - '126' + - '977' content-type: - application/json date: - - Wed, 15 Mar 2023 11:35:26 GMT + - Fri, 16 Jun 2023 20:27:04 GMT expires: - '-1' pragma: @@ -916,15 +857,13 @@ interactions: - nginx strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -939,14 +878,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --node-count --kubernetes-version User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/77528ef6-1270-482c-9bcb-f5a6ef749c89?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d255400a-830c-423f-91dd-d2c987f2c8dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f68e5277-7012-2c48-9bcb-f5a6ef749c89\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:34:27.5613172Z\"\n }" + string: "{\n \"name\": \"0a4055d2-0c83-3f42-91dd-d2c987f2c8dd\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:27:04.9736692Z\"\n }" headers: cache-control: - no-cache @@ -955,7 +894,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:35:57 GMT + - Fri, 16 Jun 2023 20:27:04 GMT expires: - '-1' pragma: @@ -987,14 +926,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --node-count --kubernetes-version User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/77528ef6-1270-482c-9bcb-f5a6ef749c89?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d255400a-830c-423f-91dd-d2c987f2c8dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f68e5277-7012-2c48-9bcb-f5a6ef749c89\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:34:27.5613172Z\"\n }" + string: "{\n \"name\": \"0a4055d2-0c83-3f42-91dd-d2c987f2c8dd\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:27:04.9736692Z\"\n }" headers: cache-control: - no-cache @@ -1003,7 +942,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:36:27 GMT + - Fri, 16 Jun 2023 20:27:35 GMT expires: - '-1' pragma: @@ -1035,14 +974,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --node-count --kubernetes-version User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/77528ef6-1270-482c-9bcb-f5a6ef749c89?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d255400a-830c-423f-91dd-d2c987f2c8dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f68e5277-7012-2c48-9bcb-f5a6ef749c89\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:34:27.5613172Z\"\n }" + string: "{\n \"name\": \"0a4055d2-0c83-3f42-91dd-d2c987f2c8dd\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:27:04.9736692Z\"\n }" headers: cache-control: - no-cache @@ -1051,7 +990,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:36:57 GMT + - Fri, 16 Jun 2023 20:28:05 GMT expires: - '-1' pragma: @@ -1083,14 +1022,14 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --node-count --kubernetes-version User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/77528ef6-1270-482c-9bcb-f5a6ef749c89?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d255400a-830c-423f-91dd-d2c987f2c8dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f68e5277-7012-2c48-9bcb-f5a6ef749c89\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:34:27.5613172Z\"\n }" + string: "{\n \"name\": \"0a4055d2-0c83-3f42-91dd-d2c987f2c8dd\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2023-06-16T20:27:04.9736692Z\"\n }" headers: cache-control: - no-cache @@ -1099,7 +1038,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:37:27 GMT + - Fri, 16 Jun 2023 20:28:35 GMT expires: - '-1' pragma: @@ -1131,15 +1070,15 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --node-count --kubernetes-version User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/77528ef6-1270-482c-9bcb-f5a6ef749c89?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d255400a-830c-423f-91dd-d2c987f2c8dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"f68e5277-7012-2c48-9bcb-f5a6ef749c89\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:34:27.5613172Z\",\n \"endTime\": - \"2023-03-15T11:37:38.2929628Z\"\n }" + string: "{\n \"name\": \"0a4055d2-0c83-3f42-91dd-d2c987f2c8dd\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2023-06-16T20:27:04.9736692Z\",\n \"\ + endTime\": \"2023-06-16T20:28:37.4908191Z\"\n }" headers: cache-control: - no-cache @@ -1148,7 +1087,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:37:57 GMT + - Fri, 16 Jun 2023 20:29:05 GMT expires: - '-1' pragma: @@ -1180,33 +1119,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n --node-count --kubernetes-version User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\",\n - \ \"name\": \"c000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.25.5\",\n \"currentOrchestratorVersion\": \"1.25.5\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\"\ + ,\n \"name\": \"c000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '977' + - '978' content-type: - application/json date: - - Wed, 15 Mar 2023 11:37:57 GMT + - Fri, 16 Jun 2023 20:29:05 GMT expires: - '-1' pragma: @@ -1239,33 +1179,34 @@ interactions: - --resource-group --cluster-name --nodepool-name --kubernetes-version --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\",\n - \ \"name\": \"c000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.25.5\",\n \"currentOrchestratorVersion\": \"1.25.5\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\"\ + ,\n \"name\": \"c000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\"\ + : \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '977' + - '978' content-type: - application/json date: - - Wed, 15 Mar 2023 11:37:58 GMT + - Fri, 16 Jun 2023 20:29:07 GMT expires: - '-1' pragma: @@ -1287,7 +1228,7 @@ interactions: body: '{"properties": {"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "scaleDownMode": "Delete", - "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.26.0", + "type": "VirtualMachineScaleSets", "mode": "User", "orchestratorVersion": "1.26.3", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false}}' @@ -1308,35 +1249,36 @@ interactions: - --resource-group --cluster-name --nodepool-name --kubernetes-version --yes --no-wait User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\",\n - \ \"name\": \"c000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Upgrading\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.26.0\",\n \"currentOrchestratorVersion\": \"1.26.0\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\"\ + ,\n \"name\": \"c000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Upgrading\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.26.3\",\n \"currentOrchestratorVersion\"\ + : \"1.26.3\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/aed29ec1-46be-49bc-9b43-57e0f4ce8626?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/e098f5d7-ce77-4fd2-a877-3dc79d0c29e9?api-version=2016-03-30 cache-control: - no-cache content-length: - - '977' + - '978' content-type: - application/json date: - - Wed, 15 Mar 2023 11:38:02 GMT + - Fri, 16 Jun 2023 20:29:12 GMT expires: - '-1' pragma: @@ -1352,7 +1294,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 200 message: OK @@ -1370,33 +1312,34 @@ interactions: ParameterSetName: - --resource-group --cluster-name -n User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 - (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.49.0 azsdk-python-azure-mgmt-containerservice/23.0.0 Python/3.8.16 + (macOS-13.4-arm64-arm-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002?api-version=2023-04-01 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\",\n - \ \"name\": \"c000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\",\n - \ \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n - \ \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": - \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\",\n - \ \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \"provisioningState\": - \"Upgrading\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"orchestratorVersion\": - \"1.26.0\",\n \"currentOrchestratorVersion\": \"1.26.0\",\n \"enableNodePublicIP\": - false,\n \"mode\": \"User\",\n \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": - false,\n \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-2204gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n - \ \"enableFIPS\": false\n }\n }" + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001/agentPools/c000002\"\ + ,\n \"name\": \"c000002\",\n \"type\": \"Microsoft.ContainerService/managedClusters/agentPools\"\ + ,\n \"properties\": {\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\"\ + ,\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\"\ + : \"OS\",\n \"maxPods\": 110,\n \"type\": \"VirtualMachineScaleSets\"\ + ,\n \"enableAutoScaling\": false,\n \"scaleDownMode\": \"Delete\",\n \ + \ \"provisioningState\": \"Upgrading\",\n \"powerState\": {\n \"code\"\ + : \"Running\"\n },\n \"orchestratorVersion\": \"1.26.3\",\n \"currentOrchestratorVersion\"\ + : \"1.26.3\",\n \"enableNodePublicIP\": false,\n \"mode\": \"User\",\n\ + \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ + \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\"\ + : \"AKSUbuntu-2204gen2containerd-202306.01.0\",\n \"upgradeSettings\": {},\n\ + \ \"enableFIPS\": false\n }\n }" headers: cache-control: - no-cache content-length: - - '977' + - '978' content-type: - application/json date: - - Wed, 15 Mar 2023 11:38:03 GMT + - Fri, 16 Jun 2023 20:29:13 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_managed_aad_enable_azure_rbac.yaml b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_managed_aad_enable_azure_rbac.yaml old mode 100755 new mode 100644 index 023363af586..89737110a2a --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_managed_aad_enable_azure_rbac.yaml +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/recordings/test_managed_aad_enable_azure_rbac.yaml @@ -14,7 +14,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:34:30 GMT + - Sat, 29 Apr 2023 11:47:40 GMT expires: - '-1' pragma: @@ -60,21 +60,21 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2023-03-15T11:34:30Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001","name":"clitest000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","test":"test_managed_aad_enable_azure_rbac","date":"2023-04-29T11:47:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '305' + - '349' content-type: - application/json; charset=utf-8 date: - - Wed, 15 Mar 2023 11:34:30 GMT + - Sat, 29 Apr 2023 11:47:40 GMT expires: - '-1' pragma: @@ -90,14 +90,14 @@ interactions: message: OK - request: body: '{"location": "westus2", "identity": {"type": "SystemAssigned"}, "properties": - {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitestg7mjg7fb7-79a739", + {"kubernetesVersion": "", "dnsPrefix": "cliakstest-clitest5t3hgz6ks-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 0, "osType": "Linux", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": "", "upgradeSettings": {}, "enableNodePublicIP": false, "scaleSetPriority": "Regular", "scaleSetEvictionPolicy": "Delete", "spotMaxPrice": -1.0, "nodeTaints": [], "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": - "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + "azureuser", "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\n"}]}}, "addonProfiles": {}, "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", @@ -121,7 +121,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -131,31 +131,31 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestg7mjg7fb7-79a739\",\n \"fqdn\": \"cliakstest-clitestg7mjg7fb7-79a739-luljzg6k.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestg7mjg7fb7-79a739-luljzg6k.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitest5t3hgz6ks-79a739\",\n \"fqdn\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Creating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n }\n },\n \"podCidr\": \"10.244.0.0/16\",\n - \ \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n - \ \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n - \ \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n }\n },\n \"podCidr\": + \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": + \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": + \"loadBalancer\",\n \"podCidrs\": [\n \"10.244.0.0/16\"\n ],\n \"serviceCidrs\": [\n \"10.0.0.0/16\"\n ],\n \"ipFamilies\": [\n \"IPv4\"\n ]\n \ },\n \"aadProfile\": {\n \"managed\": true,\n \"adminGroupObjectIDs\": [\n \"00000000-0000-0000-0000-000000000001\"\n ],\n \"adminUsers\": @@ -167,18 +167,18 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f679bfd3-8e49-4239-9612-9b7dd3e13558?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0817501-0e5c-4fad-a8b0-5279025b90a1?api-version=2016-03-30 cache-control: - no-cache content-length: - - '3503' + - '3541' content-type: - application/json date: - - Wed, 15 Mar 2023 11:34:33 GMT + - Sat, 29 Apr 2023 11:47:45 GMT expires: - '-1' pragma: @@ -190,7 +190,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1196' status: code: 201 message: Created @@ -209,14 +209,161 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0817501-0e5c-4fad-a8b0-5279025b90a1?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"017581b0-5c0e-ad4f-a8b0-5279025b90a1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:47:45.6754401Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:47:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad + --aad-admin-group-object-ids -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0817501-0e5c-4fad-a8b0-5279025b90a1?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"017581b0-5c0e-ad4f-a8b0-5279025b90a1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:47:45.6754401Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:48:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad + --aad-admin-group-object-ids -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0817501-0e5c-4fad-a8b0-5279025b90a1?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"017581b0-5c0e-ad4f-a8b0-5279025b90a1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:47:45.6754401Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:48:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad + --aad-admin-group-object-ids -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f679bfd3-8e49-4239-9612-9b7dd3e13558?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0817501-0e5c-4fad-a8b0-5279025b90a1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d3bf79f6-498e-3942-9612-9b7dd3e13558\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:34:34.4050992Z\"\n }" + string: "{\n \"name\": \"017581b0-5c0e-ad4f-a8b0-5279025b90a1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:47:45.6754401Z\"\n }" headers: cache-control: - no-cache @@ -225,7 +372,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:35:04 GMT + - Sat, 29 Apr 2023 11:49:15 GMT expires: - '-1' pragma: @@ -258,14 +405,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f679bfd3-8e49-4239-9612-9b7dd3e13558?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0817501-0e5c-4fad-a8b0-5279025b90a1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d3bf79f6-498e-3942-9612-9b7dd3e13558\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:34:34.4050992Z\"\n }" + string: "{\n \"name\": \"017581b0-5c0e-ad4f-a8b0-5279025b90a1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:47:45.6754401Z\"\n }" headers: cache-control: - no-cache @@ -274,7 +421,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:35:34 GMT + - Sat, 29 Apr 2023 11:49:45 GMT expires: - '-1' pragma: @@ -307,14 +454,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f679bfd3-8e49-4239-9612-9b7dd3e13558?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0817501-0e5c-4fad-a8b0-5279025b90a1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d3bf79f6-498e-3942-9612-9b7dd3e13558\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:34:34.4050992Z\"\n }" + string: "{\n \"name\": \"017581b0-5c0e-ad4f-a8b0-5279025b90a1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:47:45.6754401Z\"\n }" headers: cache-control: - no-cache @@ -323,7 +470,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:36:04 GMT + - Sat, 29 Apr 2023 11:50:15 GMT expires: - '-1' pragma: @@ -356,14 +503,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f679bfd3-8e49-4239-9612-9b7dd3e13558?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0817501-0e5c-4fad-a8b0-5279025b90a1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d3bf79f6-498e-3942-9612-9b7dd3e13558\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:34:34.4050992Z\"\n }" + string: "{\n \"name\": \"017581b0-5c0e-ad4f-a8b0-5279025b90a1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:47:45.6754401Z\"\n }" headers: cache-control: - no-cache @@ -372,7 +519,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:36:34 GMT + - Sat, 29 Apr 2023 11:50:45 GMT expires: - '-1' pragma: @@ -405,14 +552,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f679bfd3-8e49-4239-9612-9b7dd3e13558?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0817501-0e5c-4fad-a8b0-5279025b90a1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d3bf79f6-498e-3942-9612-9b7dd3e13558\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:34:34.4050992Z\"\n }" + string: "{\n \"name\": \"017581b0-5c0e-ad4f-a8b0-5279025b90a1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:47:45.6754401Z\"\n }" headers: cache-control: - no-cache @@ -421,7 +568,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:37:04 GMT + - Sat, 29 Apr 2023 11:51:15 GMT expires: - '-1' pragma: @@ -454,14 +601,14 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f679bfd3-8e49-4239-9612-9b7dd3e13558?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0817501-0e5c-4fad-a8b0-5279025b90a1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d3bf79f6-498e-3942-9612-9b7dd3e13558\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:34:34.4050992Z\"\n }" + string: "{\n \"name\": \"017581b0-5c0e-ad4f-a8b0-5279025b90a1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:47:45.6754401Z\"\n }" headers: cache-control: - no-cache @@ -470,7 +617,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:37:35 GMT + - Sat, 29 Apr 2023 11:51:45 GMT expires: - '-1' pragma: @@ -503,15 +650,64 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/f679bfd3-8e49-4239-9612-9b7dd3e13558?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0817501-0e5c-4fad-a8b0-5279025b90a1?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"d3bf79f6-498e-3942-9612-9b7dd3e13558\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:34:34.4050992Z\",\n \"endTime\": - \"2023-03-15T11:37:52.2504361Z\"\n }" + string: "{\n \"name\": \"017581b0-5c0e-ad4f-a8b0-5279025b90a1\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:47:45.6754401Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:52:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad + --aad-admin-group-object-ids -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/b0817501-0e5c-4fad-a8b0-5279025b90a1?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"017581b0-5c0e-ad4f-a8b0-5279025b90a1\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-04-29T11:47:45.6754401Z\",\n \"endTime\": + \"2023-04-29T11:52:36.7186626Z\"\n }" headers: cache-control: - no-cache @@ -520,7 +716,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:38:04 GMT + - Sat, 29 Apr 2023 11:52:46 GMT expires: - '-1' pragma: @@ -553,7 +749,7 @@ interactions: - --resource-group --name --vm-set-type --node-count --ssh-key-value --enable-aad --aad-admin-group-object-ids -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -563,29 +759,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestg7mjg7fb7-79a739\",\n \"fqdn\": \"cliakstest-clitestg7mjg7fb7-79a739-luljzg6k.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestg7mjg7fb7-79a739-luljzg6k.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitest5t3hgz6ks-79a739\",\n \"fqdn\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/0256608d-4583-49ee-ac58-ecd629652b47\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8e1e8210-a718-400b-ada3-30d870ad9517\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -604,16 +800,16 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4156' + - '4194' content-type: - application/json date: - - Wed, 15 Mar 2023 11:38:05 GMT + - Sat, 29 Apr 2023 11:52:47 GMT expires: - '-1' pragma: @@ -645,7 +841,7 @@ interactions: ParameterSetName: - --resource-group --name --enable-azure-rbac -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -655,29 +851,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestg7mjg7fb7-79a739\",\n \"fqdn\": \"cliakstest-clitestg7mjg7fb7-79a739-luljzg6k.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestg7mjg7fb7-79a739-luljzg6k.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitest5t3hgz6ks-79a739\",\n \"fqdn\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/0256608d-4583-49ee-ac58-ecd629652b47\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8e1e8210-a718-400b-ada3-30d870ad9517\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -696,16 +892,16 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4156' + - '4194' content-type: - application/json date: - - Wed, 15 Mar 2023 11:38:05 GMT + - Sat, 29 Apr 2023 11:52:48 GMT expires: - '-1' pragma: @@ -724,23 +920,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestg7mjg7fb7-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitest5t3hgz6ks-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/0256608d-4583-49ee-ac58-ecd629652b47"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8e1e8210-a718-400b-ada3-30d870ad9517"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "aadProfile": {"managed": true, "enableAzureRBAC": true, "adminGroupObjectIDs": ["00000000-0000-0000-0000-000000000001"], "tenantID": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, @@ -758,13 +954,13 @@ interactions: Connection: - keep-alive Content-Length: - - '2659' + - '2658' Content-Type: - application/json ParameterSetName: - --resource-group --name --enable-azure-rbac -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -774,29 +970,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestg7mjg7fb7-79a739\",\n \"fqdn\": \"cliakstest-clitestg7mjg7fb7-79a739-luljzg6k.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestg7mjg7fb7-79a739-luljzg6k.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitest5t3hgz6ks-79a739\",\n \"fqdn\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/0256608d-4583-49ee-ac58-ecd629652b47\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8e1e8210-a718-400b-ada3-30d870ad9517\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -815,18 +1011,18 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/06e0d899-315b-4ff8-94e8-9c3ed1174f85?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/550bf973-1033-40ab-819d-59d7873352dd?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4153' + - '4191' content-type: - application/json date: - - Wed, 15 Mar 2023 11:38:08 GMT + - Sat, 29 Apr 2023 11:52:51 GMT expires: - '-1' pragma: @@ -860,14 +1056,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-azure-rbac -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/06e0d899-315b-4ff8-94e8-9c3ed1174f85?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/550bf973-1033-40ab-819d-59d7873352dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"99d8e006-5b31-f84f-94e8-9c3ed1174f85\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:38:09.1246297Z\"\n }" + string: "{\n \"name\": \"73f90b55-3310-ab40-819d-59d7873352dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:52:51.6153556Z\"\n }" headers: cache-control: - no-cache @@ -876,7 +1072,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:38:38 GMT + - Sat, 29 Apr 2023 11:52:51 GMT expires: - '-1' pragma: @@ -908,14 +1104,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-azure-rbac -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/06e0d899-315b-4ff8-94e8-9c3ed1174f85?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/550bf973-1033-40ab-819d-59d7873352dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"99d8e006-5b31-f84f-94e8-9c3ed1174f85\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:38:09.1246297Z\"\n }" + string: "{\n \"name\": \"73f90b55-3310-ab40-819d-59d7873352dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:52:51.6153556Z\"\n }" headers: cache-control: - no-cache @@ -924,7 +1120,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:39:08 GMT + - Sat, 29 Apr 2023 11:53:21 GMT expires: - '-1' pragma: @@ -956,14 +1152,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-azure-rbac -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/06e0d899-315b-4ff8-94e8-9c3ed1174f85?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/550bf973-1033-40ab-819d-59d7873352dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"99d8e006-5b31-f84f-94e8-9c3ed1174f85\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:38:09.1246297Z\"\n }" + string: "{\n \"name\": \"73f90b55-3310-ab40-819d-59d7873352dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:52:51.6153556Z\"\n }" headers: cache-control: - no-cache @@ -972,7 +1168,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:39:39 GMT + - Sat, 29 Apr 2023 11:53:51 GMT expires: - '-1' pragma: @@ -1004,14 +1200,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-azure-rbac -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/06e0d899-315b-4ff8-94e8-9c3ed1174f85?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/550bf973-1033-40ab-819d-59d7873352dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"99d8e006-5b31-f84f-94e8-9c3ed1174f85\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:38:09.1246297Z\"\n }" + string: "{\n \"name\": \"73f90b55-3310-ab40-819d-59d7873352dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:52:51.6153556Z\"\n }" headers: cache-control: - no-cache @@ -1020,7 +1216,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:40:09 GMT + - Sat, 29 Apr 2023 11:54:21 GMT expires: - '-1' pragma: @@ -1052,14 +1248,14 @@ interactions: ParameterSetName: - --resource-group --name --enable-azure-rbac -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/06e0d899-315b-4ff8-94e8-9c3ed1174f85?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/550bf973-1033-40ab-819d-59d7873352dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"99d8e006-5b31-f84f-94e8-9c3ed1174f85\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:38:09.1246297Z\"\n }" + string: "{\n \"name\": \"73f90b55-3310-ab40-819d-59d7873352dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:52:51.6153556Z\"\n }" headers: cache-control: - no-cache @@ -1068,7 +1264,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:40:39 GMT + - Sat, 29 Apr 2023 11:54:51 GMT expires: - '-1' pragma: @@ -1100,15 +1296,63 @@ interactions: ParameterSetName: - --resource-group --name --enable-azure-rbac -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/06e0d899-315b-4ff8-94e8-9c3ed1174f85?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/550bf973-1033-40ab-819d-59d7873352dd?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"99d8e006-5b31-f84f-94e8-9c3ed1174f85\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:38:09.1246297Z\",\n \"endTime\": - \"2023-03-15T11:41:02.9179821Z\"\n }" + string: "{\n \"name\": \"73f90b55-3310-ab40-819d-59d7873352dd\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:52:51.6153556Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:55:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --enable-azure-rbac -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/550bf973-1033-40ab-819d-59d7873352dd?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"73f90b55-3310-ab40-819d-59d7873352dd\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-04-29T11:52:51.6153556Z\",\n \"endTime\": + \"2023-04-29T11:55:45.2501731Z\"\n }" headers: cache-control: - no-cache @@ -1117,7 +1361,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:41:08 GMT + - Sat, 29 Apr 2023 11:55:51 GMT expires: - '-1' pragma: @@ -1149,7 +1393,7 @@ interactions: ParameterSetName: - --resource-group --name --enable-azure-rbac -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -1159,29 +1403,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestg7mjg7fb7-79a739\",\n \"fqdn\": \"cliakstest-clitestg7mjg7fb7-79a739-luljzg6k.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestg7mjg7fb7-79a739-luljzg6k.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitest5t3hgz6ks-79a739\",\n \"fqdn\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/0256608d-4583-49ee-ac58-ecd629652b47\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8e1e8210-a718-400b-ada3-30d870ad9517\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1200,16 +1444,16 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4155' + - '4193' content-type: - application/json date: - - Wed, 15 Mar 2023 11:41:09 GMT + - Sat, 29 Apr 2023 11:55:52 GMT expires: - '-1' pragma: @@ -1241,7 +1485,7 @@ interactions: ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -1251,29 +1495,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestg7mjg7fb7-79a739\",\n \"fqdn\": \"cliakstest-clitestg7mjg7fb7-79a739-luljzg6k.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestg7mjg7fb7-79a739-luljzg6k.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitest5t3hgz6ks-79a739\",\n \"fqdn\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/0256608d-4583-49ee-ac58-ecd629652b47\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8e1e8210-a718-400b-ada3-30d870ad9517\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1292,16 +1536,16 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4155' + - '4193' content-type: - application/json date: - - Wed, 15 Mar 2023 11:41:10 GMT + - Sat, 29 Apr 2023 11:55:53 GMT expires: - '-1' pragma: @@ -1320,23 +1564,23 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Basic", "tier": "Free"}, "identity": - {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.24.9", "dnsPrefix": - "cliakstest-clitestg7mjg7fb7-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": + body: '{"location": "westus2", "sku": {"name": "Base", "tier": "Free"}, "identity": + {"type": "SystemAssigned"}, "properties": {"kubernetesVersion": "1.25.6", "dnsPrefix": + "cliakstest-clitest5t3hgz6ks-79a739", "agentPoolProfiles": [{"count": 1, "vmSize": "Standard_DS2_v2", "osDiskSizeGB": 128, "osDiskType": "Managed", "kubeletDiskType": "OS", "maxPods": 110, "osType": "Linux", "osSKU": "Ubuntu", "enableAutoScaling": false, "type": "VirtualMachineScaleSets", "mode": "System", "orchestratorVersion": - "1.24.9", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": + "1.25.6", "upgradeSettings": {}, "powerState": {"code": "Running"}, "enableNodePublicIP": false, "enableEncryptionAtHost": false, "enableUltraSSD": false, "enableFIPS": false, "name": "nodepool1"}], "linuxProfile": {"adminUsername": "azureuser", - "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\n"}]}}, "servicePrincipalProfile": {"clientId":"00000000-0000-0000-0000-000000000001"}, "oidcIssuerProfile": {"enabled": false}, "nodeResourceGroup": "MC_clitest000001_cliakstest000001_westus2", "enableRBAC": true, "networkProfile": {"networkPlugin": "kubenet", "podCidr": "10.244.0.0/16", "serviceCidr": "10.0.0.0/16", "dnsServiceIP": "10.0.0.10", "dockerBridgeCidr": "172.17.0.1/16", "outboundType": "loadBalancer", "loadBalancerSku": "Standard", "loadBalancerProfile": {"managedOutboundIPs": {"count": 1}, "effectiveOutboundIPs": - [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/0256608d-4583-49ee-ac58-ecd629652b47"}]}, + [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8e1e8210-a718-400b-ada3-30d870ad9517"}]}, "podCidrs": ["10.244.0.0/16"], "serviceCidrs": ["10.0.0.0/16"], "ipFamilies": ["IPv4"]}, "aadProfile": {"managed": true, "enableAzureRBAC": false, "adminGroupObjectIDs": ["00000000-0000-0000-0000-000000000001"], "tenantID": "72f988bf-86f1-41af-91ab-2d7cd011db47"}, @@ -1354,13 +1598,13 @@ interactions: Connection: - keep-alive Content-Length: - - '2660' + - '2659' Content-Type: - application/json ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -1370,29 +1614,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestg7mjg7fb7-79a739\",\n \"fqdn\": \"cliakstest-clitestg7mjg7fb7-79a739-luljzg6k.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestg7mjg7fb7-79a739-luljzg6k.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitest5t3hgz6ks-79a739\",\n \"fqdn\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Updating\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/0256608d-4583-49ee-ac58-ecd629652b47\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8e1e8210-a718-400b-ada3-30d870ad9517\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1411,18 +1655,18 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d5b5a0bf-64d7-4422-ae23-8ffa6e957add?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9c6c0098-7473-408c-aa2c-2155098cf59f?api-version=2016-03-30 cache-control: - no-cache content-length: - - '4154' + - '4192' content-type: - application/json date: - - Wed, 15 Mar 2023 11:41:13 GMT + - Sat, 29 Apr 2023 11:55:57 GMT expires: - '-1' pragma: @@ -1438,7 +1682,55 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - aks update + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --disable-azure-rbac -o + User-Agent: + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 + (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9c6c0098-7473-408c-aa2c-2155098cf59f?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"98006c9c-7374-8c40-aa2c-2155098cf59f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:55:57.7730595Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Sat, 29 Apr 2023 11:55:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: code: 200 message: OK @@ -1456,14 +1748,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d5b5a0bf-64d7-4422-ae23-8ffa6e957add?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9c6c0098-7473-408c-aa2c-2155098cf59f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bfa0b5d5-d764-2244-ae23-8ffa6e957add\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:41:14.0002055Z\"\n }" + string: "{\n \"name\": \"98006c9c-7374-8c40-aa2c-2155098cf59f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:55:57.7730595Z\"\n }" headers: cache-control: - no-cache @@ -1472,7 +1764,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:41:43 GMT + - Sat, 29 Apr 2023 11:56:27 GMT expires: - '-1' pragma: @@ -1504,14 +1796,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d5b5a0bf-64d7-4422-ae23-8ffa6e957add?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9c6c0098-7473-408c-aa2c-2155098cf59f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bfa0b5d5-d764-2244-ae23-8ffa6e957add\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:41:14.0002055Z\"\n }" + string: "{\n \"name\": \"98006c9c-7374-8c40-aa2c-2155098cf59f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:55:57.7730595Z\"\n }" headers: cache-control: - no-cache @@ -1520,7 +1812,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:42:13 GMT + - Sat, 29 Apr 2023 11:56:57 GMT expires: - '-1' pragma: @@ -1552,14 +1844,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d5b5a0bf-64d7-4422-ae23-8ffa6e957add?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9c6c0098-7473-408c-aa2c-2155098cf59f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bfa0b5d5-d764-2244-ae23-8ffa6e957add\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:41:14.0002055Z\"\n }" + string: "{\n \"name\": \"98006c9c-7374-8c40-aa2c-2155098cf59f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:55:57.7730595Z\"\n }" headers: cache-control: - no-cache @@ -1568,7 +1860,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:42:43 GMT + - Sat, 29 Apr 2023 11:57:27 GMT expires: - '-1' pragma: @@ -1600,14 +1892,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d5b5a0bf-64d7-4422-ae23-8ffa6e957add?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9c6c0098-7473-408c-aa2c-2155098cf59f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bfa0b5d5-d764-2244-ae23-8ffa6e957add\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:41:14.0002055Z\"\n }" + string: "{\n \"name\": \"98006c9c-7374-8c40-aa2c-2155098cf59f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:55:57.7730595Z\"\n }" headers: cache-control: - no-cache @@ -1616,7 +1908,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:43:14 GMT + - Sat, 29 Apr 2023 11:57:58 GMT expires: - '-1' pragma: @@ -1648,14 +1940,14 @@ interactions: ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d5b5a0bf-64d7-4422-ae23-8ffa6e957add?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9c6c0098-7473-408c-aa2c-2155098cf59f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bfa0b5d5-d764-2244-ae23-8ffa6e957add\",\n \"status\": - \"InProgress\",\n \"startTime\": \"2023-03-15T11:41:14.0002055Z\"\n }" + string: "{\n \"name\": \"98006c9c-7374-8c40-aa2c-2155098cf59f\",\n \"status\": + \"InProgress\",\n \"startTime\": \"2023-04-29T11:55:57.7730595Z\"\n }" headers: cache-control: - no-cache @@ -1664,7 +1956,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:43:44 GMT + - Sat, 29 Apr 2023 11:58:27 GMT expires: - '-1' pragma: @@ -1696,15 +1988,15 @@ interactions: ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/d5b5a0bf-64d7-4422-ae23-8ffa6e957add?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus2/operations/9c6c0098-7473-408c-aa2c-2155098cf59f?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"bfa0b5d5-d764-2244-ae23-8ffa6e957add\",\n \"status\": - \"Succeeded\",\n \"startTime\": \"2023-03-15T11:41:14.0002055Z\",\n \"endTime\": - \"2023-03-15T11:43:59.5922415Z\"\n }" + string: "{\n \"name\": \"98006c9c-7374-8c40-aa2c-2155098cf59f\",\n \"status\": + \"Succeeded\",\n \"startTime\": \"2023-04-29T11:55:57.7730595Z\",\n \"endTime\": + \"2023-04-29T11:58:54.0813212Z\"\n }" headers: cache-control: - no-cache @@ -1713,7 +2005,7 @@ interactions: content-type: - application/json date: - - Wed, 15 Mar 2023 11:44:14 GMT + - Sat, 29 Apr 2023 11:58:58 GMT expires: - '-1' pragma: @@ -1745,7 +2037,7 @@ interactions: ParameterSetName: - --resource-group --name --disable-azure-rbac -o User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-containerservice/21.2.0 Python/3.8.10 + - AZURECLI/2.48.1 azsdk-python-azure-mgmt-containerservice/22.1.0 Python/3.8.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.ContainerService/managedClusters/cliakstest000001?api-version=2023-04-01 @@ -1755,29 +2047,29 @@ interactions: \ \"location\": \"westus2\",\n \"name\": \"cliakstest000001\",\n \"type\": \"Microsoft.ContainerService/ManagedClusters\",\n \"properties\": {\n \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": \"Running\"\n },\n \"kubernetesVersion\": - \"1.24.9\",\n \"currentKubernetesVersion\": \"1.24.9\",\n \"dnsPrefix\": - \"cliakstest-clitestg7mjg7fb7-79a739\",\n \"fqdn\": \"cliakstest-clitestg7mjg7fb7-79a739-luljzg6k.hcp.westus2.azmk8s.io\",\n - \ \"azurePortalFQDN\": \"cliakstest-clitestg7mjg7fb7-79a739-luljzg6k.portal.hcp.westus2.azmk8s.io\",\n + \"1.25.6\",\n \"currentKubernetesVersion\": \"1.25.6\",\n \"dnsPrefix\": + \"cliakstest-clitest5t3hgz6ks-79a739\",\n \"fqdn\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.hcp.westus2.azmk8s.io\",\n + \ \"azurePortalFQDN\": \"cliakstest-clitest5t3hgz6ks-79a739-n52xpdnu.portal.hcp.westus2.azmk8s.io\",\n \ \"agentPoolProfiles\": [\n {\n \"name\": \"nodepool1\",\n \"count\": 1,\n \"vmSize\": \"Standard_DS2_v2\",\n \"osDiskSizeGB\": 128,\n \"osDiskType\": \"Managed\",\n \"kubeletDiskType\": \"OS\",\n \"maxPods\": 110,\n \ \"type\": \"VirtualMachineScaleSets\",\n \"enableAutoScaling\": false,\n \ \"provisioningState\": \"Succeeded\",\n \"powerState\": {\n \"code\": - \"Running\"\n },\n \"orchestratorVersion\": \"1.24.9\",\n \"currentOrchestratorVersion\": - \"1.24.9\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n + \"Running\"\n },\n \"orchestratorVersion\": \"1.25.6\",\n \"currentOrchestratorVersion\": + \"1.25.6\",\n \"enableNodePublicIP\": false,\n \"mode\": \"System\",\n \ \"enableEncryptionAtHost\": false,\n \"enableUltraSSD\": false,\n \ \"osType\": \"Linux\",\n \"osSKU\": \"Ubuntu\",\n \"nodeImageVersion\": - \"AKSUbuntu-1804gen2containerd-2023.02.15\",\n \"upgradeSettings\": {},\n + \"AKSUbuntu-2204gen2containerd-202304.10.0\",\n \"upgradeSettings\": {},\n \ \"enableFIPS\": false\n }\n ],\n \"linuxProfile\": {\n \"adminUsername\": \"azureuser\",\n \"ssh\": {\n \"publicKeys\": [\n {\n \"keyData\": - \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+Tw5fQ1llhTaOQkrl1FxV1VswmtYGwgleHCPi7kNYtIZ2kdobxPHgVkhlxcSy2u6aAvjV7idMzxJ0nSl0MrLqF1GVtyO+SMx+iDXJomtEN6hscMcn8S6DJCm4XyPZyur50Qn6K4KGrmSQ4ZK0VXShfteE6THR2+DoYBsWbD86+XOLOrPr8H5DOQxEYYq0K2usPpntyItOJ2RtolEo9Y9nzxSsioEvb31B4vFX0LfssWX/yFJorU1OLMSxgIXOZ0xzEPOV//GzqeOjBx5s5OIueUYevzSLR3qskiQkE/6JT0YSkVKLfF5z4N8ptZ+7vqZteZTaAZld9zYnsBx7cKob + \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvBk9v4/Qo7XJWIY7AItmm8ohKhV9Y2z/SA5RKWk4BUCpK4ElHu8ia+QREfb7nmO5LtydRi7glVKNjUWUeaSC1PTmk2Z421whqvLRgF6XquFUcEC+VZG54EiS7j6hc2G3Af76vCZQQIQ7fKB8gngJXVb4QjbKVkoORamBKaSQ5MoAPF9GeSPfDesETM/jcE60BguHKjSTXhfsvgs6/iuUSPQ7duXwFtlpQy8WwA6ymGj4ehF0y8NXP6fjEajHDhPjPDkyuKBFTScflrLRryURmRyyICLt40vd+gaiyYCmREJxZNT/7J1pKmlpLNJejqDgXJ97xeyv4flTL7XRSgWV5 azcli_aks_live_test@example.com\\n\"\n }\n ]\n }\n },\n \"servicePrincipalProfile\": {\n \"clientId\":\"00000000-0000-0000-0000-000000000001\"\n },\n \"nodeResourceGroup\": \"MC_clitest000001_cliakstest000001_westus2\",\n \"enableRBAC\": true,\n - \ \"networkProfile\": {\n \"networkPlugin\": \"kubenet\",\n \"loadBalancerSku\": - \"Standard\",\n \"loadBalancerProfile\": {\n \"managedOutboundIPs\": - {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": [\n {\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/0256608d-4583-49ee-ac58-ecd629652b47\"\n + \ \"enableLTS\": \"KubernetesOfficial\",\n \"networkProfile\": {\n \"networkPlugin\": + \"kubenet\",\n \"loadBalancerSku\": \"Standard\",\n \"loadBalancerProfile\": + {\n \"managedOutboundIPs\": {\n \"count\": 1\n },\n \"effectiveOutboundIPs\": + [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_clitest000001_cliakstest000001_westus2/providers/Microsoft.Network/publicIPAddresses/8e1e8210-a718-400b-ada3-30d870ad9517\"\n \ }\n ]\n },\n \"podCidr\": \"10.244.0.0/16\",\n \"serviceCidr\": \"10.0.0.0/16\",\n \"dnsServiceIP\": \"10.0.0.10\",\n \"dockerBridgeCidr\": \"172.17.0.1/16\",\n \"outboundType\": \"loadBalancer\",\n \"podCidrs\": @@ -1796,16 +2088,16 @@ interactions: false\n },\n \"workloadAutoScalerProfile\": {}\n },\n \"identity\": {\n \"type\": \"SystemAssigned\",\n \"principalId\":\"00000000-0000-0000-0000-000000000001\",\n \ \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\n },\n \"sku\": - {\n \"name\": \"Basic\",\n \"tier\": \"Free\"\n }\n }" + {\n \"name\": \"Base\",\n \"tier\": \"Free\"\n }\n }" headers: cache-control: - no-cache content-length: - - '4156' + - '4194' content-type: - application/json date: - - Wed, 15 Mar 2023 11:44:15 GMT + - Sat, 29 Apr 2023 11:58:58 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_aks_commands.py b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_aks_commands.py index b9c74fd02f2..04c56a0bda2 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_aks_commands.py +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_aks_commands.py @@ -93,7 +93,7 @@ def _get_versions(self, location): def _get_versions_by_location(self, location): versions = self.cmd( - "az aks get-versions -l {} --query 'orchestrators[].orchestratorVersion'".format(location)).get_output_in_json() + "az aks get-versions -l {} --query 'values[*].patchVersions.keys(@)[]'".format(location)).get_output_in_json() # sort by semantic version, from newest to oldest versions = sorted(versions, key=version_to_tuple, reverse=True) return versions @@ -696,7 +696,7 @@ def test_aks_create_service_no_wait(self, resource_group, resource_group_locatio # show k8s versions self.cmd('aks get-versions -l {location}', checks=[ - self.exists('orchestrators[*].orchestratorVersion') + self.exists('values[*].patchVersions.keys(@)[]') ]) # show k8s versions in table format @@ -1083,17 +1083,17 @@ def test_aks_create_default_service_with_virtual_node_addon(self, resource_group ]) # disable virtual-node add-on - self.cmd('aks disable-addons -a virtual-node -g {resource_group} -n {name}', checks=[ - self.check('addonProfiles.aciConnectorLinux.enabled', False), - self.check('addonProfiles.aciConnectorLinux.config', None) - ]) + disable_addon_output = self.cmd('aks disable-addons -a virtual-node -g {resource_group} -n {name}').get_output_in_json() + assert disable_addon_output["addonProfiles"]["aciConnectorLinux"]["enabled"] == False + # None for addon v1, {} for addon v2 + assert bool(disable_addon_output["addonProfiles"]["aciConnectorLinux"]["config"]) == False - # show again - self.cmd('aks show -g {resource_group} -n {name}', checks=[ - self.check('addonProfiles.aciConnectorLinux.enabled', False), - self.check('addonProfiles.aciConnectorLinux.config', None) - ]) + # show again + show_output = self.cmd('aks show -g {resource_group} -n {name}').get_output_in_json() + assert show_output["addonProfiles"]["aciConnectorLinux"]["enabled"] == False + # None for addon v1, {} for addon v2 + assert bool(show_output["addonProfiles"]["aciConnectorLinux"]["config"]) == False # enable virtual node add-on self.cmd('aks enable-addons -a virtual-node -g {resource_group} -n {name} --subnet-name default', checks=[ @@ -3219,7 +3219,7 @@ def test_aks_create_service_no_wait_msi(self, resource_group, resource_group_loc # show k8s versions self.cmd('aks get-versions -l {location}', checks=[ - self.exists('orchestrators[*].orchestratorVersion') + self.exists('values[*].patchVersions.keys(@)[]') ]) # show k8s versions in table format